@charset "UTF-8";

/*fonts*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sora:wght@100..800&display=swap');


/*baisic*/
html{
  -webkit-locale: "ru-RU";
  direction: ltr;
  unicode-bidi: isolate;
  min-height: 100%;
}
html, body{
  min-height: 100%;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}
body{
  font: 400 16px/1.2 'Sora', sans-serif;
  color: #323232;
  background: #fff;
  min-width: 310px; 
  min-height: 100%;
  position: relative;
  overflow-x: hidden;
  opacity: 1;
  -moz-font-feature-settings: 'kern';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
}
.no-scroll{
  height: 100%;
  overflow: hidden;
}

/*box-sizing*/
*, *:before, *:after, input[type="search"]{
  box-sizing: border-box;
}

/*buttons*/
.btn{
  display: block;
  padding: 0;
  outline: 0!important;
  outline-color: transparent!important;
  outline-width: 0!important;
  outline-style: none!important;
  box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  border: none;
  background: none;
  box-shadow: none;
  transition: .25s ease;  
  cursor: pointer;
  border-radius: 0;
  white-space: nowrap;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  width: fit-content;
}
.btn::-moz-focus-inner {border: 0;}
.btn:disabled {
  cursor: default;
  opacity: 1;
  user-select: none;	
  pointer-events: none;
}
.btn-1{
  padding: 14.5px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #58D074;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #323232;
}
.btn-1:disabled{color: rgba(50, 50, 50, .4);}
.btn-1:hover{background-color: #fff;}
.btn-1:active{
  background-color: #fff;
  color: #58D074;
}

.btn-2{
  padding: 14.5px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #323232;
}
.btn-2:disabled{color: rgba(50, 50, 50, .2);}
.btn-2:hover{background-color: #DFF9E3;}
.btn-2:active{
  background-color: #DFF9E3;
  color: #58D074;
}

.btn-3{
  padding: 14.5px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #14421F;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
}
.btn-3:disabled{color: rgba(255, 255, 255, .2);}
.btn-3:hover{
  background-color: #58D074;
  color: #323232;
}
.btn-3:active{
  background-color: #58D074;
  color: #fff;
}
@media only screen and (max-width : 767px){
  .btn{width: 100%;}
}



/*layout*/
.wrapper{
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: column;
  min-height: 100vh;
}
.container{
  width: 100%;
  max-width: 1204px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.main{
  padding: 80px 20px 20px;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
}
.main > *{width: 100%;}
.sec{
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.sec-header{margin-bottom: 60px;}
.sec-title{
  margin: 32px 0 20px;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.25;
  letter-spacing: -.144px;
}
.sec-title:first-child{margin-top: 0;}
.sec-title:last-child{margin-bottom: 0;}
.sec-title span{color: #28A745;}
.sec-txt{
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: .231px;
  color: rgba(50, 50, 50, .4);
}
.sec-label{
  font-family: 'Inter', sans-serif;
  padding: 5.5px;
  width: 102px;
  height: 23px;
  background-color: #6228FF;
  border-radius: 4px;
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
  color: #ddd;
  text-align: center;
}
.sec-header--center{text-align: center;}
.sec-header--center .sec-label{margin: 0 auto;}
@media only screen and (max-width : 1023px){
  .sec-title{
    font-size: 32px;
    letter-spacing: 0;
  }
  .sec-txt{
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
  }
}

@media only screen and (max-width : 767px){
  .container{padding: 0 16px;}
  .main{
    padding: 74px 0 60px;
    gap: 0;
  }
  .sec{border-radius: 0;}
  .sec-header{margin-bottom: 32px;}
  .sec-title{margin: 16px 0;}
  .sec-txt{color: #333;}
  .sec-label{font-weight: 500;}
  .sec-header--center{text-align: left;}
  .sec-header--center .sec-label{margin: 0;}
}


/*typographyc*/
ol,ul,li,h1,h2,h3,h4,h5,h6,p,q,figure,figcaption,blockquote,cite,fieldset,hr{    
  margin:0;
  padding: 0;    
  border: none;
}
ul li, ol li{list-style: none;}
a{
  text-decoration: none;
  outline: none;
  transition: .25s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:-moz-any-link:focus ,
a:-moz-focusring,
a::-moz-focus-inner,
a::-moz-focus-outer{
  outline: 0!important;
  outline: none;
}
a:active {outline: none;}
a[href^="tel:"],
a[href^="mailto:"]{white-space: nowrap;}
img{
  display: block;
  height: auto;
}
svg{
  display: block;
}



@media only screen and (max-width : 767px){
  .mob-hide{display: none !important;}
}
@media only screen and (min-width : 768px){
  .desc-hide{display: none !important;}
}








