/***************GLOBAL***************/

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #252A34;
  background-color: #EAEAEA;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  position: relative;
}

.protect {
  width: 100%;
  position: absolute;
  top: 3px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.protect__item {
  font-size: 8px;
  line-height: 10px;
  color: #000;
  opacity: 0.3;
}

.protect__item a {
  color: #000;
  text-decoration: none;
}

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

.italic-text {
  font-style: italic!important;
}

.nowrap-text {
  white-space: nowrap;
}

.selected-text {
  color: var(--colors-main---tiffany, #5DD9D9);
}

.red-text-2 {
  color: #FC5619!important;
}

.green-text {
  color: #379185!important;
}

.line-through {
  text-decoration: line-through;
  text-decoration-thickness: 0.2rem;
}

.underline-text {
  text-decoration: underline;
}

.mob {
  display: none!important;
}

.pad {
  display: none!important;
}

.desk {
  display: flex!important;
}

.main__wrapper {
  overflow: hidden;
  position: relative;
}

/***************GLOBAL***************/
/***************BIG-BUTTON***************/

.big-button {
  display: flex;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 300px;

  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;

  transition: 0.3s ease;
  outline: none;
  border: 1px solid transparent;
  user-select: none;
  border-radius: 8px;
  background: #9421EF;
  box-shadow: 0px 3px 10px 0px rgba(148, 33, 239, 0.25);
}

.big-button.big-button-2 {
  min-width: 200px;
  padding: 12px 30px;
}

.big-button:hover {
  cursor: pointer;
  background: #B558FF;
}


.big-button:active {
  color: rgba(255, 255, 255, 0.8);
  background: #670FAD;
}

/***************BIG-BUTTON***************/
/***************TEXT***************/

.head-text-0 {
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 110px */
}

.head-text-1 {
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.head-text-2 {
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.head-text-3 {
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 57px */
}

.head-text-4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.head-text-5 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.paragraph-text-0 {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.paragraph-text-1 {
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.paragraph-text-2 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 30px */
}

.paragraph-text-3 {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}

/***************TEXT***************/
/***************HEADER***************/

.header {
  padding-block: 25px;
  background: #FFF;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
}

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

.header__buttons-container {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center;
}

.header__button {
  width: fit-content;
}

.lang-wrap {
  margin-left: auto;
  width: 125px;
  height: 35px;
  position: relative;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  z-index: 500;
}
.lang-wrap a {
  color: #000;
  text-decoration: none;
}
.lang-wrap .lang {
  width: calc(100% + 2px);
  border-radius: 5px;
  border: 2px solid #9421EF;
  position: absolute;
  top: -2px;
  left: 0;
  background: #FFF;
}
.lang-wrap .lang.active .lang__active::after {
  transform: rotateX(180deg);
}
.lang-wrap .lang__active {
  width: 125px;
  height: 35px;
  display: flex;
  padding-left: 15px;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.lang-wrap .lang__active::after {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath stroke='%23020D1B' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  width: 14px;
  height: 8px;
  transition: transform 0.3s ease-in-out;
}
.lang-wrap .lang__list {
  padding: 10px 10px 15px 15px;
  display: none;
  position: relative;

}
.lang-wrap .lang__list li {
  margin-bottom: 10px;
}
.lang-wrap .lang__list li:last-child {
  margin-bottom: 0;
}
@media (any-hover: hover) {
  .lang-wrap .lang__list a:hover {
    font-weight: 700;
  }
}


/***************HEADER***************/
/***************INVEST***************/

.invest {
  padding-block: 100px;
  background-image: url("../images/bl1_img1-min.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.invest__container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 50px;
}

.invest__text-container {
  color: #FFF;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.invest__form-container {
  flex-shrink: 0;
}

/***************INVEST***************/
/***************COMPANIES***************/

.companies {
  padding-block: 30px;
  background: #FFF;
}

.companies__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px 150px;
}

.companies__image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.companies__image {
  height: 25px;
}



/***************COMPANIES***************/
/***************POWER***************/

.power {
  padding-block: 120px 150px;
}

.power__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.power__top-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
  max-width: 1162px;
}

.power__top-container p {
  max-width: 950px;
}

.power__illustration-container {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
}

.power__image {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
}

.power__illustration-text-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px;
}

.power__middle-container {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.power__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.power__item-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
}

.power__item-text-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.power__bottom-container {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.power__bottom-container .head-text-4 {
  margin-bottom: 15px;
}

.power__bottom-container .paragraph-text-3 {
  margin-bottom: 50px;
}

.power__button {
  width: fit-content;
}

/***************POWER***************/
/***************IMPACT***************/

.impact {
  padding-bottom: 120px;
}

.impact__container {
  display: flex;
  flex-direction: column;
  padding: 50px;
  gap: 30px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
}

.impact__main-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 30px;
}

.impact__image-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.impact__image {
  width: 100%;
}

.impact__text-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 634px;
  width: 100%;
}

.impact__container > .paragraph-text-3 {
  margin-bottom: 30px;
}

.impact__bottom-container {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 30px;
}

.impact__button {
  width: fit-content;
}

/***************IMPACT***************/
/***************ERA***************/

.era {
  padding-block: 100px;
  position: relative;
  background: #FFF;
  margin-bottom: 100px;
}

.era .container {
  /*max-width: 100%;*/
}

.era__container {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
}

.era__image-container {
  width: calc((100vw - 1400px) / 2 + 600px);
  margin-left: calc((-100vw + 1400px) / 2);
  height: 649px;
  position: relative;
}

.era__image {
  position: absolute;
  width: 100%;
  max-height: 649px;
  object-fit: cover;
  left: 0;
  border-radius: 0px 20px 20px 0px;
}

.era__text-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: calc(1400px / 2);
}

.era__description-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.era__button {
  width: fit-content;
}

/***************ERA***************/
/***************TRUST***************/

.trust {
  padding-block: 100px;
  background-image: url("../images/bl5_img1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  color: #FFF;
}

.trust__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.trust__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}

.trust__top p, .trust__top h5 {
  max-width: 950px;
  color: #EAEAEA;
}

.trust__items-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.trust__item {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 32px;
}

.trust__item:nth-child(1) .trust__item-image {
  border-radius: 20px 100px 20px 20px;
}

.trust__item:nth-child(3) .trust__item-image {
  border-radius: 20px 20px 100px 20px;
}

.trust__item:nth-child(even) {
  flex-direction: row;
}

.trust__item-image-container {
  flex-shrink: 0;
  max-width: 50%;
}

.trust__item-image {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.trust__item-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/***************TRUST***************/
/***************REVIEWS***************/

.reviews {
  padding-block: 120px;
}

.reviews__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.reviews__container > p {
  max-width: 950px;
}

.reviews__container > p, .reviews__container > h2 {
  text-align: center;
}

.reviews__items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
}

.reviews__top-container  {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.reviews__top-container .head-text-2 {
  max-width: 1162px;
}

.reviews__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 680px;
  padding: 30px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
}

.reviews__item-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.reviews__item-image {
  width: 190px;
  height: 224px;
  object-fit: cover;
  border-radius: 8px;
}

.reviews__item-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.reviews__item-line {
  width: 100%;
  height: 1px;
  background-color: #252A34;
  opacity: 0.2;
}

/***************REVIEWS***************/
/***************HOW***************/

.how {
  padding-bottom: 120px;
}

.how__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.how__top-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  max-width: 1180px;
}

.how__items-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  position: relative;
}

.how__items-container::before {
  content: "";
  display: flex;
  position: absolute;
  top: 56px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 46, 99, 0.00) 0%, #F46B25 49.99%, rgba(255, 46, 99, 0.00) 100%);
}

.how__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 330px;
  text-align: center;
  opacity: 0.5;
  transition: 0.3s ease;
}

.how__item:nth-child(3) .how__item-image {
  margin-top: -20px;

}

.how__item:hover, .how__item:nth-child(2) {
  opacity: 1;
}

.how__item-number {
  position: relative;
  color: #F46B25;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 86px;
}

.how__item-number::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #F46B25;
}

.how__item-image {
  margin-bottom: 30px;
}

.how__item .head-text-5 {
  margin-bottom: 15px;
  text-transform: uppercase;
}

.how__button {
  width: fit-content;

}

/***************HOW***************/
/***************FAQ***************/

.faq {
  position: relative;
  overflow: hidden;
  padding-bottom: 110px;
}

.faq__container {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  max-width: 1162px;
  margin-inline: auto;
}

.faq h2 {
  text-align: center;
}

.faq__items {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
}

.faq__item {
  display: flex;
  position: relative;
  flex-direction: row;
  gap: 52px;
  padding: 30px;
  background: #FFF;
  transition: 0.3s ease;
  border-bottom: 1px solid rgba(255, 46, 99, 0.1);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__item:hover {
  cursor: pointer;
}

.faq__item-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.faq__item-header {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding-right: 60px;
  justify-content: space-between;
}

.faq__item-cross {
  display: flex;
  position: absolute;
  padding: 17px;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background-color: #9421EF;
  transform: rotateZ(0deg);
  transition: 0.3s ease;
}

.faq__item-cross svg {
  transition: 0.3s ease;
  fill: #252121;
  width: 14px;
  height: 14px;
}

.faq__item.active .faq__item-cross {
  transform: rotateZ(45deg);
}

.faq__item.active .faq__item-cross svg {
  fill: #FFF;
}

.faq__item.active .faq__item-title,
.faq__item.active .faq__item-description,
.faq__item.active .faq__number
{
  color: #FFF
}

/***************FAQ***************/
/***************REGISTER***************/

.register {
  padding-block: 100px;
  background-image: url("../images/bl9_img1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #FFF;
}

.register__container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 50px;
}

.register__text-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.register__form-container {
  flex-shrink: 0;
}

.register .head-text-0 {
  margin-bottom: 30px;
}

/***************REGISTER***************/





/***************MEDIA(1400px)***************/

@media (max-width: 1400px) {

  body {
    background-size: auto 100%;
  }

  .container {
    padding-inline: 20px;
  }

  .desk {
    display: none!important;
  }

  .pad {
    display: flex!important;
  }

  .main__wrapper {
    overflow: visible;
  }

  .big-button {
    margin-inline: auto;
  }

  .big-button-2 {
    min-width: 100px;
    padding: 12px 30px;
  }

  /***************(1400px)TEXT***************/

  .allura-text {
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 46.2px */
  }

  .head-text-0 {
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 55px */
  }

  .head-text-1 {
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
  }

  .head-text-2 {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .head-text-3 {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .head-text-4 {
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 33px */
  }

  .head-text-5 {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
  }

  .paragraph-text-0 {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .paragraph-text-1 {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

  .paragraph-text-2 {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 30px */
  }

  .paragraph-text-3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
  }

  /***************(1400px)TEXT***************/
  /***************(1400px)HEADER***************/

  .header {
    padding-block: 20px;
    /*overflow: hidden;*/
  }

  .header__container {
    flex-direction: column;
  }
  
  .header__buttons-container {
    gap: 20px;
    flex-direction: row-reverse;
  }

  .header__button {
    width: 166px!important;
    min-width: 100px;
  }

  /***************(1400px)HEADER***************/
  /***************(1400px)INVEST***************/

  .invest {
    padding-block: 20px;
    overflow: hidden;
  }

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

  .invest__text-container {
    text-align: center;
  }

  .lang-wrap .lang {
    background-color: #9421EF;
    color: #FFF;
    transition: 0.3s ease;
  }

  .lang-wrap a {
    color: #FFF;
  }

  .lang-wrap .lang__active::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath stroke='%23FFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
  }

  /*.lang-wrap.active .lang {*/
  /*  background-color: #FFF;*/
  /*  color: #020D1B;*/
  /*}*/

  /*.lang-wrap.active .lang__active::after {*/
  /*  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath stroke='%23020D1B' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m1 1 5 5 5-5'/%3E%3C/svg%3E");*/
  /*}*/

  /*.lang-wrap.active a {*/
  /*  color: #020D1B;*/
  /*}*/

  /***************(1400px)INVEST***************/
  /***************(1400px)COMPANIES***************/

  .companies__container {
    justify-content: space-between;
    gap: 20px;
  }

  .companies__image {
    width: auto;
    /*object-fit: cover;*/
  }

  /***************(1400px)COMPANIES***************/

  /***************(1400px)POWER***************/

  .power {
    padding-block: 80px;
    overflow: hidden;
  }

  .power__container {
    gap: 40px;
  }

  .power__illustration-text-container {
    padding: 20px 10px;
  }

  .power__image {
    max-height: 133px;
  }

  .power__middle-container {
    flex-direction: column;
    gap: 30px;
  }

  .power__item {
    padding: 20px;
    gap: 20px;
  }


  .power__container > .head-text-4 {
    text-align: center;
  }

  .power__bottom-container .head-text-3 {
    margin-bottom: 20px;
  }

  .power__bottom-container .paragraph-text-3 {
    margin-bottom: 20px;
  }

  .power .big-button-2 {
    padding: 20px 40px;
  }

  /***************(1400px)POWER***************/
  /***************(1400px)IMPACT***************/

  .impact {
    padding-block: 40px;
    /*border-radius: 20px;*/
    background: #FFF;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
  }

  .impact__container {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    flex-direction: column;
    padding: 0;
  }

  .impact__image {
    max-width: 480px;
  }

  .impact__text-container {
    max-width: 100%;
  }

  .impact__main-container {
    flex-direction: column;
  }

  .impact__bottom-container .head-text-3,
  .impact__bottom-container .paragraph-text-3 {
    text-align: left;
  }

  .impact .big-button-2 {
    padding: 20px 40px;
  }

  /***************(1400px)IMPACT***************/
  /***************(1400px)ERA***************/

  .era {
    padding-block: 50px;
    margin-bottom: 0;
    background-color: #FFF;
    overflow: hidden;
  }

  .era__container {
    flex-direction: column;
  }

  .era__container > .head-text-2 {
    text-align: center;
  }

  .era__image-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    height: fit-content;

  }

  .era__image {
    width: calc(100% + 40px);
    margin-left: -20px;
    position: relative;
    border-radius: 0;

  }

  .era__text-container {
    width: 100%;
  }

  .era__text-container .paragraph-text-3 {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }


  /***************(1400px)ERA***************/
  /***************(1400px)TRUST***************/

  .trust {
    padding-block: 30px;
    overflow: hidden;
  }

  .trust__container {
    width: 100%;
  }

  .trust__top {
    margin-bottom: 20px;
  }

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

  .trust__item:nth-child(even) {
    flex-direction: column-reverse;
  }

  .trust__item-image-container {
    max-width: 100%;
  }

  .trust__item:nth-child(1) .trust__item-image {
    border-radius: 10px 50px 10px 10px;
  }

  .trust__item:nth-child(3) .trust__item-image {
    border-radius: 10px 10px 50px 10px;
  }

  .trust__item:nth-child(4) .trust__item-image {
    border-radius: 10px 10px 50px 10px;
  }

  /*.trust__item-image {*/
  /*  width: calc(100% + 40px);*/
  /*  margin-left: -20px;*/
  /*  border-radius: 0!important;*/
  /*}*/

  /***************(1400px)TRUST***************/
  /***************(1400px)REVIEWS***************/

  .reviews {
    padding-block: 80px;
  }

  .reviews__items-container {
    justify-content: center;
  }

  .reviews__item {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px;
  }

  .reviews__item-image-container .head-text-5 {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .reviews__item-text-container .head-text-5 {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .reviews__item-text-container {
    align-items: center;
    text-align: center;
  }

  .reviews__item .paragraph-text-3 {
    opacity: 0.8;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .reviews__item-image {
    width: 100px;
    height: 118px;
  }

  /***************(1400px)REVIEWS***************/
  /***************(1400px)HOW***************/

  .how {
    padding-bottom: 80px;
    overflow: hidden;
  }

  .how__items-container::before {
    display: none;
  }

  .how__container {
    gap: 20px;
  }

  .how h2 {
    text-align: center;
  }

  .how__items-container {
    flex-direction: column;
    align-items: center;
    width: calc(100% + 40px);
    gap: 0;
  }

  .how__item {
    opacity: 1;
    padding: 20px 10px;
  }

  .how__item:nth-child(3) .how__item-image {
    margin-top: 0;

  }

  .how__item-image {
    height: 200px;
  }

  .how__item .head-text-5 {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .how__item-number {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    /*margin-bottom: 20px;*/
  }

  .how__item-number::before {
    content: "";
    display: flex;
    position: absolute;
    top: 56px;
    width: calc(100vw - 40px);
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 46, 99, 0.00) 0%, #F46B25 49.99%, rgba(255, 46, 99, 0.00) 100%);
  }

  /*.how__item-number::after {*/
  /*  display: none;*/
  /*}*/

  /***************(1400px)HOW***************/
  /***************(1400px)FAQ***************/

  .faq {
    padding-block: 0 80px;
  }

  .faq__item {
    flex-direction: column;
    padding: 20px 14px;
    gap: 20px;
  }

  .faq__item-cross {
    top: 8px;
    right: 8px;
  }

  .faq__item-main {
    gap: 20px;
  }

  .faq__item-header {
    padding-right: 60px;
  }

  .faq .head-text-4 {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  /***************(1400px)FAQ***************/
  /***************(1400px)REGISTER***************/

  .register {
    padding-block: 50px;
  }

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

  .register__text-container {
    text-align: center;
  }

  /***************(1400px)REGISTER***************/




}

/***************MEDIA(1400px)***************/
/***************MEDIA(700px)***************/

@media (max-width: 700px) {
  .container {
    padding-inline: 12px;
  }

  .pad {
    display: none!important;
  }

  .mob {
    display: flex!important;
  }

  .big-button {
    width: 100%;
  }

  /***************(700px)INVEST***************/
  /***************(700px)INVEST***************/
  /***************(700px)ERA***************/
  /***************(700px)ERA***************/
  /***************(700px)POWER***************/
  /***************(700px)POWER***************/
  /***************(700px)IMPACT***************/
  /***************(700px)IMPACT***************/
  /***************(700px)TIME***************/
  /***************(700px)TIME***************/
  /***************(700px)WORLD***************/
  /***************(700px)WORLD***************/
  /***************(700px)TRUST***************/
  /***************(700px)TRUST***************/
  /***************(700px)REVIEWS***************/
  /***************(700px)REVIEWS***************/
  /***************(700px)HOW***************/
  /***************(700px)HOW***************/
  /***************(700px)FAQ***************/
  /***************(700px)FAQ***************/
  /***************(700px)REGISTER***************/
  /***************(700px)REGISTER***************/


}

/***************MEDIA(700px)***************/
/***************ANIMATIONS***************/

@keyframes stepArrow {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(15px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes fair-text-animation {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}

@keyframes blink {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.1;
  }
}

/***************ANIMATIONS***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
/***************GLOBAL***************/
