@charset "UTF-8";
@import "../fonts/fonts.css";

body{
  box-sizing: border-box;
  font-family: 'HelveticaNeueCyr', sans-serif;
  color: var(--text);
  margin: 0;
  padding: 0;
  font-size: 22px;
  line-height: 1;
  background: var(--white);
  overflow-x: hidden;
  --text: #566657;
  --green: #345236;
  --lightgreen: #49A64D;
  --white: #F9FBF9;
}
div, h1, h2, h3, h4, p, ul, ol, li, a, input, textarea, label, button, span{
  box-sizing: border-box;
}
.container{
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  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: 992px){.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: 1730px;}}


a, a:hover{
  text-decoration: none;
  transition: 0.5s;
  cursor: pointer;
  color: var(--text);
}

a:hover{
  color: var(--green);
}

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: #EEF3EF;}
::-webkit-scrollbar-thumb {
    background-color: var(--green);
    border-radius: 3px;
}
html, body, div, * {
    scrollbar-width: thin;
    scrollbar-color: var(--green), #EEF3EF;
}

.mb120{margin-bottom: 120px;}
.mb80{margin-bottom: 80px;}
.mb60{margin-bottom: 60px;}
.mb40{margin-bottom: 40px;}
.mb25{margin-bottom: 25px;}
.mb20{margin-bottom: 20px;}
.mb15{margin-bottom: 15px;}

.padding-section{
  padding: 80px 0;
}

.ttl.xlg{
  font-weight: 400;
  font-size: 220px;
  line-height: .8;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.ttl.lg{
  font-weight: 500;
  font-size: 110px;
  line-height: .8;
  letter-spacing: -0.05em;
  color: var(--green);
  text-transform: uppercase;
}
.ttl.md{
  font-weight: 500;
  font-size: 60px;
  line-height: .8;
  letter-spacing: -0.05em;
  color: var(--green);
  text-transform: uppercase;
}
.ttl.sm{
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  color: var(--green);
  text-transform: uppercase;
}
.subttl{
  max-width: max-content;
  background: #fff;
  font-weight: 400;
  font-size: 12px;
  color: var(--green);
  line-height: 1;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 10px;
}
.ttl.marker{
  position: relative;
  padding-left: 28px;
}
.ttl.marker:before{
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lightgreen);
  position: absolute;
  top: .3em;
  left: 0;
}

.white, .ttl.white{
  color: var(--white);
}

.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;
  width: 134px;
  height: 43px;
  background: var(--lightgreen);  
  transition: 0.3s;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.btn:hover{
  background: #4CBD52;
  color: var(--white);
}
.btn.icon-more:before{
  order: 2;
  font-size: 70%;
  transition: inherit;
  margin-left: 5px;
}
.btn.icon-more:hover:before{
  transform: rotate(45deg);
}
.wrapper{
  position: relative;
}


.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(0,0,0,.9);
  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: 550px;
  overflow-y: auto;  
}
.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 / 240px rgba(255, 255, 255, .7);
}

/*=====================================*/



.header{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: 0.5s;
  padding: 20px 0;      
}
.header.sticky{
  background: rgba(255,255,255,.9);
  padding: 10px 0;
}

.burger-menu {
  display: none;
  width: 38px;
  height: 34px;
  padding: 5px;
  position: relative;
  z-index: 1200;
  margin: 12px 0 12px auto;
}
.burger-menu span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--green);
  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) {
    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) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.burger-menu.active span:nth-child(3) {
    -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: #48654A;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: #BCCEBD;
  font-size: 8px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 20;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
#toTop.show {
  visibility: visible;
  opacity: 1;
}
#toTop:hover{
  background: #BCCEBD;
  color: var(--text);
}



/*=============================*/

@media (min-width: 1860px){.header .container{max-width: 1830px;}}

.header .logo{
  width: 188px;
  margin-right: 15px;
}
.header-menu{
  display: flex;
  align-items: center;
  margin-left: auto;
}
.header-menu a{
  font-weight: 500;
  margin: 0 20px;
  position: relative;
  color: var(--green);
}
.header-menu a:hover{
  color: var(--text);
}
.header-menu a.btn{
  display: flex;
  color: var(--white);
}
.header-menu a:not(.btn):after {
  content: '';
  width: 0;
  height: 1px;
  background: var(--green);
  transition: inherit;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.header-menu a:hover:after,
.header-menu a.active:after {
  width: 100%;
}

/*===============================*/

.main-intro{
  background: url(/img/intro-bg.jpg) no-repeat center / cover var(--green);
  border-radius: 0px 0px 50px 50px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px 0 60px;
}
.main-intro .ttl.marker:before{
  background: var(--white);
}
.main-advan .item{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  padding: 0 15px;
}
.main-advan .ico{
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 24px;
}
.main-advan .item .ttl{
  color: var(--green);
}
.products-slider .img-wrap{
  position: relative;
  border-radius: 22px;
  background: #fff;
  padding-bottom: 100%;
  margin-bottom: 12px;
}
.products-slider .img-wrap img{
  width: 69%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.products-slider .text{
  text-align: center;
}
.slider-nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slider-nav .icon-prev, .slider-nav .icon-next{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  cursor: pointer;
  transition: .4s;
}
.slider-nav .icon-prev:hover, .slider-nav .icon-next:hover{
  background: #BCCEBD;
  color: var(--text);
}
.slider-pagination{
  display: flex;
  justify-content: center;
}
.swiper-pagination-bullet{
  width: 14px;
  height: 14px;
  border-radius: 7px;
  opacity: 1;
  background: #BCCEBD;
  transition: .5s;
  margin: 0 8px;
}
.swiper-pagination-bullet:hover{
  background: var(--green);
}
.swiper-pagination-bullet-active{
  width: 40px;
  background: var(--green);
}
.swiper-container{
  overflow: hidden;
}
.products-slider-nav{
  width: 180px;
}
.main-about .left{
  display: flex;
  align-items: flex-end;
  width: 44%;
  border-radius: 50px;
  overflow: hidden;
  background: #FFB800;
}
.main-about .left img{
  width: 100%;
}
.main-about .right{
  width: calc(56% - 8px);
  background: var(--green);
  border-radius: 50px;
  padding: 80px 78px 60px;
}
.main-about .right .ttl-box{
  margin-bottom: 80px;
}
.main-about .right .subttl{
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  margin-right: 15px;
}
.main-about .right img{
  border-radius: 22px;
  width: 44%;
}
.main-about .right .ttl.sm{
  margin-left: -28px;
}
.main-goal .wrapper{
  padding: 0 0 28px 28px;
}
.main-goal .wrapper:after{
  content: '';
  width: 100%;
  height: 38px;
  border-radius: 0 0 50px 50px;
  border-bottom: 1px solid var(--green);
  position: absolute;
  left: 0;
  bottom: 0;
}
.main-goal .wrapper img{
  width: 360px;
  border-radius: 22px;
}
.main-goal .wrapper .text{
  width: 600px;
  max-width: calc(100% - 400px);
}
.main-process .item{
  width: calc(25% - 6px);
  background: #fff;
  border-radius: 8px;
  padding: 40px 20px;
}
.main-process .item .ico{
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.main-process .item .text-box{
  width: calc(100% - 120px);
}
.main-process .item .ttl{
  color: var(--green);
}
.main-process .item .text{
  font-size: 16px;
  line-height: 1.3;
}
.main-slider .swiper-slide{
  background: #EEF3EF;
}
.main-slider .img-wrap{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50px;
  padding-bottom: 44.4%;
}
.main-slider-nav{
  width: calc(100% - 100px);
  height: 0;
  position: absolute;
  top: 50%;
  left: 50px;
  z-index: 3;
}
.main-lines{
  margin-bottom: 8px;
}
.main-lines .wrapper{
  border-radius: 50px;
  background: #EEF3EF;
  padding: 80px 50px 80px 110px;
}
.main-lines .ttl.marker{
  margin-left: -28px;
}
.main-lines .ttl-box .text{
  width: 600px;
  max-width: calc(100% - 240px);
}
.partners-slider .swiper-wrapper{
  transition-timing-function: linear;
}
.partners-slider .img-wrap{
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: #fff;
  border-radius: 22px;
  padding-bottom: 53%;
}
@media (min-width: 1200px){
  .partners-slider .img-wrap{
    filter: grayscale(100%);
    transition: .5s;
  }
  .partners-slider .img-wrap:hover{
    filter: grayscale(0);
  }
}

.form-group{
  position: relative;
}
.label{
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  transition: 0.4s;
  font-size: 30px;
  line-height: 1;
  color: #BCCEBD;
  text-transform: uppercase;
  transition: .5s;
  padding: 10px;
}

.input:focus + .label, .label.filled{ 
  font-size: 16px;
  width: auto;  
  height: 16px;
  top: -6px;
  left: 0;
  padding: 0 10px; 
}

.input{
  font-family: "HelveticaNeueCyr", sans-serif;
  width: 100%;  
  box-sizing: border-box; 
  font-size: 30px; 
  transition: .7s;
  background: transparent; 
  color: var(--green);
  border: none;
  border-bottom: 1px solid #BCCEBD;
  padding: 10px;
}
.input:focus{
  outline: none;
}
.contact-form-section .wrapper{
  background: #fff;
  border-radius: 50px;
  padding: 160px 50px;
}
.contact-form-section .ttl-box{
  width: 48%;
}
.contact-form-section .ttl-box .text{
  display: flex;
  align-items: center;
  max-width: 540px;
}
.contact-form-section .ttl-box .text:before{
  content: '';
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 50%;
  background: url(/img/cont-img.png) no-repeat center / cover;
  margin-right: 40px;
}
.contact-form-section .form-box{
  width: 37.5%;
}
.contact-form-section .caption{
  font-size: 16px;
  color: #BCCEBD;
  text-align: right;
  margin-top: 10px;
}
.footer{
  background: var(--green);
  border-radius: 50px 50px 0 0;
}
.footer .wrapper{
  padding: 80px 160px 100px 60px;
}
.footer .wrapper:after{
  content: '';
  width: 100%;
  height: 38px;
  border-radius: 0 0 50px 50px;
  border-bottom: 1px solid #BCCEBD;
  position: absolute;
  left: 0;
  bottom: 0;
}
.footer .logo{
  display: block;
  width: 240px;
}
.footer .white{
  color: #BCCEBD;
}
.footer a.white:hover{
  color: #fff;
}
.footer .logo-box a{
  display: block;
}
.footer-menu{
  margin: 0 22% 0 auto;
}
.footer-menu a{
  display: block;
  color: #BCCEBD;
  margin-bottom: 20px;
}
.footer-menu a:hover{
  color: #fff;
}
.footer .address{
  width: 280px;
  line-height: 1.3;
}
.footer .bottom{
  padding: 17px;
}
.footer .copy{
  font-size: 16px;
}