@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Cuprum:400,700&subset=cyrillic");
@font-face {
  font-family: 'BebasNeue-Regular';
  src: local("☺"), url("../fonts/BebasNeueRegular.woff") format("woff"), url("../fonts/BebasNeueRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'BebasNeue-Bold';
  src: local("☺"), url("../fonts/BebasNeueBold.woff") format("woff"), url("../fonts/BebasNeueBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}


.loader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
}

.laoder-frame {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100vh;
}

.svg-loader {
  width: 110px;
  -webkit-animation: svg-loader 1s linear infinite;
  animation: svg-loader 1s linear infinite;
}

@-webkit-keyframes svg-loader {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes svg-loader {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

@-webkit-keyframes shake {
  0%, to {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  0%, to {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
          animation-name: shake;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.spage ul {
  list-style: disc;
  margin: 0 0 1rem;
  padding: 0 0 0 20px;
}

body {
  position: relative;
  min-width: 320px;
  font-family: 'Cuprum', sans-serif;
  font-size: 16px;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}

header {
  background: #abd8f0 url("../img/header-bg.jpg") no-repeat center center;
  background-size: cover;
  overflow: hidden;
  z-index: 1;
}

.header-top {
  position: relative;
  z-index: 1;
}

.header-top-1 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.header-top-1 li {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  height: 67px;
  margin-right: 49px;
}

.header-top-1 li:last-child {
  margin-right: 0;
}

.header-top-1 a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 5px 5px 0;
  font: 18px "BebasNeue-Regular";
  color: #362981;
  text-decoration: none !important;
}

.header-top-1 a span {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
}

.header-top-1 a span:nth-child(1) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 2px;
  width: 39px;
}

.header-top-1 a img {
  max-width: 100%;
  height: auto;
}

.header-top-2 {
   column-count: 2;
	-webkit-column-count: 2;
	-moz-column-count: 2;
}

.header-top-2 li {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  height: 35px;
  margin-left: 20px;
  float: right;
}

.header-top-2 a {
  text-decoration: none !important;
}

.header-call {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin-right: 51px;
  padding: 4px 23.5px;
  border-radius: 16px;
  font: 20px "BebasNeue-Regular";
  color: #fff;
  text-align: center;
  background: linear-gradient(to top, #00a8ec 0%, #34baf0 100%);
}

.header-phone {
  display: -ms-inline-flexbox;
  display: inline-flex;
  font: 20px "BebasNeue-Regular";
  color: #362981;
}

.header-phone span {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
}

.header-phone span:nth-child(1) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  padding-right: 2px;
}

.header-phone img {
  max-width: 100%;
  height: auto;
}

.header-main {
  background: #362981;
  position: relative;
  box-shadow: 0 0 4.8px 0.3px rgba(0, 0, 0, 0.41);
}

.header-main-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.header-main-box.header-main-box-r {
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.header-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
}

.header-menu li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 65px;
  margin-right: 39px;
}

.header-menu li:last-child {
  margin-right: 0;
}

.header-menu li.header-menu-divider {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 390px;
}

.header-menu a {
  display: inline-block;
  padding: 5px 0;
  font: 20px "BebasNeue-Bold";
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.header-logo-wrap {
  position: relative;
}

.header-logo-box {
  position: absolute;
  left: 50%;
  top: 4px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 250px;
  height: 160px;
  border-radius: 50%;
  text-align: center;
  background: #362981;
}

.header-logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin: 16px 0 0;
}

.header-logo img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

.header-menu-btn-wrap {
  display: none;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
  background-color: #fff;
}

.hamburger {
  padding: 0;
}

.header-menu-btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 5px;
  width: 50px;
  height: 50px;
}

.header-menu-bg {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.s1 {
  position: relative;
  padding: 28px 0 0;
  height: 858px;
  background: url("../img/s1-bg-2.jpg") no-repeat center top;
  overflow: hidden;
}

.s1-left {
  position: relative;
  padding: 26px 11px 60px;
  width: 293px;
  text-align: center;
  background-image: linear-gradient(to bottom, #362981 0%, #2950b3 90%, transparent 100%);
}

.s1-left:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 30px;
}

.s1-left-title {
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.s1-news {
  margin: 16px 0 0;
}

.s1-news-item {
  margin-bottom: 7px;
  padding: 10px 16px;
  border: 1px solid #94bac7;
  border-radius: 30px;
  text-align: center;
}

.s1-news-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: #d5d9eb;
}

.s1-news-item a {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  color: #00a8ec;
}

.s1-news-item a:hover {
  text-decoration: none;
  color: #fff;
}

.s1-news-item:hover p {
  color: #fff;
}

.s1-news-btn {
  margin: 10px auto 0;
  padding: 7.5px 28px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none !important;
  color: #d5d9eb;
  transition: all 0.1s;
}

.s1-news-btn:hover {
  color: #2950b3;
  background: #fff;
}

.s1-right {
  max-width: 445px;
  
  margin: 10px auto 0;
  
  color: #362981;
  text-align: center;
  text-shadow: 2px 1px 1px #fff;
}

.s1-right-title {
  margin: 0;
  font-size: 27px;
  font-weight: 700;
  text-transform: uppercase;
}

.s1-right-text {
  margin: 27px 0 0;
  line-height: 1.25;
  font-size: 16px;
  font-weight: 700;
}

.s1-right-btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin: 51px auto 0;
  padding: 13.5px 79px;
  border: 2px solid #362981;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none !important;
  color: #362981;
  transition: all 0.1s;
}

.s1-right-btn:hover {
  color: #fff;
  background: #362981;
}

.s2 {
  position: relative;
  margin: -37px 0 0;
  padding: 0 0 73px;
  text-align: center;
}

.s-title {
  margin: 40px;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #362981;
}

.s2-items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 42px -5px 0;
}

.s2-item-main {
  -ms-flex-positive: 1;
      flex-grow: 1;
  padding: 5px;
}

.s2-item-wrap {
  margin-bottom: 21px;
}

.s2-item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: end;
      justify-content: flex-end;
  margin: 0 5px;
  height: 100%;
  text-align: center;
  background: #fff;
  box-shadow: 0 0 4.9px 0.1px rgba(0, 0, 0, 0.41);
}

.s2-item-perc {
  position: absolute;
  left: 11px;
  top: 13px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid #00a8ec;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #33b9f0;
}

.s2-item-img {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  padding: 5px 0 15px;
  height: 215px;
}

.s2-item-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.s2-item-title {
  padding: 0 19px;
}

.s2-item-title a {
  display: inline-block;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #362981;
}

.s2-item-price {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  padding: 3px 0 2px;
  color: #f03390;
  font-size: 20px;
  font-weight: 700;
}

.s2-item-price img {
  margin-right: 12px;
}

.s2-btns {
  display: -ms-flexbox;
  display: flex;
}

.s2-btns a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  height: 46px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.s2-btns a:nth-child(1) {
  border: 1px solid #00a8ec;
  color: #00a8ec;
}

.s2-btns a:nth-child(2) {
  color: #fff;
  background-image: linear-gradient(to top, #362981 0%, #362981 0%, #2950b3 100%);
}

.s2-items-btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin: 59px 0 0;
  padding: 21px 70px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none !important;
  color: #fff;
  background-image: linear-gradient(to top, #00a8ec 0%, #34baf0 100%);
}

.s3 {
  padding: 75px 0 106px;
  background: url("../img/s3-bg.jpg") no-repeat center center;
  background-size: cover;
}

.s3 .s-title {
  color: #fff;
}

.s3-items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: 96px;
}

.s3-item {
  position: relative;
  text-align: center;
}

.s3-item-img {
  height: 150px;
  line-height: 150px;
}

.s3-item-img img {
  max-width: 100%;
  height: auto;
}

.s3-item-info {
  margin: 29px auto 0;
  max-width: 290px;
  line-height: 1.25;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.s4 {
  padding: 78px 0 63px;
}

.s4-items {
  margin: 24px 0 0;
}

.s4-item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  overflow: hidden;
}

.s4-item > div:nth-child(1) {
  width: 59%;
}

.s4-item > div:nth-child(2) {
  width: 41%;
}

.s4-item-img {
  height: 100%;
  background-color: #362981;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.s4-item-box {
  padding: 0 44px;
  outline: none;
}

.s4-item-perc {
  position: absolute !important;
  left: 50%;
  top: 6px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 170px;
  height: 170px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.s4-item-main {
  position: relative;
  padding: 35px 20px 1px 8px;
  height: 100%;
  background-image: linear-gradient(to top, #362981 0%, #362981 0%, #2950b3 100%);
}

.s4-item-main > * {
  position: relative;
}

.s4-item-main:before {
  content: "";
  position: absolute;
  left: -70px;
  top: 0;
  width: 700px;
  height: 100%;
  -webkit-transform: skewX(18deg);
          transform: skewX(18deg);
  background-image: linear-gradient(to top, #362981 0%, #362981 0%, #2950b3 100%);
}

.s4-item-title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.s4-item-text {
  margin: 22px 20px 0;
  line-height: 1.25;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.s4-item-btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin: 51px 0 36px;
  padding: 12.5px 73px;
  border: 1px solid #fff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none !important;
  color: #fff;
  transition: all 0.1s;
}

.s4-item-btn:hover {
  border-color: #362981;
  color: #362981;
  background: #fff;
}

.s4-item-date {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  min-height: 21px;
}

.s4-item-date span {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.s4 .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0;
  border: 0;
  width: 0;
  height: 0;
  border-style: solid;
  font-size: 0;
  background: none;
  z-index: 1;
  cursor: pointer;
  outline: none;
  transition: all 0.1s;
}

.s4 .slick-arrow:hover {
  opacity: 0.5;
}

.s4 .slick-prev {
  left: 0;
  border-width: 15px 17px 15px 0;
  border-color: transparent #2f3d9b transparent transparent;
}

.s4 .slick-next {
  right: 0;
  border-width: 15px 0 15px 17px;
  border-color: transparent transparent transparent #2f3d9b;
}

.s5 {
  padding: 75px 0 162px;
  background: url("../img/s5-bg.jpg") no-repeat center center;
  background-size: cover;
}

.s5 .s-title {
  color: #fff;
}

.s5-items {
  margin: 35px 0 0;
}

.s5-item {
  position: relative;
  padding: 12px 22px 30px;
  text-align: center;
  background: rgba(62, 185, 234, 0.8);
  box-shadow: 0 0 4.8px 0.3px rgba(0, 0, 0, 0.41);
}

.s5-item-img {
  display: block;
  position: relative;
  line-height: 277px;
}

.s5-item-img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 209px;
  //border: 1px solid #fff;
}

.s5-item-img img {
  position: relative;
  display: inline;
  max-width: 100%;
  max-height: 400px;
  height: 400px;
  width: auto;
}

.s5-item-title {
  display: inline-block;
  margin: 22px 0 0;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.s5-item:hover .s5-item-hover {
  opacity: 1;
}

.s5-item-hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 20px 28px 10px;
  color: #fff;
  background: rgba(20, 148, 200, 0.8);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}

.s5-item-hover ul {
  margin: 17px 0 0;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.s5-item-hover ul li {
  position: relative;
  margin: 0 0 11px;
  padding: 0 0 0 35px;
  background: url("../img/s5-check.png") no-repeat 0 center;
}

.s5-item-heading {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.s5 .slick-arrow {
  position: absolute;
  left: 50%;
  bottom: -82px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  padding: 0;
  border: 0;
  width: 34px;
  height: 35px;
  font-size: 0;
  background: none;
  z-index: 1;
  cursor: pointer;
  outline: none;
  transition: all 0.1s;
}

.s5 .slick-arrow:hover {
  opacity: 0.5;
}

.s5 .slick-prev {
  margin-left: -41px;
  background: url("../img/s5-left.png");
}

.s5 .slick-next {
  margin-left: 41px;
  background: url("../img/s5-right.png");
}

.s6 {
  padding: 75px 0 180px;
  background: url("../img/s6-bg.jpg") no-repeat center top;
  background-size: cover;
}

.s6-heading {
  margin: 0;
  max-width: 550px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  color: #363538;
}

.s6-items {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 44px 0 33px;
}

.s6-items > div {
  width: 41%;
  margin: 0 0 40px;
}

.s6-items:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 272px;
  height: 1px;
  background: #1612b4;
}

.s6-item {
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 15px;
}

.s6-item > div:nth-child(1) {
  width: 102px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.s6-item > div:nth-child(2) {
  -ms-flex-positive: 1;
      flex-grow: 1;
}

.s6-item-img {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 71px;
  height: 100%;
}

.s6-item-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #362981;
}

.s6-item-text {
  max-width: 330px;
  margin: 17px 0 0;
  font-size: 14px;
  line-height: 1.2;
  color: #363538;
}

.s6-partners {
  margin: 167px 0 0;
}

.s6-partner-box {
  outline: none;
}

.s6-partner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  padding: 5px;
  height: 120px;
}

.s6-partner img {
  display: inline;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

.s6 .slick-arrow {
  position: absolute;  
  bottom: -100px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  padding: 0;
  border: 0;
  width: 34px;
  height: 35px;
  font-size: 0;
  background: none;
  z-index: 1;
  cursor: pointer;
  outline: none;
  transition: all 0.1s;
}

.s6 .slick-arrow:hover {
  opacity: 0.5;
}

.s6 .slick-prev {
  margin-left: -20px;
  left: 0px;
  background: url("../img/s6-left.png");
}

.s6 .slick-next {
  margin-right: -41px;
  right: 0px;
  background: url("../img/s6-right.png");
}

footer {
  padding: 40px 0 40px;
  background-image: linear-gradient(to top, #362981 0%, #362981 0%, #2950b3 100%);
  box-shadow: 0 0 4.8px 0.3px rgba(0, 0, 0, 0.41);
}

.footer-blocks {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-right: 24px;
}

.footer-block {
  padding-right: 10px;
}

.footer-block-heading {
  position: relative;
  margin: 0;
  min-height: 36px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fbfdfe;
}

.footer-block-heading:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 15px;
  height: 1px;
  background: #fff;
}

.footer-block-list {
  margin: 20px 0 0;
}

.footer-block-list li {
  margin-bottom: 8px;
}

.footer-block-list a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 5px 5px 5px 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fbfdfe;
}

.footer-block-contacts .footer-block-list li {
  margin-bottom: 20px;
}

.footer-block-contacts .footer-block-list span {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 49px;
}

.footer-block-contacts .footer-block-list a {
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
  text-decoration: none !important;
  color: #fff;
}

.footer-block-contacts .footer-block-list li:nth-child(1) a {
  font-size: 26px;
}

.footer-form-box {
  margin: 0 auto;
  max-width: 378px;
  text-align: center;
}

.footer-form-box form {
  margin: 24px auto 0;
}

.footer-form-box form > * {
  margin-bottom: 0;
}

.footer-form-box form label {
  display: block;
  margin: 0;
  min-height: 55px;
  font-size: 16px;
  color: #fff;
}

.footer-form-box form input {
  outline: none;
}

.footer-form-box form input[type="text"], .footer-form-box form input[type="email"], .footer-form-box form input[type="tel"], .footer-form-box form textarea {
  padding: 0 20px;
  width: 100%;
  height: 47px;
  border: 1px solid #fff;
  border-radius: 25px;
  font-size: 20px;
  color: #fff;
  background: transparent;
  outline: none;
}

.footer-form-box form input[type="text"]::-webkit-input-placeholder, .footer-form-box form input[type="email"]::-webkit-input-placeholder, .footer-form-box form input[type="tel"]::-webkit-input-placeholder {
  color: #fff;
}

.footer-form-box form input[type="text"]:-moz-placeholder, .footer-form-box form input[type="email"]:-moz-placeholder, .footer-form-box form input[type="tel"]:-moz-placeholder {
  color: #fff;
}

.footer-form-box form input[type="text"]::-moz-placeholder, .footer-form-box form input[type="email"]::-moz-placeholder, .footer-form-box form input[type="tel"]::-moz-placeholder {
  color: #fff;
}

.footer-form-box form input[type="text"]:-ms-input-placeholder, .footer-form-box form input[type="email"]:-ms-input-placeholder, .footer-form-box form input[type="tel"]:-ms-input-placeholder {
  color: #fff;
}

.footer-form-box form input[type="submit"] {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  padding: 17px 87px;
  border: 0;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fbfdfe;
  background: linear-gradient(to top, #00a8ec 0%, #34baf0 100%);
  cursor: pointer;
}

.footer-form-box div.wpcf7-validation-errors, .footer-form-box div.wpcf7-acceptance-missing {
  border: 1px solid #fff;
}

.footer-form-box span.wpcf7-not-valid-tip {
  color: #fff;
}

.footer-form-box div.wpcf7-response-output {
  margin: 10px 0 0;
  padding: 0;
  font-size: 16px;
  border: none;
  color: #ff0000;
  background: #fff;
}

.footer-form-box div.wpcf7-response-output.wpcf7-mail-sent-ok {
  color: #398f14;
}

.footer-form-box span.wpcf7-not-valid-tip {
  font-size: 16px;
}

.footer-form-heading {
  margin: -2px 0 0;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fbfdfe;
}

.s1n {
  display: none;
  background-image: linear-gradient(to bottom, #362981 0, #2950b3 100%);
}

@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

.hvr-ripple-out {
  -webkit-transform: perspective(1px) translateZ(0);
          transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}

.hvr-ripple-out:before {
  content: '';
  position: absolute;
  border: #34baf0 solid 4px !important;
  border-radius: 35px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.hvr-ripple-out:active:before, .hvr-ripple-out:focus:before, .hvr-ripple-out:hover:before {
  -webkit-animation-name: hvr-ripple-out;
          animation-name: hvr-ripple-out;
}

.blue-btn {
  color: #fff !important;
  background: #34baf0 !important;
}

@media (min-width: 1940px) {
  .s1 {
    background-size: 100% 858px;
  }
}

@media (max-width: 1259px) {
  .s2-item-title {
    padding: 0;
  }
  .s2-item-perc {
    width: 50px;
    height: 50px;
  }
  .s5-item, .s5-item-hover {
    padding: 10px;
  }
  .s5-item-title {
    margin: 10px 0 0;
  }
  .s5-item-list li {
    padding: 0 0 0 20px;
  }
  .s6-items > div {
    width: 49%;
    margin: 0 0 20px;
  }
  .s6-partners {
    margin: 60px 0 0;
  }
  .s6 .slick-arrow {
    bottom: 50px;
  }
  .footer-blocks {
    margin-right: 0;
  }
  .header-menu li {
    margin-right: 25px;
  }
  .header-top-1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: center;
        align-content: center;
    height: 100%;
  }
  .header-top-1 li {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: auto;
    margin-right: 0;
  }
  .header-top-2 {
    -ms-flex-flow: wrap-reverse;
        flex-flow: wrap-reverse;
    -ms-flex-line-pack: center;
        align-content: center;
    height: 100%;
    margin-top: 10px;
  }
  .header-top-2 li {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-top: 5px;
    float: initial;
  }
  .header-call {
    margin-right: 0;
  }
  .header-logo-box {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: auto;
    height: 100%;
    background: none;
  }
  .header-logo {
    margin-top: 0;
  }
  .header-top {
    padding: 10px 0;
  }
  .header-phone {
    margin-bottom: 7px;
  }
  .header-menu li.header-menu-divider {
    display: none;
  }
  .header-menu li {
    margin-right: 0;
  }
  .header-menu a {
    padding: 5px;
  }
  .s1-left {
    width: auto;
  }
  .s1-right {
    margin-top: 0;
  }
  .s1-news {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  .s1-left {
    margin-top: 0;
    padding: 30px 0;
  }
  .s1-news-item {
    width: calc(33.33% - 5px);
  }
  .s1n {
    display: block;
  }
  .s2 {
    margin-top: 0;
    padding-top: 30px;
  }
  .s1-left {
    background: none;
  }
}

@media (max-width: 991px) {
  .s4-item {
    display: block;
  }
  .s4-item > div:nth-child(1), .s4-item > div:nth-child(2) {
    width: 100%;
  }
  .s4-item-img {
    padding: 50% 0 0;
  }
  .s4-item-main:before {
    display: none;
  }
  .s4-item-perc {
    left: auto;
    right: 10px;
    top: 10px;
    -webkit-transform: none;
            transform: none;
    width: 100px;
    height: 100px;
    font-size: 35px;
  }
  .s4-item-main {
    padding: 15px 15px 1px;
    height: auto;
  }
  .s4-item-text {
    margin: 5px 0 0;
  }
  .s4-item-btn {
    margin: 20px 0;
  }
  .footer-blocks {
    margin-top: 50px;
  }
  .header-phone {
    font: 18px "BebasNeue-Regular";
  }
}

@media (max-width: 767px) {
  .s3-item-info {
    margin-top: 15px;
    max-width: none;
  }
  .s3-item {
    margin-bottom: 30px;
  }
  .s3-item-img {
    height: auto;
    line-height: normal;
  }
  .s6-items > div {
    display: block;
  }
  .s6-items > div {
    width: 100%;
  }
  .s6-item-text {
    max-width: none;
  }
  .s6-items > div:nth-child(3),
  .s6-items > div:nth-child(4),
  .s6-items > div:nth-child(5) {
    -ms-flex-order: 1;
        order: 1;
  }
  .s6-items > div:nth-child(6),
  .s6-items > div:nth-child(7),
  .s6-items > div:nth-child(8) {
    -ms-flex-order: 3;
        order: 3;
  }
  .s6-items > div:nth-child(2) {
    -ms-flex-order: 2;
        order: 2;
  }
  .header-menu-btn-wrap {
    display: -ms-flexbox;
    display: flex;
    padding: 5px 0;
  }
  .header-menu {
    position: fixed;
    left: 0;
    top: 0;
    display: block;
    padding: 10px;
    padding-left: 20px;
    height: 100vh;
    width: 220px;
    z-index: 999;
    background: #362981;
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
    transition: all 0.3s;
    opacity: 0.5;
  }
  .header-menu.opened {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
  }
  .header-menu li {
    margin-bottom: 5px;
    height: auto;
  }
  .header-logo {
    width: 150px;
  }
  header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column-reverse;
        flex-flow: column-reverse;
  }
  .s1-news {
    display: block;
  }
  .s1-news-item {
    width: 100%;
  }
  header.scrolled-2 {
    padding-top: 77px;
  }
  header.scrolled-2 .header-main {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 997;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  header.scrolled-3 .header-main {
    transition: all 1s;
  }
  header.scrolled .header-main {
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
    opacity: 1;
  }
  .s1n {
    position: relative;
    margin-top: -100px;
  }
  .header-top-2 {
    margin-top: 0px;
  }
}

@media (max-width: 575px) {
  .s2-items-btn {
    padding: 15px 40px;
  }
  .s2-item-title {
    min-height: auto;
  }
  .s4-item-box {
    padding: 0;
  }
  .s4 .slick-prev {
    left: 2px;
    border-width: 10px 10px 10px 0;
    border-color: transparent #fff transparent transparent;
  }
  .s4 .slick-next {
    right: 2px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #fff;
  }
  .s4-item-perc {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
  .s4-item-btn {
    padding: 10px 30px;
  }
  .s4-item-title {
    font-size: 23px;
  }
  .s4-item-text {
    font-size: 15px;
  }
  .s6-item {
    display: block;
  }
  .s6-item > div:nth-child(1) {
    width: auto;
  }
  .s6-item-img {
    width: auto;
    height: auto;
    margin: 0 0 10px;
  }
  .s6-item > div:nth-child(2) {
    text-align: center;
  }
  .s6-item-text {
    max-width: none;
    margin: 10px 0 0;
  }
  .s6-item {
    margin: 0 auto 10px;
    max-width: 300px;
  }
  .s6-heading {
    margin: 0 auto;
    max-width: 400px;
    text-align: center;
  }
  .s6-partner {
    padding: 0;
  }
  .footer-blocks {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-block:nth-child(1) {
    width: 100%;
  }
  .footer-block:nth-child(2) {
    width: 50%;
  }
  .footer-block:nth-child(3) {
    width: 50%;
  }
  .footer-blocks {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-block {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .s1-right-btn {
    padding: 10px 30px;
  }
  .s1-news-item {
    margin-bottom: 15px;
    padding: 10px;
  }
  .s2-item-wrap {
    margin-bottom: 21px;
  }
  .s2-item {
    margin: 0 auto;
    max-width: 300px;
  }
}

@media (max-width: 470px) {
  .header-top-2 li {
    -ms-flex-pack: start;
        justify-content: flex-start;
    margin-left: 0px;
  }
  .header-top .row > [class*="col-"] {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
  .header-top {
    max-width: 230px;
    margin: 0 auto;
  }
  .header-call-box {
    width: 100%;
    text-align: center;
  }
  .header-top-1 a span:nth-child(1) {
    width: 32px;
  }
}

/*# sourceMappingURL=styles.css.map */


#navigation.fixed{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

