@font-face {
  font-family: "Muller";
  font-style: normal;
  font-weight: normal;
  src: url("/dist/fonts/Muller/Regular/MullerRegular.woff2") format("woff2"),
    url("/dist/fonts/Muller/Regular/MullerRegular.woff") format("woff"),
    url("/dist/fonts/Muller/Regular/MullerRegular.ttf") format("truetype");
}

@font-face {
  font-family: "Muller";
  font-style: normal;
  font-weight: 500;
  src: url("/dist/fonts/Muller/Medium/MullerMedium.woff2") format("woff2"),
    url("/dist/fonts/Muller/Medium/MullerMedium.woff") format("woff"),
    url("/dist/fonts/Muller/Medium/MullerMedium.ttf") format("truetype");
}

@font-face {
  font-family: "CoFo Sans";
  font-style: normal;
  font-weight: 500;
  src: url("/dist/fonts/CoFoSans/Medium/CoFoSans-Medium.woff2") format("woff2"),
    url("/dist/fonts/CoFoSans/Medium/CoFoSans-Medium.woff") format("woff"),
    url("/dist/fonts/CoFoSans/Medium/CoFoSans-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Muller";
  font-style: normal;
  font-weight: bold;
  src: url("/dist/fonts/Muller/Bold/MullerBold.woff2") format("woff2"),
    url("/dist/fonts/Muller/Bold/MullerBold.woff") format("woff"),
    url("/dist/fonts/Muller/Bold/MullerBold.ttf") format("truetype");
}

@font-face {
  font-family: "Muller";
  font-style: normal;
  font-weight: 800;
  src: url("/dist/fonts/Muller/ExtraBold/MullerExtraBold.woff2") format("woff2"),
    url("/dist/fonts/Muller/ExtraBold/MullerExtraBold.woff") format("woff"),
    url("/dist/fonts/Muller/ExtraBold/MullerExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: "CoFo Sans";
  font-style: normal;
  font-weight: 900;
  src: url("/dist/fonts/CoFoSans/Black/CoFoSans-Black.woff2") format("woff2"),
    url("/dist/fonts/CoFoSans/Black/CoFoSans-Black.woff") format("woff"),
    url("/dist/fonts/CoFoSans/Black/CoFoSans-Black.ttf") format("truetype");
}

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

html {
  overflow-x: hidden;
  min-width: 360px;
}

body {
  margin: 0;
  padding: 0;
  background-color: #1f2837;
  font-family: Muller, sans-serif;
  font-weight: normal;
  overflow-x: hidden;
  min-width: 360px;
}

.container {
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.container-big {
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  margin: 0 -15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.col {
  padding: 0 15px;
}

.button {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: #000000;
  background-color: #ffdb4d;
  text-decoration: none;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  border: none;
}

.button--white {
  background: #ffffff;
}

.button:hover {
  background-color: #ffd11a;
}

.button:disabled {
  opacity: 0.5;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.section {
  padding: 115px 0 110px;
}

.section-title {
  font-weight: 800;
  font-size: 52px;
  line-height: 120.02%;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 75px;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 40px;
  }
}

@media (max-width: 479px) {
  .section-title {
    font-size: 30px;
  }
}

.header {
  height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: rgba(32, 32, 32, 0.544);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.header__title {
  background: rgba(0, 0, 0, 0.392);
  width: 382px;
  font-weight: bold;
  font-size: 20px;
  line-height: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 15px 0;
  position: relative;
  z-index: 5;
}

@media (max-width: 1365px) {
  .header__title {
    width: 350px;
  }
}

@media (max-width: 1199px) {
  .header__title {
    display: none;
  }
}

.header__menu {
  background-color: #3c4c62;
  position: absolute;
  top: -400px;
  width: 100%;
  min-height: 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  pointer-events: none;
  padding: 5px 42px;
}

.header__menu.active {
  top: 0;
  pointer-events: all;
}

@media (max-width: 1599px) {
  .header__menu {
    padding: 5px 10px;
  }
}

@media (max-width: 1199px) {
  .header__menu {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 5px 20px;
  }
}

@media (max-width: 991px) {
  .header__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.header__menu-logo-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 20px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media (max-width: 1399px) {
  .header__menu-logo-wrapper {
    max-width: 200px;
  }
}

@media (max-width: 991px) {
  .header__menu-logo-wrapper {
    margin-right: 0;
    text-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
  }
}

.header__menu-logo {
  max-width: 100px;
  max-height: 40px;
}

.header__menu-partner {
  font-size: 12px;
  color: #ffffff;
}

.header__menu-link {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  margin-left: 10px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.header__menu-link:hover::after {
  width: 100%;
}

.header__menu-link::after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: #fff;
  bottom: -2px;
  left: 0;
  position: absolute;
  width: 0;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

@media (max-width: 1499px) {
  .header__menu-link {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .header__menu-link {
    font-size: 20px;
    padding: 10px 0;
    display: block;
  }
}

.header__menu-btn {
  width: 100px;
  background: #ffdb4d;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__menu-btn span::after,
.header__menu-btn span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
}

.header__menu-btn span::after {
  top: 18px;
}

.header__menu-btn span {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.header__menu-btn span,
.header__menu-btn span::after,
.header__menu-btn span::before {
  width: 32px;
  height: 3px;
  background-color: #000;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.header__menu-btn.on span {
  background-color: transparent;
}

.header__menu-btn.on span::before {
  -webkit-transform: rotate(45deg) translate(-1px, 0px);
  -ms-transform: rotate(45deg) translate(-1px, 0px);
  transform: rotate(45deg) translate(-1px, 0px);
}

.header__menu-btn.on span::after {
  -webkit-transform: rotate(-45deg) translate(6px, -7px);
  -ms-transform: rotate(-45deg) translate(6px, -7px);
  transform: rotate(-45deg) translate(6px, -7px);
}

.header__menu-text {
  font-weight: bold;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  color: #ffffff;
  margin-left: 22px;
}

@media (max-width: 1365px) {
  .header__menu-text {
    display: none;
  }
}

.header-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

.header__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 42px;
  width: 100%;
}

@media (max-width: 767px) {
  .header__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px 20px;
    text-align: center;
  }
}

.header__phone {
  font-weight: bold;
  font-size: 22px;
  line-height: 22px;
  color: #ffffff;
  margin-left: 32px;
  text-decoration: none;
}

@media (max-width: 767px) {
  .header__phone {
    margin-left: 0;
  }
}

.header__partner {
  max-width: 231px;
  font-size: 15px;
  line-height: 19px;
  color: rgba(255, 255, 255, 0.556);
  margin-left: 26px;
}

@media (max-width: 767px) {
  .header__partner {
    margin-bottom: 5px;
    margin-left: 0;
    font-size: 12px;
    line-height: 1.2;
  }
}

.header__logo {
  color: #ffffff;
  font-weight: bold;
  font-size: 26px;
  letter-spacing: 4px;
  width: 100px;
}

.first-screen__container-wrap {
  position: relative;
  width: 100%;
}

.first-screen {
  min-height: 100vh;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 150px 0;
  position: relative;
}

.first-screen::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.5;
}

.first-screen__text-col {
  width: 70%;
}

@media (max-width: 1199px) {
  .first-screen__text-col {
    width: 100%;
  }
}

.first-screen__title {
  font-family: CoFo Sans, sans-serif;
  font-weight: 900;
  font-size: 50px;
  line-height: 120.02%;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-bottom: 4px;
  margin-top: 0;
}

@media (max-width: 1199px) {
  .first-screen__title {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .first-screen__title {
    font-size: 36px;
  }
}

.first-screen__address {
  font-size: 26px;
  line-height: 26px;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .first-screen__address {
    text-align: center;
  }
}

.first-screen__subtitle {
  font-weight: bold;
  font-size: 36px;
  line-height: 118.3%;
}

@media (max-width: 1199px) {
  .first-screen__subtitle {
    text-align: center;
  }
}

.first-screen__buttons {
  margin-top: 67px;
}

@media (max-width: 1199px) {
  .first-screen__buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
  }
}

.first-screen__btn {
  height: 80px;
  max-width: 400px;
  width: 100%;
  margin-right: 30px;
}

@media (max-width: 1199px) {
  .first-screen__btn {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.first-screen__btn--white {
  width: 340px;
  height: 80px;
}

.first-screen__info-wrap-col {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.first-screen__info-wrap {
  background: rgba(13, 19, 31, 0.596);
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.first-screen__info {
  border: 1px solid rgba(196, 196, 196, 0.38);
  padding: 62px 20px 20px 40px;
  width: 100%;
}

@media (max-width: 1199px) {
  .first-screen__info {
    width: 100%;
    text-align: center;
    padding: 50px 20px;
  }
}

.first-screen__info-b {
  margin-bottom: 36px;
}

.first-screen__info-b:last-child {
  margin-bottom: 0;
}

.first-screen__info-b-title {
  font-size: 17px;
  line-height: 17px;
  color: #9d9d9d;
  margin-bottom: 15px;
}

.first-screen__info-b-text {
  font-weight: bold;
  font-size: 22px;
  line-height: 22px;
  color: #ffffff;
}

.first-screen__discount {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 205px;
  width: 80px;
  background: rgba(0, 0, 0, 0.712);
  -webkit-border-radius: 6px 0 0 6px;
  border-radius: 6px 0 0 6px;
  padding: 20px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1365px) {
  .first-screen__discount {
    display: none;
  }
}

.first-screen__discount-text {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
  color: #ffffff;
}

.first-screen__discount-persent {
  margin-bottom: 16px;
  color: #ffdb4d;
  font-size: 24px;
}

.first-screen__scroll-down {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.532);
  -webkit-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.first-screen__scroll-down::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 16px solid #ffdb4d;
  margin-top: 8px;
}

.s-video {
  background: #1f2837;
}

.video {
  width: 100%;
  margin: auto;
  overflow: hidden;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.video::before {
  content: "";
  padding-top: 56.25%;
  float: left;
}

@media (max-width: 575px) {
  .video {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.video-control {
  width: 100%;
  margin-bottom: 126px;
  position: relative;
}

@media (max-width: 1199px) {
  .video-control {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .video-control {
    margin-bottom: 0;
  }
}

.video-control::before {
  content: "";
  background: rgba(255, 255, 255, 0.576);
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
}

@media (max-width: 575px) {
  .video-control::before {
    display: none;
  }
}

.video-control__btn {
  width: 100px;
  height: 100px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-color: #ffdb4d;
  position: relative;
  z-index: 3;
  margin-left: 65px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 575px) {
  .video-control__btn {
    margin: 0 auto;
  }
}

.video-control__btn-triangle {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-left: 20px solid #000;
  border-bottom: 12px solid transparent;
  margin-left: 8px;
}

.s-advantages {
  background: #2a3749 url(../img/white.png);
  padding-bottom: 48px;
}

.s-advantages-row {
  margin: 0 -38px;
  justify-content: center;
}

.advantages-item-col {
  width: 25%;
  padding: 0 38px;
  margin-bottom: 62px;
}

@media (max-width: 1199px) {
  .advantages-item-col {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .advantages-item-col {
    width: 100%;
  }
}

.advantages-item {
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  padding-top: 26px;
}

.advantages-item__num {
  font-size: 28px;
  color: #ffdb4d;
  line-height: 34px;
  margin-bottom: 6px;
}

.advantages-item__text {
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
}

.s-project {
  padding-bottom: 0;
  background: #1f2837;
}

.s-project-body {
  position: relative;
}

.s-project-carousel-item {
  overflow: hidden;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  min-height: 860px;
  padding-top: 100px;
}

.s-project-carousel-item-desc {
  background: rgba(10, 18, 24, 0.84);
  color: #ffffff;
  max-width: 655px;
  float: right;
  padding: 84px 102px 65px;
}

@media (max-width: 991px) {
  .s-project-carousel-item-desc {
    max-width: 100%;
    float: none;
  }
}

@media (max-width: 767px) {
  .s-project-carousel-item-desc {
    padding: 40px 20px;
  }
}

.s-project-carousel-item-desc__title {
  font-weight: bold;
  font-size: 44px;
  line-height: 101.5%;
  margin-bottom: 36px;
}

.s-project-carousel-item-desc__text {
  font-size: 20px;
  line-height: 168%;
  color: #f9f9f9;
  margin-bottom: 44px;
}

.s-project-carousel-item-desc__count {
  font-size: 22px;
  line-height: 168%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.s-project-carousel-item-desc__count span {
  font-weight: bold;
  font-size: 33px;
  line-height: 168%;
  color: #ffdb4d;
  display: inline-block;
  margin-top: -6px;
  margin-right: 8px;
}

.s-project-carousel-control {
  position: absolute;
  top: 100px;
  left: 50%;
  -webkit-transform: translateX(-webkit-calc(-50% - 200px));
  -ms-transform: translateX(calc(-50% - 200px));
  transform: translateX(calc(-50% - 200px));
}

@media (max-width: 991px) {
  .s-project-carousel-control {
    top: 10px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.s-project-carousel-control__arrow {
  width: 66px;
  height: 66px;
  background-color: #ffdb4d;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 7px;
}

.s-project-carousel-control__arrow--right img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.s-excursion-1 {
  background: #2a3749;
  padding-top: 100px;
}

.excursion-1-body {
  padding: 76px 20px;
  background-color: #3c4c62;
  background-image: url(../img/excursion-1.png);
  background-position: bottom center;
  background-repeat: no-repeat;
}

.excursion-1-body-content {
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 991px) {
  .excursion-1-body-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.excursion-1-body__text {
  font-weight: bold;
  font-size: 38px;
  line-height: 123.92%;
  color: #ffffff;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 991px) {
  .excursion-1-body__text {
    text-align: center;
    margin-bottom: 30px;
  }
}

.excursion-1-body__button {
  border: 3px solid #ffdb4d;
  background-color: transparent;
  width: 318px;
  padding: 28px 4px;
  font-weight: 800;
  font-size: 16px;
  color: #ffdb4d;
  margin-left: 40px;
}

.excursion-1-body__button:hover {
  color: #000;
}

@media (max-width: 991px) {
  .excursion-1-body__button {
    margin-left: 0;
  }
}

.s-complex {
  background: #2a3749;
  padding-bottom: 0;
}

.s-complex-title {
  text-align: center;
}

.s-complex-img {
  width: 100%;
  display: block;
}

.s-plans {
  background: #1d2533;
  background-image: url(../img/plans-bg.png);
  background-repeat: no-repeat;
  background-position: bottom center;
}

.s-plans-row {
  margin: 0;
}

.s-plans-title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 15px;
}

.s-plans__get-all {
  font-weight: bold;
  font-size: 32px;
  line-height: 119.3%;
  color: #ffffff;
  text-decoration: none;
  max-width: 400px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 991px) {
  .s-plans__get-all {
    max-width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 479px) {
  .s-plans__get-all {
    font-size: 24px;
  }
}

.s-plans__get-all-arrow {
  width: 66px;
  min-width: 66px;
  height: 66px;
  background-color: #ffdb4d;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.s-plans__get-all-arrow img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (max-width: 991px) {
  .s-plans__get-all-arrow {
    margin-left: 15px;
  }
}

.plan-col {
  width: 50%;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .plan-col {
    width: 100%;
  }
}

.plan {
  background-color: #fff;
}

.plan__title {
  background: #354254;
  font-weight: bold;
  font-size: 23px;
  line-height: 23px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  height: 70px;
}

.plan__img {
  width: auto;
  max-width: 300px;
  margin: 10px auto;
  display: block;
  height: 225px;
}

.plan__bottom {
  border-top: 1px solid #e0e0e0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 15px;
}

@media (max-width: 1199px) {
  .plan__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.plan-btn {
  background-color: #ffdb4d;
  font-weight: 800;
  font-size: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  height: 54px;
  width: 190px;
  text-decoration: none;
}

.s-quiz {
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  position: relative;
}

.s-quiz::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.35;
}

.s-quiz-title {
  text-align: center;
  text-transform: none;
  position: relative;
}

.quiz-body {
  border: 16px solid rgba(255, 255, 255, 0.176);
  padding: 44px 15px 110px;
  min-height: 600px;
  position: relative;
}

.quiz__num {
  width: 30px;
  height: 30px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: bold;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  background-color: #ffdb4d;
  margin: 0 auto 16px;
}

.quiz__count {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 26px;
}

.quiz__count-item {
  width: 16px;
  height: 3px;
  background-color: #c4c4c4;
  margin: 0 1px;
}

.quiz__count-item.active {
  background-color: #ffdb4d;
}

.quiz__title {
  font-weight: bold;
  font-size: 28px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 32px;
}

.quiz__control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 575px) {
  .quiz__control {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.quiz-btn {
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #ffdb4d;
  color: #000000;
  width: 178px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 54px;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  padding: 0 14px 0 40px;
  text-decoration: none;
  margin: 0 10px;
}

@media (max-width: 575px) {
  .quiz-btn {
    width: 100%;
    margin: 0;
  }
}

.quiz-btn__arrow {
  background: #565252;
  width: 26px;
  height: 26px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.quiz-btn-skip {
  background: rgba(0, 0, 0, 0.488);
  color: #969696;
}

@media (max-width: 575px) {
  .quiz-btn-skip {
    margin-bottom: 15px;
  }
}

.quiz__answers {
  margin-left: -webkit-calc(50% - 80px);
  margin-left: calc(50% - 80px);
  margin-bottom: 34px;
}

@media (max-width: 479px) {
  .quiz__answers {
    margin-left: 0;
  }
}

.quiz-answer {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 8px;
}

.quiz-answer__chbox {
  display: none;
}

.quiz-answer__chbox:checked + .quiz-custom-chbox {
  background-color: #ffdb4d;
}

.quiz-answer__chbox:checked + .quiz-custom-chbox::before {
  opacity: 1;
}

.quiz-custom-chbox {
  background: #ffffff;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  margin-right: 16px;
}

.quiz-custom-chbox::before {
  content: url(../img/check.svg);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.quiz-step-loading {
  text-align: center;
  color: #ffffff;
}

.quiz-step-loading__title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
}

.quiz-step-loading__subtitle {
  font-size: 22px;
  margin-bottom: 50px;
}

.quiz-step-loading__line {
  max-width: 500px;
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  margin: 0 auto 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.quiz-step-loading__line span {
  background-color: #ffdb4d;
  display: inline-block;
  width: 30%;
}

.quiz-step-loading__percent {
  font-size: 40px;
  font-weight: bold;
}

.quiz-step-form {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.quiz-step-form__title {
  text-align: center;
  color: #ffffff;
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 30px;
}

.quiz-step-form__subtitle {
  text-align: center;
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 30px;
}

.quiz-step-form__label {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.quiz-step-form__label label.error {
  background-color: #c01717;
  width: 100%;
  display: block;
  color: #ffffff;
  padding: 10px 15px;
}

.quiz-step-form__text-field {
  display: block;
  width: 100%;
  padding: 20px;
  border: none;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

.quiz-step-form__button {
  max-width: 300px;
  width: 100%;
  height: 60px;
  display: block;
  margin: 0 auto 15px;
}

.quiz-step-form__pers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.quiz-step-form__pers a {
  color: #ffffff;
}

.quiz-step-form__pers-chbox {
  display: none;
}

.quiz-step-form__pers-chbox:checked + .quiz-step-form__pers-custom-chbox {
  background-color: #ffdb4d;
}

.quiz-step-form__pers-chbox:checked
  + .quiz-step-form__pers-custom-chbox::after {
  opacity: 1;
}

.quiz-step-form__pers-custom-chbox {
  width: 22px;
  height: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #ffffff;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  margin-right: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.quiz-step-form__pers-custom-chbox::after {
  content: url(../img/check.svg);
  opacity: 0;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.quiz__error {
  width: 100%;
  max-width: 400px;
  background-color: #c01717;
  color: #ffffff;
  margin: 0 auto 20px;
  text-align: center;
  padding: 10px;
  display: none;
}

.interactive-map {
  width: 100%;
  height: 800px;
}

@media (max-width: 991px) {
  .interactive-map {
    height: 500px;
  }
}

@media (max-width: 575px) {
  .interactive-map {
    height: 300px;
  }
}

.s-gallery {
  background: #2a3749;
}

.s-gallery-row {
  margin: 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.s-gallery-arrow {
  width: 66px;
  height: 66px;
  background-color: #ffdb4d;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 7px;
}

.s-gallery-arrow--right img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.gallery-carousel__item {
  overflow: hidden;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}

.gallery-carousel__item::before {
  content: "";
  padding-top: 50%;
  float: left;
}

.s-gallery-container-big {
  position: relative;
}

.gallery-dots-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-left: 240px;
  border-top: 1px solid rgba(255, 255, 255, 0.744);
  margin-left: 15px;
  margin-right: 15px;
}

@media (max-width: 767px) {
  .gallery-dots-wrap {
    padding-left: 0;
  }
}

.gallery-dots-wrap .slick-dots {
  background-color: #ffdb4d;
  height: 85px;
  padding: 0 52px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  bottom: 0;
  width: auto;
}

@media (max-width: 767px) {
  .gallery-dots-wrap .slick-dots {
    padding: 0 26px;
    height: 50px;
  }
}

.gallery-dots-wrap .slick-dots li {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gallery-dots-wrap .slick-dots li button {
  background: rgba(0, 0, 0, 0.364);
  width: 10px;
  height: 10px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  display: block;
}

.gallery-dots-wrap .slick-dots li button::before {
  display: none;
}

.gallery-dots-wrap .slick-dots li.slick-active {
  border-color: #000;
}

.gallery-dots-wrap .slick-dots li.slick-active button {
  background: #000;
}

.s-excursion-2 {
  background: #1f2837;
}

.s-excursion-2-container {
  max-width: 1485px;
  padding-left: 140px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media (max-width: 991px) {
  .s-excursion-2-container {
    padding-left: 15px;
  }
}

.s-excursion-2-btn {
  background-color: #ffdb4d;
  font-weight: 800;
  font-size: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  color: #000000;
  width: 388px;
  height: 99px;
  text-decoration: none;
}

.s-excursion-2__img {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 680px;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}

.s-excursion-2__plus-group {
  position: absolute;
  bottom: 0;
  left: 0;
}

.s-excursion-2-desc {
  position: absolute;
  top: 100px;
  left: 140px;
  max-width: 716px;
  width: 100%;
  background: #354253;
  -webkit-box-shadow: 5px 24px 17px rgba(0, 0, 0, 0.058);
  box-shadow: 5px 24px 17px rgba(0, 0, 0, 0.058);
  padding: 58px 70px;
}

@media (max-width: 991px) {
  .s-excursion-2-desc {
    left: 15px;
  }
}

@media (max-width: 479px) {
  .s-excursion-2-desc {
    padding: 58px 24px 58px 15px;
  }
}

.s-excursion-2-desc__title {
  font-weight: bold;
  font-size: 36px;
  line-height: 113.5%;
  color: #ffffff;
  margin-bottom: 32px;
}

.s-excursion-2-desc__text {
  font-size: 20px;
  line-height: 161.5%;
  color: #fcfcfc;
}

.s-ipoteka-calc {
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}

.s-ipoteka-calc-container {
  background: rgba(19, 19, 32, 0.76);
  padding: 70px 15px 62px;
  max-width: 936px;
}

.s-ipoteka-calc__title {
  font-weight: 500;
  font-size: 26px;
  line-height: 127%;
  text-align: center;
  color: #ffffff;
  max-width: 693px;
  margin: 0 auto 20px;
}

.s-ipoteka-calc-percent {
  width: 236px;
  height: 236px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 54px;
  border: 1px solid rgba(255, 255, 255, 0.304);
  position: relative;
}

.s-ipoteka-calc-percent::before,
.s-ipoteka-calc-percent::after {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #ffdb4d;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
}

.s-ipoteka-calc-percent::before {
  top: 26px;
  left: 26px;
}

.s-ipoteka-calc-percent::after {
  right: 26px;
  bottom: 26px;
}

.s-ipoteka-calc-percent__title {
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
}

.s-ipoteka-calc-percent__num {
  font-size: 90px;
  line-height: 123px;
  color: #ffdb4d;
  font-weight: bold;
}

.s-ipoteka-calc__button {
  max-width: 503px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 99px;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
}

.s-ipoteka {
  background: #2a3749 url(../img/white.png);
}

.ipoteka-item-col {
  width: 33.333%;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .ipoteka-item-col {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .ipoteka-item-col {
    width: 100%;
  }
}

.ipoteka-item {
  border: 1px solid rgba(196, 196, 196, 0.292);
  padding: 30px 38px;
  height: 220px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ipoteka-item__topline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ipoteka-item__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  color: #ffffff;
  width: 100%;
  margin-bottom: 5px;
}

.ipoteka-item__percent {
  font-weight: 500;
  font-size: 22px;
  line-height: 22px;
  color: #ffdb4d;
}

.ipoteka-item__btn {
  width: 100%;
  display: block;
  text-align: center;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  background: #3c4c62;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
}

.change-bank {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.change-bank-left {
  width: 855px;
  min-width: 855px;
  padding: 160px 15px 204px;
  text-align: center;
  background: #2a3749 url(../img/change-bank-bg.png);
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1500px) {
  .change-bank-left {
    width: 655px;
    min-width: 655px;
  }
}

@media (max-width: 1199px) {
  .change-bank-left {
    width: 100%;
    min-width: auto;
  }
}

.change-bank-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #3c4c62;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1199px) {
  .change-bank-right {
    display: none;
  }
}

.change-bank__title {
  font-weight: bold;
  font-size: 47px;
  line-height: 101.5%;
  color: #ffffff;
  max-width: 387px;
  margin: 0 auto 33px;
}

.change-bank__subtitle {
  font-size: 20px;
  line-height: 147.8%;
  color: #ffffff;
  max-width: 338px;
  margin: 0 auto 62px;
}

.change-bank__button {
  max-width: 355px;
  width: 100%;
  text-decoration: none;
  background-color: #ffdb4d;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  height: 75px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000000;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.change-bank__img {
  max-width: 700px;
}

.s-builder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #3c4c62;
}

.s-builder-left {
  width: 855px;
  min-width: 855px;
  background-size: cover;
  background-position: right;
}

@media (max-width: 1500px) {
  .s-builder-left {
    width: 655px;
    min-width: 655px;
  }
}

@media (max-width: 1199px) {
  .s-builder-left {
    display: none;
  }
}

.s-builder-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 710px;
  background: #2a3749;
  padding-bottom: 170px;
}

@media (max-width: 1199px) {
  .s-builder-right {
    max-width: 100%;
  }
}

.s-builder__logo {
  width: 100%;
  height: 165px;
  background-color: transparent;
  margin-bottom: 58px;
  padding: 0 20px 0 98px;
}

@media (max-width: 575px) {
  .s-builder__logo {
    padding: 0 20px;
  }
}

.s-builder__logo img {
  max-width: 100%;
  max-height: 100%;
}

.s-builder__desc {
  padding: 0 98px;
}

@media (max-width: 575px) {
  .s-builder__desc {
    padding: 0 20px;
  }
}

.s-builder__title {
  font-weight: 800;
  font-size: 50px;
  line-height: 120.02%;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 36px;
}

@media (max-width: 479px) {
  .s-builder__title {
    font-size: 30px;
  }
}

.s-builder__text {
  font-size: 20px;
  line-height: 147.8%;
  color: rgba(255, 255, 255, 0.744);
}

.s-actions {
  background: #3c4c62;
}

.s-actions-plus-group {
  position: absolute;
  top: -96px;
  right: -114px;
}

.s-actions-container {
  position: relative;
}

.s-actions-row {
  margin: 0 -7px;
  position: relative;
  justify-content: center;
}

.action-col {
  width: 33.333%;
  margin-bottom: 30px;
  padding: 0 7px;
}

@media (max-width: 1199px) {
  .action-col {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .action-col {
    width: 100%;
  }
}

.action__num {
  font-weight: bold;
  font-size: 20px;
  line-height: 20px;
  color: #ffdb4d;
  margin-bottom: 15px;
}

.action__body {
  background: #2a3749;
  -webkit-box-shadow: 0px 9px 10px rgba(0, 0, 0, 0.026);
  box-shadow: 0px 9px 10px rgba(0, 0, 0, 0.026);
}

.action__text {
  font-weight: bold;
  font-size: 22px;
  line-height: 125.8%;
  text-align: center;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.284);
  height: 130px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 50px;
}

@media (max-width: 991px) {
  .action__text {
    height: auto;
    padding: 20px;
  }
}

.action__btn {
  height: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}

.s-commerce {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.s-commerce-left,
.s-commerce-right {
  width: 50%;
}

@media (max-width: 1199px) {
  .s-commerce-left,
  .s-commerce-right {
    width: 100%;
  }
}

.s-commerce-left {
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}

@media (max-width: 1199px) {
  .s-commerce-left {
    display: none;
  }
}

.s-commerce-right {
  text-align: center;
  padding: 148px 0 260px;
  background: #2a3749 url(../img/white.png);
}

@media (max-width: 575px) {
  .s-commerce-right {
    padding-bottom: 148px;
  }
}

.s-commerce__icon {
  width: 72px;
  margin-bottom: 30px;
}

.s-commerce__title {
  font-weight: 800;
  font-size: 52px;
  line-height: 120.02%;
  text-transform: uppercase;
  color: #ffffff;
  max-width: 675px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .s-commerce__title {
    font-size: 38px;
  }
}

.s-commerce__text {
  font-size: 20px;
  line-height: 147.8%;
  color: #ffffff;
  max-width: 412px;
  width: 100%;
  margin: 0 auto;
}

.s-docs {
  background: #3c4c62;
}

.s-docs-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1199px) {
  .s-docs-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.s-docs-control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 60px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 1199px) {
  .s-docs-control {
    margin-left: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.s-docs-control__arrow {
  width: 66px;
  height: 66px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #ffdb4d;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.s-docs-control__arrow--right {
  margin-left: 14px;
}

.s-docs-control__arrow--right img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.s-docs-carousel {
  margin: 0 -30px;
  width: 1025px;
}

@media (max-width: 1199px) {
  .s-docs-carousel {
    width: 100%;
    margin: 0;
    margin-bottom: 50px;
  }
}

.s-docs-item-col {
  padding: 0 30px;
}

.s-docs-item__img-wrap {
  border: 1px solid rgba(255, 255, 255, 0.544);
  padding: 20px;
  margin-bottom: 34px;
  display: block;
}

.s-docs-item__img {
  overflow: hidden;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}

.s-docs-item__img::before {
  content: "";
  padding-top: 130%;
  float: left;
}

.s-docs-item__text {
  font-size: 20px;
  line-height: 124.8%;
  color: #ffffff;
}

.s-consultation {
  background: #2a3749;
}

.s-consultation-title {
  text-align: center;
}

.consultation {
  background: #3c4c62;
  -webkit-box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.086);
  box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.086);
  padding: 50px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 991px) {
  .consultation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.consultation-col {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 42px;
}

@media (max-width: 575px) {
  .consultation-col {
    padding: 0;
  }
}

.consultation__info {
  border: 1px solid rgba(196, 196, 196, 0.244);
  padding: 50px 45px;
}

@media (max-width: 991px) {
  .consultation__info {
    margin-bottom: 30px;
  }
}

@media (max-width: 479px) {
  .consultation__info {
    padding: 50px 5px;
  }
}

.consultation__title {
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 30px;
  line-height: 105.3%;
  margin-bottom: 40px;
}

.consultation__img {
  width: 148px;
  height: 148px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}

.consultation-form__label {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.consultation-form__label label.error {
  background-color: #c01717;
  display: block;
  padding: 10px 15px;
  color: #ffffff;
  font-size: 14px;
}

.consultation-form__input-text {
  width: 100%;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  border: none;
  padding: 18px 24px;
  color: #858585;
}

.consultation-form__input-text::-webkit-input-placeholder {
  color: #858585;
}

.consultation-form__input-text::-moz-placeholder {
  color: #858585;
}

.consultation-form__input-text:-ms-input-placeholder {
  color: #858585;
}

.consultation-form__input-text::-ms-input-placeholder {
  color: #858585;
}

.consultation-form__input-text::placeholder {
  color: #858585;
}

.consultation-form__time {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.consultation-form__time span {
  line-height: 130.8%;
  color: #ffffff;
}

.consultation-form__time select {
  padding: 18px 24px;
  color: #858585;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  border: none;
  width: 138px;
  margin-left: 10px;
}

.consultation-form__btn {
  width: 257px;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin: 14px auto 20px auto;
}

.consultation-form__agree {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.consultation-form__agree span {
  font-size: 15px;
  line-height: 15px;
  color: #ffffff;
}

.consultation-form__agree a {
  font-size: 15px;
  line-height: 15px;
  color: #ffffff;
  text-decoration: none;
}

.consultation-form__chbox {
  display: none;
}

.consultation-form__chbox:checked + .consultation-form__custom-chbox {
  background-color: #ffdb4d;
}

.consultation-form__chbox:checked + .consultation-form__custom-chbox::after {
  opacity: 1;
}

.consultation-form__custom-chbox {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #ffffff;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  margin-right: 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.consultation-form__custom-chbox::after {
  content: url(../img/check.svg);
  opacity: 0;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  margin-top: 3px;
}

.s-contacts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 850px;
  position: relative;
}

@media (max-width: 991px) {
  .s-contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
  }
}

.s-contacts-left {
  background: #2a3749 url(../img/white.png);
  width: 30%;
}

.s-contacts-map {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}

@media (max-width: 991px) {
  .s-contacts-map {
    -webkit-box-flex: 1;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
    height: 400px;
  }
}

.contacts-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
}

@media (max-width: 991px) {
  .contacts-wrap {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.contacts {
  background: #3c4c62;
  max-width: 526px;
  text-align: center;
  padding: 86px 20px;
  color: #ffffff;
  pointer-events: all;
}

@media (max-width: 991px) {
  .contacts {
    max-width: 100%;
  }
}

.contacts__title {
  font-size: 28px;
  line-height: 120.02%;
  margin-bottom: 46px;
}

@media (max-width: 479px) {
  .contacts__title {
    font-size: 38px;
  }
}

.contacts__address {
  font-size: 20px;
  line-height: 134.02%;
}

.contacts__phone {
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 40px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
}

.contacts__button {
  max-width: 240px;
  width: 100%;
  height: 60px;
  font-weight: 800;
  font-size: 15px;
}

.s-oferta {
  background: #f2f2f2;
  padding: 40px 15px;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  color: #3d3d3d;
}

.footer {
  background: #31353e;
  padding: 10px;
}

.footer-row {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .footer-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  line-height: 15px;
  color: rgba(255, 255, 255, 0.54);
}

.footer-logo__text {
  color: rgba(#fff, 0.8);
  font-weight: bold;
  font-size: 20px;
  margin-right: 5px;
}

.footer-logo img {
  margin-right: 18px;
  width: 100%;
  max-width: 130px;
  display: block;
}

@media (max-width: 1199px) {
  .footer-logo {
    margin-bottom: 20px;
  }
}

.footer-confid a {
  font-size: 15px;
  line-height: 20px;
  color: #ffffff;
  opacity: 0.6;
  text-decoration: none;
  margin: 0 7px;
}

@media (max-width: 1199px) {
  .footer-confid a {
    display: block;
    text-align: center;
  }
}

@media (max-width: 1199px) {
  .footer-confid {
    margin-bottom: 20px;
  }
}

.footer-cosmic {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  color: #ffffff;
  text-decoration: none;
}

.footer-cosmic img {
  margin-right: 10px;
}

.popup-form-wrapper {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.popup-form-wrapper .mfp-close {
  color: #ffdb4d !important;
  font-size: 40px;
}

.popup-form {
  width: 100%;
  background-color: #3c4c62;
  padding: 40px 100px;
}

@media (max-width: 575px) {
  .popup-form {
    padding: 40px;
  }
}

.popup-form__title {
  font-weight: bold;
  text-align: center;
  font-size: 38px;
  margin-bottom: 30px;
  color: #fff;
}

.popup-form__label {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.popup-form__label label.error {
  display: block;
  background-color: #c01717;
  color: #ffffff;
  padding: 10px;
}

.popup-form__input-text {
  width: 100%;
  padding: 20px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  border: none;
}

.popup-form__btn {
  max-width: 300px;
  width: 100%;
  margin: 0 auto 15px;
  height: 60px;
  display: block;
}

.popup-form__agree {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
}

.popup-form__agree a {
  color: #fff;
}

.popup-form__chbox {
  display: none;
}

.popup-form__chbox:checked + .popup-form__custom-chbox {
  background-color: #ffdb4d;
}

.popup-form__chbox:checked + .popup-form__custom-chbox::after {
  opacity: 1;
}

.popup-form__custom-chbox {
  margin-right: 10px;
  width: 22px;
  min-width: 22px;
  height: 22px;
  background-color: #ffffff;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.popup-form__custom-chbox::after {
  content: url(../img/check.svg);
  margin-top: 2px;
  opacity: 0;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

/**
 * Fade-zoom animation for first dialog
 */
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/**
 * Fade-move animation for second dialog
 */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  -ms-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

/**
 * Simple fade transition,
 */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.popup-info {
  background-color: #ffffff;
  max-width: 700px;
  padding: 50px 40px;
  margin: 0 auto;
}

.popup-info__title {
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 15px;
}

.popup-info__text {
  line-height: 1.5;
}

.popup-calc-wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.popup-calc-wrapper .mfp-close {
  color: #ffdb4d !important;
  font-size: 40px;
}

.popup-calc {
  background-color: #3c4c62;
  width: 100%;
  padding: 40px;
  color: #ffffff;
}

@media (max-width: 479px) {
  .popup-calc {
    padding: 40px 15px;
  }
}

.popup-calc-topline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 50px;
}

@media (max-width: 479px) {
  .popup-calc-topline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.popup-calc__title {
  font-weight: bold;
  font-size: 24px;
}

@media (max-width: 479px) {
  .popup-calc__title {
    margin-bottom: 10px;
  }
}

.popup-calc__plat span {
  font-weight: bold;
}

.popup-calc-item {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .popup-calc-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.popup-calc__name {
  width: 200px;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .popup-calc__name {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.popup-calc__set {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 20px;
}

@media (max-width: 767px) {
  .popup-calc__set {
    width: 100%;
  }
}

.popup-calc__button {
  width: 100%;
  max-width: 350px;
  padding: 24px 4px;
  margin: 0 auto;
  display: block;
}

.irs--round .irs-bar {
  background-color: #ffdb4d;
}

.thanks-page {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
}

.s-thanks {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 100px 15px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
}

.s-thanks div {
  font-size: 24px;
  margin-bottom: 10px;
}

.s-thanks a {
  color: #ffdb4d;
  font-weight: bold;
  font-size: 20px;
  margin-top: 20px;
  display: inline-block;
}

.policy {
  min-height: 100vh;
  color: #ffffff;
  padding: 40px 0;
}

.policy-title {
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: bold;
}

.policy-text ul li {
  margin-bottom: 15px;
}

.whats-app {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: block;
  width: 70px;
  height: 70px;
}

.whats-app img {
  width: 100%;
}
