/* Фиксируем шапку */
#rec1222638871 {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: transform 0.3s ease-in-out;
}

/* Когда шапка скрыта */
.header-hidden {
    transform: translateY(-100%);
}

/* Отступ для контента, чтобы шапка не перекрывала */
.t-body {
    margin-top: 100px; /* подгони под фактическую высоту шапки */
    
}


/* Универсальный класс для блоков шириной 1680px */
.uc-fullwidth1680 .t-container,
.uc-fullwidth1680 .t-col.t-col_12 {
    max-width: 1680px !important;
}

@media screen and (max-width: 1600px) {
    .uc-fullwidth1680 .t-container,
    .uc-fullwidth1680 .t-col.t-col_12 {
        max-width: 1240px !important;
    }
}

@media screen and (max-width: 1024px) {
    .uc-fullwidth1680 .t-container,
    .uc-fullwidth1680 .t-col.t-col_12 {
        max-width: 960px !important;
    }
}

