@import url(https://fonts.googleapis.com/css?family=Inter:200,300,regular,500,600,700);
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #F9F9FC;
  font-weight: 400;
  font-size: 1rem;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #000b36;
  font-family: "Inter";
}

img {
  vertical-align: top;
}

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

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

input,
button {
  border: none;
  font-family: inherit;
  font-size: inherit;
}

input:focus,
button:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

[class*=__container] {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0px 15px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.wrap {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}

.button {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;
  background-color: #1a22ff;
  padding: 24px 40px;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.button:hover {
  background-color: #151bcc;
}
.button::after {
  content: "";
  display: inline-block;
  background: url("../images/icons/right_arrow_big.svg") 0 0 no-repeat;
  width: 10px;
  height: 16px;
  margin-left: 12px;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 7px;
  padding: 2.5px;
  background: linear-gradient(45deg, rgb(194, 196, 255), rgb(26, 34, 255), rgb(197, 199, 255));
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.button__link {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 100%;
  color: #fff;
}

.button--secondary {
  padding: 22px 40px;
  transition: all 0.2s linear;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  background-color: transparent;
  border: 2px solid #1a22ff;
  color: #1a22ff;
}

.button__link--secondary {
  color: #1a22ff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 100%;
}

.button--secondary:hover {
  opacity: 0.8;
}


@media (max-width: 600px) {
  .button, .button--secondary {
    border-radius: 8px;
    padding: 12px 20px;
    width: 300px;
  }

  .button--secondary {
    padding: 10px 20px;
  }
  .button__link, .button__link--secondary {
    font-size: 16px;
    line-height: 150%;
  }
}
@media (max-width: 460px) {
  .button, .button--secondary {
    width: 100%;
  }
}
.add {
  background: #0057fa;
  padding: 17.5px 0px;
}
.add__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 36px;
}
.add__text {
  font-weight: 500;
  font-size: 0.875rem;
  color: #f9f9fc;
}
.add__button {
  cursor: pointer;
  color: #fcfdff;
}
.add__button:hover {
  text-decoration: underline;
}
.add__button::after {
  content: "";
  display: inline-block;
  background: url("../images/icons/right_arrow.svg") 0 0 no-repeat;
  width: 9px;
  height: 11px;
  margin-left: 12px;
}
.add__link {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 143%;
}

.add__scroller-container {
  display: none;
}

.scroller {
  max-width: 900px;
}
.scroller__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}

.scroller {
  overflow: hidden;
  mask: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, white), color-stop(80%, white), to(transparent));
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  -webkit-mask: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, white), color-stop(80%, white), to(transparent));
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller .scroller__inner {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-animation: scroll 10s linear infinite;
          animation: scroll 10s linear infinite;
}

@-webkit-keyframes scroll {
  to {
    -webkit-transform: translate(calc(-50% - 35px));
            transform: translate(calc(-50% - 35px));
  }
}

@keyframes scroll {
  to {
    -webkit-transform: translate(calc(-50% - 35px));
            transform: translate(calc(-50% - 35px));
  }
}
@media (max-width: 750px) {
  .add {
    padding: 16px 0px;
  }
  .add__content {
    display: none;
  }
  .add__scroller-container {
    display: block;
  }
}
.header {
  background-color: white;
  padding: 15px 0px;
}
.header__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo-main img {
  max-width: 142px;
}

.header__logo-main .mob {
  display: none;
}

.header__logo-investing img {
  max-width: 165px;
}

@media (max-width: 500px) {
  .header__logo:nth-child(2) img {
    width: 90px;
  }
}
.home {
  padding: 84px 0px 100px 0px;
}
.home__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 96px;
}
.home__container::before {
  content: "";
  position: absolute;
  background: url("../images/backgrounds/home-background.png") 0 0 no-repeat;
  width: 150%;
  height: 150%;
  top: -176px;
  left: -136px;
  z-index: -10;
}
.home__content {
  min-width: 453px;
}
.home__title {
  font-weight: 600;
  font-size: 3rem;
  line-height: 121%;
  margin-bottom: 24px;
}
.home__text {
  font-size: 1.5rem;
  line-height: 133%;
  color: #000b36;
  margin-bottom: 32px;
}

.home__buttons {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
}

@media (max-width: 1250px) {
  .home__buttons  {
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .home__buttons  {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 1250px) {
  .home__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    gap: 65px;
  }
  .home__content {
    max-width: 630px;
    min-width: 0;
  }
  .home__image img {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header__logo-main .desk {
    display: none;
  }
  .header__logo-main .mob {
    display: block;
  }
  .home {
    padding: 42px 0px 10px 0px;
  }
  .home__title {
    font-size: 2.25rem;
    margin-bottom: 24px;
  }
  .home__container {
    gap: 38px;
  }
  .home__text {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  .home__container::before {
    background: url("../images/backgrounds/home-background-mobile.png") 0 0 no-repeat;
    width: 150%;
    height: 150%;
    top: 67px;
    left: -3px;
    z-index: -10;
  }
}
.home__image img {
  max-width: 967px;
}
@media (max-width: 400px) {
  .home__image {
    margin-left: 220px;
  }
  .home__image img {
    width: 520px;
  }
}
.about {
  padding: 131px 0px;
}
.about__container {
  position: relative;
}
.about__decor {
  position: absolute;
  top: -600px;
  right: -700px;
  width: 100%;
  height: 100%;
  z-index: -11;
}
.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about__item {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background-color: white;
  padding: 32px 42px 32px 32px;
  max-width: 369px;
  height: 232px;
}
.about__icon {
  margin-bottom: 19px;
}
.about__title {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 2rem;
  line-height: 120%;
}
.about__text {
  line-height: 120%;
}

@media (max-width: 1250px) {
  .about__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
  }
  .about__decor {
    right: -194px;
  }
}
@media (max-width: 600px) {
  .about {
    padding: 48px 0px;
  }
  .about__item {
    padding: 35px 23px 31px 23px;
  }
  .about__title {
    font-size: 1.75rem;
  }
  .about__text {
    font-size: 0.875rem;
  }
  .about__decor {
    right: 298px;
  }
}
.footer {
  padding: 120px 0px 40px 0px;
}

.warning-footer {
  margin-bottom: 45px;
}
.warning-footer__title {
  margin-bottom: 14px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 128.5714285714%;
  letter-spacing: -1%;
  color: #1c1e4e;
  text-transform: uppercase;
}
.warning-footer__paragraph:not(:last-child) {
  margin-bottom: 14px;
  color: #1c1e4e;
}

.info-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.info-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.info-footer__link {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 142.8571428571%;
  text-decoration: underline;
  color: #1c1e4e;
}
.info-footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.policy-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.policy-footer__title {
  font-size: 0.875rem;
  color: #1c1e4e;
}
.policy-footer__title span {
  display: block;
}
.policy-footer__subtitle {
  font-size: 0.875rem;
  color: #1c1e4e;
}
.policy-footer__url {
  color: rgb(0, 87, 250);
  border-bottom: 1px solid rgb(194, 201, 255);
}
.policy-footer__info {
  text-align: right;
}

@media (max-width: 1250px) {
  .info-footer {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  .policy-footer {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 23px;
  }
  .policy-footer__info {
    text-align: left;
    font-size: 0.875rem;
  }
}
@media (max-width: 600px) {
  .footer {
    padding: 40px 0px;
  }
  .policy-footer__title span {
    display: inline;
  }
  .info-footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 17px;
  }
  .info-footer__link {
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
  }
  .warning-footer__paragraph {
    font-size: 14px;
  }
  .warning-footer__title {
    font-size: 0.9375rem;
  }
}
@media (max-width: 400px) {
  .footer__container {
    padding: 0px 40px;
  }
  .info-footer {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .policy-footer {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.meet {
  padding: 80px 0px;
}
.meet__info {
  margin-bottom: 48px;
}
.meet__title {
  font-weight: 600;
  font-size: 3rem;
  line-height: 120%;
  margin-bottom: 8px;
}
.meet__subtitle {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 120%;
  max-width: 503px;
}
.meet__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
}
.meet__item {
  border: 1px solid rgba(0, 11, 54, 0.08);
  border-radius: 12px;
  padding: 24px;
}

.item-meet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.item-meet:not(:last-child) {
  margin-bottom: 16px;
}
.item-meet__number {
  border: 1.33px solid rgba(0, 11, 54, 0.08);
  border-radius: 21px;
}
.item-meet__text:not(:last-child) {
  margin-bottom: 10px;
}

.blue {
  font-weight: 500;
  color: #0057fa;
}

@media (max-width: 1250px) {
  .meet__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .meet__info {
    text-align: center;
  }
  .meet__subtitle {
    margin: 0 auto;
  }
  .meet__about {
    max-width: 800px;
  }
}
.meet__image img {
  max-width: 502px;
}
@media (max-width: 600px) {
  .meet {
    padding: 48px 0px;
  }
  .meet__title {
    font-size: 2rem;
    margin-bottom: 8px;
  }
  .meet__info {
    margin-bottom: 18px;
  }
  .meet__content {
    gap: 24px;
  }
  .meet__about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .meet__subtitle {
    font-size: 1rem;
  }
  .meet__image img {
    width: 100%;
  }
  .item-meet {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 382px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .item-meet__info {
    max-width: 220px;
  }
}
@media (max-width: 500px) {
  .item-meet {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.number__text {
  font-weight: 500;
  font-size: 0.75rem;
  width: 32px;
  text-align: center;
  margin: auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 32px;
}

.swiper-pagination-bullet {
  opacity: 0.3;
  background: #0a0031;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: #0a0031;
  opacity: 1;
}

.swiper-pagination {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 40px;
  padding: 3px 13px;
  max-width: 85px;
  left: 34% !important;
}

.plan {
  padding: 80px 0px;
}
.plan__title {
  font-weight: 600;
  font-size: 3rem;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #000b36;
  text-align: center;
  margin-bottom: 48px;
}
.plan__container {
  position: relative;
}
.plan__decor {
  position: absolute;
  bottom: 450px;
  left: -1700px;
  width: 100%;
  height: 100%;
  z-index: -11;
}
.plan__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.plan__item {
  border: 1px solid rgba(19, 88, 255, 0.24);
  border-radius: 12px;
  padding: 47px;
  background-color: white;
}

.item-plan__cost {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
  border-bottom: 0.79px solid rgba(0, 0, 0, 0.12);
  padding-bottom: 20px;
}
.item-plan__title {
  font-weight: 500;
  font-size: 1.75rem;
}
.item-plan__number {
  font-weight: 500;
  font-size: 2.625rem;
  line-height: 138%;
}
.item-plan__texts {
  margin-bottom: 48px;
}
.item-plan__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.item-plan__text:not(:last-child) {
  margin-bottom: 32px;
}
.item-plan__name {
  font-size: 1.5rem;
  line-height: 100%;
}
.item-plan__button {
  border-radius: 100px;
  padding: 24px 0px;
  background-color: #17f871;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.item-plan__button:hover {
  background-color: #13d15f;
}
.item-plan__link {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 100%;
  text-align: center;
  color: #1c1e4e;
}
.item-plan__discount {
  position: absolute;
  width: 153px;
  height: 153px;
  top: -57px;
  right: -74px;
  text-align: center;
  background: url("../images/decors/star.png") 0 0 no-repeat;
}
.item-plan__percent {
  font-weight: 500;
  font-size: 2.75rem;
  line-height: 120%;
  color: #000b36;
  padding-top: 34px;
}
.item-plan__off {
  font-weight: 500;
  font-size: 1.3125rem;
  line-height: 120%;
  color: #000b36;
  text-align: center;
}
.item-plan__ex-number {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 120%;
}

.item-pro {
  position: relative;
  border: none;
  background: linear-gradient(220deg, #6f5bf4 0%, #735af6 14.5%, #1025e3 51.67%, #e94ff6 84.5%, #a34ff5 100%);
  color: white;
}
.item-pro__cost {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.item-pro .item-plan__cost {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.item-pro .item-plan__title {
  padding-bottom: 16px;
}

.green {
  color: #17f871;
  font-weight: 500;
}

@media (max-width: 1250px) {
  .plan__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 75px;
  }
  .plan__item {
    height: 715px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .plan__texts {
    height: 100%;
  }
  .plan__decor {
    left: -1500px;
  }
}
@media (max-width: 600px) {
  .plan {
    padding: 48px 0px;
  }
  .plan__content {
    gap: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .plan__item {
    padding: 24px 20px 32px 20px;
    border-radius: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: auto;
  }
  .item-pro .item-plan__title {
    padding-bottom: 0;
  }
  .plan__title {
    font-size: 2rem;
    margin-bottom: 32px;
  }
  .item-plan__title {
    font-size: 1.25rem;
  }
  .item-plan__cost {
    margin-bottom: 25px;
    padding-bottom: 16px;
  }
  .item-plan__texts {
    margin-bottom: 38px;
  }
  .item-plan__name {
    font-size: 1.1875rem;
  }
  .item-plan__text:not(:last-child) {
    margin-bottom: 16px;
  }
  .item-plan__link {
    font-size: 0.9375rem;
    border-radius: 79px;
    padding: 11px 18px;
  }
  .item-plan__percent {
    font-size: 1.375rem;
    padding-top: 19px;
    margin-bottom: 0;
  }
  .item-plan__off {
    font-size: 0.625rem;
  }
  .item-plan__number {
    font-size: 2rem;
  }
  .item-plan__ex-number {
    font-size: 1.125rem;
  }
  .item-plan__button {
    width: 208px;
    margin: 0 auto;
    padding: 18px 0px;
  }
  .item-plan__discount {
    background: url("../images/decors/star_mini.png") 0 0 no-repeat;
    max-width: 80px;
    top: -33px;
    left: -13px;
  }
}
.get {
  padding: 80px 0px;
}
.get__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.get__container::before {
  content: "";
  position: absolute;
  width: 153%;
  height: 144%;
  top: -374px;
  left: -362px;
  background: url("../images/backgrounds/get.png") 0 0 no-repeat;
  z-index: -9;
}
.get__decor {
  position: absolute;
  bottom: 450px;
  left: -1700px;
  width: 100%;
  height: 100%;
  z-index: -11;
}
.get__title {
  text-align: center;
  font-weight: 600;
  font-size: 3rem;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #000b36;
  margin-bottom: 8px;
}
.get__subtitle {
  max-width: 511px;
  text-align: center;
  margin: 0px auto 41px auto;
}
.get__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
}

.accordion-get {
  border-radius: 24px;
  padding: 42px;
  background-color: white;
  cursor: pointer;
}
.accordion-get__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.accordion-get__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 98px;
}
.accordion-get__title {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 120%;
}

.accordion-get__content {
  overflow: hidden;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-height: 0;
  padding: 0px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
.accordion-get__list {
  padding-top: 16px;
  padding-left: 23px;
}
.accordion-get__list li:not(:last-child) {
  margin-bottom: 4px;
}
.accordion-get__icon {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.accordion-get__text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
}

.accordion-get__content.active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.accordion-get.active .accordion-get__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (max-width: 600px) {
  .get {
    padding: 48px 0px;
  }
  .get__title {
    font-size: 2rem;
    margin-bottom: 8px;
  }
  .get__subtitle {
    margin-bottom: 20px;
  }
  .get__container::before {
    width: 265%;
    height: 144%;
  }
  .accordion-get {
    border-radius: 24px;
    padding: 32px 20px;
  }
  .accordion-get__title {
    font-size: 1.0625rem;
  }
  .accordion-get__info {
    gap: 16px;
  }
  .accordion-get__text {
    font-size: 0.875rem;
  }
}
.start {
  padding: 80px 0px 141px 0px;
}
.start__info {
  margin-bottom: 42px;
}
.start__text {
  line-height: 120%;
  text-align: center;
  margin-bottom: 8px;
}
.start__title {
  text-align: center;
  font-weight: 600;
  font-size: 3rem;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #000b36;
}
.start__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.start__content::before {
  content: "";
  position: absolute;
  background: url("../images/decors/line.png") 0 0 no-repeat;
  width: 100%;
  height: 100%;
  top: 35%;
  left: 0px;
  z-index: -15;
}

.item-start {
  max-width: 240px;
}
.item-start:last-child {
  max-width: 344px;
}
.item-start__number {
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 60%;
  color: #0057fa;
  margin-bottom: 33px;
}
.item-start__icon {
  margin-bottom: 40px;
}
.item-start__text {
  font-weight: 500;
  font-size: 2rem;
  line-height: 120%;
}

@media (max-width: 993px) {
  .start__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 70px;
    text-align: center;
  }
  .start__content::before {
    display: none;
  }
  .item-start {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
@media (max-width: 600px) {
  .start {
    padding: 48px 0px;
  }
  .start__title {
    font-size: 2rem;
    margin-bottom: 42px;
  }
  .start__content {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
    padding: 0px 64px;
    gap: 40px;
  }
  .start__content::before {
    content: "";
    display: block;
    position: absolute;
    background: url("../images/decors/line-mobile.png") 0 0 no-repeat;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 32px;
    z-index: -15;
  }
  .start__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 16px;
    margin-left: -48px;
    height: 46px;
  }
  .item-start__number {
    font-size: 1.75rem;
    margin-bottom: 8px;
    line-height: 120%;
  }
  .item-start__text {
    font-size: 18px;
  }
}
.track {
  padding: 80px 15px;
}
.track__container {
  position: relative;
}
.track__decor {
  position: absolute;
  top: -1050px;
  right: -700px;
  width: 100%;
  height: 100%;
  z-index: -11;
}
.track__title {
  text-align: center;
  font-weight: 600;
  font-size: 3rem;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #000b36;
  margin-bottom: 80px;
}
.track__image {
  text-align: center;
}
.track__image img {
  max-width: 1248px;
  width: 100%;
}
.track__image-mobile {
  display: none;
}

@media (max-width: 800px) {
  .track__content {
    background-color: white;
    border-radius: 24px;
    padding: 32px 0px;
  }
  .track__decor {
    top: -1550px;
    right: 154px;
  }
  .track__title {
    font-size: 2rem;
    max-width: 260px;
    text-align: center;
    margin: 0 auto 32px auto;
  }
  .track__image {
    display: none;
  }
  .track__image-mobile {
    display: block;
    text-align: center;
  }
  .track__image-mobile img {
    width: 100%;
  }
}
.faq {
  padding: 80px 0px;
}
.faq__title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  font-size: 3rem;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #000b36;
}
.faq__tab-titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.faq__tab-title {
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 160%;
  border: 1px solid rgba(0, 11, 54, 0.08);
  border-radius: 8px;
  padding: 12px 20px;
  cursor: pointer;
}
.faq__tab-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 768px;
  margin: 0 auto;
}

.accordeon-tab {
  display: none;
}
.accordeon-tab__item {
  cursor: pointer;
  border-style: solid;
  border-width: 1px;
  -o-border-image: linear-gradient(to right, rgba(0, 11, 54, 0) 0%, rgba(0, 11, 54, 0) 0%, rgb(0, 0, 0) 48%, rgba(0, 0, 0, 0) 83%) 100% 0 0% 0/2px 0 2px 0 stretch;
     border-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 11, 54, 0)), color-stop(0%, rgba(0, 11, 54, 0)), color-stop(48%, rgb(0, 0, 0)), color-stop(83%, rgba(0, 0, 0, 0))) 100% 0 0% 0/2px 0 2px 0 stretch;
     border-image: linear-gradient(to right, rgba(0, 11, 54, 0) 0%, rgba(0, 11, 54, 0) 0%, rgb(0, 0, 0) 48%, rgba(0, 0, 0, 0) 83%) 100% 0 0% 0/2px 0 2px 0 stretch;
}
.accordeon-tab__item:last-child {
  -o-border-image: linear-gradient(to right, rgba(0, 11, 54, 0) 0%, rgba(0, 11, 54, 0) 0%, rgb(0, 0, 0) 48%, rgba(0, 0, 0, 0) 83%) 100% 0 100% 0/2px 0 2px 0 stretch;
     border-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 11, 54, 0)), color-stop(0%, rgba(0, 11, 54, 0)), color-stop(48%, rgb(0, 0, 0)), color-stop(83%, rgba(0, 0, 0, 0))) 100% 0 100% 0/2px 0 2px 0 stretch;
     border-image: linear-gradient(to right, rgba(0, 11, 54, 0) 0%, rgba(0, 11, 54, 0) 0%, rgb(0, 0, 0) 48%, rgba(0, 0, 0, 0) 83%) 100% 0 100% 0/2px 0 2px 0 stretch;
}
.accordeon-tab__texts.active {
  padding-left: 23px !important;
  padding-bottom: 18px !important;
}
.accordeon-tab__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 24px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 45px;
}
.accordeon-tab__title {
  font-weight: 500;
  font-size: 1rem;
  line-height: 150%;
}

.active-title {
  background-color: rgba(0, 11, 54, 0.08);
}

.accordion-tab__list {
  padding-bottom: 16px;
  padding-left: 23px;
}
.accordion-tab__list li:not(:last-child) {
  margin-bottom: 4px;
}
.accordion-tab__text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
}

.accordeon-tab__icon {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.accordeon-tab__texts {
  overflow: hidden;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-height: 0;
  padding: 0px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.accordion__content.active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.accordion.active .accordeon-tab__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (max-width: 600px) {
  .faq {
    padding: 48px 0px;
  }
  .faq__title {
    font-size: 2rem;
    margin-bottom: 32px;
  }
  .faq__tab-title {
    white-space: nowrap;
  }
  .faq__tab-titles {
    margin-bottom: 32px;
    overflow-y: scroll;
  }
  .accordeon-tab__info {
    padding: 16px;
  }
  .info-footer {
    margin-bottom: 32px;
  }
}
@media (max-width: 473px) {
  .faq__tab-titles {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.active-tab {
  display: block;
}

.accordeon__text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 120%;
  margin-bottom: 15px;
}

.swiper {
  width: 100%;
  height: 440px;
}