@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
:root {
  --text-color-primary: #fff;
  --text-color-secondary: #8B8B8B;
  --text-color-accent: #444E8A;
  --text-color-additional: #B9A782;
  --text-color-additional-2: #666666;
  --background-color-primary: #ffffff;
  --background-color-secondary: #FBEBDA;
  --background-color-accent: #EBD1B3;
}

.app_button {
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  border-radius: 8px;
  border: solid 1px var(--background-color-accent);
  cursor: pointer;
  text-decoration: none;
  color: var(--background-color-accent);
  font-family: "Nunito Sans", sans-serif;
}
.app_button:hover {
  opacity: 0.8;
}

.standard-button {
  padding: 14px 16px;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  min-width: 280px;
}
.standard-button--filled {
  background-color: var(--background-color-accent);
  color: #000;
}
.standard-button--outlined {
  border: solid 1px #ffffff;
  color: #ffffff;
  background-color: #7D85B0;
}
.standard-button:hover {
  opacity: 0.8;
}

.radio2 {
  flex: 1;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 12px;
  padding: 20px 34px;
  background-color: #FFFFFF;
  border: 1px solid #EBD1B3;
  border-radius: 16px;
}
.radio2__wrapper {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.radio2__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 0;
  height: 0;
}
.radio2__input:checked ~ .radio2__box::after {
  opacity: 1;
}
.radio2__box {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radio2__box::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid #444E8A;
  border-radius: 50%;
  box-sizing: border-box;
}
.radio2__box::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #444E8A;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.radio2__label {
  font-weight: 500;
  font-size: 16px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #000000;
}

.h1 {
  position: relative;
  font-weight: 700;
  font-size: 64px;
  line-height: 90px;
}
.h1 span {
  color: var(--text-color-additional-2);
}

.h2 {
  position: relative;
  font-weight: 700;
  font-size: 36px;
  line-height: 156%;
}
.h2 span {
  color: var(--text-color-additional-2);
}

.description {
  font-size: 18px;
}
.description span {
  color: var(--text-color-additional-2);
}

.input input.error,
.textarea textarea.error {
  border: 1px solid #e74c3c;
  background: #fff5f5;
}

.input-error {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 4px;
}

.input {
  position: relative;
  display: flex;
  width: 100%;
}
.input__icon {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  margin: auto;
  z-index: 1;
}
.input__icon img {
  position: relative;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.input input {
  position: relative;
  display: flex;
  background: #FFFFFF;
  border: 1px solid #EBD1B3;
  border-radius: 16px;
  padding: 20px 34px;
  width: 100%;
  font-family: Open Sans, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: #3D3D3D;
}
.input input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--text-color-secondary);
  font-family: Open Sans, sans-serif;
}

.textarea {
  position: relative;
  display: flex;
  width: 100%;
}
.textarea textarea {
  position: relative;
  resize: vertical;
  min-height: 128px;
  display: flex;
  background: #FFFFFF;
  border: 1px solid #EBD1B3;
  border-radius: 16px;
  padding: 20px 34px;
  width: 100%;
  font-size: 16px;
  outline: none;
  line-height: 100%;
  font-family: "Open Sans", sans-serif;
}
.textarea textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--text-color-secondary);
  font-family: Open Sans, sans-serif;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  color: #333;
  line-height: 100%;
}
.checkbox__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  color: #1A8B32;
}
.checkbox__wrapper {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.checkbox__box {
  width: 100%;
  height: 100%;
  border: 2px solid #3D3D3D;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.checkbox__box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 3px;
  height: 8px;
  border: solid #1A8B32;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.1s ease;
}
.checkbox__input:checked + .checkbox__box {
  background-color: #fff;
  border-color: #3D3D3D;
}
.checkbox__input:checked + .checkbox__box::after {
  opacity: 1;
}
.checkbox__label {
  user-select: none;
}

.radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  color: #333;
  line-height: 100%;
  text-transform: uppercase;
}
.radio__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.radio__wrapper {
  position: relative;
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
.radio__box {
  width: 100%;
  height: 100%;
  border: 2px solid var(--background-color-accent);
  display: inline-block;
  border-radius: 100px;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.radio__box::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 12px;
  height: 12px;
  border-radius: 100px;
  background: var(--background-color-accent);
  opacity: 0;
  transition: opacity 0.1s ease;
}
.radio__input:checked + .radio__box::after {
  opacity: 1;
}
.radio__label {
  user-select: none;
}

.link-line {
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}
.link-line:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  left: 0;
  bottom: -2px;
  background: var(--background-color-accent);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.link-line--reverse {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.link-line--reverse:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  transform: scaleX(1);
  transform-origin: bottom left;
  left: 0;
  bottom: -2px;
  background: var(--background-color-accent);
  transition: transform 0.25s ease-out;
}
.link-line--reverse:hover {
  color: var(--background-color-accent);
}
.link-line--reverse:hover:before {
  background: var(--background-color-accent);
  transform: scaleX(0);
  transform-origin: bottom right;
}
.link-line:hover {
  color: var(--text-color-primary);
}
.link-line:hover:before {
  width: 100%;
  transform: scaleX(1);
  transform-origin: bottom left;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  min-width: 1300px;
  color: var(--text-color-primary);
  background-color: #F9F8FA;
  line-height: 125%;
  overflow-x: hidden;
}

@media (max-width: 1440px) {
  html, body {
    min-width: 1200px;
  }
}
@media (max-width: 1298px) {
  html, body {
    min-width: 900px;
  }
}
.container {
  position: relative;
  max-width: 1350px;
  margin: 0 auto;
}

@media (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 1298px) {
  .container {
    max-width: 900px;
  }
}
.header {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 100;
}
.header__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 24px 0;
}
.header h1 {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 33px;
  color: #FFFFFF;
}
.header__buttons {
  display: flex;
  gap: 32px;
}
.header__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header__nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  font-family: Open Sans, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  vertical-align: middle;
}
.header__nav ul a {
  text-decoration: none;
  color: var(--text-color-secondary);
}
.header__nav ul a.active {
  color: var(--text-color-primary);
}
.header__lang {
  align-content: center;
}
.header__lang ul {
  list-style: none;
  display: flex;
  gap: 18px;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
}
.header__lang ul a {
  text-decoration: none;
  color: #8B8B8B;
}
.header__lang ul a.active {
  color: var(--background-color-accent);
}

/*.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #F9FBFE;

  &__wrapper {
    display: flex;
    justify-content: space-between;
    align-content: center;
    background: #F9FBFE;
    padding: 24px;
  }

  &__buttons {
    align-content: center;
    display: flex;
    gap: 34px;
  }

  &__logo {
    display: flex;
    align-content: center;
    justify-content: center;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    line-height: 100%;
  }

  &__nav {
    align-content: center;

    ul {
      list-style: none;
      display: flex;
      gap: 34px;
      font-weight: 500;
      font-size: 18px;
      line-height: 100%;

      a {
        text-decoration: none;
        color: var(--text-color-secondary);

        &.active {
          color: var(--text-color-primary);
        }
      }
    }
  }

  &__lang {
    align-content: center;

    ul {
      list-style: none;
      display: flex;
      gap: 10px;

      font-weight: 700;
      font-size: 16px;
      line-height: 125%;

      a {
        text-decoration: none;
        color: #B2B2B2;

        &.active {
          color: var(--text-color-primary);
        }
      }
    }
  }

  &__button-phone {
    align-content: center;
    font-family: "Nunito", sans-serif;
  }
}*/
.hero {
  position: relative;
  top: 0;
  padding: 132px 0;
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__inner {
  display: flex;
  align-items: center;
  gap: 22px;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 34px;
  max-width: 785px;
  width: 100%;
  flex-shrink: 0;
}
.hero__content h1 {
  font-family: Open Sans, sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 71px;
  vertical-align: middle;
}
.hero__content p {
  font-family: Open Sans, sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 25px;
  vertical-align: middle;
}
.hero__buttons {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}
.hero__image {
  position: relative;
}
.hero__image-wrapper {
  position: relative;
  width: 932px;
  height: 739px;
  overflow: hidden;
}
.hero__image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__image-wrapper2 {
  position: absolute;
  width: 100%;
  padding: 84px 0 94px 76px;
}
.hero__image-wrapper2 img {
  position: relative;
  width: 100%;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
}

.areas {
  position: relative;
  padding: 62px 0;
}
.areas__content {
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.areas__content h1 {
  font-family: Open Sans, sans-serif;
  font-weight: 700;
  font-size: 36px;
  width: 100%;
  line-height: 100%;
  text-align: center;
  color: var(--text-color-accent);
}
.areas__items {
  display: flex;
  gap: 34px;
}
.areas__item_wrapper {
  display: flex;
  align-items: center;
  flex: 1;
}
.areas__item_wrapper:nth-child(1) {
  margin-top: 0;
}
.areas__item_wrapper:nth-child(2) {
  margin-top: 50px;
}
.areas__item_wrapper:nth-child(3) {
  margin-top: 100px;
}
.areas__item_content {
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-left: -38px;
}
.areas__item_content svg {
  width: 163px;
  height: 163px;
  margin-left: 32px;
}
.areas__item_content h1 {
  font-family: Open Sans, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  vertical-align: middle;
  text-align: start;
}
.areas__item_content h1::after {
  display: block;
  content: "";
  width: 70px;
  border-top: 6px dashed var(--background-color-accent);
  margin-top: 4px;
}
.areas__item_content p {
  font-family: Open Sans, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  vertical-align: middle;
  color: black;
}
.areas__footer {
  margin-top: 64px;
  width: 100%;
  height: 100%;
}
.areas__footer img {
  width: 100%;
  height: 100%;
}

.cooperation {
  padding-bottom: 62px;
}
.cooperation__inner {
  display: flex;
  flex-direction: column;
  gap: 54px;
}
.cooperation__items {
  display: flex;
  gap: 32px;
}
.cooperation__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 50px;
  gap: 12px;
}
.cooperation__item img {
  margin-bottom: 20px;
}
.cooperation__item h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 60px;
  vertical-align: middle;
  color: var(--text-color-accent);
}
.cooperation__item h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #000000;
}
.cooperation__item p {
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #3D3D3D;
}
.cooperation h1 {
  font-family: Open Sans, sans-serif;
  font-weight: 700;
  font-size: 36px;
  width: 100%;
  line-height: 100%;
  text-align: center;
  color: var(--text-color-accent);
}
.cooperation__button {
  display: flex;
  justify-content: center;
}

.reviews {
  background-image: url("../assets/images/testimonials/testimonials_back.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
}
.reviews__content {
  display: flex;
  flex-direction: column;
  gap: 92px;
}
.reviews h1 {
  font-family: Open Sans, sans-serif;
  font-weight: 700;
  font-size: 36px;
  width: 100%;
  line-height: 100%;
  text-align: center;
  color: var(--text-color-accent);
}
.reviews__items {
  display: flex;
  gap: 20px;
}
.reviews__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.reviews__item h2 {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #565656;
}
.reviews__item-block {
  display: flex;
  gap: 16px;
  padding: 36px 24px;
  align-items: center;
}
.reviews__item-block p {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #000000;
}
.reviews__item-block svg {
  flex-shrink: 0;
}
.reviews__item-block--filled {
  background-color: var(--text-color-accent);
  border-radius: 8px;
}
.reviews__item-block--filled p {
  color: #ffffff;
}
.reviews__item-block--filled svg path {
  fill: #ffffff;
}

.form {
  padding: 120px 0;
}
.form__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.form__inner h1 {
  font-family: Open Sans, sans-serif;
  font-weight: 700;
  font-size: 36px;
  width: 100%;
  line-height: 100%;
  text-align: center;
  color: var(--text-color-accent);
}
.form__content {
  display: flex;
  gap: 64px;
}
.form__cards {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.form__card {
  padding: 24px 32px;
  background-color: #EBD1B3;
  border-radius: 16px;
  text-decoration: none;
}
.form__card p {
  padding: 67px 0;
  font-weight: 400;
  font-size: 36px;
  line-height: 34px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #000000;
}
.form__card--tonal {
  background-color: #E9E4E0;
}
.form__card-title {
  display: flex;
  gap: 16px;
  align-items: center;
}
.form__card-title p {
  padding: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #000000;
}
.form__inputs {
  flex: 5;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.form__inputs p {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #000000;
}
.form__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form__radios {
  display: flex;
  gap: 34px;
}

@media (max-width: 1400px) {
  .stages__card {
    aspect-ratio: auto;
  }
}
.footer {
  background-image: url("../assets/images/footer/footer_back.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 0;
  position: relative;
  font-family: "Open Sans", sans-serif;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.footer__info-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__info-block h1 {
  font-weight: 400;
  font-size: 32px;
  line-height: 37px;
  letter-spacing: 0;
  vertical-align: middle;
}
.footer__info-block p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 25px;
}
.footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-family: Open Sans, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  vertical-align: middle;
  color: var(--text-color-primary);
}
.footer__nav ul a {
  text-decoration: none;
  color: var(--text-color-primary);
}
.footer__nav ul a.active {
  color: var(--text-color-primary);
}
.footer__address {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  vertical-align: middle;
}
.footer__info-codes {
  padding-left: 36px;
  font-family: Open Sans, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0;
  vertical-align: middle;
}
.footer__contact-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  vertical-align: middle;
}
.footer__schedule {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  vertical-align: middle;
}
.footer__icon-text-wrapper {
  display: flex;
  gap: 12px;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: black;
}
.form-status.success {
  display: block;
  background: #e8f7ee;
  border: 1px solid #bfe7cb;
  color: green;
}
.form-status.error {
  display: block;
  background: #ffecec;
  border: 1px solid #ffc1c1;
  color: red;
}

/*# sourceMappingURL=style.css.map */
