@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin:0;
    padding:0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
   
}
section,footer{
     z-index:1;
    position:relative;
}
li{
    list-style:none;
}

.container{
    max-width:1288px;
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
}

.title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 54px;
    line-height: 63px;
    margin-bottom: 35px;
    color: #161616;
}
.title span{
    display: block;
    margin-bottom:25px;
}
.title-line{
    border-bottom: 7px solid #C90075;
    width:358px;
    transition: 0.5s;
}
.title-line.active{
    width:174px;
}

.text{
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    color: #4F4F4F;
    margin-bottom:50px;
}

.angle{
    position: absolute;
    top:2px;
    left:2px;
    border-left: 5px solid #FFFFFF;
    border-top: 5px solid #FFFFFF;
    width: 0px;
    height: 0px;
    transition: 0.5s;
}
.angle.active{
    top:18px;
    left:18px;
    border-left: 5px solid #FFFFFF;
    border-top: 5px solid #FFFFFF;
    width: 28px;
    height: 28px;
}
  .img-mob{
        display:block;
    }
@media(max-width:765px){
    .angle.active{
        top:10px;
        left:10px;
        border-left: 2px solid #FFFFFF;
        border-top: 2px solid #FFFFFF;
        width: 13.4px;
        height: 13.4px;
    }
    .title{
        font-weight: 600;
        font-size: 30px;
        line-height: 35px;
        z-index: 1;
        position: relative;
        margin-bottom:20px;
    }
    .title span{
        display: block;
        margin-bottom:10px;
    }
    .title-line{
        border-bottom: 4px solid #C90075;
        width:220px;
        transition: 0.5s;
        z-index: 1;
        position: relative;
    }
    .title-line.active{
        width: 94.64px;
    }
    .text{
        font-weight: 500;
        font-size: 16px;
        line-height: 19px;
        margin-bottom:25px;
    }
    .container{
        padding-left:17px;
        padding-right:17px;
    }
}


/*  */
body{
    /* padding-top:120px; */
}
header{
    padding-top:20px;
    padding-bottom:12px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10.5px);
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    z-index: 9;
}
header > .container{
    display: flex;
    justify-content: space-between;
    align-items:center;
}

.header-right{
    display: flex;
    align-items: flex-end;
}
.header-right-menu{
    display:flex;
    margin-right:20px;
    height: 47px;
    align-items: center;
    position: relative;
    right: -100px;
}
.header-right-menu a{
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #4F4F4F;
    padding-left:20px;
    padding-right:20px;
    text-decoration: none;
}

.header-right-phone-top{
    display: flex;
    align-items: center;
    margin-bottom:20px;
}
.header-right-phone-top > a{
    display: block;
    margin-right:25px;
}
.header-right-phone-top-phone{
    font-weight: 700;
    font-size: 15px;
    line-height: 19px;
    color: #4F4F4F;
    margin-right:60px;
    text-decoration: none;
    margin-right:24px;
}
.header-right-phone-top-lang{
    cursor: pointer;
    position: relative;
}
.header-right-phone-top-lang-main{
    display: flex;
    align-items: center;
}
.header-right-phone-top-lang-main span{
    display: block;
    margin-right:12px;
}
.header-right-phone-top-lang-main img{

}
.header-right-phone-top-lang-options{
    display: none;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    width:123px;
    position: absolute;
    right: 0;
    z-index:2;
}
.header-right-phone-top-lang-option{
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    padding-top:13px;
    padding-bottom: 13px;
    color: #4F4F4F;
    text-align: center;
    position: relative;
}
.header-right-phone-top-lang-option.active::before{
    content: '';
    display: block;
    width: 19px;
    height: 19px;
    background-image: url(img/list-item.svg);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 9px;
    top: 12px;
}
.header-right-phone-top-lang-option:first-child{
    border-bottom: 1px solid #E6E6E6;
}
.header-right-phone-bottom{
    display: flex;
    justify-content: flex-end;
}
.header-right-phone-button{
    background: #C90075;
    border-radius: 4px;
    padding-left:33px;
    padding-right:33px;
    height: 48px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: 0.5s;
    cursor: pointer;
    width:fit-content;
}
.header-right-phone-button:hover{
    background: #FF0096;
}
.header-mob-button{
    display: none;
}
.header-mob{
    display: none;
}

@media(max-width:1100px){
    body{
        /* padding-top:76.5px; */
    }
    .header{
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .main-banner{
        padding-top:166.5px;
    }
    /*.header-right{*/
    /*    display:none;*/
    /*}*/
    .header-right-menu{
        display:none;
    }
    .header-right-phone{
        margin-top:40px;
    }
    .header-right-phone-bottom{
        display:none;
    }
    .header-logo img{
        width:182px;
    }
    .header-mob-button{
        display:block;
        top: 10px;
        position: absolute;
        right: 20px;
}
    }
    .header-mob{
        display: none;
        position: fixed;
        top:0;
        left:0;
        width:100vw;
        background: #EAEAEA;
        z-index: 10;
        padding-top:10px;
    overflow-x: auto;
    height: 100vh;
    }
    .header-mob-exit{
        display: flex;
        align-items: center;
        justify-content: flex-end;
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
        width:100%;
        color: #858585;
    }
    .header-mob-exit img{
        margin-left:20px;
        display: block;
    }
    .header-mob-title{
        font-weight: 700;
        font-size: 26px;
        line-height: 30px;
        margin-bottom:12px;
        color: #C90075;
    }
    .header-mob-item-title{
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding-top:15px;
        padding-bottom:20px;
        font-weight: 700;
        font-size: 20px;
        line-height: 23px;

        /* Primary / Black */

        color: #25303D;
    }
    .header-mob-item-title > img{
        transform: rotate(0deg);
        transition: 0.5s;
    }
    .header-mob-item-title.active > img{
        transform: rotate(45deg);
    }

    .header-mob .contact-bottom-tab-map-top{
        position: relative;
        top:0;
        left:0;
    }
    .header-mob .contact-bottom-tabs-buttons{
        border-radius: 75px;
        background: #E0E0E0;
    }
    .header-mob .contact-bottom-tab-button{
        font-size: 14px;
        line-height: 16px;
        width: 113px;
    }
    .header-mob .contact-bottom-tab-map-top .container{
        padding-top:0px;
    }
    .header-mob .contact-bottom-tab-map-top-row-content-title{
        color: #25303D;
        font-weight: 500;
font-size: 14px;
line-height: 16px;
min-width:70px;
        margin-right:20px;
    }
    .header-mob .contact-bottom-tab-map-top-row-content-a{
        color: #25303D;
        font-weight: 400;
font-size: 14px;
line-height: 16px;
text-decoration-line: underline;
    }



/*  */

.main-banner{
    /*background-image: url(img/banner.png);*/
    /*background-repeat: no-repeat;*/
    /*background-attachment: fixed;*/
    /*background-position: center;*/
     height: 86vh;
    padding-top:210px;
    position:relative;
    
}
.main-banner-video{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    /*height:100%;*/
    z-index:0;
}
.main-banner-video>img{
   width: 100vw;
    height: 92vh;
}

.main-banner-video video{
    width:100%;
    height:100%;
}
.main-banner-content{
    background-image: url(img/banner-content-back.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    padding-left:47px;
    padding-right: 47px;
    padding-top:55px;
    padding-bottom:40px;
    max-width: 516px;
    position: relative;
    z-index:2;
}
.main-banner-content:hover .main-banner-content-angle{
    left:10px;
    top:10px;
    transition: 0.5s;
}
.main-banner-content-title{
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 101.69%;
    color: #FFFFFF;
    margin-bottom:25px;
}
.main-banner-content-line{
    width: 358px;
    margin-bottom:35px;
    border-bottom: 7px solid #FFFFFF;
    transition:0.5s;
}
.main-banner-content-line.active{
   
    width:174px;
    
}
.main-banner-content-text{
    width:250px;
    font-weight: 400;
    font-size: 30px;
    line-height: 35px;
    text-transform: lowercase;
    color: #FFFFFF;
}

@media(max-width:1500px){
    .main-banner-video{
        width:auto;
        height:120%;
    }
    .main-banner-video video{
        width:auto;
        height:100%;
    }
}
@media(max-width:765px){
    .main-banner-video{
        height:105%;
        left:auto;
        right:0;
    }
    
    .main-banner{
        height:406.5px;
        padding-top:130.5px;
        
        background-attachment: inherit;
    }
    .main-banner-content{
        padding-top:27px;
        padding-left:22px;
        padding-right:10px;
        max-width:247px;
    }
    .main-banner-content-title{
        font-weight: 700;
        font-size: 24px;
        line-height: 101.69%;
        margin-bottom:10px;
    }
    .main-banner-content-line{
        border-bottom: 3.35078px solid #FFFFFF;
        width: 83.29px;
        margin-bottom: 15px;
    }
    .main-banner-content-text{
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        max-width:134px;
    }

}

/*  */

.numbers{
    padding-top:70px;
    background: #F7F7F7;
    overflow: hidden;
}
.numbers .container{
    position: relative;
}
.numbers-back{
    position: absolute;
    right: -10px;
    top: -35px;
}
.numbers-blocks{
    display: flex;
    flex-wrap: wrap;
}
.numbers-block{
    padding-top:60px;
    padding-left:30px;
    background: #910055;
    height:293px;
    width:25%;
    transition: 0.5s;
    transform: scale(1);
}
/* .numbers-block:hover{
    transition: 0.5s;
    transform: scale(1.1);
    z-index: 2;
} */
.numbers-block:nth-child(2){
    background: #A40060;
}
.numbers-block:nth-child(3){
    background: #B9036D;
}
.numbers-block:nth-child(4){
    background: #C90075;
}
/* .numbers-block:hover:nth-child(2){
    opacity: 1;
    background: #d54197;
}
.numbers-block:hover:nth-child(3){
    opacity: 1;
    background: #db61a8;
}
.numbers-block:hover:nth-child(4){
    opacity: 1;
    background: #e284ba;
} */
.numbers-block-number{
    font-weight: 300;
    font-size: 82px;
    line-height: 96px;
    color: #FFFFFF;
    margin-bottom:15px;
}
.numbers-block-text{
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    color: #FFFFFF;
}

@media(max-width:765px){
    .numbers{
        padding-top:50px;
    }
    .numbers-back{
        width:290px;
        right: -75px;
    }
    .numbers-block{
        width:50%;
        position: relative;
        z-index: 1;
        padding-top:13px;
        padding-left:16px;
        padding-right:10px;
        height:160px;
    }
    .numbers-block-number{
        font-weight: 300;
        font-size: 44px;
        line-height: 52px;
        margin-bottom:10px;
    }
    .numbers-block-text{
        font-weight: 500;
        font-size: 16px;
        line-height: 19px;
    }
    .header-right-phone-top>a>img{
        max-width:23px;
        max-height:23px;
      
    }
}

/*  */



.services{
    padding-top:70px;
    padding-bottom:0px;
    background:#ffffff;
}
.services-blocks{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.services-block{
    display: flex;
    padding-left:15px;
    padding-right:25px;
    padding-top:35px;
    padding-bottom:40px;
    width:33%;
    margin-bottom:30px;
    box-shadow: 0px 0px 0px transparent;
    transition:0.5s;
}
@media(min-width:765px){
    .services-block:hover{
        background: #FFFFFF;
        box-shadow: 0px 0px 61px rgba(152, 152, 152, 0.25);
        transition:0.5s;
    }
}
.services-block-number{
    font-weight: 700;
    font-size: 53px;
    line-height: 62px;
    margin-right:15px;
    color: #DE0183;
}
.services-block-content{

}
.services-block-title{
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
    margin-bottom:25px;
    color: #25303D;
}
.services-block-text{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 172.68%;
    color: #2D3D52;
}
.services-block-title > img{
    display:none;
}
@media(max-width:1100px){
    .services-block{
        width:100%;
    }
}
@media(max-width:765px){
    .services-block{
        width:100%;
        padding:0;
        border-bottom: 1px solid #E0E0E0;
    }
    .services-block:last-child{
        border-bottom: 0px solid #E0E0E0;
    }
    .services-block-content{
        width:100%;
    }
    .services-block-title{
        display: flex;
        align-items: flex-start;
        font-size: 20px;
        line-height: 23px;
        margin-bottom:17px;
        width: 100%;
    }
    .services-block-number{
        font-size: 36px;
        line-height: 36px;
    }
    .services{
        padding-top:50px;
    }
    .services-block-title > img{
        display: block;
        margin-left: auto;
        margin-right: 0;
        transform: rotate(0deg);
        transition: 0.5s;
    }
    .services-block-title.active > img{
        transform: rotate(45deg);
        transition: 0.5s;
    }
    .services-block-text{
        display: none;
        padding-bottom:17px;
        font-weight: 400;
        font-size: 16px;
        line-height: 172.68%;
    }
}

/*  */

.calculation{
    background: #F7F7F7;
    padding-top:70px;
}
.calculation-block{
    background-image: url(img/calculation.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}
.calculation-block-content{
    /* background-image: url(img/calculation-cont.svg); */
    background-repeat: no-repeat;
    background-size: 100%;
    padding-top:48px;
    padding-left:57px;
    padding-right:90px;
    position: relative;
    max-width: 516px;
    height:332px;
    overflow: hidden;
}
.calculation-block-content:hover .calculation-block-angle{
    top:10px;
    left:10px;
    transition: 0.5s;
    position: absolute;
    z-index: 1;
}
.calculation-block-content-back{
    position: absolute;
    background: rgba(201, 0, 117, 0.76);
    backdrop-filter: blur(13.5px);
    left: -225px;
    top: -374px;
    width: 200%;
    height: 200%;
    transform: rotate(-45deg);
}
.calculation-block-title{
    max-width:369px;
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 116.69%;
    color: #FFFFFF;
    margin-bottom:50px;
    position: relative;
    z-index: 1;
}
.calculation-block-button{
    background: #FFFFFF;
    border-radius: 4px;
    /* padding-left:30px;
    padding-right:30px; */
    height: 48px;
    display: flex;
    align-items: center;
    justify-content:center;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #4F4F4F;
    transition: 0.5s;
    max-width:216px;
    position: relative;
    z-index: 1;
}
.calculation-block-button:hover{
    background: #FF0097;
    color:white;
    transition: 0.5s;
}
.calculation-block-angle-2{
    display:none;
}

@media(max-width:765px){
    .calculation{
        padding-top:30px;
    }
    .calculation-block{
        height:auto;
    }
    .calculation-block-content{
        max-width:100%;
        padding-left:60px;
        padding-top:40px;
        padding-bottom: 40px;
        padding-right:23px;
        padding-right:10px;
        height:100%;
    }
    .calculation-block-title{
        font-weight: 700;
        font-size: 16px;
        line-height: 116.69%;
        margin-bottom:20px;
    }
    .calculation-block-button{
        width: 196px;
        height: 44px;
        font-size: 16px;
line-height: 19px;
    }
    .calculation-block-content-back{
        position: absolute;
        background: rgba(201, 0, 117, 0.76);
        backdrop-filter: blur(13.5px);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transform: rotate(0deg);
    }
    .calculation-block-angle-2{
        top: auto;
        left: auto;
        bottom: 2px;
        right: 2px;
        border-left: 0px solid #FFFFFF;
        border-top: 0px solid #FFFFFF;
        border-right: 2px solid #FFFFFF;
        border-bottom: 2px solid #FFFFFF;
        display: block;
    }
    .calculation-block-angle-2.active{
        top: auto;
        left: auto;
        bottom: 10px;
        right: 10px;
        width: 13.4px;
        height: 13.4px;
        border-left: 0px solid #FFFFFF;
        border-top: 0px solid #FFFFFF;
        border-right: 2px solid #FFFFFF;
        border-bottom: 2px solid #FFFFFF;
    }
}

/*  */

.company{
    background: #F7F7F7;
    padding-top:70px;
    padding-bottom:70px;
    overflow: hidden;
}
.company .container{
    position: relative;
}
.company-blocks{
    display:flex;
    flex-wrap: wrap;

}
.company-block{
    background: #910055;
    width:25%;
    padding-top:35px;
    padding-left:35px;
    padding-right:7px;
    padding-bottom:22px;
    overflow: hidden;
    position: relative;
    transition: 0.5s;
    opacity:0;
    bottom:-50px;
}
.company-block.active{
    transition: 0.5s;
    opacity:1;
    bottom:0px;
}
.company-block.active:hover{
    bottom:10px;
}
.company-block:nth-child(2){
    background: #A40060;
}
.company-block:nth-child(3){
    background: #B9036D;
}
.company-block:nth-child(4){
    background: #C90075;
}
.company-block:hover .company-block-angle{
    transition: 0.3s;
    top: 10px;
    left: 10px;
}
.company-block-title{
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
    color: #FFFFFF;
    margin-bottom:25px;
}
.company-block:hover .company-block-title{
    text-decoration: underline;
}
.company-block-text{
    font-weight: 400;
    font-size: 18px;
    line-height: 135.69%;
    color: #FFFFFF;
}
.company-block-bottom-angle{
    background: #FFFFFF;
    transform: rotate(45deg);
    width: 56px;
    height: 56px;
    position: absolute;
    bottom: -28px;
    right: -28px;
}

@media(max-width:765px){
    .company{
        padding-top:50px;
        padding-bottom: 50px;
    }
    .company > .container{
        /* padding-right:0; */
    }
    .company-block{
        width:100%;
        min-height: 415px;
        margin-left: 25px;
    margin-right: 25px;
    }
    .company-blocks .slick-list{
        padding-left: 0!important;
        padding-right: 0!important;
    }
    .company-blocks{
        position: relative;
    }
    .company-blocks .slick-next{
        position: absolute;
        top:45%;
        left:0;
        z-index: 2;
    }
    .company-blocks .slick-prev{
        position: absolute;
        top:45%;
        right:0;
        z-index: 2;
    }
    .company-blocks .slick-dots{
        display: flex;
        justify-content: center;
        width:100%;
        padding-top:10px;
    }
    .company-blocks .slick-dots button{
        border:0;
        box-shadow: none;
        width: 40.86px;
        height: 4px;
        background: #CDD3D8;
        border-radius: 6px;
        margin-right:4px;
        margin-right:4px;
        font-size: 0;
        color:transparent;
    }
    .company-blocks .slick-dots .slick-active button{
        background: #25303D;
    }
}

/*  */

.contacts{
    background: #EAEAEA;
    padding-top:48px;
    overflow: hidden;
}
.contacts .container{
    position: relative;
    
    
}
.contacts-form{
    padding-bottom:40px;
}
.contacts-form-row{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom:16px;
}
.contacts-form-input{
    position: relative;
    background: #F6F6F6;
    height: 116px;
    width:100%;
}
.contacts-form-row-2 .contacts-form-input{
    width:49.2%;
}
.contacts-form-input label{
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #1C1C1C;
    top:46px;
    left:30px;
    position: absolute;
    z-index: 1;
    transition:0.5s;
}
.contacts-form-input label.active{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #BDBDBD;
    top: 3px;
    transition:0.5s;
}
.contacts-form-input input{
    background: transparent;
    width:100%;
    height:100%;
    padding-left:30px;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #1C1C1C;
    border:none;
    position: relative;
    z-index: 2;
}
.contacts-form-input textarea{
    background: transparent;
    width:100%;
    height:100%;
    padding-left:30px;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #1C1C1C;
    border:none;
    position: relative;
    z-index: 2;
    padding-top: 46px;
}
.contacts-form-button{
    width: 310.5px;
    height: 69px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #C90075;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    border:0;
    color: #FFFFFF;
    margin-top:40px;
    cursor: pointer;
    transition: 0.5s;
    z-index: 2;
}
.contacts-form-button:hover{
    background: #FF0096;
}
.contacts .numbers-back{
    top:auto;
    bottom: -200px;
}

@media(max-width:765px){
    .contacts{

    }
    .contacts-form-input{
        height: 58px;
    }
    .contacts-form-input input{
        padding-left:14px;
        font-size: 16px;
        line-height: 17px;
    }
    .contacts-form-input textarea{
        padding-left:14px;
        font-size: 16px;
        line-height: 17px;
        padding-top: 21px;
    }
    .contacts-form-input label{
        left:14px;
        top: 19px;
        font-size: 16px;
        line-height: 17px;
    }
    .contacts-form-input label.active{
        font-size: 12px;
    }
    .contacts-form-row-2 .contacts-form-input{
        width:100%;
    }
    .contacts-form-row-2 .contacts-form-input:first-child{
        margin-bottom: 16px;
    }
    .contacts-form-row{
        flex-wrap: wrap;
    }
    .contacts-form-button{
        margin:0 auto;
        margin-top:25px;
        width: 234px;
        height: 58px;
    }
}

/*  */

.contact-bottom{
    padding-top:50px;
}
.contact-bottom-tabs-buttons{
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.contact-bottom-tab-button{
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    color: #161616;
    width: 189px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    cursor: pointer;
}
.contact-bottom-tab-button.active{
    background: #FFFFFF;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    border-radius: 75px;
}
.contact-bottom-tabs{
    height:610px;
}
.contact-bottom-tab{
    /* display:none; */
    
    /* opacity: 0; */
    transition: 0.5s;
    position: absolute;
    top:0;
    left:-100%;
    width: 100%;
}
.contact-bottom-tab.active{
    display: block;
    position: relative;
    opacity: 1;
    transition: 0.5s;
    left:0;
}
.contact-bottom-tab.active-2{
    left:100%;
    transition: 0.5s;
}
.contact-bottom-tab-map{
    
}
.contact-bottom-tab-map-top{
    position: absolute;
    top:0;
    width:100%;
    left:0;
    background: rgba(234, 234, 234, 0.79);
    backdrop-filter: blur(6px);
    border-top: 1px solid #F2F2F2;
    border-bottom: 1px solid #F2F2F2;
}
.contact-bottom-tab-map-top > .container{
    display: flex;
    justify-content: space-between;
    
    padding-top:30px;
    padding-bottom:30px;
}
.contact-bottom-tab-map-top-row{
    display: flex;
    width:30%;
    align-items: flex-start;
}
.contact-bottom-tab-map-top-row > img{
    display: block;
    margin-right:16px;
}
.contact-bottom-tab-map-top-row-content{

}
.contact-bottom-tab-map-top-row-content-title{
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    color: #4F4F4F;
    margin-bottom:15px;
}
.contact-bottom-tab-map-top-row-content-a{
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    text-decoration:none;
    color: #161616;
    margin-bottom: 10px;
    max-width:190px;
}
.contact-bottom-tab-map-frame{
    height:610px;
    width:100%;
}
.contact-bottom-tab-map-frame iframe{
    height:100%;
    width:100%;
}

.mob-line{
    display:none;
}

@media(max-width:765px){
    .mob-line{
        display: block;
    }
    .contact-bottom-tab-button{
        width: 113px;
        height: 36px;
    }
    .contact-bottom-tab-map-top .container{
        flex-wrap: wrap;
        padding-top:20px;
        padding-bottom:0;
    }
    .contact-bottom-tab-map-top-row{
        width:100%;
        margin-bottom: 17px;
        align-items: center;
    }
    .contact-bottom-tab-map-top-row-content{
        display: flex;
        align-items: center;
    }
    .contact-bottom-tab-map-top-row-content-title{
        font-size: 16px;
line-height: 19px;
        margin-right:30px;
        width:70px;
        margin-bottom: 0;
    }
    .contact-bottom-tab-map-top-row-content-a{
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 0;
    }
}

/*  */

footer{
    background: #EAEAEA;
}
.footer-top{
    display: flex;
    justify-content: space-between;
    padding-top:70px;
    /* padding-bottom: 50px; */
}
.footer-top-row{
    overflow:hidden;
}
.footer-top-row:nth-child(1){
    
}
.footer-top-row:nth-child(2){
    max-width:359px;
}
.footer-top-row:nth-child(3){
    max-width:498px;
}
.footer-top-row-title{
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 15px;
    color: #4F4F4F;
}
.footer-top-row-text{
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    margin-bottom:50px;
    color: #4F4F4F;
}
.footer-top-row-text-time{
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;

    /* Gray 2 */

    color: #4F4F4F;
}

.footer-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom:30px;
}
.footer-bottom-left{
    font-weight: 400;
font-size: 14px;
line-height: 16px;

color: #161616;
}
.footer-bottom-right{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom-right a{
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-decoration-line: underline;
    margin-right: 27px;
    color: #161616;
}

.footer-row-rek-buttons{
    width:100%;
    border-bottom: 1px solid #BDBDBD;
    display:flex;
    margin-bottom:16px;
}
.footer-row-rek-button{
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    padding-bottom:8px;
    color: #4F4F4F;
    border-bottom:5px solid transparent;
    margin-right:30px;
    cursor:pointer;
}
.footer-row-rek-button.active{
    border-bottom:5px solid #C90075;
}

.footer-top-row-text-rek-1,.footer-top-row-text-rek-2,.footer-top-row-text-rek-3{
    display:none;
    width:100%;
}
.footer-top-row-text.active{
    display:block;
}

@media(max-width:765px){
    .footer-row-rek-buttons{
        justify-content:center;
    }
    .footer-row-rek-button{
        font-size: 14px;
        line-height: 16px;
        border-bottom:3px solid transparent;
        padding-left:5px;
        padding-right:5px;
        margin-left:10px;
        margin-right:10px;
    }
    .footer-row-rek-button.active{
        border-bottom:3px solid #C90075;
    }
    .footer-top{
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top:30px;
        padding-bottom:40px;
    }
    .footer-top *{
        text-align: center;
    }
    .footer-top-row-title{
        font-weight: 500;
font-size: 16px;
line-height: 19px;
    }
    .footer-top-row-text{
        font-weight: 400;
        font-size: 14px;
        line-height: 146.19%;
        margin-bottom:30px;
    }
    .footer-top-row:nth-child(2){
        display: flex;
        flex-direction: column;
    }
    .footer-top-row:nth-child(2) > div:nth-child(1){
        order:3;
    }
    .footer-top-row:nth-child(2) > div:nth-child(2){
        order:4;
    }
    .footer-top-row:nth-child(2) > div:nth-child(3){
        order:1;
    }
    .footer-top-row:nth-child(2) > div:nth-child(4){
        order:2;
    }
    .footer-logo{
        display: block;
        margin-bottom:35px;
    }
    .footer-bottom{
        flex-wrap: wrap;
    }
    .footer-bottom-left{
        order:2;
        width:100%;
        text-align: center;
    }
    .footer-bottom-right{
        order:1;
        width:100%;
        flex-wrap: wrap;
    }
    .footer-bottom-right a{
        display: block;
        width:100%;
        margin-bottom: 18px;
        text-align: center;
    }
    .mstk-mob{
        display: block;
        margin:0 auto;
        margin-top:18px;
    }
    .footer-bottom-left span{
        display: block;
        padding-bottom: 28px;
        border-bottom: 1px solid #BDBDBD;
    }
}

@media(max-width:341px){
    .footer-top-row-text{
        font-weight: 400;
        font-size: 12px;
        line-height: 146.19%;
    }
}

/*  */

.popup-form-cont{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    background: #00000094;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    display: none;
}
.popup-form-cont.active{
    display: flex;
}

.popup-form{
    background: #EAEAEA;
box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.25);
    max-width: 592px;
    width:90%;
    padding-top:40px;
    padding-left:25px;
    padding-right:25px;
    padding-bottom:35px;
    max-height: 98vh;
    overflow-y: auto;
}
/* .popup-form *{
    position: relative!important;;
    z-index: 10!important;
} */
.popup-form-title{
    font-weight: 700;
font-size: 30px;
line-height: 35px;
margin-bottom:25px;
color: #CB1C68;
}
.popup-form .text{
    font-weight: 400;
font-size: 20px;
line-height: 23px;
margin-bottom:25px;
}

.popup-form .contacts-form{
    padding-bottom:0;
}
.popup-form .contacts-form-input{
    height:82px;
    /*z-index: 10;*/

}
.popup-form .contacts-form-input input{
    font-size: 20px;
    line-height: 24px;
}
.popup-form .contacts-form-input label{
    font-size: 20px;
    line-height: 24px;
    top: 29px;
}
.popup-form .contacts-form-input label.active{
    font-size: 14px;
    line-height: 24px;
    top: 6px;
}
.popup-form .contacts-form-row-2{
    flex-wrap: wrap;
}
.popup-form .contacts-form-row-2 .contacts-form-input{
    width:100%;
}
.popup-form .contacts-form-button{
    margin-top:25px;
}
.popup-form .contacts-form-row-2 .contacts-form-input:first-child{
    margin-bottom: 16px;
}

.popup-form-exit{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    width: 100%;
    color: #858585;
    margin-top:-20px;
    cursor: pointer;
}
.popup-form-exit img {
    margin-left: 20px;
    display: block;
}

label.error{
    color: red;
    position: absolute;
    bottom: 0;
    top: auto;
    display: block;
    font-size: 11px;
}
.contacts-form-input input.error{
    border: 2px solid #FF0000;
}

form{
    position:relative;
}
.thanks{
    display:none;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: #EAEAEA;
    z-index:20;
}
.thanks.active{
    
}
.thanks-title{
    font-weight: 500;
font-size: 16px;
line-height: 19px;
/* identical to box height */

margin-bottom:15px;
color: #C90075;
}
.thanks-text{
    font-weight: 400;
font-size: 12px;
line-height: 14px;
max-width:320px;
color: #000000;
margin-bottom:30px;
}
.thanks-button{
    width: 196px;
    height: 44px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight: 400;
font-size: 14px;
line-height: 16px;
text-transform: uppercase;

color: #000000;
background: #EAEAEA;
border: 1px solid #000000;
border-radius: 4px;
cursor:pointer;
}

.contacts-form-footer .thanks{
    display:flex;
    justify-content:center;
    align-items:center;
    height:100%;
    flex-direction:column;
}
.contacts-form-footer .thanks-title{
    font-weight: 500;
font-size: 32px;
line-height: 32px;
/* identical to box height */
margin:0 auto;
text-align:center;
margin-bottom:15px;
color: #C90075;

}
.contacts-form-footer .thanks-text{
    font-weight: 400;
font-size: 18px;
line-height: 20px;
max-width:420px;
color: #000000;
margin:0 auto;
text-align:center;
margin-bottom:30px;

}
.contacts-form-footer .thanks-button{
    width: 196px;
    height: 44px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight: 400;
font-size: 14px;
line-height: 16px;
text-transform: uppercase;
margin:0 auto;
text-align:center;
color: #000000;
background: #EAEAEA;
border: 1px solid #000000;
border-radius: 4px;
cursor:pointer;
}

.contacts-form-popup .thanks-title{
    font-weight: 500;
    font-size: 32px;
    line-height: 32px;
    /* identical to box height */
    /*margin:0 auto;*/
    /*text-align:center;*/
    margin-bottom:15px;
    color: #C90075;

}
.contacts-form-popup .thanks-text{
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    max-width:420px;
    color: #000000;
    /*margin:0 auto;*/
    /*text-align:center;*/
    margin-bottom:30px;

}
.contacts-form-popup .thanks-button{
    width: 196px;
    height: 44px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    /*margin:0 auto;*/
    /*text-align:center;*/
    color: #000000;
    background: #EAEAEA;
    border: 1px solid #000000;
    border-radius: 4px;
    cursor:pointer;
}


@media(max-width:1100px){
    .contact-bottom-tabs{
        
    }
    .contact-bottom-tab-mob{
        /*display: none;*/
        position:absolute;
        left:-500px;
        transition:0.5s;
    }
    .contact-bottom-tab-mob.active{
        display:block;
        position:absolute;
        left:0;
         transition:0.5s;
    }
    .header-mob-item-content .contact-bottom-tabs{
        height:200px;
        position:relative;
    }
        .container{
        display:block !important;
        position:relative;
    }
}
@media(max-width:765px){
    .popup-form-title{
        font-size: 26px;
        line-height: 30px;
        margin-bottom:20px;
    }
    .popup-form .text{
        font-size: 12px;
        line-height: 14px;
        margin-bottom:15px;
    }
    .popup-form .contacts-form-input{
        height: 51px;
    }
    .popup-form .contacts-form-input label{
        font-size: 14px;
        line-height: 17px;
        top: 16px;
    }
    .popup-form .contacts-form-input label.active{
        font-size: 12px;
        top: 3px;
    }
    .popup-form .contacts-form-input input{
        font-size: 14px;
        line-height: 17px;
    }
    .popup-form .contacts-form-button{
        margin:0;
        margin-top:20px;
        width: 196.21px;
        height: 44px;
    }
    .main-banner-video video{
        width:100%;
    }
    .main-banner{
        height:56vh;
    }
    .main-banner-video>img{
        height:58vh;
    }
    .img-desc{
        display:none;
    }
    .img-mob{
        display:block;
    }
}

@media(max-width:400px){
    .header-right-phone{
        margin-top:20px;
        
    }
    .header-mob-button>img{
        max-width:40px;
    }
    .header-right-phone-top-phone{
    margin-right:14px;
}
}
@media(max-width:380px){
.header-right-phone-top-phone{
    margin-right:13px;
}
}