/* 

@font-face {
    font-family: "Hauora"; 
    src: url("../fonts/Hauora/otf/Hauora-Bold.otf"); 
    src: 
    url("../fonts/Hauora/web/Hauora-Bold.woff") format("woff"), 
    url("../fonts/Hauora/ttf/Hauora-Bold.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: 700; 
    }

    @font-face {
        font-family: "Hauora"; 
        src: url("../fonts/Hauora/otf/Hauora-Regular.otf"); 
        src: 
        url("../fonts/Hauora/web/Hauora-Regular.woff") format("woff"), 
        url("../fonts/Hauora/ttf/Hauora-Regular.ttf") format("truetype"); 
        font-style: normal; 
        font-weight: 600; 
        }


@font-face {
            font-family: "Hauora"; 
            src: url("../fonts/Hauora/otf/Hauora-SemiBold.otf"); 
            src: 
            url("../fonts/Hauora/web/Hauora-SemiBold.woff") format("woff"), 
            url("../fonts/Hauora/ttf/Hauora-SemiBold.ttf") format("truetype"); 
            font-style: normal; 
            font-weight: normal; 
}


*/

@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;600;700&display=swap");

:root {
  --main-color: #1f34a8;
}

* {
  margin: 0;
  padding: 0;

  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif !important; /* YOU CAN CHANGE */
  font-size: normal;
}

.container-local {
  width: 100%;
  max-width: 1440px; /* YOU CAN CHANGE */
}

a {
  text-decoration: none !important;
}

.text--main-color {
  color: var(--main-color);
}

.text--bold {
  font-weight: 700;
}

.text--uppercase {
  text-transform: uppercase;
}

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

  position: relative;

  width: 207px;
  height: 56px;

  font-weight: 700;
  font-size: 18px;
  line-height: 133%;

  text-align: center;

  background-color: var(--main-color);

  color: #ffffff;

  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 2px;
}

.button::after {
  display: flex;
  justify-content: center;
  align-items: center;

  content: "Получить доступ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);

  border-radius: 2px;

  transform: scaleX(1);
  transform-origin: top;

  z-index: 2;

  transition: transform 200ms ease-in;
}

.button:hover::after {
  transform: scaleX(1.05);

  z-index: 1;

  background: linear-gradient(
    225deg,
    #fff,
    var(--main-color) 8%,
    var(--main-color) 92%,
    #fff 100%
  );
}

.giant-bg {
  position: absolute;
  top: 0;

  width: 100%;
  height: 3500px;

  z-index: -1;
}

/* MENU-POPUP */

.menu-popup {
  display: none;
  flex-direction: column;

  position: fixed;
  top: 0;
  right: 20px;

  z-index: 101;

  height: 400px;
  width: 400px;

  background-color: #fff;

  -webkit-box-shadow: 0px 0px 10px 1px var(--main-color);
  -moz-box-shadow: 0px 0px 10px 1px var(--main-color);
  box-shadow: 0px 0px 10px 1px var(--main-color);
}

.menu-popup__upper {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  border-bottom: 1px solid var(--main-color);
}

.menu-popup__logo {
  margin-left: 16px;
}

.menu-popup__closer {
  margin-top: 16px;

  font-size: 32px;
  font-weight: 700;

  color: var(--main-color);

  cursor: pointer;

  margin-right: 16px;
}

.menu-popup__links {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.menu-popup__link {
  position: relative;

  margin-top: 40px;

  font-size: 24px;
  line-height: 27px;

  color: var(--main-color);

  font-weight: 700;
}

.menu-popup__link:hover {
  color: var(--main-color);
}

.menu-popup__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 100%;
  height: 2px;

  background: var(--main-color);

  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease-in-out;
}

.menu-popup__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* HEADER */

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

  position: fixed;

  height: 75px;

  background-color: var(--main-color);

  z-index: 9;

  width: 100%;
  top: 0;

  -webkit-box-shadow: 0px 1px 5px 0px rgba(221, 221, 221, 0.75);
  -moz-box-shadow: 0px 1px 5px 0px rgba(221, 221, 221, 0.75);
  box-shadow: 0px 1px 5px 0px rgba(221, 221, 221, 0.75);
}

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

.header__logo {
  width: 132px;
  height: 22px;

  filter: invert(100%);
}

.header__nav-link {
  position: relative;

  font-weight: 400;
  font-size: 19px;
  line-height: 24px;

  color: #fff;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 100%;
  height: 2px;

  background: #fff;

  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease-in-out;
}

.header__nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__nav-link:hover {
  color: #fff;
}

.header__nav-link:not(.header__nav-link-last) {
  margin-right: 20px;
}

.header__burger {
  display: none;
  flex-direction: column;
  margin-top: -4px;
  cursor: pointer;
}

.header__burger-line {
  width: 28px;

  margin-top: 4px;
  height: 4px;

  background-color: #fff;
}

/* MAIN */

.main {
  display: flex;
  justify-content: center;

  position: relative;

  margin-top: 150px;
}

.main__img {
  position: absolute;
  right: 173px;
  top: 0;

  width: 820px;

  height: auto;
}

.main__container {
  display: flex;
}

.main__title {
  margin-top: 125px;

  font-weight: 700;
  font-size: 43px;
  line-height: 55px;

  color: var(--main-color);

  max-width: 480px;
}

.main__subtitle {
  max-width: 450px;

  font-size: 22px;
  line-height: 28px;
}

.main__button {
  margin-top: 30px;
}

/* ADVANTAGES */

.advantages-holder {
}

.advantages {
  display: flex;
  justify-content: center;

  background-color: var(--main-color);

  margin-top: 400px;

  margin-right: 123px;
}

.advantages__container {
  display: flex;
  justify-content: space-between;
}

.advantages__left {
  display: flex;
  align-items: center;

  position: relative;
}

.advantages__img {
  position: absolute;

  left: 110px;

  max-width: 200px;
}

.advantages__right {
  margin-right: 76px;
}

.advantages__title {
  margin-top: 38px;

  font-weight: 500;
  font-size: 28px;
  line-height: 112%;

  color: #ffffff;
}

.advantages__text-list {
  margin-top: 34px;
  margin-bottom: 49px;
}

.advantages__text {
  font-weight: normal !important;
  font-size: 18px;
  line-height: 175%;

  color: #ffffff;
}

/* START */

.start {
  display: flex;
  justify-content: center;

  margin-top: 105px;
}

.start__container {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.start__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 112%;

  color: var(--main-color);
}

.start__blocks {
  display: flex;

  margin-top: 110px;

  width: 100%;

  background-color: #f3f3f3;
  border: 10px solid #d5d5d5;

  margin-bottom: 70px;
}

.start__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 24px;
  padding-top: 24px;

  width: 100%;
}

.start__block-left {
}

.start__block-number {
  font-weight: 800;
  font-size: 103px;
  line-height: 141px;

  color: var(--main-color);
}

.start__block-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 143%;

  color: var(--main-color);
}

.start__block-text {
  max-width: 224px;

  font-weight: 400;
  font-size: 18px;
  line-height: 136%;

  color: #212529;
}

.start__button {
}

/* FORM */

.daform {
  display: flex;
  align-items: center;
  flex-direction: column;

  background-color: var(--main-color);
}

.form__title {
  margin-top: 37px;

  margin-left: 16px;
  margin-right: 16px;

  font-weight: 700;
  font-size: 28px;
  line-height: 26px;

  text-align: center;

  color: #ffffff;
}

.form__lower {
  display: flex;
  align-items: center;

  margin-bottom: 20px;

  padding-left: 20px;
  padding-right: 20px;
}

.form__form-lower-text {
  color: #fff;
  font-size: 14px;

  margin-bottom: 0;
  padding-left: 12px;
}

.form__form-lower-text a {
  color: #fff;
  text-decoration: underline !important;
}

/* FEATURES */

.features {
  display: flex;
  justify-content: center;
}

.features__container {
  display: flex;
}

.features__left {
  display: flex;
  align-items: center;

  margin-right: 46px;
}

.features__right {
  padding-top: 125px;
}

.features__blocks {
  margin-bottom: 157px;
}

.features__block {
  display: flex;
}

.features__block:not(.features__block-first) {
  margin-top: 30px;
}

.features__block-line {
  margin-top: 10px;

  margin-right: 46px;

  background-color: var(--main-color);

  min-width: 62px;
  width: 62px !important;
  height: 10px;
}

.features__block-right {
}

.features__block-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;

  color: var(--main-color);
}

.features__block-text {
  margin-top: 8px;

  font-weight: 400;
  font-size: 14px;
  line-height: 150%;

  color: #4b5563;
}

/* FAQ */

.faq {
  display: flex;
  justify-content: center;

  padding-bottom: 20px;
  padding-top: 50px;

  background-color: var(--main-color);
}

.faq__container {
  display: flex;
}

.faq__col1 {
  position: relative;

  width: 40%;
}

.faq__img {
  width: 100%;
  height: auto;
}

.faq__col2 {
  width: 60%;
}

.faq__title {
  position: sticky;
  top: 100px;

  font-weight: 400;

  font-size: 50px;
  line-height: 132%;

  letter-spacing: 15px;

  text-transform: uppercase;

  color: #fff;
}

.faq__img {
  width: 100%;

  margin-top: 150px;
}

.faq__questions {
  margin-top: 40px;
}

.faq__question:hover {
  -webkit-box-shadow: 0px 0px 15px 0px #fff;
  -moz-box-shadow: 0px 0px 15px 0px #fff;
  box-shadow: 0px 0px 15px 0px #fff;
}

.faq__question {
  display: flex;
  flex-direction: column;

  width: 800px;

  padding-top: 15px;
  margin-bottom: 40px;

  background-color: var(--main-color);

  border-radius: 10px;

  cursor: pointer;
}

.faq__question-block {
  display: flex;
  justify-content: space-between;

  width: 100%;
}

.faq__question-text {
  margin-left: 40px;

  margin-right: 20px;

  font-weight: 700;
  font-size: 20px;
  line-height: 150%;

  color: #fff;
}

.faq__question-arrow {
  margin-right: 40px;

  width: 30px !important;
  height: 30px !important;
}

.faq__question-answer {
  display: none;

  margin-top: 10px;

  margin-left: 40px;
  margin-right: 40px;
  margin-bottom: 40px;

  color: #fff;
}

/* FOOTER */

.footer {
  display: flex;
  justify-content: center;

  margin-top: 83px;
}

.footer__container {
  display: flex;

  justify-content: space-between;
}

.footer__left {
  margin-right: 100px;
}

.footer__text-group {
  margin-top: 32px;

  max-width: 586px;
}

.footer__text:not(.footer__text-first) {
  margin-top: 17px;
}

.footer__text {
  font-size: 14px;
  line-height: 18px;
}

.footer__privacy {
  font-weight: 400;
  font-size: 13px;
  line-height: 135%;

  color: #151515;

  margin-top: 20px;
}

.footer__risks {
  font-weight: 400;
  font-size: 13px;
  line-height: 135%;

  color: #151515;

  margin-top: 21px;

  margin-bottom: 70px;
}

.footer__right {
}

.footer__form-block {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 488px;

  margin-bottom: 75px;

  background: var(--main-color);
}

.footer__form-title {
  max-width: 321px;

  margin-top: 41px;

  font-weight: 700;
  font-size: 28px;
  line-height: 26px;

  text-align: center;

  color: #ffffff;
}

.footer__form-lower {
  display: flex;
  align-items: center;
  padding-left: 20px;

  font-size: 14px;
}

.footer__form-lower-text {
  color: #fff;

  padding-left: 12px;
}

.footer__form-lower-text a {
  color: #fff;

  text-decoration: underline !important;
}

/* ADAPTIVE */

@media screen and (max-height: 900px) {
  .faq {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 1760px) {
  .main__img {
    top: 60px;
  }
}

@media screen and (max-width: 1580px) {
  .start__block-left {
    max-width: 700px;

    margin-right: 40px;
  }
}

@media screen and (max-width: 1530px) {
  .advantages__img {
    left: 0;

    width: 250px;
    height: auto;
  }
}

@media screen and (max-width: 1472px) {
  .container-local {
    padding-left: 16px;
    padding-right: 16px;
  }

  .main__img {
    width: 600px;
    height: auto;
  }
}

@media screen and (max-width: 1440px) {
  .start__button {
    margin-right: 134px;
  }

  .advantages__img {
    display: none;
  }
}

@media screen and (max-width: 1366px) {
  .faq__question {
    width: 600px;
  }

  .main__title {
    margin-top: 40px;
  }
}

@media screen and (max-width: 1280px) {
  .main__img {
    right: 0;
  }

  .main__title {
    font-size: 40px;
    line-height: 49px;
  }

  .main__img {
    top: 50px;

    width: 50%;
    height: auto;
  }

  .advantages__img {
    width: 200px;
  }

  .advantages__right {
    margin-right: 30px;
  }
}

.advantages__mobile-img {
  display: none;
  position: absolute;

  top: -283px;
  left: 0;
  z-index: -1;
}

.advantages {
  position: relative;
}

@media screen and (max-width: 1200px) {
  .start__block-left {
    margin-left: 16px;
  }

  .start__button {
    margin-right: 16px;
  }

  .faq__container {
    flex-direction: column;
    align-items: center;
  }

  .faq__col1,
  .faq__col2 {
    width: 100%;
  }

  .faq__img {
    display: none;
  }

  .faq__question-answer,
  .faq__question-text {
    margin-left: 12px;
  }

  .faq__question-arrow {
    margin-right: 12px;
  }

  .faq__title {
    text-align: center;
  }

  .faq__col1 {
    display: flex;
    justify-content: center;
  }

  .faq__img {
    width: 40%;
  }

  .faq__question {
    width: 100%;
  }

  .features__container {
    flex-direction: column;
    align-items: center;
  }

  .features__left {
    margin-top: 36px;
  }

  .features__img {
    max-width: 100%;
  }

  .features__right {
    padding-top: 48px;
  }
}

@media screen and (max-width: 1100px) {
  .start__block-left {
    margin-right: 24px;
  }

  .start__block-number {
    font-size: 70px;
    line-height: 96px;
  }
}

@media screen and (max-width: 991px) {
  .advantages {
    margin-top: 200px;
  }
  .faq__img {
    width: 80%;
  }

  .footer__text-group {
    margin-top: 32px;

    max-width: 586px;
  }

  .footer__text:not(.footer__text-first) {
    margin-top: 22px;
  }

  .footer__right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer__form-block {
    margin-bottom: 31px;
  }

  .footer__container {
    flex-direction: column-reverse;
  }

  .footer__text-group {
    max-width: 100%;
  }

  .footer__risks {
    margin-bottom: 30px;
  }

  .footer__left {
    margin-right: 0;
  }
}

@media screen and (max-width: 900px) {
  .main__title {
    margin-top: 70px;
  }

  .main__img {
    width: 45%;
  }

  .start__blocks {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .start__block-left {
    display: flex;
    align-items: center;
    flex-direction: column;

    margin-left: 12px;
    margin-right: 12px;
  }

  .start__block:last-child {
    padding-bottom: 71px;
  }

  .start__block-text {
    max-width: 500px;

    text-align: center;
    margin-bottom: 0;
  }

  .advantages {
    margin-right: 0px;
  }
}

@media screen and (max-width: 860px) {
  .start__block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .start__block-left {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }

  .start__block-number {
    margin-bottom: 6px;
  }

  .start__block-title {
    margin-bottom: 12px;
  }

  .start__block:last-child {
    padding-bottom: 71px;
  }

  .start__blocks {
    border-top: 10px solid #d5d5d5;
    border-bottom: 10px solid #d5d5d5;
  }

  .start__button {
    margin-top: 50px;
  }

  .start__block {
    border-top: none;
    padding-bottom: 0;
    padding-top: 20px;
  }
}

.main__img-mobile {
  display: none;
}

@media screen and (max-width: 800px) {
  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .main {
    margin-top: 111px;
  }

  .main__title {
    margin-top: 0;
  }

  .main__container {
    display: flex;
    flex-direction: column;
  }

  .main__button {
    margin-top: 28px;
  }

  .main__img {
    display: none;
  }

  .main__img-mobile {
    display: block;

    margin-top: 28px;
  }

  .advantages {
    margin-top: 83px;
    margin-right: 50px;
  }

  .start {
    margin-top: 49px;
  }

  .start__blocks {
    margin-top: 71px;
  }

  .advantages__left {
    display: none;
  }

  .advantages {
    position: relative;
  }

  .faq__question-text {
    font-size: 18px;
  }

  .features__block-line {
    min-width: 17px;
    width: 17px;
    max-width: 17px;

    margin-right: 12px;
  }

  .features__blocks {
    margin-bottom: 12px;
  }

  .features__block-right {
  }
}

@media screen and (max-width: 600px) {
}

@media screen and (max-width: 500px) {
  .advantages {
    margin-right: 0px;
  }
}

@media screen and (max-width: 430px) {
  .menu-popup {
    width: 100%;
    right: 0;
  }

  .advantages {
    margin-right: 0px;
  }
}
