*{
    margin:0;
    padding:0;
    list-style: none;
    font-family: 'Bounded', sans-serif;
    box-sizing: border-box;
    line-height: 150%;
}
a{
    text-decoration: none;
}

@font-face {
  font-family: 'Bounded';
  src: url('../fonts/Bounded-ExtraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

/* Bounded Light (Легкое) */
@font-face {
  font-family: 'Bounded';
  src: url('../fonts/Bounded-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Bounded Regular (Обычное) */
@font-face {
  font-family: 'Bounded';
  src: url('../fonts/Bounded-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Bounded Medium (Среднее) */
@font-face {
  font-family: 'Bounded';
  src: url('../fonts/Bounded-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Bounded SemiBold (Полужирное) */
@font-face {
  font-family: 'Bounded';
  src: url('../fonts/Bounded-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Bounded Bold (Жирное) */
@font-face {
  font-family: 'Bounded';
  src: url('../fonts/Bounded-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Bounded ExtraBold (Ультра-жирное) */
@font-face {
  font-family: 'Bounded';
  src: url('../fonts/Bounded-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Bounded Black (Черное) */
@font-face {
  font-family: 'Bounded';
  src: url('../fonts/Bounded-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

body{
    background:#C1C1C1;
}

.title{
    color:white;
    font-size:38px;
    line-height: 47px;
    font-weight: 900;
    margin:0 auto;
    margin-bottom:40px;
    text-align: center;
    text-transform: uppercase;
    max-width:1100px;
}
.text{
    font-size: 20px;
    line-height: 150%;
    margin-bottom:30px;
    text-align: center;
}

@media(max-width:768px){
    .title{
        font-size: 24px;
        margin-bottom: 20px;
        line-height:130%;
    }
    .text{
        font-size: 14px;
        margin-bottom: 20px;
    }
}


.menu{
    position:fixed;
    top:-120px;
    left:0;
    width:100vw;
    z-index:10;
    transition:0.5s;
}
.menu.active{
    top:12px;
    transition:0.5s;
}
.menu .container{
    padding-left:16px;
    padding-right:16px;
    margin:0 auto;        
    max-width:1378px;
    width:100%;
}
.menu-container{
    background:rgba(255, 255, 255, 0.8);
    border-radius:100px;
    padding:10px;
    backdrop-filter: blur(28px);
    display:flex;
    justify-content:space-between;
    align-items:center;
    border:1px solid rgba(196, 196, 196, 1);
}
.menu-buttons{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
}
.menu-buttons .header-bottom-button{
    height:50px;
    font-size:12px;
}
.menu-buttons .header-bottom-button.blue{
    width:340px;
}
.menu-buttons .header-bottom-button.gray{
    width:170px;
    border:1px solid rgba(209, 209, 214, 1);
    background:rgba(237, 237, 237, 1);
}

@media(max-width:1060px){
    .menu{
        display:none;
    }
}

.header{
    background:url(../img/compressed_header-back.webp);
    background-size: 100%;
    background-position: center;
        background-position-y: -35px;
    background-repeat: no-repeat;
    padding-top:50px;
    opacity:0;
    transition:0.5s;
}
.header.active{
    opacity:1;
    transition:0.5s;
}
.container{
    padding-left:16px;
    padding-right:16px;
    margin:0 auto;        
    max-width:1204px;
    width:100%;
}
.container-2{
    padding-left:16px;
    padding-right:16px;
    margin:0 auto;        
    max-width:1378px;
    width:100%;
}
.header-bom-top{
    display:none;
}
.header-bom-top-logo{

}

.header-cont{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap:315px;
}
.header-title{
    width:464px;
    margin: 0 auto;
}
.header-title img{
    width:100%;
}
.header-bottom{
    
}
.header-bottom-car{
    width:800px;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom:23px;
}
.header-bottom-car img{
    width:100%;
}
.header-bottom-car img:last-child{
    display: none;
}
.header-bottom-buttons{
    max-width:1065px;
    padding:40px;
    display: flex;
    gap:18px;
    background:white;
    border-radius: 42px;
    margin:0 auto;
}
.header-bottom-button{
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height:68px;
    cursor:pointer;
    font-weight: 600;
}
.header-bottom-button span{
    position: relative;
        bottom: -2px;
}
.header-bottom-button.blue{
    background:#0099ff;
    color:white;
    transition: 0.5s;
}
.header-bottom-button.blue:hover{
    background:rgba(136, 0, 255, 1);
    transition: 0.5s;
}
.header-bottom-button.gray{
    color:black;
    background:#EDEDED;
    transition: 0.5s;
}
.header-bottom-button.gray:hover{
    transition: 0.5s;
    background: rgba(172, 201, 236, 1);

}

@media(max-width:1600px){
    .header{
        background-position-y: 16px;
    }
    .header-cont{
        gap:185;
    }
}
@media(max-width:768px){
    .header{
        background:url(../img/header-back-mob.png);
        background-size: 100%;
        background-position: center;
            background-position-y: 100px;
        background-repeat: no-repeat;
        padding-top:50px;
    }
    .header-bom-top{
        display:flex;
        border-radius: 44px;
        width:100%;
        height:64px;
        justify-content: space-between;
        background:#ffffffdb;
        padding-left:14px;
        padding-right:10px;
        align-items: center;
        margin-bottom:25px;
    }
    .header-bom-top-logo{
        width:220px;
    }
    .header-bom-top-telegram{
        display: block;
        width:50px;
    }
    .header-bom-top-telegram img{
        display: block;
        width:100%;
    }
    .header-title{
        width:100%;
    }
    .header-title img{
        width:270px;
        margin:0 auto;
        display: block;
    }
    .header-cont{
        gap:180px;
    }
    .header-bottom-car img:first-child{
        display: none;
    }
    .header-bottom-car img:last-child{
        display: block;
    }
    .header-bottom-buttons{
        padding:12px;
        gap:16px;
        flex-wrap:wrap;
        border-radius:22px;
    }
    .header-bottom-button{
        height:40px;
        font-size: 11px;
        line-height: 1;
        border-radius:30px;
    }
    .header-bottom-button span{
        position: relative;
        bottom: -2px;
    }
}

.about{
    padding-top:95px;
    padding-bottom: 95px;

}
.about-blocks{
    display:flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:20px;
}
.about-block{
    width:23%;
    background: white;
    border-radius: 42px;
    padding:20px;
}
.about-block-top{
    margin-bottom:20px;
}
.about-block-top > img{
    display: block;
    margin:0 auto;
    margin-bottom:30px;
}
.about-block-title{
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
}
.about-block-bottom{
    text-align: center;
    font-size: 16px;
    line-height: 150%;
}   

@media(max-width:1090px){
    .about{
        padding-top:75px;
        padding-bottom:75px;
    }
    .about-blocks{
        gap:20px;
    }
    .about-block{
        width:100%;
        border-radius: 22px;
    }
    .about-block-top{
        display: flex;
        justify-content: flex-start;
        gap:10px;
        margin-bottom:10px;
                align-items: flex-start;
    }
    .about-block-top > img{
        margin:0;
        width:68px;
    }
    .about-block-title{
        text-align: start;
        font-size: 18px;
    }
    .about-block-bottom{
        text-align: start;
        font-size: 14px;
    }
}



.question-img{
    width:100%;
    display: block;
}
.desc{

}
.mob{
    display: none;
}
@media(max-width:768px){
    .desc{
        display:none;
    }
    .mob{
        display: block;
    }
}


.yellow{
    padding-top:12px;
    padding-bottom:12px;
    background:#DAEA26;
    margin-top:40px;
    margin-bottom:98px;
}
.yellow-cont{
    position: relative;
    max-width:440px;
    margin:0 auto;
}
.yellow-text{
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
}
.yellow-price{
    position: absolute;
    top: -9px;
    right: -257px;
    display: block;
    width: 250px;
}
@media(max-width:768px){
    .yellow{
        margin-bottom: 20px;
    }
    .yellow-text{
        font-size: 18px;
    }
    .yellow-price{
        width: 120px;
        top: 80px;
        right: 31%;
    }
}


.app{

}
.app-icons{
    display: flex;
    justify-content: center;
    gap:28px;
    margin-bottom: 40px;
}
.app-icons img{
    display: block;
}

.app-slider-cont{
    position: relative;
}
.app-slider-absolute{
    position: absolute;
    z-index: 1;
    width:100%;
    top:0;
    left:0;
    opacity: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}
.app-slider{
    width:93%;
    
}
.app-slider img{
    display: block;
    /* width:1100px; */
}
.app-slider-img{
    display: block;
    width: 100%;
}
.slick-dots{
    display: flex;
    justify-content: center;
    gap:10px;
        position: relative;
    bottom: -100px;
}
.slick-dots li{
    width:38px;
    height:3px;
    background: #E7E7E7;
}
.slick-dots li.slick-active{
    background:#636363;
}
.slick-dots li button{
    display: none;
}

@media(max-width:768px){
    .app{
        padding-top: 75px;
    }
    .app-icons{
        gap:20px;
        margin-top:40px;
    }
    .app-icons img{
        width:50px;
    }
    .app-slider-absolute{
        padding-top:20px;
    }
    .slick-dots{
        bottom: -30px;
    }
}

.ypr-wrapper{
    padding-top:40px;
    width:100%;
    max-width: 408px;
    margin:0 auto;
}
.ypr-img{
    display: block;
    width:100%;
}
.ypr-title{
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    text-align: center;
    margin-top:30px;
}

@media(max-width:768px){
    .ypr-wrapper{
        display:flex;
        align-items: center;
        gap:20px;
    }
    .ypr-img{
        width:122px;
    }
    .ypr-title{
        font-size: 14px;
        margin-top:0;
    }
}

.panel{
    padding-top:95px;

}
.panel-img{
    max-width: 1130px;
    width:100%;
    
    display: block;
    margin:0 auto;
    margin-top:40px;
    margin-bottom:40px;
}

@media(max-width:768px){
    .panel{
        padding-top:75px;
        overflow:hidden;
    }
    .panel-img-cont{
        overflow-x:scroll;
        /*width: 120%;*/
        /*    left: -10%;*/
    position: relative;
    }
    .panel-img-cont .container{
        padding:0;
        width:100%;
    }
    .panel-img{
        height: 180px;
        width: auto;
    }
}


.hod{
    padding-top:75px;
}
.hod-white{
    margin-top:110px;
    position: relative;
    padding-top:110px;
    padding-bottom:85px;
    background:white;
}
.hod-white-img{
    display: block;
    margin:0 auto;
    margin-top: -173px;
}
.hod-white-blocks{
    display: flex;
    flex-direction: column;
    gap:100px;
}
.hod-white-block{
    display: flex;
    gap:28px;
    align-items: flex-start;
}
.hod-white-block > img{
    display: block;
}
.hod-white-block-content{
    display: flex;
    flex-direction: column;
    gap:20px;
}
.hod-white-block-title{
    font-size:24px;
    font-weight: 600;
    text-transform: uppercase;
}
.hod-white-block-text{
    font-size: 16px;
}
.hod-white-block-top .hod-white-block-title{
    display: none;
}

@media(max-width:768px){
    .hod-white{
        margin-top: 53px;
        padding-bottom:20px;
    }
    .hod-white-img{
        margin-top: -134px;
        width: 270px;
    }
    .hod-white-blocks{
        margin-top:30px;
        gap:40px;
    }
    .hod-white-block{
        flex-direction: column;
        gap:12px;
    }
    .hod-white-block-title{
        display: none;
    }
    .hod-white-block-top .hod-white-block-title{
        display: block;
        font-size: 18px;
    }
    .hod-white-block-top{
        display: flex;
        align-items: center;
        gap:12px;
    }
    .hod-white-block-top > img{
        width:68px;
    }
    .hod-white-block-content{
        gap:12px;
    }
    .hod-white-block-text{
        font-size: 12px;
    }

}

.cast{
    padding-top:95px;
    padding-bottom:40px;
}
.cast-desc{
    max-width: 1065px;
    margin:0 auto;
}
.cast-desc > .text{
    max-width:670px;
    margin:0 auto;
    margin-bottom:40px;
}
.cast-blocks{
    display: flex;
    max-width: 1048px;
    margin: 0 auto;
    justify-content: space-between;
}
.cast-block{
    width:46%;
    display: flex;
    flex-direction: column;
    gap:12px;
}
.cast-block > img{
    width:129px;
}
.cast-block-title{
    font-weight: 600;
    font-size: 24px;
    text-transform:uppercase;
}
.cast-block-text{
    font-size: 16px;
    font-weight: 300;
}

@media(max-width:768px){
    .cast{
        padding-top:40px;
    }
    .cast-blocks{
        flex-wrap: wrap;
        gap:40px;
    }
    .cast-block{
        width:100%;
    }
    .cast-block > img{
        width:109px;
    }
    .cast-block-title{
        font-size: 18px;
    }
    .cast-block-text{
        font-size: 14px;
    }
}

.buttons-form{
    padding-top:95px;
    padding-bottom: 95px;
}
.buttons-form .header-bottom-buttons{
    margin:0 auto;
    max-width: 1065px;
}

@media(max-width:768px){
    .buttons-form{
        padding-top:50px;
        padding-bottom: 50px;
    }
}

.prenight-slider{
    margin-bottom: -430px;
}

.night{
    background-color: black;
    background-image:url(../img/night-back.png);
    background-repeat: no-repeat;
    background-position: center;
    padding-top:530px;
    padding-bottom:370px;
}
.night-top{
    
    max-width:670px;
    margin:0 auto;
    margin-bottom: 500px;
}
.night-top .text{
    color:#888888;
}
.night-icons{
    display: block;
    margin:0 auto;
    max-width: 100%;
}

@media(max-width:768px){
    .prenight-slider{
        margin-bottom: -138px;
    }
    .night{
        padding-top: 200px;
        background-color: black;
    background-image:url(../img/night-back-mob.png);
    padding-bottom:250px;
    }
    .night-top{
        margin-bottom:270px;
    }
    .night-icons{
        max-width: 270px;
    }
}


.otzv{
    margin-top: -300px;
}
.otzv-slider .slick-slide{
    margin-left:15px;
    margin-right:15px;
}
.otzv-slide{
    border-radius: 20px;
    padding:22px;
    align-items: center;
    background:white;
    
}
.otzv-slide-top{
    display: flex;
    gap:15px;
    align-items: center;
    margin-bottom:12px;
}
.otzv-slide-top img{
    display: block;
    width:119px;
}
.otzv-slide-title{
    font-size: 26px;
    font-weight: 600;
}
.otzv-slide-date{
    font-size: 16px;
    margin-bottom:40px;
}
.otzv-slide-text{
    font-size: 16px;
}
.otzv-slider .slick-dots{
    bottom: -26px;
}

@media(max-width:768px){
    .otzv{
        margin-top: -192px;
    }
    .otzv-slide{
        padding:16px;
        border-radius: 12px;
    }
    .otzv-slide-top{
        gap:12px;
        margin-bottom:10px;
    }
    .otzv-slide-top img{
        width:90px;
    }
    .otzv-slide-title{
        font-size: 20px;
    }
    .otzv-slide-date{
        font-size: 12px;
        margin-bottom:30px;
    }
    .otzv-slide-text{
        font-size: 12px;
    }
}

.faq{
    padding-top:95px;
    padding-bottom: 200px;
}
.faq-img{
    display: block;
    margin:0 auto;
    max-width: 830px;
    width:100%;
    margin-bottom:80px;
    border-radius:48px;
}

.faq-blocks{
    gap:20px;
    display: flex;
    flex-direction: column;
}
.faq-block{
    position: relative;
    padding:20px;
    padding-top:30px;
    border-radius: 22px;
    background:white;
    transition: 0.5s;
    transform: scale(1);
}
.faq-block:hover{
    transition: 0.5s;
    transform: scale(1.02);
}
.faq-block-del{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 26px;
    height: 26px;
    transition:0.5s;
    transform:rotate(0deg);
}
.faq-block.active .faq-block-del{
    transition:0.5s;
    transform:rotate(180deg);
}
.faq-block-del svg{
    /*stroke:#8C8DEE;*/
}
.faq-block-title{
    font-weight: 900;
    font-size: 20px;
    margin-bottom:20px;
}
.faq-block-text{
    font-size: 16px;
}

@media(max-width:768px){
    .faq{
        padding-bottom:50px;
    }
    .faq-block-title{
        font-size: 14px;
        padding-right: 30px;
    }
    .faq-block-text{
        font-size: 12px;
    }
}


footer{
    padding-top:50px;
    padding-bottom:50px;
    background:black;
}
.footer-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-wrapper img{
    width:280px;
}
.footer-wrapper .header-bottom-buttons{
    max-width:860px;
    width:100%;
}

.footer-wrapper .header-bottom-buttons{
    margin:0;
    background:#232323;
}

@media(max-width:768px){
    .footer-wrapper{
        flex-direction: column;
        justify-content: center;
        gap:50px;
    }
}

.cast-image-line{
    overflow: hidden;
    position: relative;
    /*height:248px;*/
}
.cast-image-line-top-slider{
    margin-bottom:40px;
}
.cast-image-line-top-slider img{
    display:block;
    width:240px!important;
}
.cast-image-line-top-slider .slick-slide{
    padding-left:6px;
    padding-right:6px;
}
.cast-image-line-bottom-slider  .slick-track{
    display:flex;
    align-items:center;
}
.cast-image-line-bottom-slider img{
    display:block;
    /*width:150px!important;*/
}
.cast-image-line-bottom-slider .slick-slide{
    padding-left:10px;
    padding-right:10px;
}
/*.cast-image-line img{*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*}*/

@media(max-width:768px){
    .cast-image-line{
        /*height:145px;*/
    }
    .cast-image-line-top-slider{
        margin-bottom:30px;
    }
    .cast-image-line-top-slider img{
        display:block;
        width:130px!important;
    }
    .cast-image-line-bottom-slider img{
        display:block;
        width:80px!important;
    }
}


.popup-cont{
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background: #0000009c;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:20;
}
.popup{
    border-radius:24px;
    border:2px solid rgba(130, 0, 229, 1);
    background:white;
    max-width:625px;
    padding:45px;
    position:relative;
    width:95%;
}
.popup-exit{
    position:absolute;
    top:20px;
    right:20px;
    cursor:pointer;
    z-index:3;
}
.popup-form{
    display:flex;
    flex-direction:column;
    gap:24px;
    position:relative;
    overflow-y: scroll;
    padding:5px;
}
.popup-form-title{
    font-weight:900;
    font-size:37px;
    line-height:47px;
}
.popup-form-text{
    font-size:14px;
}
.popup-form-input-row{
    position:relative;
}
.popup-form-input-row label.error{
        color: red;
    font-size: 10px;
    position: absolute;
    left: 12px;
    bottom: -20px;
}
.popup-form-input-label{
    padding-left:12px;
    margin-bottom:12px;
    font-weight:700;
    font-size:14px;
}
.popup-form-input{
    background:rgba(237, 237, 237, 1);
    padding:12px;
    font-weight:700;
    font-size:14px;
    border-radius:16px;
    border:0;
    width:100%;
    height:60px;
}
textarea.popup-form-input{
    height:130px;
}
.popup-form-button{
    border:0;
    color:white;
    background:rgba(0, 153, 255, 1);
    transition:0.5s;
    font-size:16px;
}
.popup-form-button:hover{
    background:rgba(136, 0, 255, 1);
    transition:0.5s;
}
.popup-form-button.noactive{
    pointer-events: none;
  cursor: default;
  opacity:0.3;
}

.popup-thank{
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:25px;
}




@media(max-width:768px){
    .popup{
        padding:10px;
        padding-top:50px;
    }
    .popup-form-title{
        font-size:24px;
        line-height:130%;
    }
    .popup-form-text{
        font-size:12px;
    }
    .popup-form-input-label{
        font-size:12px;
        margin-bottom:6px;
    }
    .popup-form-input{
        height:40px;
    }
    textarea.popup-form-input{
        height:90px;
    }
}










