@import url(../css/normalize.css);
@import url(../fonts/fonts.css);
html {
  scroll-behavior: smooth;
}
body {
  width: 100%;
  color: #1F2A36;
  background-color: #fff;
  font-family: 'Gilroy', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 1.3px;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
*,
*:after,
*:before {
  -moz-transition: all 0.3s ease;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  transition: all .3s ease;
}
body.fixed {
  overflow-y: hidden;
}

section {
  padding: 60px 0px;
}
/* #section__anchor {
    padding: 0;
} */
.container {
	max-width: 1170px;
	margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.fr {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -15px;
}
.fr-fs {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  
  justify-content: flex-start;
  margin: 0 -15px;
}
.fi-6{
  box-sizing: border-box;

  width: calc(100% / 12 * 2 - 30px);
  margin: 15px;
}
.fi-4{
  box-sizing: border-box;

  width: calc(100% / 12 * 3 - 30px);
  margin: 15px;
}
.fi-3{
  box-sizing: border-box;

  width: calc(100% / 12 * 4 - 30px);
  margin: 15px;
}
.fi-2 {
  box-sizing: border-box;

  width: calc(100% / 12 * 6 - 30px);
  margin: 15px;
}


@media screen and (max-width: 768px) {
  .fi-3,
  .fi-4 {
    width: calc(100% / 12 * 6 - 30px);
  }
  .fi-6 {
    width: calc(100% / 12 * 4 - 30px);
  }
}
@media screen and (max-width: 520px) {
  .fi-2,
  .fi-3,
  .fi-4 {
    width: calc(100% / 12 * 12 - 30px);
  }
  .fi-6 {
    width: calc(100% / 12 * 6 - 30px);
  }
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
h1::-moz-selection, h2::-moz-selection, h3::-moz-selection, h4::-moz-selection, h5::-moz-selection, h6::-moz-selection, p::-moz-selection, a::-moz-selection, span::-moz-selection, div::-moz-selection, img::-moz-selection, mark::-moz-selection, ul::-moz-selection, li::-moz-selection{
  color            : #fff;
  background-color : #39B563
}

h1::selection, h2::selection, h3::selection, h4::selection, h5::selection, h6::selection, p::selection, a::selection, span::selection, div::selection, img::selection, mark::selection, ul::selection, li::selection{
  color            : #fff;
  background-color : #39B563
}

::-moz-selection{
  color            : #fff;
  background-color : #39B563
}

::selection{
  color            : #fff;
  background-color : #39B563
}

::-moz-selection{
  color            : #fff;
  background-color : #39B563
}
a, a:hover, a:active, a:focus,
button, input, button:hover, button:active, button:focus,
input:focus, input:active, .btn, .btn:after, select:focus, select:active {
  text-decoration: none;
  outline: none;
  -moz-transition: all 0.4s ease;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.4s;
  -webkit-transition-timing-function: ease;
  cursor: pointer;
}
button {
  border: transparent;
  background: none;
}
input,
textarea,
select {
    /*color: #444444;*/
    font-family: 'Gilroy';
    font-size: 15px;
    letter-spacing: 1px;
    padding: 15px 30px;
    background: none;
    border: 2px solid #E5E5E5;
    border-radius: 6px;
  font-family: 'Gilroy-ExtraBold';
}
select {
    -moz-appearance: none; 
	-webkit-appearance: none; 
	appearance: none;
}
option {
  color: #000;
}
textarea {
  resize:none;
}
input[type="submit"] {
  border: transparent;
}
.shd {
  -webkit-box-shadow: 0px 12px 28px -13px rgba(0,0,0,0.64);
  -moz-box-shadow: 0px 12px 28px -13px rgba(0,0,0,0.64);
  box-shadow: 0px 12px 28px -13px rgba(0,0,0,0.64);
}
  .shd:hover {
    -webkit-box-shadow: 0px 16px 32px -9px rgba(0,0,0,0.69);
    -moz-box-shadow: 0px 16px 32px -9px rgba(0,0,0,0.69);
    box-shadow: 0px 16px 32px -9px rgba(0,0,0,0.69);
  }

input[type="text"]::-webkit-input-placeholder ,
input[type="email"]::-webkit-input-placeholder ,
input[type="tel"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{ 
  color: #000;
}
input[type="text"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #000; 
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder{
  color: #000;
} 


input:focus,
textarea:focus,
select:focus{
    background: #fff74154;
    color: #000;
    -webkit-box-shadow: 0px 12px 22px 3px rgba(0,0,0,0.23);
    -moz-box-shadow: 0px 12px 22px 3px rgba(0,0,0,0.23);
    box-shadow: 0px 12px 22px 3px rgba(0,0,0,0.23);
    border-color: #FFF741;
    outline: none;
}
select:focus,
select:active{
    min-height: 54px !important;
    padding: 15px 30px !important;
}
input:active,
textarea:active{
  -webkit-box-shadow: 0px 12px 22px 3px rgba(0,0,0,0.23);
  -moz-box-shadow: 0px 12px 22px 3px rgba(0,0,0,0.23);
  box-shadow: 0px 12px 22px 3px rgba(0,0,0,0.23);
  border-color: #39B563;
	outline: none;
}
ol, ul {
	list-style-type: none;
	padding-left: 0;
}
a {
  color: #000;
  font-size: 14px;
}
a:hover {
  color: #39B563;
}

button:active{
  -webkit-box-shadow: inset 0px 0px 5px 1px rgba(2, 191, 219, 0.34);
  -moz-box-shadow: inset 0px 0px 5px 1px rgba(2, 191, 219, 0.34);
  box-shadow: inset 0px 0px 5px 1px rgba(2, 191, 219, 0.34);
}

.hidden {
	display: none !important;
}
.btn {
	font-size: 12px;
	font-family: 'Gilroy-ExtraBold';
  text-transform: uppercase;
  text-align: center;
	padding: 15px 30px;
  color: #fff;
  background-color: #39B54A;
  border-radius: 6px;
	position: relative;
  -webkit-box-shadow: 0px 7px 15px 2px rgba(0,0,0,0.16);
  -moz-box-shadow: 0px 7px 15px 2px rgba(0,0,0,0.16);
  box-shadow: 0px 7px 15px 2px rgba(0,0,0,0.16);
}
  .btn:hover {
    color: #fff;
    background-color: #68CC76;
    -webkit-box-shadow: 0px 12px 22px 3px rgba(0,0,0,0.23);
    -moz-box-shadow: 0px 12px 22px 3px rgba(0,0,0,0.23);
    box-shadow: 0px 12px 22px 3px rgba(0,0,0,0.23);
  }
/* .fancybox-content {
    transform: translateY(-20px) perspective(600px) rotateX(10deg) !important;
    webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg) !important;
    webkit-transition: all 1.2s ease-out !important;
    transition: all 1.2s ease-out !important;
     -webkit-transition-delay: 0.5s !important;
     -o-transition-delay: 0.5s !important;
     -moz-transition-delay: 0.5s !important;
     transition-delay: 0.5s !important;
}
  .fancybox-is-open .fancybox-content {
    transform: translateY(0) perspective(600px) rotateX(0) !important;
    webkit-transform: translateY(0) perspective(600px) rotateX(0) !important;
   } */
.popup__container {
  padding: 40px;
  background-color: transparent;
}

  .popup__container .fancybox-close-small {
    top: 40px;
    right: 40px;
    color: #225634;
  }
  .popup__wrp {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .popup_call__wrp {
    max-width: 420px;
  }
    .popup__wrp:before {
      z-index: 1;
      content: '';
      position: absolute;
      height: 110%;
      width: 110%;
      top: -5%;
      right: -5%;
      bottom: -5%;
      left: -5%;
      z-index: 1;
      background: #438da4;
      background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
      background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
      background: linear-gradient(to right, #438da4 0%,#39b563 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
      opacity: .7;
    }
    .popup {
      width: 100%;
      height: 100%;
      position: relative;
      z-index: 2;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column;
      -ms-align-items: center;
      align-items: center;
      justify-content: flex-start;
      background-color: #fff;
      color: #000;
      padding: 20px 65px 30px;
      text-align: center;
    }
      .popup__ttl {
        font-family: 'Gilroy-ExtraBold', sans-serif;
        text-transform: uppercase;
        font-size: 22px;
        margin-bottom: 30px;
      }
      .popup__wrp .form__input {
        color: #000;
        margin-bottom: 15px;
      }
        .popup__wrp .form__input {
          color: #000;
        }
      input.form__input::-webkit-input-placeholder { color: #000; }
      input.form__input::-ms-input-placeholder { color: #000; }
      input.form__input::-ms-input-placeholder { color: #000; }
      input.form__input::placeholder { color: #000; }
      .form__select {
        color: #000;
      }


      .popup__wrp .form__input_submit {
        color: #fff;
        width: 100%;
        background-color: #39B563;
        border-color: #39B563;
      }
      .popup__policy {
        margin-top: 15px;
        max-width: 230px;
        text-align: center;
        font-size: 12px;
      }
        .popup__policy a {
          font-size: 12px; 
          color: #39B563;
        }
.section__ttl {
  font-size: 40px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 3.2px;
  margin-bottom: 25px;
  text-transform: uppercase;
  text-align: center;
}
.header {
  background-color: #E1F1E8;
  -webkit-box-shadow: 0px 8px 13px -5px rgba(0, 0, 0, 0.53);
  -moz-box-shadow: 0px 8px 13px -5px rgba(0, 0, 0, 0.53);
  box-shadow: 0px 8px 13px -5px rgba(0, 0, 0, 0.53);
  position: relative;
}
  .header__bot-wrp.active {
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: 3;
    padding: 0;
    margin: 0;
    opacity: 1;
    visibility: visible;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: center;
  }
    .header__bot-wrp.active .header__container {
      width: 100%;
      height: 100%;
      position: relative;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column;
      justify-content: center;
    }
    .header__bot-wrp.active .header__container::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: #438da4;
      background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
      background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
      background: linear-gradient(to right, #438da4 0%,#39b563 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
      opacity: .9;
    }

    .header__bot-wrp.active .main-nav {
      height: 100%;
      position: relative;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column;
      justify-content: center;
    }
    .header__bot-wrp.active .main-nav__submenu-item-list {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
  .header__hamburger {
    display: none;
    position: absolute;
    top: 35px;
    right: 23px;
    width: 32px;
    height: 2px;
    background-color: #39b54a;
    opacity: 1;
    -moz-transition: all 0.5s ease;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.5s;
    -webkit-transition-timing-function: ease;
  }
    .header__hamburger:before,
    .header__hamburger:after {
      content: '';
      position: absolute;
      width: 32px;
      height: 2px;
      background-color: #39b54a;
      left:0;
    }
      .header__hamburger:before {
        top: -14px;
      }
      .header__hamburger:after {
        bottom: -14px;
      }
        .header__hamburger.active {
          background-color: transparent;
          z-index: 4;
          top: 9px;
          right: 23px;
          width: 32px;
          height: 40px;
        }
          .header__hamburger.active:before {
            width: 39px;
            top: 24px;
            transform: rotate(315deg);
            background-color: #fff;
          }
          .header__hamburger.active:after {
            width: 39px;
            bottom: 14px;
            transform: rotate(45deg);
            background-color: #fff;
          }
  .header__top-wrp {
    border-bottom: 1px solid #39b54a47;
  }
  .header__top {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    padding: 8px 0;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 102;
  }
      .header-sticky .header__top-wrp {
          display: none;
      }
  .banner {
      /* margin-top: 154px; */
      padding-top: 60px;
      margin-top: calc(154px - 60px);
  }
  .
  .main-logo:hover {
    opacity: 0.7;
  }
  .gradient {
    background: #438da4;
    background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
    background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
    background: linear-gradient(to right, #438da4 0%,#39b563 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
  }
  .header__info {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
  }
    .header__info-item {
      position: relative;
      padding-left: 20px;
      letter-spacing: 0;
    }
      .header__info-item:before {
        content: '';
        position: absolute;
        width: 15px;
        height: 15px;
        left: 0;
        top: 1px;
        background-position: 50% 50%;
        -webkit-background-size: contain;
        background-size: contain;
        background-repeat: no-repeat;
      }
      .header__info-item_geo:before {
        background-image: url(../img/header__geo.svg);
      }
      .header__info-item_tel:before {
        background-image: url(../img/header__tel.svg);
      }
      .header__info-item_watches:before {
        background-image: url(../img/header__watches.svg);
      }
    .header__info-item:not(last-child) {
      margin-right: 25px;
    }
  .header__container {
    position: relative;
  }
  .main-nav {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    margin: 0;
  }
    .main-nav__link {
      font-weight: 600;
      padding: 20px 40px; 
      text-transform: uppercase;
      position: relative;
      -webkit-transition: all .7s;
      -moz-transition: all .7s;
      -o-transition: all .7s;
      transition: all .7s;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      justify-content: center;
      -ms-align-items: center;
      align-items: center;
    }
    .main-nav__link:hover,
    .main-nav__link-wrp.active .main-nav__link {
      color: #fff;
      background-color: #67a794;
    }
      /*.main-nav__link:after {
        position: absolute;
        content: '';
        width: 7px;
        height: 7.6px;
        right: -3px;
        top: 24px;
        background: url(../img/main-nav__plus.svg) no-repeat 50% 50% / contain;
        z-index: 2;
      }*/
      .main-nav__link:before {
        position: absolute;
        content: '';
        width: 100%;
        height: 2px;
        right: 0;
        left: 0;
        top: -1px;
        background-color: #39B54A;
        z-index: 2;
        opacity: 0;
      }
      .main-nav__link:hover:before,
      .main-nav__link-wrp.active .main-nav__link:before {
        opacity: 1;
      }
     .main-nav__link:after {
        bottom: -19px;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(136,183,213,0);
        border-bottom-color: rgba(255,255,255,.95);
        border-width: 6px;
        margin-left: -6px;
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
        transition: all .6s cubic-bezier(.23,1,.32,1);
        z-index: 100;
      }
    .main-nav__link-wrp_sub:hover .main-nav__link:after {
      visibility: visible;
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
      transition: all .9s cubic-bezier(.23,1,.32,1);
    }
    .main-nav__link-wrp_sub.active .main-nav__submenu {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column;
      -ms-align-items: center;
      align-items: center;
      text-align: center;

      visibility: visible;
      opacity: 1;
      background-color: rgba(214, 212, 212, 0.34);
      box-shadow: unset;
      padding: 0 10px;
    }
      .main-nav__link-wrp_sub.active .main-nav__link:after {
        bottom: 0;
      }
      .main-nav__link-wrp_sub.active .main-nav__submenu a {
        color: #000;
        margin: auto;
        text-align: center;
        font-size: 12px;
      }
        .main-nav__link-wrp_sub.active .main-nav__submenu-item {
          width: 100%;
          margin: 0;
          margin-bottom: 6px;
        }
  .main-nav__submenu {
    background-color: rgba(255,255,255,.95);
    width: 100%;
    padding: 25px;
    margin: 0;
    position: absolute;
    left: 35px;
    top: 78px;
    right: 35px;
    font-weight: 300;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
    transition: all .6s cubic-bezier(.23,1,.32,1);
    box-shadow: 0 0 20px rgba(0,0,0,.3);
    border-radius: 6px;
    z-index: 3;
  }
  .main-nav__link-wrp_sub:hover .main-nav__submenu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition: all .9s cubic-bezier(.23,1,.32,1);
  }
    .main-nav__submenu-item  {
        display: flex;
        align-items: center;
    }
    .main-nav__submenu-item-ttl {
      font-size: 18px;
      text-transform: uppercase;
      font-family: 'Gilroy-ExtraBold';
    }
    .main-nav__submenu-item-list {
      margin-top: 9px;
      max-width: 250px;
    }
      .main-nav__submenu-item-link:not(last-child) {
        margin-bottom: 4px;
        display: block;
      }
.main-slider__wrp {
    margin-top: 154px;
    position: relative;
    overflow: hidden;
}
    .main-slider__wrp:after {
      position: absolute;
      content: '';
      right: 40%;
      margin-right: calc(-1170px/2);
      bottom: 0;
      width: 537px;
      height: 500px;
      background: url(../img/main-slider__item-man_inic.png) no-repeat 50% 50% / contain;
      z-index: 1;
    }
.main-slider {
  /*background: url(../img/main-slider__bg.jpg) no-repeat 50% 50% / cover;*/
  position: relative;
  overflow: hidden;
}
    .main-slider__item {
        overflow: hidden;
        position: relative;
    }
        .main-slider__item:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: #438da4;
            background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
            background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
            background: linear-gradient(to right, #438da4 0%,#39b563 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
            opacity: .7;
            z-index: 1;
        }
        .main-slider__item-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            opacity: 0;
            background-position: 50% 50%;
            background-repeat: no-repeat;
            background-size: cover;
        }
        .owl-item.active .main-slider__item-bg {
            opacity: 1;
            -webkit-animation: expandBg 10s linear;
            animation: expandBg 10s linear;
            -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
            -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
        }
  .main-slider__container {
    position: relative;
    color: #fff;
    z-index: 1;
    padding: 70px 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
      .main-slider__list {
        max-width: 300px;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        margin: 0 30px 0 0;
        position: absolute;
        left: 50%;
        margin-left: calc(-1170px/2);
        top: 50%;
        margin-top: calc(-480px/2);
        z-index: 2;
      }
        .main-slider__list-item {
          font-family: 'Gilroy-ExtraBold';
          text-transform: uppercase;
          font-size: 16px;
          /* padding: 40px 0 40px 85px; */
          position: relative;
          cursor: pointer;
          opacity: .8;
          /* border-bottom: 1px solid #ccc; */
          -moz-transition: all 1s ease;
          -webkit-transition-property: all;
          -webkit-transition-duration: 1s;
          -webkit-transition-timing-function: ease;
          position: relative;
        }
        .main-slider__list-item.active {
          opacity: 1;
        }
        .main-slider__list-item.active::after {
            background: linear-gradient(270deg, #4DE4B7 0%, rgba(77, 228, 183, 0) 100%);
        }
        .main-slider__list-item span {
            color: #fff;
            position: relative;
            z-index: 2;
            width: 100%;
            height: 100%;
            display: block;
            padding: 40px 0 40px 85px;
        }
            /* .main-slider__list-item:nth-child(1) span::before {
                content: '';
                position: absolute;
                width: 54px;
                height: 1px;
                background-color: #fff;
                top: 0;
                left: 0;
            } */
            .main-slider__list-item span::after {
                content: '';
                position: absolute;
                width: 100%;
                height: 1px;
                background-color: #fff;
                bottom: 0;
                left: 0;
            }
            .main-slider__list-item:nth-child(4) span::after {
                display: none;
            }
        .main-slider__list-item:hover {
          /* opacity: .8; */
          transform: translateX(8px);
        }
          .main-slider__list-item::before {
            position: absolute;
            content: '';
            width: 52px;
            height: 52px;
            left: 0;
            top: 50%;
            margin-top: -26px;
            background-position: 50% 50%;
            -webkit-background-size: contain;
            background-size: contain;
            background-repeat: no-repeat;
            z-index: 2;
          }
          .main-slider__list-item:nth-child(1)::before {
            background-image: url(../img/main-slider__item-img_0.svg);
          }
          .main-slider__list-item:nth-child(2)::before {
              /* top: 35px; */
            background-image: url(../img/main-slider__item-img_1.svg);
          }
          .main-slider__list-item:nth-child(3)::before {
            /* top: 45px; */
            background-image: url(../img/main-slider__item-img_2.svg);
          }
          .main-slider__list-item:nth-child(4)::before {
            background-image: url(../img/main-slider__item-img_3.svg);
          }
        .main-slider__list-item.active span {
            color: #00FF87;
        }
          .main-slider__list-item.active:nth-child(1)::before {
            background-image: url(../img/main-slider__item-img_0_green.svg);
          }
          .main-slider__list-item.active:nth-child(2)::before {
            background-image: url(../img/main-slider__item-img_1_green.svg);
          }
          .main-slider__list-item.active:nth-child(3)::before {
            /* top: 35px; */
            background-image: url(../img/main-slider__item-img_2_green.svg);
          }
          .main-slider__list-item.active:nth-child(4)::before {
            background-image: url(../img/main-slider__item-img_3_green.svg);
          }
          .main-slider__list-item-link {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            display: none;
            z-index: 3;
          }
        .main-slider__list-item::after {
            position: absolute;
            content: '';
            width: 0;
            height: 100%;
            bottom: 0;
            right: 0;
            top: 0;
            border-radius: 6px;
        }
        .main-slider__list-item.active:after {
          /* width: 220%; */
        }
      .main-slider__cnt {
        width: 68%;
        height: 100%;
        min-height: 450px;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        justify-content: center;
        opacity: 0;
        -webkit-transform: translateY(-10%);
        -ms-transform: translateY(-10%);
        -o-transform: translateY(-10%);
        transform: translateY(-10%);
        -moz-transition: all 0.6s ease;
        -webkit-transition-property: all;
        -webkit-transition-duration: 0.6s;
        -webkit-transition-timing-function: ease;
        transition: .6s all ease;
      }
      .owl-item.active .main-slider__cnt {
          opacity: 1;
          -webkit-transform: translateY(0%);
            -ms-transform: translateY(0%);
            -o-transform: translateY(0%);
            transform: translateY(0%);
      }
        .main-slider__content-item {
          position: relative;
          padding-right: 380px;
        }
          .main-slider__ttl {
            font-size: 28px;
            font-family: 'Gilroy-ExtraBold';
            margin-bottom: 25px;
            text-transform: uppercase;
          }
          .main-slider__descr {
            line-height: 1.6;
            margin-bottom: 40px;
          }
          .main-slider__btn {
            color: #fff;
            border: 2px solid #fff;
            background-color: transparent;
          }
          .main-slider__btn:hover {
            color: #fff;
            background-color: #39B54A;
            border-color: #39B54A;
          }
        .main-slider__content-item.active .main-slider__ttl {
            color: #00FF87;
        }
  @-webkit-keyframes expandBg {
    0% {
      -webkit-transform:scale(1);
      transform:scale(1);
      opacity: 0;
    }
    20% {
      opacity: 1;
    }
    100% {
      -webkit-transform:scale(1.2);
      transform:scale(1.2);
    }
  }

.tabs__container {
  position: relative;
}
  .tab-content__item {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    left: 0;
    top: 150%;
    -moz-transition: all .7s ease;
    -webkit-transition-property: all;
    -webkit-transition-duration: .7s;
    -webkit-transition-timing-function: ease;
  }
  .tab-content__item.active {
    opacity: 1;
    visibility: visible;
    top: 50%;
  }


/* .main-slider__bg-item {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
} */
.main-slider__bg-item.active {
    opacity: 1;
    -webkit-animation: expandBg 10s linear;
    animation: expandBg 10s linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

  .adv__item-wrp {
    position: relative;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    border-radius: 6px;
    max-width: 330px;
    overflow: hidden;
    color: #fff !important;
  }
    .adv__item-wrp:before {
      position: absolute;
      content: '';
      width: 110%;
      height: 110%;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: #438da4;
      background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
      background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
      background: linear-gradient(to right, #438da4 0%,#39b563 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
      opacity: .7;
    }
    .adv__item {
      position: relative;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column;
      justify-content: center;
      -ms-align-items: center;
      align-items: center;
      padding: 30px;
    }
      .adv__item-img {
        width: 50px;
        height: 53px;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        -webkit-background-size: cover;
        background-size: cover;
        margin-bottom: 15px;
      }
      .adv__item-ttl {
        font-family: 'Gilroy-ExtraBold';
        text-align: center;
        color: #fff;
        text-transform: uppercase;
      }
      .adv__item-ttl span {
          color: #fff;
      }
      
      .principals {
  position: relative;
  background: url(../img/princ__bg.jpg) fixed no-repeat 50% 50% / cover;
}
  .principals::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    opacity: .8;
  }
  .princ__container {
    position: relative;
  }
  .princ__subttl {
    font-weight: 600;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 35px;
  }
  .princ__item-wrp {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    height: 192px;
    max-width: 340px;
    border-radius: 6px;
    overflow: hidden;
    position: relative; 
  }
    .princ__item-wrp:before {
      position: absolute;
      content: '';
      width: 110%;
      height: 110%;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: #000;
      opacity: .7;
    }
    .princ__item-wrp:after {
      position: absolute;
      content: '';
      width: 110%;
      height: 110%;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: #438da4;
      background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
      background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
      background: linear-gradient(to right, #438da4 0%,#39b563 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
      opacity: 0;
    }
    
    .princ__item {
      position: relative; 
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column;
      -ms-align-items: center;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      padding: 10px;
      z-index: 2;
      -webkit-transition: all .7s;
      -moz-transition: all .7s;
      -o-transition: all .7s;
      transition: all .7s;
      /* -webkit-transform: translateY(75px);
      -ms-transform: translateY(75px);
      -o-transform: translateY(75px);
      transform: translateY(75px);  */
    }
    /* .princ__item-wrp:nth-child(3) .princ__item,
    .princ__item-wrp:nth-child(5) .princ__item{
        -webkit-transform: translateY(61px);
        -ms-transform: translateY(61px);
        -o-transform: translateY(61px);
        transform: translateY(61px);
    }
    
    
    .bus-principals .princ__item-wrp:nth-child(1) .princ__item {
        -webkit-transform: translateY(55px);
        -ms-transform: translateY(55px);
        -o-transform: translateY(55px);
        transform: translateY(55px);
    }
    .bus-principals .princ__item-wrp:nth-child(4) .princ__item {
        -webkit-transform: translateY(61px);
        -ms-transform: translateY(61px);
        -o-transform: translateY(61px);
        transform: translateY(61px);
    }
    .bus-principals .princ__item-wrp:nth-child(5) .princ__item {
        -webkit-transform: translateY(77px);
        -ms-transform: translateY(77px);
        -o-transform: translateY(77px);
        transform: translateY(77px);
    }
    .bus-principals .princ__item-wrp:nth-child(6) .princ__item {
        -webkit-transform: translateY(61px);
        -ms-transform: translateY(61px);
        -o-transform: translateY(61px);
        transform: translateY(61px);
    } */
    
      .princ__item-ttl {
        font-family: 'Gilroy-ExtraBold';
        font-size: 20px;
        text-align: center;
        color: #fff;
        text-transform: uppercase;
        margin-bottom: 10px;  
        -webkit-transition: all .7s;
        -moz-transition: all .7s;
        -o-transition: all .7s;
        transition: all .7s;
      }
      .princ__item-descr {
        font-size: 13px;
        text-align: center;
        color: #fff;
        display: none;
        max-height: 133px;
        overflow: hidden;
        opacity: 0; 
        visibility: hidden;  
        /* -webkit-transition: all .7s; */
        /* -moz-transition: all .7s; */
        /* -o-transition: all .7s; */
        /* transition: all .7s; */
        -webkit-transition: unset;
        -moz-transition: unset;
        -o-transition: unset;
        transition: unset;
      }
    .princ__item-wrp:hover:after {
      opacity: .7;
    }
    .princ__item-wrp:hover:before {
      opacity: .0;
    }
        /* .princ__item-wrp:hover .princ__item-descr {
            display: block;
        } */
      .princ__item-wrp:hover .princ__item,
      .bus-principals .princ__item-wrp:hover .princ__item{
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
      }
      .princ__item-wrp:hover .princ__item-descr {
        opacity: 1; 
        visibility: visible;   
      }
  
.feed {
  background: url(../img/feed__bg.jpg) fixed no-repeat 50% 50% / cover;
  color: #fff;
  position: relative;
}
  .feed:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #438da4;
    background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
    background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
    background: linear-gradient(to right, #438da4 0%,#39b563 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
    opacity: 0.9;
  }
  .feed__container {
    position: relative;
  }
    .feed__container::after {
      content: '';
      position: absolute;
      right: 90px;
      bottom: -60px;
      width: 411px;
      height: 632px;
      background: url(../img/feed__form-girl.png) no-repeat 50% 50% / contain;
    }

  .feed .section__ttl {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    font-size: 24px;
    text-align: left;
  }
    .feed .section__ttl span:nth-child(2) {
      font-size: 40px;
      color: #44FF5E;
    }
  .feed__form {
    max-width: 990px;
    margin-left: auto;
    margin-right: auto;
  }
    .feed__form-top {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column;
      justify-content: space-between;
    }
    .feed__form .input__wrp {
      background-color: rgba(255, 255, 255, 0.38);
      max-width: 100%;
      margin-bottom: 10px;
    }
    .input__wrp {
      position: relative;
      border: 1px solid #fff;
      max-width: 230px;
      border-radius: 6px;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
    }
      .input__wrp input,
      .input__wrp select,
      .input__wrp textarea {
        font-weight: 600;
        width: 100%;
        min-height: 54px;
        padding-left: 35px;
        font-family: 'Gilroy-ExtraBold';
      }
      .input__wrp:before {
        content: '';
        position: absolute;
        left: 10px;
        top: 15px;
        width: 16px;
        height: 17px;
        background-position: 50% 50%;
        background-size: contain;
        background-repeat: no-repeat;
      }
      .input__wrp_num:before {
        background-image: url(../img/feed__item-img_num.svg);
      }
      .input__wrp_select:before {
        background-image: url(../img/feed__item-img_select.svg);
        top: 17px;
      }
      .input__wrp_select::after {
          content: '';
          width: 17px;
          height: 17px;
          position: absolute;
          right: 10px;
          top: 18px;
          transform: rotate(90deg);
          background: url(/assets/tpl2018/img/slider__next_black.svg) no-repeat 50% 50% / contain;
      }
      .input__wrp_name:before {
        background-image: url(../img/feed__item-img_name.svg);
      }
      .input__wrp_mail:before {
        background-image: url(../img/feed__item-img_email.svg);
        top: 17px;
      }
      .input__wrp_tel:before {
        background-image: url(../img/feed__item-img_tel.svg);
        top: 16px;
      }
    .feed__form .input__wrp:not(last-child) {
      margin-right: 6px;
    }
    .feed__btn-wrp {
      margin-top: 15px;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      justify-content: space-between;
    }
      .feed__name {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
      }
        .feed__name-ttl {
          font-size: 27px;
          font-family: 'Gilroy-ExtraBold';
          text-transform: uppercase;
          margin-bottom: 6px;
          
        }
    .feed__form .input__submit {
      color: #fff;
      border: 2px solid #fff;
      background-color: transparent;
      max-width: 260px;
    }
    .feed__form .input__submit:hover {
      color: #fff;
      background-color: #39B54A;
      border-color: #39B54A;
    }
    .policy__checkbox-wrp {
      margin: 35px auto 15px;
      display: block;
      max-width: 360px;
      font-weight: 600;
    }
    .feed__form .policy__checkbox-wrp {
      margin-left: 0;
    }
      .policy__link {
        text-decoration: underline;
        color: #39B54A;
      }
      .feed__form .policy__link {
        text-decoration: underline;
        color: #fff;
      }
    .policy__checkbox-wrp input[type="checkbox"] {
        position: absolute;
        z-index: 1;
        opacity: 0;
        width: 280px;
        height: 60px;
  }

    .checkbox__text {
        font-size: 12px;
        position: relative;
        padding: 4px 0 0 25px;
        cursor: pointer;
    }
      .checkbox__text a {
        font-size: 12px;
      }
      .checkbox__text:before {
        content: '';
        position: absolute;
        top: 0px;
        left: -2px;
        width: 18px;
        height: 18px;
        border-radius: 4px;
        border: 1px solid #c3c2c2;
        background: #fff;
      }
      .checkbox__text:after {
        content: '';
        position: absolute;
        top: 5px;
        left: -2px;
        width: 20px;
        height: 12px;
        background: url(../img/policy__gal.svg) no-repeat 50% 50% / contain;
        opacity: 0;
        transform: scale(0);
        transition: 0.2s;
      }

      .policy__checkbox-wrp input[type="checkbox"]:checked + .checkbox__text:after {
        opacity: 1;
        transform: scale(1);
      }
      .policy__checkbox-wrp input[type="checkbox"]:checked + .checkbox__text:before {
        background-color: #fff;
        border: 1px solid #39B54A;
      }
      .policy__checkbox-wrp input[type="checkbox"]:focus + .checkbox__text:before {
        box-shadow: inset 0 1px 2px rgba(0,0,0,.2), 0 0 0 1px rgba(49, 179, 237, 0.61);
      }
.about {
  background-color: #fff;
}
  /*.about .section__ttl {
    text-align: left;
  }*/
  .about__container {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
  }
    .about__left {
      width: 40%;
      position: relative;
      padding: 30px 25px 50px 0;
    }
      .about__bg-grad {
        position: absolute;
        right: 0;
        top: 0;
        width: 845px;
        height: 600px;
        background: #438da4;
        background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
        background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
        background: linear-gradient(to right, #438da4 0%,#39b563 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
        opacity: 0.7;
        z-index: 2;
      }
      .about__bg-wrp {
        position: absolute;
        right: 0;
        top: 0;
        width: 845px;
        height: 600px;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
        overflow: hidden;
      }
          .about__bg-item {
            position: absolute;
            right: 0;
            top: 0;
            width: 845px;
            height: 600px;
            width: 100%;
            height: 100%;
            background-position: 50% 50%;
            background-repeat: no-repeat;
            -webkit-background-size: cover;
            background-size: cover;
            opacity: 0;
            z-index: 1;
          }
          .about__bg-item.active {
            opacity: 1;
            -webkit-animation: expandBg 10s linear;
            animation: expandBg 10s linear;
            -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
            -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
          }
      /* .about__left:before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 845px;
        height: 602px;
        background: url(../img/about__bg.jpg) no-repeat 50% 50% / cover;
      } */
      .about__left-cnt {
        position: relative;
        color: #fff;
        z-index: 3;
        text-align: center;
      }
        .about__logo {
          margin-bottom: 25px;
        }
        .about__text-slider-item {
            display: none;
            min-height: 130px;
        }
        .about__text-slider-item.active {
            display: block;
        }
        .about__subttl {
          text-transform: uppercase;
          font-size: 20px;
          font-family: 'Gilroy-ExtraBold';
          margin: 0 auto 15px;
        }
        .about__descr {
          /* text-align: justify; */
          margin: 20px auto 45px;
        }
        .about__btn {
          background-color: #fff;
          color: #000;
        }
        .about__btn:hover {
          color: #fff;
          background-color: #39B54A;
        }
    .about__right {
      color: #000;
      width: 60%;
      padding-left: 45px;
    }
      .about__item {
          display: flex;
          flex-direction: column;
          /* flex-wrap: wrap; */
          /* align-items: center; */
      }
      .about__item:not(last-child) {
        margin-bottom: 0;
        position: relative;
        padding: 25px 0;
      }
         .about__item::before {
            position: absolute;
            content: '';
            width: 0;
            height: 100%;
            bottom: 0;
            left: -20px;
            top: 0;
            border-radius: 6px;
            background: linear-gradient(270deg, rgba(77, 228, 183, 0) 0%, #4DE4B7 100%);
         }
         .about__item.active::before {
             width: 100%;
         }
        .about__item:after {
          content: '';
          position: absolute;
          height: 1px;
          width: 100%;
          background-color: #258256;
          left: 0;
          bottom: 0;
        }
        .about__item:nth-child(6) {
          margin-bottom: 0;
        }
        .about__item:nth-child(6):after {
          display: none;
        }
        .about__item-ttl {
          font-size: 18px;
          text-transform: uppercase;
          font-family: 'Gilroy-ExtraBold';
          margin-bottom: 9px;
          position: relative;
        }
          .about__item-ttl span {
            color: #39B54A;
          }
      .about__item-descr {
          position: relative;
      }
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    opacity: .5;
}
.owl-carousel .owl-nav .owl-next.disabled,
.owl-carousel .owl-nav .owl-prev.disabled,
.owl-carousel .owl-nav .owl-next.disabled:hover,
.owl-carousel .owl-nav .owl-prev.disabled:hover {
  opacity: 0;
}
.owl-carousel .owl-nav .owl-next:hover,
.owl-carousel .owl-nav .owl-prev:hover {
  opacity: 1;
}
.owl-carousel .owl-dots{
  position:absolute;
  width:100%;
  display:-webkit-flex;
  display:-moz-flex;
  display:-ms-flex;
  display:-o-flex;
  display:flex;
  justify-content:center;
  bottom: -45px;
}
.owl-carousel button.owl-dot{
  width:15px;
  height:15px;
  border-radius:50%;
  border:1px solid #333;
  background-color:transparent;
  position:relative;
  transform:scale(1);
}
.owl-carousel button.owl-dot:not(:last-child){
  margin-right:13px;
}
.owl-carousel button.owl-dot.active{
  transform:scale(0.9);
  border:1px solid #fff;
  background-color:#fff;
}
.part {
  padding: 240px 0 300px;
  background: url(../img/part__bg.jpg) fixed no-repeat 50% 50% / cover;
  position: relative;
  /*padding-bottom: 100px;*/
}
  .part:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: .6;
  }
.part__container {
  position: relative;
  color: #fff;
}
  .part__slider-item {
    width: 270px;
    height: 80px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 190px;
    background-color: #fff;
    border-radius: 6px;
    margin: auto;
  }
  .owl-carousel .owl-prev {
    position: absolute;
    bottom: 20px;
    left: -25px;
  }
  .owl-carousel .owl-next {
    position: absolute;
    bottom: 20px;
    right: -25px;
  }
  .owl-carousel button.owl-dot {
    border-color: #fff;
  }
  .part .owl-carousel .owl-dots {
    bottom: -125px;
  }
.news {
  background-color: #fff;
  color: #000;
  position: relative;
}
  .news__ttl-wrp {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
  }
    .news__ttl-link {
      text-decoration: underline;
      margin-top: 26px;
      margin-left: 31px;
      position: relative;
    }
      .news__ttl-link:before {
        content: '';
        position: absolute;
        width: 2px;
        height: 100%;
        bottom: 2px;
        left: -16px;
        background-color: #5a5656;
      }
  .news__item {
    height: 412px;
    padding-top: 260px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
  }
  .news__cnt-slider .news__item {
      width: 100% !important;
      display: block;
      margin: 0;
  }
    .news__item:before {
      content: '';
      position: absolute;
      width: 110%;
      height: 240px;
      top: 0;
      right: -10px;

      background: #438da4;
      background: -moz-linear-gradient(left, #7be0ff 0%,#55f28b 100%);
      background: -webkit-linear-gradient(left, #7be0ff 0%,#55f28b 100%);
      background: linear-gradient(to right, #7be0ff 0%,#55f28b 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7be0ff', endColorstr='#55f28b',GradientType=1 );
      opacity: 0.65;
      z-index: 1;
      -webkit-transition: all .73s;
      -moz-transition: all .73s;
      -o-transition: all .73s;
      transition: all .73s;
      border-radius: 6px;
    }
    .news__item-img {
      position: absolute;
      width: 100%; 
      height: 240px;
      top: 0;
      right: 0;
      background-repeat: no-repeat;
      background-position: 50% 50%;
      -webkit-background-size: cover;
      background-size: cover;
      -webkit-transition: all .73s;
      -moz-transition: all .73s;
      -o-transition: all .73s;
      transition: all .73s;
      border-radius: 6px;
    }
    .news__item-cnt {
      padding-left: 20px;
      padding-right: 20px;
      position: relative;
      z-index: 2;
      -webkit-transition: all 0s;
      -moz-transition: all 0s;
      -o-transition: all 0s;
      transition: all 0s;
    }
      .news__item-date {
        padding-left: 29px;
        position: relative;
        margin-bottom: 10px;
        position: relative;
        -webkit-transition: all 0s;
        -moz-transition: all 0s;
        -o-transition: all 0s;
        transition: all 0s;
      }
        .news__item-date:before,
        .news__item-date:after {
          content: '';
          position: absolute;
          width: 20px;
          height: 20px;
          left: 1px;
          top: -2px;
          -webkit-transition: all 0s;
          -moz-transition: all 0s;
          -o-transition: all 0s;
          transition: all 0s;
        }
        .news__item-date:before {
          background: url(../img/news__clocks_black.svg) no-repeat 50% 50% / contain;
        }
        .news__item-date:after {
          background: url(../img/news__clocks_white.svg) no-repeat 50% 50% / contain;
          opacity: 0;
        }
      .news__item-ttl {
        font-size: 14px;
        text-transform: uppercase;
        font-family: 'Gilroy-ExtraBold';
        margin-bottom: 9px;
        -webkit-transition: all 0s;
        -moz-transition: all 0s;
        -o-transition: all 0s;
        transition: all 0s;
      }
      .news__item-descr {
        max-height: 72px;
        overflow: hidden;
        -webkit-transition: all 0s;
        -moz-transition: all 0s;
        -o-transition: all 0s;
        transition: all 0s;
      }
          .news__item-descr p {
              margin: 0;
          }
  .news__item:hover {
    color: #000;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-box-shadow: 0px 12px 28px -13px rgba(0,0,0,0.24);
    -moz-box-shadow: 0px 12px 28px -13px rgba(0,0,0,0.24);
    box-shadow: 0px 12px 28px -13px rgba(0,0,0,0.24);
  }
    .news__item:hover::before {
        opacity: 0.95;
    }
    .news__item:hover .news__item-img {
      height: 100%;
    }
    /* .news__item:hover .news__item-date:before {
      opacity: 0;
    }
    .news__item:hover .news__item-date:after {
      opacity: 1;
    } */
    .news__item .news__item-descr {
        max-height: unset;
    }
    .news__item:hover:before {
      height: 100%;
    }
.cert {
  background: url(../img/cert__bg.jpg) fixed no-repeat 50% 50% / cover;
  position: relative;
  padding-bottom: 100px;
  background-position-x: -280px;
}
  .cert:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #438da4;
    background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
    background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
    background: linear-gradient(to right, #438da4 0%,#39b563 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
    opacity: 0.7;
  }
  .cert__container {
    position: relative;
    color: #fff;
  }
  .cert__slider.owl-carousel .owl-next,
  .cert__slider.owl-carousel .owl-prev {
    bottom: 130px;
  }
    .cert__slider-item {
      display: block;
      width: 224px;
      height: 317px;
      background-position: 50% 50%;
      background-repeat: no-repeat;
      background-size: cover;
      background-color: #fff;
      border-radius: 6px;
      margin: 15px auto 25px;
    }
.grading {
  background: url(../img/grading__bg.jpg) fixed no-repeat 50% 50% / cover;
  position: relative;
}
  .grading:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #d4d4d4;
    opacity: 0.7;
  }
  .grading__container {
    position: relative;
  }
    .grading__form {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column;
      -ms-align-items: center;
      align-items: center;
      justify-content: center;
    }
      .grading__form .input__wrp {
        background-color: #fff;
        width: 330px;
        max-width: unset;
      }
      .grading__form-top {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        -ms-align-items: center;
        align-items: center;
        margin-bottom: 25px;
        width: 60%;
      }
      .grading__form .input__submit {
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
        padding: 15px 45px;
      }
.footer a {
  color: #fff;
}
  .footer a:hover {
    color: #39B54A;
  }
.footer-top {
  background-color: #252525;
  padding: 50px 0;
  color: #fff;
  -webkit-box-shadow: inset 0px 49px 54px -41px rgba(0,0,0,0.96);
  -moz-box-shadow: inset 0px 49px 54px -41px rgba(0,0,0,0.96);
  box-shadow: inset 0px 49px 54px -41px rgba(0,0,0,0.96);
}
  .footer__container {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: space-between;
  }
    .footer-top__nav {
        max-width: 810px;
    }
    .footer__nav-item:nth-child(1),
    .footer__nav-item:nth-child(2),
    .footer__nav-item:nth-child(3) {
      position: relative;
      margin-bottom: 30px;
    }
      .footer__nav-item:nth-child(1):after,
      .footer__nav-item:nth-child(2):after,
      .footer__nav-item:nth-child(3):after {
        content: '';
        position: absolute;
        width: 80%;
        height: 1px;
        bottom: -15px;
        left: 0;
        background-color: #464646;
      }
    .footer__nav-item-ttl {
      font-size: 18px;
      text-transform: uppercase;
      font-family: 'Gilroy-ExtraBold';
    }
    .footer__nav-item-list {
      margin-top: 9px;
      max-width: 250px;
    }
      .footer .footer__nav-item-link {
        color: #b3b2b2;
        /*text-decoration: underline;*/
        font-size: 13px;  
      }
      .footer__nav-item-link:hover {
        text-decoration: none;
      }
      .footer__nav-item-link:not(last-child) {
        margin-bottom: 4px;
        display: block;
      }
  .footer__info-item {
    position: relative;
    text-align: right;
  }
    .footer__info-item:nth-child(1) {
      padding-top: 20px;
    }
      .footer__info-item:nth-child(1):before {
        content: '';
        position: absolute;
        width: 40%;
        height: 1px;
        top: 0;
        right: 0;
        background-color: #464646;
      }
    .footer__info-item:not(last-child) {
      margin-bottom: 30px;
    }
    .footer__info-item-geo {
      max-width: 340px;
    }
    .footer__info-item:after {
      content: '';
      position: absolute;
      width: 40%;
      height: 1px;
      bottom: -15px;
      right: 0;
      background-color: #464646;
    }
      .footer__info-item-ttl {
        text-transform: uppercase;
        font-family: 'Gilroy-ExtraBold';
        color: #464646;
        margin-bottom: 7px;
      }
    .footer__info-item-tel {
      font-size: 20px;
      font-weight: 600;
    }
    .footer__info-item-soc-wrp {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      justify-content: flex-end;
      -ms-align-items: center;
      align-items: center;
    }
      .footer__info-item-soc:hover {
        opacity: .6;
      }
      .footer__info-item-soc:not(last-child) {
        margin-right: 10px;
      }
  .footer-bot {
    background-color: #000;
    color: #fff;
    padding: 40px 0 30px;
  }
    .footer-bot .footer__container {
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
    }
      .footer__main-logo:hover {
        opacity: .7;
      }
      .footer-bot__info {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -ms-align-items: center;
        align-items: center;
        justify-content: center;
      }
        .footer__copy {
          max-width: 220px;
          padding-left: 45px;
          position: relative;
        }
          .footer__copy:before {
            content: '';
            position: absolute;
            width: 1px;
            height: 100%;
            background-color: #464646;
            left: 25px;
            top: 0;
          }
        .footer-bot__akticom-link {
          max-width: 190px;
          display: block;
          padding-left: 55px;
          position: relative;
        }
          .footer-bot__akticom-link span {
            text-decoration: underline;
          }
          .footer-bot__akticom-link:before {
            content: '';
            position: absolute;
            width: 40px;
            height: 52px;
            background: url(../img/akticom__logo.svg) no-repeat 50% 50% / contain;
            left: 2px;
            top: -8px;
          }
        .footer-bot__akticom-link:hover:before {
          opacity: .5;
        }
      .footer-bot__policy {
        width: 100%;
        max-width: 900px;
        text-align: center;
        margin: 25px auto;
      }
        .footer-bot__policy a {
          text-decoration: underline;
        }
        .footer-bot__policy span {
          color: #39B54A;
          font-weight: 600;
        }
.banner {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
}
  .banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #438da4;
    background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
    background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
    background: linear-gradient(to right, #438da4 0%,#39b563 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
    opacity: .7;
  }
  .banner__container {
    position: relative;
    color: #fff;
  }
    .banner__cnt {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      justify-content: space-between;
      -ms-align-items: center;
      align-items: center;
      padding: 20px 0 0;
      position: relative;
    }
      .banner__ttl {
        max-width: 270px;
        display: block;
        font-size: 30px;
        font-family: 'Gilroy-ExtraBold';
        text-transform: uppercase;
        padding: 20px;
        border: 5px solid #ffffff85;
      }
      .banner__descr {
        max-width: 330px;
        display: block;
        text-transform: uppercase;
      }
        .banner__link {
          color: #fff;
          margin-top: 0;
        }
        .banner__link:hover {
          color: #ccc;
        }
      .banner__img_grading {
        position: absolute;
        top: -20px;
        left: 50%;
        margin-left: -230px;
        width: 400px;
      }
.cases {
  background: url(../img/grading__cases.jpg) fixed no-repeat 50% 50% / cover;
  position: relative;
  color: #000;
}
  .cases::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    opacity: .8;
  }
  .cases__container {
    position: relative;
  }
  .cases__item {
    padding-left: 80px;
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }
    .cases__item:before {
      content: '';
      position: absolute;
      width: 50px;
      height: 50px;
      left: 0;
      top: -4px;
      background: url(../img/grading__cases-gal.svg) no-repeat 50% 50% / contain;
    }
    .cases__item-ttl {
      font-size: 28px;
      text-transform: uppercase;
      font-family: 'Gilroy-ExtraBold';
      margin-bottom: 15px;
    }
    .cases__item-descr {
      font-weight: 600;
    }
.grad-banner::before {
  opacity: .85;
}
.grad-banner::after {
  position: absolute;
  content: '';
  right: 0;
  bottom: -30px;
  width: 50%;
  height: 356px;
  background: url(../img/grad-banner__img.png) no-repeat 50% 50% / contain;
}
  .grad-banner .banner__ttl-wrp {
    margin-right: 0;
    margin-left: 60px;
    margin-top: -200px;
  }
.grad-price__container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  color: #000;
}
  .grad-price__info {
    max-width: 350px;
    background: url(../img/grading__info-bg.jpg) no-repeat 0 0 / cover;
    padding: 30px 20px 50px;
    color: #fff;
    margin-right: 25px;
    border-radius: 6px;
  }
    .grad-price__info-ttl-wrp {
      position: relative;
      padding-bottom: 20px;
      margin-bottom: 25px;
    }
    .grad-price__info-ttl-wrp::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 1px;
      bottom: 0;
      left: 0;
      background-color: #ffffff52;
    }
      .grad-price__info-ttl {
        font-size: 36px;
        font-family: 'Gilroy-ExtraBold';
        margin-bottom: 20px;
        text-transform: uppercase;
      }
      .grad-price__info-subttl span:nth-child(1){
        font-size: 24px;
        margin-right: 35px;
        opacity: .7;
      }
      .grad-price__info-subttl span:nth-child(2){
        font-size: 36px;
        font-family: 'Gilroy-ExtraBold';
      }
      .grad-price__info-list {
        position: relative;
        padding-bottom: 20px;
        margin-bottom: 25px;
      }
        .grad-price__info-list::after {
          content: '';
          position: absolute;
          width: 100%;
          height: 1px;
          bottom: 0;
          left: 0;
          background-color: #ffffff52;
        }
        .grad-price__info-list li {
          padding-left: 25px;
          position: relative;
        }
          .grad-price__info-list li:not(last-child) {
            margin-bottom: 10px;
          }
          .grad-price__info-list li::before {
            content: '';
            position: absolute;
            top: 6px;
            left: 0;
            width: 10px;
            height: 9px;
            background: url(../img/grad-price__list-img_white.svg) no-repeat 50% 50% / contain;
          }
          .grad-price__info-list span {
            font-weight: 600;
          }
      .grad-price__info-feed-ttl {
        font-family: 'Gilroy-ExtraBold';
        text-transform: uppercase;
        margin-bottom: 10px;
      }
      .grad-price__info-tel {
        color: #fff;
        font-size: 20px;
        font-family: 'Gilroy-ExtraBold';
        margin-bottom: 6px;
        display: block;
      }
    .grad-price__descr {
      max-width: 760px;
      margin-bottom: 10px;
    }
      .grad-price__descr-ttl {
        font-size: 20px;
        font-family: 'Gilroy-ExtraBold';
        text-transform: uppercase;
        margin: 35px 0 20px; 
      }
      .grad-price__descr-item {
        margin: 0;
      }
      .grad-price__descr-list li {
        padding-left: 25px;
        position: relative;
      }
        .grad-price__descr-list li:not(last-child) {
          margin-bottom: 10px;
        }
        .grad-price__descr-list li::before {
          content: '';
          position: absolute;
          top: 4px;
          left: 0;
          width: 10px;
          height: 9px;
          background: url(../img/grad-price__list-img_black.svg) no-repeat 50% 50% / contain;
        }
.trbl {
  background: url(../img/grading-trbl__bg.jpg) fixed no-repeat 50% 50% / cover;
  position: relative;
  color: #000;
}
  .trbl::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    opacity: .89;
  }
  .trbl__container {
    position: relative;
  }
    .trbl__item {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column;
      -ms-align-items: center;
      align-items: center;
      text-align: center;
      max-width: 330px;
    }
      .trbl__item-img {
        width: 90px;
        height: 60px;
        margin: 0 auto 20px;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        -webkit-background-size: contain;
        background-size: contain;
      }
      .trbl__item-descr b {
        font-family: 'Gilroy-ExtraBold';
        font-size: 15px;
      }
      .trbl__item-descr {
        font-weight: 600;
        font-size: 13px;
      }
.gain {
  background: url(../img/gain__bg.jpg) fixed no-repeat 50% 50% / cover;
  position: relative;
  color: #fff;
}
  .gain::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #438da4;
    background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
    background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
    background: linear-gradient(to right, #438da4 0%,#39b563 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
    opacity: .86;
  }
  .gain__container {
    position: relative;
  }
    .gain__item {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column;
      color: #000;
      background-color: #fff;
      border-radius: 6px;
      max-width: 330px;
      padding: 30px 20px 20px;
      position: relative;
    }
      .gain__item::before {
        content: '';
        position: absolute;
        width: 100px;
        height: 100px;
        left: -7px;
        top: -50px;
        background: url(../img/grading__cases-gal.svg) no-repeat 50% 50% / contain;
      }
      .gain__item-ttl {
        font-size: 18px;
        font-family: 'Gilroy-ExtraBold';
        text-transform: uppercase;
        margin-bottom: 20px;
      }
.grad-docs {
  background: url(../img/grad-docs__bg.jpg) fixed no-repeat 50% 50% / cover;
  position: relative;
  color: #000;
}
  .grad-docs::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    opacity: .79;
  }
  .grad-docs__container {
    position: relative;
  }
    .grad-docs-tabs__list {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-bottom: 10px;
    }
      .grad-docs-tabs__list li {
        padding: 7px 28px;
        text-align: center;
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 6px;
        max-width: 270px;
        cursor: pointer;
      }
      .grad-docs-tabs__list li.active {
        color: #fff;
        border-color: #438da4;
        background: #438da4;
        background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
        background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
        background: linear-gradient(to right, #438da4 0%,#39b563 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
      }
    .grad-docs-tabs__cnt {
      min-height: 360px;
    }
    .grad-docs__inner-cnt-wrp {
      -webkit-flex-wrap: nowrap;
      -moz-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      -o-flex-wrap: nowrap;
      flex-wrap: nowrap;
    }
    .grad-docs__inner-ttl {
      font-family: 'Gilroy-ExtraBold';
      text-align: center;
      margin-bottom: 15px;
    }
    .grad-docs__inner-item {
        min-height: 270px;
        width: 180px;
        background-color: #fff;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        -webkit-background-size: 90%;
        background-size: 90%;
        border-radius: 6px;
        overflow: hidden;
    }
    .grad-docs-tabs__cnt .tab-content__item {
      width: 100%;
    }
      .grad-docs__inner-item-print {
        width: 100%;
        height: 100%;
        position: relative;
        padding: 5px;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -ms-align-items: flex-start;
        align-items: flex-start;
        -webkit-transform: translateY(270px);
        -ms-transform: translateY(270px);
        -o-transform: translateY(270px);
        transform: translateY(270px);
        opacity: 0;
      }
        .grad-docs__inner-item-print img,
        .grad-docs__inner-item-print span {
          position: relative;
        }
          .grad-docs__inner-item-print img {
            max-width: 40px;
          }
          .grad-docs__inner-item-print span {
            color: #fff;
            margin-left: 30px;
            max-width: 70px;
            display: block;
          }
          .grad-docs__inner-item-print span::before {
            content: '';
            position: absolute;
            height: 100%;
            width: 1px;
            background-color: #fff;
            top: 0;
            left: -12px;
          }
        .grad-docs__inner-item-print:before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: #438da4;
          background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
          background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
          background: linear-gradient(to right, #438da4 0%,#39b563 100%);
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
          opacity: .8;
        }
    .grad-docs__inner-item:hover .grad-docs__inner-item-print {
      opacity: 1;
      -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
      -o-transform: translateY(0px);
      transform: translateY(0px);
    }

.report {
  background: transparent url(../img/report__bg_right.jpg) no-repeat 100% 50% / 87%;
  position: relative;
  z-index: 2;
  color: #000;
  padding-bottom: 100px;
}
  .report__container {
    position: relative;
  }
    .report .section__ttl {
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    .report__cnt {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      justify-content: space-between;
      -ms-align-items: center;
      align-items: center;
      position: relative;
      padding-left: 130px;
    }
      .report__img-wrp {
        position: relative;
        height: 354px;
        width: 250px;
      }
        .report__img-wrp img {
          max-width: 100%;
          border-radius: 6px;
          position: relative;
        }
        .report__img-wrp::before {
          content: '';
          position: absolute;
          top: 40px;
          left: -420px;
          width: 637px;
          height: 352px;
          background: url(../img/report__bg_left.jpg) no-repeat 50% 50% / cover;
        }
      .report__info {
        max-width: 720px;
      }
        .report__list li {
          list-style: none;
          padding-left: 25px;
          position: relative;
        }
          .report__list li:not(last-child) {
            margin-bottom: 10px;
          }
          .report__list li::before {
            content: '';
            position: absolute;
            top: 4px;
            left: 0;
            width: 10px;
            height: 9px;
            background: url(../img/grad-price__list-img_green.svg) no-repeat 50% 50% / contain;
          }
          .report__list_num li {
            padding-left: 0;
          }
          .report__list_num li:before {
            display: none;
          }
          .report__list_num span {
            font-family: 'Gilroy-ExtraBold';
            color: #39B54A;
            margin-bottom: 5px;
          }
          .report__cnt .report__list li {
            font-family: 'Gilroy-ExtraBold';
          }
        .report__descr {
          margin: 35px 0;
          display: block;
        }
.tariff {
  background: url(../img/tariff__bg.jpg) fixed no-repeat 50% 50% / cover;
  position: relative;
  color: #000;
  padding-top: 140px;
  margin-top: -90px;
}
  .tariff:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    opacity: .79;
  }
  .tariff__container {
    position: relative;
  }
    .tariff__cnt {
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
      .tariff__item-ttl-wrp {
        width: 100%;
        margin-bottom: 20px;
        border-bottom: 1px solid #B8B8B8;
      }
      .tariff__item {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        -ms-align-items: center;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px 35px;
        border-radius: 6px;
        background-color: #EDE9E4;
        max-width: 360px;
      }
        .tariff__item-ttl {
          font-size: 18px;
          font-family: 'Gilroy-ExtraBold';
          text-transform: uppercase;
          margin-bottom: 20px;
        }
        .tariff__item-price-wrp {
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flex;
          display: -o-flex;
          display: flex;
          -webkit-flex-wrap: wrap;
          -moz-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
          -o-flex-wrap: wrap;
          flex-wrap: wrap;
          -ms-align-items: center;
          align-items: center;
          justify-content: flex-end;
        }
          .tariff__item-price_old {
            font-size: 18px;
            color: #8a8888;
            text-decoration: line-through;
            margin-right: 12px;
          }
          .tariff__item-price_new {
            font-size: 25px;
            font-family: 'Gilroy-ExtraBold';
          }
            .tariff__item-price_new span {
              color: #39B54A;
            }
.ways {
  background: url(../img/ways__bg.jpg) fixed no-repeat 50% 50% / cover;
  position: relative;
}
  .ways::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #438da4;
    background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
    background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
    background: linear-gradient(to right, #438da4 0%,#39b563 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
    opacity: .86;
  }
  .ways__container {
    position: relative;
  }
    .ways .section__ttl {
      color: #fff
    }
      .ways .section__ttl span {
        font-style: italic;
        font-family: 'Gilroy';
      }
    .ways__item-wrp {
      border-radius: 6px;
      background-color: #fff;
      position: relative;
      max-width: 900px;
      margin-right: auto;
      margin-left: auto;
      padding: 35px 40px;
    }
    .ways__item-wrp:not(last-child) {
      margin-bottom: 50px;
    }
      .ways__item-label {
        position: absolute;
        left: -86px;
        top: 74px;
        text-align: center;
        text-transform: uppercase;
        color: #fff;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        padding: 10px 15px;
        background: #438da4;
        background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
        background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
        background: linear-gradient(to right, #438da4 0%,#39b563 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
        z-index: 1;
      }
      .ways__item {
        position: relative;
        z-index: 2;
      }
        .ways__item-ttl {
          font-size: 22px;
          font-family: 'Gilroy-ExtraBold';
          text-align: center;
          text-transform: uppercase;
          /*max-width: 500px;*/
          margin-bottom: 20px;
          /*margin-left: auto;*/
          /*margin-right: auto;*/
        }
          .ways__item-ttl span {
            color: #39B54A;
          }
        .ways__form {
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flex;
          display: -o-flex;
          display: flex;
          -webkit-flex-direction: column;
          -moz-flex-direction: column;
          -ms-flex-direction: column;
          -o-flex-direction: column;
          flex-direction: column;
          -ms-align-items: center;
          align-items: center;
          justify-content: center;
        }
          .ways__form .input__wrp {
            background-color: #fff;
            width: 48%;
            max-width: unset;
          }
          .ways__form-top {
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flex;
            display: -o-flex;
            display: flex;
            justify-content: space-between;
            -ms-align-items: center;
            align-items: center;
            margin-bottom: 25px;
            width: 90%;
          }
          .ways__form .input__submit {
            margin-left: auto;
            margin-right: auto;
            font-size: 16px;
            padding: 15px 45px;
          }
      .ways__descr {
        margin-top: 15px;
        font-weight: 600;
        text-align: center;
      }
        .ways__descr-item:nth-child(1) {
          margin-bottom: 15px;
        }
        .ways__item-wrp:nth-child(2) .ways__descr-item:nth-child(1) {
          margin-bottom: 25px;
        }
        .ways__descr-item-tel {
          font-family: 'Gilroy-ExtraBold';
          font-size: 25px;
        }
.grad-adv {
  background: url(../img/grad-adv__bg.jpg) fixed no-repeat 50% 50% / cover;
  position: relative;
  color: #000;
}
  .grad-adv::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../img/grad-adv__bg-before.jpg) fixed no-repeat 50% 50% / cover;;
    opacity: .89;
  }
  .grad-adv__container {
    position: relative;
  }
    .grad-adv__item {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column;
      -ms-align-items: center;
      align-items: center;
      text-align: center;
      max-width: 330px;
    }
      .grad-adv__item-img {
        width: 90px;
        height: 60px;
        margin: 0 auto 15px;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        -webkit-background-size: contain;
        background-size: contain;
      }
      .grad-adv__item-ttl {
        font-family: 'Gilroy-ExtraBold';
        text-transform: uppercase;
        margin-bottom: 15px;
      }
      .grad-adv__item-descr {
        font-weight: 600;
        font-size: 13px;
      }        
.grad-feed {
  background: url(../img/grad-feed__bg-2.jpg) fixed no-repeat 50% 50% / cover;
  position: relative;
  color: #fff;
}
  .grad-feed::before {
    content: '';
    position: absolute;
    width: 595px;
    height: 672px;
    bottom: 0;
    left: 0;
    background: url(../img/grad-feed__girl.svg) no-repeat 50% 50% / contain;
  }
  .grad-feed__container {
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    /*justify-content: space-between;*/
    justify-content: flex-end;
    -ms-align-items: flex-end;
    align-items: flex-end;
  }
    .grad-feed .section__ttl {
        font-size: 35px;
    }
    .grad-feed__label {
      width: 290px;
      color: #fff;
      border-top-left-radius: 6px;
      border-top-right-radius: 6px;
      padding: 15px 20px;
      background: #438da4;
      background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
      background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
      background: linear-gradient(to right, #438da4 0%,#39b563 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
    }
      .grad-feed__label-ttl {
        font-family: 'Gilroy-ExtraBold';
        text-transform: uppercase;
        margin-bottom: 10px;
      }
    .grad-feed__cnt {
      width: 55%;
    }
    
      .grad-feed__cnt .section__ttl {
        text-align: left;
        margin-top: 0;
      }
      .grad-feed__cnt .section__ttl span {
          color: #44FF5E;
      }
    .grad-feed__form {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column;
      -ms-align-items: flex-start;
      align-items: flex-start;
      justify-content: center;
    }
      .grad-feed__form .input__wrp {
        background-color: rgba(255, 255, 255, 0.38);
        width: 100%;
        max-width: unset;
        margin-bottom: 20px;
      }
      .grad-feed__form-top {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        -ms-align-items: center;
        align-items: center;
        margin-bottom: 25px;
        width: 90%;
        flex-wrap: wrap;
      }
      .grad-feed__form .input__submit {
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
        padding: 15px 45px;
      }
    .grad-feed__input-wrp {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
      justify-content: space-between;
      -ms-align-items: center;
      align-items: center;
    }
      .grad-feed__input-wrp .input__submit {
        margin-right: 20px;
      }
      .grad-feed__input-wrp .policy__checkbox-wrp {
        margin-top: 25px;
      }
      .grad-feed__input-wrp .policy__checkbox-wrp a{
        color: #fff;
      }
    .grad-feed__manager-name {
      margin-top: 40px;
    }
      .grad-feed__manager-name p {
        font-size: 20px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-family: Gilroy;
        margin: 0;
      }
        .grad-feed__manager-name p span{
          font-size: 16px;
          font-weight: 300;
          text-transform: none;
        }
.cad-banner__cnt {
  justify-content: center;
}
  .cad-banner__ttl {
    font-size: 40px;
    font-family: 'Gilroy-ExtraBold';
    text-transform: uppercase;
    margin-bottom: 25px;
  }
  .cad-banner__subttl {
    font-family: 'Gilroy-ExtraBold';
    text-transform: uppercase;
    font-size: 16px;
  }
  .banner__form-wrp {
    max-width: 560px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
    .banner__ttl-wrp {
      max-width: 740px;
      margin-right: 40px;
    }
    .banner__form-ttl {
      font-size: 33px;
      font-family: 'Gilroy-ExtraBold';
      margin-bottom: 15px;
      text-transform: uppercase;
    }
    .cad-banner__form .input__wrp {
      background-color: rgba(255, 255, 255, 0.38);
      max-width: 390px;
      margin-bottom: 10px;
    }
    .cad-banner__form .input__submit {
      margin-top: 15px;
      color: #fff;
      border: 2px solid #fff;
      background-color: transparent;
    }
    .cad-banner__form .input__submit:hover {
      color: #fff;
      background-color: #39B54A;
      border-color: #39B54A;
    }
    .cad-banner__form .policy__checkbox-wrp {
      margin: 15px 0 0;
    }
    .cad-banner__form .policy__link {
      color: #fff;
    }
.cad-adv .section__ttl {
  color: #000;
  max-width: 900px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 70px;
}
.cad-adv__item-wrp {
  position: relative;
  max-width: 330px;
}
  .cad-adv__item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    color: #000;
    background-color: #fff;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    padding: 100px 25px 30px;
    position: relative;
    -webkit-transform: rotateX(0) rotateY(0);
    transform: rotateX(0) rotateY(0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
  }
  /*  .cad-adv__item:hover {
      -webkit-transform: translateY(-25px);
      -ms-transform: translateY(-25px);
      -o-transform: translateY(-25px);
      transform: translateY(-25px);
    }*/
    .cad-adv__item::before {
      content: '';
      position: absolute;
      width: 180px;
      height: 180px;
      left: -20px;
      top: -50px;
      background: url(../img/grading__cases-gal.svg) no-repeat 50% 50% / contain;
    }
    .cad-adv__item-ttl {
      font-size: 24px;
      font-family: 'Gilroy-ExtraBold';
      text-transform: uppercase;
      margin-bottom: 20px;
      min-height: 75px;
    }
  .cad-adv__item-info {
    line-height: 1.4;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border-radius: 6px;
    padding: 20px 25px;
    -webkit-transform: rotateY(-179deg);
    transform: rotateY(-179deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
  }
  .cad-adv__item-wrp:hover .cad-adv__item-info {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
  }
  .cad-adv__item-wrp:hover .cad-adv__item {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
.cad-profit {
  color: #fff;
  position: relative;
  background: #438da4;
  background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
  background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
  background: linear-gradient(to right, #438da4 0%,#39b563 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
  overflow: hidden;
}
  .cad-profit::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #438da4;
    background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
    background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
    background: linear-gradient(to right, #438da4 0%,#39b563 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
    opacity: 0.7;
    z-index: 2;
  }
  .cad-profit__container {
    position: relative;
    z-index: 3;
  }
  .cad-profit__item {
    cursor: pointer;
    text-align: center;
  }
    .cad-profit__item-top {
      margin-bottom: 5px;
      width: 180px;
      height: 180px;
      margin-left: auto;
      margin-right: auto;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column;
      justify-content: center;
      -ms-align-items: center;
      align-items: center;
      position: relative;
    }
      .cad-profit__item-top::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        background: url(../img/cad-profit__item-bg.svg) no-repeat 50% 50% / contain;
        opacity: .7;
      }
      .cad-profit__item-top::after {
        content: '';
        position: absolute;
        width: 36px;
        height: 1px;
        bottom: 10px;
        left: 50%;
        margin-left: -18px;
        background-color: #fff;
      }
      .cad-profit__item-img {
        width: 90px;
        height: 80px;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        -webkit-background-size: contain;
        background-size: contain;
        position: relative;
      }
      .cad-profit__item-ttl {
        font-size: 20px;
        font-family: 'Gilroy-ExtraBold';
        text-transform: uppercase;
        margin: 15px auto -15px;
        position: relative;
      }
  .cad-profit__promo-wrp {
    margin: 5px auto;
    text-align: center;
    letter-spacing: 1px;
  }
    .cad-profit__promo-descr {
      font-size: 18px;
      margin-bottom: 10px;
    }
      .cad-profit__promo-descr span {
        color: #DEFF5C;
        font-family: 'Gilroy-ExtraBold';
      }
    .cad-profit__promo-num {
      color: #DEFF5C;
      font-size: 45px;
      font-family: 'Gilroy-ExtraBold';
    }
      .spincrement {
        opacity: 0;
      }
    .cad-profit__promo-descr:nth-child(3) {
      margin-top: 10px;
      margin-bottom: 50px;
    }
  .cad-profit__bg-item {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    z-index: 1;
  }
  .cad-profit__bg-item.active {
    opacity: 1;
    -webkit-animation: expandBg 10s linear;
    animation: expandBg 10s linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
.stages {
  color: #000;
  padding-bottom: 90px;
}
  .stages .section__ttl {
    margin-bottom: 60px;
    margin-top: 0;
  }
  .stages__item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    max-width: 600px;
    position: relative;
    margin-bottom: 0px;
  }
  .stages__item:last-child {
    margin-bottom: 0px;
    margin-top: -20px;
  }
  .stages__item:last-child::after {
    display: none;
  }
  .stages__item_left {
    justify-content: flex-end;
    margin-right: auto;
  }
  .stages__item_right {
    margin-left: auto;
  }
    .stages__info {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column;
      position: relative;
    }
    .stages__item_right .stages__info {
      order: 2;
    }
      .stages__ttl {
        font-size: 18px;
        font-family: 'Gilroy-ExtraBold';
        text-transform: uppercase;
      }
      .stages__num {
        color: #fff;
        font-size: 19px;
        font-family: 'Gilroy-ExtraBold';
        text-transform: uppercase;
        width: 40px;
        min-width: 40px;
        height: 40px;
        border-radius: 50%;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: center;
        -ms-align-items: center;
        align-items: center;
        background: #438da4;
        background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
        background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
        background: linear-gradient(to right, #438da4 0%,#39b563 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
        position: relative;
        z-index: 2;
      }
      .stages__descr {
        margin-top: 10px;
      }
    .stages__item_left .stages__info {
      text-align: right;
      -ms-align-items: flex-end;
      align-items: flex-end;
      margin-right: 60px;
    }
    .stages__item_right .stages__info {
      margin-left: 60px;
    }
    .stages__item::before {
      content: '';
      position: absolute;
      width: 200px;
      height: 140px;
      top: 50%;
      margin-top: -70px;
      background: url(../img/stages__circle.svg) no-repeat 50% 50% / contain;
    }
    .stages__item::after {
      content: '';
      position: absolute;
      width: 88px;
      height: 80px;
      top: 50%;
      background: url(../img/stages__arrow.svg) no-repeat 50% 50% / contain;
    }
    .stages__item_left::before {
      right: 0;
    }
    .stages__item_right::before {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg);
    }
    .stages__item_left::after {
      right: -35px;
    }
    .stages__item_right::after {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg);
      left: -35px;
    }
.cad-docs {
  color: #fff;
  overflow: hidden;
  padding-bottom: 0;
}
  .cad-docs__container {
    padding: 50px 0 0px;
    position: relative;
  }
  .cad-docs__container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 150%;
    height: 100%;
    background: #438da4;
    background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
    background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
    background: linear-gradient(to right, #438da4 0%,#39b563 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
  }
    .cad-docs .section__ttl {
      position: relative;
      /* max-width: 700px;
      margin-left: auto;
      margin-right: auto; */
        text-align: left;
        padding-left: 20px;
    }
    .cad-docs__cnt {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
      justify-content: space-between;
      -ms-align-items: center;
      align-items: center;
      position: relative;
      padding-left: 60px;
    }
      .cad-docs__img-wrp {
        position: relative;
        height: 450px;
        width: 420px;
      }
        .cad-docs__img-wrp img {
            max-width: 100%;
            border-radius: 6px;
            position: relative;
            -webkit-box-shadow: 0px 16px 32px -9px rgba(0,0,0,0.69);
            -moz-box-shadow: 0px 16px 32px -9px rgba(0,0,0,0.69);
            box-shadow: 0px 16px 32px -9px rgba(0,0,0,0.69);
        }
        .cad-docs__img-wrp::before {
          content: '';
          position: absolute;
          top: 40px;
          left: -420px;
          width: 637px;
          height: 472px;
          background: url(../img/cad-docs__bg.jpg) no-repeat 50% 50% / cover;
        }
      .cad-docs__info {
        max-width: 720px;
        margin-top: -80px;
      }
      /* .cad-docs .cad-docs__list li {
        text-align: right;
      } */
        .cad-docs__list li {
          list-style: none;
          /*padding-left: 25px;*/
          position: relative;
          margin-bottom: 35px;
        }
          .cad-docs__list li::before {
            content: '';
            position: absolute;
            top: 4px;
            left: 0;
            width: 10px;
            height: 9px;
            background: url(../img/grad-price__list-img_white.svg) no-repeat 50% 50% / contain;
          }
          .cad-docs__list li::before {
            display: none;
          }
          .cad-docs__list li::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: #fff;
          }
          .cad-docs__cnt .cad-docs__list li {
            font-size: 16px;
            font-family: 'Gilroy-ExtraBold';
          }
          .cad-docs__list li:last-child {
            margin-bottom: 0px;
          }
          .cad-docs__list li:last-child::after {
            display: none;
          }
.reasons {
  color: #000;
  background: url(../img/reasons__bg.jpg) fixed no-repeat 50% 50% / cover;
  position: relative;
}
  .reasons::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #EDE9E4;
    opacity: 0.9;
  }
  .reasons__container {
      position: relative;
  }
      .reasons__item {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        -ms-align-items: center;
        align-items: center;
        text-align: center;
        max-width: 330px;
      }
        .reasons__item-img {
          width: 90px;
          height: 60px;
          margin: 0 auto 20px;
          background-position: 50% 50%;
          background-repeat: no-repeat;
          -webkit-background-size: contain;
          background-size: contain;
          position: relative;
          
          background-image: none;
        }
          .reasons__item-img::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-position: 50% 50%;
            background-repeat: no-repeat;
            -webkit-background-size: contain;
            background-size: contain;
            opacity: 1;
          }
          /*.reasons__item:nth-child(1) .reasons__item-img::before {
            background-image: url(../img/reasons__item-img_1.svg);
          }
          .reasons__item:nth-child(2) .reasons__item-img::before {
            background-image: url(../img/reasons__item-img_2.svg);
          }
          .reasons__item:nth-child(3) .reasons__item-img::before {
            background-image: url(../img/reasons__item-img_3.svg);
          }
          .reasons__item:nth-child(4) .reasons__item-img::before {
            background-image: url(../img/reasons__item-img_4.svg);
          }
          .reasons__item:nth-child(5) .reasons__item-img::before {
            background-image: url(../img/reasons__item-img_5.svg);
          }
          .reasons__item:nth-child(6) .reasons__item-img::before {
            background-image: url(../img/reasons__item-img_6.svg);
          }*/
    
        .reasons__item-descr {
          font-family: 'Gilroy-ExtraBold';
          font-size: 15px;
        }
      .reasons__item:hover .reasons__item-img::before {
        opacity: 1;
      }
      .reasons__item:hover .reasons__item-descr {
        color: #3E8D0B;
      }
.cad-price {
  background: url(../img/tariff__bg.jpg) fixed no-repeat 50% 50% / cover;
  position: relative;
  color: #000;
}
  .cad-price:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    opacity: .79;
  }
  .cad-price__container {
    position: relative;
  }
    .cad-price__cnt {
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }
      .cad-price__item {
        text-align: center;
        max-width: 420px;
        color: #fff;
        border-radius: 6px;
        padding: 25px 30px;
        background: #438da4;
        background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
        background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
        background: linear-gradient(to right, #438da4 0%,#39b563 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
        position: relative;
      }
        .cad-price__item::after {
          content: '';
          position: absolute;
          width: 30px;
          height: 30px;
          right: -10px;
          background-color: #fff;
          border-radius: 50%;
          -webkit-box-shadow: inset 0px 0px 0px 8px rgba(58,176,107,1);
          -moz-box-shadow: inset 0px 0px 0px 8px rgba(58,176,107,1);
          box-shadow: inset 0px 0px 0px 8px rgba(58,176,107,1);
        }
        .cad-price__item-ttl {
          font-size: 22px;
          font-family: 'Gilroy-ExtraBold';
          text-transform: uppercase;
          margin-bottom: 15px;
        }
        .cad-price__item-info {
          font-size: 42px;
        }
          .cad-price__item-info span {
            font-family: 'Gilroy-ExtraBold';
          }
      .cad-price__item:nth-child(1) {
        margin-bottom: 27px;
      }
        .cad-price__item:nth-child(1):after {
          bottom: -5px;
        }
        .cad-price__item:nth-child(2):after {
          top: -5px;
        }
      .cad-price__sticker {
        max-width: 341px;
        position: absolute;
        top: 35%;
        left: 420px;
      }
      .cad-price__sticker img {
        max-width: 100%;
      }
        .cad-price__sticker-descr {
          font-family: 'Gilroy-ExtraBold';
          font-size: 16px;
          text-align: center;
          max-width: 240px;
          margin: 10px auto 0;
        }
          .cad-price__sticker-descr span {
            font-size: 30px;
            display: block;
            color: #3ab06b;
           }
.auto-banner__cnt {
  position: relative;
  padding: 30px 0 80px;
}
  .auto-banner__cnt::after {
    content: '';
    position: absolute;
    width: 860px;
    height: 600px;
    background: url(../img/auto-banner__img.svg) no-repeat 50% 50% / contain;
    right: -50px;
    top: 10px;
    z-index: 2;
  }
.auto-banner__cnt .banner__form-wrp {
  max-width: 370px;
}
.auto-serv {
  background: url(../img/auto-serv__bg.jpg) fixed no-repeat 50% 50% / cover;
  position: relative;
  color: #000;
}
  .auto-serv::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    opacity: .8;
  }
  .auto-serv__container {
    position: relative;
  }
  .auto-serv .section__ttl {
      margin-top: -20px;
  }
  .auto-serv__item {
    padding-left: 80px;
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    margin-top: 8px;
    margin-bottom: 8px;
  }
    .auto-serv__item:before {
      content: '';
      position: absolute;
      width: 50px;
      height: 50px;
      left: 0;
      top: -4px;
      background: url(../img/grading__cases-gal.svg) no-repeat 50% 50% / contain;
    }
    .auto-serv__item-ttl {
      font-size: 16px;
      text-transform: uppercase;
      font-family: 'Gilroy-ExtraBold';
      margin-bottom: 5px;
    }
    .auto-serv__item-descr {
      font-weight: 600;
    }
.auto-stages {
  background-color: #fff;
} 
    .auto-stages .stages__item:last-child {
        margin-top: -3px;
    }
    .auto-stages .stages__item::after {
        height: 50px;
    }
.auto-gain {
  background: none;
}
  .auto-gain .section__ttl {
    margin-bottom: 50px;
  }
  .auto-gain::before {
    opacity: 1;
  }
  .auto-gain .gain__item:hover {
    -webkit-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -o-transform: translateY(-25px);
    transform: translateY(-25px);
  }
.crumbs {
  margin: 0;
  padding: 25px 0 15px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-align-items: center;
  align-items: center;
}
  .crumbs li {
    border: 1px solid #fff;
    border-left: transparent;
    position: relative;
    opacity: .63;
  }
  .crumbs a,
  .crumbs span {
    padding: 10px 20px 10px 39px;
    display: block;
  }
  .crumbs a {
    color: #fff;
  }
    .crumbs li:nth-child(1) a,
    .crumbs li:nth-child(1) span {
      padding-left: 15px;
    }
    .crumbs li:nth-child(1) {
      border-right: transparent;
      border-left: 1px solid #fff;
    }
    .crumbs li:not(last-child) {
      border-right: transparent;
    }
      .crumbs li:not(firs-child)::after {
        content: '';
        position: absolute;
        width: 28px;
        height: 28px;
        border-right: 1px solid #fff;
        border-bottom: 1px solid #fff;
        right: -15px;
        top: 5px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
      }
      .crumbs li.active {
        opacity: 1;
      }
      .crumbs li:hover {
        opacity: 1;
      }
.auto-docs {
    padding: 40px 0;
  background: url(../img/auto-docs__bg.jpg) fixed no-repeat 50% 50% / cover;
}
  .auto-docs .section__ttl {
      margin-top: -20px;
  }
  .auto-docs__bot .section__ttl {
    font-size: 25px;
    margin-top: 35px;
    margin-bottom: 7px;
  }
  .auto-docs__bot .input__wrp {
      border-color: #000;
      background-color: rgba(255, 255, 255, 0.64);
  }
  .auto-docs .grad-docs-tabs__list {
    justify-content: center;
  }
      .auto-docs .grad-docs-tabs__list li {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -ms-align-items: center;
        align-items: center;
        justify-content: center;
        color: #fff;
        padding: 5px 8px;
        background: #438da4;
        background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
        background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
        background: linear-gradient(to right, #438da4 0%,#39b563 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
        cursor: auto;
        font-size: 12px;
      }
  .auto-docs .grad-docs-tabs__cnt {
      min-height: unset;
      margin-bottom: 30px;
  }
      .auto-docs .grad-docs__inner-item {
        min-height: 385px;
        width: 100%;
        display: block;
        position: relative;
        margin-bottom: 15px;
      }
      .auto-docs .grad-docs__inner-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 102%;
        background: #438da4;
        background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
        background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
        background: linear-gradient(to right, #438da4 0%,#39b563 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
        opacity: .0;
      }
      .auto-docs .grad-docs__inner-item:hover::before {
          opacity: .8;
      }
      .auto-docs .grad-docs__inner-item-print {
          text-align: center;
          color: #fff;
          padding-top: 20px;
          font-weight: 600;
          display: block;
      }
      .auto-docs .grad-docs__inner-item-print::before {
          display: none;
      }
      .auto-docs__file-wrp {
        position: relative;
        cursor: pointer;
        padding: 10px 15px;
        background-color: #fff;
        border: 2px solid #000;
        border-radius: 6px;
        text-align: center;
       }
            /* .docs__file-wrp:hover {
                opacity: .7;
            } */
            .auto-docs__file {
            	width: 0.1px;
            	height: 0.1px;
            	opacity: 0;
            	overflow: hidden;
            	position: absolute;
            	z-index: -1;
            }
            .auto-docs__file-wrp::before {
                content: '';
                position: absolute;
                width: 38px;
                height: 22px;
                left: 37px;
                top: 9px;
                background: url(../img/auto-docs__file-img.png) no-repeat 50% 50% / contain;
            }
            .auto-docs__file-wrp::after {
                content: '';
                position: absolute;
                width: 38px;
                height: 22px;
                left: 37px;
                top: 9px;
                background: url(../img/auto-docs__file-img_1.png) no-repeat 50% 50% / contain;
                opacity: .0;
            }
            .auto-docs__file-wrp:hover {
                background-color: #39B54A;
                border-color: #39B54A;
            }
            .auto-docs__file-wrp:hover label.filename {
                color: #fff;
            }
            .auto-docs__file-wrp:hover::before {
                opacity: 0;
            }
            .auto-docs__file-wrp:hover::after {
                opacity: 1;
            }
                label.filename {
                    text-align: center;
                    text-transform: uppercase;
                    font-weight: 600;
                    padding-left: 8px;
                    font-size: 15px;
                    cursor: pointer;
                }
            .auto-docs__file-wrp.active label.filename{
                font-size: 11px;
            }
            .auto-docs__file-wrp.active::before,
            .auto-docs__file-wrp.active::after {
                display: none;
            }
.auto-calc {
  background: url(../img/auto-calc__bg.jpg) fixed no-repeat 50% 50% / cover;
  position: relative;
  color: #fff;
}
  .auto-calc::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #438da4;
    background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
    background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
    background: linear-gradient(to right, #438da4 0%,#39b563 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
    opacity: .86;
  }
  .auto-calc__container {
    position: relative;
  }
  .auto-calc .section__ttl {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
  }
  .auto-calc .section__subttl {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
  }
  .auto-calc__slider-wrp {
    max-width: 900px;
    position: relative;
    margin: 25px auto 50px; 
  }
    .auto-calc__slider-item-ttl {
      font-weight: 600;
      text-align: center;
      margin-bottom: 25px;
    }
    .auto-calc__slider-item {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      justify-content: center;
      -ms-align-items: center;
      align-items: center;
    }
      .auto-calc__radio-wrp {
        position: relative;
      }
        .auto-calc__radio-btn {
          font-size: 13px;
          font-weight: 600;
          text-transform: uppercase;
          text-align: center;
          padding: 17px 35px;
          color: #000;
          background-color: #fff;
          border: 1px solid #ccc;
          border-radius: 6px;
          position: relative;
          -webkit-box-shadow: 0px 7px 15px 2px rgba(0,0,0,0.16);
          -moz-box-shadow: 0px 7px 15px 2px rgba(0,0,0,0.16);
          box-shadow: 0px 7px 15px 2px rgba(0,0,0,0.16);
          width: 210px;
          cursor: pointer;
          position: relative;
          /*z-index: 1;*/
        }
          .auto-calc__radio-wrp:hover .auto-calc__radio-btn {
            color: #fff;
            background-color: #39B54A;
            border-color: transparent;
            -webkit-box-shadow: 0px 12px 22px 3px rgba(0,0,0,0.23);
            -moz-box-shadow: 0px 12px 22px 3px rgba(0,0,0,0.23);
            box-shadow: 0px 12px 22px 3px rgba(0,0,0,0.23);
          }
        .auto-calc__radio-wrp:not(last-child),
        .auto-calc__slider-item .input__wrp {
          margin-right: 15px;
        }
        .auto-calc__slider-item-wrp .popup__policy {
          max-width: unset;
          margin-left: auto;
          margin-right: auto;
          font-size: 14px;
        }
        .auto-calc__slider-item-wrp .popup__policy a {
            font-size: 14px;
            color: #fff;
        }
        .input__submit {
          margin-left: 0;
          margin-right: 0;
        }
        .auto-calc__radio {
          position: absolute;
          z-index: 1;
          opacity: 0;
          width: 240px;
          height: 54px;
        }
          .auto-calc__radio-wrp input[type="radio"]:checked + .auto-calc__radio-btn {
            color: #fff;
            background-color: #39B54A;
            border-color: transparent;
            -webkit-box-shadow: 0px 12px 22px 3px rgba(0,0,0,0.23);
            -moz-box-shadow: 0px 12px 22px 3px rgba(0,0,0,0.23);
            box-shadow: 0px 12px 22px 3px rgba(0,0,0,0.23);
          }
          .auto-calc__slider.owl-carousel .owl-nav button.owl-next, .auto-calc__slider.owl-carousel .owl-nav button.owl-prev {
            top: 28%;
          }
        .auto-calc__slider-wrp .input__wrp {
          background: rgba(255, 255, 255, 0.38);
        }
.review {
  background: url(../img/review__bg.jpg) fixed no-repeat 50% 50% / cover;
  position: relative;
  color: #000;
}
  .review::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    opacity: .79;
  }
  .rev__container {
    position: relative;
  }
  .review .section__subttl {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
  }
  .rev__item {
    background-position: 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    height: 230px;
    max-width: 330px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
  }
    .rev__item-btn {
      width: 63px;
      height: 63px;
      border-radius: 50%;
      background: #fff url(../img/review__play.svg) no-repeat 50% 50% / 40%;
      position: relative;
    }
    .rev__item::before {
      content: '';
      position: absolute;
      width: 120%;
      height: 100%;
      top: 0;
      left: 0;
      background: #438da4;
      background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
      background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
      background: linear-gradient(to right, #438da4 0%,#39b563 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
      opacity: 0;
      border-radius: 6px;
    }
    .rev__item:hover::before {
      opacity: .66;
    }
    .rev__item:hover .rev__item-btn {
      -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
      -o-transform: scale(1.2);
      transform: scale(1.2);
    }
/*.partners__in .tab-content__item {
  display: none;
  position: relative;
  -webkit-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  -o-transform: translateY(-20%);
  transform: translateY(-20%);
  opacity: 0;
}
.partners__in .tab-content__item.active {
  position: absolute;
  display: block;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
}*/
.partners__in {
  background: url(../img/partners__in-bg.jpg) fixed no-repeat 50% 50% / cover;
}
.partners__in .grad-docs-tabs__list {
    margin-bottom: 50px;
    justify-content: center;
}
.partners__in .grad-docs-tabs__list li {
  margin-left: 8px;
  margin-right: 8px;
  width: 220px;
  height: 60px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}
.partners__in .grad-docs-tabs__cnt {
    min-height: unset;
    padding-bottom: 40px;
}
.partners__in .owl-carousel .owl-dots {
    bottom: -25px;
}
/* .pertners__slider .owl-stage-outer {
    overflow-x: hidden;
}
.partners__slider .owl-stage {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
} */
  .partners__item-wrp {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column;
      justify-content: center;
      -ms-align-items: center;
      align-items: center;
  }
  .partners__item {
    width: 100%;
    height: 125px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 190px;
    background-color: #fff;
    border-radius: 6px;
    margin-bottom: 15px;
  }
.reviews__in {
  background: url(../img/reviews__in-bg.jpg) fixed no-repeat 50% 50% / cover;
}
  .reviews__in .grad-docs-tabs__cnt {
      min-height: unset;
  }
  .reviews__in .grad-docs-tabs__list {
      display: block;
  }
  .reviews__in .grad-docs-tabs__list li {
    max-width: 530px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
  }
    .reviews__in .owl-carousel .owl-prev,
    .reviews__in .owl-carousel .owl-next{
      bottom: 34%;
    }
    .reviews__cnt_text.owl-carousel .owl-prev,
    .reviews__cnt_text.owl-carousel .owl-next,
    .partners__in .owl-carousel .owl-prev,
    .partners__in .owl-carousel .owl-next {
      bottom: 43%;
    }
    .reviews__in .rev__item {
      margin-left: auto;
      margin-right: auto;
    }
    .reviews__in .grad-docs__inner-item {
      display: block;
      margin-left: auto;
      margin-right: auto;
    }
  .reviews__in .owl-carousel button.owl-dot.active,
  .partners__in .owl-carousel button.owl-dot.active{
    transform:scale(0.9);
    border:1px solid #000;
    background-color:#000;
  }
  .reviews__in .owl-carousel button.owl-dot,
  .partners__in .owl-carousel button.owl-dot {
    border-color: #000;
  }
.partners__in .partners__slider .owl-stage {
    margin-left: auto;
    margin-right: auto;
}
.dir {
  background: url(../img/dir__bg.jpg) fixed no-repeat 50% 50% / cover;
  position: relative;
  padding-bottom: 100px;
  color: #fff;
}
  .dir:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 103%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #438da4;
    background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
    background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
    background: linear-gradient(to right, #438da4 0%,#39b563 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
    opacity: 0.93;
  }
  .dir__container {
    position: relative;
  }
    .dir__container::before {
        position: absolute;
        content: '';
        left: 0;
        bottom: -101px;
        width: 567px;
        height: 726px;
        background: url(../img/dir__man.png) no-repeat 50% 50% / contain;
    }
    .dir__ttl {
        font-size: 18px;
        text-transform: uppercase;
        font-family: 'Gilroy-ExtraBold';
        margin-bottom: 12px;
        max-width: 100%;
        color: #000;
    }
    .dir__subttl,
    .dir__form-ttl {
        font-size: 16px;
        font-family: 'Gilroy-ExtraBold';
        margin-bottom: 12px;
        color: #000;
    }
    .dir__inputs .input__wrp {
        width: 80%;
        max-width: unset;
        margin-bottom: 12px;
        background-color: rgba(255, 255, 255, 0.38);
    }
    .dir__form .policy__checkbox-wrp {
        margin-left: 0;
        max-width: 450px;
    }
    .dir__form .input__submit {
      color: #fff;
      border: 2px solid #fff;
      background-color: transparent;
    }
    .dir__form .input__submit:hover {
      color: #fff;
      background-color: #39B54A;
      border-color: #39B54A;
    }
.about-page__info {
    padding-top: 0;
    background-color: #fff;
}
    .about-page__info-ttl {
        font-size: 18px;
        text-transform: uppercase;
        font-family: 'Gilroy-ExtraBold';
        margin-bottom: 30px;
    }
        .about-page__info-item {
            width: 100%;
            margin-bottom: 30px;
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flex;
            display: -o-flex;
            display: flex;
            -ms-align-items: center;
            align-items: center;
        }
            .about-page__info-item img {
                margin-right: 25px;
            }
            .about-page__info-item span:nth-child(1) {
                color: #39B54A;
                font-weight: 600;
            }
    
.about__team {
    background: url(../img/about__team-bg.jpg) fixed no-repeat 50% 50% / cover;
}
    .about__team .grad-docs-tabs__cnt  {
        min-height: 260px;
    }
    .about__team .grad-docs::before {
        background-color: #afafaf;
        opacity: 0.89
    }
    .about__team .grad-docs-tabs__list {
        justify-content: space-around;
        margin-bottom: 50px;
    }
    .about__team .grad-docs-tabs__list li {
        max-width: unset;
    }
        .about__pers {
            max-width: 170px;
        }
            .about__pers-img {
                width: 170px;
                height: 170px;
                margin-bottom: 20px;
                border-radius: 6px;
                background-position: 50% 50%;
                -webkit-background-size: 105%;
                background-size: 105%;
                background-repeat: no-repeat;
            }
            .about__pers-ttl {
                font-size: 18px;
                text-transform: uppercase;
                font-family: 'Gilroy-ExtraBold';
                margin-bottom: 9px;
            }
.news__tabs {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-bottom: 10px;
}
    .news__tabs-link {
        color: #fff;
        border: 2px solid #fff;
        background-color: transparent;
        max-width: 260px;
        margin-right: 20px;
    }
    .news__tabs-link:hover {
        color: #fff;
        background-color: #39B54A;
        border-color: #39B54A;
    }
    .news__tabs-link.active {
        color: #000;
        background-color: #fff;
        border-color: #fff;
    }
.news-image {
    display: block;
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}
    .news__date {
        margin-bottom: 30px;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -ms-align-items: center;
        align-items: center;
    }
        .news__date img {
            margin-right: 8px;
        }
    .news__back {
        font-size: 18px;
        text-transform: uppercase;
        font-family: 'Gilroy-ExtraBold';
        margin-bottom: 20px;
        display: block;
        padding-left: 20px;
        position: relative;
    }
        .news__back::before,
        .news__back::after {
            content: '';
            position: absolute;
            width: 9px;
            height: 12px;
            left: 0;
            top: 5px
        }
        .news__back::before {
            background: url(../img/news__back_black.svg) no-repeat 50% 50% / contain;
        }
        .news__back::after {
            background: url(../img/news__back_green.svg) no-repeat 50% 50% / contain;
            opacity: 0;
        }
        .news__back:hover::before {
            opacity: 0;
        }
        .news__back:hover::after {
            opacity: 1;
        }
.news__bot {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}
    .news__btn {
        margin: 15px 0;
        background-color: transparent;
        color: #000;
        border: 2px solid #000;
        position: relative;
    }
        .news__btn::before {
            content: '';
            position: absolute;
            width: 9px;
            height: 12px;
            top: 16px;
            background: url(../img/news__back_black.svg) no-repeat 50% 50% / contain;
        }
        .news__prev {
            padding-left: 40px;
        }
            .news__prev::before {
                left: 18px;
            }
        .news__next {
            padding-right: 40px;
        }
            .news__next::before {
                right: 18px;
                -moz-transform: scale(-1, 1);
                -webkit-transform: scale(-1, 1);
                -o-transform: scale(-1, 1);
                transform: scale(-1, 1);
            }
        .news__btn:hover {
            color: #fff;
            background-color: #39B54A;
            border-color: #39B54A;
        }
        .news__btn:hover::before {
            background: url(../img/slider__prev.svg) no-repeat 50% 50% / contain;
        }
.contacts__in {
    background: url(../img/reviews__in-bg.jpg) fixed no-repeat 50% 50% / cover;
    padding-top: 10px;
    padding-bottom: 20px;
}
    .office__item {
        position: relative;
        padding-left: 30px;
        margin-bottom: 15px;
    }
        .office__item::before {
            content: '';
            position: absolute;
            width: 15px;
            height: 15px;
            left: 0;
            top: 3px;
            background-position: 50% 50%;
            -webkit-background-size: contain;
            background-size: contain;
            background-repeat: no-repeat;
        }
            .office__item:nth-child(1)::before {
                background-image: url(../img/header__geo.svg);
            }
            .office__item:nth-child(2)::before {
                background-image: url(../img/header__tel.svg);
            }
            .office__item:nth-child(3)::before {
                background-image: url(../img/header__watches.svg);
            }
            .office__item:nth-child(4)::before {
                background-image: url(../img/feed__item-img_email.svg);
            }
                
        .office__item-ttl {
            font-size: 16px;
            text-transform: uppercase;
            font-family: 'Gilroy-ExtraBold';
        }
        .office__img {
            height: 267px;
            background-position: 50% 50%;
            background-repeat: no-repeat;
            -webkit-background-size: cover;
            background-size: cover;
        }
    .map__in img{
        max-width: 100%;
    }
.und {
    text-decoration: underline;
}
.map {
    padding-top: 40px;
    background: #438da4;
    background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
    background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
    background: linear-gradient(to right, #438da4 0%,#39b563 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
    padding-bottom: 30px;
}
    .map .section__ttl {
        color: #fff;
    }
    .map__ttl {
        font-size: 16px;
        text-transform: uppercase;
        font-family: 'Gilroy-ExtraBold';
        margin-bottom: 9px;
    }
    .map__item:nth-child(1) .map__ttl {
        color: red;
    }
    .map__item:nth-child(2) .map__ttl {
        color: #39B54A;
    }

.contacts__in .tab-content__item,
.partners__in .tab-content__item,
.reviews__in .tab-content__item{
	position: relative;
	top: 0;
	-webkit-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-o-transform: translateY(0%);
	transform: translateY(0%);
	display: none;
}
	.contacts__in .tab-content__item.active,
	.partners__in .tab-content__item.active{
		display: block;
	}
	
	.reviews__in .tab-content__item.active{
		display: none;
	}
	
.requisites__in table td {
    padding: 10px 5px;
}
    .requisites__in table td:nth-child(1) {
        font-size: 16px;
        font-family: 'Gilroy-ExtraBold';
        text-transform: uppercase;
    }
.contacts__form {
    margin-top: 40px;
}
    .contacts__form .input__wrp {
        background-color: rgba(255, 255, 255, 0.38);
    }
    .soc__img {
        width: 100%;
        height: 70px;
        margin-bottom: 20px;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        -webkit-background-size: contain;
        background-size: contain;
        position: relative;
    }
    .soc__ttl {
        text-align: center;
    }
    .contacts__form .policy__checkbox-wrp {
        max-width: 860px;
    }
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.gallery__item {
    flex-basis: 30%;
    margin-bottom: 45px;
}
.gallery__img {
    width: 100%;
}
blockquote {
    border-left: 5px solid rgba(0, 0, 0, 0.7);
    padding-left: 20px;
    margin-left: 0;
    font-style: italic;
}
.text ul li{
    list-style-type: disc;
}
.text ol li{
    list-style-type: decimal;
}
.text li {
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 1em;
    margin-inline-end: 1em;
}
input:required:valid,
select:required:valid,
textarea:required:valid{
  border-color: #39B563;
  background-color: #fdfec5;
}
.req input:invalid,
.req select:invalid,
.req textarea:invalid{
  border-color: red;
}

.h-300 {
    height: 277px!important;
    width: 80%!important;
}

.grad-docs_2 {
  background: url(../img/grad-docs_2__bg.jpg) fixed no-repeat 50% 50% / cover;
  position: relative;
  color: #000;
}
  .grad-docs_2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    opacity: .89;
  }
  .grad-docs_2__container {
    position: relative;
  }
  .grad-docs_2__cnt {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
      .grad-docs_2__item {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        -webkit-background-size: cover;
        background-size: cover;
        min-height: 600px;
        max-width: 370px;
        padding: 15px;
        margin-bottom: 15px;
      }
          .grad-docs_2__item::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-color: #fff;
            opacity: .89;
          }
          .grad-docs_2__ttl {
            font-size: 18px;
            font-family: 'Gilroy-ExtraBold';
            letter-spacing: 1.2px;
            text-transform: uppercase;
            text-align: center;
            position: relative;
          }
          .grad-docs_2__in {
            position: absolute;
            width: 100%;
            height: 100%;
            padding: 15px;
            left: 0;
            top: 0;
            background: #438da4;
            background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
            background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
            background: linear-gradient(to right, #438da4 0%,#39b563 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
            color: #fff;
            opacity: 0;
          }
              .grad-docs_2__in .btn {
                  display: block;
                  margin: 15px 25px;
                  color: #fff;
                  border: 2px solid #fff;
                  background-color: transparent;
              }
              .grad-docs_2__in .btn:hover {
                  color: #fff;
                  background-color: #39B54A;
                  border-color: #39B54A;
              }
              .grad-docs_2__cnt-item:not(:last-child) {
                  margin-bottom: 10px;
              }
                  .grad-docs_2__cnt-item span {
                      font-weight: 600;
                  }
        .grad-docs_2__item:hover .grad-docs_2__in {
            opacity: 1;
        }
        
    .grad-docs_2__item {
        margin: auto;
    }
    .grad-docs_2__cnt .owl-prev,
    .grad-docs_2__cnt .owl-next {
        bottom: 40%;
    }
.bus-banner {
    min-height: 460px;
    align-items: flex-start;
}
    .bus-banner::after {
        content: '';
        position: absolute;
        width: 990px;
        height: 390px;
        background: url(../img/bus-banner__img.png) no-repeat 50% 50% / contain;
        right: 0;
        top: 61px;
        z-index: 2;
    }
.bus-stages {
    position: relative;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
}
    .bus-stages::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: #fff;
        opacity: .8;
    }
    .bus-stages__container {
        position: relative;
    }
    .bus-stages .stages__item:nth-child(1)::after {
        height: 110px;
    }
    .bus-stages .stages__item:nth-child(2)::after {
        height: 110px;
    }
    .bus-stages .stages__item:nth-child(3)::after {
        height: 70px;
    }
    .bus-stages .stages__item:nth-child(4)::after {
        height: 50px;
    }
.bus-docs {
    position: relative;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    color: #fff;
    background-attachment: fixed;
}
    .bus-docs::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: #438da4;
        background: -moz-linear-gradient(left, #438da4 0%, #39b563 100%);
        background: -webkit-linear-gradient(left, #438da4 0%,#39b563 100%);
        background: linear-gradient(to right, #438da4 0%,#39b563 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#438da4', endColorstr='#39b563',GradientType=1 );
        opacity: .7;
    }
    .bus-docs::after {
        content: '';
        position: absolute;
        width: 431px;
        height: 100%;
        bottom: 0;
        left: 0;
        background: url(../img/bus-docs__img.png) no-repeat 50% 50% / contain;
        z-index: 3;
    }
    .bus-docs__container {
        position: relative;
        padding-left: 340px;
    }
        .bus-docs__container::before {
            content: '';
            position: absolute;
            width: 340px;
            height: 170%;
            left: -230px;
            top: -100px;
            background-color: #fff;
        }
    .bus-docs__cnt {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column;
    }
    .bus-docs__cnt .btn {
        padding-left: 60px;
        position: relative;
        color: #fff;
        border: 1px solid #fff;
        background: transparent;
        max-width: 460px;
        margin-bottom: 15px;
    }
    .bus-docs__cnt .btn::before,
    .bus-docs__cnt .btn::after{
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        left: 30px;
        background-position: 50% 50%;
        -webkit-background-size: contain;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .bus-docs__cnt .btn::after {
        opacity: 0;
    }
    .bus-docs__cnt .btn:hover {
        background-color: #fff;
        color: #000;
    }
    .bus-docs__cnt .btn:hover::before {
        opacity: 0;
    }
    .bus-docs__cnt .btn:hover::after {
        opacity: 1;
    }
    .bus-docs__cnt .btn::before {
        background-image: url(../img/bus-docs__download_white.png);
    }
    .bus-docs__cnt .btn::after {
        background-image: url(../img/bus-docs__download_black.png);
    }
#jGrowl {
    z-index: 99993;
}
.input__captcha {
    /* -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8); */
    margin: 15px 0;
}
/* Временая заглушка */

/* .overlay {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 104;
  text-align: center;
}
.overlay img {
  max-width: 50%;
  margin: 100px auto;
}
body {
  overflow: hidden;
} */

.overlay {
  display: none;
}

/* Временая заглушка END*/

.tooltip {
    position: relative;
    display: inline-block;
    
}
.qr img{
    box-shadow: 0 0 5px #fff;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 187px;
    background-color: #fff;
    color: #000000;
    text-align: center;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: calc(100% + 5px);
    left: 50%;
    transform:translateX(-50%);
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    visibility: hidden;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}
.tooltip:hover .tooltiptext::after {
    visibility: visible;
}