@charset "UTF-8";
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter18pt-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("./fonts/Outfit-Medium.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/**
  Нормализация блочной модели
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

/**
  Упрощаем работу с изображениями
 */
img {
  display: block;
  max-width: 100%;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Плавный скролл
   */
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.text-none {
  text-decoration: none;
}

.header {
  display: flex;
  flex-direction: column;
  background-image: url("./images/background_male.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  padding: 0 10%;
}
.header--blue {
  background-image: url("./images/blue_background.png");
}
.header .top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2vh 0;
}
.header .top .menu_mobile,
.header .top .user,
.header .top .menu_overlay {
  display: none;
}
.header .top .logo {
  max-width: 248px;
}
.header .top .menu {
  display: flex;
}
.header .top .menu a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 1.5vh;
  line-height: 1.8vh;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin: 0 2.4vh;
  text-decoration: none;
}
.header .top .authorization {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header .top .authorization a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  font-size: 1.5vh;
  line-height: 1.8vh;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-decoration: none;
}
.header .top .authorization .start {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1vh 2vh;
  margin-left: 1vh;
  background: #14ae5c;
  border-radius: 100px;
}
.header .top .authorization .start a {
  text-decoration: none;
}
.header .title {
  margin-top: 11vh;
  margin-bottom: 10vh;
}
.header .title h1 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-size: 8.6vh;
  line-height: 105%;
  color: #ffffff;
}
.header .title h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 2.2vh;
  line-height: 3.2vh;
  letter-spacing: -0.02em;
  color: #ffffff;
}

@media (max-width: 1000px) {
  .header {
    padding: 0 5%;
  }
}
@media (max-width: 900px) {
  .header-start {
    height: 812px;
  }
  .header-sign-up h1 {
    margin-top: 32px !important;
  }
  .header {
    background-image: url("./images/background_male_mobile.png");
    padding: 0 2.8vh;
  }
  .header--blue {
    background-image: url("./images/blue_background.png");
  }
  .header .top .menu_mobile,
  .header .top .user {
    display: block;
    height: 2.4vh;
    cursor: pointer;
  }
  .header .top .logo {
    width: 20vh;
    margin-right: 1vh;
  }
  .header .top .menu {
    display: none;
  }
  .header .top .authorization {
    display: none;
  }
  .header .top .menu_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(72, 72, 72, 0.75);
    backdrop-filter: blur(8px);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  .header .top .menu_overlay.active {
    display: flex;
  }
  .header .top .menu_mobile_open {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .header .top .menu_mobile_open a {
    font-family: "Outfit";
    font-style: normal;
    font-weight: 500;
    font-size: 3.2vh;
    line-height: 105.7%;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s;
  }
  .header .top .menu_mobile_open a:hover {
    color: #14ae5c;
  }
  .header .title {
    margin-top: 0;
    margin-bottom: 24px;
  }
  .header .title h1 {
    font-size: 40px;
    margin-top: 12px;
    margin-bottom: 20px;
  }
  .header .title h2 {
    font-size: 1.7vh;
  }
  .header .title h2 br {
    display: none;
  }
}
.try {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  background-color: #14ae5c;
  border-radius: 100px;
  text-decoration: none;
  color: #ffffff;
}
.try span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 1.3vh;
  color: #ffffff;
  display: inline-block;
}
.try img {
  width: 3vh;
  height: 3vh;
}

.filter-section {
  background: #14ae5c;
  padding: 5vh 9vh;
  border-radius: 15px;
  display: flex;
  gap: 0.75rem;
  margin: -7vh 12% 0 17%;
}

.filter-button {
  padding: 0 2.6vh;
  border-radius: 10vh;
  border: none;
  cursor: pointer;
  height: 4vh;
  background: #009952;
  transition: background 0.3s, color 0.3s;
  gap: 1vh;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 1.4vh;
  line-height: 1.6vh;
  color: #ffffff;
}
.filter-button--years {
  margin-right: 4vh;
}

.filter-button.active {
  background: #000f5c;
  color: #ffffff;
}

.content-section {
  background: white;
  border-radius: 8px;
  display: flex;
  padding: 8vh 15% 8.5vh 10%;
  gap: 2rem;
  box-sizing: border-box;
}
.content-section small {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 1.3vh;
  line-height: 1.6vh;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
  margin-right: 3vh;
  color: #000000;
  opacity: 0.5;
}

.left-block {
  flex: 1;
}

.right-block {
  flex: 1;
  padding-left: 2rem;
  color: #666;
  font-size: 0.9rem;
}

.left-block small {
  text-transform: uppercase;
  color: #999;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.left-block h2 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-size: 4.8vh;
  margin: 0;
  color: #000000;
  margin-bottom: 4.8vh;
}

.left-block .details {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 2.2vh;
  line-height: 3.2vh;
  color: #777680;
}

.left-block .price {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-size: 4.8vh;
  color: #000000;
}

.left-block .price span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 1.5vh;
  line-height: 1.8vh;
  color: #000000;
}

.btn-start {
  display: inline-flex;
  align-items: center;
  background: #1f9d4c;
  color: white;
  border-radius: 100vh;
  padding: 2.4vh 2.6vh;
  border: none;
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: background 0.3s;
  font-size: 1.3vh;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
}

.btn-start:hover {
  background: #147a33;
}

.billing-info {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 1.3vh;
  color: #777680;
}

.right-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.right-block ul li {
  display: flex;
  flex-direction: row;
  margin: 2.2vh 0;
  position: relative;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 1.8vh;
  line-height: 2.8vh;
  color: #777680;
}
.right-block ul li img {
  height: 3.4vh;
  width: 3.4vh;
  margin-right: 4.8vh;
}

@media (max-width: 900px) {
  .filter-section {
    flex-wrap: wrap;
    padding: 2.8vh;
    margin: -16px 5% 0 5%;
  }
  .content-section {
    flex-direction: column;
    padding: 3vh 5% 5vh 5%;
  }
  .content-section small {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-size: 1.3vh;
    line-height: 1.6vh;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0;
    margin-right: 3vh;
    color: #000000;
    opacity: 0.5;
  }
  .filter-button {
    padding: 0 1.9vh;
    height: 4vh;
  }
  .filter-button--years {
    margin-right: 8vh;
  }
  .left-block h2 {
    font-size: 4.2vh;
    margin-bottom: 1.8vh;
  }
}
.about_us {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 12vh 15% 11.5vh 10%;
}
.about_us .first_half {
  display: flex;
  flex-direction: row;
}
.about_us .first_half h1 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 1.3vh;
  line-height: 16px;
  margin: 0 4.8vh 0 0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #000000;
  opacity: 0.5;
}
.about_us .first_half h2 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-size: 4.8vh;
  line-height: 100%;
  letter-spacing: -0.02em;
  margin-top: 0;
  color: #000000;
}
.about_us .first_half .content {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 2.2vh;
  line-height: 3.2vh;
  letter-spacing: -0.02em;
  max-width: 612px;
  color: #777680;
}
.about_us .first_half h4 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 1.5vh;
  line-height: 1.8vh;
  letter-spacing: 0.01em;
  color: #000000;
}
.about_us .second_half {
  display: flex;
  flex-direction: column;
  width: 31%;
  margin-top: -165px;
}
.about_us .second_half .description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 4.8vh;
  background: linear-gradient(359.92deg, rgba(0, 204, 95, 0.6) 0.07%, rgba(0, 57, 27, 0.6) 69.79%);
  backdrop-filter: blur(12px);
  border-radius: 15px;
}
.about_us .second_half .description .stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px 1.2vh;
  height: 3.2vh;
  background: #14ae5c;
  border-radius: 100px;
  margin-bottom: 2vh;
}
.about_us .second_half .description .stars img {
  width: 1.7vh;
  height: 1.7vh;
  margin: 0 0.1vh;
}
.about_us .second_half .description h1 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600;
  font-size: 2.4vh;
  line-height: 3vh;
  letter-spacing: -0.02em;
  margin: 1vh 0;
  color: #ffffff;
}
.about_us .second_half .description h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 1.8vh;
  line-height: 2.8vh;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.about_us .second_half .numbers {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.about_us .second_half .numbers h1 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  font-size: 4vh;
  line-height: 120%;
  margin: 2vh 0 0 0;
  color: #000000;
}
.about_us .second_half .numbers h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 1.3vh;
  line-height: 140%;
  margin: 0 0 1vh 0;
  color: #777680;
}
.about_us .second_half .horizontal_line {
  width: 100%;
  height: 0px;
  margin: 1.8vh 0;
  border: 1px solid #d8dbde;
}
.about_us .second_half .reviews {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.about_us .second_half .reviews img {
  width: 2.4vh;
  height: 2.4vh;
  margin-right: 1vh;
}
.about_us .second_half .reviews h1 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  font-size: 2.4vh;
  line-height: 150%;
  margin: 0;
  color: #000000;
}
.about_us .second_half .reviews h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 1.5vh;
  line-height: 1.8vh;
  letter-spacing: 0.01em;
  margin: 0 2vh;
  color: #000000;
}

@media (max-width: 768px) {
  .about_us {
    flex-direction: column-reverse;
    padding: 0 2.8vh;
  }
  .about_us .first_half {
    flex-direction: column;
  }
  .about_us .first_half h1 {
    margin: 4.8vh 0;
  }
  .about_us .first_half h4 {
    margin: 4.8vh 0;
  }
  .about_us .second_half {
    width: 100%;
    margin-top: -80px;
  }
  .about_us .second_half .description {
    padding: 2.8vh;
  }
  .about_us .second_half .horizontal_line {
    margin: 2.8vh 0;
  }
}
.how_it_work {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #000f5c;
  padding: 12vh 15% 230px 10%;
}
.how_it_work img {
  width: 59%;
}
.how_it_work .empowering {
  width: 31%;
}
.how_it_work .empowering h1 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 1.3vh;
  line-height: 1.6vh;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #d8dbde;
  opacity: 0.5;
}
.how_it_work .empowering h2 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-size: 4.8vh;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.how_it_work .empowering h3 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 2.2vh;
  line-height: 3.2vh;
  letter-spacing: -0.02em;
  color: #d8dbde;
}

@media (max-width: 1700px) {
  .how_it_work {
    padding-bottom: 11.5vh;
  }
}
@media (max-width: 975px) {
  .how_it_work {
    padding-inline: 10%;
  }
  .how_it_work img {
    max-height: 450px;
    min-width: 500px;
    margin-left: -100px;
  }
}
@media (max-width: 768px) {
  .how_it_work {
    flex-direction: column-reverse;
    padding: 2.8vh;
  }
  .how_it_work img {
    width: 100%;
    margin-left: 0;
    max-height: unset;
    min-width: unset;
  }
  .how_it_work .empowering {
    width: 100%;
  }
  .how_it_work .empowering h3 {
    margin-bottom: 48px;
    margin-top: 28px;
  }
  .how_it_work .empowering h3 br {
    display: none;
  }
}
.risk {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
  background-color: #000f5c;
  padding: 8vh 10% 46vh 10%;
}
.risk .first_half {
  display: flex;
  flex-direction: row;
  width: 74vh;
}
.risk .first_half h1 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 1.3vh;
  line-height: 1.6vh;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #d8dbde;
  opacity: 0.5;
  margin-right: 10vh;
  margin-top: 0;
}
.risk .first_half h2 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-size: 4.8vh;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-top: 0;
}
.risk .first_half .content {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 2.2vh;
  line-height: 3.2vh;
  letter-spacing: -0.02em;
  color: #d8dbde;
}
.risk .second_half {
  position: absolute;
  top: -250px;
  right: 3%;
  width: 36%;
}
.risk .second_half div {
  border-left: 1px solid #14ae5c;
}
.risk .second_half__content h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 1.8vh;
  line-height: 2.8vh;
  letter-spacing: -0.02em;
  margin: 0;
  padding: 0 0 0.5vh 10vh;
  color: #d8dbde;
  display: none;
}
.risk .second_half__content pre {
  cursor: pointer;
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-size: 2.4vh;
  line-height: 3vh;
  letter-spacing: -0.02em;
  margin: 0;
  padding: 5vh 2.9vh 0.8vh 2.9vh;
  color: #ffffff;
}
.risk .second_half__content.active {
  border-left: 3px solid #14ae5c;
}
.risk .second_half__content.active pre {
  color: #14ae5c;
}
.risk .second_half__content.active h2 {
  display: block;
}

@media (max-width: 1700px) {
  .risk {
    flex-direction: column;
  }
  .risk .second_half {
    position: relative;
    top: -100px;
  }
}
@media (max-width: 768px) {
  .risk {
    padding: 2.8vh;
  }
  .risk .first_half {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .risk .first_half h1 {
    margin: 7.8vh 0 4.8vh 0;
  }
  .risk .first_half .content {
    margin-bottom: 38vh;
  }
  .risk .second_half {
    top: 0;
    right: 0;
    width: 100%;
  }
}
.include {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #000f5c;
  padding: 8vh 10% 46vh 10%;
}
.include .first_half {
  display: flex;
  flex-direction: row;
  width: 74vh;
}
.include .first_half h1 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 1.3vh;
  line-height: 1.6vh;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #d8dbde;
  opacity: 0.5;
  margin-right: 10vh;
  margin-top: 0;
}
.include .first_half h2 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-size: 4.8vh;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-top: 0;
}
.include .first_half h3 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 2.2vh;
  line-height: 3.2vh;
  letter-spacing: -0.02em;
  color: #d8dbde;
}
.include .second_half {
  margin-top: -44vh;
  width: 36%;
}
.include .second_half div {
  border-left: 1px solid #14ae5c;
}
.include .second_half pre {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-size: 2.4vh;
  line-height: 3vh;
  letter-spacing: -0.02em;
  margin: 0;
  padding: 5vh 2.9vh 0.8vh 2.9vh;
  color: #ffffff;
}
.include .second_half h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 1.8vh;
  line-height: 2.8vh;
  letter-spacing: -0.02em;
  margin: 0;
  padding: 0 0 0.5vh 10vh;
  color: #d8dbde;
}

@media (max-width: 768px) {
  .include {
    flex-direction: column-reverse;
    padding-top: 0 !important;
  }
  .include .first_half {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .include .first_half h1 {
    margin-block: 48px;
  }
  .include .first_half h3 {
    margin-bottom: 38vh;
  }
  .include .second_half {
    margin-top: 0;
    width: 100%;
  }
}
.reviews {
  display: flex;
  flex-direction: column;
}
.reviews .green_part {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-image: url("./images/green_background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px;
  margin: 0 12% 0vh 17%;
  margin-top: -36vh;
  padding: 8vh;
  z-index: 10;
}
.reviews .green_part--signup {
  flex-wrap: wrap;
  gap: 4vh;
}
.reviews .green_part .section {
  width: 30%;
}
.reviews .green_part .section img {
  width: 4vh;
  padding-bottom: 2vh;
}
.reviews .green_part .section h1 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600;
  font-size: 2.5vh;
  line-height: 3vh;
  letter-spacing: 0.02em;
  color: #ffffff;
}
.reviews .green_part .section h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 1.9vh;
  line-height: 2.8vh;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.reviews .green_part .section .green_horizontal_line {
  height: 0px;
  border: 1px solid #63ce63;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}
.reviews .title {
  display: flex;
  flex-direction: row;
  padding: 12vh 15% 8.5vh 10%;
}
.reviews .title h1 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 1.3vh;
  line-height: 1.6vh;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
  margin-right: 7vh;
  color: #000000;
  opacity: 0.5;
}
.reviews .title h2 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-size: 4.8vh;
  line-height: 100%;
  letter-spacing: -0.02em;
  margin: 0;
  color: #000000;
}
.reviews .review_cards {
  display: flex;
  flex-direction: row;
  padding: 0 3% 0 16.5%;
  justify-content: space-between;
}
.reviews .review_cards .card {
  display: flex;
  flex-direction: column;
  padding: 4.8vh;
  width: 30%;
  background: #f7f7f7;
  backdrop-filter: blur(12px);
  border-radius: 15px;
}
.reviews .review_cards .card .name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  width: 3.2vh;
  height: 3.2vh;
  background: #000f5c;
  border-radius: 100px;
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600;
  font-size: 1.8vh;
  line-height: 23px;
  color: #ffffff;
}
.reviews .review_cards .card .stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px 1.2vh;
  height: 3.2vh;
  background: #ffffff;
  border-radius: 100px;
  margin-bottom: 2vh;
  margin-left: 1vh;
}
.reviews .review_cards .card .stars img {
  width: 1.7vh;
  height: 1.7vh;
  margin: 0 0.1vh;
}
.reviews .review_cards .card h1 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600;
  font-size: 2.4vh;
  line-height: 3vh;
  letter-spacing: -0.02em;
  margin: 0;
  color: #000000;
}
.reviews .review_cards .card h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 1.8vh;
  line-height: 2.8vh;
  letter-spacing: -0.02em;
  color: #777680;
}
.reviews .review_cards .card h3 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 1.3vh;
  line-height: 140%;
  margin: 0;
  color: #777680;
}
.reviews .clients {
  display: flex;
  flex-direction: row;
  position: relative;
  top: 86px;
  padding-left: 10%;
}
.reviews .clients h1 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600;
  font-size: 42vh;
  line-height: 69%;
  margin: 0;
  mix-blend-mode: multiply;
  letter-spacing: -0.02em;
  margin-right: 7vh;
  color: #3044ac;
}
.reviews .clients h2 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-size: 4.8vh;
  line-height: 100%;
  letter-spacing: -0.02em;
  margin: 0;
  color: #000000;
}

@media (max-width: 1200px) {
  .reviews .clients h1 {
    font-size: 28vh;
  }
}
@media (max-width: 900px) {
  .reviews .clients h1 {
    font-size: 20vh;
  }
}
@media (max-width: 768px) {
  .reviews .green_part {
    margin: -280px 0 0 2.8vh;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 4vh 2vh;
    -webkit-overflow-scrolling: touch;
  }
  .reviews .green_part--signup {
    flex-wrap: nowrap;
  }
  .reviews .green_part .section {
    flex: 0 0 auto;
    width: 95%;
    scroll-snap-align: start;
    padding-left: 2vh;
  }
  .reviews .green_part::-webkit-scrollbar {
    display: none;
  }
  .reviews .title {
    display: flex;
    flex-direction: column;
    padding: 5vh 2.8vh 3vh 2.8vh;
  }
  .reviews .title h1 {
    margin-bottom: 5vh;
  }
  .reviews .review_cards {
    margin: 0 0 0 2.8vh;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 4vh 2vh;
    -webkit-overflow-scrolling: touch;
  }
  .reviews .review_cards .card {
    flex: 0 0 auto;
    width: 95%;
    scroll-snap-align: start;
  }
  .reviews .review_cards .card .name {
    width: 4.2vh;
    height: 4.2vh;
  }
  .reviews .review_cards .card .stars {
    padding: 0px 1.5vh;
    height: 4.2vh;
  }
  .reviews .review_cards .card .stars img {
    width: 2.2vh;
    height: 2.2vh;
    margin: 0 0.2vh;
  }
  .reviews .review_cards .card h3 {
    font-size: 1.6vh;
  }
  .reviews .review_cards .review_cards::-webkit-scrollbar {
    display: none;
  }
  .reviews .clients {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
  }
  .reviews .clients h1 {
    font-size: 22vh;
    line-height: 105%;
  }
  .reviews .clients h2 {
    margin-bottom: 3vh;
  }
}
@media (max-width: 500px) {
  .reviews .clients h1 {
    font-size: 16vh;
  }
}
.for_business {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("./images/background_girl.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.for_business .text {
  display: flex;
  flex-direction: column;
  padding: 12vh 12% 2vh 58%;
}
.for_business .text h1 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 1.4vh;
  line-height: 1.6vh;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #d8dbde;
  opacity: 0.5;
}
.for_business .text h2 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-size: 4.9vh;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.for_business .text h3 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 2.3vh;
  letter-spacing: -0.02em;
  color: #d8dbde;
}
.for_business .text h4 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 1.6vh;
  line-height: 1.8vh;
  letter-spacing: 0.01em;
  color: #ffffff;
}
.for_business .learn_more p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 1.3vh;
  line-height: 1.6vh;
  color: #ffffff;
}

@media (max-width: 768px) {
  .for_business {
    background-image: url("./images/background_girl_mobile.png");
    height: 100vh;
  }
  .for_business .text {
    padding: 4.8vh 2.8vh;
  }
  .for_business .text h2 {
    font-size: 3.7vh;
  }
  .for_business .learn_more p {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-size: 1.3vh;
    line-height: 1.6vh;
    color: #ffffff;
  }
  .for_business .try {
    margin-top: -3vh;
  }
}
.faq {
  display: flex;
  flex-direction: column;
}
.faq .information {
  display: flex;
  flex-direction: row;
  padding: 12vh 15% 0 10%;
}
.faq .information h1 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 1.3vh;
  line-height: 16px;
  margin: 0 9vh 0 0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #000000;
  opacity: 0.5;
}
.faq .information h2 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-size: 4.8vh;
  line-height: 100%;
  letter-spacing: -0.02em;
  margin-top: 0;
  color: #000000;
}
.faq .information h3 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 2.2vh;
  line-height: 3.2vh;
  letter-spacing: -0.02em;
  color: #777680;
}
.faq .information h4 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 1.5vh;
  line-height: 1.8vh;
  letter-spacing: 0.01em;
  color: #000000;
}
.faq .questions {
  display: flex;
  flex-direction: column;
  width: 45%;
  margin: 0 25.25% 7vh 25.25%;
}
.faq .questions .gray_horizontal_line {
  border: 1px solid #d8dbde;
  margin: 4.8vh 0;
}
.faq .questions .question {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
}
.faq .questions .question h1 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600;
  font-size: 2.4vh;
  line-height: 3vh;
  letter-spacing: -0.02em;
  margin: 0;
  color: #000000;
}
.faq .questions .question img {
  height: 3.2vh;
}
.faq .questions .answer {
  display: none;
  margin-top: 10px;
  font-weight: normal;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 1.8vh;
  line-height: 2.8vh;
  letter-spacing: -0.02em;
  margin-top: 2.8vh;
  color: #777680;
}
.faq .questions .answer.active {
  display: block;
}

@media (max-width: 768px) {
  .faq .information {
    display: flex;
    flex-direction: column;
    padding: 4.8vh 2.8vh 0 2.8vh;
  }
  .faq .information h2 {
    margin: 3vh 0;
  }
  .faq .information h4 {
    font-size: 1.8vh;
  }
  .faq .questions {
    width: 90%;
    margin: 0 5% 0 5%;
  }
  .faq .questions .gray_horizontal_line {
    border: 1px solid #d8dbde;
    margin: 4.8vh 0;
  }
}
.started {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("./images/blue_background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 12vh 0;
}
.started h1 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-size: 8.6vh;
  line-height: 105%;
  text-align: center;
  letter-spacing: -0.02em;
  margin: 0 20% 0 20%;
  color: #ffffff;
}
.started h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 2.2vh;
  line-height: 3.2vh;
  text-align: center;
  letter-spacing: -0.02em;
  margin: 4.8vh 0;
  color: #ffffff;
}

@media (max-width: 768px) {
  .started {
    padding: 4.8vh 15%;
  }
  .started h1 {
    font-size: 4.5vh;
  }
}
footer {
  background-color: #f6f6f6;
  padding: 8.8vh 32vh 0 19vh;
  display: flex;
  flex-direction: column;
}
footer .footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
footer .footer .information_footer {
  display: flex;
  flex-direction: row;
}
footer .footer .information_footer h3 {
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 2vh;
  line-height: 2.5vh;
  letter-spacing: -0.02em;
  margin: 0 0 2.8 0;
  color: #000000;
}
footer .footer .information_footer a {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.5vh;
  line-height: 1.8vh;
  letter-spacing: 0.01em;
  color: #000000;
  text-decoration: none;
}
footer .footer .information_footer a:hover {
  text-decoration: underline;
}
footer .footer .information_footer > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-right: 4.8vh;
}
footer .footer .social h3 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600;
  font-size: 2vh;
  line-height: 2.5vh;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0 0 2.8 0;
}
footer .footer .social div {
  display: flex;
  flex-direction: row;
}
footer .footer .social div img {
  height: 3.2vh;
  margin-right: 2.8vh;
}
footer p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 1.5vh;
  line-height: 2vh;
  letter-spacing: -0.02em;
  color: #777680;
  margin: 8vh 0;
}

.footer_mobile {
  display: none;
}

@media (max-width: 768px) {
  footer {
    background-color: #f6f6f6;
    padding: 2.8vh;
    display: flex;
    flex-direction: column;
  }
  footer .footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
  }
  footer .footer .information_footer {
    display: none;
  }
  footer .footer .footer_mobile {
    display: flex;
    flex-direction: column;
  }
  footer .footer .footer_mobile .horizontal_line {
    border: 1px solid #d8dbde;
    margin: 1vh 0;
  }
  footer .footer .footer_mobile .dropdown {
    font-family: sans-serif;
  }
  footer .footer .footer_mobile .dropdown .dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 1vh 0;
    font-size: 16px;
  }
  footer .footer .footer_mobile .dropdown .dropdown-toggle .arrow {
    transition: transform 0.3s ease;
  }
  footer .footer .footer_mobile .dropdown .dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
  }
  footer .footer .footer_mobile .dropdown .dropdown-menu li a {
    display: block;
    padding: 8px 10px;
    text-decoration: none;
    color: #000;
  }
  footer .footer .footer_mobile .dropdown .dropdown-menu li a:hover {
    background-color: #f0f0f0;
  }
  footer .footer .footer_mobile .dropdown.open .dropdown-menu {
    display: block;
  }
  footer .footer .footer_mobile .dropdown.open .dropdown-toggle .arrow {
    transform: rotate(180deg);
  }
  footer .footer .social h1 {
    margin: 2vh 0 3vh 0;
  }
  footer .footer .social div {
    display: flex;
    flex-direction: row;
  }
  footer .footer .social div img {
    height: 3.2vh;
    margin-right: 2.8vh;
  }
  footer p {
    font-size: 1.8vh;
    margin: 3.8vh 0 2.8vh 0;
  }
}
.legal {
  padding-inline: 5%;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 1.8vh;
  line-height: 2.8vh;
  letter-spacing: -0.02em;
  color: #777680;
  margin-top: 48px;
}
.legal h3 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  font-size: 2vh;
  line-height: 2.5vh;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0 0 2.8 0;
}
.legal__section {
  margin-block: 48px;
}
.legal__section h2 {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-size: 4.8vh;
  margin: 0 0 4.8vh;
  line-height: 40px;
  color: #000000;
}

/*# sourceMappingURL=styles.css.map */
