*{
    box-sizing: border-box;
}

body{
    padding-right: 0 !important;
}

body::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease 0s;
    pointer-events: none;
    z-index: 1004;
}
body.popup-show::after {
    opacity: 1;
}
.popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 30px 10px;
    transition: visibility 0.8s ease 0s;
    visibility: hidden;
    pointer-events: none;
    overflow: auto;
    @media(max-width: 767px) {
        padding: 0;
    }
}
.popup_show {
    z-index: 1005;
    visibility: visible;
    pointer-events: auto;
}
.popup_show .popup__content {
    visibility: visible;
    transform: scale(1);
}
.popup__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup__content {
    visibility: hidden;
    transform: scale(0);
    transition: transform 0.3s ease 0s;
    width: 100%;
    max-width: 560px;
    border-radius: 30px;
    background: linear-gradient(283deg, #E8F6FC 0%, #EDFCEF 100%), linear-gradient(308deg, #DCFADC 100%, #D9F1FC 0%, #EDFCEF 69.9%), #2A53A6;
    .lock & {
        visibility: visible;
    }
    @media(max-width: 767px) {
        height: 100dvh;
        border-radius: 0;
        padding-top: 90px;
    }
}

.popup__close{
    cursor: pointer;
    position: absolute;
    width: 44px;
    height: 44px;
    background: white;
    display: flex;
    align-items: center;
    top: 14px;
    right: 14px;
    justify-content: center;
    outline: none;
    border: none;
    border-radius: 50%;
    &:before{
        width: 13px;
        height: 13пшеpx;
    }
}

.input_modal{
    padding: 11px 20px;
    border: 1px solid transparent;
    @media(max-width: 991px) {
        padding: 11px 14px;
    }
}

.popup__content-bottom{
    margin-top: 30px;
}

.popup__content_webinar{
    @media(max-width: 767px) {
        display: flex;
        flex-direction: column;
    }
}

.popup__content-top{
    @media(max-width: 767px) {
        flex: 1 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.popup-main{
    .popup__content{
        background: white;
        display: flex;
        align-items: center;
    }
    .popup__close{
        background: #F5F7F5;
    }
    .start-main-form{
        display: block;
        padding: 0;
        margin: 0;
        width: 100%;
        .mb-20{
            margin-bottom: 20px;
        }
    }
}

.popup-main__content{
    width: 100%;
    margin: 90px 0 30px;
    padding: 0 40px;
    height: 100%;
    overflow: auto;
    @media(max-width: 991px) {
        padding: 0 24px 24px;
        margin: 0;
    }
}

.popup-line{
    position: absolute;
    left: 0;
    top: 70px;
    width: 100%;
    height: 1px;
    background: #F5F7F5;
}

/* Стили для модалки */
.modal {
    display: none; /* Скрыта по умолчанию */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Прозрачный фон */
    z-index: 9999;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Montserrat';
}

/* Контент модалки */
.modal-content {
    background-color: white;
    padding: 40px 20px;
    border-radius: 8px;
    width: 90%;
    max-height: 90vh; /* ограничение по высоте экрана */
    overflow-y: auto; /* прокрутка внутри */
    max-width: 600px;
    position: relative;
}

/* Кнопка закрытия */
.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    svg{

    }
    &:hover{
        svg{
            stroke: var(--green);
        }
    }
}

.content-modal{
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Анимация для появления модалки */
.modal.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.form-modal{
    .form-item{
        width: 100%;
    }
}

.modal-open{
    overflow: hidden !important;
}

.icon-success{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 120px !important;
    height: 120px !important;
    margin-left: auto;
    margin-right: auto;
    svg{
        fill: var(--green) !important;
    }
}

.modal-reviews{
    .modal-content{
        max-width: 800px;
    }
    .review-slide__pic{
        width: 120px;
        height: 120px;
        @media(max-width: 991px) {
            width: 80px;
            height: 80px;
        }
    }
    .size-18{
        font-size: 22px;
    }
    p{
        margin-bottom: 20px;
    }
    ul{
        padding-left: 20px;
        li{
            list-style: disc;
            margin-bottom: 5px;
            &:last-child{
                margin-bottom: 0;
            }
        }
    }
}

.radio-city__item{
    position: relative;
    margin-bottom: 4px;
    input{
        &:checked{
            & + label{
                background: white;
                border: 2px solid #47DE73;
            }
        }
    }
    label{
        min-height: 44px;
        border: 2px solid transparent;
        display: flex;
        align-items: center;
        font-size: 14px;
        font-weight: 500;
        border-radius: 16px;
        transition: all .25s linear;
        padding: 4px 10px;
        cursor: pointer;
        background: #F5F7F5;
    }
    img{
        margin-right: 6px;
        flex-shrink: 0;
    }
    &:last-child{
        margin-bottom: 0;
    }
}

.popup-consilium{
    .popup__close{
        top: 40px;
        right: 40px;
        width: 20px;
        height: 20px;
        background: transparent;
        img{
            width: 20px;
            height: 20px;
        }
        @media(max-width: 991px) {
            top: 20px;
            right: 20px;
        }
    }
    .popup__content{
        max-width: 1200px;
        width: 100%;
        padding: 60px;
        background: none;
        border-radius: 48px;
        background-image: url("img/popup-consilium.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        @media(max-width: 991px) {
            padding: 60px 14px 20px;
            border-radius: 0;
        }
    }
    .start-info__item{
        background: linear-gradient(45deg, #66CC72, #92E093);
        box-shadow: 0 4px 30px rgba(255, 88, 48, 0.05);
        backdrop-filter: blur(30px);
        &:first-child{
            margin-left: 0;
        }
    }
    .start-info__date{
        background: rgba(255, 254, 254, 0.12);
    }
    .button{
        padding: 0 60px;
    }
}

.popup-consilium-main{
    position: relative;
    z-index: 1;
    @media(max-width: 991px) {
        text-align: center;
    }
}

.popup-consilium-pic{
    position: absolute;
    top: 130px;
    right: -200px;
    img{
         max-width: 100%;
    }
    @media(max-width: 991px) {
        max-width: 260px;
        position: relative;
        top: auto;
        right: auto;
        margin: 20px auto;
    }
}

.start-info {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    @media(max-width: 991px) {
        margin-bottom: 20px;
        width: 100%;
        justify-content: space-between;
    }
}

.start-info__item {
    height: 60px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    width: 193px;
    margin-left: 10px;
    color: white;
    display: flex;
    align-items: center;
    @media(max-width: 991px) {
        margin-left: 0;
        width: calc(50% - 5px);
        border-radius: 10px;
    }
}

.start-info__date {
    flex-shrink: 0;
    width: 88px;
    height: 52px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    @media(max-width: 991px) {
        border-radius: 10px;
        width: 68px;
        margin-right: 10px;
    }
}

a{
    transition: all .25s linear;
}

.icon {
    &::before {
        content: "";
        mask: var(--icon) center center/contain no-repeat;
        -webkit-mask: var(--icon) center center/contain no-repeat;
        width: 16px;
        height: 16px;
        display: block;
        transition: 0.25s;
        background: #494D49;
    }
}

.input{
    padding: 14px;
    border-radius: 20px;
    border: 1px solid #EBEDEB;
    font-family: inherit;
    color: black;
    width: 100%;
    font-weight: 400;
    height: 44px;
    outline: none;
    font-size: 14px;
    &::placeholder{
        color: #828D99;
    }
    &.error{
        animation: errorBlock 1s ease-in-out;
        animation-fill-mode: forwards;
        color: red;
        border: 1px solid red;
        &::placeholder{
            color: red;
        }
    }
}

@keyframes errorBlock{
    20%{
        transform: translateX(5px);
    }
    40%{
        transform: translateX(-5px);
    }
    60%{
        transform: translateX(2px);
    }
    80%{
        transform: translateX(-2px);
    }
    100%{
        transform: translateX(0px);
    }
}

.check-item{
    position: relative;
    input{
        &:checked{
            & + .check-label{
                font-weight: 500;
                .check-icon{
                    background: #6BD677;
                    &:before{
                        background: white;
                    }
                }
            }
        }
    }
}

.check-icon{
    width: 20px;
    height: 20px;
    background: #EDEFF2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 10px;
    transition: all .25s linear;
    &:before{
        width: 10px;
        height: 10px;
        background: rgba(73, 77, 73, 0.3);
    }
}

.input-absolute{
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.check-label{
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 100%;
    transition: all .25s linear;
}

.font-stem {
    font-family: Montserrat;
    font-weight: 400;
}

.font-stem-main{
    font-family: Stem;
    font-weight: 400;
    h1, h2, h3, h4, h5, h6{
        font-weight: inherit;
    }
}

.size-100{
    font-size: 100px;
    @media(max-width: 991px) {
        font-size: 66px;
    }
}

.size-80{
    font-size: 80px;
    line-height: 1;
    @media(max-width: 991px) {
        font-size: 24px;
    }
}

.size-70{
    font-size: 70px;
    line-height: .8;
    @media(max-width: 991px) {
        font-size: 30px;
        line-height: 1;
    }
}

.size-60{
    font-size: 60px;
    @media(max-width: 767px) {
        font-size: 30px;
    }
}

.size-56{
    font-size: 56px;
    line-height: 1;
    @media(max-width: 991px) {
        font-size: 24px;
    }
}

.size-50{
    font-size: 50px;
    @media(max-width: 767px) {
        font-size: 26px;
    }
}

.size-40 {
    font-size: 40px;
    line-height: 1;
    @media(max-width: 991px) {
        font-size: 24px;
    }
}

.size-36{
    font-size: 36px;
    @media(max-width: 767px) {
        font-size: 21px;
    }
}

.size-32{
    font-size: 32px;
    line-height: 1;
    @media(max-width: 991px) {
        font-size: 20px;
    }
}

.size-26{
    font-size: 26px;
    @media(max-width: 991px) {
        font-size: 16px;
    }
}

.size-24{
    font-size: 24px;
    line-height: 1.2;
    @media(max-width: 991px) {
        font-size: 14px;
    }
}

.size-22{
    font-size: 22px;
    @media(max-width: 991px) {
        font-size: 13px;
    }
}

.size-20{
    font-size: 20px;
    @media(max-width: 991px) {
        font-size: 12px;
    }
}

.size-18 {
    font-size: 18px;
    line-height: 1.2;
    @media(max-width: 991px) {
        font-size: 12px;
    }
}

.size-14 {
    font-size: 14px;
    @media(max-width: 991px) {
        font-size: 12px;
    }
}

.size-12{
    font-size: 12px;
}

.size-10{
    font-size: 10px;
    @media(max-width: 991px) {
        font-size: 8px;
    }
}

.size-8{
    font-size: 8px;
}

.size-34-mobile{
    @media(max-width: 991px) {
        font-size: 34px;
    }
}

.size-30-mobile{
    @media(max-width: 991px) {
        font-size: 30px;
    }
}

.size-24-mobile{
    @media(max-width: 991px) {
        font-size: 24px;
    }
}

.size-20-mobile{
    @media(max-width: 991px) {
        font-size: 20px;
    }
}

.size-14-mobile{
    @media(max-width: 991px) {
        font-size: 14px;
    }
}

.size-12-mobile{
    @media(max-width: 991px) {
        font-size: 12px;
    }
}

.mb-100{
    margin-bottom: 100px;
    @media(max-width: 991px) {
        margin-bottom: 40px;
    }
}

.mb-80{
    margin-bottom: 80px;
}

.mb-60 {
    margin-bottom: 60px;
    @media(max-width: 991px) {
        margin-bottom: 20px;
    }
}

.mb-40{
    margin-bottom: 40px;
    @media(max-width: 991px) {
        margin-bottom: 20px;
    }
}

.mb-30{
    margin-bottom: 30px;
    @media(max-width: 991px) {
        margin-bottom: 20px;
    }
}

.mb-20{
    margin-bottom: 20px;
    @media(max-width: 991px) {
        margin-bottom: 10px;
    }
}

.mb-15{
    margin-bottom: 15px;
}

.mb-10{
    margin-bottom: 10px;
    @media(max-width: 991px) {
        margin-bottom: 6px;
    }
}

.mb-6{
    margin-bottom: 6px;
}

.mb-4{
    margin-bottom: 4px;
}

.mb-2{
    margin-bottom: 2px;
}

.mt-0 {
    margin-top: 0;
}

.mb-20-mobile{
    @media(max-width: 991px) {
        margin-bottom: 20px;
    }
}

.size-16-mobile{
    @media(max-width: 991px) {
        font-size: 16px;
    }
}

.mb-14-mobile{
    @media(max-width: 991px) {
        margin-bottom: 14px;
    }
}

.mb-10-mobile{
    @media(max-width: 991px) {
        margin-bottom: 10px;
    }
}

.fw-300{
    font-weight: 300 !important;
}

.fw-400{
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700{
    font-weight: 700 !important;
}

.color-black{
    color: #494D49;
}

.color-gray {
    color: rgba(73, 77, 73, 0.50);
}

.color-gray-2 {
    color: #A6ACB3;
}

.color-green{
    color: #6BD677;
}

.color-white{
    color: white;
}

.color-gradient-1{
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(90deg, #C8FFC0 1%, #FFC6B8 99%);
}

.color-gradient-2{
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(90deg, #98EB99, #66CC71);
}

.button-center{
    display: flex;
    justify-content: center;
}

.button-main{
    height: 64px;
    background: linear-gradient(45deg, #92E093, #66CC72);
    width: 100%;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    cursor: pointer;
    outline: none;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
    box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.25);
    .icon-m{
        width: 17px;
        height: 17px;
        margin-left: 8px;
    }
    svg{
        fill: transparent !important;
        stroke: white;
    }
    &:hover{
        color: white;
        background: linear-gradient(108deg, #7FE680 8.86%, #53D061 54.49%);
    }
}

.button{
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 40px;
    text-decoration: none;
    min-height: 44px;
    transition: all .25s linear;
    cursor: pointer;
    outline: none;
    font-family: inherit;
    border: none;
    &:before{
        width: 16px;
        height: 16px;

        margin-right: 8px;
        flex-shrink: 0;
    }
    @media(max-width: 991px) {
        font-size: 12px;
        width: 100%;
    }
    &.size-18{
        font-size: 18px;
        @media(max-width: 991px) {
            font-size: 12px;
        }
    }
}

.button_gray{
    color: #494D49;
    background: #F5F7F5;
    &:before{
        background: #494D49;
    }
    &:hover{
        background: #E8EDE8;
    }
}

.button_green{
    color: white;
    background: linear-gradient(108deg, #98EB99 8.86%, #6BD677 51.98%), #494D49;
    text-decoration: none !important;
    &:before{
        background: white;
    }
    &:hover{
        color: white;
        background: linear-gradient(108deg, #7FE680 8.86%, #53D061 54.49%);
    }
}

.button_white{
    background: white;
    color: #494D49;
    &:hover{
        background: #e7e5e5;
    }
}

.button-telegram{
    flex-direction: row-reverse;
    &:before{
        width: 24px;
        height: 24px;
        background: #66CC71;
        flex-shrink: 0;
        margin-left: 10px;
        @media(max-height: 991px) {
            width: 18px;
            height: 18px;
            margin-left: 6px;
        }
    }
}

.button-basket{
    &:before{
        width: 24px;
        height: 24px;
        margin-right: 6px;
    }
}

.button_submit{
    flex-direction: row-reverse;
    padding: 0 60px;
    height: 60px;
    outline: none;
    border: none;
    &:before{
        margin-right: 0;
        margin-left: 10px;
    }
    @media(max-width: 991px) {
        height: 54px;
    }
}

.button-arrow{
    flex-direction: row-reverse;
    &:before{
        margin-left: 10px;
        margin-right: 0;
    }
}

.button_success{
    color: #494D49;
    background: #F5F7F5;
    border: 1px solid #66CC71;
    &:before{
        background: #66CC71;
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }
    &[disabled]{
        pointer-events: none;
    }
}

.page-content{
    line-height: 1.3;
    text-align: justify;
}

.link-green{
    color: #66CC71;
}

.link-black{
    color: #42474D;
    &:hover{
        color: #66CC71;
    }
}

.text-underline{
    text-decoration: underline;
    &:hover{
        text-decoration: none;
    }
}

.list-green-dot{
    list-style-type: none;
    position: relative;
    li{
        margin-bottom: 9px;
        display: flex;
        align-items: center;
        &:before{
            content: '';
            width: 8px;
            height: 8px;
            background: #6BD677;
            border-radius: 50%;
            margin-right: 10px;
            flex-shrink: 0;
            @media(max-width: 991px) {
                margin-right: 6px;
            }
        }
        &:last-child{
            margin-bottom: 0 !important;
        }
        @media(max-width: 991px) {
            margin-bottom: 10px;
        }
    }
}

.list-black-dot{
    list-style-type: none;
    position: relative;
    li{
        display: flex;
        align-items: flex-start;
        padding-left: 10px;
        &:before{
            content: '';
            width: 4px;
            height: 4px;
            background: #494D49;
            border-radius: 50%;
            margin-right: 10px;
            flex-shrink: 0;
            margin-top: 9px;
            @media(max-width: 991px) {
                width: 4px;
                height: 4px;
                margin-top: 5px;
                margin-right: 6px;
            }
        }
        @media(max-width: 991px) {
            margin-bottom: 10px;
        }
    }
}

.text-center{
    text-align: center;
}

.text-center-mobile{
    @media(max-width: 991px) {
        text-align: center;
    }
}

.text-left{
    text-align: left;
}

.text-left-mobile{
    @media(max-width: 991px) {
        text-align: left;
    }
}

.form-item{
    margin-bottom: 10px;
    position: relative;
    .iti__selected-country{
        padding-left: 14px;
    }
}

.switcher{
    position: relative;
    input{
        &:checked{
            & + .switcher-element{
                .switcher-icon{
                    span{
                        left: 16px;
                        background: linear-gradient(108deg, #98EB99 8.86%, #6BD677 51.98%), #C2F2C2;
                        filter: drop-shadow(0px 3.077px 3.077px rgba(194, 242, 194, 0.30));
                    }
                }
            }
        }
    }
}

.switcher-element{
    display: flex;
    cursor: pointer;
    align-items: center;
}

.switcher-icon{
    position: relative;
    width: 34px;
    height: 20px;
    background: #F5F7F5;
    flex-shrink: 0;
    margin-right: 10px;
    border-radius: 10px;
    span{
        width: 16px;
        height: 16px;
        top: 2px;
        left: 2px;
        border-radius: 50%;
        position: absolute;
        transition: all .25s linear;
        background: rgba(73, 77, 73, 0.15);;
    }
}

.w-full{
    width: 100%;
}

.h-60{
    height: 60px;
    @media(max-width: 991px) {
        height: 50px;
    }
}

.h-54{
    height: 54px;
    &.input{
        border-radius: 40px;
    }
    @media(max-width: 991px) {
        height: 50px;
    }
}

.section{
    margin-top: 100px;
    @media(max-width: 1200px) {
        margin-top: 80px;
    }
    @media(max-width: 991px) {
        margin-top: 20px;
    }
}

.section-hidden{
    overflow: hidden;
}

.hidden-title{
    display: none;
}

.text-uppercase{
    text-transform: uppercase;
}

.line-h-1{
    line-height: 1;
}

.line-h-1-1{
    line-height: 1.1;
}

.line-h-1-2{
    line-height: 1.2;
}

.line-h-1-3{
    line-height: 1.3;
}

.line-h-1-4{
    line-height: 1.4;
}

.no-br-tablet{
    @media(max-width: 1200px) {
        br{
            display: none;
        }
    }
}

.no-br-mobile{
    @media(max-width: 991px) {
        br{
            display: none;
        }
    }
}

.block-mobile{
    display: none !important;
    @media(max-width: 991px) {
        display: flex !important;
    }
}

.block-desktop{
    @media(max-width: 991px) {
        display: none !important;
    }
}

.flex-column{
    flex-direction: column;
}

.pt-160{
    padding-top: 160px;
    @media(max-width: 991px) {
        padding-top: 60px;
    }
}

.pt-120{
    padding-top: 120px;
    @media(max-width: 991px) {
        padding-top: 60px;
    }
}

.pt-90{
    padding-top: 90px;
    @media(max-width: 991px) {
        padding-top: 60px;
    }
}

.pt-70{
    padding-top: 70px;
    @media(max-width: 991px) {
        padding-top: 60px;
    }
}

.pt-0-mobile{
    @media(max-width: 991px) {
        padding-top: 0;
    }
}

.visually-hidden {
    display: none;
}

.link{
    color: #66CC71;
    text-decoration: underline;
    display: inline-block;
    &:hover{
        color: #45ab50;
    }
}

.loading{
    pointer-events: none;
    &:before{
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.8) !important;
        z-index: 1;
        transform: none;
    }
    &:after{
        content: "";
        display: inline-block;
        width: 25px;
        height: 25px;
        margin-left: 0.5em;
        border: 2px solid green;
        border-top: 2px solid transparent; /* или другой цвет */
        border-radius: 50%;
        animation: spin 0.6s linear infinite;
        vertical-align: middle;
        position: absolute;
        z-index: 2;
    }
    &.button-main{
        background: linear-gradient(45deg, rgba(146, 224, 147, 0.6), rgba(102, 204, 114, 0.6));
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#top .popup__content{
    background: linear-gradient(282.95deg, #E8F6FC 0%, #EDFCEF 100%);
}

.webinar-pop_box{
    display: flex;
    justify-content: space-between;
    padding: 0;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    a{
        text-decoration: none;
    }
    @media(max-width: 991px) {
        flex-direction: column;
    }
}

.webinar-pop_text {
    font-size: 32px;
    font-weight: 500;
    line-height: 35px;
    text-align: left;
    color: #494D49;
    width: 45%;
    font-family: inherit;
    @media(max-width: 991px) {
        width: 100%;
        font-size: 24px;
    }
}

.webinar-pop_title {
    margin-bottom: 20px;
}

.webinar-pop_text .green {
    color: #57BD62;
}

.webinar-pop_text .light{
    font-weight: 300;
}

.webinar-pop_desc {
    font-size: 18px;
    font-weight: 500;
    line-height: 21.6px;
    text-align: left;
}

.webinar-pop_button {
    min-width: 300px;
    min-height: 60px;
    padding: 5px 10px;
    border-radius: 40px;
    background: linear-gradient(108.28deg, #98EB99 8.86%, #6BD677 51.98%);
    display: flex;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    text-align: center;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.webinar-pop_img {
    background: url('img/new-main-book.png'), radial-gradient(circle, white, transparent);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 50%;
    min-width: 200px;
    height: auto;
    min-height: 200px;
    z-index: 1;
    position: relative;
    @media(max-width: 991px) {
        width: 100%;
        margin-top: 40px;
    }
}