@charset "UTF-8";
@font-face {
  font-family: Georgia;
  src: url("/assets/fonts/georgia.ttf");
}
@font-face {
  font-family: OpenSans, sans-serif;
  src: url("/assets/fonts/OpenSans-Regular.ttf");
}
:root {
  --font-general: Georgia, serif;
  --white: #fff;
  --black: #2b303a;
  --dark-blue: #005c82;
  --yellow: #ffe74d;
  --slate: #323e48;
  --lime: #c0df8a;
  --teal: #9fddd3;
  --pink: #ffb1ba;
  --lilac: #cf9dc7;
  --blue: #84aae4;
  --orange: #ffa069;
  --sand: #EDC2B2;
  --btn-dark-hover: #475866;
  --disabled: #e0e0e0;
  --checkbox-item: #f9f9f9;
  --checkbox-text-hover: #526371;
  --invalid-red: #ca3665;
  --border-color: #e3e3e3;
  --label-color: #323e48;
  --placeholder: #e3e3e3;
  --bg-select-item: #e3e3e3;
  --privacy-color: #307fe2;
}

body {
  display: flex;
  flex-direction: column;
  color: var(--black);
  font-family: var(--font-general);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

html {
  min-height: 100vh;
}

*,
::after,
::before {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.content-without-footer {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  position: relative;
  z-index: 5;
}

.programmes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.button-findout-short, .button-findout, .button-apply, .button--continue, .temporary-link-button, .privacy-policy-link, .login-link, .header__logo-link, .button-link {
  text-decoration: none;
  color: var(--white);
}

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  max-width: 100%;
}
@media screen and (min-width: 1280px) {
  .container {
    width: 960px;
    max-width: 960px;
  }
}

@media screen and (min-width: 1280px) {
  .container-header--wider {
    width: 1240px;
    max-width: 1240px;
  }
}
@media screen and (min-width: 1440px) {
  .container-header--wider {
    width: 1420px;
    max-width: 1420px;
  }
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 15px;
  gap: 10px;
  width: 100%;
  border: none;
  background-color: var(--slate);
  color: var(--white);
  border-radius: 3px;
  font-family: Georgia, serif;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  outline: none;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.button .btn-arrow-icon {
  fill: var(--white);
}
.button:hover {
  background-color: var(--btn-dark-hover);
}
.button:focus {
  background-color: var(--btn-dark-hover);
}
.button:active {
  background-color: var(--btn-dark-hover);
}
.button:disabled {
  background-color: var(--disabled);
  box-shadow: none;
}
@media screen and (min-width: 1280px) {
  .button {
    width: 136px;
  }
}

.button-link {
  display: inline-block;
}

.btn-arrow-icon {
  width: 18px;
  height: 15px;
}

.header {
  padding: 13px 0;
  background-color: var(--white);
  box-shadow: 0px 4px 10px 0px rgba(50, 62, 72, 0.1);
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 15px 0;
  }
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header__logo-link:hover {
  transform: scale(1.1);
}

.logo {
  width: 100px;
  height: 18px;
  display: none;
}
@media screen and (min-width: 768px) {
  .logo {
    display: block;
  }
}

.logo-mobile {
  width: 144px;
  height: 25px;
  display: block;
}
@media screen and (min-width: 768px) {
  .logo-mobile {
    display: none;
  }
}

.login-link {
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  background-color: var(--white);
  white-space: nowrap;
  display: flex;
  gap: 10px;
  padding: 14px 15px;
  border: 1px solid var(--slate);
  border-radius: 3px;
  color: var(--slate);
  transition: color 350ms cubic-bezier(0.4, 0, 0.2, 1), background-color 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.login-link .btn-arrow {
  width: 18px;
  height: 15px;
  fill: var(--slate);
  transition: fill 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.login-link:hover {
  color: var(--white);
  background-color: var(--slate);
}
.login-link:hover .btn-arrow {
  fill: var(--white);
}

.footer {
  flex: 0 0 auto;
  padding-top: 22px;
  padding-bottom: 22px;
  background-color: var(--black);
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

.footer__container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.caypho-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
}
@media screen and (min-width: 768px) {
  .caypho-wrapper {
    gap: 17px;
    padding-top: 0;
  }
}

.caypho-text {
  font-family: RobotoRegular;
  font-weight: 400;
  font-size: 12px;
  line-height: 2;
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .caypho-text {
    font-size: 16px;
    line-height: 1.5;
  }
}

.caypho-link {
  transform: scale(1);
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.caypho-link:hover {
  transform: scale(1.1);
}

.footer-create-block {
  display: inline-flex;
}

.footer-create-text {
  font-family: OpenSans, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 2;
  color: var(--white);
  margin-right: 17px;
}
@media screen and (min-width: 768px) {
  .footer-create-text {
    font-size: 16px;
    line-height: 1.5;
  }
}

.create-logo {
  width: 105px;
  height: 24px;
}

.main-section {
  padding: 40px 0 60px;
  background-image: url("/assets/images/homepage/mobile/homepage-mobile.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left;
}
@media screen and (min-width: 768px) {
  .main-section {
    padding: 105px 0;
    background-image: url("/assets/images/homepage/desktop/homepage-desk.png");
  }
}

@media screen and (min-width: 1280px) {
  .section-homepage-container-wider, .section-result-container-wider {
    width: 1110px;
    max-width: 1110px;
  }
}

.main-section__title {
  font-family: Georgia;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
  color: var(--slate);
  max-width: 374px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .main-section__title {
    font-size: 56px;
    margin-bottom: 40px;
    max-width: 680px;
  }
}

.main-section__desc {
  font-size: 28px;
  line-height: 1.2;
  color: var(--dark-blue);
  max-width: 360px;
}
@media screen and (min-width: 768px) {
  .main-section__desc {
    max-width: 530px;
  }
}

.intro-hp-section {
  padding: 20px 0;
  background-color: var(--green);
}
@media screen and (min-width: 768px) {
  .intro-hp-section {
    padding: 33px 0;
  }
}

.intro-hp-text {
  font-size: 18px;
  line-height: 1.5;
  max-width: 820px;
}
.intro-hp-text:not(:last-child) {
  margin-bottom: 30px;
}

.section-form {
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .section-form {
    padding: 60px 0;
  }
}

.form-container-flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.form-container-flex:has(.is-sticky) .form-hp {
  margin-left: auto;
}
@media screen and (min-width: 1050px) {
  .form-container-flex {
    flex-direction: row;
    gap: 60px;
  }
}
@media screen and (min-width: 1130px) {
  .form-container-flex {
    flex-direction: row;
    gap: 137px;
  }
}

.form-description {
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.333;
  color: var(--slate);
  max-width: 563px;
  top: 0;
  transition: all 350ms ease-in-out;
  top: 30%;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 1050px) {
  .form-description {
    position: sticky;
  }
}

.form-hp {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 3px;
  background-color: var(--yellow);
  padding: 30px;
}
@media screen and (min-width: 550px) {
  .form-hp {
    max-width: 370px;
    width: 370px;
  }
}

.button-register {
  max-width: 190px;
  width: 190px;
}
@media screen and (max-width: 767px) {
  .button-register {
    width: 100%;
    max-width: 100%;
  }
}

.form-title {
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  color: var(--black);
  margin-bottom: 20px;
}

.label-hp {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--slate);
  width: 100%;
  position: relative;
  font-family: Georgia;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.label-hp .dropdown {
  position: static;
}

.show-btn-hp {
  color: var(--slate);
  right: 10px !important;
  top: 10px !important;
}

.password-w-btn-wrapper-hp {
  position: relative;
}

.input-hp {
  outline: none;
  background-color: var(--white);
  border-radius: 2px;
  border: 1px solid var(--border-color);
  padding: 8px 15px;
  color: var(--slate);
  transition: border 250ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: OpenSans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.input-hp::-moz-placeholder {
  color: var(--placeholder);
  font-family: OpenSans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  -moz-transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.input-hp::placeholder {
  color: var(--placeholder);
  font-family: OpenSans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.input-hp:hover, .input-hp:focus {
  border: 1px solid var(--slate);
  transition: border 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.input-hp:hover::-moz-placeholder, .input-hp:focus::-moz-placeholder {
  color: var(--slate);
}
.input-hp:hover::placeholder, .input-hp:focus::placeholder {
  color: var(--slate);
}
.input-hp:focus {
  border: 1px solid var(--border-color);
  transition: border 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.input-hp:focus::-moz-placeholder {
  color: var(--slate);
}
.input-hp:focus::placeholder {
  color: var(--slate);
}
.input-hp:has(~ .invalid-info):invalid {
  border: 1px solid var(--invalid-red);
  transition: border 250ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 99%;
}

.input-password-hp {
  padding-right: 60px;
  width: 100%;
}

.checkbox-group-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
@media screen and (min-width: 550px) {
  .checkbox-group-wrapper {
    margin-bottom: 20px;
  }
}

.checkbox-title {
  margin-bottom: 15px;
}

.checkbox-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkbox-container:not(:last-of-type) {
  margin-bottom: 20px;
}

.checkbox {
  position: absolute;
  top: 0px;
  left: 0;
  height: 24px;
  width: 24px;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  transition: border 350ms cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--white);
}
.checkbox:after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  display: none;
  opacity: 0;
  transition: opacity 350ms cubic-bezier(0.4, 0, 0.2, 1), color 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.checkbox-label, .checkbox-label-multi {
  font-family: OpenSans, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--slate);
  max-width: 286px;
  display: inline-block;
  position: relative;
  padding-left: 37px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.checkbox-label:hover input ~ .checkbox, .checkbox-label-multi:hover input ~ .checkbox {
  background-color: var(--white);
  border: 1px solid var(--slate);
}
.checkbox-label:hover input ~ .checkbox::after, .checkbox-label-multi:hover input ~ .checkbox::after {
  display: block;
  opacity: 1;
  width: 16px;
  height: 8px;
  border: 2px solid var(--slate);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  margin-top: 5px;
  margin-left: 0px;
}
.checkbox-label input:checked ~ .checkbox, .checkbox-label-multi input:checked ~ .checkbox {
  border: 1px solid var(--slate);
  background-color: var(--slate);
}
.checkbox-label input:checked ~ .checkbox:hover, .checkbox-label-multi input:checked ~ .checkbox:hover {
  border: 1px solid var(--slate);
}
.checkbox-label input:checked ~ .checkbox:after, .checkbox-label-multi input:checked ~ .checkbox:after {
  display: block;
  opacity: 1;
  width: 16px;
  height: 8px;
  border: 2px solid var(--white);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  margin-top: 5px;
  margin-left: 0px;
}
.checkbox-label .checkbox:after, .checkbox-label-multi .checkbox:after {
  display: block;
}
.checkbox-label:has(span.checkbox-validate) .checkbox, .checkbox-label-multi:has(span.checkbox-validate) .checkbox {
  border: 1px solid var(--invalid-red);
}
.checkbox-label:has(input.valid) .checkbox, .checkbox-label-multi:has(input.valid) .checkbox {
  border: 1px solid var(--border-color);
}

.privacy-link-container {
  position: relative;
}
.privacy-link-container::after {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 1px;
  opacity: 1;
  background-color: var(--slate);
  transition: opacity 350ms ease-in-out;
}
.privacy-link-container:has(.privacy-policy-link:hover)::after, .privacy-link-container:has(.privacy-policy-link:focus)::after {
  opacity: 1;
}

.privacy-policy-link {
  display: inline-block;
  color: var(--slate);
  transform: translateY(0);
  background-color: transparent;
  transition: transform 350ms ease-in-out, color 350ms ease-in-out;
}
.privacy-policy-link:hover, .privacy-policy-link:focus {
  color: var(--slate);
  transform: translateY(-5px);
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}

.custom:has(div.dropdown-menu) .dropdown-toggle:after {
  border: none;
  width: 16px;
  height: 15px;
  padding-top: 10px;
  transform: rotate(0);
  transition: transform 250ms ease-in-out;
  background-image: url("/assets/images/icons/select-arrow.svg");
  background-repeat: no-repeat;
  content: "";
}

.custom:has(div.dropdown-menu.show) .dropdown-toggle:after {
  transform: rotate(180deg);
  padding-top: 10px;
  width: 15px;
  height: 15px;
}

.custom .dropdown-menu {
  border-radius: 2px;
  padding: 0;
  max-height: 123px !important;
}

.custom:has(div.dropdown-menu):has(.invalid-info) button.dropdown-toggle {
  border: 1px solid var(--invalid-red) !important;
  width: 99% !important;
}
.custom:has(div.dropdown-menu):not(:has(button[title=Select])) button.dropdown-toggle {
  border: 1px solid var(--border-color) !important;
}
.custom:has(div.dropdown-menu):not(:has(button[title=Select])) button.dropdown-toggle:hover {
  border: 1px solid var(--slate) !important;
}

.custom:has(button[title=Select]) {
  color: var(--border-color);
  font-family: OpenSans, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

.custom > .dropdown-toggle {
  border-radius: unset;
  background: var(--white);
  border: none;
  outline: none !important;
  border-radius: 2px;
  border: 1px solid var(--border-color) !important;
  color: var(--placeholder) !important;
  padding: 8px 15px;
  font-family: OpenSans, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  transition: color 350ms cubic-bezier(0.075, 0.82, 0.165, 1), border 350ms cubic-bezier(0.075, 0.82, 0.165, 1) !important;
}

.custom > .dropdown-toggle:hover {
  border-radius: unset;
  background: var(--white);
  border: none;
  outline: none !important;
  border: 1px solid var(--slate) !important;
  color: var(--slate) !important;
  padding: 8px 15px;
  border-radius: 2px;
  transition: color 350ms cubic-bezier(0.075, 0.82, 0.165, 1), border 350ms cubic-bezier(0.075, 0.82, 0.165, 1) !important;
}

.custom > .dropdown-toggle:focus {
  border-radius: unset;
  background: var(--white);
  border: none;
  outline: none !important;
  border: 1px solid var(--border-color) !important;
  color: var(--slate) !important;
  padding: 8px 15px;
  border-radius: 2px;
  transition: color 350ms cubic-bezier(0.075, 0.82, 0.165, 1), border 350ms cubic-bezier(0.075, 0.82, 0.165, 1) !important;
}

.custom:not(:has(button[title=Select])) > button {
  color: var(--slate) !important;
  font-family: OpenSans, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

.custom .dropdown-item {
  height: 41px;
  color: var(--slate);
  padding: 8px 15px;
  text-transform: none;
  font-family: OpenSans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  background-color: var(--white);
  transition: background-color 350ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.custom .dropdown-item:hover {
  background: var(--bg-select-item) !important;
}

.custom .dropdown-item.selected {
  background: var(--white);
}

.temporary-link-button {
  color: var(--white);
}
.temporary-link-button:hover, .temporary-link-button:focus {
  color: var(--white);
}

.bootstrap-select .dropdown-menu .inner {
  padding-right: 1px;
}

.bootstrap-select .dropdown-menu::-webkit-scrollbar .inner::-webkit-scrollbar {
  width: 8px;
}

.bootstrap-select .dropdown-menu .inner::-webkit-scrollbar {
  width: 8px;
}
.bootstrap-select .dropdown-menu .inner::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0px 2px 2px 0px;
}
.bootstrap-select .dropdown-menu .inner::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 0px 2px 2px 0px;
}

.label-relative {
  position: relative;
}

.invalid-info {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 40px;
  left: 101%;
  right: auto;
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--red);
  text-transform: none;
}
@media screen and (min-width: 550px) {
  .invalid-info {
    top: 40px;
    left: 101%;
    right: auto;
    white-space: nowrap;
  }
}

.validate-icon {
  margin-right: 7px;
  margin-bottom: 1px;
}

.checkbox-validate .validate-icon {
  display: none;
}

.question-first-bg {
  background-image: url("../../../assets/images/question1/desktop/q-1-mobile.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .question-first-bg {
    background-image: url("../../../assets/images/question1/desktop/q-1.jpg");
  }
}

.main-section-q-first {
  flex: 1;
  padding: 40px 0 30px;
}
@media screen and (min-width: 768px) {
  .main-section-q-first {
    padding: 65px 0 90px;
  }
}

.question-subtitle, .question-feedback-subtitle {
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  margin-bottom: 40px;
  color: var(--slate);
  position: relative;
  z-index: 5;
}

.question-title, .question-feedback-title, .question-fourth-feedback-title {
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  position: relative;
  z-index: 5;
  margin-bottom: 40px;
  color: var(--slate);
}
@media screen and (min-width: 768px) {
  .question-title, .question-feedback-title, .question-fourth-feedback-title {
    margin-bottom: 55px;
  }
}

.form-question {
  margin: 0 auto;
}

.radiobuttons-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1100px) {
  .radiobuttons-wrapper {
    flex-direction: row;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
    align-items: baseline;
  }
}

.radiobutton-container-q-first {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: stretch;
  align-items: center;
}
.radiobutton-container-q-first input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.question-first-img-person-mobile {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 180px;
}
@media screen and (min-width: 768px) {
  .question-first-img-person-mobile {
    display: none;
  }
}

.question-first-img-person-desk {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 180px;
  display: none;
}
@media screen and (min-width: 768px) {
  .question-first-img-person-desk {
    display: block;
  }
}

.radiobutton-label-q-first, .radiobutton-label-q-third, .radiobutton-label-q-fourth {
  position: relative;
  max-width: 374px;
  font-family: OpenSans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  background-color: var(--pink);
  border-radius: 3px;
  transform: translateY(0);
  height: 100%;
  transition: transform 350ms ease-in-out, background-color 350ms ease-in-out, opacity 350ms ease-in-out;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.radiobutton-label-q-first::after, .radiobutton-label-q-third::after, .radiobutton-label-q-fourth::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 350ms ease-in-out;
}
.radiobutton-label-q-first:hover, .radiobutton-label-q-third:hover, .radiobutton-label-q-fourth:hover {
  transform: translateY(-10px);
  transition: transform 350ms ease-in-out, background-color 350ms ease-in-out;
}
.radiobutton-label-q-first:hover::after, .radiobutton-label-q-third:hover::after, .radiobutton-label-q-fourth:hover::after {
  opacity: 1;
}
.radiobutton-label-q-first:has(> input:checked), .radiobutton-label-q-third:has(> input:checked), .radiobutton-label-q-fourth:has(> input:checked) {
  transform: translateY(0);
}
.radiobutton-label-q-first:has(> input:checked):hover, .radiobutton-label-q-third:has(> input:checked):hover, .radiobutton-label-q-fourth:has(> input:checked):hover {
  cursor: auto;
}
.radiobutton-label-q-first:has(> input:checked):hover .person-desc-q-first:hover::after, .radiobutton-label-q-first:has(> input:checked):hover .case-desc:hover::after, .radiobutton-label-q-third:has(> input:checked):hover .person-desc-q-first:hover::after, .radiobutton-label-q-third:has(> input:checked):hover .case-desc:hover::after, .radiobutton-label-q-fourth:has(> input:checked):hover .person-desc-q-first:hover::after, .radiobutton-label-q-fourth:has(> input:checked):hover .case-desc:hover::after {
  opacity: 0;
}
.radiobutton-label-q-first--sand {
  background-color: var(--sand);
}
@media screen and (min-width: 768px) {
  .radiobutton-label-q-first, .radiobutton-label-q-third, .radiobutton-label-q-fourth {
    max-width: 447px;
  }
}

.person-desc-q-first, .case-desc {
  position: relative;
  padding: 30px 35px 30px 30px;
}
.person-desc-q-first::after, .case-desc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 350ms ease-in-out;
}
.person-desc-q-first:hover::after, .case-desc:hover::after {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .person-desc-q-first, .case-desc {
    padding: 30px 52px 30px 40px;
  }
}

.person-name-q-first {
  color: var(--slate);
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.person-desc-list-q-first {
  margin: 0;
  padding-left: 25px;
  list-style: none;
  color: var(--slate);
}
.person-desc-list-q-first > li {
  position: relative;
}
.person-desc-list-q-first > li::before {
  position: absolute;
  top: 0;
  left: -7px;
  content: "•";
  font-size: 17px;
  display: inline-block;
  margin-left: -30px;
  width: 30px;
  text-align: right;
}

.button--question {
  width: 110px;
  max-width: 110px;
  margin: 0 auto;
  display: flex;
  position: relative;
  z-index: 5;
}
.form-question:not(:has(input:checked)) .button--question {
  background-color: var(--disabled);
}
.button--question:disabled {
  background-color: var(--disabled);
  box-shadow: none;
  cursor: auto;
}
@media screen and (max-width: 549px) {
  .button--question {
    width: 100%;
    max-width: 100%;
  }
}

.radiobox-not-active {
  opacity: 0.5;
}

.question-first-feedback-flex-section {
  display: flex;
  flex-direction: column;
  padding: 0;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .question-first-feedback-flex-section {
    flex-direction: row-reverse;
  }
}

.question-first-feedback-bg, .question-second-feedback-bg, .question-fifth-feedback-bg, .question-third-feedback-bg, .question-fourth-feedback-bg, .login-background, .question-sixth-feedback-bg {
  background-image: url("../../../assets/images/question-feedback1/desktop/q-1-feedback-mobile.png");
  background-repeat: no-repeat;
  background-size: cover;
  align-self: stretch;
  height: 135px;
}
@media screen and (min-width: 768px) {
  .question-first-feedback-bg, .question-second-feedback-bg, .question-fifth-feedback-bg, .question-third-feedback-bg, .question-fourth-feedback-bg, .login-background, .question-sixth-feedback-bg {
    flex: 1;
    background-image: url("../../../assets/images/question-feedback1/desktop/q-1-feedback.png");
    max-height: 100%;
    height: unset;
  }
}

.container-feedback-padding {
  padding-top: 35px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .container-feedback-padding {
    max-width: 50%;
    padding-top: 70px;
    padding-right: 80px;
    padding-bottom: 84px;
  }
}
@media screen and (min-width: 1100px) {
  .container-feedback-padding {
    padding-left: 105px;
  }
}

.question-feedback-subtitle {
  text-align: left;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .question-feedback-subtitle {
    margin-bottom: 40px;
  }
}

.question-feedback-title, .question-fourth-feedback-title {
  margin-bottom: 25px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .question-feedback-title, .question-fourth-feedback-title {
    margin-bottom: 30px;
  }
}

.question-feedback-desc, .question-fourth-feedback-desc {
  font-family: OpenSans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 25px;
  max-width: 362px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .question-feedback-desc, .question-fourth-feedback-desc {
    margin-bottom: 30px;
    max-width: 643px;
  }
}
.question-feedback-desc--find-out {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.button--continue {
  width: 123px;
  max-width: 123px;
  display: flex;
}
.button--continue:hover {
  color: var(--white);
}
@media screen and (max-width: 549px) {
  .button--continue {
    width: 100%;
    max-width: 100%;
  }
}

.question-third-bg, .question-fifth-bg, .question-fourth-bg {
  background-image: url("/assets/images/question3/desktop/q-3-mobile.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}
@media screen and (min-width: 768px) {
  .question-third-bg, .question-fifth-bg, .question-fourth-bg {
    background-image: url("/assets/images/question3/desktop/q-3.png");
    background-attachment: fixed;
  }
}

.radiobutton-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 914px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.radiobutton-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.radiobutton-container:not(:last-of-type) {
  margin-bottom: 20px;
}
.radiobutton-container:last-of-type {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .radiobutton-container:last-of-type {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1100px) {
  .radiobutton-container {
    width: 914px;
  }
}

.radiobutton-label, .checkbox-label-multi {
  max-width: 914px;
  padding: 20px 25px 20px 20px;
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background-color: var(--white);
  outline: 1px solid var(--border-radiobtns);
  outline-color: var(--border-radiobtns);
  border-radius: 5px;
  transition: box-shadow 350ms cubic-bezier(0.4, 0, 0.2, 1), outline-color 350ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.radiobutton-label:has(> input:checked):hover, .checkbox-label-multi:has(> input:checked):hover {
  cursor: auto;
}
@media screen and (min-width: 768px) {
  .radiobutton-label, .checkbox-label-multi {
    padding: 20px 25px;
  }
}

.checkbox-multi {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.checkbox-label-multi {
  position: relative;
  padding: 17px 20px 17px 64px;
  text-align: left;
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.9;
  background-color: var(--checkbox-item);
  border: 2px solid var(--checkbox-item);
  transition: background-color 350ms ease-in-out, opacity 350ms ease-in-out, color 350ms ease-in-out, border 350ms ease-in-out;
}
.checkbox-label-multi:hover {
  background-color: var(--checkbox-item);
  opacity: 0.9;
  color: var(--slate);
}
.checkbox-label-multi:hover input ~ .checkbox-multi {
  border: 1px solid var(--border-color);
}
.checkbox-label-multi:hover input ~ .checkbox-multi:after {
  display: none;
  opacity: 0.5;
  width: 15px;
  height: 8px;
  border: 2px solid var(--slate);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  margin-top: 5px;
}
.checkbox-label-multi:has(> input:checked) {
  cursor: pointer;
  box-shadow: none;
  background-color: var(--white);
  opacity: 1;
  color: var(--slate);
  border: 2px solid var(--slate);
}
.checkbox-label-multi:has(> input:checked):hover {
  cursor: pointer;
  box-shadow: none;
  background-color: var(--white);
  opacity: 1;
  border: 2px solid var(--slate);
}
.checkbox-label-multi:hover input:checked ~ .checkbox-multi {
  border: 1px solid var(--border-color);
}
.checkbox-label-multi:hover input:checked ~ .checkbox-multi:after {
  display: block;
  opacity: 1;
  width: 15px;
  height: 8px;
  border: 2px solid var(--slate);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  margin-top: 5px;
}
.checkbox-label-multi input:checked ~ .checkbox-multi {
  background-color: var(--white);
  border: 1px solid var(--border-color);
}
.checkbox-label-multi input:checked ~ .checkbox-multi:after {
  display: block;
  opacity: 1;
  width: 15px;
  height: 8px;
  border: 2px solid var(--slate);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .checkbox-label-multi {
    padding: 17px 36px 17px 64px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .checkbox-label-multi:hover {
    background-color: var(--white);
    opacity: 1;
    color: var(--checkbox-text-hover);
  }
  .checkbox-label-multi:hover input ~ .checkbox-multi {
    border: 1px solid var(--border-color);
  }
  .checkbox-label-multi:hover input ~ .checkbox-multi:after {
    display: block;
    opacity: 0.5;
    width: 15px;
    height: 8px;
    border: 2px solid var(--slate);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    margin-top: 5px;
  }
  .checkbox-label-multi input:checked ~ .checkbox-multi {
    background-color: var(--white);
    border: 1px solid var(--border-color);
  }
  .checkbox-label-multi input:checked ~ .checkbox-multi:after {
    display: block;
    opacity: 1;
    width: 15px;
    height: 8px;
    border: 2px solid var(--slate);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    margin-top: 5px;
  }
}

.question-third-feedback-bg, .question-fourth-feedback-bg, .login-background, .question-sixth-feedback-bg {
  background-image: url("/assets/images/question-feedback3/desktop/q-3-feedback-mobile.png");
}
@media screen and (min-width: 768px) {
  .question-third-feedback-bg, .question-fourth-feedback-bg, .login-background, .question-sixth-feedback-bg {
    flex: none;
    height: 135px;
    background-image: url("/assets/images/question-feedback3/desktop/q-3-feedback-mobile.png");
    background-position: top right;
  }
}
@media screen and (min-width: 980px) {
  .question-third-feedback-bg, .question-fourth-feedback-bg, .login-background, .question-sixth-feedback-bg {
    flex: 1;
    height: unset;
    background-image: url("/assets/images/question-feedback3/desktop/q-3-feedback.png");
  }
}

@media screen and (min-width: 1280px) {
  .person-feedback-wrapper--3 {
    position: absolute;
    left: calc(100% + 108px);
    bottom: -85px !important;
    width: 617px;
  }
}

.question-second-bg, .question-sixth-bg {
  background-image: url("/assets/images/question2/desktop/q-2-mobile.png");
  background-position: right bottom;
  background-size: 100% 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .question-second-bg, .question-sixth-bg {
    background-image: url("/assets/images/question2/desktop/q-2.png");
  }
}

@media screen and (min-width: 1280px) {
  .container-question-wider {
    width: 1070px;
    max-width: 1070px;
  }
}

.radiobutton-label-q-third, .radiobutton-label-q-fourth {
  background-color: var(--yellow);
}

.radiobutton-label-q-third--pink {
  background-color: var(--pink);
}

.radiobutton-label-q-third--orange {
  background-color: var(--orange);
}

.desc-q-second {
  padding: 40px 35px 25px 30px;
}

.desc-list-q-second {
  padding: 0;
}
.desc-list-q-second > li {
  position: relative;
}
.desc-list-q-second > li::before {
  display: none;
}
.desc-list-q-second::after {
  display: none;
}

@media screen and (min-width: 768px) {
  .question-second-feedback-flex-section {
    flex-direction: column;
  }
}
@media screen and (min-width: 980px) {
  .question-second-feedback-flex-section {
    flex-direction: row-reverse;
  }
}

.question-second-feedback-bg, .question-fifth-feedback-bg {
  background-image: url("/assets/images/question-feedback2/desktop/q-2-feedback-mobile.png");
}
@media screen and (min-width: 768px) {
  .question-second-feedback-bg, .question-fifth-feedback-bg {
    flex: none;
    height: 135px;
    background-image: url("/assets/images/question-feedback2/desktop/q-2-feedback-mobile.png");
    background-position: top right;
  }
}
@media screen and (min-width: 980px) {
  .question-second-feedback-bg, .question-fifth-feedback-bg {
    flex: 1;
    height: unset;
    background-image: url("/assets/images/question-feedback2/desktop/q-2-feedback.png");
  }
}

@media screen and (min-width: 1280px) {
  .container-third-feedback-wider {
    width: 1170px;
    max-width: 1170px;
  }
}

.container-feedback-padding--2 {
  max-width: 100%;
}
@media screen and (min-width: 980px) {
  .container-feedback-padding--2 {
    max-width: 50%;
    padding-right: 108px;
    padding-bottom: 45px;
  }
}

@media screen and (max-width: 767px) {
  .question-feedback-title--2 {
    max-width: 374px;
  }
}

.question-feedback-desc-wrapper-relative {
  position: relative;
}

@media screen and (min-width: 768px) and (max-width: 979px) {
  .person-feedback-wrapper {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 1279px) {
  .person-feedback-wrapper {
    padding-left: 130px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .person-feedback-wrapper {
    padding-left: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .person-feedback-wrapper {
    position: absolute;
    left: calc(100% + 108px);
    bottom: 100px;
    width: 617px;
  }
}

.person-feedback-wrapper--relative {
  position: relative;
}

.person-feedback-yellow {
  background-color: var(--yellow);
  border-radius: 0px 3px 3px 0px;
  padding: 30px;
  padding-right: 45px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1279px) {
  .person-feedback-yellow {
    max-width: 274px;
  }
}

.person-feedback-img {
  display: none;
}
@media screen and (min-width: 768px) {
  .person-feedback-img {
    display: block;
    width: 130px;
    height: 168px;
  }
}
@media screen and (max-width: 1279px) {
  .person-feedback-img {
    position: absolute;
    left: -130px;
    top: 0;
  }
}
.person-feedback-img--mobile {
  position: absolute;
  left: -100px;
  top: 0;
  display: none;
}
@media screen and (max-width: 767px) {
  .person-feedback-img--mobile {
    display: block;
    width: 100px;
    height: 128px;
  }
}

.person-feedback-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--slate);
  font-family: OpenSans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.person-feedback-info {
  display: block;
  color: var(--Slate, #323e48);
  font-family: OpenSans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
  .button--continue--center {
    margin: 0 auto;
  }
}

.question-fourth-bg {
  background-image: url("/assets/images/question4/mobile/question4-bg-mobile.png");
  background-position: right;
  background-size: 100% 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .question-fourth-bg {
    background-image: url("/assets/images/question4/desktop/question4-bg.png");
  }
}

@media screen and (min-width: 1280px) {
  .container--wider {
    width: 1170px;
    max-width: 1170px;
  }
}

.radiobutton-label-q-fourth {
  background-color: var(--yellow);
}
@media screen and (min-width: 1280px) {
  .radiobutton-label-q-fourth {
    max-width: 560px;
  }
}

.radiobutton-label-q-fourth--blue {
  background-color: var(--teal);
}
@media screen and (min-width: 1280px) {
  .radiobutton-label-q-fourth--blue {
    max-width: 560px;
  }
}

.case-desc-text:not(:last-of-type) {
  margin-bottom: 25px;
}

.question-fourth-feedback-bg, .login-background, .question-sixth-feedback-bg {
  background-image: url("/assets/images/question-feedback4/desktop/q-4-feedback-mobile.png");
}
@media screen and (min-width: 768px) {
  .question-fourth-feedback-bg, .login-background, .question-sixth-feedback-bg {
    background-image: url("/assets/images/question-feedback4/desktop/q-4-feedback.png");
  }
}

.question-fourth-feedback-title {
  max-width: 1150px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .question-fourth-feedback-title {
    margin-bottom: 40px;
  }
}

.question-fourth-feedback-desc {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .question-fourth-feedback-desc {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 768px) and (max-width: 979px) {
  .person-feedback-wrapper--4 {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1280px) {
  .person-feedback-wrapper--4 {
    bottom: unset;
    position: static;
    width: auto;
    max-width: 600px;
  }
}
@media screen and (max-width: 1399px) {
  .person-feedback-wrapper--4 {
    text-align: center;
    margin-bottom: 30px;
    padding-left: unset;
  }
}
@media screen and (min-width: 1400px) {
  .person-feedback-wrapper--4 {
    position: absolute;
    bottom: -90px !important;
    width: 680px;
  }
}

.person-feedback-yellow--4 {
  display: block;
  padding: 20px 20px 20px 30px;
}
@media screen and (min-width: 768px) {
  .person-feedback-yellow--4 {
    padding: 30px 47px 30px 40px;
  }
}
@media screen and (max-width: 1399px) {
  .person-feedback-yellow--4 {
    max-width: 600px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
  .button--continue--center-4 {
    margin: unset;
  }
}

.did-you-know-title {
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  color: var(--slate);
  margin-bottom: 15px;
}

.did-you-know-desc {
  font-family: OpenSans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: var(--slate);
  text-align: center;
  max-width: 397px;
}

.question-fifth-bg {
  background-image: url("/assets/images/question5/desktop/q-5-mobile.png");
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: 100% 100%;
}
@media screen and (min-width: 768px) {
  .question-fifth-bg {
    background-image: url("/assets/images/question5/desktop/q-5.png");
    background-position: bottom left;
  }
}

.radiobutton-container-shorter {
  max-width: 446px;
}
.radiobutton-container-shorter:last-of-type {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .radiobutton-container-shorter:last-of-type {
    margin-bottom: 50px;
  }
}

.checkbox-label-multi-bigger {
  padding: 21px 36px 21px 64px;
}

.checkbox-multi-center {
  top: 53%;
}

.radiobutton-label--without-active {
  color: var(--checkbox-text-hover);
  background-color: var(--checkbox-item);
  opacity: 0.5;
  box-shadow: none;
}
.radiobutton-label--without-active:hover {
  color: var(--checkbox-text-hover);
  background-color: var(--checkbox-item);
  box-shadow: none;
  opacity: 0.5;
  cursor: auto;
}
.radiobutton-label--without-active:hover input ~ .checkbox-multi:after {
  display: block;
  opacity: 0;
  width: 15px;
  height: 8px;
  border: 2px solid var(--blue);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  margin-top: 5px;
}

.question-fifth-feedback-bg {
  background-image: url("/assets/images/question-feedback5/desktop/q-5-feedback-mobile.png");
}
@media screen and (min-width: 980px) {
  .question-fifth-feedback-bg {
    background-image: url("/assets/images/question-feedback5/desktop/q-5-feedback.png");
    background-position: bottom left;
  }
}

@media screen and (min-width: 1280px) {
  .person-feedback-wrapper--5 {
    bottom: -100px !important;
  }
}

.question-fifth-feedback-desc-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .question-fifth-feedback-desc-wrapper {
    gap: 30px;
    margin-bottom: 60px;
  }
}

.question-fifth-feedback-desc {
  font-family: OpenSans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  max-width: 870px;
  text-align: center;
}

.question-feedback-desc--find-out--fifth {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media screen and (min-width: 1280px) {
  .question-feedback-desc--find-out--fifth {
    flex-direction: row;
    gap: 31px;
    align-items: center;
  }
}

.testimonial-wrapper {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .testimonial-wrapper {
    margin-bottom: 50px;
  }
}

.reviewer-img-mobile {
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 3px 0px 0px 3px;
}
@media screen and (min-width: 768px) {
  .reviewer-img-mobile {
    display: none;
  }
}

.reviewer-img {
  display: none;
}
@media screen and (min-width: 768px) {
  .reviewer-img {
    display: flex;
  }
}

.testimonial-desc-wrapper {
  background-color: var(--white);
  padding: 25px 41px 25px 30px;
  border-bottom-left-radius: 3px;
}
@media screen and (min-width: 768px) {
  .testimonial-desc-wrapper {
    padding: 25px 30px;
  }
}

.testimonial-title {
  margin-bottom: 25px;
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  color: var(--slate);
}

.testimonial-desc {
  font-family: OpenSans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: var(--slate);
}

.question-sixth-bg {
  background-image: url("/assets/images/question6/desktop/q-6-mobile.png");
  background-position: left bottom;
}
@media screen and (min-width: 768px) {
  .question-sixth-bg {
    background-image: url("/assets/images/question6/desktop/q-6.png");
  }
}

.q-six-radiobuttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .q-six-radiobuttons-wrapper {
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .q-six-radiobuttons-wrapper {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
  }
}

.q-six-radiobutton-container {
  margin: unset;
  height: 64px;
  width: 213px;
}
.q-six-radiobutton-container:not(:last-of-type) {
  margin: 0;
}
.q-six-radiobutton-container:last-of-type {
  margin: 0;
}

.radiobutton-q-six-label {
  max-width: 213px;
  width: 213px;
  padding: 15px 20px 15px 64px;
  font-size: 28px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .radiobutton-q-six-label {
    padding: 15px 20px 15px 64px;
  }
}

.question-sixth-feedback-bg {
  background-image: url("/assets/images/question-feedback6/desktop/q-6-feedback-mobile.png");
}
@media screen and (min-width: 768px) {
  .question-sixth-feedback-bg {
    background-image: url("/assets/images/question-feedback6/desktop/q-6-feedback.png");
  }
}

.container-feedback-relative-6 {
  position: relative;
}
@media screen and (min-width: 980px) {
  .container-feedback-relative-6 {
    max-width: 45%;
  }
}

@media screen and (min-width: 768px) {
  .person-feedback-wrapper--6 {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .person-feedback-wrapper--6 {
    text-align: center;
  }
}
@media screen and (min-width: 980px) {
  .person-feedback-wrapper--6 {
    position: absolute;
    left: 0;
    top: 400px;
    bottom: unset !important;
    width: 744px;
    max-width: 744px;
    text-align: left;
  }
}
@media screen and (min-width: 980px) and (max-width: 1399px) {
  .person-feedback-wrapper--6 {
    margin-bottom: unset;
    padding-left: unset;
  }
}
@media screen and (min-width: 1400px) {
  .person-feedback-wrapper--6 {
    position: absolute;
    left: 0;
    top: 400px;
    bottom: unset !important;
    width: 744px;
    max-width: 744px;
  }
}

@media screen and (min-width: 768px) {
  .person-feedback-yellow--6 {
    padding: 30px 47px 30px 30px;
  }
}
@media screen and (min-width: 980px) {
  .person-feedback-yellow--6 {
    padding: 30px 47px 30px 105px;
  }
}
@media screen and (max-width: 1399px) {
  .person-feedback-yellow--6 {
    max-width: 744px;
  }
}

.question-feedback-desc-wrapper-relative-6 {
  position: static;
}

.did-you-know-wrapper-q-six-feedback {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .did-you-know-wrapper-q-six-feedback {
    margin-bottom: 30px;
  }
}

.main-section__result {
  padding: 40px 0 35px;
  background-image: url("/assets/images/result-page/mobile/result-bg-mobile.png");
  background-position: right bottom;
}
@media screen and (min-width: 768px) {
  .main-section__result {
    background-image: url("/assets/images/result-page/desktop/result-bg.png");
    padding: 90px 0 35px;
  }
}

.main-section-result__title {
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  .main-section-result__title {
    font-size: 56px;
    max-width: 870px;
  }
}

.main-section__desc-result-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 796px;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .main-section__desc-result-wrapper {
    margin-bottom: 30px;
    gap: 25px;
  }
}

.main-section__desc-result {
  font-family: Georgia, serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--dark-blue);
}
@media screen and (min-width: 768px) {
  .main-section__desc-result {
    font-size: 24px;
    line-height: 1.333;
  }
}

.button-main-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .button-main-wrapper {
    flex-direction: row;
  }
}

.button-apply {
  width: 134px;
  max-width: 134px;
}
.button-apply:hover {
  color: var(--white);
}
@media screen and (max-width: 549px) {
  .button-apply {
    width: 100%;
    max-width: 100%;
  }
}

.button-findout {
  width: 160px;
  max-width: 160px;
  background-color: var(--white);
  color: var(--slate);
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.button-findout--short {
  width: 160px;
  max-width: 160px;
}
.button-findout:hover, .button-findout:focus {
  color: var(--slate);
  background-color: var(--border-color);
}
.button-findout .btn-arrow-icon {
  fill: var(--slate);
}
@media screen and (max-width: 549px) {
  .button-findout {
    width: 100%;
    max-width: 100%;
  }
}

.button-findout-short {
  width: 160px;
  max-width: 160px;
  background-color: var(--white);
  color: var(--slate);
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.button-findout-short--short {
  width: 160px;
  max-width: 160px;
}
.button-findout-short:hover, .button-findout-short:focus {
  color: var(--slate);
  background-color: var(--border-color);
}
.button-findout-short .btn-arrow-icon {
  fill: var(--slate);
}
@media screen and (max-width: 549px) {
  .button-findout-short {
    width: 160px;
    max-width: 160px;
  }
}

.find-out-part-bg {
  padding: 30px 0;
  background-image: url("/assets/images/result-page/mobile/find-out-bg-mobile.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .find-out-part-bg {
    background-image: url("/assets/images/result-page/desktop/find-out-bg.png");
    padding: 50px 0;
  }
}

.find-out-text-result {
  font-family: Georgia, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  max-width: 796px;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .find-out-text-result {
    margin-bottom: 35px;
  }
}

.our-programmes {
  padding: 35px 0 25px;
}
@media screen and (min-width: 768px) {
  .our-programmes {
    padding: 45px 0 50px;
  }
}

@media screen and (min-width: 1280px) {
  .section-result-container-wider {
    width: 1220px;
    max-width: 1220px;
  }
}

.our-programmes__title {
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.333;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .our-programmes__title {
    margin-bottom: 45px;
  }
}

.programmes-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 960px) {
  .programmes-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.programmes-item {
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--border-color);
  min-height: 475px;
  max-width: 563px;
}
@media screen and (min-width: 960px) {
  .programmes-item {
    min-height: 434px;
  }
}

.img-wrapper-bg-first {
  height: 100%;
  background-image: url("/assets/images/result-page/desktop/road-right.jpg");
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 481px) and (max-width: 959px) {
  .img-wrapper-bg-first {
    flex: 1;
  }
}
@media screen and (max-width: 480px) {
  .img-wrapper-bg-first {
    height: 188px;
  }
}

.img-wrapper-bg-second {
  height: 100%;
  background-image: url("/assets/images/result-page/mobile/flying-mobile.png");
  background-size: cover;
  background-position: bottom;
}
@media screen and (min-width: 481px) {
  .img-wrapper-bg-second {
    background-image: url("/assets/images/result-page/desktop/flying.jpg");
    background-position: 0 -40px;
  }
}
@media screen and (min-width: 481px) and (max-width: 959px) {
  .img-wrapper-bg-second {
    flex: 1;
  }
}
@media screen and (max-width: 480px) {
  .img-wrapper-bg-second {
    height: 188px;
  }
}

.img-wrapper-bg-third {
  height: 100%;
  background-image: url("/assets/images/result-page/desktop/books.png");
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 481px) and (max-width: 959px) {
  .img-wrapper-bg-third {
    flex: 1;
  }
}
@media screen and (max-width: 480px) {
  .img-wrapper-bg-third {
    height: 188px;
  }
}

.img-wrapper-bg-fourth {
  height: 100%;
  background-image: url("/assets/images/result-page/desktop/road-left.jpg");
  background-size: cover;
  background-position: left;
}
@media screen and (min-width: 481px) and (max-width: 959px) {
  .img-wrapper-bg-fourth {
    flex: 1;
  }
}
@media screen and (max-width: 480px) {
  .img-wrapper-bg-fourth {
    height: 188px;
  }
}

.programm-info-wrapper {
  padding: 25px 35px 15px 20px;
}
.programm-info-wrapper--yellow {
  background-color: var(--yellow);
}
.programm-info-wrapper--lilac {
  background-color: var(--lilac);
}
.programm-info-wrapper--teal {
  background-color: var(--teal);
}
.programm-info-wrapper--orange {
  background-color: var(--orange);
}
@media screen and (min-width: 960px) {
  .programm-info-wrapper {
    padding: 25px 60px 25px 30px;
  }
}

.programm-title {
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  color: var(--slate);
  margin-bottom: 15px;
}
@media screen and (min-width: 960px) {
  .programm-title {
    margin-bottom: 20px;
  }
}

.programm-desc {
  font-family: OpenSans, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: var(--slate);
}

.main-section-login {
  padding: 135px 0 230px;
}
@media screen and (min-width: 768px) {
  .main-section-login {
    padding: 130px 0 100px;
  }
}

.container-narrow-login {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 550px) {
  .container-narrow-login {
    width: 460px;
    max-width: 460px;
  }
}
@media screen and (min-width: 1280px) {
  .container-narrow-login {
    width: 460px;
    max-width: 460px;
  }
}

.form-login {
  max-width: 100%;
}
@media screen and (min-width: 550px) {
  .form-login {
    max-width: 271px;
    margin-left: auto;
    margin-right: auto;
  }
}

.loginform-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.login-title {
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  color: var(--black);
  margin-bottom: 30px;
}

.label-login {
  margin: 0;
}

.section-login {
  padding-bottom: 20px;
}

.login-background {
  background-image: url("/assets/images/question-feedback6/desktop/question-feedback6-bg-mobile.png");
}
@media screen and (min-width: 768px) {
  .login-background {
    background-image: url("/assets/images/question-feedback6/desktop/question-feedback6-bg.png");
  }
}

@media screen and (min-width: 1280px) {
  .container-login {
    width: 1100px;
    max-width: 1100px;
  }
}

.input-password {
  width: 100%;
}
@media screen and (max-width: 549px) {
  .input-password {
    width: 258px;
    max-width: 258px;
  }
}

.password-validate {
  left: 101%;
  top: 12px;
}

.password-w-btn-wrapper {
  position: relative;
}
@media screen and (max-width: 549px) {
  .password-w-btn-wrapper {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.show-btn {
  position: absolute;
  top: 15px;
  right: -75px;
  cursor: pointer;
  font-family: OpenSans, sans-serif;
  font-weight: normal;
  font-size: 15px;
  line-height: 1.5;
  text-transform: uppercase;
}

.reset-link-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.reset-link-wrapper::after {
  content: "";
  position: absolute;
  bottom: 2px;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--slate);
  transition: background-color 350ms ease-in-out;
}

.link-reset-login {
  background-color: transparent;
  text-decoration: none;
  color: var(--slate);
  display: inline-flex;
  transform: translateY(0);
  transition: color 350ms ease-in-out, transform 350ms ease-in-out;
}
.link-reset-login:hover {
  color: var(--slate);
  transform: translateY(-5px);
}

.button-login {
  max-width: 103px;
  width: 103px;
  margin-bottom: 30px;
}
@media screen and (max-width: 549px) {
  .button-login {
    width: 100%;
    max-width: 100%;
  }
}

.main-section-reset {
  background-color: var(--black);
  padding: 20px 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .main-section-reset {
    background-color: unset;
    padding: 60px 0;
    background-image: linear-gradient(89.98deg, rgba(0, 0, 0, 0.9) 0.03%, rgba(32, 32, 32, 0.854167) 37.52%, rgb(217, 217, 217) 70%), url("/assets/images/reset-page/desktop/reset-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: multiply;
  }
}

.label-reset {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .label-reset {
    margin-bottom: 50px;
  }
}

.mobile-word {
  display: inline;
  margin-left: -3px;
}
@media screen and (min-width: 550px) {
  .mobile-word {
    display: none;
  }
}

.button-reset {
  max-width: 169px;
  width: 169px;
  margin-bottom: 30px;
}
@media screen and (max-width: 549px) {
  .button-reset {
    width: 100%;
    max-width: 100%;
  }
}

.reset-success-text {
  display: none;
}/*# sourceMappingURL=main.css.map */