@font-face {
    font-family: "Vasek"; 
    src: url("../fonts/Vasek-Italic.woff") format("woff"); 
    font-style: normal; 
    font-weight: 400; 
  } 
*{
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    box-sizing: border-box;
    text-decoration: none;
    line-height: 130%;
    scroll-behavior: smooth;
}
*,
  *:before,
  *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  :focus,
  :active {
    outline: none;
  }
  a{
    color: #fff;
  }
  body {
    font-family: "Unbounded", sans-serif;
    background: #222;
    color: #fff;
    overflow-x: hidden;
  }
  .container {
    max-width: 1240px;
    height: auto;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}
h1, h2{
    font-size: 60px;
    font-weight: 400;
    line-height: 130%;
    text-transform: uppercase;
}
h3{
  font-size: 24px;
  font-weight: 500;
}
h4{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
h5{
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.slick-list{
    overflow: hidden;
   }
   .slick-track{
     display: flex;
     justify-content: center;
     padding: 20px 0;
     gap: 0 20px;
   }
   .slick-slide-wrap{
    padding: 0 10px;
   }
   .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    padding: 0;
  }
  .slick-dots li {
    width: 10px;
    height: 10px;
    background-color: #FFB287;
    border-radius: 100%;
    margin: 0 4px;
    cursor: pointer;
  }
  .slick-dots .slick-active{
    background-color: #FFFFFF;
  }
  .slick-dots li button{
    font-size: 0;
    border: none;
    background: transparent;
    outline: 0;
  }
     .slick-arrow{
        position: absolute;
        bottom: 40px;
        font-size: 0;
        background: url('../img/icons/arr_up.svg') center no-repeat;
        background-size: contain;
        height: 40px;
        width: 40px;
        border: none;
        cursor: pointer;
        z-index: 10;
    }
    .slick-next{
        right: 40px;
        transform: rotate(90deg);
    }
    .slick-prev{
        left: 40px;
        transform: rotate(-90deg);
    }
.upper{
  text-transform: uppercase;
}
img{
  max-width: 100%;
}
  .orange{
    color: #FFB587;
  }
  .banner .orange{
    display: block;
  }
  .dec{
    font-family: "Vasek", sans-serif;
    font-size: 74px;
    font-weight: 400;
    text-transform: lowercase;
  }
  .btn {
    cursor: pointer;
    border-radius: 10px;
    /* border: 2px solid #87D6FF; */
    font-weight: 600;
    font-size: 14px;
    padding: 10px;
    transition: all .3s;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .btn::before{
      content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(92.7deg, #87D6FF 3.46%, rgba(153, 153, 153, 0) 120%);
    border-radius: 10px;
    z-index: -1;
  }
  .p-btn__wrap{
    background: linear-gradient(92.7deg, #87D6FF 3.46%, rgba(153, 153, 153, 0) 120%);
    border-radius: 10px;
    z-index: 1;
    display: inline-flex;
    padding: 2px;
    transition: all .3s;
  }
  .p-btn__wrap:hover{
    background: linear-gradient(92.7deg, #FFB587 3.46%, rgba(153, 153, 153, 0) 154.91%);
    transition: all .3s;
  }
  .p-btn{
    color: #87D6FF;
    background: #222;
  }
  .s-btn {
    background: #87D6FF;
    color: #222;
    padding: 15px;
  }
  .btn:hover{
    border-color: #FFB587;
    transition: all .3s;
  }
 .p-btn:hover{
    color: #FFB587;
    background: #222;
  }
  .s-btn:hover{
    background: #FFB587;
  }
   .btn:hover::before {
    background: linear-gradient(92.7deg, #FFB587 3.46%, rgba(153, 153, 153, 0) 154.91%);
  }
 .header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: #222;
}
  .header-wrap, .header-wrap__menu-wrap, .menu ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-wrap{
    padding: 15px 0;
  }
  .logo{
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: #FFB587;
  }
.menu ul{
  list-style: none;
  font-family: 'Montserrat';
  gap: 20px;
  font-weight: 700;
  font-size: 14px;
  padding-right: 20px;
}
.menu ul li{
  padding: 10px;
}
.menu ul li a{
  font-size: 14px;
  color: #fff;
}
  .banner{
    padding-top: 120px;
    background: url('../img/banner-bg.png') no-repeat;
    background-size: cover;
    background-position: 60% 0;
    position: relative;
  }
  .banner::after{
    content: '';
    display: block;
    width: 100%;
    height: 248px;
    background: url('../img/rr1.png') no-repeat;
    background-size: cover;
    margin-top: 80px;
  }
  .banner-wrap{
    overflow: hidden;
  }
  .banner-geo{
    display: flex;
    align-items: center;
    font-size: 14px;
  }
  .banner-geo svg{
    margin-right: 10px;
  }
  .banner-title{
    margin-bottom: 60px;
    margin-top: 15px;
  }
  .banner-descr{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 65%;
  }
  .banner-descr h3{
    max-width: 440px;
  }
  .card{
    padding: 40px 20px;
    background: #2D2D2D;
    border-radius: 10px;
    position: relative;
    margin-left: 2px;
  }
  .line-card{
  border-radius: 10px;
  background: #FFB587;
   position: relative;
  color:#222;
  padding: 20px 40px;
}
  .card::before, .line-card::before{
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(92.97deg, rgba(255, 255, 255, 0.4) 0.21%, rgba(153, 153, 153, 0) 99%);
    border-radius: 10px;
    z-index: -1;
  }
  .label-block__label_wrap{
     background: linear-gradient(92.97deg, rgba(255, 255, 255, 0.4) 0.21%, rgba(153, 153, 153, 0) 99%);
     border-radius: 10px;
     display: inline-flex;
     padding: 2px;
  }
  .label-block__label{
    padding: 10px;
    background: #2D2D2D;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
  }
  .banner-cards{
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .banner-card{
    display: flex;
    align-items: center;
  }
  .banner-card img{
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
  .banner-card p{
    font-size: 15px;
    margin-left: 15px;
  }
  .section{
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    padding: 5px 0;
  }
  .sm-text{
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
  }
  .medium{
    font-weight: 500;
  }
  .float-left{
    float: left;
  }
  .title-wrap{
    margin-bottom: 80px;
  }
  .title-wrap_center{
    text-align: center;
    padding: 0 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .title-wrap_left{
    max-width: 70%;
  }
  .dec-marg{
    margin-top: 25px;
  }
.line-card__block{
  display: grid;
  gap: 20px;
}
.whom-section{
    /* background: url('../img/1.png') no-repeat;
    background-size: contain;
    background-position: left top; */
    padding: 150px 0;
    position: relative;
}
.section-mask{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .3;
  /* background-size: contain; */
    background-size: cover;
  /* background-position: left top; */
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.whom-section .section-mask{
  background-image: url('../img/1.png');
}
.adv-section .section-mask{
  background-image: url('../img/2.png');
   background-size: contain;
  background-position: 20% 0;
}
.doc-section .section-mask{
   background-image: url('../img/3.png');
   background-size: 50%;
   background-position: left top;
   opacity: .5;
}
.feedback-section .section-mask{
  background-image: url('../img/4.png');
  background-position: top center;
  background-size: contain;
}
.flex-block{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.icon-card{
  display: flex;
  padding: 20px 40px;
  padding-right: 70px;
}
.icon-card{
  border-bottom: 2px solid rgba(255, 255, 255, .4);
}
.icon-card:last-child{
  border: none;
}
.icon-card__text{
  margin-left: 50px;
}
.icon-card__text h3{
  margin-bottom: 10px;
}
.doc-section .icon-card{
  padding-right: 0;
}
.doc-section .icon-card h3{
  margin: 0;
}
.delaem-block{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
}
.b1{
  flex-basis: 39%;
}
.b2{
  flex-basis: 59%;
}
.delaem-card{
  padding: 40px;
  height: 289px;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 10px;
}
.delaem-card::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(34, 34, 34, 0) 2.46%, rgba(255, 177, 134, 0.8) 102.46%), linear-gradient(0deg, rgba(34, 34, 34, 0.8), rgba(34, 34, 34, 0.8));
}
.delaem-card h3{
  position: relative;
  z-index: 2;
}
.adv-section{
  padding-top: 100px;
}
.proj-card__descr{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.proj-card{
  padding: 40px;
}
.proj-card .p-btn{
  background: #2D2D2D;
  /* z-index: 3; */
}
.proj-card__title{
  text-transform: uppercase;
  height: 93px;
  overflow: hidden;
}
.proj-card__descr{
  margin: 40px 0;
}
.doc-section .line-card{
  margin-bottom: 80px;
}
.doc-section .line-card, .feedback-section .line-card{
  width: 75%;
}
.worck-block{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.worck-card{
  height: 305px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.worck-card__num{
  font-size: 60px;
  line-height: 120%;
  text-align: right;
  text-transform: uppercase;
  color: #FFB587;
}
.worck-card_image{
  padding: 0;
}
.worck-card_image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.doc-bot-block__wrap{
  display: grid;
   grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.doc-card{
  background: #222222;
  display: flex;
  align-items: center;
}
.faq-block{
   display: grid;
   grid-template-columns: 1fr;
  gap: 20px;
}
.faq-card{
  padding: 20px 40px;
  padding-bottom: 25px;
  cursor: pointer;
  position: relative;
}
.faq-card::after{
 content: '';
 position: absolute;
 top: 20px;
 right: 40px;
 display: block;
 height: 40px;
 width: 40px;
 background-image: url('../img/icons/arr.svg');
 background-position: center;
 background-repeat: no-repeat;
 background-size: contain;
}
.faq-answ{
  display: none;
  margin-top: 25px;
  max-width: 80%;
}
.faq-card_active {
  background: #FFB587;
  color: #222222;
}
.faq-card_active .faq-answ{
  display: block;
}
.faq-card_active::after{
   background-image: url('../img/icons/arr_active.svg');
}
.btn-wrap{
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.feedback-section{
  padding-top: 150px;
  padding-bottom: 100px;

}
.faq-section, .worck-section, .whom-section, .feedback-section, .about-section{
  margin-bottom: 0;
}
.worck-section{
  padding-bottom: 100px;
}
.footer{
  background: #2D2D2D;
  padding: 80px 0;
}
.footer-wrap{
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 54px;
  margin-top: 80px;
}
.footer-rec span, .footer-rec a{
  display: block;
  margin-top: 8px;
}
.footer-rec a:hover{
  text-decoration: underline;
}
.footer-contact__phone{
  display: block;
  font-size: 64px;
  color: #FFB587;
}
.footer-contact__mail{
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  margin-top: 25px;
}
.footer-contact__mail::before{
  content: '';
  height: 40px;
  width: 40px;
  display: block;
  background: url('../img/icons/email.svg') center no-repeat;
  background-size: contain;
  margin-right: 12px;
}
.footer-soc{
  display: flex;
  gap: 10px;
}
.doc-section .flex-block__decr{
  display: flex;
  align-items: center;
}
.doc-bot-block{
  margin-top: 80px;
}
.numbers{
  display: flex;
}
.numbers-item__num{
  display: block;
  font-size: 60px;
  line-height: 120%;
  text-transform: uppercase;
  color: #FFB587;
  margin-bottom: 20px;
}
.numbers-item__del{
 display: block;
 width: 2px;
 background: linear-gradient(70deg, rgba(255, 255, 255, 0.4) -62.17%, rgba(255, 255, 255, 0) 99.96%);
 margin: 0 30px;
}
.faq-card h3{
    max-width: 80%;
}
.blog-title{
  margin-bottom: 80px;
  margin-top: 60px;
}
.blog-wrap{
  display: grid;
  grid-template-columns: 3fr 310px;
  gap: 100px;
  margin-bottom: 100px;
}
.blog-content{
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.card-img{
  width: 100%;
  height: 418px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 40px;
}
.card-img img{
   width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card__descr{
  margin-top: 40px;
  margin-bottom: 20px;
}
.blog-sidebar{
  padding: 50px 0;
  padding-left: 22px;
  border-left: 2px solid rgba(255, 255, 255, .2);
}
.blog-sidebar__item{
  margin-bottom: 60px;
}
.blog-sidebar__item h3{
  margin-bottom: 20px;
}
.blog-sidebar__link{
  font-size: 15px;
  margin-bottom: 10px;
  color: #fff;
  display: block;
}
.blog-sidebar__link:hover{
  color: #FFB587;
}
.blog-sidebar__item_post .blog-sidebar__link{
  color: #FFB587;
}
.blog-card__cat{
  margin-bottom: 15px;
}
.blog-card__cat, .blog-card__more{
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFB587;
}
.blog-card__more-link{
  color: #FFB587;
  border-bottom: 2px solid #FFB587;
}
.label-block{
  margin-top: 40px;
  display: flex;
  gap: 8px;
}
.banner-geo .orange{
  display: block;
  font-size: 14px;
}
.banner-geo__city{
  display: flex;
  flex-direction: column;
}
.header-geo{
  display: none;
}
.mob{
  display: flex;
  align-items: center;
}
.mob-menu-trigger{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  background: #FFB587;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: none;
}
.mob-menu-trigger span{
  display: block;
  width: 18px;
  height: 2px;
  background: #222222;
  pointer-events: none;
}
.mob-menu-trigger_active span:nth-child(3){
  display: none;
}
.mob-menu-trigger_active span:nth-child(1){
 transform: rotate(45deg);
}
.mob-menu-trigger_active span:nth-child(2){
 transform: rotate(-45deg);  margin-top: -7px;
}
.burger-menu{
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #2D2D2D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  border-radius:  0 0 40px 40px;
}
.banner-cards__mob{
  display: none;
  margin-top: -100px;
  margin-bottom: 80px;
}
.mobmenu-contact{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.mobmenu-contact__phone{
  font-size: 20px;
}
.mobmenu-contact__mail{
  font-size: 16px;
}
.mobmenu-contact__phone, .mobmenu-contact__mail{
    text-align: center;
    color: #FFB587;
}
.blog-card__cat-date{
  display: flex;
  align-items: flex-start;
}
.blog-card__cat-date::before{
  content: '';
  display: block;
  height: 16px;
  width: 16px;
  background: url('../img/icons/cal.svg') center no-repeat;
  margin-right: 8px;
  margin-top: 2px;
}
#totop{
  position: fixed;
  bottom: 70px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #C7C7C7;
  cursor: pointer;
  z-index: 10;
}
.popup{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 45, 45, .6);
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-content__wrap{
  position: relative;
  padding-top: 50px;
}
.popup-content{
  background: #2D2D2D;
  padding: 40px;
  border-radius: 10px;
  overflow-y: auto;
  max-height: 85vh;
}
.popup-content h3{
  margin-bottom: 20px;
}
.popup-close{
  position: absolute;
  top: 0;
  right: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.form-pop .popup-close{
  right: 0;
}
.popup-close span{
  height: 50px;
  width: 2px;
  background: #FFB587;
  transform: rotate(45deg);
  pointer-events: none;
}
.popup-close span:nth-child(1){
  transform: rotate(-45deg);
}
.content p{
  margin-bottom: 20px;
  font-family: 'Montserrat';
  font-size: 15px;
}
.content ul, .content ol{
  padding-left: 35px; 
  margin-bottom: 15px;
}
.content ul li, .content ol li{
   font-family: 'Montserrat';
   font-size: 15px;
}
.popup-slider .slick-track{
  gap: 0;
}
.popup-slider{
  margin-bottom: 15px;
  margin-top: 40px;
  position: relative;
}
.popup-slider .slick-dots{
  padding-top: 15px;
}
.popup-slider .slick-next{
  right: 0;
}
.popup-slider .slick-prev{
  left: 0;
}
.popup-slider .slick-arrow{
  bottom: -20px;
}
.popup-slider img{
  object-fit: cover;
}
.form-pop .popup-content{
  max-width: 350px;
}
.popup-form{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.popup-form h4{
  text-align: center; 
  margin-bottom: 20px;
}
 input[type="text"], input[type="email"], input[type="tel"], textarea{
   font-family: 'Montserrat';
  width: 100%;
  padding: 20px;
  border-radius: 10px;
 }
 .popup-form .btn{
  width: 100%;
 }
 .popup-slide img{
  object-fit: cover;
 }
 .single-card .content{
  margin-top: 40px;
  margin-bottom: 15px;
 }
 .page-wrap{
  padding: 60px 0;
 }
 .soc{
  transition: all .3s;
 }
 .soc:hover{
  transform: scale(1.1);
  transition: all .3s;
 }
 .modal-cookie{
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: rgba(39, 39, 39, 0.8);
  backdrop-filter: blur(16px);
  padding: 20px;
  z-index: 50;
}
.modal-cookie p{
  color: #fff;
  font-size: 14px;
}
.modal-cookie p a{
  color: #FFB587;
}
.cookie-btn{
  color: #FFB587;
  background: transparent;
  border: 1px solid #FFB587;
  border-radius: 10px;
  padding: 8px 12px;
  margin-left: 15px;
  cursor: pointer;
  margin-top: 10px;
  transition: all .3s;
}
.modal-cookie p button a{
  color: #fff;
}
.cookiebtn{
  color: #FFB587;
  border-color: #FFB587;
}
.cookie-btn:hover{
  transform: scale(.95);
  transition: all .3s;
}
.menu ul li a:hover{
  color: #FFB587;
  transition: all .3s;
}
.popup-form{
  font-size: 12px;
}
.checkbox input{
  display: none;
}
.wpcf7-form-control{
  margin-bottom: 8px;
}
.checkbox{
  margin: 8px 0;
}
.checkbox .wpcf7-list-item-label{
  display: block;
    position: relative;
    cursor: pointer;
    padding-left: 25px;
    font-size: 12px;
}
.checkbox .wpcf7-list-item-label::before{
    content: '';
    display: block;
    height: 18px;
    width: 18px;
    min-height: 18px;
    min-width: 18px;
    border: 1px solid #FFB587;
    border-radius: 5px;
    margin-right: 10px;
    position: absolute;
    top: 0;
    left: 0;
}
.checkbox .wpcf7-list-item-label::after{
    content: '✔';
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    height: 18px;
    width: 18px;
    background: #FFB587;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.checkbox input:checked ~ .wpcf7-list-item-label::after{
    opacity: 1;
}
.checkbox .wpcf7-list-item-label a{
    color: #fff;
    text-decoration: underline;
}
.wpcf7-list-item{
    margin: 0;
}
.header-logo{
  max-width: 160px;
  max-height: 60px;
  display: inline-flex;
  align-items: center;
}
.header-logo img{
  width: 100%;
  object-fit: contain;
}
.delaem-dec {
    position: absolute;
    bottom: -60px;
    right: 23%;
    z-index: 2;
}
.gallery__img{
  height: 100%;
}