:root {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    font-family: "Onest", sans-serif;
    color: #000;
    margin: 0;
    background-repeat: no-repeat;
    background-position: center 0;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    /* Или явно: font-family: 'Inter', sans-serif; */
}

.button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
figure {
    padding: 0;
    margin: 0;
}

ul {
    list-style-type: none;
}

a {
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

.br-mobile {
    display: none;
}

@media (max-width: 576px) {
    .br-mobile {
        display: inline;
    }
}

button,
input[type='submit'] {
    padding: 0;
    margin: 0;
    color: inherit;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: none;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* Прозрачный черный фон */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Отображаем над всем остальным */
}

.loader-circle {
    width: 80px;
    height: 80px;
    border: 8px solid #494949;
    border-radius: 50%;
    border-top-color: #000000;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.container__main {
    /* max-width: 1920px; */
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.container {
    max-width: 1030px;
    margin: 0 auto;
}

.decor__background {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    width: 100%;
    height: 860px;
}

.decor__background2 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: -1;
    width: 100%;
    height: 936px;
}

.topline {
    /* Topline Block */
    --topline-bg-color: #262735;

    /* Logo */
    --topline-logo-width: 126px;
    --topline-logo-height: 24px;
    --topline-logo-width-mobile: 126px;
    --topline-logo-height-mobile: 24px;

    background-color: var(--topline-bg-color);
    position: sticky;
    top: 0;
    --topline-bg-color: #262735;
    --topline-logo-width: 126px;
    --topline-logo-height: 24px;
    --topline-logo-width-mobile: 126px;
    --topline-logo-height-mobile: 24px;
    background-color: var(--topline-bg-color);
    /* position: relative; */
    z-index: 1000;
}

.topline__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 15px;

}

.topline__inner {
    display: flex;
    gap: 10px;
}

.topline__logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topline__logo-img {
    width: var(--topline-logo-width);
    height: var(--topline-logo-height);
    object-fit: contain;
}

@media (max-width: 576px) {
    .topline__logo-img {
        width: var(--topline-logo-width-mobile);
        height: var(--topline-logo-height-mobile);
    }
}

#panelcontainer {
    z-index: 10;
    height: 32px;
}

.topline__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
}

.burger__menu {
    display: none;

}

.topline__menu-item {
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.02em;
    color: #fff;
}

.topline__menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.topline_reg {
    background-color: #B969FF;
    border-radius: 20px;
    padding: 5px 27px;
}

@media (max-width: 1300px) {
    .topline__nav {
        display: none;
    }

    .topline__nav.active {
        display: block;
        position: fixed;
        top: 0%;
        right: 0%;
        width: 100%;
        background: #262735;
        flex-direction: column;
        justify-content: flex-start;
        transition: 0.3s ease;
        z-index: 1000;
        padding: 30px 14px;
    }

    .topline__inner {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .topline__menu {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .burger__menu {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }

    .burger__menu span {
        width: 25px;
        height: 3px;
        background: #ffffff;
    }
}




/* header */

.header {
    position: relative;
}

.header__inner {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.header__topinner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
    align-items: center;
}

.header__title {
    padding-top: 80px;
    font-size: 22px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.02em;
    color: #262735;
    text-transform: uppercase;
}

@media (max-width: 576px) {
    .header__title {
        font-size: 13px;
    }
}


.header__text-img {}

@media (max-width: 576px) {
    .header__text-img {
        width: 220px;
    }
}

.header__lineh {
    line-height: 130%;
    text-align: center;
    padding-top: 0;
    width: 65%;
}

@media (max-width: 576px) {
    .header__lineh {
        width: 80%;
    }
}

.header__data {
    display: none;
}

@media (max-width: 576px) {
    .header__data {
        display: flex;
        gap: 12px;
    }
}

.header__data--text1 {
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #262735;
}

.header__data--text2 {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #262735;
}

.header__bottominner {
    display: flex;
    gap: 30px;
    padding-bottom: 43px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 576px) {
    .header__bottominner {
        flex-direction: column;
        gap: 10px;
    }
}

.header__card {
    height: 330px;
    width: 470px;
    background: url(../img/header/background_card.png);
    padding: 45px 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 576px) {
    .header__card {
        height: 166px;
        width: 300px;
        background: #fff;
        padding: 22px 9px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 8px;
    }
}


.header__card-icon1 {}

@media (max-width: 576px) {
    .header__card-icon1 {
        display: none;
    }
}

.header__card-icon2 {}

@media (max-width: 576px) {
    .header__card-icon2 {
        display: none;
    }
}

.header__titlecard {
    padding: 13px 0 17px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    color: #262735;
    text-align: center;
}

@media (max-width: 576px) {
    .header__titlecard {
        padding: 0px 0 15px 0;
        font-weight: 700;
        font-size: 14px;
        line-height: 130%;
        /* or 18px */
        text-align: center;

        color: #262735;


    }
}

.header__titlecard span {
    font-weight: 400;
}


.header__buttoncard {
    max-width: 316px;
    width: 100%;
    padding: 18.5px 10px;
    border-radius: 32.5px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
}

@media (max-width: 576px) {
    .header__buttoncard {
        max-width: 282px;
        width: 100%;
        padding: 12.5px 10px;
        border-radius: 21.8px;
        color: #fff;
        font-size: 14px;
        line-height: 19px;
    }
}

.blue__button {
    background-color: #7650F5;
}

.blue__button:hover {
    background-color: #592FE4;
}

.purple__button {
    background-color: #B969FF;
}

.purple__button:hover {
    background-color: #9B3CEE;
}

.header__linkcard {
    padding-top: 15px;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    color: #262735;
    text-decoration: underline;
}

@media (max-width: 576px) {
    .header__linkcard {
        padding-top: 10px;
        font-size: 12px;
    }
}

.header__decor {
    position: absolute;
    top: 5%;
    left: 1%;
    z-index: -1;
    width: 234px;
}

@media (max-width: 576px) {
    .header__decor {
        width: 162px;
        top: 3%;
        left: 8%;
    }
}

.header__decor1 {
    position: absolute;
    top: 9%;
    right: 3%;
    z-index: 10;
}

@media (max-width: 576px) {
    .header__decor1 {
        display: none;
    }
}

.header__decor2 {
    position: absolute;
    top: 29%;
    right: -26%;
    z-index: 10;
}

@media (max-width: 576px) {
    .header__decor2 {
        display: none;
    }
}

.header__decor3 {
    position: absolute;
    bottom: -14%;
    left: -22%;
    z-index: 10;
}

@media (max-width: 576px) {
    .header__decor3 {
        display: none;
    }
}

/**********/


/*swiper*/

.main-container {
    width: 1028px;
    height: 164px;
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 71px;
    z-index: 20;
}

@media (max-width: 576px) {
    .main-container {
        display: none;
    }
}

.main__decor1 {
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: -1;
}

@media (max-width: 576px) {
    .main__decor1 {
        display: none;
    }
}

.main__decor2 {
    position: absolute;
    top: 0%;
    right: 0%;
    transform: rotate(180deg);
    z-index: -1;
}

@media (max-width: 576px) {
    .main__decor2 {
        display: none;
    }
}

.main__decor3 {
    position: absolute;
    bottom: 0%;
    left: 0%;
    z-index: -1;
}

@media (max-width: 576px) {
    .main__decor3 {
        display: none;
    }
}

.main__decor4 {
    position: absolute;
    bottom: 1.6%;
    right: 0%;
    transform: rotate(180deg);
    z-index: -1;
}

@media (max-width: 576px) {
    .main__decor4 {
        display: none;
    }
}

.main__decor3-mob {
    display: none;
}

@media (max-width: 576px) {
    .main__decor3-mob {
        position: absolute;
        display: block;
        bottom: 15%;
        left: 57%;
        z-index: -1;
    }
}

.main__decor4-mob {
    display: none;
}

@media (max-width: 576px) {
    .main__decor4-mob {
        position: absolute;
        display: block;
        bottom: 11.2%;
        right: 58%;
        transform: rotate(180deg);
        z-index: -1;
    }
}

.decor__journal-mob {
    display: none;
}

@media (max-width: 576px) {
    .decor__journal-mob {
        position: absolute;
        display: block;
        bottom: 9.7%;
        right: 6%;
        z-index: 10;
    }
}


/* Основной овальный контейнер */
.oval-container {
    width: 100%;
    height: 100%;
    background-color: #262735;
    border-radius: 106px;
    position: relative;
    overflow: visible;
    border: none;
}

/* Стили для Swiper */
.swiper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Каждый слайд - овал */
.swiper-slide1 {
    width: 360px !important;
    height: 164px;
    border-radius: 106px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 30px;
    position: absolute;
    top: 0px;
    left: 0px;
    transition: all 0.5s ease;
    background-color: transparent !important;
    border: none;
    box-shadow: none;
    color: #EFEEF4;
    opacity: 1;
    gap: 10px;
}

.swiper-slide2 {
    width: 360px !important;
    height: 164px;
    border-radius: 106px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0px;
    left: 17%;
    padding: 20px 30px;
    position: relative;
    transition: all 0.5s ease;
    background-color: transparent !important;
    border: none;
    box-shadow: none;
    color: #EFEEF4;
    opacity: 1;
    gap: 10px;
}

.swiper-slide3 {
    width: 360px !important;
    height: 164px;
    border-radius: 106px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    right: -15%;
    text-align: center;
    padding: 20px 30px;
    position: relative;
    transition: all 0.5s ease;
    background-color: transparent !important;
    border: none;
    box-shadow: none;
    color: #EFEEF4;
    opacity: 1;
    gap: 10px;
}

/* Активный слайд - видимый овал */
.swiper-slide1.swiper-slide-active {
    background-color: #fff !important;
    z-index: 10;
    transform: scale(1);
    color: #262735;
    border: 5px solid #262735;

}

.swiper-slide2.swiper-slide-active {
    background-color: #fff !important;
    z-index: 10;
    transform: scale(1);
    color: #262735;
    border: 5px solid #262735;
}

.swiper-slide3.swiper-slide-active {
    background-color: #fff !important;
    z-index: 10;
    transform: scale(1);
    color: #262735;
    border: 5px solid #262735;
}

/* Стили для чисел */
.slide-number {
    font-size: 110px;
    font-weight: 100;
    margin-bottom: 10px;
    line-height: 1;
    color: inherit;
}

/* Стили для текста */
.slide-text {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 800px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: inherit;
    text-align: left;
}

.slide-text span {
    font-size: 96px;
    font-weight: 100;
    line-height: 90%;
}

/* Кнопки навигации - скрыты */
.swiper-button-next,
.swiper-button-prev {
    display: none;
}

/* Пагинация - индикаторы */
.swiper-pagination {
    bottom: -40px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #555;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #EFEEF4;
}

.swiper-slide2.swiper-slide-active.swiper__decor {
    filter: invert(90%);
}

.swiper__decor {
    position: absolute;
    left: 50%;
    top: 6%;
    z-index: 10;
}

/* Адаптивность */
@media (max-width: 1100px) {
    .main-container {
        width: 95%;
        max-width: 1030px;
    }

    .oval-container {
        border-radius: 70px;
        height: 140px;
    }

    .swiper-slide1,
    .swiper-slide2,
    .swiper-slide3 {
        width: 100% !important;
        height: 140px;
        border-radius: 70px;
    }

    .slide-number {
        font-size: 40px;
    }

    .slide-text {
        font-size: 13px;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .main-container {
        height: 120px;
    }

    .oval-container {
        border-radius: 60px;
        height: 120px;
    }

    .swiper-slide1,
    .swiper-slide2,
    .swiper-slide3 {
        height: 120px;
        border-radius: 60px;
        padding: 15px 25px;
    }

    .slide-number {
        font-size: 36px;
    }

    .slide-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .main-container {
        height: 100px;
    }

    .oval-container {
        border-radius: 50px;
        height: 100px;
    }

    .swiper-slide1,
    .swiper-slide2,
    .swiper-slide3 {
        height: 100px;
        border-radius: 50px;
        padding: 10px 20px;
    }

    .slide-number {
        font-size: 32px;
    }

    .slide-text {
        font-size: 10px;
    }
}

/**********/

/*callback*/

.callback {
    position: relative;
    /* Callback Block */
    --callback-offset-top: 80px;
    --callback-offset-bottom: 80px;
    --callback-offset-top-mobile: 60px;
    --callback-offset-bottom-mobile: 60px;
    --callback-all-texts-color: inherit;
    --callback-bg-color: inherit;

    /* Title */
    --callback-title-fz: 32px;
    --callback-title-fw: 700;
    --callback-title-fz-mobile: 24px;
    --callback-title-fw-mobile: 700;

    /* Lead */
    --callback-text-fz: 24px;
    --callback-text-fw: 400;
    --callback-text-fz-mobile: 18px;
    --callback-text-fw-mobile: 400;

    /* Button */
    --callback-button-fz: 18px;
    --callback-button-fw: 400;
    --callback-button-fz-mobile: 16px;
    --callback-button-fw-mobile: 400;
    --callback-button-color: #222;
    --callback-button-bg-color: #fbbb69;

    /* Legal Text */
    --callback-legal-fz: 14px;
    --callback-legal-fw: 400;
    --callback-legal-fz-mobile: 14px;
    --callback-legal-fw-mobile: 400;

    color: var(--callback-all-texts-color);
    background-color: #7650F5;
    border-radius: 16px;

}

@media (max-width: 576px) {
    .callback {
        border-radius: 0px;
    }
}


.callback__container {
    padding: 49px 32px 32px 32px;
}

@media (max-width: 576px) {
    .callback__container {
        padding: 31px 13px 40px 13px;
    }
}

.callback__upper {
    padding-bottom: 56px;
}

@media (max-width: 576px) {
    .callback__upper {
        padding-bottom: 28px;
    }
}



.callback__title {
    margin-bottom: 16px;
    font-size: var(--callback-title-fz);
    font-weight: var(--callback-title-fw);
}

@media (max-width: 576px) {
    .callback__title {
        width: 100%;
        font-size: var(--callback-title-fz-mobile);
        font-weight: var(--callback-title-fw-mobile);
    }
}

.callback__lead {
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    color: #fff;
    width: 63%;
}

@media (max-width: 576px) {
    .callback__lead {
        width: 100%;
        font-size: 16px;
        line-height: 130%;
        color: #FFFFFF;
        text-align: center;

    }
}

.callback__form {
    display: grid;
    grid-template-columns: 218.33px 218.33px 218.33px 269px;
    gap: 15px;
}

@media (max-width: 576px) {
    .callback__form {
        display: flex;
        flex-direction: column;
    }
}

.callback__form--hidden {
    display: none;
}

.callback__input {
    padding: 12px 24px;
    font-size: 18px;
    border: 1px solid #222;
    border-radius: 5px;
}

.callback__input::placeholder {
    color: #a7a9ac;
}

.callback__access {
    display: flex;
    gap: 4px;
    align-items: baseline;
}


.callback__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #B969FF;
    border-radius: 5px;
}

.callback__button:hover {
    background-color: #9B3CEE;
}

@media (max-width: 576px) {
    .callback__button {
        font-weight: 500;
        font-size: 14px;
        line-height: 100%;
        /* or 14px */
        text-align: center;
        color: #FFFFFF;
        padding: 12px 24px;
    }
}

.callback__legal {
    font-size: 14px;
    font-weight: 400;
    padding-top: 22px;
    line-height: 21px;
    color: #fff;
}

@media (max-width: 576px) {
    .callback__legal {
        font-weight: 400;
        font-size: 10px;
        line-height: 120%;
        /* or 12px */
        color: #FFFFFF;
        padding-bottom: 130px;


    }
}

.callback__legal--hidden {
    display: none;
}

.callback__legal-link {
    color: inherit;
    text-decoration: underline;
}

.callback__checkbox--hidden {
    display: none !important;
}

.callback__checkbox--hidden2 {
    display: none !important;
}

.callback__message {
    display: none;
    margin-top: 14px;
    margin-bottom: 14px;
}

.callback__message--visible {
    display: block;
}

.callback__message--success {
    font-size: 28px;
    color: #fff;
}

@media (max-width: 576px) {
    .callback__message--success {
        text-align: center;
    }
}

.callback__message--error {
    font-size: 20px;
    color: #dc291e;
}

.callback__decor1 {
    position: absolute;
    top: -6%;
    right: 2%;
    z-index: 10;
}

@media (max-width: 576px) {
    .callback__decor1 {
        display: none;
    }
}

.callback__decor2 {
    position: absolute;
    bottom: -42%;
    right: -20%;
    z-index: 10;
}

@media (max-width: 576px) {
    .callback__decor2 {
        display: none;
    }
}

.callback__decor3 {
    display: none;
}

@media (max-width: 576px) {
    .callback__decor3 {
        display: block;
        position: absolute;
        bottom: 0%;
        right: 0%;
        z-index: 10;
    }
}


.callback2 {
    /* Callback Block */
    --callback-offset-top: 80px;
    --callback-offset-bottom: 80px;
    --callback-offset-top-mobile: 60px;
    --callback-offset-bottom-mobile: 60px;
    --callback-all-texts-color: inherit;
    --callback-bg-color: inherit;

    /* Title */
    --callback-title-fz: 32px;
    --callback-title-fw: 700;
    --callback-title-fz-mobile: 24px;
    --callback-title-fw-mobile: 700;

    /* Lead */
    --callback-text-fz: 24px;
    --callback-text-fw: 400;
    --callback-text-fz-mobile: 18px;
    --callback-text-fw-mobile: 400;

    /* Button */
    --callback-button-fz: 18px;
    --callback-button-fw: 400;
    --callback-button-fz-mobile: 16px;
    --callback-button-fw-mobile: 400;
    --callback-button-color: #222;
    --callback-button-bg-color: #fbbb69;

    /* Legal Text */
    --callback-legal-fz: 14px;
    --callback-legal-fw: 400;
    --callback-legal-fz-mobile: 14px;
    --callback-legal-fw-mobile: 400;

    color: var(--callback-all-texts-color);
    background-color: #262735;
    border-radius: 16px;
}

@media (max-width: 576px) {
    .callback2 {
        margin: 0px -24px -18px -19px;
        border-radius: 0px;
    }
}

.callback2__container {
    padding: 49px 32px 32px 32px;
}

@media (max-width: 576px) {
    .callback2__container {
        padding-top: 35px;
        padding-bottom: 40px;
        padding-left: 14px;
        padding-right: 14px;
    }
}

.callback2__upper {
    padding-bottom: 34px;
}

.callback2__title {
    margin-bottom: 16px;
    font-size: var(--callback-title-fz);
    font-weight: var(--callback-title-fw);
}

@media (max-width: 576px) {
    .callback2__title {
        width: 100%;
        font-size: var(--callback-title-fz-mobile);
        font-weight: var(--callback-title-fw-mobile);
    }
}

.callback2__lead {
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    color: #fff;
    width: 98%;
}

@media (max-width: 576px) {
    .callback2__lead {
        width: 100%;

        font-weight: 400;
        font-size: 16px;
        line-height: 130%;
        /* or 21px */
        text-align: center;
        color: #FFFFFF;
    }
}

.callback2__form {
    display: grid;
    grid-template-columns: 218.33px 218.33px 218.33px 269px;
    gap: 15px;
}

@media (max-width: 576px) {
    .callback2__form {
        display: flex;
        flex-direction: column;
    }
}

.callback2__form--hidden {
    display: none;
}

.callback2__input {
    padding: 12px 24px;
    font-size: 18px;
    border: 1px solid #222;
    border-radius: 5px;
}

.callback2__input::placeholder {
    color: #a7a9ac;
}

.callback2__access {
    display: flex;
    gap: 4px;
    align-items: baseline;
}

.callback2__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #B969FF;
    border-radius: 5px;
}

.callback2__button:hover {
    background-color: #9B3CEE;
}

@media (max-width: 576px) {
    .callback2__button {
        font-weight: 500;
        font-size: 14px;
        line-height: 100%;
        text-align: center;
        color: #FFFFFF;
        padding: 16px 35px;
    }
}

.callback2__legal {
    font-size: 14px;
    font-weight: 400;
    padding-top: 22px;
    line-height: 21px;
    color: #fff;
}

@media (max-width: 576px) {
    .callback2__legal {
        font-weight: 400;
        font-size: 10px;
        line-height: 120%;
        /* or 12px */

        color: #FFFFFF;


    }
}

.callback2__legal--hidden {
    display: none;
}

.callback2__legal-link {
    color: inherit;
    text-decoration: underline;
}

.callback2__checkbox--hidden {
    display: none !important;
}

.callback2__checkbox--hidden2 {
    display: none !important;
}

.callback2__message {
    display: none;
    margin-top: 14px;
    margin-bottom: 14px;
}

.callback2__message--visible {
    display: block;
}

.callback2__message--success {
    font-size: 28px;
    color: #fff;
}

@media (max-width: 576px) {
    .callback2__message--success {
        text-align: center;
    }
}

.callback2__message--error {
    font-size: 20px;
    color: #dc291e;
}

.callback3 {
    /* Callback Block */
    --callback-offset-top: 80px;
    --callback-offset-bottom: 80px;
    --callback-offset-top-mobile: 60px;
    --callback-offset-bottom-mobile: 60px;
    --callback-all-texts-color: inherit;
    --callback-bg-color: inherit;

    /* Title */
    --callback-title-fz: 32px;
    --callback-title-fw: 700;
    --callback-title-fz-mobile: 24px;
    --callback-title-fw-mobile: 700;

    /* Lead */
    --callback-text-fz: 24px;
    --callback-text-fw: 400;
    --callback-text-fz-mobile: 18px;
    --callback-text-fw-mobile: 400;

    /* Button */
    --callback-button-fz: 18px;
    --callback-button-fw: 400;
    --callback-button-fz-mobile: 16px;
    --callback-button-fw-mobile: 400;
    --callback-button-color: #222;
    --callback-button-bg-color: #fbbb69;

    /* Legal Text */
    --callback-legal-fz: 14px;
    --callback-legal-fw: 400;
    --callback-legal-fz-mobile: 14px;
    --callback-legal-fw-mobile: 400;

    color: var(--callback-all-texts-color);
    background-color: #B969FF;
    border-radius: 16px;
    margin-bottom: 90px;
}

@media (max-width: 576px) {
    .callback3 {
        border-radius: 0px;
        margin-bottom: 0px;
    }
}

.callback3__container {
    padding: 49px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media (max-width: 576px) {
    .callback3__container {
        padding: 105px 14px 30px 14px;
    }
}

.callback3__upper {
    padding-bottom: 56px;
    padding-right: 62px;
}

@media (max-width: 576px) {
    .callback3__upper {
        padding-bottom: 20px;
        padding-right: 0px;
        text-align: center;

    }
}

.callback3__title {
    margin-bottom: 16px;
    font-size: var(--callback-title-fz);
    font-weight: var(--callback-title-fw);
}

@media (max-width: 576px) {
    .callback3__title {
        width: 100%;
        font-size: var(--callback-title-fz-mobile);
        font-weight: var(--callback-title-fw-mobile);
    }
}

.callback3__lead {
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    color: #fff;
}

.callback3__lead span {
    display: inline;
}


@media (max-width: 576px) {
    .callback3__lead {
        width: 100%;
        font-size: 16px;
        line-height: 130%;
        color: #FFFFFF;
    }

    .callback3__lead span {
        display: none;
    }

}

.callback3__form {
    display: grid;
    grid-template-columns: 218.33px 218.33px 218.33px 269px;
    gap: 15px;
}

@media (max-width: 576px) {
    .callback3__form {
        display: flex;
        flex-direction: column;
        grid-template-columns: 218.33px 218.33px 218.33px 269px;
        gap: 15px;
    }
}

.callback3__form--hidden {
    display: none;
}

.callback3__input {
    padding: 12px 24px;
    font-size: 18px;
    border: 1px solid #222;
    border-radius: 5px;
}

.callback3__input::placeholder {
    color: #a7a9ac;
}

.callback3__access {
    display: flex;
    gap: 4px;
    align-items: baseline;
}

.callback3__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #7650F5;
    border-radius: 5px;
}

.callback3__button:hover {
    background-color: #592FE4;
}

@media (max-width: 576px) {
    .callback3__button {
        font-size: 14px;
        padding: 8px 29px;
    }
}

.callback3__legal {
    font-size: 14px;
    font-weight: 400;
    padding-top: 22px;
    line-height: 21px;
    color: #fff;
}

@media (max-width: 576px) {
    .callback3__legal {
        font-size: 10px;
        line-height: 120%;

    }
}

.callback3__legal--hidden {
    display: none;
}

.callback3__legal-link {
    color: inherit;
    text-decoration: underline;
}

.callback3__checkbox--hidden {
    display: none !important;
}

.callback3__checkbox--hidden2 {
    display: none !important;
}

.callback3__message {
    display: none;
    margin-top: 14px;
    margin-bottom: 14px;
}

.callback3__message--visible {
    display: block;
}

.callback3__message--success {
    font-size: 28px;
    color: #fff;
}

@media (max-width: 576px) {
    .callback3__message--success {
        text-align: center;
    }
}

.callback3__message--error {
    font-size: 20px;
    color: #dc291e;
}

.callback3__lower {
    padding-left: 500px;
}

/* .callback__form2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.callback__form--hidden2 {
    display: none;
}

.callback__legal2 {
    font-size: var(--callback-legal-fz);
    font-weight: var(--callback-legal-fw);
    padding-top: 24px;
}

@media (max-width: 576px) {
    .callback__legal2 {
        font-size: var(--callback-legal-fz-mobile);
        font-weight: var(--callback-legal-fw-mobile);
        text-align: center;
    }
}

.callback__legal--hidden2 {
    display: none;
}

.callback__message--success2 {
    display: none;
    margin-top: 14px;
    margin-bottom: 14px;
    font-size: 28px;
    color: #4b9c57;
}

@media (max-width: 576px) {
    .callback__message--success2 {
        text-align: center;
    }
}

.callback__message--error2 {
    display: none;
    margin-top: 14px;
    margin-bottom: 14px;
    font-size: 20px;
    color: #dc291e;
}

.callback__message--visible2 {
    display: block;
} */

/**************/

/* program */

.program__inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.program__title {
    padding-top: 88px;
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 120%;
    color: #262735;
    text-align: center;
}

@media (max-width: 576px) {
    .program__title {
        padding-top: 31px;
        font-size: 16px;

    }
}


.program__cardinner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 576px) {
    .program__cardinner {
        gap: 10px;
    }
}

.program__card {
    display: flex;
    gap: 36px;
    background-color: #EFEEF4;
    border-radius: 16px;
    padding: 32px 30px 32px 35px;
}

@media (max-width: 576px) {
    .program__card {
        flex-direction: column;
        gap: 12px;
        border-radius: 8px;
        padding: 14px 14px 12px 9px;
        margin: 0px 10px;

    }
}

.pause__card {
    display: flex;
    gap: 36px;
    background-color: #EFEEF4;
    border-radius: 16px;
    padding: 32px 30px 32px 35px;
}

@media (max-width: 576px) {
    .pause__card {
        gap: 12px;
        border-radius: 8px;
        padding: 12px 14px 10px 9px;
        margin: 0px 10px;
        align-items: baseline;

    }
}


.program__card2 {
    display: flex;
    flex-direction: column;
    background-color: #EFEEF4;
    border-radius: 16px;
}

@media (max-width: 576px) {
    .program__card2 {
        border-radius: 8px;
        padding: 14px 14px 12px 9px;
        background: linear-gradient(to bottom, white 0%, white 13%, black 13%, black 100%);

    }
}


.program__cardinner2 {
    position: relative;
    display: flex;
    gap: 36px;
    padding: 32px 30px 0 35px;
}

@media (max-width: 576px) {
    .program__cardinner2 {
        flex-direction: column;
        padding: 14px 14px 12px 9px;
        gap: 12px;
        background: #EFEEF4;
        border-radius: 16px;
    }
}

.program__rightlast2 {
    width: 80%;
}

.program__lefttime {
    font-size: 32px;
    color: #fff;
    line-height: 117%;
    font-weight: 500;
    background-color: #262735;
    padding: 23px 37.5px;
    border-radius: 46px;
}

@media (max-width: 576px) {
    .program__lefttime {
        font-weight: 500;
        font-size: 24px;
        line-height: 117%;
        text-align: center;
        padding: 9px 13.5px;


    }
}

.program__cardright {
    display: flex;
    flex-direction: column;
}

.program__righttitle {
    padding-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    color: #222;
    padding-top: 5px;
}

@media (max-width: 576px) {
    .program__righttitle {
        font-size: 16px;
        line-height: 130%;
        padding-bottom: 2px;
    }
}

.program__righttitle2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    color: #222;
    padding-top: 25px;
}

@media (max-width: 576px) {
    .program__righttitle2 {
        font-size: 16px;
        line-height: 130%;

    }
}


.program__rightbottom {
    padding-top: 24px;
    border-top: 1px solid #BCBBBB;
    display: flex;
    gap: 47px;
}

@media (max-width: 576px) {
    .program__rightbottom {
        flex-direction: column;
        border-top: 0px;
        gap: 32px;
    }
}

.program__bottominner {
    display: flex;
    gap: 16px;
}

@media (max-width: 576px) {
    .program__bottominner {
        display: flex;
        gap: 9px;
    }
}

.program__bottomtitle {
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
    color: #222;
}

@media (max-width: 576px) {
    .program__bottomtitle {
        font-size: 12px;
        line-height: 130%;
    }
}


.program__bottomtext {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: #222;
}

@media (max-width: 576px) {
    .program__bottomtext {
        font-size: 12px;
        line-height: 130%;
    }
}


.program__img {
    height: 70px;
}

@media (max-width: 576px) {
    .program__img {
        height: 39px;
    }
}


.program__white {
    background-color: #fff;
    color: #262735;
}

.program__blue {
    background-color: #7650F5;
}

.program__cardleft {}

@media (max-width: 576px) {
    .program__cardleft {
        width: 40%;
    }
}


.program__cardrightlast {
    display: flex;
    flex-direction: column;
}

.program__lasttitle {
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    padding-bottom: 22px;
    color: #222;
}

@media (max-width: 576px) {
    .program__lasttitle {
        font-size: 16px;
        line-height: 130%;
        padding-bottom: 0px;
    }
}

.program__lasttitle2 {
    font-size: 30px;
    line-height: 130%;
    font-weight: 700;
    color: #222;
    padding-top: 30px;
    border-top: 1px solid #BCBBBB;
    padding-bottom: 17px;
}

@media (max-width: 576px) {
    .program__lasttitle2 {
        font-size: 16px;
        line-height: 130%;
        border-top: 0px;
        padding-top: 24px;
        width: 110%;
    }
}

.program__lastsubtitle {
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
    color: #262735;
    padding-bottom: 5px;
    width: 58%;
}

@media (max-width: 576px) {
    .program__lastsubtitle {
        font-weight: 400;
        font-size: 12px;
        width: 132%;

    }
}

.program__lasttext {
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
    color: #262735;
    padding-bottom: 5px;
}

@media (max-width: 576px) {
    .program__lasttext {
        font-size: 12px;
        line-height: 140%;
        font-weight: 400;
        color: #262735;
        padding-bottom: 5px;
    }

}

.program__lastlist {
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
    color: #262735;
    list-style-type: disc;
    margin-left: 25px;
}

@media (max-width: 576px) {
    .program__lastlist {
        font-size: 12px;
        margin-left: 20px;
        width: 118%;
    }

}

.program__lastlistinner {
    padding-bottom: 25px;
}

.program__lasttext2 {
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
    color: #262735;
    padding-bottom: 41px;
}

@media (max-width: 576px) {
    .program__lasttext2 {
        font-size: 12px;
        padding-bottom: 60px;
        width: 80%;
    }

}


.program__lasttext2 span {
    font-weight: 700;
}

.program__decor1 {
    position: absolute;
    top: 35%;
    right: 3%;
    z-index: 10;
}

@media (max-width: 576px) {
    .program__decor1 {
        position: absolute;
        top: 71%;
        right: 0%;
        z-index: 10;
        width: 118px;
    }
}



/************/

/*organiser*/

.organiser__inner {
    position: relative;
    padding-top: 97px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 576px) {
    .organiser__inner {
        position: relative;
        padding-top: 38px;
        display: flex;
        flex-direction: column;
    }
}


.organiser__inner2 {
    display: flex;
    flex-direction: column;
    /* align-items: flex-end; */
    gap: 38px;
    padding: 0px 146px 0 436px;
}

@media (max-width: 576px) {
    .organiser__inner2 {
        display: flex;
        flex-direction: column;
        /* align-items: flex-end; */
        gap: 20px;
        padding: 0px 14px 179px 14px;
    }
}

.organiser__title {
    font-size: 30px;
    font-weight: 700;
    line-height: 130%;
    color: #222;
}

@media (max-width: 576px) {
    .organiser__title {
        font-weight: 700;
        font-size: 16px;
        line-height: 130%;
    }
}

.organiser__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: #262735;
    padding-bottom: 49px;
    width: 100%;
}

@media (max-width: 576px) {
    .organiser__text {
        font-size: 12px;
        line-height: 130%;
        padding-bottom: 35px;
        width: 95%;
    }
}

.organiser__text span {
    display: inline;
}

@media (max-width: 576px) {
    .organiser__text span {
        display: none;
    }
}


.organiser__decor1 {
    position: absolute;
    top: 8%;
    left: 3%;
    z-index: 10;
}

@media (max-width: 576px) {
    .organiser__decor1 {
        display: none;
    }
}

.organiser__decor2 {
    position: absolute;
    transform: rotate(-180deg);
    rotate: x 180deg;
    top: -23%;
    left: -28%;
    z-index: 10;
}

@media (max-width: 576px) {
    .organiser__decor2 {
        display: none;
    }
}

.organiser__decor3 {
    position: absolute;
    top: 24%;
    left: 92%;
    z-index: 10;
}

@media (max-width: 576px) {
    .organiser__decor3 {
        display: none;
    }
}

/*********/

/*footer*/

.footer {
    background-color: #262735;
}

.footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 45px 30px 107px 30px;
    gap: 395px;
}

.footer__container {
    max-width: 1030px;
    margin: 0 auto;
}

.footer__left,
.footer__right {
    display: flex;
    gap: 21px;
    flex-direction: column;
    align-items: flex-start;
}

.footer__left {}

.footer__bottominner {
    display: flex;
    flex-direction: column;
}

.footer__links {
    display: flex;
    gap: 10px;
}

.footer__copyright {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: #F0F0F0;
}

.footer__terms {
    text-decoration: underline;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: #F0F0F0;
}

.footer__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer__socials-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100px;
}

@media (max-width: 576px) {
    .footer__socials-wrapper {
        display: none;
    }
}

.footer__socials-link {
    -webkit-transition: 0.2s opacity ease;
    -o-transition: 0.2s opacity ease;
    transition: 0.2s opacity ease;
}

.footer__socials-link:hover {
    opacity: 0.9;
    -webkit-transition: 0.2s opacity ease;
    -o-transition: 0.2s opacity ease;
    transition: 0.2s opacity ease;
}

.footer__socials-img {
    width: 40px;
    height: 40px;
}

/********************/

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    /* Размытие фона под модалкой */
    -webkit-backdrop-filter: blur(8px);
    /* Для Safari */
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    /* Размытие фона под модалкой */
    -webkit-backdrop-filter: blur(8px);
    /* Для Safari */
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: flex-start;
}

.modal__inner {
    position: relative;
    width: 640px;
    height: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 31px;
    align-items: flex-start;
    background-color: rgba(236, 234, 248, 1);
}


.modal__block {
    position: relative;
    width: 547px;
    height: 243px;
    border-radius: 21px;
    margin: 0 auto;
    background-color: #FFF;
    margin-top: 30px;
}

.modal__block2 {
    position: relative;
    width: 547px;
    height: 243px;
    border-radius: 21px;
    margin: 0 auto;
    background-color: #FFF;
    margin-bottom: 30px;
}



.modal__block-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 52px 101px 42px 50px;
}


.modal__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: #262735;
}


.modal__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    /* or 28px */

    color: #262735;
}




.modal__button--block {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    border-radius: 32.5px;
    background-color: rgba(118, 80, 245, 1);
    padding: 18.5px 24px;
    color: #fff;
    align-items: flex-start;
    margin-left: 45px;

}

.modal__text3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    text-align: center;
    color: #444444;
    padding-bottom: 30px;
    margin: 0 120px;
}

.modal__button--tg2 {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    color: #706F6F;
}



.modal-icon {
    width: 40px;
    padding-bottom: 10px;
}

.modal__close-button {
    display: flex;
    gap: 12px;
    align-items: center;
    position: absolute;
    top: 5%;
    right: 5%;
    z-index: 10;
}

.modal__link {

    text-decoration: underline;
}

@media (max-width: 576px) {
    .modal2 {}

    .modal__inner {
        position: relative;
        max-width: 300px;
        height: 240px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
        align-items: center;
    }

    .modal__block {
        width: 200px;
        height: 150px;
    }

    .modal__block2 {
        width: 200px;
        height: 150px;
        margin-bottom: 0px;
    }

    .modal__title {
        font-weight: 700;
        font-size: 11px;
        line-height: 130%;
        text-align: center;
        color: #444444;
        padding-bottom: 10px;
        /* margin: 0 48px; */
    }


    .modal__text {
        font-weight: 400;
        font-size: 11px;
        line-height: 130%;
        text-align: center;
        color: #444444;
        padding-bottom: 10px;
        /* margin: 0 48px; */
    }

    .modal__button--tg2 {
        font-weight: 400;
        font-size: 10px;
        line-height: 130%;
        text-align: center;
        color: #706F6F;
    }

    .modal__link {
        text-decoration: underline;
    }

    .modal-icon {
        width: 25px;
        padding-bottom: 5px;
    }

    .modal__close-button2 {
        position: absolute;
        top: 1%;
        right: 1%;
        z-index: 10;
    }

    .close-icon {
        width: 25px;
    }


    .modal__text3 {
        font-weight: 400;
        font-size: 12px;
        line-height: 130%;
        text-align: center;
        color: #444444;
        padding-bottom: 10px;
        margin: 0 35px;
    }


    .modal__button--block {
        font-size: 10px;
        line-height: 28px;
        text-align: center;
        border-radius: 32.5px;
        background-color: rgba(118, 80, 245, 1);
        padding: 0px 5px;
        color: #fff;
        align-items: flex-start;
        margin-left: 10px;

    }

    .modal__block-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 10px 10px 10px 10px;
    }
}


.modal--visible {
    display: flex;
}

.modal--visible2 {
    display: flex;
}

.userCheckButton:disabled {
    opacity: 0.6;
    border: 0px solid #fff;
    pointer-events: none;
}

.userCheckButton2:disabled {
    opacity: 0.6;
    border: 0px solid #fff;
    pointer-events: none;
}

.reg__hidden {
    display: none;
}

/*Новая модалка*/
.modal_access {
    --modal-close-button-color: #000;


    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding-right: 15px;
    padding-left: 15px;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal_access__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 600px;

    color: var(--modal-all-texts-color);
    text-align: center;
    background-color: var(--modal-bg-color);

}

@media (max-width: 650px) {

    .modal_access {
        width: 100%;
    }

    .modal_access__inner {
        width: 90%;
    }
}

@media (max-width: 450px) {

    .modal_access {
        width: 100%;
    }

    .modal_access__inner {
        width: 100%;
    }
}

.modal_access--visible {
    display: flex;
}

.modal_access__inner a img {
    width: 100%;
}


.modal_access__close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-color: var(--modal-close-button-color);
    border-style: solid;
    border-width: 2px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.modal_access__close-button::before {
    position: absolute;
    top: 47%;
    left: 18%;
    width: 20px;
    height: 2px;
    content: '';
    background-color: var(--modal-close-button-color);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.modal_access__close-button::after {
    position: absolute;
    top: 47%;
    left: 18%;
    width: 20px;
    height: 2px;
    content: '';
    background-color: var(--modal-close-button-color);
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}


.modal_access__close-button:hover {
    transform: rotate(90deg);
}

.modal_access__close-button:hover::before {
    transform: rotate(135deg);
}

.modal_access__close-button:hover::after {
    transform: rotate(45deg);
}



.close-text {
    font-weight: 700;
    font-size: 10px;
    line-height: 150%;
    /* or 15px */
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #262735;
}

.close-icon {}

.modal__decor-logo {
    position: absolute;
    top: 7%;
    left: 7%;
    z-index: 10;

}

.modal__decor-block {
    position: absolute;
    bottom: -41%;
    right: 3%;
    z-index: 10;
}

.modal__decor-block2 {
    position: absolute;
    bottom: -54%;
    right: -1%;
    z-index: 10;
}


.modal__background-decor {
    position: absolute;
    top: 0%;
    right: 0%;
    z-index: 0;
}

/* modal 3 */


.modal3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    /* Размытие фона под модалкой */
    -webkit-backdrop-filter: blur(8px);
    /* Для Safari */
    z-index: 9999;
    justify-content: center;
    align-items: center;
    display: none;
}

.modal3__inner {
    position: relative;
    width: 640px;
    height: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 31px;
    align-items: flex-start;
    background-color: rgba(236, 234, 248, 1);
}

.modal3__background-decor {
    position: absolute;
    top: 0%;
    right: 0%;
    z-index: 0;
}

.modal3__decor-logo {
    position: absolute;
    top: 7%;
    left: 7%;
    z-index: 10;

}


.modal3__close-button {
    display: flex;
    gap: 12px;
    align-items: center;
    position: absolute;
    top: 5%;
    right: 5%;
    z-index: 10;
}

.close-text3 {
    font-weight: 700;
    font-size: 10px;
    line-height: 150%;
    /* or 15px */
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #262735;
}

.close-icon3 {}

.modal3__block {
    position: relative;
    width: 547px;
    height: 313px;
    border-radius: 21px;
    margin: 0 auto;
    background-color: #FFF;
}

.modal3__decor-block {
    position: absolute;
    bottom: -17%;
    right: -4.5%;
    z-index: 10;
}

.modal3__block-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 52px 50px 42px 50px;
}

.modal3__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    color: #262735;
}

.modal3__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    /* or 28px */
    width: 60%;
    color: #262735;
}

@media (max-width: 576px) {
    .modal3 {}

    .modal3__inner {
        position: relative;
        max-width: 300px;
        height: 240px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
        align-items: center;
    }

    .modal3__title {
        font-weight: 700;
        font-size: 11px;
        line-height: 130%;
        text-align: center;
        color: #222222;
    }

    .modal__decor-logo {
        position: absolute;
        top: 7%;
        left: 7%;
        z-index: 10;
        height: 20px;
    }

    .modal3__decor-logo {
        position: absolute;
        top: 7%;
        left: 7%;
        z-index: 10;
        height: 20px;
    }

    .modal__decor-block2{
        display: none;
    }

    .modal3__block {
        width: 200px;
        height: 140px;
    }


    .modal3__text {
        font-weight: 400;
        font-size: 11px;
        line-height: 130%;
        text-align: center;
        color: #444444;
        padding-bottom: 10px;
        /* margin: 0 48px; */
        width: 100%;
    }

    .modal__button--tg2 {
        font-weight: 400;
        font-size: 10px;
        line-height: 130%;
        text-align: center;
        color: #706F6F;
    }

    .modal__link {
        text-decoration: underline;
    }

    .modal-icon {
        width: 25px;
        padding-bottom: 5px;
    }

    .modal3__close-button2 {
        position: absolute;
        top: 1%;
        right: 1%;
        z-index: 10;
    }

    .close-icon3 {
        width: 25px;
    }

    .modal__decor-block {
        display: none;
    }

    .modal3__decor-block {
        display: none;
    }

    .modal3__block-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        padding: 10px 10px 10px 10px;
    }

}





/* modal 3 */

.hidden {
    display: none;
}

.userCheckButton:disabled {
    opacity: 0.6;
    border: 0px solid #fff;
    pointer-events: none;
}

.userCheckButton2:disabled {
    opacity: 0.6;
    border: 0px solid #fff;
    pointer-events: none;
}

.reg__hidden {
    display: none;
}