
@font-face {
    font-family: DINPro-Black;
    src: url(../fonts/DINPro-Black.ttf);
}
@font-face {
    font-family: DINPro-Bold;
    src: url(../fonts/DINPro-Bold.ttf);
}
@font-face {
    font-family: DINPro-Medium;
    src: url(../fonts/DINPro-Medium.ttf);
}
@font-face {
    font-family: DINPro-Regular;
    src: url(../fonts/DINPro-Regular.ttf);
}
@font-face {
    font-family: DINPro-Light;
    src: url(../fonts/DINPro-Light.ttf);
}
@font-face {
    font-family: Oranienbaum-Regular;
    src: url(../fonts/Oranienbaum-Regular.ttf);
}




:root{
    --main-bg:  #ECE3E9;
    --header-menu-bg:#f9fbff;
    --intro-bg:#b3d4fc;
    --dark-pink:#815A88;
    --main-color: #32393F;
    --second-color: #FFFFFF;
    --dinpro-black:DINPro-Black,sans-serif;
    --dinpro-bold:DINPro-Bold,sans-serif;
    --dinpro-medium:DINPro-Medium,sans-serif;
    --dinpro-regular:DINPro-Regular,sans-serif;
    --dinpro-light:DINPro-Light,sans-serif;
    --oranienbaum-regular:Oranienbaum-Regular, serif;
   
}
html {
    scroll-behavior: smooth;
}

*{
    color: var(--main-color);
    font-family: var(--dinpro-medium);
    font-size: 14px;
    line-height: 1.25;
}

::-webkit-scrollbar{
    background:var(--header-menu-bg);
    width: 10px;
}
::-webkit-scrollbar-thumb{
    background: #d0d0d0;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

body{
    background:var(--header-menu-bg);
}
a,button, .burger{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


.wrapper{
    min-height: 100%;
    overflow: hidden;
    position: relative;
}
.content{
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    position: relative;
}
.main{
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
}

.container{
    max-width: 1400px;
    padding: 0 10px;
    margin: 0 auto;
}
.block{
    padding: 40px 0;
}
.title{
    font-size: 30px;
    font-family: var(--dinpro-bold);
    text-align: center;
    margin-bottom: 30px;
}
.subtitle{
}
.text{
    font-size: 20px;
    line-height: 160%;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 7;
    
}
.header__body{
    position: relative;
    padding: 10px 0;
}
.header__menu{
    background: var(--header-menu-bg);
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 120vh;
    padding: 100px 0 20px;
    z-index: 8;
}
.header__menu ._pc{
    height: 110vh;
}


.header__menu-geo{
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid var(--main-color);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
.header__list{
    padding: 0 20px;
}
.header__list-item{
    opacity: 0;
    visibility: hidden;
    padding: 4px 0;
    margin: 7px 0;
}
.header__link{
    font-size: 20px;
    line-height: 160%;
    white-space: nowrap;
}
.header__link-social{
    display: block;
    width: 35px;
    height: 35px;
}
.header__link-social_vk{
    background: url(../img/vk.svg) no-repeat;
    background-size: cover;
    background-position: center;
}
.header__link-social_inst{
    background: url(../img/inst.svg) no-repeat;
    background-size: cover;
    background-position: center;
}
.header__list-item_social{
    margin-top: 10px;
    padding: 3px 0;
    display: flex;
    gap: 5px;
}
.header__link-social_whats{
    background: url(../img/whats.svg) no-repeat;
    background-size: cover;
    background-position: center;
}
.header__link-social_telegram{
    background: url(../img/telegram.svg) no-repeat;
    background-size: cover;
    background-position: center;
}
.header__link_form{
    background: var(--main-bg);
    color: var(--dark-pink);
    padding: 10px 15px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    margin: 7px 0;
}
.header__logo{
    position: relative;
    width:100px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 11;
}
.header__logo img{
    width: 100%;
}


.header__tel{
    display: none;
}



.burger{
    display: block;
    width: 35px;
    height: 20px;
    cursor: pointer;
    z-index: 10;
    position: absolute;
    top: 30px;
    right: 0;
    padding: 5px;
    z-index: 11;
}
.burger__line {
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    background-color: var(--main-color);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.burger__line--1 {
    top: 0;
}
.burger__line--2, .burger__line--3 {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.burger__line--4 {
    bottom: 0;
}
.burger._active .burger__line--1, .burger._active .burger__line--4{
    opacity: 0;
}
.burger._active .burger__line--2{
    transform: translateY(50%) rotate(45deg);
    -webkit-transform: translateY(50%) rotate(45deg);
    -moz-transform: translateY(50%) rotate(45deg);
    -ms-transform: translateY(50%) rotate(45deg);
    -o-transform: translateY(50%) rotate(45deg);
}   
.burger._active .burger__line--3{
    transform: translateY(50%) rotate(-45deg);
    -webkit-transform: translateY(50%) rotate(-45deg);
    -moz-transform: translateY(50%) rotate(-45deg);
    -ms-transform: translateY(50%) rotate(-45deg);
    -o-transform: translateY(50%) rotate(-45deg);
} 

.intro{
    background: var(--intro-bg);
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
}
.clouds-wrapper{
    position: absolute;
    z-index: -1;
    display: flex;
    top: 0;
    left: 0;
    width: 600%;
    height: 100%;
    animation: cloud 80s infinite linear forwards;
    -webkit-animation: cloud 80s infinite linear forwards;
}
.clouds{
    width: 200%;
    
}
@keyframes cloud {
    0%{
        transform: translate(0, 0);
      }
      
      100%{
        transform: translate(-100%, 0);
        -webkit-transform: translate(-100%, 0);
        -moz-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
        -o-transform: translate(-100%, 0);
    }
}

.home-wrapper {
    position: relative;
    height: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    
}
.home-wrapper img{
    text-align: center;
    width: 200%;
}


.intro__body {
    position: absolute;
    width: 100%;
    top: 38%;
    z-index: 4;
}

.intro__title {
    font-size: 45px;
    margin-bottom: 10px;
    font-family: var(--dinpro-bold);
    font-weight: 900;
}
.intro__text{
    font-size: 19px;
    line-height: 130%;
    letter-spacing: 1px;
    max-width: 500px;
    margin-bottom: 10px;
}
.intro__suvtitle {
    margin-bottom: 20px;
    font-size: 12px;
    max-width: 85%;
}
.intro__btn-form{
    color: var(--header-menu-bg);
    display: inline-block;
    font-size: 19px;
    line-height: 160%;
    background: var(--main-color);
    padding: 13px 25px;
    font-weight: 300;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    margin-bottom: 30px;
}
.intro__list{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.intro__list-item{
    color: var(--header-menu-bg);
    font-size: 19px;
    line-height: 160%;
}


.box-header,
.box-bottom__content{
    padding: 0 20px;
}
.box-header{
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.box-header__number-block{
    font-size: 60px;
    line-height: 0.9;
    font-family: var(--dinpro-light);
}
.box-header__subtitle{
    font-size: 16px;
    line-height: 1.67;
    font-family: var(--dinpro-light);
    margin-bottom: 10px;
}
.box-header__title{
    font-size: 36px;
    line-height: 1.20;
    font-family: var(--oranienbaum-regular);
}
.box-bottom__text{
    font-size: 14px;
    line-height: 1.25;
    font-family: var(--dinpro-light);
}
.box-bottom__text{
    margin-bottom: 10px;
}
.box-bottom__text:last-child{
    margin-bottom: 0px;
}

.about{
    background: var(--main-bg);
}
.about__box-video{
    overflow: hidden;
    padding: 0 20px;
}
.about__video{
    width: 100%;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.about__row-content{
    margin-bottom: 20px;
}
.about__list{
    display: none;
}

.project{
    position: relative;
    background: var(--main-bg);
}
.project__swiper{
    position: relative;
    z-index: 1;  
    -o-transition: all 3.3;
    background:#c4c4c4;

}
.project__swiper-wrapper{
    transition: all 3.3;
    -webkit-transition: all 3.3;
    -moz-transition: all 3.3;
    -ms-transition: all 3.3;
}
.project__btn-box{
    position: absolute;
    top: 33vw;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.project__swiper-button{
    color: transparent;
    padding: 22px;
    border-radius: 50%;
    position: relative;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all 0.3;
    -webkit-transition: all 0.3;
    -moz-transition: all 0.3;
    -ms-transition: all 0.3;
    -o-transition: all 0.3;
}
.project__swiper-button:active{
   transform: scale(0.9);
   -webkit-transform: scale(0.9);
   -moz-transform: scale(0.9);
   -ms-transform: scale(0.9);
   -o-transform: scale(0.9);
}
.project__swiper-button-next{
    background: url(../img/next.svg) no-repeat center;
    background-color: rgba(0, 0, 0, 0.5);
    background-size: 20px 20px;
}
.project__swiper-button-prev{
    background: url(../img/prev.svg) no-repeat center;
    background-color: rgba(0, 0, 0, 0.5);
    background-size: 20px 20px;
}

.project__swiper-slide img{
    width: 100vw;
    height: auto;
    object-fit: cover;
    object-position: center;
}
.swiper-pagination-bullet-active{
    background-color: var(--header-menu-bg);
}
.project .container{
    padding: 0;
}
.description{
    background: var(--main-color);
    padding: 30px 0;
    position: relative;
    z-index: 2;
    border: 1px solid #32393F;
    margin-top: -2px;
    padding: 20px 15px;
}
.description__title,
.description__text,
.description__column,
.description__column span{
    color: var(--header-menu-bg);
    line-height: 160%;
    font-family: var(--dinpro-black);
}
.description__text{
    font-size: 16px;
    font-family: var(--dinpro-bold);
    margin-bottom: 20px;

}
.description__title{
    text-transform: uppercase;
    font-size: 35px;
    line-height: 100%;
    margin-bottom: 20px;
}

.description__columns{
    display: flex;
    gap: 20px;
}
.description__column, .description__column span{
    font-family: var(--dinpro-medium);
    font-size: 14px;
}
.description__column span{
    font-family: var(--dinpro-regular);
}

.services__box-bottom {
}
.services__table {
    border: 0;
    border-spacing: 0;
    width: 100%;
}
.services__table-row {
    border: 0;
    background: var(--main-bg);
}

.services__table-row:nth-child(even) {
    background: var(--header-menu-bg);
}
.services__table-data,  .services__table-data sup{
    font-family: var(--dinpro-light);
}
.services__table-data{
    padding: 10px;
    line-height: 160%;
}
.services__table-data:nth-child(2){
    text-align: right;
}
.services__table-data:nth-child(3){
    text-align: right;
}


.investments{
    background: var(--main-bg);
}
.investments__row-content{
    margin-bottom: 20px;
}
.investments__progress-title,
.investments__progress-columns,
.investments__calc-title,
.investments__calc-columns{
    display: flex;
}
.investments__progress-columns{
    margin-bottom: 20px;
}
.investments__progress-text,
.investments__calc-text{
    flex: 1 1 33.333%;
    text-align: center;
    font-size: 16px;
    line-height: 160%;
    font-family: var(--dinpro-light);
    padding: 5px;
}

.investments__progress-column{
    flex: 1 1 33.333%;
    text-align: center;
    font-size: 16px;
    line-height: 160%;
    font-family: var(--dinpro-light);
    padding: 10px ;
    position: relative;
}
.investments__progress-column:nth-child(1){
    background: #815A88;
    color: var(--header-menu-bg);
    
}

.investments__progress-column:nth-child(2){
    background: #ae87b5;
    color: var(--header-menu-bg);
}
.investments__progress-column:nth-child(3){
    background: #bca6c0;
    color: var(--header-menu-bg);
}
.investments__calc-column{
    flex: 1 1 33.333%;
    text-align: center;
    font-family: var(--dinpro-light);
}
.investments__calc-column:nth-child(2),
.investments__calc-column:nth-child(3){
    padding: 10px;
    text-align: center;
}

.investments__calc-column-input{
    font-size: 14px;
    font-family: var(--dinpro-light);
    background: var(--main-bg);
    border-bottom: 2px solid var(--dark-pink); 
    padding: 10px;
    width: 100%;
    font-weight: 300;
}
.investments__calc-column-input::placeholder{
    font-family: var(--dinpro-light);
    color: #888;
}
.investments__box-btn-form_pc{
    display: none;
}
.investments__box-btn-form{
    text-align: right;
}
.investments__btn-form{
    display: inline-block;
    font-size: 16px;
    font-family: var(--dinpro-regular);
    color: var(--header-menu-bg);
    background: var(--dark-pink);
    padding: 15px 19px;
    text-align: center;
    border-radius: 38px;
    -webkit-border-radius: 38px;
    -moz-border-radius: 38px;
    -ms-border-radius: 38px;
    -o-border-radius: 38px;
    border: 2px solid var(--dark-pink);
}

.gallery__photos{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}
.gallery__photo {
    width: 25vw;
    height: 25vw;
}
.gallery__img {
    width: 25vw;
    height: 25vw;
    object-fit: cover;
    object-position: center;
}





@media  (max-width: 380px){
    .intro__body {
        top: 25%;
    }
    .box-header,
    .box-bottom__content{
        padding: 0 10px;
    }

}
@media  (max-width: 350px){
    .intro__body {
        top: 23%;
    }
    .header__menu{
        padding: 90px 0 20px;
    }
    .box-header{
        margin-bottom: 30px;
    }
    .box-header__number-block{
        font-size: 55px;
    }
    .box-header__subtitle{
        font-size: 14px;
    }
    .box-header__title{
        font-size: 26px;
    }
}



.form__wrapper {
    width: 40%;
    min-width: 320px;
    max-width: 475px;
    background: #fff;
    margin: 0 auto;
    position: fixed;
    top: 50%;
    left: 50%; 
     -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25); 
    z-index: 9;
}
.form._active{
    display: block;
}
.form{
    display: none;
    
}
.form__area{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.form__wrapper{
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    overflow: hidden;
}
  .form__wrapper .telegram-form {
    display: block;
    width: 100%;
    padding: 2em;
}
  
  .form__title {
    width: 100%;
    color: var(--main-color);
    font-family: var(--oranienbaum-regular);
    font-size: 1.35em;
    display: block;
    background: var(--main-bg);
    width: 100%;
    padding: .75em 1em .75em 1.5em;
    -webkit-box-shadow: inset 0px 1px 1px fadeout(white, 95%);
    box-shadow: inset 0px 1px 1px fadeout(white, 95%);
    margin: 0;
  }
 
  
  .form__input {
    display: block;
    margin: auto auto;
    width: 100%;
    margin-bottom: 2em;
    padding: .5em 0;
    border: none;
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 1.25em;
    color: #757575;
    background: transparent;
    font-family: var(--dinpro-light);
  }
  .form__input_tel{
    margin-bottom: 0.2em;
  }
  .form__wrapper .form__input:focus{
    outline: none;
  }
  .form__textarea{
    opacity: 0;
    visibility: hidden;
    padding: 0;
    margin: 0;
  }
  .form__wrapper .fixed_form-btn  {
    font-family: var(--dinpro-regular);
    display: inline-block;
    display: flex;
    background: var(--main-bg);
    border: 1px solid  var(--main-bg);
    padding: .5em 2em;
    color: var(--main-color);
    -webkit-box-shadow: inset 0px 1px 0px fadeout(white, 80%);
    box-shadow: inset 0px 1px 0px fadeout(white, 80%);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin-left: auto;
    margin-right: 0;
    position: relative;
    z-index: 2;
    }
  
  .form__wrapper .fixed_form-btn:hover {
    background: var(--dark-pink);
    border: 1px solid  var(--dark-pink);
    color: var(--header-menu-bg);
  }
  
  .form__wrapper .fixed_form-btn:active {
    background: var(--main-bg);
    border: 1px solid  var(--dark-pink);
    color: var(--dark-pink);
    
}
  
  .form__wrapper .fixed_form-btn:focus {
    outline: none;
  }
  .form__clouse{
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 30px;
    font-family: var(--dinpro-regular);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
  .form__wrapper .forgot {
    color: var(--dark-pink);
    line-height: .5em;
    position: relative;
    top: 2.5em;
    text-decoration: none;
    font-size: .75em;
    margin: 0;
    padding: 0;
    float: right;
  }

.footer{
    background: var(--main-color);
}
.footer p, .footer a{
    color: var(--header-menu-bg);
    line-height: 160%;
}
.footer__header-text{
    font-size: 14px;
    font-family: var(--dinpro-light);
    padding: 0 10px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.footer__columns{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}
.footer__column{
    padding: 0 10px;
    flex: 0 0 100%;
}
.footer__title{
    color: var(--header-menu-bg);
}
.footer__info-tel{
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}
.footer__column-text{
    font-size: 14px;
    font-family: var(--dinpro-light);
    margin-bottom: 20px;
}
.footer__column-text_first{
    margin-bottom: 5px;
}
.footer__column-links{
    display: flex;
    gap: 5px;
}
.footer__column-link{
    display: block;
    width: 38px;
    height: 38px;

}
.footer__column-link_vk{
    background: url(../img/vk-dark.svg) no-repeat;
    background-position: center;
    background-size: cover;
}
.footer__column-link_inst{
    background: url(../img/inst-dark.svg) no-repeat;
    background-position: center;
    background-size: cover;
}
.footer__column-link_whats{
    background: url(../img/whats-dark.svg) no-repeat;
    background-position: center;
    background-size: cover;
}
.footer__column-link_telegram{
    background: url(../img/telegram-dark.svg) no-repeat;
    background-position: center;
    background-size: cover;
}
.footer__requisites{
    padding: 0 20px;
}
.footer__requisites-row{
    display: flex;
    gap: 10px;
}
.footer__requisites-title,
.footer__requisites-subtitle,
.footer__requisites-row{
    margin-bottom: 8px;
    line-height: 160%;
}


.footer__requisites-text{
    font-family: var(--dinpro-light);
}
.footer__requisites-text_title{
    font-family: var(--dinpro-medium);
    min-width: 100px;
}

.footer__form {
    background: var(--main-bg);
}

.footer__form-title {
    color: var(--main-color);
    padding: 20px;
    padding-bottom: 10px;
    font-size: 24px;
    font-family: var(--dinpro-bold);
}
.footer__form-bottom {
    display: block;
    position: static;
    padding: 20px;
}
.footer__form-input,
.footer__form-textarea {
    display: block;
    background:var(--main-bg);
    padding: 15px 0px;
    width: 100%;
    border-bottom:2px solid #888;
    margin-bottom: 15px;
    font-family: var(--dinpro-regular);
}
.footer__form-textarea{
    height: 70px;
    margin-bottom: 30px;
    resize: none;
}
.footer_form-btn{
    text-transform: uppercase;
    display: block;
    line-height: 160%;
    color: var(--header-menu-bg);
    font-family: var(--dinpro-regular);
    border: 2px solid var(--main-color);
    padding: 12px 30px;
    background: var(--main-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    position: relative;
    z-index: 2;
}
.footer_form-btn:active{
    background: var(--header-menu-bg);
    color: var(--main-color);    
}


.button-lock,
.button-lock_two{
    display: block;
    position: relative;
}
.button-lock__field,
.button-lock__field_two{
    display: none;
}
.button-lock__field_lock{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}
.label-phone, .label-phone span{
    color: var(--dark-pink);
    font-size: 14px;
}
.marquiz-pops__content-text{
    color: #FFFFFF;
}