


.quiz {
  display: flex;
  background-color: #f6f8fb;
  padding: 0 24px;
  box-sizing: border-box;
  margin-left: -24px;
  margin-right: -24px;
}

.quiz-main {
  flex-grow: 1;
/*  overflow-y: auto;*/
  position: relative;
}

.quiz-content {
  padding: 40px;
  min-height: 700px;
}

.quiz-step:not(.active) {
  display: none;
}

.quiz-title {
  font-size: 32px;
  margin-bottom: 24px;
}

.quiz-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 18px;
}

.quiz-row.quiz-row-alt .quiz-item {
  flex-basis: calc((100% - 18px) / 2);
  background-color: #e9e9e9;
  border-radius: 4px;
  padding: 16px;
  box-sizing: border-box;
  min-height: 60px;
  align-items: center;
  display: flex;
}

.quiz-row.quiz-row-alt .quiz-item .quiz-item-text {
  margin: 0;
}

.quiz-item {
  flex-basis: calc((100% - 36px) / 3);
  cursor: pointer;
  position: relative;
}

.quiz-item::after {
  content: "";
  display: block;
  position: absolute;
  width: 28px;
  height: 28px;
  background: #ff8400 url(../../images/check.svg) center/14px 14px no-repeat;
  border-radius: 50%;
  z-index: 2;
  top: 0;
  left: 0;
  transform: translate(-7px, -7px);
}

.quiz-item:not(.checked)::after {
  display: none;
}

.quiz-item-image {
  padding-bottom: 74%;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow-y: hidden;
}

.quiz-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.quiz-item-text {
  font-size: 16px;
  line-height: 1.35;
  color: #000;
  margin-top: 10px;
}

.quiz-control {
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.quiz-count {
  font-size: 14px;
  color: #000;
  opacity: 0.5;
}

.quiz-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quiz-button {
  min-width: 120px;
}

.quiz-button.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.quiz-side {
  flex-basis: 260px;
  flex-shrink: 0;
  padding: 24px;
  box-sizing: border-box;
}

.quiz-side-photo img {
  width: 54px;
  height: 54px;
  border-radius: 4px;
}

.quiz-side-message {
  background-color: #ededed;
  border-radius: 4px;
  padding: 10px;
  box-sizing: border-box;
  color: #000;
  line-height: 1.4;
  margin-top: 16px;
  position: relative;
}

.quiz-side-message::after {
  content: "";
  display: block;
  border-bottom: 8px solid #ededed;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px;
  left: 15px;
  top: -8px;
  position: absolute;
}

.quiz-side-name {
  font-weight: 700;
}

.quiz-side-position {
  font-size: 14px;
  opacity: 0.5;
  margin-bottom: 8px;
}

.quiz-side-text {
  font-size: 14px;
}

.contact-form-input {
  width: 100%;
  margin-bottom: 16px;
}

.contact-form-input label {
  font-size: 14px;
}

.contact-form-input input {
  width: 100%;
  height: 60px;
  padding: 0 12px;
  font-size: 16px;
  background-color: #e9e9e9;
  border-radius: 4px;
  border: none;
  box-sizing: border-box;
  display: block;
  margin-top: 4px;
  outline: none !important;
}

.contact-form-input input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.contact-form-input input:active {
  outline: none;
  border: none;
  box-shadow: none;
}

.contact-form-submit .button {
  min-width: 260px;
  height: 60px;
  font-size: 16px;
}
.quiz-control {
  padding-bottom: 24px;
}

@media(max-width: 1023.98px) {
  .quiz-side {
    display: none !important;
  }
}


@media(max-width: 767.98px) {


  .quiz-title {
    font-size: 24px;
  }

  .quiz-item {
    flex-basis: calc((100% - 18px) / 2);
  }

  .quiz-control {
    padding-bottom: 24px;


    flex-wrap: nowrap;
    align-items: flex-end;
  }
  .quiz-buttons {
    flex-wrap: nowrap;
  }

  .quiz-count {
    flex-shrink: 0;
  }

  .quiz-buttons .button {
    flex-basis: calc( (100% - 16px )  /2 );
    min-width: 106px;
  }

  .quiz-buttons .button-sm {
    min-width: 40px;
  } 

}


.quiz-content {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 24px;
}





.quiz-side {
  display: none;
}

.modal {
  padding: 0;
}

.modal .quiz-side {
  display: block;
}

.content-quiz {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 64px;
}

@media(max-width: 767.98px) {
  .content-quiz {
    margin-top: 40px;
  }
}




.modal-image {
  position: relative;
  padding-bottom: 56%;
}
.modal-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.modal-image img.visible {
  display: block;
}

.modal-content {
  text-align: center;
  padding: 40px 46px;
  box-sizing: border-box;
}
.modal-header {
  margin-bottom: 24px;
  text-align: left;
}

.modal-title {
  font-size: 22px;
  font-weight: 500;
}

.modal-text {
  font-size: 18px;
  margin-bottom: 10px;
}

.modal-text-extra {
  font-size: 18px;
  margin-bottom: 10px;
}
.modal-form {
}
.feedback {
}
.feedback-form {
}
.feedback-input {
  margin-bottom: 12px;
}

.feedback-input input {
  height: 58px;
  width: 100%;
  border-radius: 100px;
  border: 1px solid #c9c9c9;
  padding: 0 24px;
  box-sizing: border-box;
  display: block;
  max-width: 100%;
  font-size: 18px;


}

.feedback-submit .button {
  height: 58px;
  font-size: 16px;
  max-width: 100%;
  cursor: pointer;
  display: grid;
  width: 100%;
} 


.hidden {
  display: none;
}

@media(max-width: 767.98px) {
  .modal-content {
    padding: 32px 16px;
  }
  .modal-title {
    font-size: 20px;
  }
  .modal-text {
    font-size: 16px;
  }
  .modal-text-extra {
    font-size: 16px;
  }
}






.thx-wrapper {
  display: flex;
  min-height: 100vh;
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;

}

.thx-wrapper p a {
  color: currentColor;
  text-decoration: underline;
}

.thx {
  max-width: 370px;
  margin: auto;
}

.thx-wrapper .button {
  height: 44px;

  display: inline-flex;
  padding: 0 16px;
  box-sizing: border-box;
  width: auto;
}


.thx svg {
  display: block;
  width: 50px;
  height: 50px;
  fill: green;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.content-feedback {
/*  max-width: 540px;*/
/*  margin-left: auto;
  margin-right: auto;*/
  margin-top: 24px;
/*  box-shadow: 0 2px 10px 0 rgb(0 0 0 / 15%);
  border-radius: 16px;
  overflow: hidden;*/
}


.content-feedback .feedback {

}
.content-feedback .feedback .feedback-row {
  display: flex;
  gap: 16px;
}
.content-feedback .feedback .feedback-col {
  flex-basis: calc( (100% - 16px * 3) / 4 );
}

.content-feedback .modal-content {
  padding: 0;
}

@media(max-width: 767.98px) {
  .content-feedback .feedback .feedback-row {
    flex-wrap: wrap;
    gap: 0;
  }
  .content-feedback .feedback .feedback-col {
    flex-basis: 100%;
  }
}



.feedback-button {
  margin-top: 16px;
}

.feedback-button .button {
  display: flex;
  gap: 10px;
  align-items: center;
  height: 58px;
  font-size: 18px;
  text-transform: uppercase;
}

.feedback-button .button img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}
.feedback-button .button svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}




.contact-method {
    margin-bottom: 16px;
}

.contact-method .title {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 500;
    text-align: left;
}

.contact-method-radio {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

label.radio {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    margin-bottom: 0;
}

.radio input {
    display: none;
}

.radio span {
    width: 16px;
    height: 16px;
    border: 2px solid #f5a623;
    border-radius: 50%;
    position: relative;
}

.radio span::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #f5a623;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.2s;
}

.radio input:checked + span::after {
    transform: translate(-50%, -50%) scale(1);
}




.feedback-agreement {
    margin-top: 16px;
    text-align: left;
    margin-bottom: 16px;
}

.feedback-agreement .checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
    color: #222;
}

.feedback-agreement .checkbox input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
}


.contact-method-select {
  text-align: left;
}

.contact-method-select select {
  height: 58px;
  border-radius: 100px;
  padding: 0 24px;
  font-size: 16px;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #c9c9c9;

  background: url(../images/chevron-down.svg) right 20px center / 16px no-repeat;
  appearance: none;
}


.content-feedback .modal-text-list {
  margin-left: auto;
  margin-right: auto;
  max-width: 390px;

}

.modal-text-list {
  padding-left: 0;
  list-style: none;  
}

.content-feedback .modal-text-extra {
  text-align: center;
}

.content-feedback .feedback-agreement {
  display: flex;
  justify-content: center;
}

.content-feedback .feedback-submit .button {
  font-size: 14px;
  padding-left: 16px;
  padding-right: 16px;
}

.section-header-feedback {
  margin-bottom: 24px;
}






/* CSS */
.custom-select {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.custom-select-trigger {
    width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    border: 1px solid #d9d9d9;
    border-radius: 100px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
}

.custom-select-current {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.custom-select-text {
    font-size: 16px;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-select-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-select-icon svg,
.custom-select-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.custom-select-icon svg {

}

.custom-select-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #222;
    border-bottom: 2px solid #222;
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.25s ease;
    margin-top: -4px;
}

.custom-select.is-open .custom-select-arrow {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: none;
    z-index: 30;
    text-align: left;
    box-sizing: border-box;
}

.custom-select.is-open .custom-select-dropdown {
    display: block;
}

.custom-select-option {
    min-height: 24px;
    padding: 12px 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.custom-select-option:hover {
    background: #f5f5f5;
}

.custom-select-option .custom-select-text {
    flex: 1;
}

.custom-select-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border: 2px solid #cfcfcf;
    border-radius: 50%;
    position: relative;
}

.custom-select-option.is-selected .custom-select-check {
    border-color: #222;
}

.custom-select-option.is-selected .custom-select-check::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #222;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


form input.icon-user {
  padding-left: 48px;
  background:  url(../images/user.svg) left 16px center / 22px no-repeat; 
}
form input.icon-flag {
  padding-left: 48px;
  background:  url(../images/flag-for-flag-russia-svgrepo-com.svg) left 16px center / 22px no-repeat; 
}


@media(min-width: 768px) {
  .desktop-hidden {
    display: none !important;
  }
}


@media(max-width: 767.98px) {
  .sm-order-1 {
    order: -1;
  }
}



.section-image.shadow::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  z-index: 2;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
}






.economy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-bottom: 24px;
}

.economy-item {
}

.economy-value {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  color: #2d8571;
}

.economy-text {
  font-size: 18px;
  line-height: 1.25;
}

@media(max-width: 767.98px) {
  .economy {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .economy-value {
    font-size: 18px;
    margin-bottom: 0;
  }  
}

.section-buttons-note {

}

.section-buttons-note .button {

}

.section-note {
  font-size: 16px;
  line-height: 1.25;
}



.gallery-item {
  height: 370px;
  overflow: hidden;
  border-radius: 16px;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media(max-width: 767.98px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .gallery-item {
    height: 221px;
  }
}



@media(max-width: 1023.98px) {
   .gallery-item {
    height: 330px;
  }
} 

@media(max-width: 767.98px) {
  .gallery-item {
    height: 300px;
  }
}






.header-sticky.header {
  box-shadow: 0 0 2px 1px rgba(224, 224, 224, 0.86);
  padding: 8px 0;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 10;
  transition: 0.3s;
}

/*.header-sticky.header:not(.active) {
  transform: translateY(-102%);
}*/

.header-sticky .header-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  padding: 0;
}

.header-sticky .header-socials {
  display: flex;
  gap: 8px;
}

.header-sticky .header-socials-item img {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.header-sticky .header-logo img {
  max-width: 102px;
  display: block;
  height: auto;
}

.header-sticky .header-button .button {
  height: 40px;
  font-size: 14px;
  padding-left: 20px;
  padding-right: 20px;
}

.header-sticky .header-button a {
  line-height: 1.1;
}

@media(max-width: 1023.98px) {
  .header-sticky .header-button {
    display: block !important;
  }
}

@media(max-width: 767.98px) {
  .header-sticky .header-button .button {
    font-size: 12px;
    padding: 4px 8px;
  }
  .header-sticky .header-logo img {
    width: 80px;
  }
  .header-sticky .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media(max-width: 370px) {
  .header-sticky .header-socials-item img {
    width: 32px;
    height: 32px;
  }
}