@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Manrope:200,300,regular,500,600,700,800');

:root {
    --main-bg: linear-gradient(90deg, #2a4f7f 22.75%, #7cc0d7 61.96%);
  --secondary-bg: #2a4f7f;
  --reviews-bg: #7cc0d7;
  --button-bg: #ac8979;
  --button-hover-bg: #87685a;
  --color-activ: #ac8979;
}



* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 16px;
  font-family: "Manrope", serif;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: #FFF;
}

sub br {
  display: none;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

/*--------------------*/
[class*="container"] {
  max-width: 1280px;
  margin: 0 auto;
  /* height: 100%; */
  padding: 0px 20px;
}

.main {
  height: 100vh;
  padding: 0re 0re 1rem;
  background: #FFF;
}

.modal__selection {
  width: 100%;
  padding: 0;
  border-radius: 12px;
  background: transparent;
  margin: 0 auto;
}

.modal__selection.active {
  display: block;
}

.selection__inhher {
  max-width: 51.3rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 3 колонки */
  gap: 20px 60px;
  margin: 0 auto 3.75rem;
}

.selection__inhher label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;

  color: #1C1C1C;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 150%;
}

input[type="radio"] {
  appearance: none;
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid var(--color-activ);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  cursor: pointer;
}

input[type="radio"]:checked {
  background-color: var(--color-activ);
  box-shadow: inset 0 0 0 2px white;
}

.submit-button {
  display: block;
  max-width: 30.6rem;
  width: 100%;
  padding: 0.75rem 0rem;
  border-radius: 75.75rem;
  background: #9B9B9B;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  margin: 0 auto;
}

.submit-button.active {
  background: var(--color-activ);
  animation: puls 2s infinite;
}

@keyframes puls {
  0% {
    transform: scale(.95);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(.95);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fade-in {
  animation: fade-in 1s ease forwards;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fade-out {
  animation: fade-out 1s ease forwards;
}

@media(max-width: 768px) {
  [class*="container"] {
    max-width: none;
    padding: 0rem 1rem;
  }

  .modal-company__subtitle {
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 1.25rem;
  }

  .modal-company__inhher {
    flex-direction: column;
  }

  .modal__selection {
    padding: 1.5rem 0rem 2.5rem;
  }

  input[type="radio"] {
    flex: 0 0 auto;
    border: 1px solid var(--color-activ);
  }

  .chart__header-wrapper {
    align-items: start;
  }

  .chart__logo {
    padding: .5rem 0rem;
    max-width: 5rem;
    width: 100%;
  }

  .chart__logo img {
    width: 100%;
  }

  .chart__subtitle {
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}

@media(max-width: 480px) {
  [class*="container"] {
    max-width: none;
    padding: 0rem 1rem;
  }

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

}

.header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 16px 0;
  background: #fff;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
}

@media(max-width: 480px) {
  .header__logo {
    margin: 0 auto;
    max-width: 232px;
  }
}

.header__logo {
  max-width: 290px;
}

.header__logo img {
  max-width: 100%;
}

.header__logo-red {
  display: none;
}

.header.accent {
  z-index: 11;
}

.header.accent .header__logo-white {
  display: none;
}

.header.accent .header__logo-red {
  display: block;
}

.head {
  background-image: url(../images/intro_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media(max-width: 1280px) {
  .head {}
}

@media(max-width: 900px) {
  .head {}
}

.head__inner {
  min-height: 600px;
  height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 250px;
}

@media(max-width: 440px) {
  .head {
    text-align: center;
  }

  .head__inner {
    padding-bottom: 10px !important;
    margin-top: 85px;
    align-items: flex-start;
  }
}

.head__title {
  color: #fff;
  font-size: 35px;
  font-weight: 500;
  line-height: 100%;
  border-radius: 0px 12px 12px 0px;
  margin-left: -20px;
  padding: 20px;
}

@media (min-width: 1280px) {
  .head__title {
    border-radius: 12px;
  }
}

.about {
  padding: 60px 0 80px;
  background: var(--main-bg);
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.about__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.text-bbl {
  max-width: 45%;
}

.images {
  margin: 0 auto;
  opacity: 1;
  max-width: 844px;
  width: 100%;
}

.images img {
  width: 100%;
}

@media (max-width: 768px) {
  .text-bbl {
    max-width: 100%;
  }

  .images {
    text-align: center;
    margin: 0 -1rem;
  }
}

.about__loading {
  display: none;
  margin: 0 auto;
  animation: rotate 6s infinite linear;
}

.about__loading.fade-out {
  opacity: 0;
  transition: all .3s;
}

.about__loading img {
  width: 100%;
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.how {
  background: var(--secondary-bg);
}

.how__inner {
  padding: 60px 0 0;
}

.how .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .how .container {
    flex-direction: column;
  }
}

.how__title {
  font-size: 28px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 32px;
}

.how__text {
  font-size: 18px;
  line-height: 150%;
}

.how h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  margin: 12px 0;
}

.how ol,
.how li {
  line-height: 32px;
  list-style: auto;
}

.how ol {
  list-style: unset;
  padding: 0 0 0 20px;
}

.advantages {
  padding: 60px 0;
}

.advantages__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .advantages__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 20px;
  }
}

.advantages__item {
  background: var(--secondary-bg);
  padding: 40px 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

@media(max-width: 768px) {
  .advantages__item {
    padding: 20px;
  }
}

.advantages__item-title {
  color: var(--button-bg);
  font-size: 28px;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.advantages__item-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.reviews {
  background: var(--reviews-bg);
  padding: 100px 16px 50px;
  color: #000;
  font-family: "Inter", sans-serif;
}

.reviews__title {
  font-weight: 500;
  font-size: 40px;
  line-height: 46px;
  letter-spacing: -6%;
}

.reviews__subtitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  margin-top: 18px;
}

.reviews__swiper {
  margin: 80px auto;
}

.swiper-wrapper {
  padding: 0 0 50px;
}

.swiper-slide {
  max-width: 472px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media(max-width: 991px) {
  .reviews {
    padding: 50px 16px 50px;
  }

  .reviews__title {
    font-size: 28px;
  }

  .reviews__subtitle {
    font-size: 20px;
  }

  .reviews__swiper {
    margin: 30px auto;
  }

  .swiper-slide {
    max-width: none;
  }
}

.swiper-pagination-bullet {
  width: 16px !important;
  height: 16px !important;
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: #FFD000 !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: #003496 !important;

}

.reviews__img {
  margin: 0 auto;
  max-width: 138px;
  text-align: center;
  aspect-ratio: 1 / 1;
  margin-bottom: 18px;

}

.reviews__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
    border-radius: 50%;
}

.reviews__text {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 87px 32px 32px;
  font-weight: 500;
  font-style: Italic;
  font-size: 16px;
  line-height: 26px;
  margin-top: -87px;
}

.reviews__text h3 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 32px;
}

.reviews__button-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: #003496FB;
  color: #fff;
  padding: 0 0 0 32px;
  border-radius: 16px;
}

@media(max-width: 768px) {
  .reviews__button-block {
    flex-wrap: wrap;
    padding: 32px;
  }
}

.reviews__button-block .scrbtn {
  margin: 0;
}


.footer {
  border-top: 5px solid var(--button-bg);
  padding: 40px 0;
  background: #F5F5F5;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo {
  max-width: 190px;
  margin: 0 auto;
}

.footer__title {
  color: #343639;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer__text {
  color: #929293;
  line-height: 150%;
}

.modal {
  display: none;
  background: rgba(217, 217, 217, 0.10);
  backdrop-filter: blur(6px);
  padding: 120px 20px;
  z-index: 10;
}

body.hidden {
  overflow: hidden;
  touch-action: none;
  -ms-touch-action: none;
}

.modal.active {
  display: block;
  position: absolute;
  inset: 0;
  overflow-y: scroll;
}

.preview__wrapper,
.selection__wrapper,
.resources__wrapper,
.feedback__wrapper {
  max-width: 860px;
  border-radius: 12px;
  background: #fff;
  padding: 48px 12px;
  text-align: center;
}

.selection__title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  color: var(--color-activ);
  margin-bottom: 24px;
}

.selection__text {
  color: #343639;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 56px;
  text-align: center;
  max-width: 504px;

  margin: 0 auto 56px;
}

.selection__inhher {
  padding: 0 20px;
}

.preview__region {
  height: 190px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.preview__region img {
  height: 100%;
}

.preview__title {
  color: #343639;
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  margin-bottom: 20px;
}

.preview__text {
  color: #343639;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 40px;
}

.preview__button {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preview__btn {
  border-radius: 1000px;
  color: #000;
  background:  var(--button-bg);
  border-radius: 8px;
  width: 100%;
  padding: 13px 30px;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
}

.resources__flag {
  max-width: 122px;
  margin: 0 auto 32px;
}

.resources__flag img {
  width: 100%;
}

.resources__title {
  color: var(--color-activ);
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.resources__text {
  color: #343639;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 40px;
}

.resources__items {
  width: calc(100% + 28px);
  margin-left: -12px;
  margin-right: -12px;
  padding: 20px 12px;
  display: flex;
  gap: 20px;
  align-items: stretch;
  overflow-x: scroll;
}

.resources__item {
  display: flex;
  flex-direction: column;
  min-width: 100%;
  padding: 40px 16px;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.25);
}

.resources__item-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 32px;
}

.resources__item-text {
  color: #929293;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 16px;
  text-wrap: balance;
}

.resources__item-earn {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: #101011;
  margin-top: auto;
  margin-bottom: 12px;
}

.resources__item-value {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  border-radius: 1000px;
  background: #F5F5F5;
  color: #101011;
  font-size: 28px;
  font-weight: 700;
  line-height: 150%;
  max-width: 350px;
  margin: 0 auto 28px;
}

.resources__btn {
  background:  var(--button-bg);
  max-width: 350px;
  margin: 0 auto;
}

.resources__btn:hover {
  background:  var(--button-hover-bg);
}

.feedback__title {
  color: #343639;
  margin-bottom: 40px;
  text-align: center;
  text-wrap: balance;
  font-size: 22px;
  line-height: 130%;
  font-weight: 600;
}

@media (min-width: 769px) {
  .head__title {
    max-width: 860px;
    font-size: 45px;
  }

  .about__inner {
    flex-direction: row;
    align-items: center;
  }

  .how {
    /*background-size: 25% auto;*/
    background-position: right center;
  }

  .how__inner {
    max-width: 50%;
    padding: 130px 0;
  }

  .advantages__item {
    gap: 24px;
  }

  .footer__inner {
    flex-direction: row;
  }

  .footer__logo {
    margin-left: 0;
  }

  .preview__wrapper,
  .selection__wrapper,
  .resources__wrapper {
    padding: 72px 60px;
    margin: 0 auto;
  }

  .preview__button {
    flex-direction: row;
  }

  .selection__title {
    font-size: 36px;
  }

  .resources__wrapper {
    max-width: 1220px;
  }

  .resources__item {
    min-width: 300px;
    width: calc(100% / 3 - 10px);
  }

  .feedback__wrapper {
    max-width: 670px;
    padding: 72px 83px;
    margin: 0 auto;
  }
}

@media(max-width: 440px) {
  .head__title {
    margin: 0;
    padding: 10px 0 30px;
    font-size: 26px;
  }
}

/*  */

.tttext {
  max-width: 700px;
  backdrop-filter: blur(2);
  padding: 30px 20px 50px;
  border-radius: 15px;
  background-color: #578c9fd4;
}



.body_title {
  line-height: 28px;
  font-size: 20px;
}

.footer__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  flex-direction: row;
}

.scrbtn {
  max-width: 350px;
  margin-top: 60px;
  padding: 15px 10px;
}

.scrbtn:hover {
  background:  var(--button-hover-bg);
}

@media(max-width: 768px) {
  .scrbtn {
    margin-top: 40px;
  }
}

.titleres {
  font-size: 20px;
  padding-bottom: 10px;
  color: var(--color-activ);
}

/* leadform */

lead-form .leadform-wrapper {
  padding: 0;
}

lead-form .leadform {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

lead-form .leadform input {
  height: 58px;
  padding: 16px;
  color: #323232;
  background: #ffffff;
  border: 1px solid black;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
}

lead-form .leadform button {
  height: 54px;
  padding: 15px;
  background:  var(--button-bg);
  color: black;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  font-size: 20px;
}

.warning {
  margin-top: 25px;
  font-size: 14px;
  line-height: 140%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.warning::before {
  content: "!";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid black;
  font-weight: 500;
  font-size: 17px;
  line-height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.iti__country-list {
  color: #000 !important;
}


.leadform {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}