@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap");
* {
  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: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-famile: 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;
}

a {
  color: inherit;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

.ibg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.ibg img {
  display: none;
}

.ibg {
  position: relative;
}

.ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.list-how {
  list-style-type: none;
  counter-reset: item;
}
.list-how li {
  position: relative;
}
.list-how li:before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  top: 0;
  left: 0;
}

.rating {
  display: flex;
  align-items: flex-end;
  font-size: 36px;
  line-height: 0.75;
}
.rating__body {
  position: relative;
}
.rating__body::before {
  content: "★★★★★";
  display: block;
  color: grey;
}
.rating__active {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.rating__active::before {
  content: "★★★★★";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: rgb(226, 204, 9);
}
.rating__items {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.rating__item {
  flex: 0 0 20%;
  height: 100%;
  opacity: 0;
}
.rating__value {
  font-size: 50%;
  line-height: 1;
  padding-left: 10px;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #545971;
  font-size: 18px;
}
@media (max-width: 1430px) {
  body {
    font-size: calc(16px + 2 * (100vw - 320px) / 1110);
  }
}
.lock body {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

> main {
  flex: 1 1 auto;
}

> * {
  min-width: 0;
}

[class*=__container] {
  max-width: 1430px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.swiper {
  overflow: hidden;
}

.swiper-initialized {
  touch-action: pan-y;
}

.swiper-wrapper {
  height: 100%;
  width: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.block-header {
  display: grid;
  gap: 24px;
}
.block-header--center {
  text-align: center;
}
.block-header--inline {
  grid-template-columns: minmax(auto, 586px) minmax(auto, 613px);
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}
.block-header__title {
  color: #171921;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.23;
  transition: all 0.8s ease 0s;
  opacity: 0;
  visibility: hidden;
  transform: translate(0px, -200px);
}
@media (max-width: 1430px) {
  .block-header__title {
    font-size: calc(34px + 18 * (100vw - 320px) / 1110);
  }
}
.block-header__title--big {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.18;
}
@media (max-width: 1430px) {
  .block-header__title--big {
    font-size: calc(38px + 26 * (100vw - 320px) / 1110);
  }
}
.block-header__title--white {
  color: #fff;
}
.block-header__title.active {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
}
.block-header__text p {
  font-size: 18px;
  line-height: 1.55;
  color: #545971;
}
.block-header__text a {
  margin-left: 11px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
  text-decoration: underline;
  color: #15B2F5;
}
@media (any-hover: hover) {
  .block-header__text a:hover {
    text-decoration: none;
  }
}

/*
  <div class="block-header">
          <h2 class="block-header__title"></h2>
          <div class="block-header__text">
            <p></p>
          </div>
        </div>
*/
.bonus {
  display: flex;
  column-gap: 42px;
  row-gap: 4px;
  flex-wrap: wrap;
}
@media (max-width: 1430px) {
  .bonus {
    column-gap: calc(25px + 17 * (100vw - 320px) / 1110);
  }
}
@media (max-width: 1500px) {
  .bonus {
    flex-direction: column;
  }
}
.bonus__item {
  color: #15B2F5;
  font-size: 20px;
  line-height: 1.6;
  padding-left: 32px;
  background: url("../img/hero/mark.svg") left no-repeat;
}

.button {
  display: inline-flex;
  padding: 8px;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  background-color: #15B2F5;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
  color: #fff;
  transition: all 0.3s ease 0s;
}
.button--min {
  font-size: 18px;
  line-height: 1.33;
  padding: 14px 36px;
  min-height: 0;
}
.button--white {
  background-color: #fff;
  color: #15B2F5;
}
.button--fw {
  width: 100%;
}
.button--icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 16px;
  gap: 16px;
}
.button--icon span::after {
  content: "";
  background: #fff url("../img/hero/phone.svg") center no-repeat;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
@media (any-hover: hover) {
  .button:hover {
    background-color: #1f3584;
  }
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input {
  border-radius: 0 !important;
  width: 100%;
  display: block;
}
.input[placeholder]:not([data-placeholder-nohiden])::placeholder {
  transition: opacity 0.3s;
}
.input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
  opacity: 0;
}

textarea.input {
  resize: none;
  padding: 0px 0px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #142257;
}
.header__container {
  min-height: 80px;
  display: grid;
  align-items: center;
  grid-template-columns: 180px 1fr 180px;
  gap: 15px;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media (max-width: 767px) {
  .header__container {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
}
.header__logo {
  position: relative;
  z-index: 5;
}
.header__schedule {
  justify-self: end;
  line-height: 1.33;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.header__schedule::before {
  content: "";
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ff5e5e;
}

.menu {
  justify-self: center;
}
.menu__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 4px;
  column-gap: 57px;
}
@media (max-width: 1430px) {
  .menu__list {
    column-gap: calc(15px + 42 * (100vw - 768px) / 662);
  }
}
.menu__link {
  color: #fff;
  font-weight: 700;
  line-height: 1.33;
}
@media (any-hover: hover) {
  .menu__link:hover {
    text-decoration: underline;
  }
}
.menu__link.active {
  color: #15B2F5;
}

@media (max-width: 767px) {
  .icon__menu {
    z-index: 5;
    display: block;
    position: relative;
    width: 30px;
    height: 22px;
    cursor: pointer;
  }
  .menu__icon::before,
  .menu__icon::after,
  .menu__icon span {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: #fff;
  }
  .menu__icon.active::before,
  .menu__icon.active::after,
  .menu__icon.active span {
    background-color: #fff;
  }
  .menu__icon::before,
  .menu__icon::after {
    content: "";
  }
  .menu__icon::before {
    top: 0;
  }
  .menu__icon::after {
    bottom: -2px;
  }
  .menu__icon span {
    top: 50%;
    transform: scale(1) traslate(0px, -50%);
  }
  .menu__icon.active span {
    transform: scale(0) translate(0px, -50%);
  }
  .menu__icon.active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon.active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
  .menu__body {
    position: fixed;
    top: 0%;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: #1F3584;
    padding: 100px 15px 15px 15px;
    transition: left 0.3s ease 0s;
    overflow: auto;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    row-gap: 30px;
  }
  .menu__body.active {
    left: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    z-index: 2;
    width: 100%;
    top: 0;
    left: 0;
    height: 80px;
    background-color: #142257;
  }
  .menu__list {
    flex: 1 1 auto;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    font-size: 24px;
  }
  .menu__list > li {
    flex-wrap: wrap;
  }
  .menu__list > li:last-child {
    margin-bottom: 0;
  }
  .menu__link {
    font-size: 24px;
    color: #fff;
  }
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: auto;
  padding: 80px 15px 60px 15px;
  min-height: 100vh;
  background-color: #142257;
}
@media (min-width: 991.98px) {
  .hero {
    grid-template-columns: auto 1fr auto;
  }
}
.hero__image {
  position: relative;
  width: 412px;
  min-width: 200px;
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 1430px) {
  .hero__image {
    width: calc(200px + 212 * (100vw - 992px) / 438);
  }
}
.hero__image img {
  object-position: top;
  display: block;
}
@media (max-width: 991.98px) {
  .hero__image {
    display: none;
  }
}
.hero__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-35deg, #131F4B 4.15%, rgba(19, 31, 75, 0) 43.25%);
}
.hero__image--right::after {
  content: "";
  background-image: linear-gradient(35deg, #131F4B 4.15%, rgba(19, 31, 75, 0) 43.25%);
}
.hero__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 83px;
  padding-right: 83px;
}
@media (max-width: 1430px) {
  .hero__body {
    padding-left: calc(15px + 68 * (100vw - 992px) / 438);
  }
}
@media (max-width: 1430px) {
  .hero__body {
    padding-right: calc(15px + 68 * (100vw - 992px) / 438);
  }
}
@media (max-width: 991.98px) {
  .hero__body {
    padding: 0px 15px;
  }
}
.hero__content {
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.hero__content:not(:last-child) {
  margin-bottom: 40px;
}
.hero__block-header {
  max-width: 670px;
}
.hero__block-header:not(:last-child) {
  margin-bottom: 24px;
}
.hero__bonuses:not(:last-child) {
  margin-bottom: 48px;
}
.items-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 52px;
}
.items-hero:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 479.98px) {
  .items-hero {
    flex-direction: column;
  }
}
@media (max-width: 1430px) {
  .items-hero {
    column-gap: calc(15px + 37 * (100vw - 320px) / 1110);
  }
}
.items-hero__item {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #9ea3b5;
}
@media (min-width: 479.98px) {
  .items-hero__item:not(:last-child):after {
    content: "";
    position: absolute;
    right: -28px;
    top: calc(50% - 2px);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #9ea3b5;
  }
}
@media (min-width: 479.98px) and (max-width: 1430px) {
  .items-hero__item:not(:last-child):after {
    right: calc(-10px + -18 * (100vw - 320px) / 1110);
  }
}

.advantages-hero {
  display: grid;
  grid-template-columns: repeat(4, auto);
  row-gap: 15px;
  column-gap: 64px;
}
@media (max-width: 1430px) {
  .advantages-hero {
    column-gap: calc(20px + 44 * (100vw - 320px) / 1110);
  }
}
@media (max-width: 1920px) {
  .advantages-hero {
    grid-template-columns: repeat(2, auto);
  }
}
@media (max-width: 479.98px) {
  .advantages-hero {
    grid-template-columns: auto;
  }
}
.advantages-hero__item {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 16px;
}
@media (min-width: 1920px) {
  .advantages-hero__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -32px;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(0deg, rgba(20, 34, 87, 0) 0%, rgb(79, 102, 183) 50%, rgba(20, 34, 87, 0) 100%);
  }
}
@media (min-width: 1920px) and (max-width: 1430px) {
  .advantages-hero__item:not(:last-child)::after {
    right: calc(-20px + -12 * (100vw - 320px) / 1110);
  }
}
.advantages-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 50%;
  flex: 0 0 48px;
  height: 48px;
  width: 48px;
  background-color: #1f3584;
}
.advantages-hero__icon img {
  max-width: 100%;
}
.advantages-hero__text {
  color: #fff;
  font-weight: 600;
  line-height: 1.33;
}

.decor-hero__item {
  position: absolute;
  height: 50px;
  bottom: -1px;
  background-color: #fff;
  width: 450px;
}
@media (max-width: 1430px) {
  .decor-hero__item {
    width: calc(230px + 220 * (100vw - 992px) / 438);
  }
}
.decor-hero__item:first-child {
  left: 0;
  border-radius: 0 8px 0 0;
}
.decor-hero__item:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  transform: translate(calc(100% - 2px), 2.3px);
  border-top: 50px solid transparent;
  border-left: 60px solid #fff;
  border-bottom: 0px solid transparent;
}
.decor-hero__item:last-child {
  right: 0;
  border-radius: 8px 0 0 0;
}
.decor-hero__item:last-child::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  transform: translate(calc(-100% + 2px), 2.3px);
  border-top: 50px solid transparent;
  border-right: 60px solid #fff;
  border-bottom: 0px solid transparent;
}
@media (max-width: 991.98px) {
  .decor-hero {
    display: none;
  }
}

.advantages {
  padding-top: 123px;
  padding-bottom: 64px;
}
@media (max-width: 1430px) {
  .advantages {
    padding-top: calc(20px + 103 * (100vw - 320px) / 1110);
  }
}
@media (max-width: 1430px) {
  .advantages {
    padding-bottom: calc(30px + 34 * (100vw - 320px) / 1110);
  }
}
.advantages__container {
  display: grid;
  row-gap: 30px;
  grid-template-columns: auto;
}
@media (min-width: 991.98px) {
  .advantages__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.advantages__content {
  padding-top: 100px;
}
@media (max-width: 1430px) {
  .advantages__content {
    padding-top: calc(30px + 70 * (100vw - 992px) / 438);
  }
}
@media (min-width: 991.98px) {
  .advantages__content {
    max-width: 561px;
    padding-right: 20px;
  }
}
.advantages__block-header:not(:last-child) {
  margin-bottom: 56px;
}
@media (max-width: 1430px) {
  .advantages__block-header:not(:last-child) {
    margin-bottom: calc(30px + 26 * (100vw - 320px) / 1110);
  }
}
.advantages__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.advantages__items:not(:last-child) {
  margin-bottom: 56px;
}
@media (max-width: 1430px) {
  .advantages__items:not(:last-child) {
    margin-bottom: calc(30px + 26 * (100vw - 320px) / 1110);
  }
}
@media (min-width: 479.98px) {
  .advantages__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.advantages__item {
  background: url("../img/advantages//mark.svg") 0 10px no-repeat;
  padding-left: 22px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #1F3584;
}
.advantages__info {
  line-height: 1.55;
  color: #fff;
  padding: 12px 32px;
  background-color: #15B2F5;
  border-radius: 24px;
}
.advantages__info a {
  font-size: 20px;
  font-weight: 600;
  text-decoration: underline;
}
@media (min-width: 991.98px) {
  .advantages__info {
    max-width: 460px;
  }
}
.advantages__image {
  text-align: center;
}
.advantages__image img {
  max-width: 100%;
}

.services {
  padding-top: 123px;
  padding-bottom: 140px;
}
@media (max-width: 1430px) {
  .services {
    padding-top: calc(40px + 83 * (100vw - 320px) / 1110);
  }
}
@media (max-width: 1430px) {
  .services {
    padding-bottom: calc(40px + 100 * (100vw - 320px) / 1110);
  }
}
.services__block-header {
  max-width: 558px;
  margin: 0px auto;
}
.services__block-header:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 1430px) {
  .services__block-header:not(:last-child) {
    margin-bottom: calc(30px + 30 * (100vw - 320px) / 1110);
  }
}
.services__items {
  display: grid;
  grid-template-columns: auto;
}
@media (min-width: 479.98px) {
  .services__items {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}
@media (max-width: 479.98px) {
  .services__items {
    row-gap: 20px;
  }
}
.item-service {
  border-radius: 24px;
}
.item-service--blue {
  text-align: center;
  background-color: #15B2F5;
  color: #fff;
}
@media (max-width: 479.98px) {
  .item-service--blue {
    padding: 20px;
  }
}
@media (min-width: 479.98px) {
  .item-service {
    padding: 32px;
  }
}
@media (min-width: 479.98px) and (max-width: 1430px) {
  .item-service {
    padding: calc(16px + 16 * (100vw - 320px) / 1110);
  }
}
.item-service__icon {
  border-radius: 20px;
  background-color: #142257;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.item-service__icon img {
  max-width: 100%;
}
.item-service__icon:not(:last-child) {
  margin-bottom: 16px;
}
@media (max-width: 1430px) {
  .item-service__icon:not(:last-child) {
    margin-bottom: calc(8px + 8 * (100vw - 320px) / 1110);
  }
}
.item-service__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
  color: #171921;
}
.item-service__title:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 1430px) {
  .item-service__title:not(:last-child) {
    margin-bottom: calc(8px + 4 * (100vw - 320px) / 1110);
  }
}
.item-service__title--white {
  color: #fff;
}
.item-service__text {
  line-height: 1.55;
}
.item-service__text:not(:last-child) {
  margin-bottom: 32px;
}
.profits {
  padding-bottom: 158px;
}
@media (max-width: 1430px) {
  .profits {
    padding-bottom: calc(40px + 118 * (100vw - 320px) / 1110);
  }
}
@media (min-width: 991.98px) {
  .profits {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 991.98px) and (max-width: 1430px) {
  .profits {
    padding-left: calc(15px + 45 * (100vw - 320px) / 1110);
  }
}
@media (min-width: 991.98px) and (max-width: 1430px) {
  .profits {
    padding-right: calc(15px + 45 * (100vw - 320px) / 1110);
  }
}
.profits__content {
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
  background-color: #142257;
  border-radius: 24px;
}
@media (max-width: 1430px) {
  .profits__content {
    padding-top: calc(35px + 29 * (100vw - 320px) / 1110);
  }
}
@media (max-width: 1430px) {
  .profits__content {
    padding-bottom: calc(35px + 29 * (100vw - 320px) / 1110);
  }
}
@media (min-width: 991.98px) {
  .profits__content {
    padding-left: 55px;
    padding-right: 55px;
  }
  .profits__content::before, .profits__content::after {
    content: "";
    position: absolute;
    top: 50%;
    height: 73.295455%;
    max-height: 645px;
    width: 45px;
    transform: translate(0px, -50%);
    background: url("../img/profits/Decoration.svg") left/auto 100% no-repeat;
  }
  .profits__content::before {
    left: 0;
  }
  .profits__content::after {
    right: 0;
    transform: translate(0px, -50%) rotate(180deg);
  }
}
.profits__block-header {
  position: relative;
  padding-bottom: 120px;
}
@media (max-width: 1430px) {
  .profits__block-header {
    padding-bottom: calc(40px + 80 * (100vw - 320px) / 1110);
  }
}
.profits__block-header::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  bottom: 60px;
  background: linear-gradient(90deg, rgba(20, 34, 87, 0) 0%, rgb(79, 102, 183) 50%, rgba(20, 34, 87, 0) 100%);
}
@media (max-width: 1430px) {
  .profits__block-header::after {
    bottom: calc(15px + 45 * (100vw - 320px) / 1110);
  }
}
@media (max-width: 991.98px) {
  .profits__block-header {
    grid-template-columns: auto;
  }
}
.profits__items {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 60px;
}
@media (max-width: 1430px) {
  .profits__items {
    row-gap: calc(20px + 40 * (100vw - 320px) / 1110);
  }
}
@media (max-width: 991.98px) {
  .profits__items {
    grid-template-columns: auto;
  }
}
.profits__item {
  max-width: 630px;
}

.item-profit {
  display: flex;
  gap: 32px;
}
@media (max-width: 1430px) {
  .item-profit {
    gap: calc(15px + 17 * (100vw - 320px) / 1110);
  }
}
.item-profit__logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 100px;
  height: 100px;
}
.item-profit__logo img {
  max-width: 100%;
}
.item-profit__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
  color: #fff;
}
.item-profit__title:not(:last-child) {
  margin-bottom: 12px;
}
.item-profit__text {
  line-height: 1.55;
}

.how {
  padding-bottom: 140px;
}
@media (max-width: 1430px) {
  .how {
    padding-bottom: calc(40px + 100 * (100vw - 320px) / 1110);
  }
}
.how__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 991.98px) {
  .how__container {
    grid-template-columns: auto;
    gap: 30px;
  }
}
@media (max-width: 991.98px) {
  .how__image {
    order: 2;
  }
}
.how__image img {
  transform: translate(-10.5997%, 0px);
  max-width: 100%;
}
@media (max-width: 991.98px) {
  .how__image img {
    transform: translate(0px, 0px);
    text-align: center;
  }
}
@media (max-width: 991.98px) {
  .how__content {
    order: 1;
  }
}
.how__block-header {
  max-width: 410px;
}
.how__block-header:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 1430px) {
  .how__block-header:not(:last-child) {
    margin-bottom: calc(30px + 30 * (100vw - 320px) / 1110);
  }
}
.list-how {
  display: grid;
  gap: 52px;
}
@media (max-width: 1430px) {
  .list-how {
    gap: calc(30px + 22 * (100vw - 320px) / 1110);
  }
}
.list-how__item {
  padding-left: 70px;
  display: grid;
  grid-template-columns: 165px auto;
  gap: 34px;
}
@media (max-width: 1430px) {
  .list-how__item {
    padding-left: calc(40px + 30 * (100vw - 320px) / 1110);
  }
}
.list-how__item:before {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.23;
  color: #9EA3B5;
}
@media (max-width: 1430px) {
  .list-how__item:before {
    font-size: calc(34px + 18 * (100vw - 320px) / 1110);
  }
}
@media (max-width: 520px) {
  .list-how__item {
    grid-template-columns: auto;
    gap: 10px;
  }
}
.list-how__title {
  font-size: 24px;
  font-weight: 700;
  color: #171921;
  line-height: 1.33;
}
.list-how__text {
  line-height: 1.55;
}

.reviews {
  padding-bottom: 130px;
}
@media (max-width: 1430px) {
  .reviews {
    padding-bottom: calc(45px + 85 * (100vw - 320px) / 1110);
  }
}
.reviews__contaier {
  max-width: 1160px;
  margin: 0px auto;
}
.reviews__body {
  position: relative;
}
@media (min-width: 600px) {
  .reviews__body {
    padding: 0 72px;
  }
}
.reviews__block-header {
  max-width: 650px;
  margin: 0px auto;
  margin-bottom: 90px;
}
@media (max-width: 1430px) {
  .reviews__block-header {
    margin-bottom: calc(45px + 45 * (100vw - 320px) / 1110);
  }
}
.reviews__slider {
  margin-bottom: 100px;
}
@media (max-width: 1430px) {
  .reviews__slider {
    margin-bottom: calc(35px + 65 * (100vw - 320px) / 1110);
  }
}
.reviews__arrow {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #15B2F5 url("../img/reviews/arrow.svg") center no-repeat;
}
.reviews__arrow--left {
  left: 0;
  transform: translate(0px, -50%) rotate(-180deg);
}
.reviews__arrow--right {
  right: 0;
}
.reviews__arrow.swiper-button-disabled {
  background: #e3e6f0 url("../img/reviews/arrow.svg") center no-repeat;
  pointer-events: none;
  cursor: default;
}
@media (max-width: 600px) {
  .reviews__arrow {
    display: none;
  }
}
.reviews__bullets {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  row-gap: 3px;
}
.reviews__bullets .swiper-pagination-bullet {
  transition: all 0.3s;
  flex: 0 0 12px;
  height: 12px;
  border-radius: 50%;
}
.reviews__bullets .swiper-pagination-bullet-active {
  flex: 0 0 40px;
  height: 12px;
  background-color: #15B2F5;
  border-radius: 24px;
}

.slide-reviews {
  text-align: center;
}
.slide-reviews__logo {
  position: relative;
  text-align: center;
  padding-bottom: 25px;
}
.slide-reviews__logo:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 1430px) {
  .slide-reviews__logo:not(:last-child) {
    margin-bottom: calc(25px + 15 * (100vw - 320px) / 1110);
  }
}
.slide-reviews__logo::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(20, 34, 87, 0) 0%, #e3e6f0 50%, rgba(20, 34, 87, 0) 100%);
}
.slide-reviews__text {
  display: inline-block;
  max-width: 730px;
}
.slide-reviews__text:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 1430px) {
  .slide-reviews__text:not(:last-child) {
    margin-bottom: calc(25px + 15 * (100vw - 320px) / 1110);
  }
}
.slide-reviews__person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.slide-reviews__avatar {
  text-align: left;
  flex: 0 0 76px;
  height: 76px;
  border-radius: 50%;
}
.slide-reviews__avatar img {
  max-width: 100%;
}
.slide-reviews__body {
  text-align: left;
}
.slide-reviews__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
  color: #171921;
}
.slide-reviews__name:not(:last-child) {
  margin-bottom: 8px;
}
.slide-reviews__rating .rating__value {
  display: none;
}

.blog {
  padding-top: 84px;
  padding-bottom: 84px;
}
@media (max-width: 1430px) {
  .blog {
    padding-top: calc(30px + 54 * (100vw - 320px) / 1110);
  }
}
@media (max-width: 1430px) {
  .blog {
    padding-bottom: calc(30px + 54 * (100vw - 320px) / 1110);
  }
}
.blog__container {
  display: grid;
}
.blog__block-header {
  max-width: 700px;
  margin: 0px auto;
}
.blog__block-header:not(:last-child) {
  margin-bottom: 56px;
}
@media (max-width: 1430px) {
  .blog__block-header:not(:last-child) {
    margin-bottom: calc(25px + 31 * (100vw - 320px) / 1110);
  }
}
.blog__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 48px;
}
.blog__items:not(:last-child) {
  margin-bottom: 56px;
}
@media (max-width: 1430px) {
  .blog__items:not(:last-child) {
    margin-bottom: calc(25px + 31 * (100vw - 320px) / 1110);
  }
}
@media (max-width: 479.98px) {
  .blog__items {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
.blog__view-more {
  justify-self: center;
  color: #15B2F5;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
  padding-right: 18px;
  background: #fff url("../img/blog/arrow.svg") right no-repeat;
}
@media (max-width: 1430px) {
  .blog__view-more {
    font-size: calc(18px + 6 * (100vw - 320px) / 1110);
  }
}
@media (any-hover: hover) {
  .blog__view-more:hover {
    text-decoration: underline;
  }
}

.item-blog {
  display: grid;
}
.item-blog__image {
  aspect-ratio: 444/300;
  border-radius: 24px;
  overflow: hidden;
}
.item-blog__image img {
  display: block;
  transition: all 0.3s;
  opacity: 0.6;
}
.item-blog__image:not(:last-child) {
  margin-bottom: 24px;
}
@media (any-hover: hover) {
  .item-blog__image:hover img {
    opacity: 1;
    transform: scale(1.05);
  }
}
.item-blog__date {
  line-height: 1.55;
}
.item-blog__date:not(:last-child) {
  margin-bottom: 16px;
}
.item-blog__title:not(:last-child) {
  margin-bottom: 16px;
}
.item-blog__title-link {
  color: #171921;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}
@media (any-hover: hover) {
  .item-blog__title-link:hover {
    text-decoration: underline;
  }
}
.item-blog__text {
  line-height: 1.55;
}
.item-blog__text:not(:last-child) {
  margin-bottom: 24px;
}
.item-blog__tags {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 12px;
}
.item-blog__tag {
  padding: 8px 16px;
  font-weight: 600;
  border-radius: 16px;
  background-color: #f3f5f9;
  line-height: 1.42;
  font-size: 14px;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .item-blog__tag:hover {
    background-color: #15B2F5;
    color: #fff;
  }
}

.questions {
  padding-top: 190px;
  padding-bottom: 230px;
}
@media (max-width: 1430px) {
  .questions {
    padding-top: calc(40px + 150 * (100vw - 320px) / 1110);
  }
}
@media (max-width: 1430px) {
  .questions {
    padding-bottom: calc(40px + 190 * (100vw - 320px) / 1110);
  }
}
.questions__container {
  display: grid;
  grid-template-columns: auto 57.84%;
  align-items: start;
  gap: 25px;
}
@media (max-width: 991.98px) {
  .questions__container {
    grid-template-columns: auto;
  }
}
.spollers-questions {
  display: grid;
  gap: 12px;
}
.spollers-questions__item {
  padding: 24px 32px;
  transition: 0.5s ease;
  border-radius: 12px;
}
.spollers-questions__item.open {
  background-color: #F3F5F9;
}
.spollers-questions__title {
  padding-right: 30px;
  transition: all 0.5s;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
}
@media (max-width: 1430px) {
  .spollers-questions__title {
    font-size: calc(18px + 6 * (100vw - 320px) / 1110);
  }
}
._init .spollers-questions__title {
  position: relative;
  cursor: pointer;
}
._init .spollers-questions__title::before, ._init .spollers-questions__title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #000;
  height: 2px;
  width: 12px;
  transition: 0.5s ease 0s;
}
._init .spollers-questions__title::before {
  transform: translate(-75%, -50%) rotate(40deg);
}
._init .spollers-questions__title::after {
  transform: translate(0, -50%) rotate(-40deg);
}
._init .spollers-questions__title._active::before {
  transform: translate(-75%) rotate(-40deg);
}
._init .spollers-questions__title._active::after {
  transform: rotate(40deg);
}
.spollers-questions__body {
  line-height: 1.5;
  color: #737373;
  padding-top: 16px;
}

.talk {
  background-color: #142257;
  position: relative;
}
@media (min-width: 991.98px) {
  .talk__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
  }
}
@media (min-width: 991.98px) and (max-width: 1430px) {
  .talk__container {
    gap: calc(20px + 80 * (100vw - 320px) / 1110);
  }
}
.talk__content {
  position: relative;
  z-index: 2;
  padding-top: 165px;
  padding-bottom: 106px;
}
@media (max-width: 1430px) {
  .talk__content {
    padding-top: calc(60px + 105 * (100vw - 320px) / 1110);
  }
}
@media (max-width: 1430px) {
  .talk__content {
    padding-bottom: calc(60px + 46 * (100vw - 320px) / 1110);
  }
}
.talk__content::before {
  content: "";
  background: url("../img/talk/decor.svg") 0 0/83% no-repeat;
  aspect-ratio: 581/44;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.talk__block-header:not(:last-child) {
  margin-bottom: 24px;
}
.talk__bonuses:not(:last-child) {
  margin-bottom: 36px;
}
.talk__image img {
  max-width: 100%;
}
@media (min-width: 991.98px) {
  .talk__image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    justify-self: end;
  }
}
@media (min-width: 991.98px) and (max-width: 1430px) {
  .talk__image {
    gap: calc(20px + 80 * (100vw - 320px) / 1110);
  }
}
@media (min-width: 991.98px) {
  .talk__image img {
    max-width: 100%;
    grid-column: 2/3;
  }
}

.footer {
  background-color: #15B2F5;
  color: #fff;
}
.footer__content {
  padding-top: 52px;
  padding-bottom: 74px;
}
@media (max-width: 1430px) {
  .footer__content {
    padding-top: calc(20px + 32 * (100vw - 320px) / 1110);
  }
}
@media (max-width: 1430px) {
  .footer__content {
    padding-bottom: calc(30px + 44 * (100vw - 320px) / 1110);
  }
}
.footer__body {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .footer__body {
    grid-template-columns: auto;
  }
}
.footer__info {
  max-width: 460px;
  display: grid;
  gap: 32px;
}
@media (max-width: 1430px) {
  .footer__info {
    gap: calc(20px + 12 * (100vw - 320px) / 1110);
  }
}
.footer__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 32px;
  padding-bottom: 32px;
  text-align: center;
  line-height: 1.55;
}

.subscribe {
  border-radius: 24px;
  background-color: #4AC9FF;
  padding: 24px;
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: auto 520px;
  gap: 24px;
}
@media (max-width: 1430px) {
  .subscribe {
    margin-bottom: calc(20px + 32 * (100vw - 320px) / 1110);
  }
}
@media (max-width: 991.98px) {
  .subscribe {
    grid-template-columns: auto;
  }
}
@media (max-width: 479.98px) {
  .subscribe {
    margin: 0 -15px;
    border-radius: 0px;
    padding: 15px;
  }
}
.subscribe__title {
  font-size: 24px;
  line-height: 1.33;
  font-weight: 700;
}
.subscribe__title:not(:last-child) {
  margin-bottom: 12px;
}
.subscribe__text {
  line-height: 1.55;
}
.subscribe__form {
  border-radius: 60px;
  background-color: #fff;
  padding: 12px;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 479.98px) {
  .subscribe__form {
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    gap: 10px;
  }
}
.subscribe__input {
  height: 51px;
  flex: 1 1 auto;
  padding: 0 8px;
  background-color: #fff;
}
.subscribe__input::placeholder {
  line-height: 1.55;
  font-size: 18px;
  color: #9EA3B5;
}
.subscribe__button:disabled {
  opacity: 0.5;
  cursor: auto;
}
.subscribe input.error:not(:focus)::placeholder {
  color: rgba(255, 33, 87, 0.86);
  font-weight: 500;
}
.subscribe input.green:not(:focus) {
  color: green;
}

.social-footer {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 5px;
}
@media (max-width: 1430px) {
  .social-footer {
    column-gap: calc(16px + 8 * (100vw - 320px) / 1110);
  }
}
.menu-footer__spollers {
  display: flex;
  flex-wrap: wrap;
  gap: 130px;
}
@media (max-width: 1430px) {
  .menu-footer__spollers {
    gap: calc(20px + 110 * (100vw - 320px) / 1110);
  }
}
@media (max-width: 479.98px) {
  .menu-footer__spollers {
    flex-direction: column;
  }
}
.menu-footer__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
}
@media (max-width: 1430px) {
  .menu-footer__title {
    font-size: calc(18px + 6 * (100vw - 320px) / 1110);
  }
}
._init .menu-footer__title {
  position: relative;
  padding-right: 30px;
  cursor: pointer;
}
._init .menu-footer__title::before, ._init .menu-footer__title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #fff;
  height: 2px;
  width: 8px;
  transition: 0.5s ease 0s;
}
._init .menu-footer__title::before {
  transform: translate(-75%, -50%) rotate(40deg);
}
._init .menu-footer__title::after {
  transform: translate(0, -50%) rotate(-40deg);
}
._init .menu-footer__title._active::before {
  transform: translate(-75%) rotate(-40deg);
}
._init .menu-footer__title._active::after {
  transform: rotate(40deg);
}
.menu-footer__list {
  padding-top: 24px;
}
.menu-footer__item:not(:last-child) {
  margin-bottom: 12px;
}
.menu-footer__link {
  font-size: 20px;
  line-height: 1.6;
}
@media (any-hover: hover) {
  .menu-footer__link:hover {
    text-decoration: underline;
  }
}