/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root {
  --swiper-theme-color:#007aff;
}

:host {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.swiper {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}

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

.swiper-wrapper {
  box-sizing: initial;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  width: 100%;
  z-index: 1;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translateZ(0);
}

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

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  display: block;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
  width: 100%;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-cube-shadow, .swiper-slide {
    transform-style: preserve-3d;
  }
}

.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper:before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper:before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper:before {
      height: var(--swiper-centered-offset-after);
      min-width: 1px;
      width: 100%;
    }
  }
}

.swiper-3d {
  .swiper-slide-shadow, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left, .swiper-slide-shadow-right, .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.1490196078);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top: 4px solid rgba(0, 0, 0, 0);
  box-sizing: border-box;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  transform-origin: 50%;
  width: 42px;
  z-index: 10;
}

.swiper-watch-progress .swiper-slide-visible, .swiper:not(.swiper-watch-progress) {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s linear infinite;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode {
  .swiper-wrapper:after {
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
  }
}

.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper:after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper:after {
    height: var(--swiper-virtual-size);
    width: 1px;
  }
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: var(--swiper-navigation-size);
  justify-content: center;
  position: absolute;
  width: var(--swiper-navigation-size);
  z-index: 10;
  &.swiper-button-disabled {
    cursor: auto;
    opacity: 0.35;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    cursor: auto;
    opacity: 0;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    width: 100%;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next, .swiper-button-prev {
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}

.swiper-horizontal {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    margin-left: 0;
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    top: var(--swiper-navigation-top-offset, 50%);
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev, & ~ .swiper-button-next, .swiper-button-next {
    left: auto;
    right: var(--swiper-navigation-sides-offset, 4px);
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    left: var(--swiper-navigation-top-offset, 50%);
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
    right: auto;
  }
  .swiper-button-prev, ~ .swiper-button-prev {
    bottom: auto;
    top: var(--swiper-navigation-sides-offset, 4px);
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next, ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transform: translateZ(0);
  transition: opacity 0.3s;
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  &.swiper-pagination-disabled, .swiper-pagination-disabled > & {
    display: none !important;
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  left: 0;
  top: var(--swiper-pagination-top, auto);
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
  .swiper-pagination-bullet {
    position: relative;
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active, .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  display: inline-block;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  button& {
    appearance: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  left: var(--swiper-pagination-left, auto);
  right: var(--swiper-pagination-right, 8px);
  top: 50%;
  transform: translate3d(0, -50%, 0);
  .swiper-pagination-bullet {
    display: block;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: transform 0.2s, top 0.2s;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: transform 0.2s, left 0.2s;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform 0.2s, right 0.2s;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.2509803922));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(0);
    transform-origin: left top;
    width: 100%;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  &.swiper-pagination-horizontal, &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-horizontal > &, .swiper-vertical > &.swiper-pagination-progressbar-opposite {
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
    width: 100%;
  }
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, &.swiper-pagination-vertical, .swiper-horizontal > &.swiper-pagination-progressbar-opposite, .swiper-vertical > & {
    height: 100%;
    left: 0;
    top: 0;
    width: var(--swiper-pagination-progressbar-size, 4px);
  }
}

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

.swiper-scrollbar {
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  &.swiper-scrollbar-disabled, .swiper-scrollbar-disabled > & {
    display: none !important;
  }
  &.swiper-scrollbar-horizontal, .swiper-horizontal > & {
    bottom: var(--swiper-scrollbar-bottom, 4px);
    height: var(--swiper-scrollbar-size, 4px);
    left: var(--swiper-scrollbar-sides-offset, 1%);
    position: absolute;
    top: var(--swiper-scrollbar-top, auto);
    width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
    z-index: 50;
  }
  &.swiper-scrollbar-vertical, .swiper-vertical > & {
    height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
    left: var(--swiper-scrollbar-left, auto);
    position: absolute;
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    width: var(--swiper-scrollbar-size, 4px);
    z-index: 50;
  }
}

.swiper-scrollbar-drag {
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%;
  > canvas, > img, > svg {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-direction: column;
  flex-wrap: wrap;
}

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube {
  .swiper-slide {
    backface-visibility: hidden;
    height: 100%;
    pointer-events: none;
    transform-origin: 0 0;
    visibility: hidden;
    width: 100%;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &, & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active, .swiper-slide-next, .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube-shadow {
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    width: 100%;
    z-index: 0;
    &:before {
      background: #000;
      bottom: 0;
      content: "";
      filter: blur(50px);
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
    }
  }
}

.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}

.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-slide-shadow-cube.swiper-slide-shadow-top {
    backface-visibility: hidden;
    z-index: 0;
  }
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip {
  .swiper-slide {
    backface-visibility: hidden;
    pointer-events: none;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &, & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-slide-shadow-flip.swiper-slide-shadow-top {
    backface-visibility: hidden;
    z-index: 0;
  }
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transform-origin: center bottom;
  }
}

:root {
  --white: #FFFFFF;
  --black: #000000;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body,
html {
  -webkit-font-smoothing: antialiased;
}

img {
  border: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

figure {
  margin: 0;
}

form {
  margin: 0;
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

a:active,
a:focus {
  outline: none;
}

input,
textarea,
select,
button,
label {
  font-family: inherit;
}

html,
body {
  font-size: 16px;
  font-family: "Onest", sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: var(--black);
  font-weight: 600;
}
@media screen and (min-width: 1729px) {
  html,
  body {
    font-size: 0.9259259259vw;
  }
}
@media screen and (max-width: 370px) {
  html,
  body {
    font-size: 4.3243243243vw;
  }
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  transition: 1.5s ease opacity;
}

body.loaded::after {
  opacity: 0;
}

.translate {
  opacity: 0;
  transform: translateY(6.25rem);
  transition: 1s ease opacity, 1s ease transform;
}
.translate--active {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 108rem;
  padding: 0 1.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 1rem;
  }
}

.mopen,
.modal-open {
  overflow: hidden;
}

.section--footer {
  padding: 13.75rem 0 4.125rem;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .section--footer {
    padding: 6.25rem 0 1.875rem;
  }
}
@media screen and (max-width: 550px) {
  .section--footer {
    padding-top: 2.8125rem;
  }
}
.section--footer .container {
  max-width: 90.625rem;
}

.footer__bot {
  margin-top: 3.125rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 850px) {
  .footer__bot {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer__bot-links {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
@media screen and (max-width: 1024px) {
  .footer__bot-links {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 850px) {
  .footer__bot-links {
    flex-direction: column;
    margin: 1.25rem auto 3.75rem;
  }
}
.footer__bot-links a {
  text-decoration: none;
}
.footer__bot-logo img {
  width: 6.6875rem;
  height: auto;
}
.footer-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 19.375rem;
}
@media screen and (max-width: 1024px) {
  .footer-block:first-child, .footer-block:nth-child(2) {
    width: 50%;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  .footer-block {
    width: 100%;
    max-width: 100%;
    align-items: center;
  }
  .footer-block:last-child {
    margin-top: 1.25rem;
  }
  .footer-block:nth-child(2) {
    width: 40%;
  }
}
@media screen and (max-width: 1024px) {
  .footer-block .footer__text {
    max-width: 22.25rem;
    text-align: center;
  }
}
.footer-block .footer__text:not(.footer__text--big):not(:last-child) {
  margin-bottom: 0.625rem;
}
.footer-block__logo {
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 550px) {
  .footer-block__logo {
    margin-bottom: 0.8125rem;
  }
}
.footer-block__logo img {
  width: 7.125rem;
  height: auto;
}
@media screen and (max-width: 550px) {
  .footer-block__logo img {
    width: 5.875rem;
  }
}
.footer-block .button {
  min-height: 3.5rem;
  max-width: 12.6875rem;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .footer-block .button {
    min-height: 3.625rem;
    max-width: 11.75rem;
    margin: 0 auto;
  }
}
.footer-block .button__text {
  font-size: 1.125rem;
}
.footer-block__link {
  color: #FFF;
  font-size: 1.375rem;
  line-height: 1.36;
  letter-spacing: -0.44px;
  text-decoration: none;
}
@media screen and (max-width: 550px) {
  .footer-block__link {
    font-size: 1.125rem;
    line-height: 1.33;
    letter-spacing: -0.36px;
  }
}
.footer-block__link--mail {
  color: #FF8000;
  text-decoration: underline;
  margin: 1.25rem 0;
}
@media screen and (max-width: 1024px) {
  .footer-block__link--mail {
    text-align: center;
    margin: 0;
  }
}
.footer-block__link--num {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 1024px) {
  .footer-block__link--num {
    justify-content: center;
  }
}
@media screen and (max-width: 550px) {
  .footer-block__link--num {
    gap: 0.3125rem;
  }
}
.footer-block__link--num span:last-child {
  opacity: 0.5;
  transform: rotate(-8deg);
  position: relative;
  top: -0.15625rem;
}
@media screen and (max-width: 550px) {
  .footer-block__link--num span:last-child {
    font-size: 0.875rem;
  }
}
.footer-block__link--inst {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 550px) {
  .footer-block__link--inst {
    gap: 1.25rem;
  }
}
.footer-block__link--inst img {
  width: 8rem;
  height: auto;
}
@media screen and (max-width: 550px) {
  .footer-block__link--inst img {
    width: 6.25rem;
  }
}
.footer-block__links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-block__title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.42;
  margin-bottom: 1.875rem;
}
.footer-blocks {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer-blocks {
    flex-wrap: wrap;
    gap: 3.75rem 0;
  }
}
.footer__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.42;
}
@media screen and (max-width: 550px) {
  .footer__text {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
.footer__text--big {
  color: #FFF;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: -0.44px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 550px) {
  .footer__text--big {
    font-size: 1.125rem;
    line-height: 1.33;
    letter-spacing: -0.36px;
    margin-bottom: 1.25rem;
  }
}

.section--header {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
  width: 100%;
  max-width: 80.5rem;
  padding: 0 1rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  .section--header {
    top: 1.875rem;
  }
}

.header {
  padding: 0.75rem 0.75rem 0.75rem 1.25rem;
  background: rgba(112, 112, 112, 0.2);
  border: 0.0625rem solid rgba(255, 255, 255, 0.12);
  border-radius: 6.25rem;
  position: relative;
  transition: 0.6s all ease;
  backdrop-filter: blur(25px);
}
@media screen and (max-width: 1280px) {
  .header {
    padding: 0.375rem;
  }
}
.mopen .header {
  width: max-content;
  margin: 0 auto;
}
.header-contact {
  transition: 0.3s all ease;
}
.mopen .header-contact {
  display: none;
}
@media screen and (max-width: 1280px) {
  .header-contact {
    margin-left: auto;
  }
}
.header-contact__text {
  position: relative;
  z-index: 1;
  transition: 0.3s color ease;
}
.active .header-contact__text {
  color: #FFF;
}
.header-contact__top {
  display: flex;
  align-items: center;
  padding: 1.0625rem 1.375rem 1.03125rem 1.625rem;
  color: #000;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.36px;
  gap: 0.875rem;
  background: #FFF;
  border-radius: 4.25rem;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: 0.3s transform ease;
}
.header-contact__top:hover {
  transform: scale(0.97);
}
.active .header-contact__top:hover {
  opacity: 1;
}
@media screen and (max-width: 550px) {
  .header-contact__top {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    min-height: 2.75rem;
    gap: 0.375rem;
  }
}
.header-contact__top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.25rem;
  background: linear-gradient(86deg, #FFA400 3.64%, #FF561A 94.13%), linear-gradient(0deg, #FF8000 0%, #FF8000 100%), #FF8000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
}
.active .header-contact__top::before {
  opacity: 1;
  visibility: visible;
}
.header-contact__arrow {
  width: 1rem;
  height: 0.875rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: 0.3s all ease;
}
@media screen and (max-width: 550px) {
  .header-contact__arrow {
    width: 0.75rem;
    height: 0.625rem;
  }
}
.header-contact__arrow path {
  transition: 0.3s all ease;
}
.active .header-contact__arrow {
  transform: scale(-1);
  top: 1px;
}
.active .header-contact__arrow path {
  stroke: #FFF;
}
.header-contact__sub {
  position: absolute;
  top: 100%;
  margin-top: 0.6875rem;
  right: 0;
  border-radius: 1.5rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.12);
  background: rgba(112, 112, 112, 0.2);
  backdrop-filter: blur(1.5625rem);
  min-width: 16.1875rem;
  box-sizing: border-box;
  padding: 1.875rem;
  width: max-content;
  flex-direction: column;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
  transform: translate(0, -50%);
  pointer-events: none;
  z-index: -1;
}
.header-contact__sub.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
@media screen and (max-width: 550px) {
  .header-contact__sub {
    width: 100%;
    padding: auto;
    align-items: center;
  }
}
.header-contact__link {
  color: #FFF;
  font-size: 1.125rem;
  line-height: 1.33;
  letter-spacing: -0.36px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8125rem;
  transition: 0.3s transform ease;
}
.header-contact__link:hover {
  transform: translate(5px, 0);
}
.header-contact__link .header__nav-inst {
  position: static;
  margin-bottom: 0;
}
.header-contact__link:not(:last-child) {
  margin-bottom: 0.875rem;
}
.header-contact__link--num {
  gap: 0.75rem;
}
.header-contact__link--num span:last-child {
  opacity: 0.5;
  transform: rotate(-8deg);
  position: relative;
  top: -0.15625rem;
}
@media screen and (max-width: 550px) {
  .header-contact__link--num span:last-child {
    font-size: 0.875rem;
  }
}
.header-contact__link--mail {
  color: #FF8000;
  line-height: 1.66;
  text-decoration: underline;
}
.header-contact__block {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 550px) {
  .header-contact__block {
    align-items: center;
    text-align: center;
  }
}
.header-contact__block:not(:last-child) {
  margin-bottom: 2.6875rem;
}
.header-contact__block-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.42;
  letter-spacing: -0.28px;
  margin-bottom: 0.75rem;
}
.header-contact__tiktok {
  transform: rotate(-4deg);
  position: relative;
  display: inline-block;
  z-index: 1;
}
.header-contact__tiktok::before, .header-contact__tiktok::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -0.0625rem;
  left: -0.125rem;
  border-radius: 2rem;
  background: #FF0061;
  z-index: -1;
}
.header-contact__tiktok::after {
  background: #24F4EE;
  left: auto;
  right: -0.1875rem;
  top: auto;
  bottom: -0.0625rem;
}
.header-contact__tiktok span {
  color: #000;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: -0.3px;
  width: 4.125rem;
  height: 1.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  border-radius: 2rem;
}
.header__logo {
  transition: 0.3s all ease;
}
.mopen .header__logo {
  width: 0;
  height: 0;
}
.header__logo img {
  width: 6.875rem;
  height: auto;
}
.mopen .header__logo img {
  width: 0;
  height: 0;
}
@media screen and (max-width: 1280px) {
  .header__logo img {
    width: 5.625rem;
  }
}
@media screen and (max-width: 1024px) {
  .header__logo img {
    width: 4.625rem;
  }
}
.header__nav {
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .header__nav {
    display: none;
  }
}
.header__nav-circle {
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #FFA400;
  margin-left: 0.625rem;
  display: inline-block;
}
.header__nav-item {
  position: relative;
}
.header__nav-inst {
  position: absolute;
  left: 0;
  bottom: 100%;
  margin-bottom: 0.3125rem;
  transform: rotate(-4deg);
  color: #FFF;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: -0.3px;
  border-radius: 2rem;
  background: linear-gradient(90deg, #F300E3 0%, #FF530E 60%, #FFA400 100%);
  width: 5.5rem;
  height: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.header__nav-link {
  color: #FFF;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.33;
  letter-spacing: -0.36px;
  text-decoration: none;
  transition: 0.3s all ease;
  display: block;
}
.header__nav-link:hover {
  transform: translate(0, -3px);
  background: linear-gradient(135deg, #FFA90A 0%, #FF460D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header__nav-list {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 1280px) {
  .header__nav-list {
    gap: 1.5625rem;
    margin: 0 0.625rem;
  }
}
.header__blocks {
  display: flex;
  align-items: center;
}
.header__mob {
  display: none;
}
@media screen and (max-width: 1280px) {
  .header__mob {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.28125rem;
    margin-bottom: 0.625rem;
  }
}
.header__num {
  color: #FFF;
  font-size: 0.9375rem;
  line-height: 1.18;
  letter-spacing: -0.3px;
  text-decoration: none;
}
.header__inst {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.header__inst-text {
  color: #FFF;
  font-size: 1rem;
  line-height: 1.11;
  letter-spacing: -0.32px;
}
.header__inst .header__nav-inst {
  position: static;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .header__inst .header__nav-inst {
    font-size: 0.75rem;
    width: 4.25rem;
    height: 1.5rem;
  }
}

.button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFF;
  padding: 0.40625rem 0.5rem 0.375rem;
  min-height: 3.75rem;
  border: none;
  box-sizing: border-box;
  border-radius: 6.25rem;
  text-decoration: none;
  min-width: 11.125rem;
  font-weight: 600;
  outline: none;
  transition: 0.3s ease all;
}
.button:hover {
  transform: scale(0.97);
}
.button--old-price:hover .button__price {
  transform: translate(50%, 0);
  left: -50%;
}
.button--old-price:hover .button__price-old {
  opacity: 0;
}
@media screen and (max-width: 550px) {
  .button {
    min-height: 3.625rem;
    min-width: 9.6875rem;
  }
}
.button--gradient {
  background: linear-gradient(86deg, #FFA400 3.64%, #FF561A 94.13%);
  border: none;
}
.button--gradient .button__text {
  color: #FFF;
}
.button__price {
  background: linear-gradient(135deg, #FFA90A 0%, #FF460D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 2px;
  transition: 0.3s ease all;
  font-size: 1rem;
  letter-spacing: -0.32px;
}
.button__price-old {
  color: #BBB;
  position: relative;
  transition: 0.3s ease all;
}
.button__price-old::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-7deg);
  width: 100%;
  height: 0.125rem;
  background: linear-gradient(to top, #FFF 50%, #BBBBBB 50%);
}
.button__prices {
  font-size: 1rem;
  line-height: 1.36;
  letter-spacing: -0.32px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 550px) {
  .button__prices {
    font-size: 0.8125rem;
    letter-spacing: -0.26px;
    gap: 0.625rem;
  }
}
.button__text {
  color: #000;
  font-size: 1.375rem;
  line-height: 1.193;
  letter-spacing: -0.44px;
  position: relative;
}
@media screen and (max-width: 550px) {
  .button__text {
    line-height: 1.17;
    letter-spacing: -0.36px;
    font-size: 1.125rem;
  }
}
.button--grey {
  background: rgba(106, 106, 106, 0.8);
  position: relative;
}
.button--grey::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.25rem;
  background: linear-gradient(86deg, #FFA400 3.64%, #FF561A 94.13%), linear-gradient(0deg, #FF8000 0%, #FF8000 100%), #FF8000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
  z-index: 0;
}
.button--grey:hover::before {
  opacity: 1;
  visibility: visible;
}
.button--grey .button__text {
  color: #FFF;
}
.button__play {
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  padding: 0;
  color: #000;
  flex-shrink: 0;
  transition: 0.3s ease all;
  position: relative;
  background: #fff;
}
.button__play:hover {
  transform: scale(0.97);
}
.button__play::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.25rem;
  background: linear-gradient(86deg, #FFA400 3.64%, #FF561A 94.13%), linear-gradient(0deg, #FF8000 0%, #FF8000 100%), #FF8000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
  z-index: 0;
}
.button__play:hover::before {
  opacity: 1;
  visibility: visible;
}
.button__play svg {
  width: 1.625rem;
  height: 1.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .button__play svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.button__play--grey {
  background: rgba(106, 106, 106, 0.8);
  color: #FFF;
  width: 4.625rem;
  height: 4.625rem;
}
@media screen and (max-width: 550px) {
  .button__play--grey {
    width: 3.625rem;
    height: 3.625rem;
  }
}
.button__play--grey svg {
  width: 2.0625rem;
  height: 2.0625rem;
}
@media screen and (max-width: 550px) {
  .button__play--grey svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.title {
  font-size: 5.75rem;
  line-height: 1;
  letter-spacing: -1.84px;
  text-align: center;
  color: #FFF;
}
@media screen and (max-width: 1280px) {
  .title {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .title {
    font-size: 3.25rem;
  }
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 2.875rem;
  }
}
@media screen and (max-width: 550px) {
  .title {
    font-size: 2.25rem;
  }
}
.title--gradient {
  background: linear-gradient(90deg, #FFE2B9 0%, #FFE8FB 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: rotate(-2.4deg);
  font-size: 5.125rem;
  padding-bottom: 0.375rem;
}
@media screen and (max-width: 1280px) {
  .title--gradient {
    font-size: 3.875rem;
  }
}
@media screen and (max-width: 1024px) {
  .title--gradient {
    font-size: 3.25rem;
  }
}
@media screen and (max-width: 767px) {
  .title--gradient {
    font-size: 2.875rem;
  }
}
@media screen and (max-width: 550px) {
  .title--gradient {
    font-size: 2.25rem;
  }
}

.text {
  color: #FFF;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: -0.48px;
  display: block;
}
@media screen and (max-width: 550px) {
  .text {
    font-size: 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.4px;
  }
}

.menu {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 4.375rem;
  transition: 0.3s transform ease;
  transform: translateX(-100%);
}
.mopen .menu {
  transform: translateX(0);
}
.menu__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  overflow: auto;
  height: calc(100vh - 10.5625rem);
  padding: 0.625rem 0;
  box-sizing: border-box;
}
.menu__block-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.42;
  margin-top: 2.125rem;
}
.menu__block-link {
  color: #FFF;
  font-size: 1.375rem;
  line-height: 1.465;
  letter-spacing: -0.44px;
  text-decoration: none;
}
.menu__block-link--gradient {
  background: linear-gradient(86deg, #FFA400 3.64%, #FF561A 94.13%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.menu__show {
  display: none;
  align-items: center;
  padding: 0;
  border: none;
  background: none;
}
.menu__show-circle {
  margin-right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #FFF;
  position: relative;
}
.menu__show-circle span {
  width: 1.125rem;
  height: 0.4375rem;
  display: block;
  position: relative;
}
.menu__show-circle span::before, .menu__show-circle span::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 0.0875rem;
  background: #000;
  left: 0;
  transform-origin: center;
  transition: 0.3s all ease;
}
.mopen .menu__show-circle span::before, .mopen .menu__show-circle span::after {
  transform: rotate(45deg);
  top: 0.1875rem;
}
.menu__show-circle span::after {
  top: auto;
  bottom: 0;
}
.mopen .menu__show-circle span::after {
  transform: rotate(-45deg);
  bottom: 0.1875rem;
}
.menu__show-text {
  width: 0;
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.11;
  letter-spacing: -0.32px;
  margin-right: 0.875rem;
  opacity: 0;
}
@media screen and (max-width: 1280px) {
  .menu__show-text {
    margin-right: 0;
  }
}
.mopen .menu__show-text {
  width: auto;
  opacity: 0.5;
}
@media screen and (max-width: 1280px) {
  .menu__show {
    display: flex;
  }
}

.info__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .info__block {
    margin-bottom: 1.875rem;
  }
}
.info__block .text {
  max-width: 45.1875rem;
  margin: 1.25rem auto 0;
}
.info__block .description {
  margin-bottom: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .info__block .description {
    margin-bottom: 1rem;
  }
}

.description {
  color: #FFF;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.64px;
}
@media screen and (max-width: 767px) {
  .description {
    font-size: 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.4px;
  }
}

.switch {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 1rem;
  border: none;
  background: none;
  padding: 0.5rem;
  box-sizing: border-box;
  font-weight: 600;
  height: 3.75rem;
  color: #FFF;
  transition: 0.3s all ease;
  min-width: 5.875rem;
}
.switch-back {
  background: #fff;
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  width: 100%;
  bottom: 0.1875rem;
  border-radius: 1rem;
  width: 9.375rem;
  transition: 0.3s ease all;
  pointer-events: none;
}
.switches--two .switch {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .switch {
    padding: 0.5rem 0.3125rem;
    width: 100%;
    min-width: 6.4375rem;
    border-radius: 1rem;
  }
}
.switch__price {
  background: linear-gradient(135deg, #FFA90A 0%, #FF460D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1rem;
  line-height: 1.36;
  letter-spacing: -0.32px;
  transform: rotate(-4deg);
}
@media screen and (max-width: 1024px) {
  .switch__price {
    font-size: 0.8125rem;
  }
}
.switch__text {
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: -0.36px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .switch__text {
    font-size: 1rem;
  }
}
.active .switch__text {
  color: #000;
}
.switches {
  display: flex;
  align-items: center;
  border-radius: 1.125rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
  width: max-content;
  padding: 0.1875rem;
  position: relative;
}
@media screen and (max-width: 550px) {
  .switches {
    max-width: 100%;
    overflow: auto;
  }
}
.switches__wrap {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 450px) {
  .switches__wrap {
    justify-content: flex-start;
    overflow: auto;
    width: calc(100% + 2rem);
    margin-left: -1rem !important;
    padding: 0 1rem;
    box-sizing: border-box;
  }
}

.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  position: relative;
}
.form-group__arrow {
  transition: 0.3s transform ease;
  flex-shrink: 0;
}
@media screen and (max-width: 550px) {
  .form-group__arrow {
    width: 0.75rem;
    height: 0.625rem;
  }
}
.active .form-group__arrow {
  transform: scale(-1);
}
.form-group__item {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.875rem;
  transition: 0.3s all ease;
  color: #FFF;
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.4px;
  background: none;
  padding: 1.25rem 1.875rem;
  border-radius: 3.875rem;
  cursor: pointer;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .form-group__item {
    font-size: 1rem;
    height: 3.625rem;
  }
}
.form-group__item.active, .form-group__item:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FF8000;
}
.form-group__sub {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 18.125rem;
  padding: 0.75rem;
  margin-top: 0.9375rem;
  border-radius: 1.5rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  background: #28292B;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  z-index: 10;
  box-sizing: border-box;
  overflow: auto;
}
.form-group__current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.625rem;
  box-sizing: border-box;
  cursor: pointer;
}
@media screen and (max-width: 550px) {
  .form-group__current {
    height: 3.75rem;
  }
}
.form__input {
  border-radius: 4.25rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  background: rgba(106, 106, 106, 0.2);
  padding: 1.46875rem 2rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.4px;
  outline: none;
  color: #FFF;
}
@media screen and (max-width: 550px) {
  .form__input {
    font-size: 16px;
    padding: 1.1875rem 2rem;
  }
}
.form__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.form__input::-webkit-outer-spin-button, .form__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
}
.form .button {
  max-width: 24.5625rem;
  min-height: 4.625rem;
  margin: 1.25rem auto 0;
  width: 100%;
}
@media screen and (max-width: 550px) {
  .form .button {
    margin-top: 0;
    min-height: 3.75rem;
    max-width: 100%;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 14, 10, 0.8);
  z-index: 10;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  display: flex;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.modal.active {
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 767px) {
  .modal {
    justify-content: flex-start;
  }
}
.modal-block {
  max-height: 90vh;
  max-width: 90vw;
  width: calc(100% - 1.25rem);
  display: flex;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .modal-block {
    flex-direction: column;
    max-height: 100vh;
    max-width: 100%;
    width: 100%;
  }
}
.modal-block__logo {
  margin-bottom: 1.375rem;
}
@media screen and (max-width: 767px) {
  .modal-block__logo {
    margin-bottom: 0.625rem;
  }
}
.modal-block__logo img {
  width: 6.875rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .modal-block__logo img {
    width: 5.375rem;
  }
}
.modal-block__close {
  position: absolute;
  top: 1.875rem;
  right: 1.875rem;
  background: #FFF;
  padding: 0;
  border: none;
  width: 2.625rem;
  height: 2.625rem;
  z-index: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: 0.3s ease transform;
}
.modal-block__close:hover {
  transform: scale(0.95);
}
@media screen and (max-width: 767px) {
  .modal-block__close {
    top: 1.25rem;
    right: 1.25rem;
  }
}
.modal-block__close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../icons/close_modal.svg") no-repeat;
  background-size: cover;
  width: 1rem;
  height: 1rem;
  z-index: 2;
}
.modal-block__close::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(86deg, #FFA400 3.64%, #FF561A 94.13%), linear-gradient(0deg, #FF8000 0%, #FF8000 100%), #FF8000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
  z-index: 0;
}
.modal-block__close:hover::after {
  opacity: 1;
  visibility: visible;
}
.modal-block__close:hover::before {
  filter: invert(1);
}
.modal-block__video {
  width: 50%;
  position: relative;
}
.modal-block__video--full {
  width: 100%;
}
.modal-block__video--full video {
  border-radius: 2.625rem;
}
@media screen and (max-width: 767px) {
  .modal-block__video {
    width: 100%;
    max-height: 33.375rem;
  }
}
.modal-block__video .button__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal-block__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 2.625rem 2.625rem 0;
}
@media screen and (max-width: 767px) {
  .modal-block__video video {
    border-radius: 0;
  }
}
.modal-block__video--full video {
  border-radius: 2.625rem;
}
.modal-block__info {
  width: 50%;
  border-radius: 2.625rem 0 0 2.625rem;
  box-sizing: border-box;
  padding: 2.4375rem 1.875rem 1.875rem;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .modal-block__info {
    width: 100%;
    order: 1;
    border-radius: 0;
    height: 100%;
    overflow: auto;
    padding: 1.25rem;
  }
}
.modal-block__title {
  color: #FFF;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.64px;
  padding-left: 0.625rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .modal-block__title {
    padding-left: 0;
    font-size: 1.5rem;
    line-height: 1.25;
    letter-spacing: -0.48px;
    margin-bottom: 0.625rem;
  }
}
.modal-block__text {
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.44;
  letter-spacing: -0.36px;
  padding-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .modal-block__text {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: -0.32px;
    padding-left: 0;
  }
}
.modal-block__list {
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: -0.32px;
  margin: 1.25rem 0 2.0625rem;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .modal-block__list {
    padding-left: 0.625rem;
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: -0.3px;
    margin: 1.25rem 0;
  }
}
.modal-block__price {
  display: flex;
  align-items: center;
  gap: 0.6875rem;
  padding-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .modal-block__price {
    padding-left: 0;
    gap: 0.9375rem;
  }
}
.modal-block__price-gradient {
  font-size: 1rem;
  line-height: 1.36;
  letter-spacing: -0.32px;
  background: linear-gradient(80deg, #FFA90A 0%, #FF460D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: rotate(-12deg);
  position: relative;
  top: -0.1875rem;
}
@media screen and (max-width: 767px) {
  .modal-block__price-gradient {
    font-size: 0.875rem;
    line-height: 1.14;
    letter-spacing: -0.28px;
  }
}
.modal-block__price-sum {
  color: #FFF;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.64px;
}
@media screen and (max-width: 767px) {
  .modal-block__price-sum {
    font-size: 1.5rem;
    line-height: 1.33;
    letter-spacing: -0.48px;
  }
}
.modal-block__bot {
  margin-top: 1.875rem;
  padding: 1.25rem;
  border-radius: 2rem;
  background: #121212;
  display: flex;
  flex-direction: column;
}
.modal-block__bot-item {
  padding-left: 0.4375rem;
}
.modal-block__bot-item:not(:last-child) {
  margin-bottom: 0.75rem;
}
.modal-block__bot-list {
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.24px;
  padding-left: 0.8125rem;
  list-style: decimal;
}
.modal-block__bot-desc {
  color: #FFF;
  font-size: 1rem;
  line-height: 1.62;
  letter-spacing: -0.32px;
  margin-bottom: 0.75rem;
}
.modal-block__name {
  color: #FFF;
  font-size: 1.375rem;
  line-height: 1.72;
  letter-spacing: -0.44px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .modal-block__name {
    flex-direction: column;
    gap: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.33;
    letter-spacing: -0.36px;
    margin-bottom: 1.625rem;
  }
}
.modal-block__name-circle {
  width: 0.3125rem;
  height: 0.3125rem;
  margin: 0 1.875rem;
  border-radius: 50%;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .modal-block__name-circle {
    display: none;
  }
}
.modal-block .title {
  margin-bottom: 1.25rem;
  font-size: 4.5rem;
}
@media screen and (max-width: 1024px) {
  .modal-block .title {
    font-size: 3.25rem;
  }
}
@media screen and (max-width: 767px) {
  .modal-block .title {
    font-size: 2.875rem;
    margin-bottom: 1.625rem;
  }
}
@media screen and (max-width: 550px) {
  .modal-block .title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .modal-block + .modal__text {
    display: none;
  }
}
.modal__text {
  display: block;
  color: #FFF;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .modal--done {
    justify-content: center;
  }
}
.modal--done .modal-block {
  max-width: 59.3125rem;
  width: calc(100% - 2.5rem);
  background: url("../images/modal/bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 3.125rem 1.25rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  border-radius: 2.625rem;
}
@media screen and (max-width: 767px) {
  .modal--done .modal-block {
    padding: 1.25rem 1.875rem;
    background-image: url("../images/modal/bg_mob.jpg");
    min-height: 38.125rem;
    max-height: calc(100vh - 1.875rem);
  }
}
.modal--done .modal-block__logo {
  margin-bottom: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .modal--done .modal-block__logo {
    margin-bottom: 1.25rem;
  }
}
.modal--done .modal-block__logo img {
  width: 11.0625rem;
}
@media screen and (max-width: 767px) {
  .modal--done .modal-block__logo img {
    width: 5.375rem;
  }
}
.modal--done .modal-block__text {
  padding-left: 0;
  font-size: 1.5rem;
  line-height: 1.58;
  letter-spacing: -0.48px;
}
@media screen and (max-width: 767px) {
  .modal--done .modal-block__text {
    font-size: 1.125rem;
    line-height: 1.66;
    letter-spacing: -0.36px;
  }
}
.modal--done .modal-block__text span {
  color: #FF8000;
}

.section--video {
  margin-bottom: -30%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section--video {
    margin-bottom: -35%;
  }
}
@media screen and (max-width: 550px) {
  .section--video {
    margin-bottom: -65%;
  }
}
.section--video::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 39.3125rem;
  background: linear-gradient(to bottom, black, transparent);
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .section--video::after {
    height: 28.6875rem;
  }
}
@media screen and (max-width: 1024px) {
  .section--video::after {
    height: 18.75rem;
  }
}
@media screen and (max-width: 767px) {
  .section--video::after {
    height: 9.75rem;
  }
}
.section--video::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 13.9375rem;
  background: linear-gradient(to top, black, transparent);
  z-index: 1;
}
@media screen and (max-width: 550px) {
  .section--video::before {
    bottom: -0.625rem;
  }
}
.section--video video {
  width: 100%;
  height: 100vh;
  max-height: 60.5625rem;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 1280px) {
  .section--video video {
    max-height: 37.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section--video video {
    max-height: 28.3125rem;
  }
}
.section--video-2 video {
  max-height: 54.875rem;
}
@media screen and (max-width: 1280px) {
  .section--video-2 video {
    max-height: 37.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section--video-2 video {
    max-height: 30.4375rem;
  }
}

.section--hero {
  padding: 0 0 5.3125rem;
  background-position: center;
  max-height: 58.5rem;
  min-height: 600px;
  box-sizing: border-box;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  margin-bottom: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .section--hero {
    max-height: 38.25rem;
    min-height: auto;
    padding-bottom: 0;
    margin-bottom: 6.25rem;
    margin-top: 8.625rem;
  }
}
.section--hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 11.375rem;
  background: linear-gradient(to bottom, black, transparent);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .section--hero::after {
    height: 9.75rem;
  }
}
.section--hero::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 31.125rem;
  background: linear-gradient(to top, black, transparent);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .section--hero::before {
    height: 13.75rem;
    bottom: 5.375rem;
  }
}

.hero-block {
  position: relative;
  z-index: 1;
  max-width: 54.375rem;
  padding: 0 1.5625rem;
}
.hero-block > * {
  transition: 1.25s ease transform;
  transform: translate(0, 9.375rem);
}
@media screen and (max-width: 767px) {
  .hero-block {
    max-width: max-content;
  }
}
.hero-block .title {
  font-size: 5.125rem;
}
@media screen and (max-width: 1280px) {
  .hero-block .title {
    font-size: 3.875rem;
  }
}
@media screen and (max-width: 1024px) {
  .hero-block .title {
    font-size: 3.25rem;
  }
}
@media screen and (max-width: 767px) {
  .hero-block .title {
    font-size: 2.875rem;
    max-width: 28.125rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 550px) {
  .hero-block .title {
    font-size: 2.25rem;
    max-width: 21.1875rem;
  }
}
.hero-block .text {
  font-size: 1.875rem;
  max-width: 31.25rem;
  margin: 0.625rem auto 1.875rem;
  line-height: 1.26;
  letter-spacing: -0.6px;
  transform: translate(0, 12.5rem);
  display: block;
}
@media screen and (max-width: 767px) {
  .hero-block .text {
    margin-top: 1rem;
    font-size: 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.4px;
    max-width: 16.8125rem;
  }
}
.loaded .hero-block > * {
  transform: none;
}
.hero-block__buttons {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  justify-content: center;
  transform: translate(0, 15.625rem);
}
@media screen and (max-width: 767px) {
  .hero-block__buttons {
    flex-direction: column;
    gap: 1rem;
  }
}
.hero-block__buttons .button {
  width: 100%;
  max-width: 17.75rem;
  min-height: 4.625rem;
  gap: 0.125rem;
}
@media screen and (max-width: 550px) {
  .hero-block__buttons .button {
    min-height: 4.125rem;
    max-width: 15.875rem;
  }
}
.hero-block__buttons .button--grey {
  max-width: 14.375rem;
  flex-shrink: 0;
}
@media screen and (max-width: 550px) {
  .hero-block__buttons .button--grey {
    min-height: 3.625rem;
    max-width: 11.75rem;
  }
}
.hero-block__buttons-right {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .hero-block__buttons-right {
    width: 100%;
    justify-content: center;
  }
}
.hero__video {
  width: 100%;
  position: absolute;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .hero__video {
    max-height: 32.875rem;
    top: auto;
    bottom: 5.375rem;
  }
}

.texts-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
}
@media screen and (max-width: 550px) {
  .texts-block {
    gap: 0.75rem;
  }
}
.texts-block .title {
  font-size: 5.125rem;
}
@media screen and (max-width: 1280px) {
  .texts-block .title {
    font-size: 3.875rem;
  }
}
@media screen and (max-width: 1024px) {
  .texts-block .title {
    font-size: 3.25rem;
  }
}
@media screen and (max-width: 767px) {
  .texts-block .title {
    font-size: 2.875rem;
  }
}
@media screen and (max-width: 550px) {
  .texts-block .title {
    font-size: 2.25rem;
    max-width: 19.375rem;
  }
}
.texts-block__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.09;
  letter-spacing: -0.4px;
  transform: rotate(-3deg);
}
@media screen and (max-width: 550px) {
  .texts-block__text {
    font-size: 1.125rem;
    line-height: 1.21;
    letter-spacing: -0.36px;
  }
}
.texts-blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .texts-blocks {
    gap: 5.1875rem;
  }
}

.section--slider {
  position: relative;
  z-index: 2;
  margin-bottom: 5rem;
}
.section--slider .container {
  padding: 0;
}
@media screen and (max-width: 1280px) {
  .section--slider .container {
    padding-left: 1rem;
  }
}

.slider__line {
  width: 100%;
  max-width: 69.6875rem;
  height: 0.25rem;
  position: relative;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.2);
  margin: 2.5rem auto 0;
  left: -4%;
}
@media screen and (max-width: 1280px) {
  .slider__line {
    max-width: calc(100% - 2rem);
    left: 0;
    margin-top: 1.875rem;
  }
}
.slider__line-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: #FFF;
  border-radius: 0.25rem;
  transition: 0.3s all ease;
}
.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 7%;
  width: 4rem;
  height: 4rem;
  border: none;
  z-index: 1;
  padding: 0;
  background: url("../icons/arrow_slider_circle.svg") no-repeat;
  background-size: cover;
}
.slider__arrow:disabled, .slider__arrow.slick-disabled {
  opacity: 0.5;
}
@media screen and (max-width: 1280px) {
  .slider__arrow {
    right: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .slider__arrow {
    width: 2.625rem;
    height: 2.625rem;
  }
}
.slider__arrow--left {
  left: -1.5%;
  right: auto;
  transform: translate(0, -50%) scale(-1);
}
@media screen and (max-width: 1280px) {
  .slider__arrow--left {
    left: 0;
  }
}
.slider .slick-track {
  display: flex;
  gap: 1.25rem;
  padding-left: 14%;
}
@media screen and (max-width: 1280px) {
  .slider .slick-track {
    padding-left: 0;
    gap: 0.9375rem;
  }
}
@media screen and (max-width: 1024px) {
  .slider .slick-track {
    gap: 0.625rem;
  }
}
.slider__item {
  position: relative;
  border-radius: 2.625rem;
  overflow: hidden;
}
.slider__item .button {
  min-height: 4rem;
  width: 12.5rem;
}
@media screen and (max-width: 550px) {
  .slider__item .button {
    min-height: 3.625rem;
  }
}
.slider__item-name {
  color: #FFF;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.64px;
  margin: 0.75rem 0 1.375rem 0.75rem;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .slider__item-name {
    font-size: 1.75rem;
    margin: 0.6875rem 0 1.25rem 0;
  }
}
.slider__item-logo {
  width: 6.875rem;
  height: auto;
}
.slider__item-info {
  position: absolute;
  z-index: 1;
  top: 1.875rem;
  left: 1.875rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .slider__item-info {
    top: 1.25rem;
    left: 1rem;
  }
}
.section--reviews .slider__item-info {
  bottom: 1.875rem;
  top: auto;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  max-width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .section--reviews .slider__item-info {
    bottom: 1.375rem;
  }
}
.slider__item-video {
  width: 100%;
  height: 100%;
  height: 40rem;
  object-fit: cover;
  border-radius: 2.625rem;
}
@media screen and (max-width: 1024px) {
  .slider__item-video {
    height: 29.375rem;
    border-radius: 1.5rem;
  }
}

.section--services {
  padding: 5.75rem 0 6.8125rem;
  background: url("../images/services/bg.png") no-repeat;
  background-size: 108rem 78.6875rem;
  background-position: top;
}
@media screen and (max-width: 767px) {
  .section--services {
    padding: 8.75rem 0 3.75rem;
    background-size: 100% 28.3125rem;
  }
}
@media screen and (max-width: 550px) {
  .section--services {
    background-image: url("../images/services/bg_mob.png");
  }
}
.section--services .container {
  max-width: 58.75rem;
}

.service {
  width: calc(50% - 0.625rem);
  min-height: 28.75rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .service {
    width: 100%;
  }
}
.service::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 21.25rem;
  height: 100%;
  border-radius: 0 2.625rem 2.625rem 0;
  display: none;
}
.services--open .service {
  width: 100%;
  min-height: 13.125rem;
  display: flex;
  max-height: 13.125rem;
}
.services--open .service::before {
  display: block;
}
.service-info {
  position: absolute;
  top: 1.875rem;
  left: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
  width: calc(100% - 2rem);
}
@media screen and (max-width: 1024px) {
  .service-info {
    left: 1rem;
    top: 1.25rem;
  }
}
.services--open .service-info {
  position: static;
  width: 100%;
  max-width: 37.5rem;
  border-radius: 2.625rem 0 0 2.625rem;
  padding: 1.25rem 0 1.875rem 1.875rem;
  box-sizing: border-box;
}
.service-info .button--price {
  width: 100%;
  max-width: 13.75rem;
}
@media screen and (max-width: 767px) {
  .service-info .button--price {
    max-width: 9.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .service-info .button {
    min-height: 3.75rem;
  }
}
.service-info .button__play {
  flex-shrink: 0;
}
.service-info__bot {
  width: 100%;
}
.service-info__bot .switches {
  margin-bottom: 1.25rem;
}
.services--open .service-info__bot .switches {
  margin-bottom: 0;
  flex-shrink: 0;
}
.services--open .service-info__bot {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 2.5rem;
}
.service-info__buttons {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  width: 100%;
}
.services--open .service-info__buttons {
  width: max-content;
}
.service-info__name {
  color: #FFF;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.64px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .service-info__name {
    color: #FFF;
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: -0.56px;
  }
}
.services--open .service-info__name {
  margin-bottom: 0.5rem;
}
.service-info__logo {
  width: 6.875rem;
  height: auto;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .service-info__logo {
    width: 6.6875rem;
  }
}
.services--open .service-info__logo {
  display: none;
}
.service-info__text {
  display: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.33;
  flex-shrink: 0;
  white-space: nowrap;
}
.services--open .service-info__text {
  display: block;
  margin-bottom: 1.875rem;
}
.service__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 28.75rem;
  display: block;
  border-radius: 2.625rem;
}
.services--open .service__video {
  max-height: 13.125rem;
  max-width: 21.25rem;
  border-radius: 0 2.625rem 2.625rem 0;
}
.service--full {
  width: 100%;
  min-height: 26.4375rem;
}
@media screen and (max-width: 1024px) {
  .service--full {
    min-height: 28.75rem;
  }
}
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  position: relative;
}
.services > .button {
  width: 100%;
  max-width: 16.3125rem;
  margin: -0.875rem auto 0;
  min-height: 4.625rem;
  position: sticky;
  bottom: 2rem;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .services > .button {
    display: none;
  }
}
.services--open .service:nth-child(odd)::before {
  background: linear-gradient(90deg, rgb(81, 73, 62) 0%, rgba(81, 73, 62, 0.8) 40%, rgba(81, 73, 62, 0) 60%);
}
.services--open .service:nth-child(odd) .service-info {
  background: linear-gradient(-256deg, #3F3F3F 9.46%, #51493D 56.06%);
}
.services--open .service:nth-child(even)::before {
  background: linear-gradient(90deg, rgb(82, 68, 61) 0%, rgba(82, 68, 61, 0.8) 40%, rgba(82, 68, 61, 0) 60%);
}
.services--open .service:nth-child(even) .service-info {
  background: linear-gradient(-256deg, #3F3F3F 9.46%, #52443E 56.06%);
}

.section--packages {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.section--packages .switch {
  padding-left: 1.375rem;
  padding-right: 1.375rem;
  min-width: max-content;
}
@media screen and (max-width: 550px) {
  .section--packages .switches {
    max-width: max-content;
    overflow: visible;
  }
}
.section--packages .switches__wrap {
  margin: 3.125rem auto 7.5rem;
}
.section--packages .container {
  max-width: 56.25rem;
}

.package {
  width: calc(50% - 0.625rem);
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 900px) {
  .package {
    width: 100%;
    max-width: 43.75rem;
  }
}
.package__inside {
  display: flex;
  align-items: center;
  gap: 0.78125rem;
  background: none;
  padding: 0;
  border: none;
  margin: 1.25rem auto 0.75rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .package__inside {
    margin: 0.75rem auto;
    gap: 0.625rem;
  }
}
.package__inside-text {
  font-size: 1.125rem;
  line-height: 1.77;
  letter-spacing: -0.36px;
  background: linear-gradient(80deg, #FFA90A 0%, #FF460D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 550px) {
  .package__inside-text {
    font-size: 1rem;
    line-height: 1.62;
    letter-spacing: -0.32px;
  }
}
.package__inside-arrow {
  width: 0.4375rem;
  height: auto;
}
@media screen and (max-width: 550px) {
  .package__inside-arrow {
    width: 0.375rem;
  }
}
.package__price {
  margin-top: auto;
  font-size: 3.25rem;
  color: #FFF;
  line-height: 1.23;
  letter-spacing: -1.04px;
}
@media screen and (max-width: 767px) {
  .package__price {
    margin-top: 1.25rem;
    font-size: 2.625rem;
  }
}
.package__price span {
  font-size: 2.625rem;
}
@media screen and (max-width: 767px) {
  .package__price span {
    font-size: 2rem;
  }
}
.package__price--gradient {
  background: linear-gradient(80deg, #FFA90A 0%, #FF460D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.package__price-old {
  min-height: 2.625rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .package__price-old {
    margin-top: 0.375rem;
    min-height: 100%;
  }
}
.package__price-old span {
  color: #FFF;
  font-size: 1.9375rem;
  line-height: 1.36;
  letter-spacing: -0.611px;
  opacity: 0.8;
  position: relative;
}
@media screen and (max-width: 767px) {
  .package__price-old span {
    font-size: 1.5rem;
    line-height: 1.41;
    letter-spacing: -0.48px;
  }
}
.package__price-old span::before {
  content: "";
  position: absolute;
  width: calc(100% + 1.25rem);
  height: 0.21125rem;
  background: rgba(255, 255, 255, 0.8);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
}
.package .button {
  margin-top: auto;
  width: 100%;
  min-height: 4.5rem;
}
@media screen and (max-width: 767px) {
  .package .button {
    min-height: 3.75rem;
  }
}
.package__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.33;
  max-width: 23.75rem;
  margin: 0 auto 0.625rem;
  min-height: 6rem;
}
@media screen and (max-width: 767px) {
  .package__text {
    font-size: 1rem;
    line-height: 1.37;
    min-height: 100%;
  }
}
.package__text--bot {
  min-height: auto;
  font-size: 0.875rem;
  line-height: 1.71;
  margin-bottom: 0;
}
@media screen and (max-width: 550px) {
  .package__text--bot {
    font-size: 0.75rem;
    max-width: 100%;
  }
}
.package__name {
  color: #FFF;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.64px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .package__name {
    font-size: 1.5rem;
    line-height: 1.08;
    letter-spacing: -0.48px;
  }
}
.package__logo {
  width: 9.125rem;
  height: auto;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .package__logo {
    width: 7.4375rem;
  }
}
.package__bg {
  position: absolute;
  z-index: 0;
  border-radius: 2.625rem;
  width: calc(100% - 2.625rem);
  height: 25.375rem;
  left: 50%;
  transform: translate(-50%, 0);
  top: -0.75rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(256deg, #3F3F3F 9.46%, #52443E 56.06%);
}
@media screen and (max-width: 767px) {
  .package__bg {
    width: calc(100% - 2.125rem);
    top: -0.625rem;
    height: 20.625rem;
  }
}
.package--2 .package__bg {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(256deg, #3F3F3F 9.46%, #423631 56.06%);
}
.package--3 .package__bg {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(256deg, #3F3F3F 9.46%, #4F4346 56.06%);
}
.package--4 .package__bg {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(256deg, #3F3F3F 9.46%, #43493B 56.06%);
}
.package--5 .package__bg {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(256deg, #3F3F3F 9.46%, #3B494A 56.06%);
}
.package--6 .package__bg {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(256deg, #3F3F3F 9.46%, #52443E 56.06%);
}
.package--7 .package__bg {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(256deg, #3F3F3F 9.46%, #3D392D 56.06%);
}
.package--8 .package__bg {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(256deg, #3F3F3F 9.46%, #4D3C3D 56.06%);
}
.package__bg--2 {
  z-index: -1;
  top: -1.3125rem;
  width: calc(100% - 6.25rem);
  height: 21.625rem;
  opacity: 0.8;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), linear-gradient(256deg, #3F3F3F 9.46%, #52443E 56.06%);
}
@media screen and (max-width: 767px) {
  .package__bg--2 {
    width: calc(100% - 5rem);
    top: -1.125rem;
    height: 17.625rem;
  }
}
.package--2 .package__bg--2 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), linear-gradient(256deg, #3F3F3F 9.46%, #423631 56.06%);
}
.package--3 .package__bg--2 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), linear-gradient(256deg, #3F3F3F 9.46%, #4F4346 56.06%);
}
.package--4 .package__bg--2 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), linear-gradient(256deg, #3F3F3F 9.46%, #43493B 56.06%);
}
.package--5 .package__bg--2 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), linear-gradient(256deg, #3F3F3F 9.46%, #3B494A 56.06%);
}
.package--6 .package__bg--2 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), linear-gradient(256deg, #3F3F3F 9.46%, #52443E 56.06%);
}
.package--7 .package__bg--2 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), linear-gradient(256deg, #3F3F3F 9.46%, #3D392D 56.06%);
}
.package--8 .package__bg--2 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), linear-gradient(256deg, #3F3F3F 9.46%, #4D3C3D 56.06%);
}
.package__block {
  padding: 2.4375rem 1.25rem 1.25rem;
  box-sizing: border-box;
  border-radius: 2.625rem;
  background: linear-gradient(256deg, #3F3F3F 9.46%, #52443E 56.06%);
  position: relative;
  z-index: 1;
  min-height: 37.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .package__block {
    padding: 2.125rem 1rem 1rem;
    min-height: 100%;
  }
}
.package--2 .package__block {
  background: linear-gradient(256deg, #3F3F3F 9.46%, #423532 56.06%);
}
.package--3 .package__block {
  background: linear-gradient(256deg, #3F3F3F 9.46%, #4E4346 56.06%);
}
.package--4 .package__block {
  background: linear-gradient(256deg, #3F3F3F 9.46%, #43493B 56.06%);
}
.package--5 .package__block {
  background: linear-gradient(256deg, #3F3F3F 9.46%, #3C4A4A 56.06%);
}
.package--6 .package__block {
  background: linear-gradient(256deg, #3F3F3F 9.46%, #52443E 56.06%);
}
.package--7 .package__block {
  background: linear-gradient(256deg, #3F3F3F 9.46%, #3D392D 56.06%);
}
.package--8 .package__block {
  background: linear-gradient(256deg, #3F3F3F 9.46%, #4D3C3D 56.06%);
}
.package__discount {
  position: absolute;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, 0) rotate(-15deg) scale(0.9);
  top: -2.5rem;
  border-radius: 6.25rem;
  background: linear-gradient(86deg, #FFA400 3.64%, #FF561A 94.13%), linear-gradient(0deg, #FF8000 0%, #FF8000 100%), #FF8000;
  min-width: 8.875rem;
  height: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 0.9375rem 0.3125rem;
  box-sizing: border-box;
}
@media screen and (max-width: 550px) {
  .package__discount {
    min-width: 7.125rem;
    height: 3.25rem;
    transform: translate(-50%, 0) rotate(-15deg) scale(0.95);
  }
}
.package__discount::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0.5rem;
  background: #4F453F;
  width: 0.6875rem;
  height: 0.6875rem;
  border-radius: 50%;
}
@media screen and (max-width: 550px) {
  .package__discount::before {
    width: 0.5625rem;
    height: 0.5625rem;
    left: 0.375rem;
  }
}
.package__discount-sum {
  color: #FFF;
  font-size: 1.5rem;
  line-height: 0.9;
  letter-spacing: -0.48px;
}
@media screen and (max-width: 550px) {
  .package__discount-sum {
    font-size: 1.25rem;
    letter-spacing: -0.391px;
  }
}
.package__discount-text {
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.39;
  letter-spacing: -0.32px;
}
@media screen and (max-width: 550px) {
  .package__discount-text {
    font-size: 0.8125rem;
    line-height: 1.36;
    letter-spacing: -0.26px;
  }
}
.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 3.1875rem 1.25rem;
}
@media screen and (max-width: 900px) {
  .packages {
    align-items: center;
    justify-content: center;
    gap: 5.3125rem;
  }
}

.section--why {
  padding: 11.25rem 0 10rem;
  background: url("../images/why/bg.png") no-repeat;
  background-size: 108rem 86.6875rem;
}
@media screen and (max-width: 767px) {
  .section--why {
    padding: 8.75rem 0 3.75rem;
    background-size: 100% 28.3125rem;
    margin-top: 3.75rem;
    overflow: hidden;
  }
}
@media screen and (max-width: 550px) {
  .section--why {
    background-image: url("../images/why/bg_mob.png");
  }
}
.section--why .container {
  max-width: 58.75rem;
}

.why__tr:not(:last-child) .why__td {
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.12);
}
.why__tr:not(:first-child) .why__td {
  padding-top: 1.25rem;
}
.why__td {
  vertical-align: middle;
  box-sizing: border-box;
  min-height: 3.5rem;
}
.why__td-text {
  color: #FFF;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: -0.4px;
  max-width: 20rem;
}
@media screen and (max-width: 550px) {
  .why__td-text {
    font-size: 1.1875rem;
    letter-spacing: -0.37px;
  }
}
.why__td-text--small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 50;
  line-height: 1.5;
  letter-spacing: normal;
  max-width: 100%;
  display: block;
}
@media screen and (max-width: 550px) {
  .why__td-text--small {
    font-size: 0.9375rem;
  }
}
.why__td-icon {
  width: 2rem;
  height: auto;
}
@media screen and (max-width: 550px) {
  .why__td-icon {
    width: 1.875rem;
  }
}
.why__td:not(:first-child) {
  text-align: center;
}
.why__th {
  padding: 0 0 1.875rem;
  text-align: center;
}
.why__th:last-child {
  vertical-align: middle;
}
.why__th img {
  width: 6.875rem;
  height: auto;
}
@media screen and (max-width: 550px) {
  .why__th img {
    width: 5.8125rem;
  }
}
.why__th:first-child {
  width: 50%;
}
.why__th span {
  color: #FFF;
  font-size: 1.125rem;
  line-height: 1.11;
  letter-spacing: -0.36px;
  max-width: 5.625rem;
  display: inline-block;
}
.why__table {
  width: 100%;
}
@media screen and (max-width: 550px) {
  .why__table-block {
    overflow: auto;
    width: calc(100% + 2rem);
    padding: 0 1rem;
    margin-left: -1rem;
    box-sizing: border-box;
  }
}
.why__table-wrap {
  border-radius: 2.625rem;
  background: linear-gradient(256deg, rgba(63, 63, 63, 0.8) 9.46%, rgba(63, 63, 63, 0.8) 56.06%);
  padding: 1.875rem 1.875rem 2.25rem;
  min-width: 28.375rem;
  box-sizing: border-box;
}
@media screen and (max-width: 550px) {
  .why__table-wrap {
    padding: 1.875rem 0.625rem 2rem;
  }
}
.why__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.71;
  padding-left: 2.5625rem;
  margin-top: 1.875rem;
  max-width: 52.125rem;
}
@media screen and (max-width: 767px) {
  .why__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5625rem;
    padding: 0 1.5rem 0 0.5rem;
    margin-top: 1.25rem;
  }
}
.why__text span {
  color: #FFF;
}

.section--reviews {
  position: relative;
  margin-bottom: 10rem;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .section--reviews {
    margin-bottom: 7.5rem;
  }
}

.slider__bg {
  position: absolute;
  top: -9.375rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 70.8125rem;
  max-width: 100%;
  height: auto;
  opacity: 0.35;
  z-index: -1;
}

.section--questions {
  margin-bottom: 7.5rem;
  position: relative;
  z-index: 1;
}
.section--questions .title {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 1024px) {
  .section--questions .title {
    margin-bottom: 1.875rem;
  }
}
.section--questions .container {
  max-width: 58.75rem;
}

.question {
  padding: 1.875rem 1.875rem 2.375rem;
  border-radius: 2.625rem;
  background: linear-gradient(256deg, rgba(63, 63, 63, 0.7) 9.46%, rgba(82, 68, 62, 0.7) 56.06%);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .question {
    padding: 1.25rem;
    border-radius: 1.5rem;
    gap: 0.75rem;
  }
}
.question__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.33;
  padding-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .question__text {
    line-height: 1.5;
    font-size: 1rem;
    padding-left: 0.3125rem;
  }
}
.question__text a:not(.question__text-link) {
  color: #ff7f00;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: underline;
}
.question__text-link {
  text-decoration: none;
  color: #FFF;
}
.question__text span {
  color: #FFF;
}
.question__title {
  color: #FFF;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.64px;
}
@media screen and (max-width: 767px) {
  .question__title {
    font-size: 1.5rem;
    line-height: 1.33;
    letter-spacing: -0.48px;
  }
}
.questions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.questions__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.42;
  display: block;
  margin: 1.875rem auto 0;
  text-align: center;
}
@media screen and (max-width: 550px) {
  .questions__text {
    margin-top: 1.25rem;
    font-size: 0.75rem;
    line-height: 1.5;
    max-width: 16.9375rem;
  }
}

.section--request {
  margin-bottom: 10rem;
}
@media screen and (max-width: 1024px) {
  .section--request {
    margin-bottom: 6.25rem;
  }
}
.section--request .container {
  max-width: 58.75rem;
}

.request-block {
  border-radius: 2.625rem;
  background: #17191B;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .request-block {
    padding: 1.875rem 0.75rem;
  }
}
.request-block__title {
  color: #FFF;
  font-size: 2.625rem;
  line-height: 1;
  letter-spacing: -0.84px;
  max-width: 27.4375rem;
  margin: 1.25rem auto 2.5rem;
}
@media screen and (max-width: 767px) {
  .request-block__title {
    font-size: 2.25rem;
    line-height: 1.25;
    letter-spacing: -0.48px;
  }
}
@media screen and (max-width: 550px) {
  .request-block__title {
    font-size: 1.5rem;
    margin: 1.25rem auto;
  }
}
.request-block__logo {
  width: 9.125rem;
  height: auto;
}
@media screen and (max-width: 550px) {
  .request-block__logo {
    width: 6.375rem;
  }
}
.request__illustration {
  max-width: 64.3125rem;
  margin: 0 auto -7.25rem;
  position: relative;
  width: calc(100% - 2rem);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .request__illustration {
    margin-bottom: -1.875rem;
  }
}
.request__illustration-text {
  position: absolute;
  color: #FFF;
  text-align: center;
  font-size: 2.625rem;
  line-height: 1.23;
  letter-spacing: -0.84px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 37.5rem;
}
@media screen and (max-width: 1024px) {
  .request__illustration-text {
    font-size: 2.25rem;
    max-width: 31.25rem;
  }
}
@media screen and (max-width: 767px) {
  .request__illustration-text {
    font-size: 1.875rem;
    max-width: 25rem;
  }
}
@media screen and (max-width: 550px) {
  .request__illustration-text {
    font-size: 1.25rem;
    max-width: 13.6875rem;
  }
}
.request__illustration-img {
  width: 100%;
  height: auto;
  display: block;
}

.section--steps .container {
  max-width: 83.75rem;
}

.steps {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 28.75rem;
  gap: 1.25rem 3.75rem;
  list-style: decimal;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.42;
  padding-left: 0.9375rem;
}
@media screen and (max-width: 1280px) {
  .steps {
    height: 37.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .steps {
    flex-wrap: nowrap;
    height: 100%;
    gap: 1rem;
    padding-left: 1.4375rem;
  }
}
@media screen and (max-width: 550px) {
  .steps {
    font-size: 0.75rem;
    padding-left: 1.25rem;
  }
}
.steps__item {
  width: calc(50% - 1.875rem);
  padding-left: 0.1875rem;
}
@media screen and (max-width: 1024px) {
  .steps__item {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
