@charset "UTF-8";
:root {
  --color-detail:rgb(251, 207, 0);
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: local(""), url("../font/open-sans-v34-latin-300.woff2") format("woff2"), url("../font/open-sans-v34-latin-300.woff") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../font/open-sans-v34-latin-regular.woff2") format("woff2"), url("../font/open-sans-v34-latin-regular.woff") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("../font/open-sans-v34-latin-600.woff2") format("woff2"), url("../font/open-sans-v34-latin-600.woff") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../font/open-sans-v34-latin-700.woff2") format("woff2"), url("../font/open-sans-v34-latin-700.woff") format("woff");
}
* {
  margin: 0;
  box-sizing: inherit;
}
*:before, *:after {
  box-sizing: inherit;
}

html {
  height: 100%;
}

body {
  font: 15px "Open Sans", Arial, sans-serif;
  color: rgb(112, 112, 112);
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
}
body.overlayOpen {
  overflow: hidden;
}

a {
  color: inherit;
}

h1, .h1 {
  font: bold 25px/38px "Open Sans", Arial, sans-serif;
  color: rgb(39, 39, 39);
  text-transform: uppercase;
}

h2, .h2 {
  font: 600 20px/27px "Open Sans", Arial, sans-serif;
  color: rgb(251, 207, 0);
}

input,
textarea {
  border-radius: 0;
  outline: 0;
  box-shadow: none;
}

.wrp {
  position: relative;
  width: 980px;
  margin: auto;
  padding: 0 30px;
}

.main {
  flex-grow: 1;
}

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

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

.svg-icon {
  display: block;
}

.btn-block {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.btn-block--left {
  justify-content: flex-start;
}

.btn {
  display: inline-block;
  background: rgb(251, 207, 0);
  background: var(--color-detail);
  border: 1px solid rgb(251, 207, 0);
  border-color: var(--color-detail);
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 11px 45px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  min-width: 290px;
  cursor: pointer;
}
.btn:hover {
  background: transparent;
  color: rgb(251, 207, 0);
  color: var(--color-detail);
}

.btn--auto {
  min-width: 0;
}

.privacy-list {
  padding: 0;
  font-size: 17px;
  line-height: 27px;
  margin-bottom: 76px;
}
.privacy-list li {
  display: block;
}
.privacy-list a {
  color: rgb(251, 207, 0);
  text-decoration: none;
}

.listIndent {
  min-width: 30px;
  display: inline-block;
}

@media (max-width: 980px) {
  .wrp {
    width: auto;
  }
}
.header {
  padding: 35px 0 45px;
  text-align: center;
}

.header--detail {
  padding: 36px 0 21px;
  text-align: right;
}

.header__logo {
  display: inline-block;
  vertical-align: top;
  width: 93px;
  height: 112px;
}

.header__detail-logo {
  display: inline-block;
  vertical-align: top;
  max-width: 220px;
  height: auto;
}

.footer {
  background: rgb(247, 247, 247);
  margin-top: 64px;
  min-height: 50px;
}

.footer-nav {
  position: absolute;
  top: 0;
  right: 30px;
}

.footer-nav__list {
  display: flex;
  padding: 0;
}

.footer-nav__item {
  display: block;
  margin-left: 28px;
}
.footer-nav__item:first-child {
  margin-left: 0;
}

.footer-nav__link {
  display: block;
  line-height: 50px;
  text-decoration: none;
}
.footer-nav__link:hover {
  color: rgb(251, 207, 0);
}

.home-text {
  padding: 71px 0 0;
  text-align: center;
}

.home-text__text-block {
  width: 452px;
  margin: 0 auto;
}

.home-text__text {
  margin-top: 30px;
}

.detail-icons {
  margin: 50px 0;
  padding: 58px 0 50px;
  background: rgb(247, 247, 247);
}

.detail-icons__subheader {
  color: var(--color-detail);
}

.detail-icons__icon-block {
  margin: 19px -30px 0;
  display: flex;
  flex-wrap: wrap;
}

.detail-icons__icon-col {
  width: calc(50% - 60px);
  margin: 0 30px 0;
}

.detail-icons__icon-item {
  position: relative;
  padding: 0 10px 0 39px;
  min-height: 22px;
  margin-top: 20px;
}

.detail-icons__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  fill: rgb(251, 207, 0);
  fill: var(--color-detail);
}

.detail-icons__link {
  text-decoration: none;
}
.detail-icons__link:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .detail-icons__icon-block {
    margin-left: 0;
    margin-right: 0;
  }
  .detail-icons__icon-col {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.detail-text {
  margin: 50px 0;
}

.detail-text__text-block {
  margin-top: 33px;
}

.detail-text__text-block-item {
  margin: 40px 0;
}

.detail-text__list-header {
  color: var(--color-detail);
  margin-bottom: 15px;
}

.detail-text__list {
  padding: 0;
}

.detail-text__list-item {
  margin-top: 15px;
  display: block;
  position: relative;
  padding-left: 12px;
}
.detail-text__list-item:first-child {
  margin-top: 0;
}
.detail-text__list-item:before {
  content: "•";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
  color: var(--color-detail);
}
.detail-text__list-item:first-child {
  margin-top: 5px;
}

.detail-text__btn-block {
  margin-top: 64px;
}

.question-block {
  padding: 0 0 40px;
  text-align: center;
}

.question__progress {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.question__progress-item {
  width: 30px;
  height: 4px;
  background: #e2e2e2;
  margin: 0 5px;
}

.question__progress-item--active {
  background: rgb(251, 207, 0);
  background: var(--color-detail);
  cursor: pointer;
}

.question__item {
  display: none;
}

.question__item--active {
  display: block;
}

.question__header {
  max-width: 577px;
  margin: 0 auto 48px;
  text-transform: none;
}

.question__square-block {
  display: flex;
  justify-content: center;
}

.question__square {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 140px;
  height: 140px;
  background: rgb(247, 247, 247);
  border: 2px solid rgb(247, 247, 247);
  border-radius: 8px;
  margin: 0 8px;
  padding: 0 10px;
  cursor: pointer;
}

.question__square-icon {
  display: block;
  margin: 0 auto;
  width: 60px;
  height: 56px;
  margin-bottom: 17px;
  fill: rgb(251, 207, 0);
  fill: var(--color-detail);
}

.question__square-label {
  font-weight: 600;
}

.question__list-block {
  max-width: 296px;
  margin: 0 auto;
}

.question__list-item {
  background: rgb(247, 247, 247);
  margin-top: 16px;
  padding: 20px 0;
  border-radius: 8px;
  border: 2px solid rgb(247, 247, 247);
  cursor: pointer;
}
.question__list-item:first-child {
  margin-top: 0;
}
.question__list-item:hover {
  border-color: rgb(112, 112, 112);
}

.question__list-item--active {
  border-color: rgb(251, 207, 0);
  border-color: var(--color-detail);
}
.question__list-item--active:hover {
  border-color: var(--color-detail);
}

.question__list-item-label {
  font-weight: 600;
}

.question__list-text-block {
  margin-top: 30px;
}

.question__textarea {
  width: 296px;
  height: 182px;
  padding: 13px;
  background: rgb(247, 247, 247);
  font: inherit;
  border-radius: 8px;
  border: 1px solid rgb(247, 247, 247);
  font-size: 13px;
  color: #272727;
}
.question__textarea:focus {
  border-color: rgb(39, 39, 39);
}
.question__textarea:valid {
  border-color: rgb(39, 39, 39);
  border-color: var(--color-detail);
}
.question__textarea::-webkit-input-placeholder {
  color: #D9D9D9;
  opacity: 1;
}
.question__textarea:-moz-placeholder {
  color: #D9D9D9;
  opacity: 1;
}
.question__textarea::-moz-placeholder {
  color: #D9D9D9;
  opacity: 1;
}
.question__textarea:-ms-input-placeholder {
  color: #D9D9D9;
  opacity: 1;
}

.question__input-radio,
.question__input-checkbox {
  display: none;
}

.question__item-radio:hover,
.question__item-checkbox:hover {
  border-color: rgb(112, 112, 112);
}

.question__item-radio--active,
.question__item-checkbox--active {
  border-color: rgb(251, 207, 0);
  border-color: var(--color-detail);
}
.question__item-radio--active:hover,
.question__item-checkbox--active:hover {
  border-color: var(--color-detail);
}

.question__btn-block {
  margin-top: 46px;
}

.question__btn {
  min-width: 296px;
}

.question__btn--inactive {
  background: #d8d8d8;
  border-color: #d8d8d8;
  cursor: auto;
}
.question__btn--inactive:hover {
  background: #d8d8d8;
  color: rgb(255, 255, 255);
}

.question__back-block {
  margin-top: 22px;
  font-weight: bold;
}

.question__back-link {
  color: rgb(251, 207, 0);
  color: var(--color-detail);
}
.question__back-link:hover {
  color: rgb(112, 112, 112);
}

.question__item-last {
  background: rgb(247, 247, 247);
  padding: 45px 0 60px;
  text-align: left;
}

.last__header {
  margin-bottom: 30px;
}

.last-form {
  display: flex;
  flex-wrap: wrap;
  margin: 16px -8px 0;
  width: 608px;
}

.last-form__row {
  position: relative;
  width: calc(100% - 16px);
  margin: 14px 8px 0;
}

.last-form__row--half {
  width: calc(50% - 16px);
}

.last-form__row--checkbox {
  position: relative;
  padding-left: 34px;
  margin-top: 29px;
}

.last-form__row--submit {
  margin-top: 47px;
}

.last-form__input {
  background: rgb(255, 255, 255);
  width: 100%;
  height: 42px;
  border: 0;
  padding: 0 10px 0 45px;
  font: inherit;
  font-size: 13px;
  border-radius: 8px;
  color: #272727;
}
.last-form__input::-webkit-input-placeholder {
  color: #D9D9D9;
  opacity: 1;
}
.last-form__input:-moz-placeholder {
  color: #D9D9D9;
  opacity: 1;
}
.last-form__input::-moz-placeholder {
  color: #D9D9D9;
  opacity: 1;
}
.last-form__input:-ms-input-placeholder {
  color: #D9D9D9;
  opacity: 1;
}

.last-form__textarea {
  background: rgb(255, 255, 255);
  width: 100%;
  height: 182px;
  border: 0;
  padding: 10px;
  font: inherit;
  font-size: 13px;
  border-radius: 8px;
  color: #272727;
}
.last-form__textarea::-webkit-input-placeholder {
  color: #D9D9D9;
  opacity: 1;
}
.last-form__textarea:-moz-placeholder {
  color: #D9D9D9;
  opacity: 1;
}
.last-form__textarea::-moz-placeholder {
  color: #D9D9D9;
  opacity: 1;
}
.last-form__textarea:-ms-input-placeholder {
  color: #D9D9D9;
  opacity: 1;
}

.last-form__input--checkbox {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 3px;
  cursor: pointer;
}
.last-form__input--checkbox:checked:before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: rgb(251, 207, 0);
  background: var(--color-detail);
  border-radius: 3px;
}

.last_form__icon {
  position: absolute;
  top: 10px;
  left: 9px;
  width: 22px;
  height: 22px;
  fill: rgb(251, 207, 0);
  fill: var(--color-detail);
}

@media (max-width: 668px) {
  .last-form {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 600px) {
  .last-form__row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 500px) {
  .question__square-block {
    display: block;
  }
  .question__square {
    margin: 20px 0 0;
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .question__square:first-child {
    margin-top: 0;
  }
}
.full-text__text-block {
  padding: 16px 0 0;
}

.full-text__header {
  margin-bottom: 30px;
}