@charset "UTF-8";
@import "../fonts/fonts.css";
body{
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    color: #000;
    font-weight: 300;
    font-size: 21px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0;
    padding: 0;
    --yel: #FBBC05;
    --blue: #4285F4;
    --border: 0.5px solid rgba(0, 0, 0, 0.3);
    background: #fff;
}
a, a:hover{
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}

h1, h2, h3, h4, p, ul, ol{
    margin: 0;
}
ul, ol{
    list-style: none;
    margin: 0;
    padding: 0;
}
img{
    max-width: 100%;
}
input, button, textarea{
  font-family: "Montserrat", sans-serif;
  outline: none;
}

@media (min-width: 1300px){
  .container {max-width: 1210px;}
}
@media (min-width: 1500px){
  .container {max-width: 1410px;}
}
@media (min-width: 1700px){
  .container {max-width: 1630px;}
}
.img-box{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.flex{
  display: flex;
  flex-wrap: wrap;
}
.flex.between{
    justify-content: space-between;
}
.flex.align-center{
  align-items: center;
}
.d-none{
  display: none;
}
.ttl.lg{
  font-weight: 500;
  font-size: 60px;
  letter-spacing: -0.06em;
  line-height: 1.2;
}
.ttl.sm{
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.centered{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.blue{
  color: var(--blue);
}
.upper{
  text-transform: uppercase;
}

.mb140{margin-bottom: 140px;}
.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;}


.padding-section{padding: 140px 0;}


.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;
  justify-content: center;
  align-items: center;
}
.modal-wrapper{
  background: #fff;
  padding: 40px;
  position: relative;
  width: calc(100% - 30px);
  max-width: 550px;  
}
.modal-wrapper .close{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  font-size: 40px;
  line-height: .5;
  color: #333;
  position: absolute;
  right: 0;
  top: -60px;
  cursor: pointer;
  transition: .3s;
}
.modal-wrapper .close:hover{
  box-shadow: 0 0 5px #fff;
}
.uForm__preload {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: url(/img/loading.svg) no-repeat center / 120px rgba(0, 0, 0, 0.9);
}

.btn{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: #000;
    width: 150px;    
    height: 40px;    
    cursor: pointer;
    transition: 0.4s;
    background: var(--yel);
    outline: none;
    border: none; 
}
.btn:hover{
  background: #000;
  color: var(--yel);
}
button.btn{
  max-width: 100%;
}
.btn.scnd{
  background: #000;
  color: #fff;
  border: 1px solid #000;
}
.btn.scnd:hover {
  background: var(--yel);
  color: #000;
}

ol{
    counter-reset: list;
}

::-webkit-scrollbar {width: 6px;}
::-webkit-scrollbar-track {background: #000;}
::-webkit-scrollbar-thumb {background-color:  var(--yel); border-radius: 3px;}
html, body, div, * {scrollbar-width: thin; scrollbar-color:  #000 var(--yel);}

.burger-menu {
    display: none;
    width: 29px;
    height: 29px;
    position: relative;
    z-index: 1200;
    padding: 5px;
}

.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 1px;
    background-color: #000;
    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;
}

.body-wrapper{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  transition: 400ms linear;
  left: 0;
  overflow-x: hidden;
}
.main{flex: 1;}

.header .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .menu a{
  display: block;  
  font-weight: 500;
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  position: relative;
  padding: 28px 0;
  margin: 0 24px;
}
@media(min-width: 1200.1px){
.header .menu a:after {
  content: '';
  width: 0;
  height: 1px;
  background: var(--yel);
  position: absolute;
  bottom: -0.5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: inherit;  
}
.header .menu a:hover:after{
  width: 100%;
}
}
#toTop {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #666666;
  background: #191919;
  width: 60px;
  height: 60px;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 20;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
#toTop.show {
  visibility: visible;
  opacity: 1;
}
.header{
  position: relative; 
  z-index: 1000;
  align-items: center;
  background: #fff;
  border-bottom: .5px solid #B3B3B3;
  width: 100%;
}
.header.sticky{
  position: fixed;
  height: auto;
  animation: flash 0.5s linear 1;
  z-index: 1000;
}
@keyframes flash {
  from{opacity: 0; transform: translateY(-100%);}
  to {opacity: 1; transform: translateY(0);}
}
.header .logo{
  display: flex;
  align-items: center;
  width: 99px;
}
.social .caption{
  font-size: 14px;
}
.social a {
  font-size: 22px;
  color: #000;
  margin-right: 20px;
}
.social a:hover {
  color: var(--blue);
}
.header .social{
  margin: 0 25px;
}
.header .menu{
  margin: 0 5% 0 auto;
}
.mod-languages{
    width: 33px;
    padding: 8px 0;
    margin-right: 20px;
    position: relative;
}
.mod-languages .lang-list{
    width: 100%;
}
.mod-languages a{
    color: #000;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;    
}
.mod-languages .active-language{
    display: block;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: #000;    
}
.mod-languages:hover .active-language, .mod-languages .lang-list a:hover{
    color: var(--blue);
}
.header .mod-languages .lang-list{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 230px;
    top: 100%;
    left: 0;
    padding: 10px 5px;
    background: #fff;
    border: 1px solid #000;
    transition: 0.3s;
    z-index: 10; 
}
.mod-languages .lang-list li{
  text-align: center;
}
.header .mod-languages .lang-list{
  width: 100%;
}
.mod-languages .active-language:before, .mod-languages .active-language:after
 {    
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  display: block;
  width: 6px;
  height: 1px;
  transition: all 0.3s ease-out;
  background-color: #000;
  transform: translate(-2px, -50%) rotate(45deg);
}
.mod-languages .active-language:after {
  transform: translate(2px, -50%) rotate(-45deg);
}
.mod-languages:hover .active-language:before
 {
  transform: translate(-2px, -50%) rotate(-45deg);
  background: var(--blue);
}
.mod-languages:hover .active-language:after
{
  transform: translate(2.5px, -50%) rotate(45deg);
  background: var(--blue);
}
.mod-languages:hover .lang-list{
    visibility: visible;
    opacity: 1;
}
.header .btn-box{
  align-self: stretch;
  border-left: var(--border);
  padding-left: 55px;
}
/*=========================*/

.intro{
  background: url(/img/intro-bg.png) no-repeat right top / 22%;
  padding: 157px 0 90px;
}
@media(min-width:1500.1px){
  .intro .ttl.lg{font-size: 80px}
}
.intro-slider{
  width: 83%;
}
.intro-slider .swiper-wrapper{
  transition: linear;
}
.img-wrap{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.intro-slider .img-wrap{
   padding-bottom: 56%; 
}
.intro .ttl.sm{
  width: 67%;
}
.services-nav{
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 13px 0;
}
.services-nav .flex{
  justify-content: flex-end;  
}
.services-nav a{
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
  position: relative;
  padding-right: 34px;
  margin-right: 34px;
}
.services-nav a:before{
  order: 2;
  transition: inherit;
  margin-left: 12px;
}
.services-nav a:not(:last-child):after{
  content: '';
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  top: 5px;
  right: 0;
}
.services-nav a:hover:before{
  transform: rotate(45deg);
}
.practice{
  padding: 50px 0;
}
.practice .wrapper{
  background: url(/img/practise-bg.png) no-repeat right center / cover var(--yel);
  padding: 115px 15px 80px;
}
.practice .ttl{
  max-width: 1040px;
}
.practice .text{
  font-size: 16px;
}
.standart{
  background: url(/img/standart-bg.png) no-repeat center / cover;
  border-bottom: var(--border);
  padding: 100px 0 80px;
}
.standart .ttl{
  max-width: 800px;
}
.standart .text{
  max-width: 930px;
  margin-left: auto;
}
.standart-slider{
  width: 58%;
}
.standart-slider .img-wrap{
  padding-bottom: 75%;
}
.factors{
  padding: 140px 0;
}
.factors-list{
  column-count: 2;
  column-gap: 280px;
}
.factors-list li{
  display: inline-block;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #000;
  border-bottom: var(--border);
  position: relative;
  padding: 35px 220px 20px 10px;
  margin-bottom: 35px;
}
.factors-list li:before{
  counter-increment: list;
  content: '0'counter(list)'.';
  margin-right: 15px;
}
.factors-list li .img-wrap{
  width: 94px;
  height: 65px;
  position: absolute;
  top: 0;
  right: 0;
  
}
@media(min-width: 1200.1px){
  .factors-list li .img-wrap{
    filter: grayscale(100%);
    opacity: .5;
    transition: .5s;
  }
  .factors-list li:hover .img-wrap{
    width: 150px; 
    height: 105px;
    filter: grayscale(0);
    opacity: 1;
    z-index: 2;
  }
}
@media(min-width: 1500.1px){
  .factors-list li:hover .img-wrap {
    width: 204px;
    height: 143px;}
}

.about{
  border-bottom: var(--border);
}
.about .text-box{
  width: 51%;
  padding-top: 90px;
}
.about .text{
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.06em;
  color: #000;
  margin: 100px 0 60px;
  padding-top: 60px;
  border-top: var(--border);
}
.about .img-box{
  display: flex;
  align-items: center;
  width: 41%;
}
.activities-slider{
  width: 83%;
}
.activities-slider .swiper-slide{
  display: flex;
  flex-direction: column;
  height: auto;
}
.activities-slider img{
  display: block;
  width: 100%;
}
.activities-slider .text{
  flex: 1;
  background: #F8F8F8;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  padding: 30px 100px 30px 40px;
}
.activities-slider .icon-arr{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #E9E9E9;
  color: #fff;
  font-size: 12px;
}
.activities-slider .icon-arr:hover{
  background: var(--yel);
}
.activities-slider .icon-arr:before{
  transition: inherit;
}
.activities-slider .icon-arr:hover:before{
  transform: rotate(45deg);
}
.activities .caption{
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.06em;
  color: #666666;
}
.advantages{
  border-bottom: var(--border);
  padding-bottom: 60px;
}
.advan-list li{
  display: flex;
  width: calc(33.33% - 7px);  
  margin-bottom: 80px;
}
.advan-list .ico{
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--yel);
  margin-right: 30px;
}
.advan-list li:nth-child(even) .ico{
  background-color: var(--blue);
}
.citates .item{
  width: calc(50% - 30px);
  display: flex;
  justify-content: space-between;  
}
.citates .item .text-box{
  display: flex;
  flex-direction: column;
  width: 52%;
  background: url(/img/quotes.svg) no-repeat left top / 30%;
}
.citates .item .text{
  flex: 1;
  padding-top: 18%;
  margin-bottom: 15px;
}
.citates .item .author{
  max-width: 348px;
  border-top: var(--border);
  position: relative;
  padding-top: 15px;
}
.citates .item .author:before{
  content: '';
  width: 50%;
  height: 1px;
  background: var(--yel);
  position: absolute;
  left: 0;
  top: -.75px;
}
.citates .item .name{
  font-weight: 500;
  margin-bottom: 5px;
}
.citates .item .position{
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
}
.citates .item .img-box{
  display: flex;
  align-items: flex-end;
  width: 41.8%;
}
.citates .item:nth-child(even) .img-box{
  order: -1;
}
.client{
  background: #FAFAFA;
}
.steps-list li{
  width: calc(25% - 7.5px);
  background: #fff;
  position: relative;
  padding: 30px 100px 40px 40px;
}
.steps-list li:before{
  counter-increment: list;
  content: '0'counter(list)'.';
  font-weight: 500;
  font-size: 16px;
  color: var(--blue);
  position: absolute;
  top: 30px;
  right: 30px;
}
.steps-list .ico{
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #ECF3FE;
  margin-bottom: 35px;
}
.partners .item{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8.3%;
}
.form-section{
  background: url(/img/form-bg.png) no-repeat right bottom / 57%;
  padding: 30px 0 100px;
}
.form-section .form-box{
  width: 33%;
}
.input{
  width: 100%;
  height: 28px;
  border: none;
  outline: none;
  border-bottom: var(--border);
  padding: 5px 0;
  font-size: 16px;
  color: #666666;
  background: transparent;
}
.input:focus{
  border-color: var(--yel);
}
.form-section .img-box{
  width: 58%;
}
.form-section .img-box img{
  display: block;
  width: 100%;
}
.footer{
  background: #000;
}
.footer .top .item{
  padding-top: 140px;
  padding-bottom: 120px;
}
.footer .logo-box{
  width: 25%;
}
.footer .logo{
  display: block;
  width: 124px;
}
.footer .logo-box .text{
  font-size: 14px;
  line-height: 1.3;
  color: #666666;
}
.footer .menu {
  width: 140px;
}
.footer .menu a{
  display: block;
  font-size: 14px;
  color: #FFFFFF;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 17px;
}
.footer .menu a:after{
  content: '';
  width: 0;
  height: .5px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: inherit;
}
.footer .menu a:hover:after{
  width: 100%;
}
.footer .contacts{
  width: 43%;
  border-left: 0.5px solid rgba(255, 255, 255, .3);
  border-right: 0.5px solid rgba(255, 255, 255, .3);
  padding-left: 9%;
}
.footer .contacts a{
  display: flex;
  align-items: center;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.06em;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.footer .contacts a:hover{
  color: var(--blue);
}
.footer .contacts a:before{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  background: #191919;
  color: var(--yel);
  font-size: 15px;
  margin-right: 18px;
}
.footer .bottom{
  border-top: 0.5px solid rgba(255, 255, 255, .3);
  padding: 20px 0;
}
.footer .copy{
  font-size: 12px;
  color: #666666;
}
.footer .social a{
  color: rgba(255, 255, 255, 0.2);
}
.footer .social a:hover{
  color: var(--blue);
}

/*--------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width: 1700px){
  .advan-list li{font-size: 18px}
  .factors-list{column-gap: 40px;}
  .steps-list li{padding-right: 30px}
}
@media screen and (max-width: 1500px){
  .header .menu{margin-right: 20px}
  .header .menu a{margin: 0 12px}
  .header .btn-box{padding-left: 20px}
  .about .text-box{padding-top: 0}
  .about .text{margin-top: 50px}
  .activities-slider .text{padding: 20px 70px 20px 20px;}
  .advan-list .ico{width: 70px; height: 70px; margin-right: 20px}
  .factors-list li{padding-right: 160px}
  .citates .item{width: calc(50% - 10px); font-size: 18px}
  .steps-list li{padding: 15px}
  .steps-list li:before{top: 15px; right: 15px}
  .footer .contacts{padding-left: 5%}
  .footer .contacts a{font-size: 16px}
}  
@media screen and (max-width: 1400px){

}
@media screen and (max-width: 1300px){ 
  .advan-list li{width: 45%; margin-bottom: 30px}
}
@media screen and (max-width: 1200px){
  .mb140{margin-bottom: 80px;}
  .mb80{margin-bottom: 55px;}
  .mb50{margin-bottom: 35px;}
  .mb40{margin-bottom: 30px;}
  .mb35{margin-bottom: 25px;}
  .mb30{margin-bottom: 20px;}
  .mb25{margin-bottom: 17px;}
  .mb20{margin-bottom: 15px;}
  .ttl.lg{font-size: 48px;}
  .ttl.sm{font-size: 24px;}
  .header .logo{margin: 10px auto 10px 0;}
  .header .menu{
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    border-bottom: var(--border);
    padding: 30px 15px 10px;
    margin: 0;
  }
  .header .menu a{width: 150px; text-align: center; margin: 0 auto 20px; padding: 0}
  .burger-menu{display: block; margin-left: 15px;}
  .header .btn-box{border: none;}
  .intro{padding: 80px 0 60px}
  .flex.hidden-scroll{flex-wrap: nowrap; justify-content: flex-start}
  .hidden-scroll {overflow-x: scroll; -ms-overflow-style: none;}
  .hidden-scroll::-webkit-scrollbar{height: 1px;}
  .hidden-scroll::-webkit-scrollbar-thumb {background-color: transparent;}
  .hidden-scroll::-webkit-scrollbar-track {background: transparent;}
  .practice .wrapper{padding: 60px 15px;}
  .standart {padding: 30px 0 60px}
  .factors{padding: 60px 0 30px}
  .factors-list{column-gap: 20px}
  .factors-list li{display: flex; align-items: center; width: 100%; min-height: 70px; padding: 0 120px 10px 0; margin-bottom: 15px}
  .about{padding-top: 30px}
  .citates .item{width: 100%; margin-bottom: 60px;}
  .padding-section{padding: 80px 0}
  .partners .item{width: 135px; min-width: 135px; margin-right: 30px}
  .footer .top .item{padding: 80px 0}
  .footer .logo-box{width: 40%}
  .footer .menu{display: none;}
  .footer .contacts{width: auto; border: none;}
}
@media screen and (max-width: 1024px){
  .intro .ttl.sm{width: 100%; margin-top: 20px}
  .about .text-box{width: 100%}
  .about .text{margin: 30px 0; padding-top: 30px;}
  .about .img-box{width: 100%; max-width: 500px; margin: 0 auto 50px;}
}
@media screen and (max-width: 992px){
  .factors .btn{display: none;}
  .steps-list li{width: calc(50% - 5px); margin-bottom: 10px}
  .steps-list .ico{margin-bottom: 15px}
}
@media screen and (max-width: 768px){
  .mb140{margin-bottom: 50px;}
  .mb80{margin-bottom: 40px;}
  .mb50{margin-bottom: 25px;}
  .mb40{margin-bottom: 20px;}
  .mb35{margin-bottom: 17px;}
  .mb30{margin-bottom: 15px;}
  .mb20{margin-bottom: 12px;}
  .mb20{margin-bottom: 10px;}
  .mb15{margin-bottom: 8px;}
  .mb15{margin-bottom: 7px;}
  body{font-size: 16px} 
  .ttl.lg{font-size: 36px;}
  .ttl.sm{font-size: 20px;}
  #toTop {width: 35px; height: 35px; font-size: 8px}
  .factors-list{column-count: 1}
  .advantages {padding-bottom: 30px}
  .advan-list li{width: 100%; align-items: center; font-size: 16px;margin-bottom: 20px}
  .advan-list br{display: none;}
  .citates .item .text-box{background-size: 65px;}
  .citates .item .text{padding-top: 30px}
  .padding-section{padding: 50px 0}
  .form-section{background: unset; padding-bottom: 50px}
  .footer .top{padding: 50px 0 30px}
  .footer .top .item{padding: 0}
  .footer .logo-box{width: 100%; margin-bottom: 30px}
/*  .footer .logo */

}
@media screen and (max-width: 576px){ 
  .activities-slider .text{padding: 20px 15px 40px 15px;}
  .activities-slider .icon-arr{width: 35px;height: 35px}
  .citates .item{flex-direction: column;}
  .citates .item .text-box{width: 100%; margin-bottom: 15px}  
  .citates .item .img-box{width: 100%}
  .citates .item:nth-child(even) .img-box{order: 2;}
  .form-section .form-box{width: 100%; margin-bottom: 30px}
  .form-section .img-box{width: 100%;}
  .footer .social, .footer .copy{width: 100%; margin-bottom: 10px}
}
@media (max-width: 480px){
}

@media screen and (max-width: 425px){
  .mod-languages {margin-right: 10px}
  .header .btn{width: 120px}
  .activities-slider{width: 95%}
  .activities-slider .text{font-size: 14px}
  .steps-list li{width: 100%; margin-bottom: 10px}
}
@media screen and (max-width: 365px){
  .header .btn{display: none;}
}