@charset "UTF-8";
:root {
  --font-family: "Inter", sans-serif;
  --content-width: 1160px;
  --container-offset: 30px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --black-color: #000000;
  --gray-color: #545E64;
  --darkgray-color: #1D1D1B;
  --accent-color: #877fd6;
  --darkgreen-color: #15222a;
  --font-family-accent: "Helvetica Neue", sans-serif;
  --transition-duration: .2s;
}


/* stylelint-disable */ /* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:checked + .custom-checkbox__content::before {
  background-color: var(--accent-color);
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */ /* stylelint-disable */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  color: var(--black-color);
  font-weight: 400;
  line-height: 1;
  font-size: clamp(
    1rem,
    0.9798553719rem + 0.0826446281vw,
    1.0625rem
  );
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.main {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

@media (max-width: 1024px) {
  .container-hd {
    padding: 0 var(--container-offset);
  }
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

@media (max-width: 576px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .visible-tablet {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .visible-mobile {
    display: none !important;
  }
}

h1, .h1 {
  font-size: clamp(
    2rem,
    1.8388429752rem + 0.6611570248vw,
    2.5rem
  );
  line-height: 150%;
  font-weight: 700;
  font-family: var(--font-family-accent);
}

h2, .h2 {
  font-size: clamp(
    1.5rem,
    1.3388429752rem + 0.6611570248vw,
    2rem
  );
  line-height: 150%;
  font-weight: 700;
  font-family: var(--font-family-accent);
}

h3, .h3 {
  font-size: clamp(
    1.25rem,
    1.1694214876rem + 0.3305785124vw,
    1.5rem
  );
  line-height: 150%;
  font-weight: 700;
  font-family: var(--font-family-accent);
}

h4, .h4 {
  font-size: clamp(
    1rem,
    0.9395661157rem + 0.2479338843vw,
    1.1875rem
  );
  line-height: 150%;
  font-weight: 700;
  font-family: var(--font-family-accent);
}

a,
button,
label,
input,
textarea,
select,
svg * {
  -webkit-transition: all var(--transition-duration) ease-in;
  -o-transition: all var(--transition-duration) ease-in;
  transition: all var(--transition-duration) ease-in;
}

input, select {
  outline: transparent;
}

.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.list__item {
  padding-left: 22px;
  position: relative;
  font-weight: 600;
}
.list__item::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--accent-color);
  position: absolute;
  top: 5px;
  left: 0;
}

.tabs .tabs__nav-btn--active {
  background-color: #ff0001;
}
.tabs .tabs__panel {
  display: none;
}
.tabs .tabs__panel--active {
  display: -ms-grid;
  display: grid;
}

.btn-1 {
  background: -webkit-gradient(linear, left top, right top, from(#603fd9), to(#e83d72));
  background: -o-linear-gradient(left, #603fd9 0%, #e83d72 100%);
  background: linear-gradient(90deg, #603fd9 0%, #e83d72 100%);
  color: var(--light-color);
  padding: 19px 60px;
  border-radius: 1000px;
  font-weight: 600;
  font-size: 20px;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  display: inline-block;
  text-align: center;
  position: relative;
}
.btn-1 span {
  position: relative;
  z-index: 1;
}
.btn-1:hover::after {
  opacity: 1;
}
.btn-1::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgb(77, 47, 186)), to(rgba(157, 55, 150, 0)));
  background: -o-linear-gradient(left, rgb(77, 47, 186) 0%, rgba(157, 55, 150, 0) 100%);
  background: linear-gradient(90deg, rgb(77, 47, 186) 0%, rgba(157, 55, 150, 0) 100%);
  border-radius: 1000px;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  z-index: 0;
}
@media (any-hover: hover) {
  .btn-1:hover {
    -webkit-box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.25);
    background-color: #cf1119;
  }
}
@media (max-width: 768px) {
  .btn-1 {
    font-size: 16px;
    padding: 15px;
  }
}
@media (max-width: 576px) {
  .btn-1 {
    width: 100%;
  }
}

.btn-2 {
  background-color: var(--black-color);
  color: var(--light-color);
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 700;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  display: inline-block;
}
@media (any-hover: hover) {
  .btn-2:hover {
    background-color: var(--accent-color);
    color: var(--light-color);
  }
}

.ymaps-layers-pane {
  filter: grayscale(1);
  -ms-filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
}

.custom-balloon {
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 117%;
  text-align: center;
  color: #fff;
  background-color: var(--accent-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
}
.custom-balloon strong {
  font-weight: 500;
  font-size: 14px;
  line-height: 132%;
  text-align: center;
  color: #fff;
}

.ymaps-map {
  width: 100% !important;
}

.ymaps-b-balloon__content {
  background-color: transparent !important;
}

.ymaps-b-balloon__content-holster {
  padding: 0 !important;
}

.ymaps-b-balloon__tr {
  display: none !important;
}

.ymaps-b-balloon__tl {
  display: none !important;
}

.ymaps-b-balloon__bl {
  display: none !important;
}

.ymaps-b-balloon__br {
  display: none !important;
}

.ymaps-shadows-pane {
  display: none !important;
}

@media (max-width: 576px) {
  .ya-map-style {
    height: 400px !important;
  }
}

.hero-1__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  min-height: 520px;
}
@media (max-width: 768px) {
  .hero-1__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.hero-1__info {
  padding-bottom: 20px;
}
.hero-1__title {
  margin: 0;
  margin-bottom: 40px;
  line-height: 118%;
}
.hero-1__title span {
  background-size: 100% 100%;
  display: inline-block;
  padding: 20px 20px 28px 20px;
  margin: -20px -20px -28px -20px;
  color: var(--light-color);
}
.hero-1__subtitle {
  margin-bottom: 20px;
}
.hero-1__application {
  font-weight: 400;
}
.hero-1__actions {
  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;
}
@media (max-width: 1024px) {
  .hero-1__actions {
    margin: 0 -15px;
  }
}
.hero-1__actions-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 18px 25px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  gap: 10px;
}
@media (max-width: 1024px) {
  .hero-1__actions-links {
    position: static;
    background-color: #15222a;
  }
}
.hero-1__actions-link {
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: var(--light-color);
  color: var(--black-color);
}
@media (any-hover: hover) {
  .hero-1__actions-link:hover {
    background-color: var(--accent-color);
    color: var(--light-color);
  }
}
.hero-1__actions-img {
  width: 100%;
  display: block;
  margin-top: auto;
}
@media (max-width: 1024px) {
  .hero-1__actions-img {
    display: none;
  }
}
.hero-1 .breadcrumbs {
  margin-top: 65px;
}
@media (max-width: 576px) {
  .hero-1 .breadcrumbs {
    margin-top: 30px;
  }
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.faq-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  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;
  font-size: 16px;
  /* line-height: 28px; */
  line-height: 1.25;
  letter-spacing: -0.02em;
  padding: 16px 25px;
  background: #f3f3f3;
  border-radius: 16px;
  color: #222;
}
@media (max-width: 576px) {
  .faq-question {
    padding: 10px 14px;
    border-radius: 10px;
  }
}

.faq-question .icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  font-weight: bold;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease, padding 0.3s ease;
  -o-transition: max-height 0.4s ease, padding 0.3s ease;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
  /* line-height: 24px; */
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(34, 34, 34, 0.631372549);
  padding: 0 23px 16px 23px;
}
@media (max-width: 576px) {
  .faq-answer p {
    padding: 0 14px 14px 14px;
  }
}

.faq-item.active {
  background: #f3f3f3;
  border-radius: 10px;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* enough for content */
}

.faq-item.active .faq-question .icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  content: "–";
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
}

.pagination-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .pagination-list {
    gap: 5px;
    flex-wrap: wrap;
  }
}
.pagination-list__item {
  width: 44px;
  height: 44px;
  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;
  border: 1px solid rgba(0, 0, 0, 0.062745098);
  border-radius: 10px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.05em;
  text-align: center;
  color: rgba(0, 0, 0, 0.1725490196);
}
@media (max-width: 768px) {
  .pagination-list__item {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}
@media (any-hover: hover) {
  .pagination-list__item:hover {
    border: 1px solid transparent;
    background: #e7e5f7;
    color: #877fd6;
  }
}
.pagination-list__item--active {
  border: 1px solid transparent;
  background: #e7e5f7;
  color: #877fd6;
}

.header {
  padding: 20px 0;
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 576px) {
  .header {
    margin-bottom: 65px;
  }
}
.header-test {
  margin-bottom: 35px;
}
.header:has(.burger--active) .header__logo svg path {
  fill: white;
}
.header__navigation {
  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;
  gap: 30px;
}
.header__account {
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: #222;
  padding: 10px 17px;
  background-color: white;
  border-radius: 100px;
}
@media (any-hover: hover) {
  .header__account:hover {
    background: rgba(255, 255, 255, 0.6);
  }
}
.header__account--black {
  color: white;
  background-color: black;
}
@media (max-width: 1024px) {
  .header__account--black {
    color: #222;
    background-color: white;
  }
}
.header__logo {
  position: relative;
  z-index: 13;
}
.header__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: #fff;
  padding: 10px;
  background-color: black;
  border-radius: 100px;
}

@media (max-width: 1024px) {
  .menu {
    position: fixed;
    background: -o-radial-gradient(18.47% 95.48%, 169.19% 101.08%, #3c3663 0%, #191438 43.27%, #3c3663 83.65%);
    background: radial-gradient(169.19% 101.08% at 18.47% 95.48%, #3c3663 0%, #191438 43.27%, #3c3663 83.65%);
    bottom: 0;
    top: 0;
    right: -100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    -webkit-transition: right 0.2s ease-in;
    -o-transition: right 0.2s ease-in;
    transition: right 0.2s ease-in;
    z-index: 12;
    text-align: left;
    padding-top: 120px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .menu--active {
    right: 0;
  }
}
.menu__item {
  padding: 10px 0;
}
@media (max-width: 1024px) {
  .menu__item {
    width: 100%;
    padding: 0;
  }
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 80px;
  -moz-column-gap: 80px;
  column-gap: 80px;
}
@media (max-width: 1024px) {
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
    width: 100%;
  }
}
.menu__link {
  font-weight: 400;
  font-size: 17px;
  color: #fff;
}
.menu__link--black {
  color: black;
}
@media (max-width: 1024px) {
  .menu__link--black {
    color: white;
  }
}
@media (any-hover: hover) {
  .menu__link:hover {
    color: var(--accent-color);
  }
}

.burger {
  display: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
  padding: 11px 17px;
  border-radius: 100px;
  background-color: white;
}
.burger--black {
  background-color: black;
  color: white;
}
.burger--active {
  background-color: white;
  color: black;
}
@media (max-width: 1024px) {
  .burger {
    display: block;
    z-index: 13;
  }
}

.hero {
  background: -o-radial-gradient(18.47% 95.48%, 169.19% 101.08%, #3c3663 0%, #191438 43.27%, #3c3663 83.65%);
  background: radial-gradient(169.19% 101.08% at 18.47% 95.48%, #3c3663 0%, #191438 43.27%, #3c3663 83.65%);
  background-image: url(../img_new/hero-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 60px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .hero {
    margin-bottom: 50px;
  }
}
.hero__title {
  font-weight: 700;
  font-size: 64px;
  text-align: center;
  color: #fff;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 30px;
  display: block;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 36px;
    margin-bottom: 25px;
  }
}
.hero__link {
  display: inline-block;
  margin-bottom: 55px;
}
.hero__text {
  font-size: 20px;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(255, 255, 255, 0.4862745098);
  margin-bottom: 30px;
  display: block;
}
@media (max-width: 576px) {
  .hero__text {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .hero__swiper {
    margin-right: -30px;
  }
}
.hero__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 16px;
  padding: 25px 20px 0 20px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.05em;
  color: #000;
  -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.hero__slide-1 {
  background: -o-linear-gradient(45deg, #fff 0%, #f09092 100%);
  background: linear-gradient(45deg, #fff 0%, #f09092 100%);
}
.hero__slide-2 {
  background: -o-linear-gradient(45deg, #fff 0%, #eff090 100%);
  background: linear-gradient(45deg, #fff 0%, #eff090 100%);
}
.hero__slide-3 {
  background: -o-linear-gradient(45deg, #fff 0%, #f09092 100%);
  background: linear-gradient(45deg, #fff 0%, #f09092 100%);
}
.hero__slide-4 {
  background: -o-linear-gradient(45deg, #fff 0%, #90aaf0 100%);
  background: linear-gradient(45deg, #fff 0%, #90aaf0 100%);
}
.hero__slide-5 {
  background: -o-linear-gradient(45deg, #fff 0%, #d590f0 100%);
  background: linear-gradient(45deg, #fff 0%, #d590f0 100%);
}
.hero__slide-6 {
  background: -o-linear-gradient(45deg, #fff 0%, #ffd06b 100%);
  background: linear-gradient(45deg, #fff 0%, #ffd06b 100%);
}
.hero__slide-img {
  margin-top: auto;
}

.section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .section-head {
    margin-bottom: 30px;
  }
}
.section-head__text {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(34, 34, 34, 0.4862745098);
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .section-head__text {
    font-size: 12px;
  }
}
.section-head__title {
  font-weight: 600;
  font-size: 46px;
  letter-spacing: -0.05em;
  text-align: center;
  color: #222;
  margin: 0;
}
@media (max-width: 768px) {
  .section-head__title {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .section-head__title {
    line-height: 36px;
    font-size: 28px;
  }
}

.advantages {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .advantages {
    margin-bottom: 50px;
  }
}
.advantages__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 1024px) {
  .advantages__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .advantages__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    padding: 25px;
    margin: -25px;
    margin-right: -30px;
  }
}
.advantages__item {
  -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  background-color: white;
  padding: 30px;
}
@media (max-width: 768px) {
  .advantages__item {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .advantages__item {
    min-width: calc(100% - 20px);
    padding: 20px;
    border-radius: 20px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  }
}
.advantages__item-img {
  margin-bottom: 55px;
}
@media (max-width: 768px) {
  .advantages__item-img {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .advantages__item-img {
    margin-bottom: 16px;
    width: 42px;
    height: 42px;
  }
}
.advantages__item-title {
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.05em;
  color: #000;
  margin-bottom: 15px;
  display: block;
}
@media (max-width: 768px) {
  .advantages__item-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.advantages__item-text {
  font-size: 17px;
  line-height: 1.41176;
  letter-spacing: -0.02em;
  color: rgba(34, 34, 34, 0.4862745098);
}

.pricing-plans {
  padding: 60px 0 80px 0;
  background: #3c3663;
  border-radius: 40px;
  margin-bottom: 100px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .pricing-plans {
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .pricing-plans {
    padding: 50px 0;
    border-radius: 0;
  }
}
.pricing-plans::after {
  display: block;
  content: "";
  position: absolute;
  background-image: url(../img_new/pricing-plans-bg.svg);
  width: 1500px;
  height: 1100px;
  bottom: calc(100% - 350px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 576px) {
  .pricing-plans::after {
    display: none;
  }
}
.pricing-plans__title {
  font-weight: 700;
  font-size: 50px;
  letter-spacing: -0.04em;
  text-align: center;
  color: #fff;
  margin: 0;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .pricing-plans__title {
    font-size: 30px;
    margin-bottom: 45px;
  }
}
.pricing-plans__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .pricing-plans__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .pricing-plans__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .pricing-plans__list {
    gap: 20px;
  }
}
.pricing-plans__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 30px 36px;
  border-radius: 30px;
  background-color: white;
  min-height: 540px;
}
.pricing-plans__item:first-child {
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 1024px) {
  .pricing-plans__item {
    min-height: unset;
  }
}
@media (max-width: 576px) {
  .pricing-plans__item {
    padding: 20px;
    border-radius: 20px;
  }
}
.pricing-plans__text {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(34, 34, 34, 0.4235294118);
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .pricing-plans__text {
    font-size: 12px;
  }
}
.pricing-plans__name {
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.05em;
  color: #222;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .pricing-plans__name {
    font-size: 25px;
  }
}
.pricing-plans__block-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 27px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.062745098);
  border-bottom: 1px solid rgba(0, 0, 0, 0.062745098);
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-bottom: 20px;
  gap: 10px;
}
@media (max-width: 576px) {
  .pricing-plans__block-list {
    border-top: unset;
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.pricing-plans__block-item {
  position: relative;
  padding-left: 15px;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #222;
}
.pricing-plans__block-item::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: black;
}
.pricing-plans__buy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.pricing-plans__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 17px;
}
.pricing-plans__price-value-final {
  font-weight: 700;
  font-size: 36px;
  color: #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 576px) {
  .pricing-plans__price-value-final {
    font-size: 25px;
  }
}
.pricing-plans__price-discount {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
  padding: 8px 13px;
  border-radius: 124px;
  background: -webkit-gradient(linear, left top, right top, from(#e1617e), to(#efb445));
  background: -o-linear-gradient(left, #e1617e 0%, #efb445 100%);
  background: linear-gradient(90deg, #e1617e 0%, #efb445 100%);
}
@media (max-width: 576px) {
  .pricing-plans__price-discount {
    font-size: 16px;
  }
}
.popular-tests {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .popular-tests {
    margin-bottom: 50px;
  }
}
.popular-tests__swiper {
  margin: -15px;
  padding: 15px;
}
@media (max-width: 576px) {
  .popular-tests__swiper {
    margin: -5px;
    padding: 5px;
    margin-right: -30px;
  }
}
.popular-tests__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  border-radius: 30px;
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
}
@media (max-width: 576px) {
  .popular-tests__link {
    -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
  }
}
.popular-tests__img {
  width: 100%;
  border-radius: 30px 30px 0 0;
}
.popular-tests__body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 23px 23px 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
@media (max-width: 576px) {
  .popular-tests__body {
    padding: 20px;
  }
}
.popular-tests__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #877fd6;
}
.popular-tests__name {
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.05em;
  color: #000;
}
@media (max-width: 1024px) {
  .popular-tests__name {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .popular-tests__name {
    font-size: 22px;
  }
}
.popular-tests__desc {
  font-size: 17px;
  letter-spacing: -0.02em;
  color: rgba(34, 34, 34, 0.5215686275);
}
@media (max-width: 576px) {
  .popular-tests__desc {
    font-size: 16px;
  }
}

.firs-test {
  padding-bottom: 100px;
  margin-bottom: 100px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .firs-test {
    margin-bottom: 50px;
    padding: 0;
  }
}
.firs-test::after {
  display: block;
  content: "";
  position: absolute;
  top: 150px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url(../img_new/first-test-bg.svg);
  width: 1280px;
  height: 680px;
  z-index: -1;
}
@media (max-width: 1024px) {
  .firs-test::after {
    display: none;
  }
}
.firs-test__steps {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .firs-test__steps {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .firs-test__steps {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.firs-test__step {
  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;
  text-align: center;
}
@media (max-width: 576px) {
  .firs-test__step {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
    gap: 17px;
    text-align: left;
  }
}
.firs-test__step-num {
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.05em;
  text-align: center;
  color: #877fd6;
  width: 60px;
  height: 60px;
  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;
  border-radius: 16px;
  background-color: rgba(136, 127, 214, 0.137254902);
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .firs-test__step-num {
    margin: 0;
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 10px;
  }
}
.firs-test__step-name {
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.05em;
  color: #000;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .firs-test__step-name {
    margin: 0;
    font-size: 22px;
  }
}
.firs-test__step-desc {
  font-size: 17px;
  line-height: 1.41176;
  letter-spacing: -0.02em;
  color: rgba(34, 34, 34, 0.5058823529);
  margin: 0;
}
@media (max-width: 576px) {
  .firs-test__step-desc {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }
}
.text-mask-1 {
  background: -webkit-gradient(linear, left top, right top, from(#e1617e), to(#7e82df));
  background: -o-linear-gradient(left, #e1617e 0%, #7e82df 100%);
  background: linear-gradient(90deg, #e1617e 0%, #7e82df 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reviews {
  position: relative;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .reviews {
    margin-bottom: 50px;
  }
}
.reviews__swiper-wrapper {
  position: relative;
}
@media (max-width: 576px) {
  .reviews__swiper-wrapper {
    margin-right: -30px;
  }
}
.reviews__swiper-wrapper .swiper-button-prev {
  width: 75px;
  height: 75px;
  margin: 0;
  padding: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -100px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 100%;
}
.reviews__swiper-wrapper .swiper-button-prev svg {
  width: 100%;
  height: 100%;
}
.reviews__swiper-wrapper .swiper-button-prev::after {
  display: none;
}
.reviews__swiper-wrapper .swiper-button-next {
  width: 75px;
  height: 75px;
  margin: 0;
  padding: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -100px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 100%;
}
.reviews__swiper-wrapper .swiper-button-next::after {
  display: none;
}
.reviews__slide {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 1024px) {
  .reviews__slide {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .reviews__slide {
    gap: 0;
  }
}
.reviews__slide-img {
  border-radius: 30px;
  width: 100%;
}
.reviews__slide-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 30px;
  padding: 40px 40px 40px 45px;
  background-color: #f3f3f3;
}
@media (max-width: 768px) {
  .reviews__slide-content {
    padding: 24px 0 0 0;
    background-color: unset;
  }
}
.reviews__slide-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 37px;
}
@media (max-width: 768px) {
  .reviews__slide-head {
    margin-bottom: 14px;
  }
}
@media (max-width: 576px) {
  .reviews__slide-pagination {
    display: none;
  }
}
.reviews__slide-title {
  font-weight: 600;
  font-size: 26px;
  line-height: 32px;
  letter-spacing: -0.05em;
  color: #000;
  max-width: 400px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .reviews__slide-title {
    font-size: 22px;
  }
}
.reviews__slide-text {
  font-size: 17px;
  line-height: 1.41176;
  letter-spacing: -0.02em;
  color: #222;
  margin: 0;
}

.faq {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .faq {
    margin-bottom: 50px;
  }
}
.faq__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 80px;
}
@media (max-width: 768px) {
  .faq__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}
.faq__title {
  font-weight: 600;
  font-size: 46px;
  /* line-height: 50px; */
  line-height: 1.08696;
  letter-spacing: -0.05em;
  color: #222;
  margin: 0;
}
@media (max-width: 768px) {
  .faq__title {
    font-size: 36px;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .faq__title {
    font-size: 30px;
  }
}

.test {
  margin-bottom: 80px;
}
.test__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 44px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .test__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;
    gap: 0;
    margin-bottom: 24px;
  }
}
.test__content--col {
  -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;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
.test__content--col .test__info-text {
  text-align: center;
}
.test__content--col .test__info-q {
  text-align: center;
}
.test__info {
  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;
  padding-bottom: 35px;
  max-width: 330px;
}
@media (max-width: 768px) {
  .test__info {
    text-align: center;
  }
  .container {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .test__info {
    gap: 4px;
  }
}
.test__info-text {
  font-size: 17px;
  letter-spacing: -0.02em;
  color: rgba(34, 34, 34, 0.4392156863);
}
.test__info-q {
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.05em;
  color: #222;
}
@media (max-width: 576px) {
  .test__info-q {
    font-size: 22px;
  }
}
.test__body {
  padding: 38px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  border-radius: 30px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  background-color: white;
}
@media (max-width: 768px) {
  .test__body {
    width: 100%;
  }
  .test__body svg {
    width: 100%;
    height: 100%;
  }
}
.test__variants {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .test__variants {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 30px;
    border-radius: 10px;
  }
  .test__variants--col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}
.test__variants--col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.test__variant {
  padding: 15px;
  border: 3px solid transparent;
  border-radius: 16px;
  cursor: pointer;
}
.test__variant.disabled {
    cursor: not-allowed;
    opacity: .5;
pointer-events: none;
}
.test__variant:has(input:checked), .test__variant.active {
  border: 3px solid #603fd9;
  -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .test__variant {
    padding: 5px;
  }
  .test__variant svg {
    width: 100%;
    height: 100%;
  }
}
.test__variant-text {
  font-weight: 500;
  font-size: 20px;
  color: #222;
  padding: 23px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  width: 100%;
}
.test__variant-text:has(input:checked) {
  border: 3px solid #603fd9;
  background-color: #e7e5f7;
}
@media (any-hover: hover) {
  .test__variant:hover {
    border: 3px solid #603fd9;
    -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  }
}

.result {
  max-width: 830px;
  margin: 0 auto;
}
.result__test {
  text-align: center;
  display: block;
  font-size: 17px;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(34, 34, 34, 0.5137254902);
  margin-bottom: 10px;
}
.result__text {
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.05em;
  text-align: center;
  color: #222;
  display: block;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .result__text {
    font-size: 22px;
  }
}
.result__block {
  padding: 40px;
  background-color: #e7e5f7;
  border-radius: 16px;
  margin-bottom: 50px;
}
@media (max-width: 576px) {
  .result__block {
    padding: 25px;
    margin-bottom: 40px;
  }
}
.result__balls {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.41176;
  letter-spacing: -0.02em;
  color: #603fd9;
  margin-bottom: 30px;
  display: block;
}
.result__desc {
  font-weight: 400;
  font-size: 16px;
  color: #222;
  max-width: 580px;
  line-height: 1.5;
  margin: 0;
}
.result__incorrect {
  margin-bottom: 40px;
}
.result__title {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.41176;
  letter-spacing: -0.02em;
  color: #222;
  display: block;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .result__title {
    margin-bottom: 10px;
  }
}
.result__incorrect-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
.result__incorrect-name {
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(34, 34, 34, 0.6235294118);
  margin-bottom: 14px;
  display: block;
}
.result__incorrect-task {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 22px;
}
@media (max-width: 576px) {
  .result__incorrect-task {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.result__incorrect-task-block {
  padding: 19px;
  border-radius: 15px;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
}
.result__incorrect-answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
}
.result__incorrect-answer-item {
  padding: 10px;
  border-radius: 10px;
}
.result__incorrect-answer-red {
  border: 2px solid #e83d72;
}
.result__incorrect-answer-green {
  border: 2px solid #4db45e;
}
.result__recommendations {
  margin-bottom: 100px;
}
@media (max-width: 576px) {
  .result__recommendations {
    margin-bottom: 50px;
  }
}
.result__recommendations-title {
  margin-bottom: 12px;
}
.result__recommendations-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
.result__recommendations-item {
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.7);
}
.result__recommendations-item a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: inherit;
}

.footer {
  padding: 60px 0;
  background-color: #1f1a40;
  overflow: hidden;
  margin-top: auto;
}
@media (max-width: 1024px) {
  .footer {
    padding: 40px 0;
  }
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.062745098);
  margin-bottom: 50px;
  position: relative;
}
@media (max-width: 1024px) {
  .footer__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .footer__content {
    padding-bottom: 34px;
    margin-bottom: 30px;
  }
}
.footer__content::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: -60px;
  width: 2000%;
  height: 830px;
  background-image: url(../img_new/footer-bg.svg);
  z-index: 0;
}
@media (max-width: 1024px) {
  .footer__content::after {
    display: none;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .footer__nav {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }
}
@media (max-width: 768px) {
  .footer__nav {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
}
@media (max-width: 576px) {
  .footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 44px;
  }
}
.footer__nav-list {
  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;
}
@media (max-width: 576px) {
  .footer__nav-list:nth-child(2) {
    display: none;
  }
}
.footer__nav-link {
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #fff;
}
.footer__nav-link:hover {
  color: var(--accent-color);
}
.footer__nav-link--gray {
  color: rgba(255, 255, 255, 0.2941176471);
}
.footer__nav-link--gray:hover {
  color: var(--accent-color);
}
.footer__account {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
  background-color: white;
  padding: 11px 17px;
  border-radius: 100px;
  position: relative;
  z-index: 2;
}
@media (any-hover: hover) {
  .footer__account:hover {
    background-color: rgba(255, 255, 255, 0.6);
  }
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .footer__bottom {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.footer__bottom-item {
  font-size: 15px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.2549019608);
  margin: 0;
}
.footer__bottom-item a {
  color: inherit;
}

html, body, h1, h2, h3, h4, h5, h6, .page__body {
  font-family: 'Inter', arial, sans-serif;
}