.flex-center {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  display: flex;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

:root {
  font-size: 16px;
  scroll-behavior: smooth;
  --fontBody: "manrope";
  --colorBlack: #141414;
  --colorDarkGrey: #383838;
  --colorBlue: #00AAFF;
  --colorTextLink: #0099F7;
  --colorLightLine: #E5E5EB;
  --colorLightText: #727276;
  --colorGreen: #05C155;
  --colorRed: #FF6163;
}

body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100vh;
  color: var(--colorBlack);
  background: #fff;
  font: 1rem/1.5 var(--fontBody);
}

a {
  text-decoration-color: transparent;
  color: currentColor;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  transition-duration: 0.3s;
}

a img,
a svg {
  display: block;
}

path {
  transition: stroke 0.3s;
}

label {
  display: block;
  cursor: pointer;
}

input {
  background: transparent;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
}

input:focus {
  outline: none;
}

textarea {
  outline: none !important;
  font-family: inherit;
  font-size: inherit;
}

[type=submit],
button {
  background: transparent;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

button {
  padding: 0;
  font-family: inherit;
  border: none;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

button img,
button svg {
  display: block;
}

::-moz-placeholder {
  opacity: 1;
  color: #6C6C6C;
}

::placeholder {
  opacity: 1;
  color: #6C6C6C;
}

mark {
  background: transparent;
  color: inherit;
  font-size: inherit;
}

small,
time {
  font-size: 0.875rem;
  display: block;
  color: var(--colorLightText);
}

h1 {
  font: 800 1.625rem/1.35 var(--fontBody);
}

h2 {
  font: 700 1.375rem/1.35 var(--fontBody);
  margin-bottom: 0.64em;
}

* + h2 {
  margin-top: 0.91em;
}

h3 {
  font: 700 1.125rem/1.35 var(--fontBody);
  margin-bottom: 0.67em;
}

* + h3 {
  margin-top: 0.89em;
}

h4 {
  font: 700 1rem/1.5 var(--fontBody);
  margin-bottom: 0.75em;
}

* + h4 {
  margin-top: 1em;
}

.btn-white,
.btn-blue,
.btn-bordered {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: pointer;
  padding: 0 5px;
  border-radius: 6px;
  gap: 10px;
}

.btn-bordered {
  border: 1px solid var(--colorBlue);
  color: var(--colorTextLink);
  font-weight: 500;
}

.btn-bordered:hover {
  color: #fff;
  background: var(--colorTextLink);
  border-color: var(--colorTextLink);
}

.btn-blue {
  color: #fff;
  background: var(--colorBlue);
  font-weight: 600;
}

.btn-blue:hover {
  background: var(--colorTextLink);
}

.btn-white {
  color: var(--colorTextLink);
  background: #fff;
  font-weight: 600;
}

.btn-white:hover {
  background: var(--colorRed);
  color: #fff;
}

@font-face {
  font-family: "manrope";
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Manrope-VariableFont_wght.woff2") format("woff2");
}

.container {
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.margin-top {
  margin-top: 32px;
}

.bottom-grey {
  background: #F5F5F7;
  padding-top: 32px;
  padding-bottom: 32px;
}

.collapse__btn {
  cursor: pointer;
  transition-duration: 0.3s;
}

.collapse__caret {
  transition-duration: 0.3s;
  flex-shrink: 0;
}

.open > .collapse__btn > .collapse__caret {
  transform: rotate(180deg);
}

.collapse__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s;
}

[data-tooltip] {
  cursor: pointer;
  transition: 0.3s;
}

.ico-question {
  color: #C8C8C8;
}

.ico-question:hover {
  color: var(--colorBlack);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--colorLightText);
}

.breadcrumbs li + li::before {
  content: "/";
  margin-left: 0.25em;
}

.main-aside {
  display: grid;
  gap: 24px;
}

.sots {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sots small {
  width: 100%;
}

.swiper-nav-wrapper {
  margin-right: -16px;
  position: relative;
}

.link-light a,
a.link-light {
  color: var(--colorLightText);
}

.link-light a:hover,
a.link-light:hover {
  color: var(--colorTextLink);
}

.link-blue a,
a.link-blue {
  color: var(--colorTextLink);
}

.link-blue a:hover,
a.link-blue:hover {
  color: var(--colorRed);
}

#tooltip {
  display: none;
  max-width: 270px;
  padding: 14px 16px;
  color: #fff;
  font-size: 0.875rem;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1215686275);
  background: #2B2B2B;
  border-radius: 12px;
}

.swiper-slide {
  box-sizing: border-box;
}

.swiper-pagination,
.swiper-button-prev,
.swiper-button-next {
  display: none;
}

.swiper-pagination {
  justify-content: center;
  position: static;
  margin-top: 24px;
  gap: 12px;
}

.swiper-pagination-bullet {
  margin: 0 !important;
  opacity: 1;
  width: 12px;
  height: 12px;
  border: 1px solid var(--colorBlue);
  background: transparent;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  background: var(--colorBlue);
}

.swiper-button-prev,
.swiper-button-next {
  margin: 0;
  width: 48px;
  height: 48px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1215686275);
  border-radius: 50%;
  background: #fff;
  color: inherit;
  top: calc(50% - 18px);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: auto;
  height: auto;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: var(--colorBlue);
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}

.swiper-button-prev {
  left: 0;
  transform: translateY(-50%);
}

.swiper-button-next {
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}

.article-banner {
  border-radius: 24px;
  background: #F2FCFF;
  padding: 16px 0;
  margin: 0 auto 24px;
  width: 100%;
  max-width: 1360px;
}

.article-banner__body {
  margin-top: 16px;
}

.article-banner__body h1 {
  margin-bottom: 16px;
}

.article-banner__body time {
  margin-top: 24px;
}

.article-banner__img {
  display: block;
  border-radius: 16px;
  -o-object-position: center center;
  object-position: center center;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1.37;
  margin-bottom: 16px;
}

.article-banner__about {
  font-weight: 500;
}

.article-banner__small {
  padding-bottom: 0px;
}

.comments h2 {
  margin-bottom: 1em;
}

.comments .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 288px;
  border: 1px solid var(--colorLightLine);
  border-radius: 12px;
  padding: 24px 20px 20px;
  gap: 12px;
  height: auto;
}

.comments .swiper-slide a {
  align-self: flex-start;
  margin-top: auto;
}

.comments .swiper-pagination {
  display: none;
}

.comments__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.comments__name p {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal;
  font-size: 1.25rem;
  font-weight: 600;
}

.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
}

.consent-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.consent-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.consent-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(420px, 100%);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.consent-modal__title {
  margin: 0;
  padding: 24px 24px 0;
  font: 700 1.125rem/1.35 var(--fontBody);
  color: var(--colorBlack);
}

.consent-modal__body {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.consent-modal__body p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--colorDarkGrey);
  line-height: 1.5;
}

.consent-modal__label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--colorBlack);
  line-height: 1.45;
}

.consent-modal__label input[type=checkbox] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--colorBlue);
}

.consent-modal__label a {
  color: var(--colorTextLink);
  text-decoration: underline;
  text-decoration-color: var(--colorTextLink);
}

.consent-modal__continue {
  padding: 12px;
  width: 100%;
  font-size: 1rem;
}

.consent-modal__continue:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-footer {
  padding-top: 24px;
  padding-bottom: 24px;
  background: var(--colorDarkGrey);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-top: auto;
}

.page-footer__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  font-weight: 500;
}

.page-footer__menu a:hover {
  color: #fff;
}

.page-footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
  margin-top: 24px;
}

.page-header {
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-header__logo img {
  display: block;
  width: 107px;
}

.page-header__login {
  height: 40px;
  padding: 0 24px;
  font-size: 0.875rem;
}

.main-banner-bonus {
  margin-left: 16px;
  margin-right: 16px;
  border-radius: 24px;
  background: linear-gradient(170.67deg, #0A73BE 27.06%, #04F4CC 62.24%, #0A73BE 98.07%);
  padding: 24px 8px 36px;
  width: calc(100% - 32px);
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
}

.main-banner-bonus h2 {
  margin-bottom: 20px;
}

.main-banner-bonus li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.main-banner-bonus li + li {
  margin-top: 12px;
}

.main-banner-bonus svg {
  flex-shrink: 0;
}

.main-banner-bonus__img {
  display: block;
  margin: 5px auto 0;
}

.main-banner-bonus__reg {
  height: 60px;
  border-radius: 12px;
  width: 244px;
  margin: 10px auto 0;
  font-size: 1rem;
  align-self: start;
}

.main-more h2 {
  margin-bottom: 16px;
}

.main-more p + p {
  margin-top: 0.875em;
}

.main-news .swiper {
  margin-right: -16px;
}

.main-news__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
  justify-content: space-between;
}

.main-news__header h2 {
  margin: 0;
}

.main-news__item {
  border-radius: 12px;
  overflow: hidden;
  width: 288px;
  background: #fff;
}

.main-news__img {
  display: block;
  aspect-ratio: 1.6;
  -o-object-position: center center;
  object-position: center center;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.main-news__body {
  padding: 16px;
}

.main-news__body p {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal;
  font-weight: 600;
}

.main-news__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.main-plan {
  border-radius: 12px;
  overflow: hidden;
}

.main-plan .collapse__btn {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.56;
  text-transform: uppercase;
  color: #fff;
  background: var(--colorBlue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.main-plan.open {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1215686275);
}

.main-plan + .main-plan {
  margin-top: 12px;
}

.main-plan--max .collapse__btn {
  background: var(--colorGreen);
}

.main-plan__body {
  padding: 0 20px 20px;
}

.main-plan__option {
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  border-bottom: 1px solid var(--colorLightLine);
}

.main-plan__option svg {
  flex-shrink: 0;
}

.main-plan__option p {
  flex-grow: 1;
}

.main-plan__option mark {
  font-weight: 700;
}

.main-plan__cost {
  margin-top: 12px;
  text-align: center;
  line-height: 1.33;
}

.main-plan__cost mark {
  display: block;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.5rem;
}

.main-plan__get {
  max-width: 400px;
  margin: 12px auto 0;
  height: 48px;
}

.main-plan-desc {
  overflow: hidden;
  display: none;
}

.main-plan-desc table {
  border-spacing: 24px 0;
  width: calc(100% + 48px);
  border-collapse: separate;
  margin-left: -24px;
  font-weight: 600;
}

.main-plan-desc table .btn-blue {
  font-weight: 500;
}

.main-plan-desc tr:nth-child(n+3) td {
  position: relative;
}

.main-plan-desc tr:nth-child(n+3) td::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  right: -12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1019607843);
}

.main-plan-desc tr:last-child td {
  background: transparent;
}

.main-plan-desc tr:last-child td::before {
  display: none;
}

.main-plan-desc th {
  font: 700 1.125rem/1.56 var(--fontBody);
  color: #fff;
  text-transform: uppercase;
  padding: 14px 5px;
}

.main-plan-desc th:first-child {
  width: 100%;
}

.main-plan-desc th + th {
  position: relative;
}

.main-plan-desc th + th span {
  position: relative;
  z-index: 1;
  display: block;
  width: 180px;
}

.main-plan-desc th + th::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px 12px 0 0;
  background: var(--colorBlue);
}

.main-plan-desc th:last-child::before {
  background: var(--colorGreen);
}

.main-plan-desc td {
  padding: 16px 0;
}

.main-plan-desc td + td {
  text-align: center;
  background: #F6F6F7;
}

.main-plan-desc td:last-child {
  background: #EBFFF1;
}

.main-plan-desc__option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.main-top {
  background: #F2FCFF;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 60px;
}

.main-top::before,
.main-top::after {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  position: absolute;
  background: url(../img/main-bg-top.svg) center center/contain no-repeat;
  pointer-events: none;
}

.main-top::before {
  content: "";
  top: -95px;
  right: -89px;
}

.main-banner {
  margin-top: 24px;
}

.main-banner h2 {
  margin: 12px 0 24px;
  font-size: 1.25rem;
}

.main-banner__feature {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 16px;
  align-items: center;
  font-weight: 500;
}

.main-banner__feature + .main-banner__feature {
  font-size: 1.0625rem;
  margin-top: 12px;
}

.main-banner__reg {
  width: 244px;
  height: 60px;
  border-radius: 12px;
  margin-top: 20px;
}

.main-banner__img {
  display: block;
  margin: 16px auto 0;
  width: 500px;
}

.main-modules {
  background: #fff;
  padding: 32px 16px 0;
  max-width: 1360px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.main-modules h2 {
  margin: 0 auto 1em;
  max-width: 1200px;
}

.main-modules__body {
  display: grid;
  gap: 12px;
  margin: 0 auto;
  max-width: 1200px;
}

.main-modules__item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid var(--colorLightLine);
  border-radius: 16px;
  padding: 20px 24px 24px;
}

.main-modules__item h3 {
  margin-bottom: 6px;
}

.main-modules__about {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 12px;
  margin-top: auto;
}

.main-modules__about a {
  font-size: 0.875rem;
}

.similars h2 {
  margin-bottom: 32px;
}

.similars__item {
  width: 288px;
  background: #fff;
  border-radius: 12px;
  height: auto;
  overflow: hidden;
}

.similars__img {
  width: 100%;
  display: block;
  -o-object-position: center center;
  object-position: center center;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1.6;
}

.similars__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 16px;
  height: 167px;
}

.similars__body p {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal;
  font-weight: 600;
}

.similars__more {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-block p + p {
  margin-top: 0.875em;
}

.text-block ul,
.text-block ol {
  line-height: 1.375;
}

.text-block ul:not(:first-child),
.text-block ol:not(:first-child) {
  margin-top: 0.875em;
}

.text-block ul:not(:last-child),
.text-block ol:not(:last-child) {
  margin-bottom: 0.875em;
}

.text-block li + li {
  margin-top: 0.5em;
}

.text-block ul {
  list-style-type: none;
  margin-left: 0.685em;
}

.text-block ul li {
  position: relative;
  padding-left: 17px;
}

.text-block ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--colorBlue);
  position: absolute;
  left: 0;
  top: 0.65em;
}

.text-block ol {
  margin-left: 1.5625em;
}

.text-block ol ::marker {
  font-weight: 700;
}

.text-block blockquote {
  line-height: 1.375;
  font-weight: 600;
  padding-left: 1em;
  border-left: 4px solid var(--colorBlue);
}

.text-block blockquote:not(:first-child) {
  margin-top: 1em;
}

.text-block blockquote:not(:last-child) {
  margin-bottom: 1em;
}

.text-block figure {
  line-height: 1.375;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 16px;
  background: #F2FCFF;
}

.text-block figure:not(:first-child) {
  margin-top: 1.25em;
}

.text-block figure:not(:last-child) {
  margin-bottom: 1.25em;
}

.text-block__cta {
  display: flex;
  justify-content: center;
  margin-top: 1.5em;
  margin-bottom: 48px;
}

.text-block__cta .main-banner__reg {
  margin-top: 0;
}

@media (min-width: 576px) {
  .comments .swiper-slide {
    width: 384px;
    padding: 32px;
  }

  .comments__header {
    flex-direction: row;
  }

  .comments__header img {
    order: 1;
    margin-left: auto;
  }

  .main-modules__body {
    grid-template-columns: 1fr 1fr;
  }

  .similars__item {
    width: 384px;
  }

  .similars__img {
    aspect-ratio: 1.75;
  }

  .similars__body {
    padding: 20px 24px 24px;
    height: 164px;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 0.75em;
  }

  * + h2 {
    margin-top: 1em;
  }

  h3 {
    font-size: 1.5rem;
  }

  * + h3 {
    margin-top: 1em;
  }

  h4 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0.8em;
  }

  * + h4 {
    margin-top: 1em;
  }

  .margin-top {
    margin-top: 60px;
  }

  .bottom-grey {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .main-aside {
    grid-template-columns: 1fr 282px;
  }

  .article-banner {
    padding-bottom: 40px;
    margin-bottom: 64px;
  }

  .article-banner__body {
    display: grid;
    grid-template-columns: 1fr max-content;
    gap: 24px;
  }

  .article-banner__body h1 {
    margin-bottom: 24px;
  }

  .article-banner__img {
    width: 300px;
    aspect-ratio: 1.31;
    margin: 0;
    order: 1;
  }

  .consent-modal__title {
    font-size: 1.25rem;
  }

  .page-footer {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .page-footer__menu {
    flex-direction: row;
  }

  .page-footer__copyright {
    margin: 0;
    padding: 0;
    border: none;
    order: -1;
  }

  .page-header {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .page-header__logo img {
    width: 178px;
  }

  .page-header__login {
    height: 48px;
    padding: 0 32px;
    font-size: 1rem;
  }

  .main-banner-bonus {
    font-size: 1.25rem;
  }

  .main-banner-bonus .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 0 24px;
    align-items: center;
  }

  .main-banner-bonus__img {
    grid-row: span 2;
    margin: 0;
  }

  .main-banner-bonus__reg {
    margin: 0;
  }

  .main-news .swiper {
    margin-right: 0;
  }

  .main-news .swiper-wrapper {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
  }

  .main-news__item {
    margin: 0;
    width: 100%;
  }

  .main-news__item:not(.main-news__item--big) {
    display: grid;
    grid-template-columns: max-content 1fr;
    height: 144px;
  }

  .main-news__item:not(.main-news__item--big) .main-news__img {
    width: 184px;
    height: 100%;
  }

  .main-news__item:not(.main-news__item--big) .main-news__body {
    padding: 20px 24px 20px 20px;
  }

  .main-news__img {
    aspect-ratio: initial;
  }

  .main-news__body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .main-news__more {
    margin-top: auto;
  }

  .main-news__item--big {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-row: span 3;
  }

  .main-news__item--big .main-news__img {
    height: 324px;
  }

  .main-news__item--big .main-news__body {
    padding: 20px 24px 24px;
    flex-grow: 1;
  }

  .main-top::before,
  .main-top::after {
    width: 600px;
    height: 600px;
  }

  .main-top::before {
    top: -209px;
    right: -164px;
  }

  .main-top::after {
    content: "";
    top: 278px;
    left: -275px;
  }

  .main-banner {
    margin-top: 36px;
    position: relative;
    padding-bottom: 40px;
  }

  .main-banner h1,
  .main-banner h2 {
    max-width: 68%;
    position: relative;
    z-index: 1;
  }

  .main-banner h2 {
    margin: 16px 0 32px;
    font-size: 2rem;
  }

  .main-banner__feature {
    max-width: 513px;
    font-size: 1.125rem;
  }

  .main-banner__feature + .main-banner__feature {
    font-size: 1rem;
    margin-top: 16px;
  }

  .main-banner__reg {
    margin-top: 40px;
  }

  .main-banner__img {
    margin: 0;
    position: absolute;
    right: -54px;
    top: 0;
    max-width: 55%;
  }

  .main-modules {
    padding-top: 64px;
  }

  .main-modules__item {
    padding: 28px 32px 24px;
  }

  .main-modules__item h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .text-block__cta {
    margin-bottom: 64px;
  }
}

@media (min-width: 992px) {
  .margin-top {
    margin-top: 120px;
  }

  .bottom-grey {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .main-aside {
    -moz-column-gap: 64px;
    column-gap: 64px;
  }

  .article-banner__img {
    width: 446px;
  }

  .main-banner-bonus {
    padding: 0 24px;
  }

  .main-banner-bonus .container {
    grid-template-columns: 1fr max-content;
  }

  .main-plan {
    display: none;
  }

  .main-plan-desc {
    display: block;
  }

  .main-banner {
    padding-bottom: 80px;
  }

  .main-banner h1 {
    font-size: 2.5rem;
  }

  .main-modules__body {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1232px) {
  .container {
    padding-left: calc(50% - 600px);
    padding-right: calc(50% - 600px);
  }

  .main-aside {
    -moz-column-gap: 126px;
    column-gap: 126px;
  }

  .swiper-nav-wrapper {
    margin-right: 0;
    padding: 0 24px;
  }

  .swiper-pagination,
  .swiper-button-prev,
  .swiper-button-next {
    display: flex;
  }

  .comments .swiper-pagination {
    display: flex;
  }

  .main-banner-bonus {
    padding: 0;
  }

  .main-plan-desc th + th span {
    width: 204px;
  }

  .main-banner__img {
    max-width: none;
  }

  .main-modules__body {
    gap: 24px;
  }
}

@media (min-width: 1360px) {
  .main-modules {
    border-radius: 32px;
  }
}

@media (min-width: 1392px) {
  .swiper-nav-wrapper {
    padding: 0;
  }

  .swiper-button-prev {
    left: -24px;
  }

  .swiper-button-next {
    right: -24px;
  }

  .main-banner-bonus {
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  h2.h2-big {
    font-size: 1.5rem;
  }

  .main-more h2 {
    margin-bottom: 1em;
  }
}