@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap'); /* YOU CAN CHANGE */

/* */

:root {
  /*  --main-color: #1A3278; */
}

* {
  margin: 0;
  padding: 0;

  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Play', sans-serif; /* YOU CAN CHANGE */
  font-size: normal;
}

.container-local {
  width: 100%;
  max-width: 1440px; /* YOU CAN CHANGE */
}

a {
  text-decoration: none !important;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

.text--main-color {
  color: var(--main-color);
}

.text--bold {
  font-weight: 700;
}

.text--uppercase {
  text-transform: uppercase;
}

/* USE TEXT HIGHLIGHT WITH INLINE ELEMENTS */
.text--highlight {
  text-decoration: none;
  background: linear-gradient(
      0deg,
      rgb(205, 90, 90),
      rgb(205, 155, 90),
      rgb(205, 197, 90),
      rgb(94, 205, 90),
      rgb(90, 182, 205),
      rgb(90, 92, 205),
      rgb(149, 90, 205)
    )
    no-repeat right bottom / 0 var(--bg-h);
  transition: background-size 350ms;
  --bg-h: 100%;
}

.text--highlight:where(:hover, :focus-visible) {
  background-size: 100% var(--bg-h);
  background-position-x: left;
}

/* MENU-POPUP */

.menu-popup {
  display: none;
  flex-direction: column;

  position: fixed;
  top: 0;
  right: 20px;

  z-index: 9999;

  height: 450px;
  width: 400px;

  background: linear-gradient(0deg, #0f0c18, #0f0c18);
}

.menu-popup__upper {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
}

.menu-popup__logo {
  margin-left: 16px;
}

.menu-popup__closer {
  margin-top: 16px;

  font-size: 32px;
  font-weight: 700;

  color: #f9cf0d;

  cursor: pointer;

  margin-right: 16px;

  transition: 0.25s linear;
}

.menu-popup__closer:hover {
  color: #fafafa;
}

.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: #f9cf0d;

  font-weight: 700;
}

.menu-popup__link:hover {
  color: #f9cf0d;
}

.menu-popup__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 100%;
  height: 2px;

  background: #f9cf0d;

  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease-in-out;
}

.menu-popup__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* FORM-POPUP */

.form-popup {
  display: none;
  justify-content: center;

  overflow-y: scroll;

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-color: rgba(0, 0, 0, 0.5);

  z-index: 100;
}

.form-popup-bg {
  position: absolute;
  top: 0;
  bottom: 0;

  height: fit-content;
  width: 100%;

  cursor: pointer;
}

.form-container {
  display: flex;
  flex-direction: column;
}
.form-popup-block {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  padding: 12px;
  background-color: #fff;

  width: 480px;
  height: fit-content;

  -webkit-box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 1);

  border-radius: 20px;
}

.form-popup-block-upper {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-bottom: -30px;
}

.form-popup-closer {
  cursor: pointer;
  font-weight: 700;
  font-size: 26px;
  position: relative;
  bottom: 5px;
  right: 5px;
}

/* HEADER */

.header {
  display: flex;
  justify-content: center;

  position: fixed;

  background: rgba(0, 0, 0, 0.5);

  width: 100%;

  padding-top: 10px;
  padding-bottom: 25px;

  z-index: 1;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  padding-top: 0px;
}

.header__nav {
  display: flex;
  align-items: center;

  margin-top: 20px;
}

.header__nav-link {
  position: relative;

  margin-right: 30px;

  color: #fafafa;
}

.header__nav-link:hover {
  color: #f9cf0d;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 100%;
  height: 2px;

  background: #f9cf0d;

  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease-in-out;
}

.header__nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* MAIN */

.main {
  display: flex;
  justify-content: center;

  width: 100%;
  height: 794px;

  color: #fafafa;

  background-image: url('../images/main.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.main__container {
}

.text--typed-outer {
  position: relative;

  font-size: 50px;
  line-height: 58px;

  max-width: 870px;

  padding-top: 345px;
}

.main__title {
  font-style: normal;
  font-weight: 400;
}

.main__title--yellow {
  font-weight: 700;
  color: #f9cf0d;
}

.main__subtitle {
  padding-top: 28px;
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
}

.main__text {
  padding-top: 11px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

.main__button {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  max-width: 238px;
  height: 46px;

  margin-top: 43px;

  background: #f9cf0d;
  border-radius: 20px;

  cursor: pointer;

  font-weight: 400;
  font-size: 16px;
  line-height: 16px;

  text-transform: uppercase;

  color: #242020;

  transition: 0.25s linear;
}

.main__button:hover {
  color: #f9cf0d;
  background: #242020;
}

/* ADVANTAGES */

.advantages {
  display: flex;
  justify-content: center;

  position: relative;

  background: linear-gradient(90deg, #09080e 0%, #1f0e1e 50%, #181327 100%);
}

.advantages__container {
  display: flex;
  justify-content: space-between;

  padding-top: 156px;
  padding-bottom: 271px;
}

.advantages__card {
  display: flex;
  align-items: center;
  justify-content: end;

  position: relative;

  width: 100%;
  max-width: 369px;
  height: 131px;

  border: 1px solid #ffffff;
}

.advantages__card-decor {
  position: absolute;
}

.advantages__card-decor1 {
  left: -27px;

  width: 74px;
  height: 87px;

  background: linear-gradient(
    90.09deg,
    #6bad4d 0.08%,
    rgba(217, 217, 217, 0) 98.48%
  );
  transform: rotate(-12.68deg);
}

.advantages__card-decor2 {
  left: -22px;

  width: 75px;
  height: 87px;

  background: linear-gradient(270deg, #bd3abf 0%, rgba(217, 217, 217, 0) 100%);
}

.advantages__card-decor3 {
  left: -13px;

  width: 92px;
  height: 101px;

  background: linear-gradient(
    90.09deg,
    #6bad4d 0.08%,
    rgba(217, 217, 217, 0) 98.48%
  );
}

.advantages__card-text-group {
  padding-right: 32px;
  max-width: 243px;
}

.advantages__card-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;

  color: #dcdcee;
}

.advantages__card-title {
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;

  color: #f9cf0d;
  max-width: 243px;
}

.advantages__lines {
  position: absolute;
  bottom: 33px;

  width: 100%;
}

.advantages__line {
  width: 100%;
  height: 1px;

  background-color: #fff;
}

.advantages__line1 {
  margin-bottom: 1px;
}

/* ABOUT */

.about {
  display: flex;
  justify-content: center;
}

.about__container {
  display: flex;
  align-items: center;

  width: 100%;

  padding-top: 69px;
  padding-bottom: 87px;
}

.about__right {
  max-width: 470px;

  margin-left: 153px;
}

.about__upper-block {
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 400;
  font-size: 14px;
  line-height: 14px;

  color: #242020;

  width: 66px;
  height: 28px;

  background: #f9cf0d;

  border: 1px solid #242020;
  border-radius: 5px;
}

.about__title {
  margin-top: 11px;

  font-weight: 400;
  font-size: 48px;
  line-height: 48px;

  color: #242020;
}

.about__text {
}

.about__text--decor {
  position: relative;

  color: #f9cf0d;

  cursor: pointer;
}

.about__text--decor::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 100%;
  height: 2px;

  background: #f9cf0d;

  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease-in-out;
}

.about__text--decor:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.about__text1 {
  margin-top: 27px;
}

.about__text2 {
  margin-top: 46px;
}

.about__text--link {
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;

  background: linear-gradient(0deg, #f9cf0d, #f9cf0d) no-repeat right bottom / 0
    var(--bg-h);
  transition: background-size 350ms;
  --bg-h: 100%;
}

.about__text--link:where(:hover, :focus-visible) {
  background-size: 100% var(--bg-h);
  background-position-x: left;
}

.about__button {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-top: 80px;

  width: 100%;
  max-width: 287px;
  height: 46px;

  background: #f9cf0d;
  border-radius: 20px;

  cursor: pointer;

  transition: 0.25s linear;

  font-weight: 400;
  font-size: 16px;
  line-height: 16px;

  text-transform: uppercase;

  color: #242020;
}

.about__button:hover {
  color: #f9cf0d;
  background: #242020;
}

/* QUESTIONS */

.questions {
  display: flex;
  justify-content: center;

  padding-top: 80px;
  padding-bottom: 143px;

  background-image: url('../images/questions-bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

  color: #dcdcee;
}

.questions__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;
}

.questions__subtitle {
  font-weight: 400;
  font-size: 22px;
  line-height: 48px;
}

.questions__cards {
  display: flex;
  width: 100%;
  justify-content: space-between;

  margin-top: 123px;
}

.questions__card {
  position: relative;

  padding-top: 109px;
  padding-left: 28px;
  padding-right: 28px;

  width: 100%;
  max-width: 387px;
  height: 387px;

  border: 2px solid #ffffff;
}

.questions__card1 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../images/questions-card1.png');
}

.questions__card2 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../images/questions-card2.png');
}

.questions__card3 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../images/questions-card3.png');
}

.questions__card-decor-holder {
  top: -40px;
  left: 0;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
}

.questions__card-decor-holder2 {
  top: -50px;
}

.questions__card-decor-holder3 {
  top: -30px;
}

.questions__card-decor {
}

.questions__card-decor-bg1 {
  width: 97.75px;
  height: 114.93px;

  background: linear-gradient(270deg, #bd3abf 0%, rgba(217, 217, 217, 0) 100%);
  transform: rotate(-12.68deg);
}

.questions__card-decor-bg2 {
  width: 99px;
  height: 115px;

  background: linear-gradient(
    90.09deg,
    #6bad4d 0.08%,
    rgba(217, 217, 217, 0) 98.48%
  );
}

.questions__card-decor-bg3 {
  width: 126px;
  height: 146px;

  background: linear-gradient(270deg, #bd3abf 0%, rgba(217, 217, 217, 0) 100%);
}

.questions__card-decor-bg {
  position: absolute;
  z-index: 1;
}

.questions__card-decor-img {
  z-index: 2;
}

.questions__card-bg {
  display: none;

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.questions__card-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;

  position: relative;

  z-index: 2;
}

.questions__card-text {
  position: relative;

  font-weight: 400;
  font-size: 16px;
  line-height: 24px;

  z-index: 2;
}

/* PROVE */

.prove {
  display: flex;
  justify-content: center;

  padding-top: 48px;
  padding-bottom: 48px;
}

.prove__group {
  display: flex;
  align-items: center;
}

.prove__title {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;

  color: #242020;
}

.prove__button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 238px;
  height: 46px;

  margin-left: 31px;

  background: #f9cf0d;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 30px;

  cursor: pointer;

  font-weight: 400;
  font-size: 16px;
  line-height: 16px;

  text-transform: uppercase;

  color: #242020;

  transition: 0.25s linear;
}

.prove__button:hover {
  color: #f9cf0d;
  background: #242020;
}

/* STRATEGIES */

.strategies {
  display: flex;
  justify-content: center;

  padding-top: 60px;
  padding-bottom: 167px;

  background-image: url('../images/strategies-bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.strategies__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;

  color: #f9cf0d;
}

.strategies__text {
  margin-top: 16px;

  font-weight: 400;
  font-size: 22px;
  line-height: 25px;

  width: 100%;
  max-width: 589px;

  color: #242020;
}

.strategies__cards {
  display: flex;
  justify-content: space-between;

  margin-top: 65px;
}

.strategies__card {
  display: flex;
  align-items: center;
  flex-direction: column;

  position: relative;

  width: 387px;
  height: 522px;

  border: 2px solid #ffffff;
}

.strategies__card1 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../images/strategies-card1.png');
}

.strategies__card2 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../images/strategies-card2.png');

  position: relative;
}

.strategies__card-recomend-holder {
  display: flex;
  justify-content: center;
  position: absolute;

  top: 15px;

  width: 100%;
}

.strategies__card-recomend {
  padding: 3px 5px 7px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;

  letter-spacing: 0.24px;

  color: #000000;
  background: #f9cf0d;
  border-radius: 5px;
}

.strategies__card3 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../images/strategies-card3.png');
}

.strategies__card-title-block {
  display: flex;
  align-items: center;
  justify-content: center;

  max-width: 335px;

  width: 100%;

  margin-top: 53px;

  height: 47px;

  background: #dcdcee;
  border-radius: 30px;
}

.strategies__card-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;

  letter-spacing: 0.24px;

  color: #242020;
}

.strategies__card-whofor-block {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 19px;

  width: 100%;
  max-width: 305px;
  height: 46px;

  background: linear-gradient(270deg, #bd3abf 0%, rgba(217, 217, 217, 0) 100%);
}

.strategies__card-whofor-block2 {
  background: #fe195f;
  border-radius: 5px;
}

.strategies__card-whofor-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;

  text-align: center;
  letter-spacing: 0.24px;

  color: #f9cf0d;
}

.strategies__card-whofor-title2 {
  color: #fafafa;
}

.strategies__card-line {
  width: 100%;
  max-width: 305px;
  height: 6px;

  background: #dcdcee;
  border-radius: 5px;

  margin-top: 15px;
}

.strategies__card-line-filled {
  width: 100%;
  max-width: 20%;
  height: 6px;

  background: linear-gradient(
    90deg,
    #fe195f 2.78%,
    rgba(220, 220, 238, 0) 140.74%
  );
  border-radius: 5px;
}

.strategies__card-line-filled2 {
  max-width: 60%;
}

.strategies__card-line-filled3 {
  max-width: 100%;
}

.strategies__card-text-group {
  margin-top: 12px;
}

.strategies__card-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  /* or 100% */

  letter-spacing: 0.24px;

  color: #fafafa;

  margin-top: 20px;
}

.strategies__card-button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 335px;
  height: 47px;

  position: absolute;

  background: #f9cf0d;
  border-radius: 30px;

  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  /* identical to box height, or 100% */

  letter-spacing: 0.24px;

  color: #242020;

  bottom: 48px;

  transition: 0.25s linear;

  cursor: pointer;
}

.strategies__card-button:hover {
  background: #242020;
  color: #f9cf0d;
  border-radius: 30px;
}

/* CONNECT */

.connect {
  display: flex;
  justify-content: center;

  padding-top: 90px;
  padding-bottom: 90px;
}

.connect__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;
  /* identical to box height, or 100% */

  color: #000000;
}

.connect__lines {
  margin-top: 14px;

  width: 100%;
}

.connect__cards {
  width: 100%;

  margin-top: 54px;
}

.connect__cards-row {
  display: flex;
  justify-content: space-between;

  width: 100%;
}

.connect__card {
  max-width: 387px;
  width: 100%;
  height: 400px;

  position: relative;
}

.connect__card1 .connect__card-title {
  padding-top: 136px;

  font-weight: 400;
  font-size: 24px;
  line-height: 24px;

  color: #f9cf0d;
}

.connect__card .connect__card-text-group {
  padding-left: 21px;
  padding-right: 35px;
}

.connect__card1 .connect__card-text {
  padding-top: 20px;

  font-weight: 400;
  font-size: 16px;
  line-height: 120%;

  color: #fafafa;
}

.connect__card1,
.connect__card3,
.connect__card5 {
}

.connect__card1 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../images/connect-bg1.png');
}

.connect__card3 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../images/connect-bg3.png');
}

.connect__card5 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../images/connect-bg5.png');
}

.connect__card-decor {
  position: absolute;

  bottom: 9px;
  right: 14px;
}

.connect__card-img {
  width: 100%;
}

.connect__card2,
.connect__card4,
.connect__card6 {
  border: 1px solid #242020;
}

.connect__card2 .connect__card-title {
  margin-top: 32px;

  font-weight: 400;
  font-size: 24px;
  line-height: 28px;

  color: #000000;
}

.connect__card-text {
  margin-top: 20px;

  font-weight: 400;
  font-size: 16px;
  line-height: 120%;

  color: #242020;
}

.connect__card2 .connect__card-text-group {
  padding-left: 21px;
  padding-right: 35px;
}

.connect__card-decor2 {
  position: absolute;
  top: 47px;
  right: 16px;
}

.connect__card3 {
}

.connect__card3 .connect__card-title {
  padding-top: 136px;

  font-weight: 400;
  font-size: 24px;
  line-height: 24px;

  color: #f9cf0d;
}

.connect__card3 .connect__card-text {
  padding-top: 20px;

  font-weight: 400;
  font-size: 16px;
  line-height: 120%;

  color: #fafafa;
}

.connect__card-decor3 {
  position: absolute;
  bottom: 19px;
  right: 31px;
}

.connect__cards-row2 {
  margin-top: 14px;
}

.connect__card4 {
}

.connect__card4 .connect__card-title {
  margin-top: 20px;
}

.connect__card4 .connect__card-text {
  margin-top: 20px;
}

.connect__card-decor4 {
  position: absolute;
  left: 125px;
  bottom: 23px;
}

.connect__card5 .connect__card-title {
  padding-top: 131px;

  font-weight: 400;
  font-size: 24px;
  line-height: 24px;

  color: #f9cf0d;
}

.connect__card5 .connect__card-text {
  margin-top: 20px;

  font-weight: 400;
  font-size: 16px;
  line-height: 120%;

  color: #fafafa;
}

.connect__card-decor5 {
  position: absolute;
  top: 19px;
  right: 37px;
}

.connect__card6 .connect__card-title {
  margin-top: 20px;
}

.connect__card6 .connect__card-text {
  margin-top: 20px;
}

.connect__card-decor6 {
  position: absolute;
  bottom: 23px;
  right: 34px;
}

/* PLUS */

.plus {
  display: flex;
  justify-content: center;

  padding-top: 42px;
  padding-bottom: 45px;

  background-image: url('../images/questions-bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.plus__title {
  text-align: center;
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;

  color: #f9cf0d;
}

.plus__banner-holder {
  display: flex;
  justify-content: center;
  width: 100%;
}

.plus__banner {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-top: 29px;

  padding-left: 12px;
  padding-right: 12px;

  font-weight: 400;
  font-size: 18px;
  line-height: 18px;

  letter-spacing: 0.24px;

  color: #000000;

  text-align: center;

  max-width: 536px;
  width: 100%;
  height: 48px;

  background: #e4e4e4;
  border-radius: 5px;
}

.plus__cards {
  display: flex;
  justify-content: space-between;

  width: 100%;

  margin-top: 40px;
}

.plus__card {
  background: #ffffff;
  border-radius: 0px;

  max-width: 350px;
  width: 100%;
}

.plus__card-upper {
  padding: 12px 15px 30px;
}

.plus__card-row1 {
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;

  letter-spacing: 0.24px;

  color: #000000;
}

.plus__card-row1 span {
  font-size: 20px;
  line-height: 20px;

  letter-spacing: 0.24px;

  color: #000000;
}

.plus__card-row2 {
  margin-top: 6px;

  font-weight: 400;
  font-size: 16px;
  line-height: 16px;

  letter-spacing: 0.24px;

  color: #242020;
}

.plus__card-row3 {
  margin-top: 25px;

  font-weight: 400;
  font-size: 16px;
  line-height: 16px;

  letter-spacing: 0.24px;

  color: #000000;
}

.plus__card-row3 span {
  color: #fe195f;
}

.plus__card-row4 {
  margin-top: 6px;

  font-weight: 400;
  font-size: 14px;
  line-height: 14px;

  letter-spacing: 0.24px;

  color: #242020;
}

.plus__card-row5 {
  margin-top: 24px;

  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.24px;

  color: #fe195f;
}

.plus__card-button {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-top: 27px;

  width: 100%;
  height: 40px;
  left: 166px;
  top: 5751px;

  background: #5c17fa;
  border-radius: 5px;

  font-weight: 400;
  font-size: 16px;
  line-height: 16px;

  letter-spacing: 0.24px;

  color: #ffffff;

  cursor: pointer;

  transition: 0.25s linear;
}

.plus__card-button:hover {
  background: #f9cf0d;
  color: #000000;
}

.plus__card-low {
  background: linear-gradient(90.76deg, #6bad4d -1.57%, #bd3abf 99.35%);

  padding: 23px 20px 25px;

  position: relative;
}

.plus__card-low-bg {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
}

.plus__card-low-row1 {
  position: relative;
  font-weight: 400;
  font-size: 23px;
  line-height: 24px;
  /* identical to box height, or 104% */

  letter-spacing: 0.24px;

  color: #000000;
  z-index: 2;
}

.plus__card-low-row2,
.plus__card-low-row3,
.plus__card-low-row4,
.plus__card-low-row5,
.plus__card-low-row6 {
  position: relative;

  margin-top: 15px;
  margin-left: 15px;

  font-weight: 400;
  font-size: 15px;
  line-height: 16px;

  letter-spacing: 0.24px;

  color: #fafafa;
  z-index: 2;
}

.plus__card-low-row2 {
  margin-top: 25px;
}

.plus__card-low-button {
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;

  width: 100%;

  margin-top: 22px;

  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  /* identical to box height, or 100% */

  letter-spacing: 0.24px;

  color: #000000;

  height: 40px;

  background: #fafafa;
  border-radius: 5px;

  transition: 0.25s linear;

  cursor: pointer;

  z-index: 2;
}

.plus__card-low-button:hover {
  background: #f9cf0d;
  color: #000000;
}

.plus__lower {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

  margin-top: 33px;
}

.plus__lower-text-group {
  display: flex;
  align-items: center;
}

.plus__lower-text-decor {
  width: 33px;
  height: 33px;

  background: #f9cf0d;
}

.plus__lower-text-decor1 {
  width: 29px;
  height: 29px;
}

.plus__lower-text-decor2 {
  width: 16px;
  height: 26px;
}

.plus__lower-text-decor3 {
  width: 24px;
  height: 35px;
}

.plus__lower-text-decor4 {
  width: 33px;
  height: 33px;
}

.plus__lower-text-decor5 {
  width: 33px;
  height: 33px;
}

.plus__lower-text-decor6 {
  width: 32px;
  height: 29px;
}

.plus__lower-text-decor7 {
  width: 34px;
  height: 32px;
}

.plus__lower-text {
  margin-left: 12px;

  font-size: 20px;
  line-height: 20px;

  letter-spacing: 0.24px;
  text-transform: uppercase;

  color: #dcdcee;
}

.plus__button-holder {
  display: flex;
  justify-content: center;

  margin-top: 50px;

  width: 100%;
}

.plus__button {
  display: flex;
  align-items: center;
  justify-content: center;

  max-width: 327px;
  width: 100%;
  height: 40px;

  background: #f9cf0d;
  border-radius: 20px;

  font-weight: 400;
  font-size: 16px;
  line-height: 16px;

  letter-spacing: 0.24px;

  color: #000000;

  cursor: pointer;
  transition: 0.25s linear;
}

.plus__button:hover {
  background: #000000;
  color: #f9cf0d;
}

.plus__button-text-holder {
  margin-top: 9px;
}

.plus__button-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;

  text-align: center;
  letter-spacing: 0.24px;

  color: #8d8da1;
}

/* STEPS */

.steps {
  display: flex;
  justify-content: center;

  background: #dcdcee;

  margin-top: 136px;
}

.steps__title {
  margin-top: 50px;

  font-weight: 400;
  font-size: 48px;
  line-height: 48px;

  text-align: center;
  letter-spacing: 0.24px;

  color: #000000;
}

.steps__subtitle {
  margin-top: 16px;

  font-weight: 400;
  font-size: 30px;
  line-height: 30px;

  text-align: center;
  letter-spacing: 0.24px;

  color: #fe195f;
}

.steps__cards {
  margin-top: 48px;
  margin-bottom: 62px;

  display: flex;
  justify-content: space-between;

  width: 100%;
}

.steps__card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 122px;
}

.steps__card-number {
  font-weight: 400;
  font-size: 72px;
  line-height: 72px;

  letter-spacing: 0.24px;

  color: #4d4c5f;
}

.steps__card-text {
  margin-left: 10px;

  font-weight: 400;
  font-size: 18px;
  line-height: 24px;

  letter-spacing: 0.24px;
  text-transform: uppercase;

  color: #000000;
}

.steps__card2 {
  background: linear-gradient(90.76deg, #6bad4d -1.57%, #bd3abf 99.35%);
  border-radius: 0px;

  max-width: 329px;
  width: 100%;

  position: relative;
}

.steps__card-bg {
  position: absolute;
  z-index: 1;
}

.steps__card2 .steps__card-number {
  position: relative;

  color: #f9cf0d;

  z-index: 2;
}

.steps__card2 .steps__card-text {
  position: relative;

  color: #fafafa;

  z-index: 2;
}

/* FAQ */

.faq {
  display: flex;
  justify-content: center;

  background-image: url('../images/questions-bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.faq__title {
  margin-top: 113px;

  font-weight: 400;
  font-size: 48px;
  line-height: 48px;

  color: #dcdcee;
}

.faq__cards {
  margin-top: 54px;

  margin-bottom: 127px;
}

.faq__cards-row {
  display: flex;
  justify-content: space-between;

  width: 100%;
}

.faq__card {
  display: flex;
  align-items: center;
  flex-direction: column;

  width: 100%;
  max-width: 387px;
  height: fit-content;

  min-height: 150px;

  background: rgba(37, 37, 52, 0.6);
}

.faq__card-title {
  font-weight: 400;
  font-size: 22px;
  line-height: 24px;

  text-align: center;

  color: #f9cf0d;

  margin-top: 18px;
}

.faq__card-button {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-top: 17px;
  margin-bottom: 15px;

  width: 50px;
  height: 50px;

  background: #dcdcee;

  border-radius: 50px;

  cursor: pointer;

  transition: 0.25s linear;
}

.faq__card-button:hover {
  background: #f9cf0d;
}

.faq__card-button-symbol {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__card-button-symbol-line {
  position: absolute;

  background: #242020;
  width: 4px;
  height: 22px;
}

.faq__card-button-symbol-line2 {
  transform: rotate(90deg);
}

.faq__card-text {
  display: none;

  font-weight: 400;
  font-size: 18px;
  line-height: 21px;

  color: #fafafa;

  margin-top: 37px;

  padding-left: 29px;
  padding-right: 25px;
  margin-bottom: 51px;
}

.faq__cards-row2 {
  margin-top: 19px;
}

/* FOOTER */

.footer {
  display: flex;
  justify-content: center;

  background: linear-gradient(0deg, #0f0c18, #0f0c18);
}

.footer__logo {
  margin-top: 72px;
}

.footer__low {
  margin-top: 50px;
}

.footer__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;

  letter-spacing: 0.24px;

  color: #fafafa;
}

.footer__text:hover {
  color: #f9cf0d;
}

.footer__text2,
.footer__text3 {
  margin-left: 40px;
}

.footer__year {
  margin-top: 39px;

  margin-bottom: 72px;

  font-weight: 400;
  font-size: 15px;
  line-height: 16px;

  letter-spacing: 0.24px;

  color: #fafafa;
}

/* ADAPTIVE */

@media screen and (max-width: 1500px) {
  .container-local {
    padding-left: 16px;
    padding-right: 16px;
  }

  .advantages__container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width: 1440px) {
  .about__container {
    padding-right: 16px;
  }
}

@media screen and (max-width: 1366px) {
  .about__img {
    width: 100%;
    max-width: 600px;
    height: auto;
  }

  .about__right {
    margin-left: 80px;
  }
}

@media screen and (max-width: 1200px) {
  .container-local {
    padding-left: 16px;
    padding-right: 16px;
  }

  .text--typed-outer {
    font-size: 38px;
    line-height: 44px;
  }

  .advantages__container {
    flex-direction: column;
    align-items: center;

    padding-left: 0px;
    padding-right: 0px;

    padding-top: 90px;
    padding-bottom: 90px;
  }

  .advantages__card {
    max-width: 550px;
  }

  .advantages__card2,
  .advantages__card3 {
    margin-top: 20px;
  }

  .advantages__card1 .advantages__card-title,
  .advantages__card3 .advantages__card-title {
    margin-right: 30px;
  }

  .advantages__card-text-group {
    margin-right: 30px;
  }

  .advantages__lines {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about__title {
    font-size: 46px;
  }

  .about__img {
    max-width: 450px;
  }

  .questions__title {
    font-size: 40px;
    line-height: 38px;
  }

  .strategies__title {
    font-size: 40px;
  }

  .connect__title {
    font-size: 28px;
    line-height: 36px;
  }

  .steps__title {
    font-size: 40px;
    line-height: 48px;
  }

  .faq__title {
    font-size: 40px;
    line-height: 48px;

    text-align: center;

    margin-top: 40px;
  }

  .faq__cards-row {
    align-items: center;
    flex-direction: column;
  }

  .faq__card {
    margin-top: 17px;

    max-width: 750px;
  }

  .faq__card-title-break {
    display: none;
  }

  .faq__card-text {
    margin-top: 25px;
  }

  .faq__cards-row2 {
    margin-top: 0;
  }
}

.questions__carousel-holder {
  display: none;
  width: 100%;

  margin-top: 0px;
}

.strategies__carousel-holder {
  display: none;

  width: 100%;

  justify-content: center;

  margin-top: 31px;
}

.connect__carousel1-holder {
  display: none;
  justify-content: center;
  width: 100%;
}

.connect__carousel2-holder {
  display: none;
  justify-content: center;
  width: 100%;
}

.plus__carousel-holder {
  display: none;

  width: 100%;

  justify-content: center;

  margin-top: 46px;
}

@media screen and (max-width: 1198px) {
  .questions__cards,
  .strategies__cards,
  .connect__cards-row1,
  .connect__cards-row2 {
    display: none;
  }

  .questions__carousel-holder {
    display: block;
  }

  .questions__carousel .item {
    display: flex;
    justify-content: center;
  }

  .owl-dot span {
    background: #f9cf0d !important;
  }

  .owl-dot.active span {
    background: #fe195f !important;
  }

  .questions__card-decor-img1 {
    width: 63px !important;
    height: 62px !important;
  }

  .questions__card-decor-img2 {
    width: 62px !important;
    height: 63px !important;
  }

  .questions__card-decor-img3 {
    width: 62px !important;
    height: 62px !important;
  }

  .questions__card-outer {
    display: flex;
    height: 500px;
    align-items: end;
  }

  .strategies__cards {
    display: none;
  }

  .strategies__carousel-holder {
    display: flex;
  }

  .strategies__carousel .item {
    display: flex;
    justify-content: center;
  }

  .questions {
    padding-top: 35px;
    padding-bottom: 47px;
  }

  .strategies {
    padding-top: 16px;
    padding-bottom: 61px;
  }

  .connect__carousel1 .item {
    display: flex;
    justify-content: center;
  }

  .connect__carousel2 .item {
    display: flex;
    justify-content: center;
  }

  .connect__carousel1-holder {
    display: flex;
  }

  .connect__carousel2-holder {
    display: flex;

    margin-top: 16px;
  }

  .connect {
    padding-top: 41px;
    padding-bottom: 44px;
  }

  .connect__card-decor {
    width: 106px !important;
    height: auto !important;
  }

  .connect__card-decor2 {
    width: 101px !important;
    height: auto !important;
  }

  .connect__card-decor3 {
    width: 141px !important;
    height: auto !important;
  }

  .connect__card-decor4 {
    width: 136px !important;
    height: auto !important;
  }

  .connect__card-decor5 {
    width: 156px !important;
    height: auto !important;
  }

  .connect__card-decor6 {
    width: 170px !important;
    height: auto !important;
  }

  .connect__card1 .connect__card-title,
  .connect__card3 .connect__card-title {
    padding-top: 70px;
  }

  .plus {
    padding-top: 38px;
    padding-bottom: 50px;
  }

  .plus__cards {
    display: none;
  }

  .plus__carousel-holder {
    display: flex;
  }

  .plus__carousel .item {
    display: flex;
    justify-content: center;
  }

  .steps {
    margin-top: 32px;
  }
}

@media screen and (max-width: 1100px) {
  .plus__cards {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .main {
    background-position: 60% center;
  }

  .steps__cards {
    flex-direction: column;
    align-items: center;
  }

  .steps__title {
    margin-top: 13px;
  }

  .steps__cards {
    margin-top: 36px;
    margin-bottom: 48px;
  }
}

@media screen and (max-height: 768px) {
  .text--typed-outer {
    padding-top: 230px;
  }
}

@media screen and (max-width: 991px) {
  .text--typed-outer {
    padding-top: 206px;
  }

  .about__container {
    flex-direction: column;
    width: 100%;

    padding-top: 20px;
    padding-left: 16px;
    padding-bottom: 50px;
  }

  .about__img {
    max-width: 600px;
  }

  .about__right {
    margin-left: 0;
    max-width: 100%;
    margin-top: 24px;
  }

  .about__text1 {
  }

  .about__text2 {
    margin-top: 17px;
  }

  .about__button {
    margin-top: 34px;
  }
}

.header__burger {
  display: none;

  flex-direction: column;

  margin-top: 20px;

  width: 30px;

  cursor: pointer;
}

.header__burger:hover .header__burger-line {
  background-color: #f9cf0d;
}

.header__burger-line {
  width: 100%;
  height: 3px;

  background-color: #fafafa;
  transition: 0.25s linear;
}

.header__burger-line2 {
  margin-top: 5px;
}

.header__burger-line3 {
  margin-top: 5px;
}

@media screen and (max-width: 850px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    display: none;
  }

  .plus__lower {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .main__title {
    font-size: 38px;
    line-height: 44px;
  }

  .main__button-holder {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .main__button {
    margin-top: 90px;
  }

  .footer__logo {
    margin-top: 33px;
  }

  .footer__low {
    display: flex;
    flex-direction: column;

    margin-top: 76px;
  }

  .footer__text2,
  .footer__text3 {
    margin-left: 0px;
    margin-top: 19px;
  }

  .footer__year {
    margin-bottom: 45px;
  }
}

@media screen and (max-width: 650px) {
  .advantages__container {
    padding-top: 0;
  }

  .advantages__card1 {
    margin-top: -25px;
  }

  .advantages__card {
    max-width: 320px;
  }

  .advantages__card1 .advantages__card-title,
  .advantages__card3 .advantages__card-title {
    margin-right: 0px;
  }

  .advantages__card-text-group {
    margin-right: 0px;
  }

  .advantages__card-decor1 {
    left: -20px;
  }

  .advantages__card-decor2 {
  }

  .advantages__card-decor3 {
    left: -16px;
  }

  .advantages__card-title {
    font-size: 24px;
    line-height: 26px;

    max-width: 200px;
  }

  .advantages__card-text-group {
    max-width: 200px;
  }

  .advantages__card-text-group .advantages__card-title {
  }

  .advantages__card-text {
    font-size: 14px;
    line-height: 14px;
  }

  .faq__title {
    text-align: left;

    margin-top: 21px;
  }

  .faq__cards {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .faq__card-text {
  }
}

@media screen and (max-width: 600px) {
  .main {
    background-position: 68% center;
  }

  .prove {
    padding-top: 58px;
    padding-bottom: 69px;
  }

  .prove__group {
    flex-direction: column;
  }

  .prove__button {
    margin-left: 0;
    margin-top: 31px;
  }

  .form-popup-block {
    width: 95%;
  }
}

@media screen and (max-width: 430px) {
  .menu-popup {
    width: 100%;
    right: 0;
  }

  .text--typed-outer {
    padding-top: 175px;
  }

  .questions__subtitle {
    line-height: 28px;
  }
}

@media screen and (max-width: 375px) {
  .questions__card {
    padding-top: 80px;
  }

  .strategies__card-button {
    max-width: 320px;
  }

  .strategies__card-title-block {
    max-width: 320px;
  }
}

.footer {
  background-color: #00000e;
  color: #f9f9f9;
  text-align: center;

  padding: 40px 25px;
  font-family: 'Arial', Arial, sans-serif;
}

.footer__links {
  margin-bottom: 10px;
}

.footer__links br {
  display: none;
}

.footer a {
  color: #b1b1b1;
  text-decoration: none;
}

.footer a:hover {
  color: #f9cf0d;
  text-decoration: underline;
}

@media (max-width: 767px) {
  footer {
    position: static;
    font-size: 14px;
  }

  .footer__links {
    padding: 0;
  }

  .footer__links span {
    display: none;
  }

  .footer__links br {
    display: block;
  }
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.form-group {
  margin-bottom: 15px;
  width: 100%;
}

.form-group input {
  width: 100%;
}

input[type='text'],
input[type='email'],
input[type='tel'] {
  width: 100%;
  font-size: 16px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background: #eaeaea;
  box-sizing: border-box;

  margin-top: 10px;
}

.checkbox-group {
  margin: 10px 0;
}
.checkbox {
  display: flex;
  gap: 5px;
  align-items: flex-start;
}

.checkbox input {
  margin-top: 7px;
}

.main__button.main__button-subm {
  width: 100% !important;
}

.main__button-subm {
  width: 100%;
  padding: 15px;
  border-radius: 20px;
  background: #f9cf0d;
  border: none;
  text-transform: uppercase;
}

.main__button-subm:hover {
  background: #242020;
  color: #f9cf0d;
}
