/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0!important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

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

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
     -moz-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-height {
  -webkit-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  -moz-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  -o-transition: -o-transform 0.1s ease;
  -moz-transition: transform 0.1s ease, -moz-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease, -moz-transform 0.1s ease, -o-transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  -webkit-transform: scale(1.3, 1.3);
     -moz-transform: scale(1.3, 1.3);
       -o-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

@font-face {
  font-family: "Arial";
  src: url(../fonts/ARLRDBD.TTF);
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Mon";
  src: url(../fonts/Montserrat-Light.ttf);
  font-weight: 300;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Mon";
  src: url(../fonts/Montserrat-Regular.ttf);
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Mon";
  src: url(../fonts/Montserrat-Medium.ttf);
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Mon";
  src: url(../fonts/Montserrat-Bold.ttf);
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
}

* {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Mon";
  color: #4b4c4c;
  background: #fff;
}

main,
header,
footer {
  margin: 0 auto;
  padding: 0px 100px;
}

a,

textarea,
button {
  text-decoration: none;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}

input{

  border: none;
  background: none;
  outline: none;

}
.news__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 35px;
}

.news__title h2 {
  font-size: 37px;
  line-height: 34px;
  font-weight: 300;
  margin-right: 20px;
}

.blueLink {
  display: block;
  background: #528ed0;
  color: #fff;
  text-decoration: underline;
  padding: 6px 23px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 300;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  border: 1px solid #528ed0;
}

.blueLink:hover {
  background: #fff;
  color: #528ed0;
}

.news {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px -10px;
}

.newsItem {
  margin: 0px 10px;
  width: -moz-calc(100% / 4 - 20px);
  width: calc(100% / 4 - 20px);
  padding: 14px 18px 18px;
  border: 1px solid #efeff1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.newsItem__img img {
 
}

.newsItem__title {
  font-weight: 700;
  font-size: 13px;
  line-height: 21px;
  margin-bottom: 25px;
}

.newsItem__text {
  font-weight: 300;
  font-size: 13px;
  line-height: 23px;
  text-align: justify;
  margin-bottom: 30px;
}

.newsItem__text p {
  text-indent: 70px;
}

.newsItem__text p:first-child {
  text-indent: 0px;
}

.newsItem__btn {
  margin-top: auto;
  border: 1px solid #528ed0;
  color: #528ed0;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  line-height: 12px;
  padding: 8.5px 14px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.newsItem__btn span {
  font-size: 18px;
}

.newsItem__btn svg {
  margin-left: 5px;
}

.newsItem__btn:hover {
  background: #528ed0;
  color: #fff;
}

.newsItem__date {
  margin: 20px 0px 23px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
}

.newsItem__date span:first-child {
  font-size: 44px;
  line-height: 40px;
  margin-right: 10px;
}

.newsItem__btn:hover svg text tspan {
  fill: #fff;
}

.block-history {
  max-width: 1620px;
  background: #3b77b9;
  margin: 0 auto;
  padding: 70px 0px;
}

.history {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.history__inf {
  max-width: 650px;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 30px;
}

.history__img {
    width: 550px;
    max-width: 100%;
}

.history__img img {
  width: 100%;
}

.history__title {
  font-size: 37.5px;
  font-weight: 300;
  margin-bottom: 25px;
}

.history__text {
  margin-bottom: 25px;
  font-size: 13px;
  line-height: 24px;
}

.history__btn {
  border: 1px solid #fff;
  color: #fff;
}

.history__btn:hover {
  background: #fff;
  color: #528ed0;
}

.history__btn svg text tspan {
  fill: #fff;
}

.history__btn:hover svg text tspan {
  fill: #528ed0;
}

.link {
  color: #4b4c4c;
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
  font-size: 17px;
  text-decoration: underline;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  line-height: 30px;
  margin-left: 20px;
}

.link:hover {
  color: #528ed0;
}

.block-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.photos {
  margin-right: 30px;
  width: 100%;
  max-width: 830px;
}

.faq {
  width: 100%;
  max-width: 550px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.faq__quote {
  padding: 0px 45px;
  margin-bottom: 25px;
  font-size: 13px;
  line-height: 21px;
  text-align: justify;
  position: relative;
}

.faq__quote span {
  position: absolute;
  font-family: "Arial";
  font-weight: 700;
}

.faq__quote span:first-child {
  top: 0;
  left: 0;
}

.faq__quote span:last-child {
  bottom: -10px;
  right: 0;
}

.faq__inf {
  font-size: 13px;
  line-height: 21px;
  margin-bottom: 25px;
}

.photosSlider .owl-nav {
  margin-top: 0px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 41px;
}

.photosSlider .owl-nav button {
  margin: 0px !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.photosSlider .owl-nav button:focus {
  background: none !important;
}

.photosSlider .owl-nav button:hover {
  background: none !important;
}

.footer {
  color: #fff;
  padding: 60px 0px 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footerCol {
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footerCol:nth-child(4) {
  margin-right: 0px;
  margin-left: auto;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.footerCol a {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.footerCol a:hover {
  color: #fff;
  text-decoration: underline;
}

.footerInf {
  text-align: center;
  width: 100%;
  font-size: 13px;
  line-height: 21px;
  margin-top: 70px;
}

.footerCol__title {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 20px;
}

.footerCol__link,
.footerCol__inf {
  color: #fff;
  font-size: 13px;
  margin-bottom: 20px;
}

.footerCol__phone i {
  margin-right: 5px;
}

.footerCol__inf img {
  margin-right: 3px;
  margin-top: 4px;
  margin-bottom: -2px;
}

.footerCol__phone {
  margin-bottom: 20px;
  font-size: 24px;
}

.footerCol__phone span {
  font-weight: 500;
}

.btnUp {
  border: 1px solid #fff;
  width: 37px;
  height: 37px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  cursor: pointer;
}

.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px 0px;
}

.header__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  line-height: 21px;
  font-weight: 700;
  text-transform: uppercase;
}

.header__logo svg {
  margin-right: 10px;
}

.header__inf {
  font-size: 13px;
  line-height: 21px;
}

.header__inf span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__inf span img {
  margin-right: 5px;
}

.header__phone {
  font-size: 13px;
  line-height: 21px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 238px;
}

.header__phone .headerPhone {
  font-size: 22px;
  margin-bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__phone .headerPhone span {
  font-weight: 500;
}

.header__phone .headerPhone i {
  font-size: 16px;
  margin-bottom: 3px;
  display: inline-block;
  margin-right: 5px;
}

.header__search {
  border-bottom: 2px solid #434343;
  padding-bottom: 8px;

}

.header__search i {
  font-size: 12px;
}

.nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
}

.nav::-webkit-scrollbar {
  width: 0px;
}

.nav__link {
  padding: 15px 0px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  position: relative;
}

.nav__link i {
  font-size: 14px;
}

.nav-lg {
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  padding: 13px 0px;
}

.burger {
  position: relative;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

.burger span {
  position: absolute;
  display: block;
  background: #fff;
  width: 30px;
  height: 5px;
  left: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.burger span:nth-child(1) {
  top: 0;
  bottom: 20px;
}

.burger span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.burger span:nth-child(3) {
  bottom: 0;
  top: 20px;
}

.burger-active span:nth-child(1) {
  top: 10px;
  bottom: 10px;
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
}

.burger-active span:nth-child(2) {
  opacity: 0;
}

.burger-active span:nth-child(3) {
  top: 10px;
  bottom: 10px;
  -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.nav-lg__search {
  padding-bottom: 0px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  color: #fff;
  border-bottom: 1px solid transparent;
}

.nav-lg__search input {
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  color: #fff;
}

.nav-lg__search-active {
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
}

.nav-lg__search-active input {
  opacity: 1;
}

.subNav,
.subNav-2 {
  position: absolute;
  z-index: 9;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 200px;
  top: 35px;
  left: 0px;
  background: #fff;
  border: 1px solid #efeff1;
  color: #4b4c4c;
}

.subNav__link {
  width: 100%;
  padding: 10px 10px;
  border-top: 1px solid #efeff1;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}

.subNav__link:first-child {
  border-top: none;
}



.subNav-2 {
  left: 100%;
  top: -1px;
  display: none;
}

.subNav-2__link {
  width: 100%;
  padding: 10px 10px;
  border-top: 1px solid #efeff1;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-weight: 400;
  position: relative;
}

.subNav-2__link:first-child {
  border-top: none;
}



.subNav-show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.offer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.offer__left {
  background: #3578c1;
  margin-bottom: 4px;
  position: relative;
  max-width: 603px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.offer__left img {
  opacity: 0.5;
  margin-top: 1px;
}

.offer__right {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.offer__right img {
  width: 100%;
}

.offerContent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.offerContent__title {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  padding-top: 50px;
  text-transform: uppercase;
  background: #ccbf8d;
  background: -webkit-linear-gradient(322deg, #ccbf8d 0%, #ebe7d8 49%, #ccbf8d 100%);
  background: -moz-linear-gradient(322deg, #ccbf8d 0%, #ebe7d8 49%, #ccbf8d 100%);
  background: linear-gradient(128deg, #ccbf8d 0%, #ebe7d8 49%, #ccbf8d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1.5px;
}

.offerContent__title span {
  font-size: 200px;
  line-height: 190px;
  letter-spacing: normal;
}

.offerForm {
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 40px;
  width: 440px;
  margin-top: auto;
  margin-bottom: 100px;
  margin-right: -400px;

}

.offerForm__title {
  font-size: 21px;
  line-height: 21px;
  color: #414141;
}

.offerForm__inp {
  border: 1px solid #dce6f2;
  margin: 25px 0px;
}

.offerForm__link {
  font-size: 13px;
  color: #528ed0;
  text-decoration: underline;
}

.offerForm__inp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Mon";
}

.offerForm__inp span {
  background: #f4f4f4;
  padding: 8px 5px;
  font-size: 21px;
  line-height: 21px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #528ed0;
  margin-right: 15px;
  font-weight: 500;
  min-width: 28px;
}

.offerForm__inp input {
  max-width: 158px;
  font-size: 13px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-right: 5px;
}

.offerForm__inp button {
  font-family: "Mon";
  background: #528ed0;
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 8px 35px;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  border: 1px solid #528ed0;
}

.offerForm__inp button:hover {
  background: #3f91dc;
 
}

body,
div,
dl,
dt,
dd,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img,
abbr {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

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

.wrapper {
  max-width: 1620px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  background: #fff;
}

.wrapper-blue {
  background: #3b77b9;
}

.wrapper-black {
  background: #2f3338;
}

.wrapper-0 {
  padding: 0px;
}

.wrapper-padding {
  padding-top: 70px;
  padding-bottom: 110px;
}
.block-photos .wrapper-padding {
  padding-top: 100px;
  padding-bottom: 140px;
}
@media screen and (max-width: 1650px) {
  .offerContent__title {
    padding-top: 30px;
  }
}

@media screen and (max-width: 1620px) {
  .photos {
    max-width: 785px;
  }

  .offerForm {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 1530px) {
  .block-3 {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .photos {
    margin-bottom: 50px;
    margin-right: 0px;
    max-width: none;
  }

  .faq {
    max-width: none;
  }
}

@media screen and (max-width: 1480px) {
  .offerForm {
    margin-right: -300px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 1450px) {
  .offerContent__title {
    font-size: 20px;
  }

  .offerContent__title span {
    font-size: 160px;
    line-height: 150px;
  }
}

@media screen and (max-width: 1350px) {
  .offerForm {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1300px) {
  .footer {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .footerCol {
    margin-right: 0px;
  }

  .footerCol:nth-child(4) {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin-top: 30px;
  }

  .offerContent__title {
    font-size: 16px;
  }

  .offerContent__title span {
    font-size: 130px;
    line-height: 120px;
  }
}

@media screen and (max-width: 1220px) {
  .offerForm {
    margin-right: -200px;
 
    padding: 20px 30px;
    width: 350px;
  }

  .offerForm {
    margin-right: -200px;

    padding: 20px 30px;
    width: 370px;
  }

  .offerForm__inp {
    width: 100%;
  }

  .offerForm__inp {
    margin: 15px 0px;
  }

  .offerForm__inp button {
    padding: 8px 10px;
  }
}

@media screen and (max-width: 1200px) {
  .header-fixed {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
  }

  .newsItem {
    width: -moz-calc(100% / 2 - 20px);
    width: calc(100% / 2 - 20px);
    margin: 0px 10px 30px;
  }

  .header {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .header__search {
    display: none;
  }

  .nav {
    position: fixed;
    z-index: 99;
    background: #3b77b9;
    top: 51px;
    left: 100px;
    width: -moz-calc(100% - 200px);
    width: calc(100% - 200px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: -moz-calc(100vh - 51px);
    height: calc(100vh - 51px);
    overflow: scroll;
    display: none;
  }

  .nav__link {
    width: 100%;
    text-align: center;
    display: block;
  }

 

  .nav-lg {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }

  .subNav,
  .subNav-2 {
    position: static;
    display: none;
    width: 100%;
    margin-top: 10px;
  }

  .subNav__link {
    display: block;
    padding: 10px 0px;
  }

  
  
  .subNav-2 {
    display: none;
    border-bottom: none;
  }

  .subNav-2__link {
    display: block;
  }

  .subNav-2__link:last-child {
    border-bottom: none;
    padding-bottom: 0px;
  }

  
}

@media screen and (max-width: 1150px) {
  .offerContent__title {
    padding-top: 25px;
  }
}



@media screen and (max-width: 1024px) {
  main,
  header,
  footer {
    padding: 0px;
  }

  .nav {
    width: 100%;
    left: 0;
    max-width: none;
  }

  

  .wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .wrapper-0 {
    padding: 0px;
  }
   .offer {
    position: relative;
  }
}

@media screen and (max-width:1024px) {
  .offer__left {
    position: static;
    width: 0px;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
       -moz-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  
   .offerContent {
    top: 50px;
  }
  .offerContent__title span {
    font-size: 200px;
    line-height: 190px;
}
  }
@media screen and (max-width: 920px) {
  .block-history {
    padding: 40px 0px;
  }

  .history {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .history__inf {
    width: 100%;
    max-width: none;
    margin-right: 0px;
  }

  .history__img {
    width: 100%;
    max-width: none;
    margin-top: 30px;
  }

 



  .offer__left img {
    display: none;
  }

 
  .offerContent__title {
    font-size: 25px;
  }

  .offerContent__title span {
    font-size: 200px;
    line-height: 190px;
  }

  .offerForm {
    margin-right: 0px;
    padding: 30px 40px;
    width: 440px;
    margin-bottom: 100px;
  }

  .offerForm__inp span img {
    display: block;
  }
}

@media screen and (max-width: 820px) {
 

  .offerForm {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding-top: 30px;
  }

  .footerCol {
    width: 50%;
    margin-top: 30px;
  }

  .footerCol:nth-child(4) {
    width: 50%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .btnUp {
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
    margin-right: 20px;
  }

  .header__logo {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .header__inf {
    width: 50%;
    margin-top: 15px;
  }

  .header__phone {
    width: 50%;
    margin-top: 15px;
  }

  .offerContent__title {
    font-size: 20px;
  }

  .offerContent__title span {
    font-size: 160px;
    line-height: 150px;
  }

  .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .wrapper-0 {
    padding: 0px;
  }
}

@media screen and (max-width: 576px) {
  .news__title {
    margin-bottom: 15px;
  }

  .news__title h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .blueLink {
    margin-bottom: 10px;
  }

  .news {
    margin: 0px;
  }

  .newsItem {
    width: 100%;
    margin: 0px 0px 20px;
  }

  .history__title {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .history__text {
    margin-bottom: 20px;
  }

  .link {
    margin-left: 0px;
  }

  .header__logo {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .header__inf {
    width: 100%;
  }

  .header__phone {
    width: 100%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .offerContent {
    top: 20px;
  }

  .offerContent__title {
    font-size: 16px;
  }

  .offerContent__title span {
    font-size: 130px;
    line-height: 120px;
  }

  .offerForm {
    margin-bottom: 50px;
    padding: 20px 30px;
    width: 370px;
  }

  .wrapper-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 560px) {
  .footerCol {
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .footerCol:nth-child(4) {
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 450px) {
  .offerContent {
    top: 0px;
  }

  .offerForm {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 400px) { 
  

  .offerContent__title {
    padding-top: 20px;
  }

  .offerForm {
    width: 270px;
    padding: 20px;
    margin-bottom: 0px;
  }

  .offerForm__title {
    font-size: 16px;
  }

  .offerForm__inp {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 90%;
  }

  .offerForm__inp button {
    width: 100%;
  }
}