@charset "UTF-8";
@import "../fonts/fonts.css";

body{
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  color: var(--main);
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
  --main: #765B59;
  --light: #E5D6C4;
  --mid: #B8A194;
  --border-radius: 42px 0px 42px 42px;;
}
div, h1, h2, h3, h4, p, ul, ol, li, a, input, textarea, label, button, span{
  box-sizing: border-box;
}
.container{
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px){.container{max-width: 540px;}}
@media (min-width: 768px){.container{max-width: 720px;}}
@media (min-width: 1024px){.container{max-width: 960px;}}
@media (min-width: 1200px){.container{max-width: 1140px;}}
@media (min-width: 1300px){.container{max-width: 1230px;}}
@media (min-width: 1500px){.container{max-width: 1440px;}}
@media (min-width: 1800px){.container{max-width: 1570px;}}


a, a:hover{
  text-decoration: none;
  transition: 0.5s;
  cursor: pointer;
  color: var(--main);
}
h1, h2, h3, h4, p, ul, ol{
  margin: 0;
}

ul, ol{
  list-style: none;
  margin: 0;
  padding: 0;
}

img{
  max-width: 100%;
}

::-webkit-scrollbar {width: 6px;}
::-webkit-scrollbar-track {background: var(--light);}
::-webkit-scrollbar-thumb {
    background-color: var(--main);
    border-radius: 3px;
}
html, body, div, * {
    scrollbar-width: thin;
    scrollbar-color: var(--main), var(--light);
}



.mb120{margin-bottom: 120px;}
.mb80{margin-bottom: 80px;}
.mb50{margin-bottom: 50px;}
.mb40{margin-bottom: 40px;}
.mb35{margin-bottom: 35px;}
.mb30{margin-bottom: 30px;}
.mb25{margin-bottom: 25px;}
.mb20{margin-bottom: 20px;}
.mb15{margin-bottom: 15px;}
.mb10{margin-bottom: 10px;}


.ttl.xlg{
  display: block;
  font-weight: 700;
  font-size: 120px;
  line-height: 1;
}
.ttl.lg{
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
}
.ttl.sm{
  font-weight: 400;
  font-size: 30px;
  line-height: 1.3;
}

.centered{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.flex{
  display: flex;
  flex-wrap: wrap;  
}
.flex.between{
  justify-content: space-between;
}
.flex.align-center{align-items: center;}

.btn{
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: max-content;
  height: 50px;
  background: var(--main);  
  transition: 0.3s;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  border: none;
  border-radius: 36px;
  white-space: nowrap;
  cursor: pointer;
  padding: 0 29px;
}
.btn:hover{
  background: var(--light);
  color: var(--main);
}
.btn.icon-more:before, .btn.icon-license:before, .btn.icon-dent:before{
  order: 2;
  transition: .1s;  
  margin-left: 8px;
}
.btn.icon-dent:before{
  font-size: 20px;  
}
.btn.icon-more:before{
  transition: color .1s, transform .3s;
}
.btn.icon-more:hover:before{
  transform: rotate(45deg);  
}
.btn.light{
  background: var(--light);
  color: var(--main);
  box-shadow: 0px 15px 20px 0px rgba(118, 91, 89, 0.20);
}
.btn.light:hover{
  background: var(--mid);
}

.btn.white{
  background: #fff;
  color: var(--main);
}
.btn.white:hover{
  background: var(--mid);
  color: #fff;
}
.modal {
  display: none;
  position: fixed; 
  top: 0;
  left: 0;
  z-index: 1200;  
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  outline: 0;
}
.modal-inner{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(118,91,89,.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal-wrapper{
  background: #fff;
  padding: 40px;
  position: relative;
  width: calc(100% - 30px);
  max-width: 450px;
  overflow-y: auto;
  border-radius: var(--border-radius);  
}
.modal-wrapper .close{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 40px;
  line-height: .5;
  color: #000;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  transition: .3s;
}
.uForm__preload {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: url(../img/loading.svg) no-repeat center / 120px rgba(118, 91, 89, .8);
}
.img-box{
  display: flex;
  flex-direction: column;
}



/*=====================================*/



.header{
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: 0.5s;   
}
.header.sticky{
  position: fixed;
  background: rgba(185,162,149,.97);
  animation: flash 0.5s linear 1;
}
@keyframes flash {
  from{opacity: 0; transform: translateY(-100%);}
  to {opacity: 1; transform: translateY(0);}
}

.burger-menu {
  display: none;
  width: 38px;
  height: 34px;
  padding: 5px;
  position: relative;
  margin-left: 30px;
}
.burger-menu span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #142433;
    border-radius: 1px;
    position: absolute;
    left: 5px;
    opacity: 1;
    transition: all linear 0.3s;
}
.burger-menu span:first-child {
    top: 7px;
}
.burger-menu span:nth-child(2), .burger-menu span:nth-child(3) {
    width: 16px;
    top: 15px;
}
.burger-menu span:last-child {
    top: 23px;
}
.burger-menu.active span:first-child {
    top: 0;
    opacity: 0;
}
.burger-menu.active span:nth-child(2) {
    width: 20px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.burger-menu.active span:nth-child(3) {
     width: 20px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.burger-menu.active span:last-child {
    top: 40px;
    opacity: 0;
}

#toTop {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--mid);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 20;
  font-size: 12px;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
#toTop.show {
  visibility: visible;
  opacity: 1;
}
#toTop:before{
  transform: rotate(180deg);
  margin: 0;
}
#toTop:hover{
  background: var(--light);
}
.body-wrapper{
  overflow-x: hidden;
}


/*=============================*/
.header .top{
  padding: 30px 0 10px;
}
.header.sticky .top{
  display: none;
}
.header .top .links{
  justify-content: flex-end;
  margin-left: auto;
}
.header .top .links a{
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-right: 30px;
}
.header .top .links a:hover{
  color: var(--main);
}
.mod-cities{
  max-width: max-content;
  position: relative;
}
.mod-cities .cities-list a{
  color: #c2afa4;
  font-size: 16px;
  font-weight: 700;    
}
.mod-cities .cities-list a:hover{
  color: var(--main);
}
.mod-cities .active-city{
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    padding-right: 28px;    
}
.mod-cities .cities-list{
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    position: absolute;
    width: 150px;
    top: 100%;
    right: 0;
    padding: 10px 5px;
    background: #fff;
    transition: 0.3s;
    z-index: 10;
    border-radius: 10px; 
}
.mobile-menu .mod-cities .cities-list{
  left: 0;
  right: auto;
}
.mod-cities .cities-list li{
  text-align: center;
}
.mod-cities .active-city:before, .mod-cities .active-city:after{    
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 6px;
  height: 2px;
  transition: all 0.3s ease-out;
  background-color: #fff;
  transform: translate(-2px, -50%) rotate(45deg);
}
.mod-cities .active-city:after {
  transform: translate(2px, -50%) rotate(-45deg);
}
.mod-cities:hover .active-city:before{
  transform: translate(-2px, -50%) rotate(-45deg);
}
.mod-cities:hover .active-city:after{
  transform: translate(2.5px, -50%) rotate(45deg);
}
.mod-cities a, 
.mod-cities .active-city{
  font-size: 16px;
}
.mod-cities:hover .cities-list{
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header .logo{
  width: 195px;
  margin-right: auto;
}
.header-menu{
  display: flex;
  margin-right: 12px;
}
.header-menu a{
  font-weight: 700;
  color: #fff;
  margin: 0 18px;
}
.header-menu a:hover{
  color: var(--main);
}

.main{
  background: linear-gradient(180deg, #B8A194 0%, rgba(184, 161, 148, 0.00) 100%);
}
.mobile-menu {
  display: block;
  width: 375px;
  max-width: 100%;
  height: 100%;  
  background-color: #B8A194;
  position: fixed;
  right: -375px;
  top: 0px;
  z-index: 1000;
  transition: 0.4s linear;  
  overflow-y: scroll;
  padding: 60px 22px;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu .logo{
  width: 195px;
  margin-bottom: 60px;
}
.mobile-menu .close{
  width: 24px;
  height: 24px;
  position: absolute;
  top: 30px;
  right: 24px;
  background: url(../img/close.svg) no-repeat center;
}
.mobile-menu .menu a{
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 36px;
}
.mobile-menu .mod-cities{
  margin-bottom: 50px;
}
.mobile-menu .mod-cities .active-city{
  font-size: 26px;
}
.mobile-menu .mod-cities .cities-list{
  width: 200px;
}
.mobile-menu .mod-cities .cities-list a{
  display: block;
  font-size: 24px;
  text-align: left;
  margin-bottom: 10px;
}

/*===============================*/

.main-intro{
  min-height: 100vh;  
  padding: 225px 0 60px;
}

.main-intro .text-box{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 47%;
  position: relative;
  z-index: 2;
  padding-top: 6% /*10%; */ 
}
.main-intro .text-box .ttl{
  color: #fff;
}
.main-intro .text-box .btn-box{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-intro .img-box{
  width: 50%;
  position: relative;
  padding-bottom: 42%;
}
.main-intro .img-box .btn{
  position: absolute;
  z-index: 2;
}
.main-intro .img-box .btn i{
  font-weight: 400;
  margin-left: 4px;
}
.main-intro .img-box .btn:first-child{
  top: 35%;
  right: -30px;
}
.main-intro .img-box .btn:last-child{
  left: 15%;
  bottom: 12%;
} 
.main-intro .img-box .img-absolute{
  position: absolute;
  width: 150%;
  max-width: 150%;
  height: auto;
  top: 0;
  left: -30%;
  bottom: 0;
  margin: auto 0;
}
.main-intro .img-box .img-absolute.mobile{
  display: none;
}
.icon-down{
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}
.icon-down:before{
  font-size: 15px;
  margin-right: 8px;
}
a.icon-down span{
  text-decoration-line: underline;
}
a.icon-down:hover span{
  text-decoration: none;
}
.counter-section{
  margin-bottom: 120px;
}
.counter-section .wrapper{
  max-width: 1320px;
}
.counter-section .item{
  width: calc(25% - 30px);
  background: #fff;
  border-radius: var(--border-radius);
  text-align: center;
  padding: 40px 10px;
}
.counter-section .counter{
  font-size: 59px;
  font-weight: 700;
  line-height: 1.2;
}
.main-about{
  margin-bottom: 120px;
}
.main-about .img-box{
  width: 48.5%;
}
.main-about .img-box img{
  border-radius: var(--border-radius);
}
.main-about .text-box{
  width: 46%;
}
.about-caption{
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--border-radius);
  padding: 20px 25px;
}
.about-caption:before{
  content: '';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  background: url(../img/about-icon.svg) no-repeat center / 65% var(--main);
  margin-right: 20px;
}
.main-slider{
  overflow: hidden;
}
.main-slider .swiper-container{
  width: 48.5%;
  margin-left: auto;
  margin-right: auto;
}
.main-slider .swiper-wrapper{
  transition-timing-function: linear;
}
.main-slider .img-wrap{
  display: block;
  border-radius: var(--border-radius);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 72%;
}
.main-services .ttl-box{
  width: 47.5%;
}
.main-services .services-box{
  width: 46%;
}
.services-list li{
  display: block;
  border-radius: 42px;
  border: 1.5px dashed var(--main);
  padding: 10px 9px 10px 30px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.main-services .about-caption{  
  background-color: #F5EEF8;
}
.main-services .about-caption:before{
  background-image: url(../img/services-icon.svg);
}
.main-services .img-box{
  max-width: 1030px;
  position: relative;
}
.main-services .img-box .mobile{
  display: none;
}
.main-services .img-box .btn{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9%;
}
.spec-list{
  justify-content: center;
}
.spec-list li{
  width: 220px;
  text-align: center;
  margin: 0 30px 60px;
}
.spec-list .img-box{
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  padding-bottom: 100%;
  margin-bottom: 20px;
}
.spec-list .img-box img{
  position: absolute;  
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
.spec-list .name{
  font-weight: 700;
  white-space: nowrap;
}
.spec-list .position{
  font-weight: 400;
  font-size: 14px;
}
.price-tabs{
  width: 40%;
}
.price-tabs .tab{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  border-radius: 42px;
  border: 1.5px dashed #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: .3s;
  cursor: pointer;
  padding: 0 15px 0 30px;
  margin-bottom: 10px;
}
.price-tabs .tab:hover, .price-tabs .tab.active{
  border-color: var(--main);
}
.price-tabs .tab:after{
  content: '';
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex-shrink: 0;
  background: url(../img/next.svg) no-repeat center #DEDEDE;
  transition: inherit;
}
.price-tabs .tab.active:after{
  background-color: var(--main);
}
.price-tabs-content{
  width: calc(60% - 25px);
}
.price-tab{
  border-radius: 20px;
  border: 1.5px dashed #765B59;
  padding: 20px;
}
.price-list li{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-list li:not(:last-child){
  border-bottom: 1px solid #C3C3C3;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.price-list li .key{
  margin-right: 15px;
}
.price-list li .val{
  min-width: 24px;
  flex-shrink: 0;
  white-space: nowrap;  
}
.map{
  height: 830px;
}
/*--------------------------------*/
.footer{
  background: var(--main);
  color: #fff;
  padding: 100px 0;
}
.footer .form-box{
  width: 64%;
}
.footer .logo{
  display: flex;
  align-items: center;
  width: 195px;
}
.form-group{
  position: relative;
}
.label{
  position: absolute;
  top: 1px;
  left: 1px;
  width: 100%;
  height: 100%;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  transition: .5s;
  padding: 14px 30px;
}
.input:focus + .label, .label.filled{ 
  font-size: 10px;
  width: auto;  
  height: 10px;
  top: -5px;
  left: 20px;
  background: var(--main);
  color: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  padding: 0 10px; 
}
.input{
  font-family: "Montserrat", sans-serif;
  width: 100%;  
  box-sizing: border-box; 
  font-size: 18px; 
  transition: .7s;
  background: transparent; 
  color: #fff;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 14px 30px;
}
.input:focus{
  outline: none;
}
textarea.input{
  height: 100%;
  border: 1px solid #fff;
  border-radius: 20px 0px 20px 20px;
  resize: none;
}
.contact-form .inputs{
  width: 38%;
}
.contact-form .btn{
  margin-left: auto;
}
.contact-form .textarea{
  width: 57%;
  resize: none;
}
.footer-menu a{
  display: block;
  color: #FFF;
  font-size: 12px;
  line-height: 1.67;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-contacts{
  width: 270px;
}
.footer-contacts a{
  color: #fff;
  display: block;
  font-weight: 400;
}
.footer-contacts .title{
  font-weight: 600;
}
