﻿arset "UTF-8";
html, body, div, applet, object, iframe,
h1, h2, h3, h4, h5, h6,
abbr, acronym, address, big, cite, code,
del, dfn, ins, kbd, s, samp,
small, strike, sub, sup, tt, var,
center,
dl, dt, dd,
fieldset, form, label, legend,
caption, tbody, tfoot, thead,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
  position: relative;
  min-height: 100%;
}

@font-face {
  font-family: Commissioner;
  font-display: swap;
  src: url("../fonts/Commissioner-Regular.ttf");
}
@font-face {
  font-family: Commissioner;
  font-display: swap;
  src: url("../fonts/Commissioner-Black.ttf");
  font-weight: 900;
}
@font-face {
  font-family: Commissioner;
  font-display: swap;
  src: url("../fonts/Commissioner-Light.ttf");
  font-weight: 200;
}
@font-face {
  font-family: Commissioner;
  font-display: swap;
  src: url("../fonts/Commissioner-Thin.ttf");
  font-weight: 100;
}
@font-face {
  font-family: Jost;
  font-display: swap;
  src: url("../fonts/Jost-Regular.ttf");
}
@font-face {
  font-family: Jost;
  font-display: swap;
  src: url("../fonts/Jost-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: Jost;
  font-display: swap;
  src: url("../fonts/Jost-Light.ttf");
  font-weight: 300;
}
body {
  min-width: 100%;
  margin: 0 0 258px;
  font-family: Jost;
}

a {
  color: #000;
}

a:hover {
  text-decoration: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

.content ul {
  list-style: initial;
  margin: initial;
  padding: 0 0 0 40px;
}

.content li {
  display: list-item;
}

#wrapper {
  min-width: 1240px;
  overflow: hidden;
}

.middle {
  width: 1240px;
  margin: auto;
  position: relative;
}

.middle:after {
  content: "";
  display: table;
  clear: both;
  width: 100%;
}

/*----------------------шапка------------------------*/
header {
  position: fixed;
  left: 0;
  top: 0;
  height: 105px;
  width: 100%;
  display: block;
  z-index: 12;
  opacity: 0;
  -webkit-transform: translateY(-110px);
          transform: translateY(-110px);
  -webkit-transition: opacity 1.5s, -webkit-box-shadow 0.3s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-box-shadow 0.3s, -webkit-transform 1.5s;
  transition: box-shadow 0.3s, opacity 1.5s, transform 1.5s;
  transition: box-shadow 0.3s, opacity 1.5s, transform 1.5s, -webkit-box-shadow 0.3s, -webkit-transform 1.5s;
}

body.loaded header {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

body.loaded .top__center:before,
body.loaded .top__center:after,
body.loaded .top h1,
body.loaded .top__text,
body.loaded .top .button {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

header.is_stuck {
  background: #fff;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
}

#logo {
  position: absolute;
  top: 22px;
  left: 0;
  display: block;
  background: url("../images/logo.png") no-repeat, url("../images/logo.svg") no-repeat 78px 0;
  width: 360px;
  height: 64px;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  padding: 30px 0 0 78px;
  outline: none;
  overflow: hidden;
}
#logo span {
  display: block;
  font-size: 12px;
  line-height: 15px;
  color: #6B717D;
}


#logo:before {
  content: '';
  display: block;
  height: 150%;
  width: 3px;
  background: rgba(255,255,255,1);
  box-shadow: 0 0 7px 5px rgb(255 255 255);
  position: absolute;
  margin: auto;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: 2;
  transform: rotate(45deg);
  animation: glowing 6s linear infinite;
}

@keyframes glowing {
  0% { transform: rotate(45deg) translate(-40px, -40px); }
  25% { transform: rotate(45deg) translate(110px, 40px);  }
  100% { transform: rotate(45deg) translate(110px, 40px);  }
}


nav {
  position: absolute;
  left: 425px;
  top: 51px;
  width: 364px;
}
nav ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
nav ul li {
  font-family: Commissioner;
  font-size: 16px;
  line-height: 20px;
}
nav ul li a {
  color: #000;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: #6B717D;
}
nav ul li span {
  color: #6B717D;
}

.phones {
  position: absolute;
  right: 0;
  top: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: Commissioner;
  width: 356px;
}
.phones__wa {
  display: block;
  padding-left: 24px;
  background: url("../images/icon_wa.svg") no-repeat 0 50%;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
}
.phones span {
  display: block;
  font-size: 12px;
  line-height: 15px;
  color: #6B717D;
}
.phones__link {
  display: none;
}
.phones__ru {
  width: 150px;
  background: url("../images/icon_ru.png") no-repeat 100% 95%;
}
.phones__ru span {
  padding-left: 34px;
}
.phones__kyr {
  width: 155px;
  background: url("../images/icon_kyr.png") no-repeat 100% 95%;
}
.phones__kyr span {
  margin-left: -7px;
}

#pull {
  display: none;
  position: absolute;
  right: 0;
  top: 14px;
  width: 32px;
  height: 32px;
  background: #AB8259;
  border-radius: 20px;
  cursor: pointer;
}

#pull div {
  display: block;
  width: 14px;
  height: 2px;
  position: absolute;
  margin: auto;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  -webkit-transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, transform 0.3s;
  transition: background 0.3s, transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition: background 0.3s, transform 0.3s;
}

#pull div:before,
#pull div:after {
  content: "";
  display: block;
  height: 2px;
  width: 14px;
  position: absolute;
  right: 0;
  background: #fff;
  transform-origin: 100% 50%;
  -webkit-transform-origin: 100% 50%;
  -webkit-transition: width 0.3s, background 0.3s, -webkit-transform 0.3s;
  transition: width 0.3s, background 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, width 0.3s, background 0.3s;
  transition: transform 0.3s, width 0.3s, background 0.3s, -webkit-transform 0.3s;
  -webkit-transition: transform 0.3s, width 0.3s, background 0.3s;
}

#pull div:before {
  top: -5px;
}

#pull div:after {
  bottom: -5px;
}

.menu_opened #pull div {
  background: rgba(0, 0, 0, 0);
  -webkit-transform: translateX(-2px);
          transform: translateX(-2px);
}

.menu_opened #pull div:before,
.menu_opened #pull div:after {
  width: 14.5px;
}

.menu_opened #pull div:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform-origin: 100% 50%;
  -webkit-transform-origin: 100% 50%;
}

.menu_opened #pull div:after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform-origin: 100% 50%;
  -webkit-transform-origin: 100% 50%;
}

.button {
  display: block;
  background: url("../images/arrow.svg") no-repeat right 25px center #2D2D2D;
  width: 341px;
  height: 60px;
  padding-left: 35px;
  line-height: 60px;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #FFF;
  line-height: 60px;
  text-decoration: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.button:hover {
  background: url("../images/arrow.svg") no-repeat right 35px center #AB8259;
}

.top {
  height: 994px;
  height: 100vh;
  overflow: hidden;
}

.top .middle {
  height: 100%;
}

.top__center:before,
.top__center:after {
  content: "";
  display: block;
  width: 1px;
  /*height: 426px;*/
  position: absolute;
  top: 245px;
  background: #000;
  opacity: 0;
  margin: auto;
  bottom: 0;
  top: 4%;
  top: 0;
  bottom: 0;
}
.top__center:before {
  left: 0;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  -webkit-transition: opacity 1.5s 1.5s, -webkit-transform 1.5s 1.5s;
  transition: opacity 1.5s 1.5s, -webkit-transform 1.5s 1.5s;
  transition: opacity 1.5s 1.5s, transform 1.5s 1.5s;
  transition: opacity 1.5s 1.5s, transform 1.5s 1.5s, -webkit-transform 1.5s 1.5s;
}
.top__center:after {
  right: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: opacity 1.5s 1s, -webkit-transform 1.5s 1s;
  transition: opacity 1.5s 1s, -webkit-transform 1.5s 1s;
  transition: opacity 1.5s 1s, transform 1.5s 1s;
  transition: opacity 1.5s 1s, transform 1.5s 1s, -webkit-transform 1.5s 1s;
}
.top__name {
  display: none;
}
.top__bg {
  position: absolute;
  right: -75px;
  top: 13px;
  bottom: 0;
  height: calc(100vh - 13px);
}
.top__image {
  position: absolute;
  z-index: 2;
  right: 93px;
  top: 111px;
  height: calc(100vh - 111px);
}

.top__center {
  position: absolute;
  margin: auto;
  left: 0;
  top: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-51%);
}

.top__content {
  padding: 230px 0 0 0;
  margin-left: 77px;
  max-width: 800px;
  position: relative;
  z-index: 3;
  /*padding-top: 24vh;*/
  padding-top: 0;
}
.top h1 {
  font-family: Commissioner;
  font-weight: 100;
  font-size: 60px;
  line-height: 120%;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 65px;
  opacity: 0;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  -webkit-transition: opacity 1.5s 1.5s, -webkit-transform 1.5s 1.5s;
  transition: opacity 1.5s 1.5s, -webkit-transform 1.5s 1.5s;
  transition: opacity 1.5s 1.5s, transform 1.5s 1.5s;
  transition: opacity 1.5s 1.5s, transform 1.5s 1.5s, -webkit-transform 1.5s 1.5s;
}
.top__text {
  font-weight: 300;
  font-size: 24px;
  line-height: 150%;
  color: #000;
  max-width: 610px;
  margin-bottom: 64px;
  opacity: 0;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  -webkit-transition: opacity 1.5s 1.8s, -webkit-transform 1.5s 1.8s;
  transition: opacity 1.5s 1.8s, -webkit-transform 1.5s 1.8s;
  transition: opacity 1.5s 1.8s, transform 1.5s 1.8s;
  transition: opacity 1.5s 1.8s, transform 1.5s 1.8s, -webkit-transform 1.5s 1.8s;
}
.top .button {
  opacity: 0;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  -webkit-transition: opacity 1.5s 2.1s, background 0.3s, -webkit-transform 1.5s 2.1s;
  transition: opacity 1.5s 2.1s, background 0.3s, -webkit-transform 1.5s 2.1s;
  transition: opacity 1.5s 2.1s, transform 1.5s 2.1s, background 0.3s;
  transition: opacity 1.5s 2.1s, transform 1.5s 2.1s, background 0.3s, -webkit-transform 1.5s 2.1s;
}
.top__numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 510px;
  position: absolute;
  left: 77px;
  bottom: 70px;
}
.top__numbers li {
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #6B717D;
  max-width: 140px;
}
.top__numbers li div {
  line-height: 100%;
  font-family: Commissioner;
  font-weight: 100;
  color: #AB8259;
  font-size: 40px;
}
.top__numbers li div span {
  font-size: 80px;
  line-height: 100%;
}
.top__numbers li:last-child {
  max-width: 170px;
}

.title {
  padding-left: 78px;
  position: relative;
  line-height: 215px;
  min-height: 200px;
}
.title h2 {
  display: inline-block;
  vertical-align: middle;
  font-weight: 100;
  font-size: 40px;
  line-height: 100%;
  text-transform: uppercase;
  color: #000;
  font-family: Commissioner;
  position: relative;
  z-index: 2;
}
.title__back {
  position: absolute;
  left: 0;
  top: 0;
  font-family: Commissioner;
  font-weight: 900;
  font-size: 200px;
  line-height: 100%;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.03);
}

.about {
  background: #F5F5F5;
  padding: 46px 0 83px;
}
.about .title {
  margin-bottom: -55px;
}
.about h2:after {
  content: "";
  display: block;
  width: 406px;
  height: 1px;
  background: #000;
  position: absolute;
  margin: auto;
  bottom: 0;
  top: 0;
  left: 100%;
  margin-left: 47px;
}
.about__content {
  margin-left: 313px;
}
.about .show {
  display: none;
}

.register {
  padding: 72px 0 57px;
}
.register__flags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 23px;
}
.register__flags li {
  width: 19.35%;
}
.register__flags li img {
  display: block;
  width: 100%;
}
.register .title {
  margin-bottom: 30px;
}
.register__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
}
.register__options li {
  padding-top: 43px;
  position: relative;
  width: 487px;
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 20px;
  line-height: 130%;
}
.register__options li span {
  color: #AB8259;
}
.register__options li:before {
  content: "";
  display: block;
  width: 14px;
  height: 26px;
  background: url("../images/arrow_down.svg") no-repeat 50%;
  position: absolute;
  margin: auto;
  top: 0;
}
.register__options li h3 {
  font-family: Commissioner;
  font-weight: 200;
  font-size: 36px;
  line-height: 100%;
  color: #000;
  margin-bottom: 17px;
}
.register__option1 {
  text-align: right;
}
.register__option1:before {
  right: 100px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.register__option2:before {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  left: 100px;
}
.register__pluses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.register__pluses li {
  margin-bottom: 20px;
  width: 407px;
  font-weight: 300;
  font-size: 20px;
  line-height: 130%;
  padding: 45px 49px 43px;
}
.register__pluses li div {
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  margin-bottom: 20px;
}
.register__plus1 {
  border: 1px solid #D1D1D1;
}
.register__plus2 {
  background: #F5F5F5;
  border: 1px solid #F5F5F5;
}
.register__plus3 {
  background: #1E1E1E;
  border: 1px solid #1E1E1E;
  color: #fff;
}

.content {
  font-weight: 300;
  font-size: 20px;
  line-height: 130%;
  color: #000;
}
.content p {
  margin: 0 0 25px;
}
.content span {
  color: #ab8259;
}

.slider_controls {
  width: 358px;
  position: relative;
  height: 14px;
  margin: auto;
}
.slider_controls .swiper-pagination {
  position: static;
  margin: auto;
  padding-top: 5px;
  font-size: 0;
}
.slider_controls .swiper-pagination .swiper-pagination-bullet {
  margin: 0 2.5px;
  width: 6px;
  height: 6px;
  background: #6B717D;
  opacity: 1;
}
.slider_controls .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #AB8259;
}

.swiper-button-prev,
.swiper-button-next {
  display: block;
  margin: 0;
  width: 36px;
  height: 14px;
  position: absolute;
  top: 0;
  outline: none;
  background: url("../images/prev.svg") no-repeat 100% 50%;
  -webkit-transition: background-position 0.3s;
  transition: background-position 0.3s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-position: 0 50%;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  right: 0;
}

.cert {
  padding-bottom: 107px;
}
.cert a {
  outline: none;
}
.cert .title {
  margin-bottom: 0;
}
.cert__slider {
  padding: 40px 40px 0;
  overflow: hidden;
  width: calc(100% + 80px);
  margin-left: -40px;
}
.cert .swiper-slide {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.cert .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.cert .swiper-slide.swiper-slide-active.swiper-slide-active + .swiper-slide, .cert .swiper-slide.swiper-slide-active.swiper-slide-active + .swiper-slide + .swiper-slide, .cert .swiper-slide.swiper-slide-active.swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide {
  opacity: 1;
}
.cert__block {
  width: 303px;
  height: 477px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  padding: 15px 18px 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #000;
}
.cert__block a {
  display: block;
  margin-bottom: 17px;
}
.cert__block a img {
  display: block;
  width: 100%;
}
.cert__block span {
  display: block;
  padding-top: 9px;
  color: #AB8259;
}
.cert .swiper-wrapper {
  margin-bottom: 65px;
}

.grey {
  background: #F5F5F5;
}

.protect {
  background: #F5F5F5;
  padding: 69px 0 0;
}
.protect__options {
  margin-top: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.protect__options li {
  padding-top: 56px;
  position: relative;
  width: 400px;
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #000000;
}
.protect__options li:before {
  content: "";
  display: block;
  width: 14px;
  height: 26px;
  background: url("../images/arrow_down.svg") no-repeat 50%;
  position: absolute;
  margin: auto;
  top: 0;
}
.protect__options li h3 {
  font-family: Commissioner;
  font-weight: 300;
  font-size: 36px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 17px;
}
.protect__options li img {
  display: block;
  margin: 0 auto 14px;
}
.protect__option1:before {
  right: 160px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.protect__option2:before {
  margin: auto;
  left: 0;
  right: 0;
}
.protect__option3:before {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  left: 160px;
}

.swiper-grid-column > .swiper-wrapper {
  height: 792px;
  margin-bottom: 17px;
}

.cases {
  background: #F5F5F5;
  padding-top: 34px;
  margin-bottom: 0;
}
.cases__slider {
  max-width: 1059px;
  padding: 40px 30px 32px;
  overflow: hidden;
  width: calc(100% + 60px);
  margin: -100px auto 0;
}
.cases .swiper-slide {
  height: calc((100% - 56px) / 2) !important;
  margin-top: 0 !important;
  margin-bottom: 28px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cases__block {
  width: 511px;
  height: 368px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  padding-top: 30px;
  position: relative;
}
.cases__image {
  display: block;
  height: 175px;
  width: 100%;
  margin: auto;
  position: relative;
}
.cases__image img {
  display: block;
  position: absolute;
  margin: auto;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  max-width: 100% !important;
  max-height: 100%;
}
.cases__text {
  position: absolute;
  bottom: 29px;
  left: 0;
  padding: 0 30px;
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
  color: #000;
}
.cases__text p {
  font-size: 24px;
  margin: 0 0 17px;
}
.cases__text span {
  display: block;
  color: #AB8259;
  margin: 12px 0 0;
}

.prices {
  padding: 117px 0 43px;
}
.prices__center {
  margin: 0 32px 0 78px;
}
.prices__top {
  margin-top: -15px;
  padding-right: 71px;
  width: 100%;
  margin-bottom: 109px;
}
.prices__top li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 22px;
}
.prices__top li span {
  font-weight: 300;
  font-size: 22px;
  line-height: 100%;
  padding-right: 20px;
}
.prices__top li div {
  height: 19px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(20%, #D1D1D1), color-stop(0%, rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #D1D1D1 20%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 8px 2px;
  background-repeat: repeat-x;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.prices__top li b {
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  text-align: right;
  color: #AB8259;
  padding-left: 20px;
  white-space: nowrap;
}
.prices h3 {
  font-family: Commissioner;
  font-style: normal;
  font-weight: 100;
  font-size: 40px;
  line-height: 100%;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 60px;
}
.prices__block {
  background: #F5F5F5;
  position: relative;
  height: 100%;
}
.prices__block h4 {
  font-family: Commissioner;
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  line-height: 130%;
  text-transform: uppercase;
  color: #000000;
}
.prices__data {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: #000;
  margin-bottom: 5px;
}
.prices__data li {
  position: relative;
  margin-bottom: 5px;
}
.prices__data li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  left: -24px;
  top: 10px;
  border-radius: 10px;
  background: #AB8259;
}
.prices b {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: #AB8259;
}
.prices__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.prices__grid > li {
  margin-bottom: 24px;
  display: block;
}
.prices__grid.grid2 > li {
  width: 47.3%;
}
.prices__grid.grid2 > li .prices__block {
  padding: 44px 40px 125px 48px;
}
.prices__grid.grid2 > li .prices__block h4 {
  margin-bottom: 30px;
}
.prices__grid.grid2 > li .prices__block b {
  position: absolute;
  left: 48px;
  bottom: 58px;
}
.prices__grid.grid2 > li .button {
  position: absolute;
  bottom: 40px;
  right: 42px;
  width: 268px;
}
.prices__grid.grid3 > li {
  width: 31%;
}
.prices__grid.grid3 > li .prices__block {
  padding: 35px 23px 145px 35px;
}
.prices__grid.grid3 > li .prices__block h4 {
  margin-bottom: 22px;
}
.prices__grid.grid3 > li .prices__block b {
  position: absolute;
  left: 41px;
  bottom: 118px;
}
.prices__grid.grid3 > li .button {
  position: absolute;
  bottom: 36px;
  left: 35px;
  right: 23px;
  width: auto;
}
.prices__region {
  font-size: 14px;
  line-height: 120%;
  color: #AB8259;
  position: absolute;
  right: 22px;
  top: 51px;
}
.prices__tip {
  width: 406px;
  border-bottom: 1px solid #1E1E1E;
  font-weight: 300;
  font-size: 14px;
  line-height: 180%;
  color: #000;
  padding-bottom: 24px;
  margin-bottom: 80px;
  min-height: 40px;
}

.contacts {
  padding-top: 50px;
  padding-bottom: 69px;
}
.contacts .title {
  margin-bottom: 5px;
}
.contacts__list {
  margin: 0 29px 0 81px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contacts__list > li {
  margin-bottom: 48px;
}
.contacts__block {
  position: relative;
}
.contacts__block ul {
  margin-bottom: 39px;
}
.contacts__block li {
  min-height: 18px;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 100%;
  color: #000;
  font-weight: 400;
}
.contacts__city {
  font-family: Commissioner;
  font-weight: 200;
  font-size: 36px;
  line-height: 100%;
  color: #000;
  margin-bottom: 38px;
  position: relative;
}
.contacts__city:after {
  content: "";
  display: block;
  position: absolute;
  left: 284px;
  right: 0;
  top: 23px;
  background: #1E1E1E;
  height: 1px;
}
.contacts__place {
  padding-left: 25px;
  background: url("../images/cont1.svg") no-repeat 0 50%;
}
.contacts__phone {
  padding-left: 25px;
  background: url("../images/cont2.svg") no-repeat 0 50%;
}
.contacts__mail {
  padding-left: 25px;
  background: url("../images/cont3.svg") no-repeat 0 50%;
}
.contacts__map {
  width: 533px;
  height: 341px;
  overflow: hidden;
}
.contacts__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contacts__country {
  font-size: 14px;
  line-height: 100%;
  color: #6B717D;
  margin-top: -29px;
  margin-bottom: 15px;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

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

.wa_mobile {
  display: none;
}

/* Footer
-----------------------------------------------------------------------------*/
footer {
  display: block;
  height: 258px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #1E1E1E;
  color: #fff;
}
footer .logo {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 33px;
  width: 224px;
  padding-top: 116px;
  text-align: center;
  background: url("../images/logo_footer.svg") no-repeat 50% 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  color: #FFF;
  text-decoration: none;
}
footer .logo span {
  display: block;
  font-weight: 300;
  font-size: 12px;
  line-height: 17px;
  text-align: center;
  color: #D1D1D1;
}
footer .phones {
  position: absolute;
  right: 25px;
  top: 113px;
  width: 356px;
  font-family: Jost;
}
footer .phones__wa {
  background: url("../images/icon_wa_w.svg") no-repeat 0 50%;
  color: #fff;
}
footer .phones span {
  color: #D1D1D1;
}
footer .phones__ru span {
  padding-left: 43px;
}
footer .phones__kyr span {
  padding-left: 10px;
}

footer .middle > * {
  position: absolute;
}

.footer_menu {
  position: absolute;
  width: 351px;
  left: 55px;
  top: 114px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer_menu li {
  font-weight: 300;
  font-size: 16px;
  line-height: 23px;
}
.footer_menu li a {
  color: #FFF;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer_menu li a:hover {
  color: #D1D1D1;
}
.footer_menu li span {
  color: #D1D1D1;
}

footer .copyright,
footer .confident,
footer .developer {
  font-weight: 300;
  font-size: 12px;
  line-height: 17px;
  color: #FFF;
}

footer .copyright {
  left: 55px;
  top: 190px;
  max-width: 420px;
}

footer .confident {
  right: 25px;
  top: 190px;
}

footer .developer {
  right: 25px;
  top: 209px;
  text-decoration: none;
}
footer .developer span {
  text-decoration: underline;
}
footer .developer:hover span {
  text-decoration: none;
}

#go_top {
  position: fixed;
  bottom: 0;
  left: 0;
  cursor: pointer;
  display: none;
  width: 100%;
  font-size: 16px;
  background: rgba(171, 130, 89, 0.8);
  font-weight: bolder;
  color: #fff;
  text-align: center;
  line-height: 20px;
  font-weight: 400;
  z-index: 10;
  height: 0;
  padding-top: 0;
  overflow: hidden;
  z-index: 40;
}

#menu {
  width: 100%;
  top: 60px;
  background: #fff;
  padding: 20px 15px 5px;
  position: fixed;
  right: 0;
  z-index: 20;
  display: none;
  overflow-y: auto;
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
}
#menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#menu ul li {
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  margin-bottom: 15px;
}
#menu ul li a {
  text-decoration: none;
}

@media (max-width: 1500px) {
  .top h1 {
    font-size: 54px;
    margin-bottom: 45px;
  }

  .top__text {
    font-size: 20px;
    margin-bottom: 44px;
  }

  .top__numbers {
    width: 450px;
    bottom: 30px;
  }
  .top__numbers li {
    font-size: 10px;
    line-height: 15px;
    max-width: 130px;
  }
  .top__numbers li div {
    font-size: 36px;
  }
  .top__numbers li div span {
    font-size: 70px;
  }
  .top__numbers li:last-child {
    max-width: 155px;
  }
}

@media (max-width: 1370px) {
  .top h1 {
    font-size: 48px;
    margin-bottom: 35px;
  }

  .top__text {
    font-size: 18px;
    margin-bottom: 34px;
  }

  .top__numbers {
    width: 400px;
    bottom: 20px;
  }
  .top__numbers li {
    font-size: 10px;
    line-height: 15px;
    max-width: 105px;
  }
  .top__numbers li div {
    font-size: 32px;
  }
  .top__numbers li div span {
    font-size: 62px;
  }
  .top__numbers li:last-child {
    max-width: 145px;
  }
}

@media (max-width: 1270px) {
  #wrapper {
    width: auto;
    min-width: 0;
  }
  .middle {
    width: auto;
    margin: 0 15px;
  }

  .register__pluses li {
    width: 33%;
  }
}
@media (max-width: 1240px) {
  .cert__slider {
    width: calc(100% + 30px);
    margin-left: -15px;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
  }
  .cert__block {
    margin: auto;
  }
  .cert .swiper-wrapper {
    margin-bottom: 35px;
  }
  .protect__options li {
    width: 33%;
  }
  .protect .title {
    margin-bottom: 22px;
  }
  .protect__options {
    margin-top: 0;
    display: block;
  }
  .protect__options li {
    width: 100%;
    margin-bottom: 36px;
    padding-top: 0;
  }
  .protect__options li:before {
    display: none;
  }
  .prices__top {
    padding-right: 0;
  }
  .prices__center {
    margin: 0 0 0 78px;
  }
  .contacts__list {
    margin-right: 0;
  }
}
@media (max-width: 1200px) {
  .top {
    height: auto;
  }
  .top__center {
    position: static;
    transform: none;
    -webkit-transform: none;
  }
  .top__center:before,
  .top__center:after {
    display: none;
  }
  .top__content {
    margin-left: 13px;
    max-width: 100%;
    margin-right: 450px;
  }
  .top__image {
    right: 0;
  }
  .register__pluses li {
    width: 33%;
  }

  .top__numbers {
    position: static;
    margin-top: 64px;
    margin-bottom: 40px;
  }
  .top__image {
    height: auto;
  }
  header {
    height: 80px;
  }
  #logo {
    background: url("../images/logo_mobile.svg") no-repeat 50%;
    font-size: 0;
    padding: 0;
    width: 300px;
    height: 40px;
  }
  #logo span {
    display: none;
  }
  #logo:before {
    display: none;
  }
  nav {
    left: 330px;
    top: 35px;
  }
  .phones {
    top: 29px;
  }
  .top__name {
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-family: Commissioner;
    margin-bottom: 110px;
  }
  .top__name span {
    display: block;
    font-size: 12px;
    line-height: 15px;
    color: #6B717D;
  }
  .top__content {
    padding-top: 90px;
  }
}
@media (max-width: 1100px) {
  header {
    height: 60px;
  }
  nav,.protect {
    display: none;
  }
  #logo {
    top: 10px;
  }
  #pull {
    display: block;
  }
  header .phones {
    top: 23px;
    right: 60px;
    width: 328px;
  }
  header .phones__ru {
    background-position: 0 0;
    width: auto;
  }
  header .phones__kyr {
    background-position: 0 0;
    width: auto;
  }
  header .phones__wa,
header .phones span {
    display: none;
  }
  header .phones__link {
    display: block;
    padding-left: 30px;
    text-decoration: none;
  }
  .top__bg {
    display: none;
  }
  .top__image {
    right: -120px;
    top: 97px;
  }
  .top__content {
    margin-right: 350px;
  }
  .top h1 {
    font-size: 42px;
  }
  .about__content {
    margin-left: 78px;
  }
  .register__flags {
    width: 100vw;
    margin-left: -15px;
  }
  .register__options {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .register__options li {
    width: 400px;
    font-size: 16px;
  }
  .register__options li h3 {
    font-size: 24px;
    line-height: 100%;
  }
  .register__pluses li {
    padding: 45px 10px 40px 28px;
  }
  .prices__top li span {
    font-size: 18px;
  }
  .prices__top li b {
    font-size: 20px;
  }
  .prices__grid.grid2 > li, .prices__grid.grid3 > li {
    width: 100%;
  }
  .prices__grid.grid3 > li .button {
    position: absolute;
    bottom: 40px;
    right: 42px;
    width: 268px;
    left: auto;
  }
  .prices__grid.grid3 > li .prices__block b {
    position: absolute;
    left: 48px;
    bottom: 58px;
  }
  .footer_menu,
footer .copyright {
    left: 0;
  }
  .footer_menu {
    width: 320px;
  }
  footer .phones,
footer .confident,
footer .developer {
    right: 0;
  }
  body header {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
body .top .middle:before,
body .top .middle:after,
body .top h1,
body .top__text,
body .top .button {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@media (max-width: 980px) {
  .footer_menu,
.title__back {
    display: none;
  }
  .title {
    padding-left: 35px;
    height: auto;
    line-height: 1;
    min-height: 0;
  }
  .title h2 {
    display: block;
  }
  .about {
    padding: 59px 0 40px;
  }
  .about .title {
    margin-bottom: 39px;
  }
  .about__content {
    margin-left: 35px;
  }
  .about h2 {
    display: block;
    position: relative;
  }
  .about h2:after {
    left: 200px;
    right: 0;
    width: auto;
  }
  .about .content p + p ~ p {
    display: none;
  }
  .about .show {
    display: inline-block;
    font-weight: 300;
    font-size: 20px;
    line-height: 130%;
    color: #000;
    text-decoration: none;
    border-bottom: 1px dashed #000;
    margin-left: 35px;
    margin-top: 10px;
    -webkit-transition: border 0.3s;
    transition: border 0.3s;
  }
  .about .show:hover {
    border-color: transparent;
  }
  .register__flags {
    margin-bottom: 37px;
  }
  .register__pluses {
    display: block;
  }
  .register__pluses li {
    width: 100%;
  }
  .cases__slider {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    padding-bottom: 39px;
  }
  .prices {
    padding: 6px 0 18px;
  }
  .prices .title {
    margin-bottom: 34px;
  }
  .prices__center {
    margin: 0 0 0 35px;
  }
  .prices__top {
    margin-top: 0;
  }
  .prices__top {
    margin-bottom: 37px;
  }
  .contacts {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .contacts .title {
    margin-bottom: 33px;
  }
  .contacts__list {
    display: block;
    margin-left: 35px;
  }
  .contacts__list > li {
    display: block;
    width: 100%;
    margin-bottom: 33px;
  }
  .contacts__map {
    width: 100%;
  }
  body {
    margin-bottom: 330px;
  }
  footer {
    height: 330px;
  }
  footer .copyright,
footer .confident {
    top: 266px;
  }
  footer .developer {
    top: 285px;
  }
  footer .phones {
    margin: auto;
    left: 0;
    right: 0;
    top: 202px;
  }
}
@media (max-width: 880px) {
  .top {
    height: 797px;
  }
  .top__numbers {
    display: none;
  }
  .top__image {
    height: 700px;
  }
  .top__content {
    margin-right: 250px;
  }
  .register__options {
    display: block;
    padding-left: 35px;
    padding-top: 37px;
  }
  .register__options li {
    width: 100%;
    padding-top: 0;
    margin-bottom: 45px;
  }
  .register__options li:before {
    display: none;
  }
  .register__option1 {
    text-align: left;
  }
  .prices__top li {
    display: block;
    position: relative;
  }
  .prices__top li span {
    display: block;
    width: 100%;
    padding-right: 0;
    margin-bottom: 6px;
  }
  .prices__top li b {
    position: absolute;
    right: 0;
    bottom: -5px;
    background: #fff;
  }
}
@media (max-width: 768px) {
  .wa_mobile {
    display: block;
    width: 63px;
    height: 63px;
    font-size: 0;
    background: url('../images/whatsapp.svg') no-repeat 50%;
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 13;
  }
  header .phones {
    display: block;
    width: auto;
    top: 10px;
  }
  header .phones li {
    margin-bottom: 10px;
  }
  .top {
    height: 568px;
  }
  .top__name {
    margin-bottom: 25px;
  }
  .top__image {
    height: 470px;
    right: -91px;
  }
  .top__content {
    padding-top: 113px;
    margin-right: 64px;
  }
  .top h1 {
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 16px;
  }
  .top__text {
    font-size: 16px;
    line-height: 150%;
    margin-right: 104px;
    margin-bottom: 40px;
  }
  .title h2 {
    font-size: 26px;
    line-height: 100%;
  }
  .about h2:after {
    margin-left: 0;
  }
  .register {
    padding: 23px 0 13px;
  }
  .register__options {
    padding-top: 7px;
  }
  .cert {
    padding-bottom: 42px;
  }
  .prices h3 {
    font-weight: 100;
    font-size: 26px;
    line-height: 130%;
    margin-bottom: 32px;
  }
  .prices__grid {
    width: calc(100% + 35px);
    margin-left: -35px;
  }
  .prices__grid.grid3 > li, .prices__grid.grid2 > li {
    margin-bottom: 32px;
  }
  .prices__grid.grid3 > li .prices__block, .prices__grid.grid2 > li .prices__block {
    padding: 45px 32px 118px;
  }
  .prices__grid.grid3 > li .prices__block b, .prices__grid.grid2 > li .prices__block b {
    left: 32px;
  }
  .prices__grid.grid3 > li .prices__block .button, .prices__grid.grid2 > li .prices__block .button {
    right: 32px;
  }
  .prices__grid.grid3 > li .prices__block h4, .prices__grid.grid2 > li .prices__block h4 {
    font-size: 24px;
    line-height: 130%;
  }
  .prices__grid.grid3 > li .prices__data li:before, .prices__grid.grid2 > li .prices__data li:before {
    left: -19px;
  }
  .prices__tip {
    width: calc(100% + 35px);
    margin-left: -35px;
    padding-left: 35px;
    max-width: 406px;
    width: 100%;
    margin-bottom: 70px;
  }
}
@media (max-width: 630px) {
  body {
    margin-bottom: 376px;
  }
  footer {
    height: 376px;
  }
  footer .copyright {
    max-width: 100%;
  }
  footer .confident {
    top: 337px;
    right: auto;
    left: 0;
  }
  footer .developer {
    top: 337px;
  }
}
@media (max-width: 600px) {
  .contacts__map {
    width: calc(100% + 65px);
    margin-left: -50px;
  }
  .contacts__city {
    font-size: 24px;
  }
  .contacts__city:after {
    left: 118px;
    top: 15px;
  }
  .contacts__block li {
    font-size: 16px;
  }
  #go_top {
    height: 38px;
    padding-top: 8px;
  }
  body {
    margin-bottom: 406px;
  }
  footer {
    height: 406px;
  }
}
@media (max-width: 570px) {
  header {
    height: 85px;
  }
  header .phones {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: auto;
    left: 13px;
    right: 5px;
    top: 58px;
  }
  header .phones li {
    margin-bottom: 0;
  }
  .cases__slider {
    overflow: hidden;
  }
  .cases__block {
    width: 100%;
    height: 428px;
  }
  .cases .swiper-slide-active {
    z-index: 2;
  }
  #menu {
    top: 84px;
    height: calc(100% - 84px);
  }
  #menu ul {
    display: block;
    padding: 30px 30px 0;
  }
  #menu ul li {
    margin-bottom: 30px;
  }
}
@media (max-width: 540px) {
  .prices__grid.grid3 > li .prices__block,
.prices__grid.grid2 > li .prices__block {
    padding-bottom: 30px;
  }
  .prices__grid.grid3 > li .prices__block b,
.prices__grid.grid2 > li .prices__block b {
    position: static;
    margin-top: 21px;
    display: block;
  }
  .prices__grid.grid3 > li .prices__block .button,
.prices__grid.grid2 > li .prices__block .button {
    position: static;
    margin-top: 25px;
  }
}
@media (max-width: 460px) {
  .top {
    height: 610px;
  }
}

@media (max-width: 420px) {
  .top {
    height: 100vh;
  }
  .top__numbers {
    display: flex;
    width: 100%;
    margin: 45px 0 0;
  }
}

@media (max-width: 410px) {
  .top__numbers {
    margin-top: 20px;
  }

  .top__numbers li div span {
      font-size: 48px;
  }

  .top__numbers li {
    font-size: 8px;
    max-width: 80px;
  }
  .top__numbers li:last-child {
    max-width: 110px;
  }

}