:root {
  --grey-background: #f7f7f5;
  --black: #222;
  --_font-size---h1: 3.4375rem;
  --grey-dark-_text: #6d6e70;
  --_font-size---subtitle: 1.25rem;
  --_font-size---body: 1rem;
  --white: white;
  --_font-size---h3: 1.5625rem;
  --grey: #999;
  --blue: #01aee5;
  --black-50: #00000080;
  --blue-light: #e3f4f9;
  --_font-size---h2: 2.25rem;
  --grey-dark: #344054;
  --grey-light: #8f8f8f;
}

body {
  background-color: var(--grey-background);
  color: var(--black);
  --_font-size---h1: 3.4375rem;
  --_font-size---subtitle: 1.25rem;
  --_font-size---body: 1rem;
  --_font-size---h3: 1.5625rem;
  --_font-size---h2: 2.25rem;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 130%;
}

.container {
  max-width: 72.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.hero {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero.container {
  grid-column-gap: 2.875rem;
  grid-row-gap: 2.25rem;
  grid-template-rows: auto auto;
  grid-template-columns: 39.5rem 1fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.hero__title {
  font-size: var(--_font-size---h1);
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 100%;
}

.hero__descr {
  color: var(--grey-dark-_text);
  font-size: var(--_font-size---subtitle);
  margin-bottom: 2.125rem;
}

.hero__list {
  grid-column-gap: 2rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 2.625rem;
  padding-left: 0;
  list-style-type: none;
  display: grid;
}

.hero__item {
  font-size: var(--_font-size---body);
  padding-left: 2rem;
  font-weight: 600;
  line-height: 150%;
  position: relative;
}

.opportunity {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: var(--white);
  background-image: url('../images/palm_branch.png');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: scroll;
  border-radius: 1.5rem;
  flex-flow: column;
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  position: relative;
}

.opportunity__title {
  font-size: var(--_font-size---h3);
  margin-top: 0;
  margin-bottom: 0;
  line-height: 130%;
}

.opportunity__descr {
  color: var(--black);
  font-size: var(--_font-size---body);
  margin-bottom: 0;
  padding-left: 3.375rem;
  font-weight: 600;
  line-height: 150%;
  position: relative;
}

.opportunity__pdf {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--grey);
  flex-flow: column;
  margin-top: auto;
  font-size: .875rem;
  display: flex;
}

.advantages {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.advantages__wrapper {
  background-color: var(--white);
  border-radius: 1.5rem;
  flex-flow: column;
  justify-content: space-between;
  min-height: 13.75rem;
  padding: 1.5rem;
  display: flex;
}

.footer.container {
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
}

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

.footer__link-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: var(--black);
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading {
  font-size: var(--_font-size---h3);
  margin-top: 0;
  margin-bottom: 1.5rem;
  line-height: 130%;
}

.body {
  color: var(--black);
  font-size: var(--_font-size---subtitle);
  line-height: 130%;
}

.hero__button {
  border: 1px solid var(--blue);
  background-color: var(--blue);
  color: var(--white);
  font-size: var(--_font-size---body);
  letter-spacing: normal;
  border-radius: .5rem;
  padding: .75rem 1.25rem;
  line-height: 150%;
  text-decoration: none;
  transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
}

.hero__button:hover {
  color: var(--blue);
  background-color: #0000;
}

.hero__button.mobile {
  display: none;
}

.blue {
  color: var(--blue);
}

.opportunity__pdf-icon {
  flex: 0 auto;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  display: inline-flex;
}

.advantages__text {
  font-size: var(--_font-size---subtitle);
  white-space: normal;
  font-weight: 600;
  line-height: 130%;
}

.footer__link {
  direction: ltr;
  color: var(--grey-dark-_text);
  font-size: var(--_font-size---body);
  -webkit-text-stroke-color: var(--grey-dark-_text);
  text-transform: none;
  overflow-wrap: normal;
  text-decoration: none;
}

.opportunity__image {
  width: auto;
  max-width: none;
  min-height: 34.875rem;
  max-height: 34.875rem;
  position: absolute;
  top: 11.25rem;
  right: -2.25rem;
}

.modal {
  z-index: 50;
  color: var(--black-50);
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal__wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--white);
  color: var(--black);
  border-radius: .75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 62.125rem;
  min-height: 37.375rem;
  padding: 0;
  display: grid;
  position: relative;
  overflow: hidden;
}

.modal__left {
  background-color: var(--white);
  color: var(--black);
  width: auto;
  min-width: 30rem;
  padding: 1.5rem;
}

.modal__right {
  background-color: var(--blue-light);
  padding: 1.5rem;
  position: relative;
}

.form {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.form__root {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.form__title {
  font-size: var(--_font-size---h2);
  margin-top: 0;
  margin-bottom: 1.5625rem;
  line-height: 110%;
}

.form__label {
  color: var(--grey-dark);
  margin-bottom: .375rem;
  font-size: .875rem;
  line-height: 20px;
}

.form__input {
  border: 1px solid #e7e7e7;
  border-radius: .5rem;
  min-height: 3rem;
  margin-bottom: 1.25rem;
  padding: .75rem 1rem;
  box-shadow: 0 1px 2px #1018280d;
}

.form__btn {
  border: 1px solid var(--blue);
  background-color: var(--blue);
  color: var(--white);
  font-size: var(--_font-size---body);
  border-radius: .5rem;
  width: 100%;
  padding: .75rem 1rem;
  line-height: 1.5rem;
  transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
}

.form__btn:hover {
  color: var(--blue);
  background-color: #0000;
}

.modal__title {
  color: var(--black);
  font-size: var(--_font-size---h3);
  margin-top: 0;
  margin-bottom: 2rem;
  line-height: 130%;
}

.modal__list {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.modal__item {
  font-size: var(--_font-size---body);
  padding-left: 3.625rem;
  font-weight: 600;
  position: relative;
}

.modal__bg {
  max-width: 20.9375rem;
  position: absolute;
  bottom: 0;
}

.modal__cross-btn {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: .5rem;
  right: .25rem;
}

.modal__background {
  background-color: var(--black-50);
  width: 100%;
  height: 100%;
  position: absolute;
}

.success-message {
  background-color: var(--blue-light);
  font-size: var(--_font-size---body);
  border-radius: .5rem;
  width: 100%;
  min-width: 0;
  margin-top: auto;
  margin-bottom: auto;
}

.error-message {
  font-size: var(--_font-size---body);
  border-radius: .5rem;
  width: 100%;
}

.text-block {
  font-size: .875rem;
}

.img-contain {
  object-fit: scale-down;
  height: auto;
}

.social-block {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  justify-content: center;
  margin-top: .5rem;
  display: flex;
}

.icon-40px {
  object-fit: scale-down;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
}

.success-message__title {
  color: var(--blue);
  font-size: var(--_font-size---subtitle);
  margin-bottom: 1rem;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  body {
    --_font-size---h1: 2rem;
    --_font-size---subtitle: 1rem;
    --_font-size---body: 1rem;
    --_font-size---h3: 1.375rem;
    --_font-size---h2: 1.75rem;
  }

  .hero.container {
    grid-column-gap: 1.5rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    padding-top: 2.5rem;
    padding-bottom: 0;
  }

  .hero__descr {
    margin-bottom: 1.5rem;
  }

  .hero__list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    margin-bottom: 2rem;
    display: flex;
  }

  .opportunity__pdf {
    margin-top: 1rem;
  }

  .advantages {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    grid-template-columns: 1fr 1fr;
  }

  .advantages__wrapper {
    min-height: 10rem;
  }

  .footer.container {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .footer__logo {
    max-width: 10rem;
  }

  .hero__button.mobile {
    display: none;
  }

  .footer__link {
    font-size: .875rem;
  }

  .opportunity__image {
    height: 25.25rem;
    min-height: 0;
    max-height: 25.25rem;
    top: auto;
    bottom: -8rem;
    right: 0;
  }

  .modal__wrapper {
    min-height: 0;
    display: flex;
  }

  .modal__right {
    display: none;
  }

  .form__root {
    width: 100%;
  }

  .form__input {
    margin-bottom: 0;
  }

  .social-block {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: row;
    align-items: flex-end;
  }
}

@media screen and (max-width: 767px) {
  body {
    --_font-size---h1: 2rem;
    --_font-size---subtitle: 1rem;
    --_font-size---body: 1rem;
    --_font-size---h3: 1.375rem;
    --_font-size---h2: 1.75rem;
  }

  .hero.container {
    grid-row-gap: 1.5rem;
    flex-flow: column;
    display: flex;
    overflow: hidden;
  }

  .opportunity {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    background-position: 150% 200%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    order: 1;
    min-height: 30rem;
  }

  .opportunity__descr {
    padding-left: 2.25rem;
  }

  .advantages {
    flex-flow: column;
    display: flex;
  }

  .footer.container {
    z-index: 10;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
  }

  .hero__button {
    z-index: 2;
    order: 1;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
    position: relative;
  }

  .hero__button.mobile {
    display: flex;
  }

  .opportunity__image {
    z-index: 1;
    right: -.625rem;
  }

  .modal__wrapper {
    width: 100%;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .modal__left {
    width: 100%;
    min-width: 0;
  }

  .form {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .opportunity {
    background-position: 150% 120%;
  }

  .hero__button {
    text-align: center;
  }
}

#w-node-a9b000fa-3c17-dd5d-c844-8913a963c166-7fdb0d5a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}


