
.header{
    padding: 32px 72px;

}
.header__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu{
    display: flex;
    gap: 12px;
}
.menu__item{
    flex: 0 0 auto;
}
.menu__link{
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    border: 1px solid var(--dark-gray-text-color);
    border-radius: 12px;

    transition: all .2s;
}
.menu__link:hover{
    color: #fff;
    background: #007bff;
    border: 1px solid #007bff;
}

.menu__button{
    display: none;
}
.menu__close-button{
    display: none; /* Скрыта по умолчанию */
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}
.menu__wrapper{
    position: relative;
}
.main{
    display: flex;
    flex-direction: column;
    gap: 56px;
    /*margin-bottom: 40px;*/
}
.banner__inner{
    padding: 82px 82px 82px 160px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    border-radius: 40px;
}
.section__title{
    font-weight: 700;
    font-size: 46px;
    line-height: 110%;
    color: #FFFFFF;
}
.landings .section__title{
    color: #151618
}
.landings-recently .section__title{
    color: #151618
}
.hero-banner__inner {
    background:
            url("assets/hero-banner.png"),
            linear-gradient(198deg, #00d2ff 0%, #7535ff 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    padding: 104px 104px 112px 160px;
    border-radius: 40px;
}

.hero-banner__content{
    max-width: 482px;
    display: flex;
    flex-direction: column;
    color: #fff;
}
.hero-banner__tag{
    margin-bottom: 32px;
    border-radius: 40px;
    padding: 12px 16px;
    box-shadow: 0 8px 48px 0 rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 24px;
    width: max-content;
}
.hero-banner__title{
    margin-bottom: 12px;
}
.hero-banner__subtitle{
    font-size: 26px;
    line-height: 120%;
    margin-bottom: 32px;
}

.event-banner__inner{
    background-image: url("assets/event-banner.png");
    background-color: #F5F5F5;
}
.event-banner__content{
    max-width: 956px;
}
.event-section__title{
    color: #363636;
    margin-bottom: 46px;
}

.banner__subtitle p{
    font-size: 24px;
    color: #363636;
}
.speakers-banner__content{
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.speakers-banner__content-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.speakers-banner__inner{
    background-image: url("assets/speakers-banner.png");
}

.banner__slide-action{
    display: flex;
    flex-direction: row;
    gap: 56px;
}

.banner__slide-button svg path{
    fill:white;
    transition: fill 0.2s;
}
.banner__slide-button:hover svg path{
    fill:#007BFF;
}

.speakers-banner__list{
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-top: 50px;
    padding-right: -82px;
    margin-right: -82px;
    margin-left: -160px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}
.speakers-banner__list::-webkit-scrollbar {
    display: none;
}
.speakers-banner__item{
    flex: 0 0 auto;
    border-radius: 32px;
    width: 299px;
    height: 306px;
    box-shadow: 0 8px 48px 0 rgba(0, 0, 0, 0.1);
    background: #fff;

    padding: 97px 32px 45px 32px;
    position: relative;
}
.speakers-banner__item:last-child{
    margin-right: 20px;
}
.speakers-banner__item:first-child{
    margin-left: 160px;
}
.speakers-banner__name{
    font-weight: 700;
    margin-bottom: 6px;
}
.speakers-banner__desc{
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;

    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;

}
.speakers-banner__user-image{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #c0c0c0;

    position: absolute;
    top: -35px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.speakers-banner__user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.program-event{
    background: linear-gradient(198deg, #00d2ff 0%, #7535ff 100%);
    padding: 102px 0 114px 0;
    margin: 26px 0;
}
.program-event__top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-right: 80px;
    margin-bottom: 51px;
}
.program-event__tag{
    border-radius: 50px;
    padding: 6px 20px;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;

}
.program-event__tag-pink{
    background: #cf6dfe;
}
.program-event__tag-blue{
    background: #007bff;
}
.program-event__tag-gray{
    background: #f0f0f3;
    color: #151618;
}

.program-event__list{
    height: 700px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-right: -200px;
    margin-right: -20px;
    margin-left: -200px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}
.speakers-banner__list::-webkit-scrollbar {
    display: none;
}

.program-event__item{
    padding: 32px 40px;
    height: 100%;
    border-radius: 32px;

    flex: 0 0 auto;
}
.program-event__item:first-child{
    margin-left: 200px;
}
.program-event__item:last-child{
    margin-right: 20px;
}

.program-event__item--small{
    width: 310px;
    display: flex;
    flex-direction: column;
    gap: 85px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.program-event__item-one{
    background-image: url("assets/event-banner-1.png");
}
.program-event__item-two{
    background-image: url("assets/event-banner-2.png");
}
.program-event__item-three{
    background-image: url("assets/event-banner-3.png");
}
.program-event__item-block{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.program-event__item-block--large{
    gap: 2px;
}
.program-event__name{
    font-weight: 700;
    line-height: 110%;
}
.program-event__subtitle{
    font-size: 18px;
    line-height: 110%;
}
.program-event__item-block--line::before{
    content: "";
    background-color: rgba(0, 123, 255, 0.4);
    height: 1px ;
    width: 100% ;
    flex-shrink: 0;
    margin-bottom: 19px;
}

.program-event__item--large{
    padding: 32px 40px 45px 40px;
    box-shadow: 0 8px 48px 0 rgba(0, 0, 0, 0.1);
    background: #fff no-repeat center;
    -webkit-background-size: cover;
    background-size: cover;
    display: flex;
    flex-direction: column;
    gap: 19px;
    width: 491px;
}
.program-event__speaker{
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
}
.program-event__speaker-avatar{
    background: #d9d9d9;

    border-radius: 16px;
    width: 45px;
    height: 45px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.program-event__speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.program-event__speaker-info{
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.program-event__speaker-name{
    font-weight: 700;
    font-size: 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
.pdf-wrap .program-event__speaker-name{
    font-weight: 400;
}
.program-event__speaker-desc{
    font-size: 16px;
    line-height: 120%;
    color: #9a9a9a;
}
.program-event__speaker-tag{
    font-weight: 400;
    border-radius: 50px;
    padding: 4px 8px;
    width: max-content;
    line-height: 1;
    font-size: 14px;
    color: #363636;
    text-transform: capitalize;
}
.program-event__speaker-tag--blue{
    background: #aedcff;
}
.program-event__speaker-tag--pink{
    background: #E8BAFF;
}
.form-join__inner{
    background-image: url("assets/form-join-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 82px 160px;
    border-radius: 40px;

    display: flex;
    flex-direction: column;
    gap: 64px;
}
.form-join__title{
    max-width: 882px;
}
.form-join__content{
    max-width: 795px;
}

.form-join__form{
    display: flex;
    gap: 20px;
    flex-direction: column;
    margin-bottom: 64px;
}
.form-join__label-wrapper--one{
    display: grid;
    grid-template-columns: 311px 1fr;
    gap: 24px;
}
.form-join__label-wrapper--two{
    display: grid;
    grid-template-columns: 1fr 273px;
    gap: 24px;
}

.form-join__input{
    width: 100%;
    background: #FFFFFF;
    border: 1px solid transparent;
    outline: none;
    border-radius: 12px;
    padding: 20px 17px;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    color: #363636;

}
.form-join__input.input-error{
    border: 1px solid red;
}
/*.form-join__input::placeholder{
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    color: #363636;
}*/
.form-join__textarea{
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    color: #363636;
    border-radius: 12px;
    padding: 20px 17px;
    resize: none;
}
.form-join__label{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-join__label div{
    font-weight: 500;
    font-size: 16px;
}
.form-join__label span{
    color: #c94eff;
}

.form-join__label-checkbox {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}


.form-join__checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Стилизованный блок вместо чекбокса */
.custom-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #fff;
    border-radius: 3px;
    background-color: transparent;
    position: relative;
    transition: border-color 0.2s, background-color 0.2s;
    display: flex;
    justify-content: flex-start;
    flex: 0 0 auto;
    align-items: flex-start;
}

/* Галочка */
.custom-checkbox::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 8px;
    height: 13px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


.form-join__checkbox:checked + .custom-checkbox::after {
    display: block;
}
.form-join__label-checkbox-name{
    color: #FFFFFF;
    font-size: 14px;
}
.form-join__button{
    background: #c94eff;
    color: #fff;
    padding: 24px 64px;
    border-radius: 18px;
    transition: all 0.2s;
}
.form-join__button:hover{
    background: #fff;
    color: #007bff;
}
.right__banner__inner{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 82px;
    border-radius: 40px;
}
.translation-banner__inner{
    background-image: url("assets/translation-banner.png");
}
.tg-banner__inner{
    background-image: url("assets/tg-banner.png");
}

.translation-banner__content{
    max-width: 677px;
    margin-left: auto;
}
.translation-banner__subtitle{
    margin-bottom: 64px;
    margin-top: 20px;
    color: #fff;
}
.translation-banner__subtitle p{
    color: #fff;
}
.map{
    background: #F5F5F5;
    padding: 104px 0;
}
.map-section__title{
    color: #363636;
    margin-bottom: 46px;
}
.map-section__subtitle{
    margin-bottom: 32px;
}
.map__frame iframe{
    width: 100%;
    height: 578px;
    border-radius: 20px;
}
.tg-banner__button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 34px;
}
.faq{
    margin-bottom: 40px;
}

.faq__content{
    box-shadow: 0 8px 48px 0 rgba(0, 0, 0, 0.1);
    background: linear-gradient(198deg, #00d2ff 0%, #7535ff 100%);
    border-radius: 40px;
    padding: 82px 160px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}


.faq-items__list{
    display: flex;
    flex-direction: column;
    transition: .3s all ease;
    gap: 16px;
}
.faq-items__list-item{
    cursor: pointer;
    padding: 32px ;
    border-radius: 20px;
    background: #FFFFFF;
}

.faq-items__list-item-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: #363636;
}
.faq-items__list-item-text {
    color: #22211B;
    font-size: 22px;
    font-weight: 400;
    max-width: 781px;
    line-height: 110%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-items__list-item.active-faq .faq-items__list-item-text{
    margin-top: 16px;
}
.faq-items__list-item svg {
    transition: transform 0.3s ease;
}

.faq-items__list-item svg.rotated {
    transform: rotate(180deg);
}
.footer{
    background: #9DADDD;
    padding: 64px 0 91px 0;
    color: #fff;
    font-weight: 400;
}
.footer__content{
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 0 160px;
}
.footer__content-top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.footer__content-top-block{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.footer__content-socials{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer__content-socials-name{
    font-size: 24px;
}
.footer__content-socials-list{
    display: flex;
    flex-direction: row;
    gap: 23px;
}

.social-icon{
    width: 52px;
    height: 52px;
    background: no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
}

.footer__content-phone-block{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer__content-phone{
    font-size: 32px;
}
.footer__content-phone-block span{
    font-size: 15px;
}
.footer__content-apps{
    display: flex;
    flex-direction: row;
    gap: 24px;
}
.footer__content-apps-name{
    font-size: 15px;
    max-width: 101px;
}
.footer__content-apps-list{
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.footer__content-bottom{
    font-size: 14px;
}

.form-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.form-popup {
    background-image: url("./assets/popap-banner.png");
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 40px;
    padding: 56px 90px;
    width: 700px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.form-popup__input {
    width: 100%;
    max-width: 431px;
    padding: 16px 15px;
    border: none;
    border-radius: 18px;
    text-align: center;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    color: #363636;
}
.form-popup__input::placeholder {
    color: #9A9A9A;
}
.form-popup-input__info{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    clor: #FFFFFF;
}
.form-popup__subtitle{
    margin-bottom: 32px;
}
.form-popup-input__info a{
    color: #5CDEFF;
}
.form-popup__button {
    margin-top: 32px;
    padding: 16px 64px;
    background-color: #fff;
    color: #0841ec;
    border: none;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    justify-self:  center;
}

.form-popup button:hover {
    background-color: #e0e0e0;
}

.pdf-wrap{
    width: 100%;
    padding: 20px 0;
}
.pdf-wrap .hero-banner__inner{
    padding: 21px 40px 45px 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    background-image: unset;
    overflow: hidden;
}
.pdf-banner__background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}
.pdf-wrap .hero-banner__content{
    z-index: 2;
    position: relative;
}
.pdf-wrap .hero-section__title{
    margin-bottom: 20px;
    font-size: 40px;
}
.pdf-wrap .hero-banner__tag{
    line-height: 1;
    justify-content: center;
    width: min-content;
    margin-bottom: 10px;
}
.pdf-wrap .hero-banner__subtitle{
    max-width: 365px;
    margin-bottom: 0;
}
.pdf-wrap .section__title {
    font-weight: 700;
    font-size: 24px;
    color: #363636;
    margin-bottom: 20px;
}
.pdf-wrap .event-banner__inner{
    padding: 30px;
    background-image: none;
}
.pdf-wrap .banner__subtitle p{
    font-size: 18px;
    margin-bottom: 0;
}
.pdf-program-event__list{
    display: flex;
    flex-direction: column;
    gap: 24px;

}
.pdf-wrap .program-event{
    background: none;
    margin-bottom: 20px;
    padding: 0;
    margin-top: 0;
}
.pdf-wrap .program-event-inner{
    border-radius: 30px;
    padding: 40px;
}
.pdf-wrap .program-event-inner .section__title{
    margin-bottom: 32px;
    color: #000;
}
.pdf-wrap .program-event__item-block{
    display: flex;
    flex-direction: column;
    gap: 10px;

    page-break-inside: avoid;
    break-inside: avoid;

}
.pdf-wrap .program-event__item-block-inner{
    display: flex;
    flex-direction: row;
    gap: 10px;

    page-break-inside: avoid;
    break-inside: avoid;
}

.program-event__speakers{
    padding-left: 136px;
}

.pdf-wrap .program-event__name{
    font-weight: 700;
    font-size: 18px;
    color: #000;
}
.pdf-wrap .program-event__subtitle{
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    color: #000;
    font-weight: 400;
}
.pdf-wrap .program-event__tag{
    width: 127px;
    flex-shrink: 0;
    padding: 6px 10px;
    white-space: nowrap;
    height: 31px;
    justify-content: center;
}
.pdf-wrap .program-event__info{
    margin-top: 6px;
}
.pdf-wrap .form-join__inner{
    padding: 50px 40px;
}
.pdf-wrap .qr{
    width: 178px;
    height: 178px;
    border-radius: 8px;
}
.pdf-wrap .form-join__inner{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    page-break-inside: avoid;
    break-inside: avoid;
    background-image: url("assets/pdf-form-join.png");
}
.pdf-wrap .form-join-wrapper{
    display: flex;
    flex-direction: column;
    max-width: 515px;
}
.pdf-wrap .form-join__title{
    font-size: 30px;
    color: #fff;
}
.pdf-wrap .qr-desc{
    font-size: 20px;
    line-height: 1;
    color: #fff;
    font-weight: 400;
}
.pdf-wrap .map{
    background: none;
    padding: 0;
}
.pdf-wrap .map__content{
    background: #F5F5F5;
    padding: 40px;
    border-radius: 30px;
    margin-bottom: 40px;
}
.pdf-wrap .map-section__title{
    margin-bottom: 20px;
}
.pdf-wrap .map-section__subtitle{
    margin-bottom: 0;
}
.pdf-logo{
    margin-bottom: 34px ;
}
@media screen and (max-width: 1024px) {
    .header{
        padding: 20px 24px;
    }
    .menu__link{
        padding: 10px 20px;
    }
    .form-join__label-wrapper--one{
        grid-template-columns: 1fr;
    }
    .form-join__label-wrapper--two{
        grid-template-columns: 1fr;
    }
    .faq__content{
        padding: 64px;
    }
    .footer__content{
        padding: 0 20px;
    }
}

@media screen and (max-width: 850px) {
    .main{
        gap: 40px;
    }
    .container{
        padding: 0;
    }
    .pdf-wrap .container{
        padding: 0 20px;
    }
    .not-found .container{
        padding: 0 20px;
    }
    .menu{
        display: none;
    }
    .menu__button{
        display: block;
    }
    .header__logo{
        width: 88px;
        height:24px;
    }
    .hero-banner__inner {
        background-image: url(assets/hero-banner-tablet.png);
        padding: 61px 0 359px 0;
    }
    .event-banner__inner{
        background-image: url(assets/event-banner-tablet.png);
        padding: 64px 0;
    }
    .event-banner__content{
        max-width: 428px;
    }
    .banner__inner{
        padding-left: 64px;
        padding-right: 64px;
    }
    .section__title{
        font-size: 40px;
    }
    .banner__subtitle p{
        font-size: 20px;
    }
    .speakers-banner__list{
        margin-right: -64px;
    }
    .speakers-banner__content{
        gap: 45px;
    }
    .program-event__list{
        margin-right: -32px;
    }
    .program-event{
        padding: 40px 32px;
    }
    .form-join__inner{
        padding: 64px;
        gap: 40px;
    }
    .form-join__label div{
        font-size: 14px;
    }
    .translation-banner__inner{
        background:
                url("assets/translation-banner-tablet.png"),
                linear-gradient(198deg, #00d2ff 0%, #7535ff 100%);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 505px 64px 64px 64px ;

    }
    .map{
        padding: 40px 0;
    }
    .map .container {
        padding: 0 64px;
    }
    .map-section__subtitle{
        max-width: 410px;
    }
    .map__frame iframe{
        height: 509px;
    }
    .tg-banner__inner{
        background:
                url("assets/tg-banner-tablet.png"),
                linear-gradient(198deg, #00d2ff 0%, #7535ff 100%);
        padding: 505px 64px 64px 64px ;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }
    .translation-banner__content{
        margin-left: 0;
    }
    .faq-items__list-item-question{
        font-size: 20px;
    }
    .faq__content{
        padding: 32px;
    }
    .footer{
        padding: 64px 0 43px 0;
    }
    .footer__content-apps{
        flex-direction: column;
        align-items: flex-end;
    }
    .footer__content-apps-name{
        max-width: unset;
    }
    .footer__content-phone-block span{
        align-self: flex-end;
    }
    .menu__wrapper {
        position: relative;
    }
    .menu {
        opacity: 0;
        transition: opacity 0.3s ease;
        display: none; /* Изначально скрыто */
    }

    .menu.open {
        opacity: 1;
        display: block; /* Элемент становится видимым */
        border-radius: 12px;
        position: absolute;
        top: 47px;
        right: -24px;
        width: 250px;
        background-color: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    .menu__link {

        border: none;
    }
    .form-popup{
        width: 500px;
        padding: 32px;
    }
    .form-popup-title{
        font-size: 20px;
    }
    .form-popup__subtitle{
        font-size: 18px;
    }
    .form-popup__input{
        font-size: 18px;
    }
    .form-popup__button{
        font-size: 18px;
    }
    .pdf-wrap .event-banner__content{
        max-width: unset;
    }
    .pdf-wrap .map .container{
        padding: 0 20px;
    }
    .pdf-wrap .program-event__item-block-inner{
        flex-direction: column;
    }
    .program-event__speakers{
        padding-left: 0;
    }
}

@media screen and (max-width: 620px) {
    .section__title{
        font-size: 24px;
    }
    .main{
        gap: 24px;
    }
    .banner__inner{
        padding: 40px 0;
    }
    .hero-banner__tag{
        line-height: 1  ;
        font-size: 18px;
    }
    h1{
        font-size: 32px;
    }
    .hero-section__title{
        margin-bottom: 12px;
        font-size: 32px;
    }
    .hero-banner__content{
        max-width: 311px;
    }

    .hero-banner__subtitle{
        font-size: 20px;
        margin-bottom: 24px;
    }
    .button-white{
        font-size: 20px;
        padding: 16px 64px;
    }
    .hero-banner__inner{
        background-image: url(assets/hero-banner-mobile.png);
        padding: 56px 0 294px 0;
    }
    .banner__inner{
        padding-left: 32px;
        padding-right: 32px;
    }
    .section__title{
        font-size: 24px;
    }
    .banner__subtitle p{
        font-size: 16px;
    }
    .event-banner__inner{
        background-image: none;
        padding: 40px 32px;
    }
    .event-section__title{
        margin-bottom: 24px;
    }
    .speakers-banner__list{
        margin-right: -32px;
    }
    .speakers-banner__content{
        gap: 24px;
    }
    .speakers-banner__content-top{
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .speakers-banner__name{
        font-size: 16px;
    }
    .speakers-banner__desc{
        font-size: 14px;
    }
    .speakers-banner__item{
        width: 299px;
        height: 266px;
    }
    .banner__slide-button svg{
        width: 40px;
        height: 40px;
    }
    .banner__slide-action{
        gap: 40px;
    }
    .program-event__list{
        margin-right: -32px;
    }
    .program-event__top{
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
        margin-bottom: 32px;
    }
    .program-event__name{
        font-size: 16px;
    }
    .program-event__speaker-name{
        font-size: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    .program-event__speaker-desc, .program-event__subtitle{
        font-size: 14px;
    }
    .program-event__item--large, .program-event__item--small{
        width: 300px;
        padding: 32px 24px;

    }
    .program-event__item--large{
        gap: 12px;
    }
    .program-event__item-block--line::before{
        margin-bottom: 12px;
    }
    .program-event__speaker-avatar{
        display: none;
    }
    .form-join__button{
        padding: 16px 44px;
        font-size: 20px;
    }
    .form-join__inner{
        padding: 40px 32px;
    }
    .form-join__input{
        padding: 12px 10px;
        font-size: 16px;
    }
    .form-join__input::placeholder{
        font-size: 16px;
    }
    .form-join__textarea{
        font-size: 16px;
        padding: 12px 10px;
        height: 92px;
    }
    .form-join__label-checkbox{
        justify-content: flex-start;
        align-items: flex-start;
    }
    .custom-checkbox{
        margin-top: 3px;
    }
    .translation-banner__inner{
        background:
                url("assets/translation-banner-tablet.png"),
                linear-gradient(198deg, #00d2ff 0%, #7535ff 100%);
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 400px 32px 40px 32px ;

    }
    .faq-items__list-item{
        padding: 22px;
    }
    .faq-items__list-item svg{
        width: 24px;
        height: 14px;
        flex: 0 0 auto;
    }
    .faq-items__list-item-text{
        font-size: 14px;
    }
    .faq-items__list-item-question{
        font-size: 16px;
        line-height: 1;
    }
    .button-white{
        padding: 16px 44px;
    }
    .map .container {
        padding: 0 32px;
    }
    .map-section__title{
        margin-bottom: 24px;
    }
    .map-section__subtitle{
        font-size: 16px;
    }
    .map__frame iframe{

        height: 254px;
    }
    .tg-banner__inner{
        background:
                url("assets/tg-banner-mobile.png"),
                linear-gradient(198deg, #00d2ff 0%, #7535ff 100%);
        padding: 300px 32px 32px 32px;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .translation-banner__subtitle{
        margin-bottom: 32px;
        margin-top: 24px;
    }
    .tg-banner__button{
        width: 100%;
    }
    .footer__content-top{
        flex-direction: column;
        gap: 24px;
    }
    .footer__content-phone-block span{
        align-self: flex-start;
    }
    .footer__content-apps{
        align-items: flex-start;
    }
    .footer__content-socials-name{
        font-size: 14px;
    }
    .footer__content-phone{
        font-size: 24px;
    }
    .form-popup{
        max-width: 360px;
        padding: 40px 15px;
    }
    .form-popup-title{
        font-size: 24px;
    }
    .form-popup__subtitle{
        font-size: 20px;
        margin-bottom: 24px;
    }
    .form-popup__input{
        font-size: 24px;
        padding: 12px 10px;
    }

    .form-popup__button{
        font-size: 14px;
        padding: 10px;
        max-width: 265px;
        width: 100%;
        justify-self: center;
    }
    .form-popup-input__info{
        font-size: 14px;
    }
}