@font-face {
  font-family: "FuturaPT-Book";
  src: url("../fonts/FuturaPT-Book.woff"), url("../fonts/FuturaPT-Book.woff2");
  font-display: swap;
}

@font-face {
  font-family: "FuturaPT-Medium";
  src: url("../fonts/FuturaPT-Medium.woff"), url("../fonts/FuturaPT-Medium.woff2");
  font-display: swap;
}

@font-face {
  font-family: "FuturaPT-Bold";
  src: url("../fonts/FuturaPT-Bold.woff"), url("../fonts/FuturaPT-Bold.woff2");
  font-display: swap;
}

.wrapper {
  max-width: 300px;
  margin: 0 auto;
  width: 100%;
}

.font-fut-med {
  font-family: "FuturaPT-Medium";
}

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.d-i-block {
  display: inline-block;
}

.btn {
  width: 100%;
  height: 100%;
  position: relative;
  font-size: 17px;
  line-height: 19px;
  text-align: center;
  color: #fff;
  border: none;
  cursor: pointer;
  background: linear-gradient(270deg, #2f1dff 0%, #ff1de8 98.87%), #ff7c1d;
  border: 3px solid #fff;
  box-shadow: 0px 20px 40px rgba(0,0,0,0.15);
  border-radius: 120px;
  transition: all 0.1s;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
  font-family: "FuturaPT-Bold";
  -webkit-tap-highlight-color: transparent;
}

.btn br {
  display: block;
}

.btn:hover {
  background: linear-gradient(270deg, #6f64eb 0%, #ec78e0 98.87%), #ff7c1d;
}

.btn:hover::before {
  animation: false;
}

.btn:active {
  background: linear-gradient(0deg, #c41dff, #c41dff);
  box-shadow: none;
}

.btn:active::before {
  animation: false;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 45px;
  transform: skewX(-45deg);
  left: -150%;
  background: linear-gradient(90deg, RGBA(255, 255, 255, 0.12), RGBA(255, 255, 255, 0.87));
  animation: flareAnimation 2s infinite ease-in-out;
}

@-moz-keyframes flareAnimation {
  0% {
    left: -150%;
  }

  100% {
    left: 150%;
  }
}

@-webkit-keyframes flareAnimation {
  0% {
    left: -150%;
  }

  100% {
    left: 150%;
  }
}

@-o-keyframes flareAnimation {
  0% {
    left: -150%;
  }

  100% {
    left: 150%;
  }
}

@keyframes flareAnimation {
  0% {
    left: -150%;
  }

  100% {
    left: 150%;
  }
}

.btn-quiz {
  border: 2px solid #fff;
  box-shadow: 0px 20px 40px rgba(0,0,0,0.15);
  border-radius: 100px;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  min-width: 132px;
  cursor: pointer;
  font-family: "FuturaPT-Medium";
  -webkit-tap-highlight-color: transparent;
}

.btn-quiz svg {
  fill: none;
}

.btn-quiz--prev {
  background: #dbdbdb;
}

.btn-quiz--prev svg {
  transform: rotate(180deg);
}

.btn-quiz--next {
  background: #4dae7b;
}

.btn-quiz--next:hover {
  background: linear-gradient(270deg, #2f1dff 0%, #ff1de8 98.87%);
}

.btn-quiz--next:active {
  background: linear-gradient(0deg, #c41dff, #c41dff);
}

.btn-quiz .checked {
  margin-left: -36px;
}

.connection {
  display: flex;
  align-items: center;
  justify-content: center;
}

.connection:hover .connection__icon {
  transform: rotate(10deg);
}

.connection__icon {
  margin-right: 2px;
  transition: 0.2s;
}

.connection__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
}

.connection__num {
  font-size: 15px;
  line-height: 18px;
  font-family: "FuturaPT-Medium";
}

.connection__description {
  font-size: 12px;
  line-height: 11px;
  text-align: center;
}

.connection__description-link {
  cursor: pointer;
  padding-bottom: 5px;
  max-width: 147px;
}

.input {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.input__icon {
  position: absolute;
  left: 16px;
}

.input__field {
  width: 100%;
  font-family: "FuturaPT-Book";
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  padding: 0;
  border: none;
  display: block;
  outline: none;
  color: #000;
  transition: all 0.3s;
  height: 100%;
  background: none;
  padding: 0 16px 0 44px;
  background: #fff;
  border: 1px solid #dcdcdc;
  box-shadow: inset 3px 3px 6px rgba(0,0,0,0.1);
  border-radius: 50px;
}

.input__field:-webkit-autofill,
.input__field:-webkit-autofill:hover,
.input__field:-webkit-autofill:focus,
.input__field:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

.input__field::placeholder {
  color: #c0c0c0;
  font-weight: 300;
}

.input__field:-ms-input-placeholder {
  color: #c0c0c0;
  font-weight: 300;
}

.input__field::-ms-input-placeholder {
  color: #c0c0c0;
  font-weight: 300;
}

.input__field.error {
  color: #d94c4c;
  font-style: italic;
}

.input__field.error::placeholder {
  color: #d94c4c;
}

.input__field.error:-ms-input-placeholder {
  color: #d94c4c;
}

.input__field.error::-ms-input-placeholder {
  color: #d94c4c;
}

.feedback {
  background: #f1f6f1;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.15);
  border-radius: 20px;
}

.feedback__form {
  border-radius: 20px;
}

.feedback__form--call {
  padding: 24px;
}

.feedback__form--leave {
  padding: 24px;
}

.feedback__form--leave .feedback__form-container {
  max-width: 384px;
}

.feedback__form--leave .feedback__title span:first-child {
  color: #3d403e;
  font-family: "FuturaPT-Bold";
}

.feedback__form--leave .feedback__title span:last-child {
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  color: #3d403e;
  font-family: "FuturaPT-Medium";
}

.feedback__form-container {
  max-width: 347px;
  width: 100%;
}

.feedback__title {
  font-size: 15px;
  line-height: 16px;
  text-align: center;
  color: #6ea711;
  margin-bottom: 27px;
  font-family: "FuturaPT-Bold";
}

.feedback__title br {
  display: block;
}

.feedback__title span {
  color: #3d403e;
  font-family: "FuturaPT-Book";
}

.feedback__container {
  max-width: 274px;
  margin: 0 auto 27px auto;
}

.feedback__input {
  height: 47px;
  margin-bottom: 12px;
}

.feedback__input:last-child {
  margin-bottom: 0;
}

.feedback__agree {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 27px;
}

.feedback__agree-icon {
  margin-right: 10px;
}

.feedback__agree-icon svg {
  width: 14px;
  height: 21px;
}

.feedback__agree-text {
  max-width: 191px;
  font-size: 12px;
  line-height: 11px;
  text-align: left;
}

.feedback__agree-text a {
  color: #4dae7b;
}

.feedback__btn {
  display: flex;
  justify-content: center;
}

.feedback__btn .btn-quiz {
  padding: 10px 30px;
}

.footer {
  background-color: #2e2e2e;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
}

.footer__row {
  padding: 28px 0 24px 0;
}

.footer__col {
  margin-bottom: 30px;
}

.footer__logo {
  margin-bottom: 30px;
}

.footer__logo svg {
  width: 203px;
  height: 36px;
  margin: 0 auto;
}

.footer__legal,
.footer__social {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.footer__legal {
  margin-bottom: 0;
  opacity: 0.7;
}

.footer__link {
  position: relative;
}

.footer__link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  bottom: 0;
}

.footer__text {
  margin-bottom: 2px;
  text-align: center;
  opacity: 0.7;
}

.footer__text-cop {
  margin-bottom: 10px;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  font-family: "FuturaPT-Bold";
}

.footer__text-cop span {
  font-family: "FuturaPT-Book";
}

.footer__f5:hover .f5__label {
  text-decoration: underline;
}

.footer__f5 img {
  width: 28px;
  height: 28px;
}

.footer__f5 .f5 {
  display: flex;
  align-items: center;
  max-width: 172px;
  margin: 0 auto;
}

.footer__f5 .f5__logo {
  margin-right: 10px;
}

.footer__f5 .f5__label {
  opacity: 0.7;
}

.footer__phone {
  margin-bottom: 18px;
}

.country {
  display: flex;
  justify-content: center;
  opacity: 0.7;
}

.country__logo {
  margin-right: 14px;
}

.header {
  width: 100%;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.header__logo svg {
  width: 122px;
  height: 37px;
}

.header__description {
  display: none;
}

.main-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
  position: relative;
}

.main-section__inner {
  padding: 20px 0 40px 0;
}

.main-section__title {
  margin-bottom: 10px;
  text-align: center;
}

.main-section__subtitle {
  color: #4dae7b;
  font-size: 18px;
  line-height: 20px;
  font-family: "FuturaPT-Bold";
  margin-bottom: 16px;
  text-align: center;
}

.main-section__subtitle br {
  display: block;
}

.main-section__frame {
  background: #fff;
  border: 1px solid #4dae7b;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.15);
  border-radius: 20px;
  padding: 12px;
  max-width: 625px;
  font-size: 16px;
  line-height: 20px;
  margin: 0 auto 30px 0;
  text-align: center;
}

.main-section__frame span {
  color: #4dae7b;
  font-family: "FuturaPT-Bold";
}

.main-section__frame br {
  display: block;
}

.main-section__container {
  margin-bottom: 282px;
}

.main-section__btn {
  max-width: 290px;
  height: 60px;
  width: 100%;
  margin: 0 auto 20px auto;
}

.main-section__text {
  font-size: 16px;
  line-height: 18px;
  max-width: 455px;
  width: 100%;
  text-align: center;
}

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

.remodal-overlay {
  background-color: RGBA(10, 10, 10, 0.769);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

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

.remodal {
  box-sizing: border-box;
  transform: translate3d(0, 0, 0);
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.remodal-wrapper.remodal-is-opened {
  display: flex !important;
}

.remodal-wrapper {
  overflow: hidden;
  padding: 0;
  margin: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  align-items: center;
}

.modal-scrollable.remodal-wrapper {
  display: flex;
  justify-content: center;
  padding: 14px 0;
  overflow: auto;
}

.remodal {
  max-height: 100%;
  width: 100%;
}

.remodal--feedback,
.remodal--quiz {
  max-width: 294px;
  margin: 0 auto;
  position: relative;
}

.remodal__close-form {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px;
  cursor: pointer;
  color: #3d403e;
  opacity: 0.2;
}

.remodal__close-form:hover {
  opacity: 1;
  color: #4dae7b;
}

.remodal__close-form svg {
  width: 20px;
  height: 20px;
}

@-moz-keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}

@-o-keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}

@-moz-keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}

@-o-keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}

@-moz-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-o-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-moz-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-o-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.content-privacy {
  max-width: 300px;
  margin: 0 auto;
  width: 100%;
  padding: 24px 16px;
  background-color: #fff;
  text-align: start;
  position: relative;
  border-radius: 10px;
}

.content-privacy__close {
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 15px;
}

.content-privacy__icon {
  color: #3d403e;
  opacity: 0.2;
}

.content-privacy__icon:hover {
  opacity: 1;
  color: #4dae7b;
}

.content-privacy h2 {
  font-family: "FuturaPT-Bold";
  text-align: center;
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 22px;
  font-weight: bold;
}

.content-privacy h3,
.content-privacy strong {
  font-family: "FuturaPT-Bold";
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 16px;
}

.content-privacy p {
  font-size: 14px;
  line-height: 16px;
}

.content-privacy p {
  padding: 0 10px;
  margin: 5px 0;
}

.quiz {
  color: #3d403e;
  text-align: left;
}

.quiz__steps {
  color: #000;
  font-size: 15px;
  line-height: 19px;
  text-align: center;
  color: #3d403e;
  opacity: 0.5;
  text-align: center;
  margin-bottom: 4px;
}

.quiz__change-stages {
  display: none;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.15);
  border-radius: 20px;
  padding: 25px 0 26px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.quiz__change-stages.active {
  display: block;
}

.quiz__change-stages--1 {
  background-image: url("../images/form-bg-1.jpg");
}

.quiz__change-stages--1 .quiz-content__wrapper {
  justify-content: space-between;
  max-width: 274px;
  margin: 0 auto;
}

.quiz__change-stages--1 .quiz-content__wrapper:nth-child(3) {
  margin-bottom: 30px;
}

.quiz__change-stages--1 .quiz-content__wrapper:last-child {
  margin-bottom: 36px;
}

.quiz__change-stages--1 .quiz-content__wrapper .quiz-content__item {
  margin-bottom: 10px;
  max-width: 133px;
  width: 100%;
}

.quiz__change-stages--1 .quiz-content__wrapper .quiz-content__item:last-child {
  margin-bottom: 0;
  margin-right: 0;
}

.quiz__change-stages--1 .quiz-content__wrapper .quiz-content__item .quiz-content__item-text {
  padding: 5px 6px 6px 6px;
  display: block;
  cursor: pointer;
}

.quiz__change-stages--1 .quiz-content__wrapper .quiz-content__item-container {
  background: #fff;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.05);
  border-radius: 50px;
  font-size: 14px;
  line-height: 16px;
  font-family: "FuturaPT-Medium";
  border: 1px solid #fff;
  color: #6ea711;
  text-align: center;
  display: block;
}

.quiz__change-stages--1 .quiz-content__wrapper .quiz-content__item-container:hover {
  background: #6ea711;
  color: #fff;
}

.quiz__change-stages--1 .quiz__info {
  max-width: 253px;
  margin-bottom: 26px;
}

.quiz__change-stages--1 .quiz__info br {
  display: block;
}

.quiz__change-stages--2 {
  background-image: url("../images/form-bg-2.jpg");
}

.quiz__change-stages--2 .quiz-checkbox {
  margin-bottom: 14px;
}

.quiz__change-stages--2 .quiz__info {
  max-width: 270px;
}

.quiz__change-stages--3 {
  background-image: url("../images/form-bg-3.jpg");
}

.quiz__change-stages--3 .quiz-checkbox {
  margin-bottom: 21px;
}

.quiz__change-stages--3 .quiz__info {
  max-width: 256px;
}

.quiz__change-stages--4 {
  background-image: url("../images/form-bg-4.jpg");
}

.quiz__change-stages--4 .quiz-checkbox {
  margin-bottom: 65px;
}

.quiz__change-stages--4 .quiz__info {
  max-width: 247px;
}

.quiz__change-stages--5 {
  background-image: url("../images/form-bg-5.jpg");
}

.quiz__change-stages--5 .quiz-checkbox {
  margin-bottom: 67px;
}

.quiz__change-stages--5 .quiz-checkbox__item {
  max-width: 310px;
}

.quiz__change-stages--5 .quiz-checkbox__item-text {
  max-width: 266px;
}

.quiz__change-stages--5 .quiz__info {
  max-width: 235px;
}

.quiz__change-stages--6 {
  background-image: url("../images/form-bg-6.jpg");
}

.quiz__change-stages--6 .quiz-checkbox {
  margin-bottom: 50px;
}

.quiz__change-stages--6 .quiz-checkbox__item {
  max-width: 330px;
}

.quiz__change-stages--6 .quiz-checkbox__item-text {
  max-width: 290px;
}

.quiz__change-stages--6 .quiz__info {
  max-width: 276px;
}

.quiz__change-stages--7 {
  background-image: url("../images/form-bg-7.jpg");
}

.quiz__change-stages--7 .quiz__title {
  margin-bottom: 10px;
}

.quiz__change-stages--7 .quiz-checkbox {
  margin-bottom: 67px;
}

.quiz__change-stages--7 .quiz-checkbox__item {
  max-width: 330px;
}

.quiz__change-stages--7 .quiz-checkbox__item-text {
  max-width: 290px;
}

.quiz__change-stages--7 .quiz__info {
  max-width: 270px;
  margin-bottom: 20px;
}

.quiz__change-stages--7 .btn-quiz--next {
  text-align: left;
  padding: 4px 17px;
}

.quiz__change-stages--7 .btn-quiz--next span {
  max-width: 130px;
}

.quiz__title {
  font-weight: 700;
  font-size: 19px;
  line-height: 22px;
  max-width: 603px;
  margin: 0 auto;
  text-align: center;
  color: #6ea711;
  margin-bottom: 30px;
}

.quiz__title span {
  color: #3d403e;
  display: block;
}

.quiz__subtitle {
  font-size: 16px;
  line-height: 17px;
  text-align: center;
  color: #4dae7b;
  font-family: "FuturaPT-Medium";
  max-width: 254px;
  margin: 0 auto;
  margin-bottom: 21px;
}

.quiz__info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 24px;
}

.quiz__info-text {
  font-size: 15px;
  line-height: 15px;
}

.quiz__info-text span {
  color: #4dae7b;
}

.quiz__info-icon {
  margin-right: 10px;
}

.quiz-content__item-label {
  -webkit-tap-highlight-color: transparent;
}

.quiz-content__item-input-text {
  margin-bottom: 24px;
  text-align: center;
}

.quiz-content__item-input-text input {
  background-color: #fff;
  border: 1px solid #dcdcdc;
  box-shadow: inset 3px 3px 6px rgba(0,0,0,0.1);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 18px;
  outline: none;
  max-width: 250px;
  height: 40px;
  width: 100%;
  color: #3d403e;
  font-family: "FuturaPT-Book";
}

.quiz-content__item-input-text input::placeholder {
  color: #888;
  opacity: 0.5;
}

.quiz-content__item-input-text input:-ms-input-placeholder {
  color: #888;
  opacity: 0.5;
}

.quiz-content__item-input-text input::-ms-input-placeholder {
  color: #888;
  opacity: 0.5;
}

.quiz-content__wrapper {
  width: 100%;
  flex-wrap: wrap;
  display: flex;
}

.quiz-content__item-input {
  display: block;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.quiz-controls {
  display: flex;
  justify-content: center;
}

.quiz-controls__btn-prev {
  margin-right: 10px;
}

.quiz-checkbox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 581px;
  margin: 0 auto;
}

.quiz-checkbox__item {
  margin-bottom: 10px;
  max-width: 281px;
  width: 100%;
}

.quiz-checkbox__item-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.quiz-checkbox__item-label.align-i-f-start {
  align-items: flex-start;
}

.quiz-checkbox__item-input {
  display: block;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.quiz-checkbox__item-input:checked + .quiz-checkbox__item-radio {
  color: #fff;
  position: relative;
}

.quiz-checkbox__item-input:checked + .quiz-checkbox__item-radio:before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 3px;
  bottom: 3px;
  background-color: #4dae7b;
  border-radius: 4px;
}

.quiz-checkbox__item-radio {
  width: 20px;
  height: 20px;
  background-color: #fff;
  box-shadow: inset 1px 1px 5px rgba(0,0,0,0.2);
  border-radius: 5px;
  display: block;
  margin-right: 15px;
}

.quiz-checkbox__item-text {
  font-size: 16px;
  line-height: 18px;
  font-family: "FuturaPT-Medium";
  max-width: 218px;
}

.quiz-feedback {
  margin-bottom: 40px;
  max-width: 240px;
  margin: 0 auto 14px auto;
}

.quiz-feedback__item {
  max-width: 240px;
  width: 100%;
  height: 47px;
  margin-bottom: 16px;
}

.quiz-feedback__item:nth-child(2) {
  max-width: 240px;
}

.quiz-feedback__item:last-child {
  margin-right: 0;
  margin-bottom: 0;
}

.thanks-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
  color: #3d403e;
}

.thanks-section__inner {
  position: relative;
  z-index: 1;
  padding: 40px 0 60px 0;
}

.thanks-section__title {
  font-size: 23px;
  line-height: 25px;
  text-transform: initial;
  margin-bottom: 30px;
}

.thanks-section__title span {
  color: #3d403e;
}

.thanks-section__info {
  max-width: 636px;
  background-color: #fff;
  border: 1px solid #4dae7b;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.15);
  border-radius: 15px;
  padding: 12px 20px;
  font-size: 18px;
  line-height: 22px;
  margin: 0 auto 55px auto;
  text-align: center;
}

.thanks-section__info span {
  color: #4dae7b;
  font-family: "FuturaPT-Bold";
}

.thanks-section__time {
  margin-bottom: 49px;
}

.thanks-section__time ul li {
  font-size: 16px;
  line-height: 18px;
  text-align: center;
}

.thanks-section__time ul li:nth-child(1) {
  color: #4dae7b;
  margin-bottom: 13px;
}

.thanks-section__time ul li:nth-child(2) {
  margin-bottom: 7px;
}

.thanks-section__time ul li:nth-child(2) div {
  opacity: 0.7;
}

.thanks-section__time ul li:nth-child(3) {
  max-width: 428px;
  font-size: 14px;
  line-height: 18px;
  opacity: 0.7;
}

.thanks-section__time-icon svg {
  width: 77px;
  height: 77px;
  margin: 0 auto;
}

.thanks-section__container {
  display: flex;
  justify-content: center;
  margin-bottom: 364px;
}

.thanks-section__social ul {
  display: flex;
  align-items: center;
}

.thanks-section__social ul li {
  margin-right: 30px;
}

.thanks-section__social ul li a {
  display: flex;
  align-items: center;
}

.thanks-section__social ul li a span {
  font-size: 18px;
  line-height: 23px;
  font-family: "FuturaPT-Medium";
}

.thanks-section__social ul li:last-child {
  margin-right: 0;
}

.thanks-section__social ul li:nth-child(2) span {
  margin-left: 13px;
}

.thanks-section__social-title {
  font-size: 17px;
  line-height: 22px;
  color: #4dae7b;
  margin-bottom: 4px;
}

.thanks-section__slogan-name {
  max-width: 347px;
  width: 100%;
  min-height: 74px;
  padding: 10px 10px 10px 6px;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 882px;
  right: 0;
  margin: 0 auto;
  color: #fff;
  text-align: right;
  background-color: #4dae7b;
  border: 1px solid #fff;
  border-radius: 16px;
}

.thanks-section__slogan-name:before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 226px;
  top: -15px;
  width: 25px;
  height: 27px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: skewX(310deg) rotate(313deg);
  border-radius: 0px 4px 0px 0px;
  background-color: #4dae7b;
}

.thanks-section__slogan-name div {
  font-size: 16px;
  line-height: 18px;
  font-family: "FuturaPT-Bold";
  margin-bottom: 4px;
}

.thanks-section__slogan-name span {
  font-size: 14px;
  line-height: 17px;
  font-family: "FuturaPT-Medium";
}

.thanks-section__slogan-name span span {
  font-family: "FuturaPT-Book";
}

.thanks-section__back {
  background: #dbdbdb;
  border: 2px solid #fff;
  box-shadow: 0px 20px 40px rgba(0,0,0,0.15);
  border-radius: 100px;
  max-width: 240px;
  margin: 0 auto;
}

.thanks-section__back a {
  display: flex;
  align-items: center;
  padding: 8px 20px;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  font-family: "FuturaPT-Medium";
}

.thanks-section__back svg {
  fill: none;
  transform: rotate(180deg);
  margin-right: 30px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.page--thanks {
  background-color: #f4f8f4;
  background-image: url("../images/main-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.page--thanks:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url("../images/main-section-photo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 260px auto;
  background-position-x: calc(50% - 0px);
  background-position-y: calc(50% - -70px);
}

.page--thanks .connection__description {
  font-size: 12px;
  line-height: 11px;
}

.page--thanks .connection__description br {
  display: block;
}

.page__header--default {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #f4f8f4;
  background-image: url("../images/main-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.page__header--default:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url("../images/main-section-photo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 269px auto;
  background-position-x: calc(50% - 11px);
  background-position-y: calc(50% - -270px);
}

.page__content--layout {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .wrapper {
    max-width: 760px;
  }

  .btn {
    font-size: 18px;
    line-height: 20px;
  }

  .btn-quiz {
    min-width: 168px;
    font-size: 18px;
    line-height: 23px;
    padding: 10px 30px;
  }

  .btn-quiz .checked {
    margin-left: 50px;
  }

  .connection {
    justify-content: flex-end;
  }

  .connection__icon {
    margin-right: 6px;
  }

  .connection__icon svg {
    width: 20px;
    height: 20px;
  }

  .input__icon {
    left: 13px;
  }

  .input__field {
    padding: 0 14px 0 38px;
    font-size: 17px;
    line-height: 23px;
  }

  .feedback {
    min-height: 498px;
  }

  .feedback__form--call {
    background: linear-gradient(76.73deg, #f3f7f3 9.54%, rgba(243,247,243,0) 69.01%), url("../images/photo-form-call.jpg");
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: right;
    padding: 40px;
  }

  .feedback__form--leave {
    background: linear-gradient(76.73deg, #f3f7f3 9.54%, rgba(243,247,243,0) 69.01%), url("../images/photo-form-leave.jpg");
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: right;
    padding: 40px;
  }

  .feedback__form--leave .feedback__title span:last-child {
    font-size: 16px;
    line-height: 18px;
  }

  .feedback__title {
    font-size: 20px;
    line-height: 22px;
  }

  .feedback__agree-icon {
    margin-right: 20px;
  }

  .feedback__agree-icon svg {
    width: 20px;
    height: 30px;
  }

  .feedback__agree-text {
    max-width: 284px;
    font-size: 15px;
    line-height: 15px;
  }

  .footer__row {
    display: flex;
    justify-content: space-between;
  }

  .footer__col {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .footer__col--middle {
    order: -1;
  }

  .footer__text {
    margin-bottom: 4px;
    text-align: left;
  }

  .footer__text-cop {
    text-align: left;
  }

  .country {
    justify-content: flex-start;
  }

  .header__inner {
    padding: 35px 0;
  }

  .header__logo svg {
    width: 142px;
    height: 43px;
  }

  .header__description {
    display: block;
    max-width: 364px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
  }

  .main-section__inner {
    padding: 40px 0 60px 0;
  }

  .main-section__title {
    margin-bottom: 20px;
    text-align: left;
    max-width: 386px;
  }

  .main-section__subtitle {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 54px;
    text-align: left;
  }

  .main-section__frame {
    font-size: 18px;
    line-height: 22px;
    margin: 0 auto 40px 0;
    text-align: left;
  }

  .main-section__container {
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }

  .main-section__btn {
    margin: 0 18px 0 0;
    max-width: 300px;
    height: 80px;
  }

  .main-section__text {
    font-size: 18px;
    line-height: 23px;
    text-align: left;
  }

  .modal-scrollable.remodal-wrapper {
    padding: 20px 0;
  }

  .remodal--feedback,
  .remodal--quiz {
    max-width: 700px;
  }

  .remodal__close-form svg {
    width: 30px;
    height: 30px;
  }

  .content-privacy {
    padding: 24px 44px;
    max-width: 450px;
  }

  .content-privacy__close {
    top: 20px;
    right: 20px;
  }

  .content-privacy h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .content-privacy h3,
  .content-privacy strong {
    font-size: 16px;
    line-height: 20px;
  }

  .content-privacy p {
    margin: 10px 0;
    padding: 0 20px;
  }

  .quiz__change-stages {
    padding: 34px 0 35px 0;
    background-size: auto;
    height: 516px;
  }

  .quiz__change-stages--1 .quiz-content__wrapper {
    margin: 0 0 10px 0;
    max-width: 100%;
    justify-content: center;
  }

  .quiz__change-stages--1 .quiz-content__wrapper:nth-child(3) {
    margin-bottom: 50px;
  }

  .quiz__change-stages--1 .quiz-content__wrapper .quiz-content__item {
    max-width: 100%;
    margin-bottom: 0;
    margin-right: 10px;
    width: auto;
  }

  .quiz__change-stages--1 .quiz-content__wrapper .quiz-content__item .quiz-content__item-text {
    padding: 6px 16px 5px 16px;
  }

  .quiz__change-stages--1 .quiz-content__wrapper .quiz-content__item-container {
    font-size: 18px;
    line-height: 23px;
  }

  .quiz__change-stages--1 .quiz__info {
    margin-bottom: 44px;
    max-width: 266px;
  }

  .quiz__change-stages--2 .quiz-checkbox {
    margin-bottom: 46px;
    justify-content: space-between;
  }

  .quiz__change-stages--2 .quiz__info {
    max-width: 380px;
  }

  .quiz__change-stages--3 .quiz__info {
    max-width: 370px;
  }

  .quiz__change-stages--4 .quiz-checkbox {
    margin-bottom: 101px;
  }

  .quiz__change-stages--4 .quiz__info {
    max-width: 358px;
  }

  .quiz__change-stages--5 .quiz-checkbox {
    margin-bottom: 61px;
  }

  .quiz__change-stages--6 .quiz-checkbox {
    margin-bottom: 61px;
  }

  .quiz__change-stages--6 .quiz__info {
    max-width: 341px;
  }

  .quiz__change-stages--7 .quiz__title {
    margin-bottom: 20px;
  }

  .quiz__change-stages--7 .quiz__info {
    margin-bottom: 42px;
    max-width: 533px;
  }

  .quiz__change-stages--7 .btn-quiz--next {
    padding: 10px 30px;
  }

  .quiz__change-stages--7 .btn-quiz--next span {
    max-width: 100%;
  }

  .quiz__title {
    font-size: 34px;
    line-height: 36px;
    margin-bottom: 30px;
  }

  .quiz__subtitle {
    max-width: 476px;
    font-size: 18px;
    line-height: 23px;
  }

  .quiz__info-icon {
    margin-right: 20px;
  }

  .quiz-content__item-input-text {
    margin-bottom: 16px;
  }

  .quiz-content__item-input-text input {
    padding: 15px 30px;
    font-size: 19px;
    line-height: 28px;
    height: 50px;
    max-width: 336px;
  }

  .quiz-content__wrapper {
    flex-wrap: nowrap;
  }

  .quiz-controls__btn-prev {
    margin-right: 15px;
  }

  .quiz-checkbox__item:last-child {
    margin-bottom: 0;
  }

  .quiz-checkbox__item-input:checked + .quiz-checkbox__item-radio:before {
    left: 5px;
    right: 5px;
    top: 5px;
    bottom: 5px;
  }

  .quiz-checkbox__item-radio {
    border-radius: 8px;
    width: 30px;
    height: 30px;
  }

  .quiz-checkbox__item-text {
    max-width: 236px;
    font-size: 18px;
    line-height: 23px;
  }

  .quiz-feedback {
    max-width: 100%;
    margin: 0 auto 51px auto;
    margin-bottom: 51px;
    display: flex;
    justify-content: center;
  }

  .quiz-feedback__item {
    max-width: 190px;
    height: 47px;
    margin-right: 20px;
  }

  .thanks-section__title {
    font-size: 36px;
    line-height: 40px;
  }

  .thanks-section__time {
    display: flex;
  }

  .thanks-section__time ul li {
    text-align: left;
    font-size: 18px;
    line-height: 23px;
  }

  .thanks-section__time-icon {
    margin-right: 16px;
  }

  .thanks-section__container {
    margin-bottom: 120px;
    justify-content: flex-start;
  }

  .thanks-section__social-title {
    font-size: 18px;
    line-height: 23px;
  }

  .thanks-section__slogan-name {
    left: 134px;
    top: 550px;
    right: auto;
    margin: 0;
    min-height: 74px;
    padding: 10px 20px 10px 10px;
  }

  .thanks-section__slogan-name:before {
    transform: skewX(317deg) rotate(0);
    right: -14px;
    top: 14px;
  }

  .thanks-section__slogan-name div {
    font-size: 18px;
    line-height: 22px;
  }

  .thanks-section__slogan-name span {
    font-size: 16px;
    line-height: 18px;
  }

  .thanks-section__back {
    margin: 0 auto 0 194px;
  }

  .page--thanks:before {
    background-size: 280px auto;
    background-position-x: calc(50% - -214px);
    background-position-y: calc(50% - -92px);
  }

  .page--thanks:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url("../images/thanks-section-decor.jpg");
    background-repeat: no-repeat;
    background-blend-mode: multiply, normal;
    background-size: 58px auto;
    background-position-x: left;
    background-position-y: calc(50% - -202px);
  }

  .page__header--default:before {
    background-size: 300px auto;
    background-position-x: calc(50% - -250px);
    background-position-y: calc(50% - 51px);
  }

  .page__header--default:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url("../images/main-section-decor.png");
    background-repeat: no-repeat;
    background-blend-mode: multiply, normal;
    background-size: 133px auto;
    background-position-x: calc(50% - 476px);
    background-position-y: calc(50% - -222px);
  }
}

@media only screen and (min-width: 1024px) {
  .input__icon {
    left: 18px;
  }

  .input__field {
    padding: 0 17px 0 44px;
  }

  .remodal--feedback,
  .remodal--quiz {
    max-width: 800px;
  }

  .content-privacy {
    max-width: 650px;
  }

  .quiz__change-stages {
    height: 600px;
    padding: 64px 0 65px 0;
  }

  .quiz__change-stages--1 .quiz-content__wrapper:nth-child(3) {
    margin-bottom: 42px;
  }

  .quiz__title {
    font-size: 40px;
    line-height: 44px;
  }

  .quiz-content__item-input-text input {
    max-width: 432px;
    height: 66px;
    font-size: 24px;
    line-height: 31px;
  }

  .quiz-feedback__item {
    max-width: 210px;
  }

  .quiz-feedback__item:nth-child(2) {
    max-width: 260px;
  }

  .page--thanks:after {
    background-size: 120px auto;
    background-position-x: left;
    background-position-y: calc(50% - -202px);
  }
}

@media only screen and (min-width: 1200px) {
  .wrapper {
    max-width: 1166px;
  }

  .btn {
    font-size: 24px;
    line-height: 26px;
  }

  .connection__icon {
    margin-right: 10px;
  }

  .connection__icon svg {
    width: 24px;
    height: 24px;
  }

  .connection__num {
    font-size: 22px;
    line-height: 28px;
  }

  .connection__description {
    font-size: 18px;
    line-height: 18px;
  }

  .feedback {
    min-height: 600px;
  }

  .feedback__form--call {
    padding: 76px 87px 80px 87px;
  }

  .feedback__form--leave {
    padding: 64px 31px 65px 31px;
  }

  .feedback__form--leave .feedback__form-container {
    max-width: 459px;
  }

  .feedback__form--leave .feedback__title span:last-child {
    font-size: 18px;
    line-height: 31px;
  }

  .feedback__title {
    font-size: 24px;
    line-height: 31px;
  }

  .feedback__container {
    max-width: 300px;
  }

  .footer {
    font-size: 18px;
    line-height: 20px;
  }

  .footer__logo svg {
    width: 199px;
    height: 61px;
  }

  .footer__text-cop {
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 17px;
  }

  .footer__f5 img {
    width: 37px;
    height: 36px;
  }

  .footer__f5 .f5 {
    max-width: 248px;
  }

  .footer__phone {
    margin-bottom: 26px;
  }

  .header__inner {
    padding: 45px 0;
  }

  .header__logo svg {
    width: 199px;
    height: 61px;
  }

  .header__description {
    font-size: 18px;
    line-height: 23px;
    max-width: 428px;
  }

  .main-section__inner {
    padding: 66px 0 100px 0;
  }

  .main-section__title {
    margin-bottom: 33px;
    max-width: 738px;
  }

  .main-section__subtitle {
    margin-bottom: 27px;
    max-width: 586px;
    font-size: 42px;
    line-height: 42px;
  }

  .main-section__frame {
    padding: 15px 30px 18px 28px;
    max-width: 708px;
    margin: 0 auto 62px 0;
    font-size: 20px;
    line-height: 24px;
  }

  .main-section__btn {
    margin: 0 18px 0 0;
    max-width: 355px;
    height: 92px;
  }

  .remodal__close-form {
    top: 20px;
    right: 20px;
  }

  .content-privacy h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .content-privacy h3,
  .content-privacy strong {
    font-size: 18px;
    line-height: 24px;
  }

  .content-privacy p {
    font-size: 16px;
    line-height: 18px;
  }

  .quiz__change-stages--7 .quiz__title {
    margin-bottom: 33px;
  }

  .thanks-section__inner {
    padding: 78px 0 81px 0;
  }

  .thanks-section__title {
    font-size: 42px;
    margin-bottom: 40px;
    line-height: 46px;
  }

  .thanks-section__info {
    padding: 16px 10px;
    max-width: 716px;
    font-size: 20px;
    line-height: 24px;
    margin: 0 auto 55px 0;
  }

  .thanks-section__time-icon {
    margin-right: 30px;
  }

  .thanks-section__time-icon svg {
    margin: 0 auto 0 0;
    width: 122px;
    height: 120px;
  }

  .thanks-section__container {
    margin-bottom: 41px;
  }

  .thanks-section__slogan-name {
    left: 346px;
    top: 514px;
    max-width: 485px;
    min-height: 112px;
    padding: 20px 30px 26px 19px;
  }

  .thanks-section__slogan-name:before {
    top: 26px;
  }

  .thanks-section__slogan-name div {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 31px;
  }

  .thanks-section__slogan-name span {
    font-size: 18px;
    line-height: 23px;
  }

  .thanks-section__back {
    margin: 0 auto 0 439px;
    max-width: 292px;
  }

  .thanks-section__back a {
    padding: 10px 30px;
    font-size: 18px;
    line-height: 23px;
  }

  .thanks-section__back svg {
    margin-right: 50px;
  }

  .page--thanks:before {
    background-size: 616px auto;
    background-position-x: calc(50% - -464px);
    background-position-y: calc(50% - 26px);
  }

  .page--thanks:after {
    background-size: 150px auto;
    background-position-y: calc(50% - -294px);
  }

  .page--thanks .connection__description {
    font-size: 14px;
    line-height: 12px;
  }

  .page__header--default:before {
    background-size: 616px auto;
    background-position-x: calc(50% - -445px);
    background-position-y: calc(50% - -85px);
  }

  .page__header--default:after {
    background-size: 445px auto;
    background-position-x: calc(50% - 841px);
    background-position-y: calc(50% - -188px);
  }
}

@media only screen and (min-width: 1800px) {
  .page--thanks:after {
    background-size: 303px auto;
    background-position-x: left;
    background-position-y: calc(50% - -70px);
  }
}

@media only screen and (min-width: 2400px) {
  .page--thanks:after {
    background-position-x: calc(50% - 1204px);
  }

  .page__header--default:after {
    background-position-x: calc(50% - 1007px);
  }
}