:root {
  --size: 500;
}

@media screen and (min-height: 480px) {
  :root {
    --size: 900;
  }
}
@media screen and (min-height: 768px) {
  :root {
    --size: 900;
  }
}
.content-page {
  padding-bottom: calc(120 / var(--size) * 100 * var(--vh, 1vh));
}
@media (max-width: 480px) {
  .content-page {
    padding-bottom: calc(32 / var(--size) * 100 * var(--vh, 1vh));
  }
}

.content-page__body {
  width: 81%;
}
@media (max-width: 1439px), (min-width: 1440px) and (orientation: portrait) {
  .content-page__body {
    width: 91%;
  }
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .content-page__body {
    width: 100%;
  }
}

.content-page .blog-content ol li {
  font-family: Oswald;
  font-weight: 700;
  text-transform: uppercase;
}
.content-page .blog-content ol li::marker {
  color: #80d207;
  font-family: Oswald;
  font-weight: 700;
}

.content-page .blog-content ol + p {
  padding-left: calc(28 / var(--size) * 100 * var(--vh, 1vh));
}

.under-block {
  margin-top: calc(96 / var(--size) * 100 * var(--vh, 1vh));
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .under-block {
    margin-top: calc(56 / var(--size) * 100 * var(--vh, 1vh));
  }
}
@media (max-width: 480px) {
  .under-block {
    margin-top: calc(40 / var(--size) * 100 * var(--vh, 1vh));
  }
}

.under-block__title {
  font-family: Oswald;
  font-weight: 500;
  font-size: calc(48 / var(--size) * 100 * var(--vh, 1vh));
  text-transform: uppercase;
  color: #fff;
  margin-bottom: calc(48 / var(--size) * 100 * var(--vh, 1vh));
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .under-block__title {
    font-size: calc(32 / var(--size) * 100 * var(--vh, 1vh));
  }
}
@media (max-width: 480px) {
  .under-block__title {
    font-size: calc(26 / var(--size) * 100 * var(--vh, 1vh));
  }
}

.under-icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(24 / var(--size) * 100 * var(--vh, 1vh));
  height: 100%;
}
.under-icon__svg svg {
  width: calc(70 / var(--size) * 100 * var(--vh, 1vh));
  height: calc(70 / var(--size) * 100 * var(--vh, 1vh));
}
.under-icon__title {
  font-family: Roboto;
  font-size: calc(20 / var(--size) * 100 * var(--vh, 1vh));
  line-height: 1.4;
  color: #fff;
}

.under-icons .swiper-wrapper,
.under-tags .swiper-wrapper {
  align-items: stretch;
}

.under-icons .swiper-slide {
  height: calc(400 / var(--size) * 100 * var(--vh, 1vh));
  max-height: 400px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1440px) {
  .under-icons .swiper-slide {
    max-height: 300px;
  }
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .under-icons .swiper-slide {
    max-height: 250px;
  }
}

.under-tags .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

.under-icons .card,
.under-tags .card {
  flex: 1;
}

.under-table {
  display: flex;
  flex-direction: column;
}
.under-table__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: calc(24 / var(--size) * 100 * var(--vh, 1vh));
  padding: calc(20 / var(--size) * 100 * var(--vh, 1vh)) 0;
  border-bottom: 1px solid #fff;
}
.under-table__row:first-child {
  border-top: 1px solid #fff;
}
.under-table__name {
  font-family: Roboto;
  font-size: calc(20 / var(--size) * 100 * var(--vh, 1vh));
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.under-table__price {
  display: flex;
  align-items: center;
  gap: calc(8 / var(--size) * 100 * var(--vh, 1vh));
  font-family: Oswald;
  font-weight: 500;
  font-size: calc(20 / var(--size) * 100 * var(--vh, 1vh));
  color: #fff;
  white-space: nowrap;
}
.under-table__price svg {
  width: calc(20 / var(--size) * 100 * var(--vh, 1vh));
  height: calc(20 / var(--size) * 100 * var(--vh, 1vh));
  flex-shrink: 0;
}

.under-stack-marquee {
  overflow: hidden;
  width: 100%;
}

.under-stack__list {
  display: flex;
  gap: calc(24 / var(--size) * 100 * var(--vh, 1vh));
  align-items: center;
  width: max-content;
}

.under-stack-marquee--scroll .under-stack__list {
  animation: stack-marquee 30s linear infinite;
}

.under-stack-marquee--static .under-stack__list {
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  animation: none;
}

@keyframes stack-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.under-stack__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: calc(12 / var(--size) * 100 * var(--vh, 1vh));
  font-family: Roboto;
  font-size: calc(22 / var(--size) * 100 * var(--vh, 1vh));
  color: #fff;
  transition: filter 0.3s;
}
.under-stack__item img {
  width: calc(44 / var(--size) * 100 * var(--vh, 1vh));
  height: calc(44 / var(--size) * 100 * var(--vh, 1vh));
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.3s;
}
.under-stack__item:hover img {
  filter: grayscale(0);
}

@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .under-stack {
    padding-bottom: calc(24 / var(--size) * 100 * var(--vh, 1vh));
  }
}
@media (max-width: 480px) {
  .under-stack {
    padding-bottom: calc(20 / var(--size) * 100 * var(--vh, 1vh));
  }
}

.under-step-slider .card-inner__title {
  font-weight: 400;
  text-transform: none;
  font-size: calc(24 / var(--size) * 100 * var(--vh, 1vh));
}
.under-step-slider .card-inner__number {
  font-size: calc(56 / var(--size) * 100 * var(--vh, 1vh));
}
.under-step-slider .card-inner__content {
  margin-bottom: calc(16 / var(--size) * 100 * var(--vh, 1vh));
}

.under-faq__icon {
  width: calc(24 / var(--size) * 100 * var(--vh, 1vh));
  height: calc(24 / var(--size) * 100 * var(--vh, 1vh));
  flex-shrink: 0;
  margin-left: calc(16 / var(--size) * 100 * var(--vh, 1vh));
  transition: transform 0.3s;
  transform: rotate(0deg);
}
.is-open .under-faq__icon {
  transform: rotate(-75deg);
}

@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .under-faq {
    padding-bottom: calc(24 / var(--size) * 100 * var(--vh, 1vh));
  }
}
@media (max-width: 480px) {
  .under-faq {
    padding-bottom: calc(20 / var(--size) * 100 * var(--vh, 1vh));
  }
}

@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .under-faq .accordion-header h3 {
    font-size: calc(32 / var(--size) * 100 * var(--vh, 1vh));
  }
}
@media (max-width: 480px) {
  .under-faq .accordion-header h3 {
    font-size: calc(26 / var(--size) * 100 * var(--vh, 1vh));
  }
}

.under-step-slider__button-block {
  display: flex;
  flex-direction: column;
  max-width: 60%;
  margin: calc(48 / var(--size) * 100 * var(--vh, 1vh)) auto 0;
  width: 100%;
}
@media (max-width: 960px), (min-width: 961px) and (orientation: portrait) {
  .under-step-slider__button-block {
    max-width: 100%;
  }
}
.under-step-slider__button-block .button {
  width: 100%;
}