.header-socials {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 10px;
}

.header-socials-item img {
    width: 22px;
    display: block;
    height: 22px;
}

.header-socials-item {
    width: 36px;
    height: 36px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-email__link {
    position: relative;
    display: block;
    font-weight: 500;
    font-size: 11px;
    line-height: 17px;
    color: rgba(45, 42, 38, .8);
    white-space: nowrap;
    margin-top: 5px;
}
.header-contacts .tel {
    width: fit-content;
}
.main-banner-wrap {
    margin-bottom: 60px;
}
.main-banner-item {
    position: relative;
    height: 100%;
}
.main-banner, .main-banner-item {
    height: 749px;
    overflow: hidden;
}
.main-banner-item-img {
    height: 100%;
}
.main-banner-item-img img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

.main-banner-item-content {
    position: absolute;
    top: 0;
    width: 536px;
    height: 100%;
    margin: auto;
    left: 0;
    right: 0;
    background: #2e2a27;
    max-width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
}

.main-banner-item-btn {
    border-radius: 5px;
    padding: 14px 20px;
    background: #CDD101;
    color: #2e2a27;
    position: relative;
    overflow: hidden;
    width: 300px;
    font-size: 17px;
    display: block;
    text-align: center;
    border: 2px solid #ffffffb8;
    margin-top: auto;
    font-weight: 500;
    margin-bottom: 100px;
}

/* Стили для создания блика на кнопке */
.main-banner-item-btn:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
            120deg,
            rgba(255, 255, 255, 0) 30%, /* Прозрачность начала блика */
            rgba(255, 255, 255, 0.8), /* Цвет блика */
            rgba(255, 255, 255, 0) 70% /* Прозрачность конца блика */
    );
    top: 0;
    left: -100px;
    animation: shine 2s infinite linear; /* Анимация блика */
}

.main-banner-item-title {
    font-size: 42px;
    color: #fff;
    margin-top: 40px;
}
.main-banner-item-text {
    font-size: 26px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 60px;
}
.main-banner-item-logo img {
    width: 400px;
    max-width: 100%;
}
.c-container-full {
    width: 1903px;
    max-width: 100%;
    margin: auto;
}
.main-banner {
    position: relative;
}

.main-banner-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    height: 100%;
    z-index: 999;
    background: url(/local/access/img/c-arrow-left.svg) no-repeat center;
    background-size: 40px 40px;
    left: 0;
    cursor: pointer;
}
.main-banner-arrow.main-banner-arrow-next {
    background-image: url(/local/access/img/c-arrow-right.svg);
    left: auto;
    right: 0;
}
/* Ключевые кадры для анимации блика */
@keyframes shine {
    0% {
        left: -100px; /* Начальная позиция блика (левая сторона кнопки) */
    }
    20% {
        left: 100%; /* Позиция блика в конце (правая сторона кнопки) */
    }
    100% {
        left: 100%; /* Завершение анимации */
    }
}


.cky-classic-bottom {
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    z-index: 9999999;
}
.cky-consent-container .cky-consent-bar {
    border: 1px solid;
    padding: 16.5px 24px;
    box-shadow: 0 -1px 10px 0 #acabab4d;
    background-color:#FFFFFF;
    border-color:#F4F4F4
}
.cky-notice-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cky-notice-des {
    color: #212121;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.cky-consent-bar .cky-notice-des p {
    color: inherit;
    margin-top: 0;
    overflow-wrap: break-word;
}

.cky-notice-des p:last-child {
    margin-bottom: 0;
}

.cky-notice-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
}

.cky-btn {
    font-size: 14px;
    font-family: inherit;
    line-height: 24px;
    padding: 8px 27px;
    font-weight: 500;
    margin: 0;
    border-radius: 2px;
    white-space: nowrap;
    cursor: pointer;
    text-align: center;
    text-transform: none;
    min-height: 0;
    text-shadow: none;
    box-shadow: none;
    color: #FFFFFF;
    background-color: #ccd105;
    border-color: transparent;
    transition: all 0.5s;
}

.cky-btn:hover {
    opacity: 0.7;
}

.f-check input {
    display: none;
}

.f-check span {
    width: 20px;
    height: 20px;
    border-radius: 2px;
    border: 1px solid #ccc;
    display: inline-block;
    align-items: center;
    padding: 1px 4px;
    cursor: pointer;
}
.f-check span:before {
    content: '✓';
    color: red;
    font-size: 14px;
    opacity: 0;
}
.f-check input:checked + span:before {
    opacity: 1;
}

.modal__btn:disabled {
    opacity: 0.6;
}



@media (min-width:1200px){
    .cky-consent-container{
        width: 40% !important;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px){
    .cky-notice-btn-wrapper {
        flex-wrap: wrap;
        margin: 0;
    }
    .cky-notice-btn-wrapper .cky-btn {
        flex: auto;
        max-width: 100%;
        margin-top: 10px;
        white-space: unset;
    }
    .cky-notice-group {
        display: block;
    }
}
@media (max-width: 576px){
    .cky-consent-container .cky-consent-bar {
        padding: 16.5px 0;
    }
    .cky-custom-brand-logo-wrapper .cky-custom-brand-logo, .cky-notice .cky-title, .cky-notice-des, .cky-notice-btn-wrapper, .cky-category-direct-preview-wrapper {
        padding: 0 24px;
    }
    .cky-notice-des {
        max-height: 40vh;
        overflow-y: scroll;
    }
}

@media screen and (max-width: 991px) {
    .main-banner-item-logo img {
        width: 300px;
    }
    .main-banner-item-title {
        font-size: 30px;
        margin-top: 30px;
    }
    .main-banner-item-text {
        font-size: 21px;
        margin-top: 40px;
    }
    .main-banner, .main-banner-item {
        height: 530px;
    }
    .main-banner-item-btn {
        /*margin-top: 60px;*/
        width: 224px;
        font-size: 15px;
        padding: 10px 18px;
    }
    .main-banner-item-content {
        width: 470px;
        max-width: 70%;
    }
    .header__row {
        justify-content: space-between;
    }

    .header__left {
        width: fit-content;
        max-width: fit-content;
    }
    .header-socials {
        margin: 0 5px;
    }
}

@media screen and (max-width: 767px) {
    .main-banner-arrow {
        width: 40px;
    }
    .header__right {
        width: fit-content;
        margin-right: 0;
    }
    .header__right  .tel {
        margin-right: 10px;
    }
    .main-banner {
        height: 415px;
    }

    .main-banner-item-logo img {
        width: 220px;
    }
    .main-banner-item-title {
        font-size: 24px;
    }
    .main-banner-item-text {
        font-size: 16px;
        margin-top: 26px;
    }
    .main-banner-item-btn {
        /*margin-top: 36px;*/
        max-width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .header-socials-item {
        width: 28px;
        height: 28px;
    }
    .header-socials-item img {
        width: 18px;
        height: 18px;
    }
    .header-socials {
        margin: 0 0;
    }
    .header__left .logo {
        max-width: 110px;
    }
}

@media screen and (max-width: 450px) {
    .header__left .logo {
        max-width: 110px;
    }

}

@media screen and (max-width: 420px) {

    .header__right .header-contacts {
        display: none;
    }
}
@media screen and (max-width: 340px) {
    .main-banner-item-btn {
        width: 185px;
    }
}