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

@font-face {
  font-family: "SF UI Display";
  font-style: normal;
  font-weight: normal;
  src: url("/dist/fonts/SFUIDisplay/Regular/SFUIDisplay-Regular.woff2")
    format("woff2");
}

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

@font-face {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 300;
  src: url("/dist/fonts/Gilroy-FREE/Gilroy-Light.otf");
}

@font-face {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 800;
  src: url("/dist/fonts/Gilroy-FREE/Gilroy-ExtraBold.otf");
}

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

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

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: "SF UI Display", sans-serif;
  font-weight: normal;
  overflow-x: hidden;
  min-width: 360px;
  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;
  min-height: 100vh;
}

.wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.button {
  -webkit-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  position: relative;
  overflow: hidden;
  font-weight: 500;
}

.anim-btn-effect {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-85px);
  -ms-transform: translateX(-85px);
  transform: translateX(-85px);
  -webkit-animation-name: flash;
  animation-name: flash;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.anim-btn-effect::before {
  content: "";
  display: block;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0.1)),
    to(rgba(255, 255, 255, 0.4))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.4)
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.4)
  );
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.4)
  );
  width: 60px;
  height: 100%;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 30px;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

@-webkit-keyframes flash {
  30% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes flash {
  30% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

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

.col {
  padding: 0 8px;
  width: 50%;
}

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

.main-page {
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  padding: 10px 20px;
}

.main-page__topline {
  font-size: 19px;
  line-height: 26px;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.main-page__topline::after {
  content: "";
  width: 75px;
  height: 4px;
  display: block;
  background: #d7c68d;
  margin: 40px auto;
}

.main-page__title {
  font-size: 34px;
  line-height: 114.7%;
  color: #ffffff;
  margin-bottom: 60px;
  max-width: 1000px;
  width: 100%;
  font-weight: 500;
  font-family: "Muller", sans-serif;
}

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

@media (max-width: 575px) {
  .main-page__title {
    font-size: 36px;
  }
}

.main-page__subtitle {
  font-size: 22px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 88px;
  max-width: 800px;
  width: 100%;
}

.main-page__btn {
  font-size: 17px;
  color: #ffffff;
  max-width: 231px;
  width: 100%;
  display: block;
  background-color: #ff4f6e;
  padding: 20px 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  font-weight: bold;
}

.main-page__btn:hover {
  background-color: #3c4b73;
}

.main-page__advantages {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto 30px;
}

.advantage-col {
  width: 33.33%;
  padding: 0 15px;
}

@media (max-width: 991px) {
  .advantage-col {
    width: 100%;
    margin-bottom: 20px;
  }
}

.advantage {
  color: #ffffff;
  font-size: 17px;
  line-height: 24px;
}

.advantage__img {
  width: 90px;
  height: 90px;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.advantage__img img {
  width: 40px;
}

.quiz-step {
  width: 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;
}

.quiz-step__topimg {
  height: 80px;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}

.quiz-step-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 991px) {
  .quiz-step-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.quiz-step-body-left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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;
}

.quiz-step-body-left-form {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.quiz-step-body-right {
  width: 500px;
  background: #f5f9ff;
}

@media (max-width: 1199px) {
  .quiz-step-body-right {
    width: 400px;
  }
}

@media (max-width: 991px) {
  .quiz-step-body-right {
    width: 100%;
  }
}

.quiz-question {
  text-align: center;
  font-size: 24px;
  line-height: 33px;
  color: #000000;
  font-weight: bold;
  border-bottom: 1px solid #e0e0e0;
  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;
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .quiz-question {
    padding: 20px;
    height: auto;
  }
}

.quiz-progress {
  background-image: url(../img/progress-bg.jpg);
  height: 40px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
  margin-bottom: 20px;
}

.quiz-progress__line {
  background: #ff4f6e;
  text-align: center;
  height: 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;
  color: #ffffff;
  font-weight: bold;
}

.quiz-step-body-answers {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 15px;
}

.quiz-answer-wrap {
  margin-bottom: 8px;
  display: block;
  cursor: pointer;
}

.quiz-answer {
  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;
  background: #f1f4f9;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 17px;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.quiz-answer__custom-chbox {
  background: #ffffff;
  border: 1px solid #b4b4b4;
  -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;
  width: 28px;
  height: 28px;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  margin-right: 20px;
}

.quiz-answer__custom-chbox::before {
  content: url(../img/check.svg);
  opacity: 0;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.quiz-answer__text {
  color: #000;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.quiz-answer__chbox {
  display: none;
}

.quiz-answer__chbox:checked + .quiz-answer {
  background-color: #3d4c73;
}

.quiz-answer__chbox:checked + .quiz-answer .quiz-answer__custom-chbox {
  border-color: #fff;
}

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

.quiz-answer__chbox:checked + .quiz-answer .quiz-answer__text {
  color: #ffffff;
}

.quiz-step-buttons {
  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;
  margin-top: 40px;
}

.quiz-step__btn-skip,
.quiz-step__btn-prev {
  text-transform: uppercase;
  background-color: transparent;
  height: 70px;
  width: 100%;
  max-width: 272px;
  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-size: 17px;
  color: #9e9e9e;
  border-top: 1px solid #b5b5b5;
  border-left: 1px solid #b5b5b5;
  -webkit-border-radius: 0;
  border-radius: 0;
  font-weight: bold;
}

.quiz-step__btn-skip:hover,
.quiz-step__btn-prev:hover {
  background-color: #3c4b73;
  border-color: #3c4b73;
  color: #ffffff;
}

.quiz-step__btn-next {
  text-transform: uppercase;
  background-color: #3c4b73;
  height: 70px;
  width: 100%;
  max-width: 272px;
  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-size: 17px;
  color: #ffffff;
  -webkit-border-radius: 0;
  border-radius: 0;
  font-weight: bold;
}

.quiz-step__btn-next:hover {
  background-color: #2b3551;
}

.quiz-step__btn-next-arrow {
  width: 28px;
  height: 28px;
  background-color: #ffffff;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  margin-left: 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.quiz-step-body-right-top {
  padding: 5px;
  height: 150px;
  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-image: url(../img/right.jpg);
  margin-bottom: 40px;
  background-color: #3c4b73;
}

.quiz-step-body-right-top__img {
  width: 80px;
  min-width: 80px;
  height: 80px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  margin-right: 24px;
}

.quiz-step-body-right-top__name {
  font-size: 20px;
  line-height: 179%;
  color: #ffffff;
}

.quiz-step-body-right-top__position {
  line-height: 179%;
  color: rgba(255, 255, 255, 0.64);
}

.quiz-step-body-right-body {
  padding: 0 10px;
}

.quiz-step-body-right-body-dots {
  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: 32px;
}

.quiz-step-body-right-body-dots__item {
  width: 9px;
  height: 9px;
  border: 2px solid #c4c4c4;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  margin: 0 8px;
}

.quiz-step-body-right-body-dots__item.active {
  border-color: #ff4f6e;
  background-color: #ff4f6e;
}

.quiz-step-body-right-body__num {
  font-size: 18px;
  line-height: 27px;
  color: #646464;
  margin-bottom: 22px;
  text-align: center;
  font-weight: bold;
}

.quiz-step-body-right-body__num-gk {
  width: 135px;
  height: 135px;
  border: 10px solid #fff;
  -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;
  color: #ff4f6e;
  font-weight: bold;
  font-size: 46px;
  margin: 0 auto 30px;
}

.quiz-step-body-right-body__desc {
  line-height: 26px;
  width: 100%;
  max-width: 410px;
  margin: 0 auto 20px;
  color: #646464;
}

.quiz-step-body-right-body__desc-gk {
  text-align: center;
  line-height: 26px;
  width: 100%;
  max-width: 410px;
  margin: 0 auto 20px;
  color: #646464;
  font-weight: bold;
}

.quiz-step-error {
  border: 1px solid red;
  padding: 5px 10px;
  text-align: center;
  font-weight: bold;
  display: none;
}

.loading {
  text-align: center;
}

.loading__line {
  height: 100px;
  border-bottom: 1px solid #e0e0e0;
}

.loading-body {
  padding: 100px 0 30px;
}

.loading__title {
  font-size: 30px;
  line-height: 41px;
  color: #000000;
  margin-bottom: 8px;
  font-weight: bold;
}

.loading__subtitle {
  font-size: 18px;
  line-height: 18px;
  color: #515151;
  margin-bottom: 48px;
}

.loading-progress {
  width: 100%;
  max-width: 432px;
  background-image: url(../img/progress-bg.jpg);
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
  background-color: #e2e2e2;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  height: 40px;
  margin: 0 auto 46px;
  overflow: hidden;
}

.loading-progress__line {
  background-color: #5f73bd;
  width: 0;
  height: 100%;
}

.loading__percent {
  font-size: 60px;
  line-height: 59px;
  color: #000000;
}

.quiz-progress-form {
  max-width: 747px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  display: none;
}

.form-container {
  width: 100%;
  max-width: 425px;
  margin: 0 auto;
  text-align: center;
  padding: 28px 15px 90px;
}

.form-change-answers {
  font-size: 22px;
  line-height: 21px;
  color: #000000;
  -webkit-text-decoration-style: dotted;
  text-decoration-style: dotted;
  margin-bottom: 42px;
  display: inline-block;
}

.form-label {
  display: block;
  width: 100%;
  margin-bottom: 12px;
}

.form-label label.error {
  background-color: red;
  color: #ffffff;
  display: block;
  width: 100%;
  padding: 4px;
}

.error-sms {
  background-color: red;
  color: #ffffff;
  display: block;
  width: 100%;
  padding: 4px;
}

.form-label-phone {
  margin-bottom: 0;
}

.form-input-text {
  background: #f1f4f9;
  border: 1px solid #cdcdcd;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  width: 100%;
  padding: 15px;
  text-align: center;
  font-size: 17px;
  line-height: 17px;
  color: #282828;
}

.form-input-text::-webkit-input-placeholder {
  color: #282828;
}

.form-input-text::-moz-placeholder {
  color: #282828;
}

.form-input-text:-ms-input-placeholder {
  color: #282828;
}

.form-input-text::-ms-input-placeholder {
  color: #282828;
}

.form-input-text::placeholder {
  color: #282828;
}

.form-label-sms {
  display: none;
}

.form-phone-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.form-get-code {
  background-color: #3d4c73;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  color: #ffffff;
  -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;
  width: 150px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

.form-change-smeta {
  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;
  margin-bottom: 20px;
}

@media (max-width: 479px) {
  .form-change-smeta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.form-change-smeta__text {
  font-size: 15px;
}

@media (max-width: 479px) {
  .form-change-smeta__text {
    margin-bottom: 5px;
  }
}

.form-change-smeta-chboxes {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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;
}

.form-change-smeta-chboxes span {
  font-size: 15px;
}

.form-change-smeta-chboxes label {
  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;
  margin-left: 15px;
}

.form-change-smeta__custom-chbox {
  width: 28px;
  min-width: 28px;
  height: 28px;
  background: #f0f0f0;
  border: 1px solid #bbbbbb;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 10px;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  -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;
}

.form-change-smeta__custom-chbox::after {
  content: url(../img/check-white.svg);
  opacity: 0;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.form-change-smeta__chbox {
  display: none;
}

.form-change-smeta__chbox:checked + .form-change-smeta__custom-chbox {
  background-color: #3d4c73;
  border-color: #3d4c73;
}

.form-change-smeta__chbox:checked + .form-change-smeta__custom-chbox::after {
  opacity: 1;
}

.form__btn {
  font-size: 17px;
  color: #ffffff;
  text-transform: uppercase;
  background-color: #3d4c73;
  width: 100%;
  display: block;
  padding: 20px 4px;
  margin-bottom: 22px;
}

.form__btn:disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
}

.form-pers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.form-pers div {
  text-align: left;
  font-size: 14px;
  line-height: 14px;
  color: #898383;
}

.form-pers div a {
  font-size: 14px;
  line-height: 14px;
  color: #898383;
}

.form-pers__custom-chbox {
  width: 28px;
  height: 28px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #f0f0f0;
  border: 1px solid #bbbbbb;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  -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-right: 10px;
}

.form-pers__custom-chbox::after {
  content: url(../img/check-white.svg);
  opacity: 0;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.form-pers__chbox {
  display: none;
}

.form-pers__chbox:checked + .form-pers__custom-chbox {
  background-color: #3d4c73;
  border-color: #3d4c73;
}

.form-pers__chbox:checked + .form-pers__custom-chbox::after {
  opacity: 1;
}

.form-contact-select-title {
  font-size: 19px;
  margin-bottom: 25px;
}

.form-contact-select {
  margin-bottom: 25px;
}

.form-contact-select__item-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.form-contact-select__item-col {
  width: 33.33%;
  padding: 0 5px;
}

.form-contact-select__item {
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
}

.form-contact-select__item-text {
  background: #ff4f6e;
  box-shadow: 0px 3px 0px #ff4f6e;
  border-radius: 4px;
  color: #ffffff;
  padding: 18px 2px;
  position: relative;
  user-select: none;
}

.form-contact-select__item-text::before {
  content: "";
  position: absolute;
  display: none;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #4f6791;
}

.form-contact-select__radio {
  display: none;
}

.form-contact-select__radio:checked + .form-contact-select__item-text {
  background-color: #4f6791;
  box-shadow: 0px 3px 0px #4f6791;
}

.form-contact-select__radio:checked + .form-contact-select__item-text::before {
  display: none;
}

.form-text {
  text-align: left;
  font-size: 16px;
  color: #898383;
  margin-top: 20px;
}

.form-send-error {
  margin-bottom: 30px;
  background-color: red;
  color: #ffffff;
  display: block;
  width: 100%;
  padding: 4px;
}

.footer {
  background-color: #231d32;
  padding: 10px 70px;
  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;
}

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

.footer__copy {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1199px) {
  .footer__copy {
    margin-bottom: 10px;
  }
}

.footer__confid {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1199px) {
  .footer__confid {
    margin-bottom: 10px;
  }
}

.footer__cosmic {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.76);
  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-decoration: none;
}

.footer__cosmic img {
  margin-right: 5px;
}

.popup-text {
  background: white;
  padding: 20px 30px;
  text-align: left;
  max-width: 700px;
  width: 100%;
  margin: 40px auto;
  position: relative;
}

.thanks-page {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.thanks {
  flex: 1;
  background-image: url(/dist/img/bg.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}

.thanks-link{
  color: #39d430;
  font-weight: bold;
  font-size: 20px;
}

.thanks-title {
  color: #ffffff;
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 20px;
}

.thanks-subtitle {
  color: #ffffff;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}

.thanks-b {
  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  margin-bottom: 20px;
}

.thanks-b-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.thanks-b-img-col {
  flex: 1;
  padding: 0 10px;
}

.thanks-b-info-col {
  width: 70%;
  padding: 0 10px;
}

@media (max-width: 991px) {
  .thanks-b-info-col {
    width: 100%;
  }
}

.thanks-b-img {
  width: 100%;
  display: block;
}

@media (max-width: 991px) {
  .thanks-b-img {
    max-width: 500px;
    margin: 0 auto 20px;
  }
}

.thanks-b__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.thanks-b__ul {
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.thanks-b__li {
  margin-bottom: 8px;
  list-style-type: none;
  padding-left: 20px;
  position: relative;
  font-size: 18px;
}

.thanks-b__li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 100%;
  border: 2px solid #2e8e29;
}

.thanks-b__border {
  font-weight: bold;
  border-left: 3px solid #2e8e29;
  padding-left: 20px;
  font-size: 18px;
}

.thanks-b__border-link {
  color: #000000;
}

.thanks-b__text {
  font-size: 18px;
}

.thanks-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.thanks-btn {
  padding: 15px;
  font-weight: bold;
  color: #fff;
  background: #2e8e29;
  border-radius: 3px;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
  margin-bottom: 40px;
}

.thanks-btn:hover {
  background-color: #257321;
}

/* Styles for dialog window */
#small-dialog {
  background: white;
  padding: 20px 30px;
  text-align: left;
  max-width: 400px;
  margin: 40px auto;
  position: relative;
}

/**
 * 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;
}

/* CHECKLIST ------------------------------------------------------------------------------------ */
.checklist-wrap {
  background-size: cover;
  background-position: center;
}

.checklist {
  padding: 60px 0 80px 0;
  font-size: 16px;
  line-height: 22px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 10px;
}
.checklist-title {
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
}

.checklist-subtitle {
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
}
.checklist .text {
  color: #fff;
}
.checklist-btn {
  padding: 15px;
  text-decoration: none;
}
.checklist table {
  margin: 0 auto 40px auto;
  width: 800px;
  border-collapse: collapse;
  border-spacing: 0;
  color: #fff;
}
.checklist table tr td {
  padding: 10px;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #ddd;
}
.checklist table tr td:first-child {
  text-align: center;
}
.checklist table tr td:nth-child(1) {
  width: 5%;
}
.checklist table tr td:nth-child(2) {
  width: 45%;
}
.checklist table tr td:nth-child(3) {
  width: 50%;
}
.checklist .tb-hh {
  font-weight: bold;
  text-align: center;
}
.checklist .tb-check {
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #999;
}

@media (max-width: 992px) {
  .checklist table {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .checklist {
    padding-top: 0;
  }
  .checklist table tr td {
    font-size: 14px;
  }
}

.checklist-btn {
  background-color: #ff4f6e;
  color: #ffffff;
}

.checklist-btn:hover {
  color: #ffffff;
}

.pc {
  max-width: 1200px;
  margin: 0 auto;
}

.policy{
  min-height: 100vh;
  color: #000;
  padding: 40px 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.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: 130px;
  right: 10px;
  display: block;
  width: 70px;
  height: 70px;
}

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