body {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}

h1,
h2,
h3,
h4 {
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
}

.container {
  max-width: 80.625rem;
  margin-inline: auto;
  padding: 0 0.9375rem;
}

@font-face {
  font-family: "Manrope";
  font-weight: 800;
  font-style: normal;
  src: local("Manrope-ExtraBold"), url(assets/fonts/Manrope-ExtraBold.woff) format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  font-weight: 700;
  font-style: normal;
  src: local("Manrope-Bold"), url(assets/fonts/Manrope-Bold.woff) format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  font-weight: 600;
  font-style: normal;
  src: local("Manrope-SemiBold"), url(assets/fonts/Manrope-SemiBold.woff) format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  font-weight: 500;
  font-style: normal;
  src: local("Manrope-Medium"), url(assets/fonts/Manrope-Medium.woff) format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  font-weight: 400;
  font-style: normal;
  src: local("Manrope-Regular"), url(assets/fonts/Manrope-Regular.woff) format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  font-weight: 900;
  font-style: normal;
  src: local("Unbounded-Black"), url(assets/fonts/Unbounded-Black.woff) format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  font-weight: 700;
  font-style: normal;
  src: local("Unbounded-Bold"), url(assets/fonts/Unbounded-Bold.woff) format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  font-weight: 500;
  font-style: normal;
  src: local("Unbounded-Medium"), url(assets/fonts/Unbounded-Medium.woff) format("woff");
  font-display: swap;
}

html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: color 0.4s ease, opacity 0.4s ease, background-color 0.4s ease, border-color 0.4s ease;
}

table,
ul {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

ul,
li {
  list-style: none;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
  border: none;
}

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

html,
body {
  height: 100%;
}

body {
  background-color: #FEFDF9;
  color: #292929;
  font-size: 1rem;
  overflow-x: hidden;
}

body.lock {
  overflow: hidden;
  touch-action: none;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: clip;
}

.main {
  flex-grow: 1;
}

.container-left {
  padding-left: calc((100% - 80.625rem) / 2 + 0.9375rem);
}

h1,
h2,
h3,
h4 {
  line-height: 1;
}

textarea {
  resize: none;
}

.breadcrumbs {
  position: relative;
  z-index: 10;
  white-space: nowrap;
  overflow-x: auto;
  padding-top: 9.375rem;
  margin-bottom: 2.8125rem;
}

.breadcrumbs ul {
  display: flex;
  justify-content: center;
}

.breadcrumbs ul li {
  font-size: 0.75rem;
  padding-right: 1.5625rem;
  position: relative;
  font-weight: 500;
  margin-bottom: 0.3125rem;
}

.breadcrumbs ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.625rem;
  width: 0.3125rem;
  height: 0.5625rem;
  background: url(assets/images/icons/breadcrumbs.svg) center/cover no-repeat;
  opacity: 0.5;
}

.breadcrumbs ul li:last-child {
  text-overflow: ellipsis;
  overflow: clip;
  max-width: 15.625rem;
  padding-right: 0;
}

.breadcrumbs ul li:last-child::after {
  display: none;
}

.breadcrumbs ul li a {
  opacity: 0.5;
}

.margin-bottom {
  margin-bottom: 9.375rem;
}

.badges p {
  border-radius: 6.25rem;
  font-weight: 700;
  padding: 0.3125rem 0.625rem;
}

.badges__ended {
  color: #FEFDF9;
  background-color: #292929;
}

.badges__available {
  color: #292929;
  background-color: #F0F0F0;
}

.badges__place {
  color: #F54A00;
  background-color: #FFEED5;
}

.form input,
.form textarea {
  outline: none;
  width: 100%;
  background-color: #F0F0F0;
  border-radius: 0.625rem;
  font-size: 1rem;
  transition: border-color 0.4s ease;
  border: 0.0625rem solid transparent;
  color: #292929;
  padding: 0.9375rem 1.5625rem;
}

.form input::placeholder,
.form textarea::placeholder {
  transition: opacity 0.4s ease;
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0.5;
  color: #292929;
}

.form input:focus::placeholder,
.form textarea:focus::placeholder {
  opacity: 0;
}

.form input:focus,
.form textarea:focus {
  border-color: #292929;
}

.form textarea {
  display: block;
  overflow: hidden;
}

.btn {
  width: 100%;
  text-align: center;
  padding: 0.9375rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.9375rem;
  background-color: #292929;
  border: 0.0625rem solid transparent;
  transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease, opacity 0.4s ease;
}

.btn-arrow {
  position: relative;
  z-index: 5;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FEFDF9;
  background-color: #292929;
  border-radius: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 1.5625rem;
  transition: gap 0.4s ease, color 0.4s ease;
  padding: 0.3125rem 0.3125rem 0.3125rem 1.5625rem;
}

.btn-arrow svg {
  flex-shrink: 0;
  border-radius: 0.625rem;
}

.mask {
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.labels {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}

.labels input {
  overflow: hidden;
  position: absolute;
  width: 0;
  height: 0;
  clip-path: rect(0 0 0 0);
}

.labels input:checked + span {
  border-color: #292929;
}

.labels input:checked + span::after {
  opacity: 1;
}

.labels input:focus-visible + span {
  border-color: #292929;
}

.labels label {
  cursor: pointer;
  display: block;
  position: relative;
  padding-left: 2.0625rem;
  width: fit-content;
  font-size: 0.875rem;
  font-weight: 500;
}

.labels a {
  display: inline;
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.1875rem;
}

.labels span {
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border-radius: 0.3125rem;
  transition: all 0.4s ease;
  border: 0.0625rem solid rgba(41, 41, 41, 0.15);
}

.labels span::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 0.1875rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #292929;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Contact Form 7 [acceptance] checkboxes render text inside the same span
   that sits next to the input, so the empty-decoy-span trick above can't be
   reused as-is — draw the same custom checkbox as ::before/::after on the
   label instead. Scoped to .wpcf7-form (CF7's own wrapper, present regardless
   of how fields are configured in wp-admin) so the hand-written .labels
   checkboxes elsewhere (e.g. the FAQ form) are untouched. */
.wpcf7-form .wpcf7-list-item label {
  cursor: pointer;
  display: block;
  position: relative;
  padding-left: 2.0625rem;
  width: fit-content;
  font-size: 0.875rem;
  font-weight: 500;
}

.wpcf7-form .wpcf7-list-item a {
  display: inline;
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.1875rem;
}

.wpcf7-form .wpcf7-list-item label::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 0.3125rem;
  transition: all 0.4s ease;
  border: 0.0625rem solid rgba(41, 41, 41, 0.15);
}

.wpcf7-form .wpcf7-list-item label::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 0.1875rem;
  position: absolute;
  top: 50%;
  left: 0.625rem;
  transform: translate(-50%, -50%);
  background-color: #292929;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wpcf7-form .wpcf7-list-item label:has(input:checked)::before {
  border-color: #292929;
}

.wpcf7-form .wpcf7-list-item label:has(input:checked)::after {
  opacity: 1;
}

.wpcf7-form .wpcf7-list-item label:has(input:focus-visible)::before {
  border-color: #292929;
}

.wpcf7-form .wpcf7-list-item input {
  overflow: hidden;
  position: absolute;
  width: 0;
  height: 0;
  clip-path: rect(0 0 0 0);
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.3125rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #292929;
}

.wpcf7-response-output {
  margin-top: 0.9375rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.625rem;
}

form.sent .wpcf7-response-output {
  color: #292929;
}

form.failed .wpcf7-response-output,
form.aborted .wpcf7-response-output,
form.spam .wpcf7-response-output {
  color: #292929;
}

.preloader {
  position: fixed;
  z-index: 1010;
  inset: 0;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.5);
}

.lock .preloader {
  opacity: 1;
  visibility: visible;
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  align-items: stretch;
}

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

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

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

.lg-outer .lg-video-object {
  border-radius: 2.1875rem;
  object-fit: cover;
}

.arrows {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  padding: 0.4375rem;
  border-radius: 6.25rem;
  background-color: #F0F0F0;
  max-width: 6.0625rem;
  position: relative;
  z-index: 5;
}

.arrows button {
  line-height: 0;
  padding: 0;
}

.arrows path,
.arrows rect {
  transition: fill 0.4s ease;
}

.arrows:has(.swiper-button-lock) {
  display: none;
}

.arrow-disabled path {
  fill: #292929;
}

.arrow-disabled rect {
  fill: #fff;
}

.header {
  position: absolute;
  width: 100%;
  z-index: 1000;
  padding-top: 1.875rem;
  background-color: transparent;
  -webkit-transition: background-color 0.4s ease, border-radius 0.4s ease, padding-bottom 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: background-color 0.4s ease, border-radius 0.4s ease, padding-bottom 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: background-color 0.4s ease, border-radius 0.4s ease, padding-bottom 0.4s ease, box-shadow 0.4s ease;
  transition: background-color 0.4s ease, border-radius 0.4s ease, padding-bottom 0.4s ease, box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease;
}

.open-menu .header {
  background-color: #FEFDF9;
  border-radius: 0 0 3.125rem 3.125rem;
  padding-bottom: 2.5rem;
  -webkit-box-shadow: 0 0.25rem 0.3125rem 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0.25rem 0.3125rem 0 rgba(0, 0, 0, 0.05);
}

.header__inner {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.header__burger {
  display: none;
}

.header__menu {
  display: none;
}

.logo {
  max-width: 11.625rem;
  width: 100%;
  aspect-ratio: 186/100;
  flex-shrink: 0;
  position: relative;
}

.logo__default,
.logo__color {
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

[data-color] .logo__default {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}

.open-menu .logo .logo__default {
  opacity: 1;
  pointer-events: all;
}

.open-menu .logo .logo__color {
  opacity: 0;
  pointer-events: none;
}

.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.menu > ul {
  display: flex;
  align-items: center;
  gap: 1.5625rem;
}

.menu a {
  font-weight: 600;
  font-size: 1.125rem;
}

.menu button {
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0;
  justify-content: space-between;
  -webkit-transition: opacity 0.4s ease, border-radius 0.3s ease;
  transition: opacity 0.4s ease, border-radius 0.3s ease;
}

.menu button svg {
  flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

[data-color] .menu a,
[data-color] .menu button {
  color: #FEFDF9;
}

.dropdown {
  position: relative;
}

.dropdown a,
.dropdown span {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  width: 100%;
  min-width: 12.5rem;
  border-radius: 0.9375rem;
  background-color: #FEFDF9;
  opacity: 0;
  -webkit-box-shadow: 0.0625rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0.0625rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.08);
  z-index: 100;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  padding: 0.9375rem;
  margin-top: 0.9375rem;
}

[data-color] .dropdown a,
[data-color] .dropdown span {
  color: #292929;
}

.dropdown.dropdown-menu__open ul {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}

.dropdown.dropdown-menu__open button svg {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.hero {
  position: relative;
  min-height: 50rem;
  overflow: hidden;
  border-radius: 0 0 3.125rem 3.125rem;
  margin-bottom: 6.25rem;
  padding-block: 14.0625rem 5.625rem;
}

.hero__desc {
  max-width: 45rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #FEFDF9;
  margin-bottom: 7.4375rem;
}

.hero__desc h1 {
  font-size: 3.75rem;
  margin-bottom: 0.9375rem;
}

.hero__desc p {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 2.125rem;
}

.hero .btn-arrow {
  align-self: flex-start;
  color: #292929;
  background-color: #FEFDF9;
}

.hero__inner {
  position: relative;
  z-index: 5;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 3.75rem;
  justify-content: center;
  max-width: 43.75rem;
  margin-inline: auto;
}

.hero__list li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  color: #FEFDF9;
  max-width: 13.75rem;
}

.hero__list li::after {
  content: "";
  position: absolute;
  top: 0.78125rem;
  height: 2rem;
  width: 0.0625rem;
  right: -1.875rem;
  opacity: 0.5;
  background-color: #FEFDF9;
}

.hero__list li:last-child::after {
  display: none;
}

.hero__list span {
  font-weight: 700;
  font-size: 1.5rem;
}

.hero__list p {
  font-size: 1.125rem;
}

.blog {
  overflow: hidden;
}

.blog h1 {
  text-align: center;
  font-size: 2.625rem;
}

.blog__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4.375rem 1.25rem;
  align-items: center;
  margin-bottom: 4.375rem;
}

.blog__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20.625rem, 1fr));
  gap: 4.375rem 1.875rem;
  min-height: 21.875rem;
}

.filter-buttons {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.filter-buttons button {
  background-color: transparent;
  padding: 0.625rem 0.9375rem;
  color: rgba(41, 41, 41, 0.5);
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 6.25rem;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.filter-buttons .mixitup-control-active {
  color: #fff;
  background-color: #292929;
}

.blog-item {
  max-width: 25rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-item h2,
.blog-item h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: normal;
  margin-bottom: 0.625rem;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.blog-item p {
  opacity: 0.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.blog-item__img {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 400/220;
  border-radius: 1.5625rem;
  margin-bottom: 1.5625rem;
}

.blog-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.article__top {
  margin-bottom: 3.75rem;
  display: flex;
  gap: 2.1875rem 1.5625rem;
  justify-content: space-between;
  align-items: flex-start;
}

.article__top img {
  max-width: 36.25rem;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 580/319;
  border-radius: 1.5625rem;
  flex-shrink: 0;
}

.article__top-desc {
  margin-top: 1.5625rem;
  max-width: 38.4375rem;
  width: 100%;
}

.article__top-desc time {
  display: block;
  margin-bottom: 0.3125rem;
  opacity: 0.6;
}

.article__top-desc h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  margin-bottom: 1.25rem;
  line-height: normal;
  font-size: clamp( 1.5rem , -3.0833333333rem  +  6.6666666667vw , 2rem );
}

.article__top-desc p {
  font-size: 1.125rem;
}

.article__top-desc p:not(:last-child) {
  margin-bottom: 0.625rem;
}

.article__top-desc p:last-child {
  margin-bottom: 0;
}

.article__text {
  max-width: 65.3125rem;
  width: 100%;
}

.article__text h2 {
  font-family: "Manrope", sans-serif;
  line-height: normal;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.article__text p {
  font-size: 1.125rem;
  margin-bottom: 0.9375rem;
}

.article__text p:has(+ h2) {
  margin-bottom: 1.875rem;
}

.article__text p:last-child {
  margin-bottom: 0;
}

.article__text a {
  color: #292929;
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.1875rem;
}

.article__text a:hover {
  opacity: 0.7;
}

.article__text ul,
.article__text ol {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.article__text ul:not(:last-child),
.article__text ol:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.article__text ol {
  counter-reset: article-ol;
}

.article__text li {
  font-size: 1.125rem;
  padding-left: 1.875rem;
  position: relative;
}

.article__text ol > li {
  counter-increment: article-ol;
}

.article__text ul > li::after {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0;
  max-width: 1rem;
  width: 100%;
  aspect-ratio: 1;
  background: url(assets/images/icons/list.svg) center/cover no-repeat;
}

.article__text ol > li::after {
  content: counter(article-ol) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  color: #292929;
}

.schedule__top {
  max-width: 34.8125rem;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 3.125rem;
}

.schedule__top h1 {
  font-size: 2.625rem;
  margin-bottom: 1.875rem;
}

.schedule__top p {
  max-width: 31.75rem;
  margin-inline: auto;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
}

.schedule__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
}

.item-schedule {
  max-width: 38.4375rem;
  width: 100%;
  border-radius: 2.1875rem;
  padding: 1.8125rem;
  border: 0.0625rem solid #F0F0F0;
  background-color: #FEFDF9;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.1875rem 1.25rem;
}

.item-schedule__date {
  max-width: 10rem;
  width: 100%;
}

.item-schedule__date p {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.5;
}

.item-schedule__date span {
  font-size: 2rem;
  font-weight: 700;
  color: #292929;
}

.item-schedule__date button {
  width: 100%;
  text-align: center;
  padding: 0.9375rem;
  border-radius: 0.9375rem;
  color: #fff;
  background-color: #292929;
  font-size: 1.125rem;
  font-weight: 700;
  border: 0.0625rem solid transparent;
  -webkit-transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease;
  transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.item-schedule__date button:disabled {
  background-color: #F0F0F0;
  cursor: default;
  color: rgba(41, 41, 41, 0.5);
}

.item-schedule__date-start {
  margin-bottom: 0.9375rem;
}

.item-schedule__desc {
  max-width: 18.125rem;
}

.item-schedule__desc h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  margin-bottom: 0.625rem;
  line-height: normal;
  font-size: clamp( 1.5625rem , -4.0520833333rem  +  11.6666666667vw , 2rem );
}

.item-schedule__desc-time {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  flex-wrap: wrap;
}

.item-schedule__desc-time img {
  flex-shrink: 0;
  opacity: 0.5;
}

.item-schedule__desc-time span {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 600;
  padding: 0.3125rem;
  border-radius: 0.625rem;
  background-color: #F0F0F0;
}

.item-schedule__desc-group {
  display: flex;
  align-items: center;
  gap: 0.625rem 1.5625rem;
  margin-bottom: 0.9375rem;
  flex-wrap: wrap;
}

.item-schedule__desc-group span {
  font-weight: 600;
  opacity: 0.5;
}

.contacts h1 {
  text-align: center;
  margin-bottom: 4.375rem;
  font-size: 2.625rem;
}

.contacts__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4.375rem 1.875rem;
}

.contacts__item-socials {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.contacts__item-socials path {
  -webkit-transition: fill 0.4s ease;
  transition: fill 0.4s ease;
}

.contacts__item-socials a {
  border-radius: 0.4375rem;
  overflow: hidden;
  border: 0.0625rem solid transparent;
  line-height: 0;
  background-color: #292929;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.contacts__item span {
  display: block;
  line-height: 1.5;
  font-weight: 400;
  opacity: 0.5;
  font-size: 0.875rem;
  margin-bottom: 0.3125rem;
}

.contacts__item p {
  font-weight: 600;
}

.contacts__item > a {
  font-size: 1.125rem;
  font-weight: 600;
}

.contacts__item:nth-child(3) {
  grid-column: span 2;
}

.contacts__items {
  max-width: 25.3125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5625rem 3.125rem;
  flex-shrink: 0;
}

.contacts__map {
  width: 100%;
  max-width: 45.125rem;
  height: 25rem;
  overflow: hidden;
  border-radius: 2.1875rem;
}

.contacts .ymaps-2-1-79-copyright__logo,
.contacts .ymaps-2-1-79-copyright__content,
.contacts .ymaps-2-1-79-gototaxi__container,
.contacts .ymaps-2-1-79-gototech {
  display: none;
}

.contacts .ymaps-2-1-79-map-copyrights-promo {
  left: 0.625rem;
  bottom: 0.625rem;
}

.advice .breadcrumbs {
  margin-bottom: 4.6875rem;
}

.advice h1 {
  margin-bottom: 4.375rem;
  max-width: 51.875rem;
  font-size: clamp( 1.5625rem , 0.4182692308rem  +  4.358974359vw , 2.625rem );
}

.advice__desc {
  max-width: 65.3125rem;
}

.advice__desc span {
  display: inline-block;
  border-radius: 6.25rem;
  background-color: #F0F0F0;
  margin-bottom: 1.25rem;
  padding: 0.625rem 1.5625rem;
  font-weight: 700;
}

.advice__desc h2 {
  padding-top: 1.25rem;
  border-top: 0.0625rem solid rgba(41, 41, 41, 0.2);
  margin-bottom: 1.875rem;
  font-size: 1.5rem;
}

.advice__desc p {
  margin-bottom: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  font-size: 1.125rem;
}

.advice__desc p:has(+ span) {
  margin-bottom: 3.125rem;
}

.advice__desc p:last-child {
  margin-bottom: 0;
}

.faq h1 {
  text-align: center;
  margin-bottom: 3.125rem;
  font-size: clamp( 1.5625rem , 0.075rem  +  5.6666666667vw , 2.625rem );
}

.faq h2 {
  margin-bottom: 3.125rem;
  font-size: clamp( 1.5625rem , 0.075rem  +  5.6666666667vw , 2.625rem );
}

.faq__items {
  display: grid;
  gap: 1.875rem;
  align-items: flex-start;
  grid-template-columns: repeat(auto-fill, minmax(33.4375rem, 1fr));
  margin-bottom: 9.375rem;
}

.faq__item {
  max-width: 100%;
  padding: 1.25rem;
  border-radius: 0.9375rem;
  background-color: #F0F0F0;
}

.faq__item button {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 1.25rem;
  justify-content: space-between;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  min-height: 3rem;
}

.faq__item span {
  flex-shrink: 0;
  max-width: 2.8125rem;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.625rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.faq__item img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.faq__item--active img {
  opacity: 0.5;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.faq__item-box {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, max-height 0.4s ease;
  transition: opacity 0.4s ease, max-height 0.4s ease;
}

.faq__item-text {
  padding-top: 1.875rem;
}

.faq__item-text p {
  font-size: 1.125rem;
  opacity: 0.7;
}

.faq__help {
  position: relative;
}

.faq__help textarea {
  padding-top: 2.25rem;
  margin-bottom: 1.25rem;
  padding-right: 15.625rem;
  min-height: 6.0625rem;
  border-radius: 1.5625rem;
}

.faq__help textarea::-webkit-input-placeholder {
  font-size: 1.375rem;
  line-height: 1;
}

.faq__help textarea::-moz-placeholder {
  font-size: 1.375rem;
  line-height: 1;
}

.faq__help textarea:-ms-input-placeholder {
  font-size: 1.375rem;
  line-height: 1;
}

.faq__help textarea::-ms-input-placeholder {
  font-size: 1.375rem;
  line-height: 1;
}

.faq__help textarea::placeholder {
  font-size: 1.375rem;
  line-height: 1;
}

.faq__help .btn {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 0.9375rem;
  max-width: 13.4375rem;
  padding-block: 1.1875rem;
}

.faq__help .btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.faq__help-inputs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.125rem;
  gap: clamp( 0.9375rem , -20.859375rem  +  37.5vw , 1.875rem );
}

.instructors .breadcrumbs {
  margin-bottom: 3.75rem;
}

.instructors .tab-buttons {
  margin-bottom: 4.375rem;
}

.instructors__cards {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(auto-fill, minmax(18.125rem, 1fr));
}

.instructors .instructors-card {
  max-width: 100%;
}

.instructors__inner {
  position: relative;
}

.instructors__inner > img {
  width: 100%;
  aspect-ratio: 135/142;
  position: absolute;
  top: -2.25rem;
  right: 8.5625rem;
  z-index: 6;
  max-width: clamp( 7.5rem , 3.9329268293rem  +  7.3170731707vw , 8.4375rem );
}

.instructors__top {
  position: relative;
  margin-bottom: 4.375rem;
  overflow: hidden;
  border-radius: 3.125rem;
  width: 100%;
  background-color: #F0F0F0;
  padding: 3.3125rem 3.75rem 3.875rem;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: space-between;
}

.instructors__top > img {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 31.125rem;
  width: 100%;
  aspect-ratio: 1;
  -webkit-transform: rotate(123deg);
  -ms-transform: rotate(123deg);
  transform: rotate(123deg);
  position: absolute;
  bottom: -11.875rem;
  left: 2.1875rem;
  -webkit-filter: blur(0.46875rem);
  filter: blur(0.46875rem);
}

.instructors__desc {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: clamp( 20rem , -41.8292682927rem  +  126.8292682927vw , 36.25rem );
}

.instructors__desc h1 {
  margin-bottom: 2.1875rem;
  font-size: clamp( 2.1875rem , -7.7875rem  +  14vw , 2.625rem );
}

.instructors__desc p {
  max-width: 30rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
}

.instructors__images {
  position: relative;
  z-index: 5;
  max-width: 32.375rem;
  width: 100%;
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
}

.instructors__images div {
  border-radius: 2.1875rem;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  max-width: 15.625rem;
}

.instructors__images div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.instructors__images div:nth-child(2) {
  -webkit-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  transform: rotate(-5deg);
}

.instructors__images div:last-child {
  margin-top: 5.25rem;
  -webkit-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  transform: rotate(10deg);
}

.instructors__images > img {
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  bottom: -0.6875rem;
  left: -4.1875rem;
  max-width: 6.3125rem;
  width: 100%;
  aspect-ratio: 101/85;
  z-index: 6;
}

.tab-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  border-radius: 6.25rem;
}

.tab-buttons button {
  padding: 0.625rem 0.9375rem;
  border-radius: 6.25rem;
  background-color: transparent;
  font-weight: 600;
  font-size: 1.125rem;
  color: rgba(41, 41, 41, 0.5);
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  text-align: center;
}

.tab-buttons .tab-buttons__active {
  color: #fff;
  background-color: #292929;
}

.tab-box {
  display: none;
}

.tab-box--active {
  display: block;
}

.instructors-card {
  max-width: 18.25rem;
  width: 100%;
  background-color: #FEFDF9;
  border-radius: 2.1875rem;
  padding-block: 0.125rem 1.5625rem;
  padding-inline: 0.125rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.instructors-card__img {
  position: relative;
  margin-bottom: 0.9375rem;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 2.1875rem;
  margin-inline: auto;
}

.instructors-card__img > img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.instructors-card__img span {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  border-radius: 6.25rem;
  background-color: #FEFDF9;
  padding: 0.3125rem 0.625rem;
  line-height: 1;
  font-size: 1.125rem;
  font-weight: 700;
}

.instructors-card__img span img {
  flex-shrink: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.instructors-card__info {
  margin-bottom: 1.25rem;
  padding-inline: 1.25rem;
}

.instructors-card__info h2,
.instructors-card__info h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: normal;
  font-size: 1.375rem;
  margin-bottom: 0.625rem;
}

.instructors-card__items {
  display: grid;
  grid-template-columns: 8.5rem 5.4375rem;
  gap: 0.9375rem 1.5625rem;
}

.instructors-card__item span {
  display: block;
  margin-bottom: 0.1875rem;
  font-size: 0.875rem;
  line-height: 1;
  opacity: 0.5;
}

.instructors-card__item p {
  font-weight: 700;
  line-height: 1;
  font-size: 1.125rem;
}

.instructors-card__bottom {
  padding-inline: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  text-align: center;
  margin-top: auto;
}

.instructors-card__bottom a {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(41, 41, 41, 0.5);
}

.instructor .breadcrumbs {
  margin-bottom: 4.0625rem;
}

.instructor__inner {
  max-width: 65.3125rem;
  width: 100%;
  margin-inline: auto;
  padding: 2.1875rem;
  border-radius: 2.1875rem;
  background-color: #F0F0F0;
  display: flex;
  justify-content: space-between;
  gap: 3.4375rem 1.875rem;
  align-items: flex-start;
  margin-bottom: 4.375rem;
}

.instructor__img {
  max-width: 19.375rem;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2.1875rem;
  position: relative;
  flex-shrink: 0;
}

.instructor__img span {
  position: absolute;
  bottom: 1.875rem;
  left: 1.875rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  border-radius: 6.25rem;
  background-color: #FEFDF9;
  padding: 0.3125rem 0.625rem;
  line-height: 1;
  font-size: 1.125rem;
  font-weight: 700;
}

.instructor__img span img {
  flex-shrink: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.instructor__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.instructor__info {
  max-width: 38.4375rem;
}

.instructor__info h1 {
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: normal;
}

.instructor__info > span {
  display: block;
  margin-bottom: 1.5625rem;
  font-weight: 700;
  color: #292929;
  font-size: 1.125rem;
}

.instructor__info strong {
  display: block;
  margin-bottom: 0.9375rem;
  line-height: 1;
  opacity: 0.5;
  font-weight: 500;
}

.instructor__info > p {
  margin-bottom: 1.5625rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.instructor__items {
  display: grid;
  grid-template-columns: 11.5625rem 11.5625rem;
  gap: 0.9375rem 1.875rem;
  margin-bottom: 2.5rem;
}

.instructor__item span {
  display: block;
  margin-bottom: 0.3125rem;
  line-height: 1;
  opacity: 0.5;
}

.instructor__item p {
  font-weight: 700;
  line-height: 1;
  font-size: 1.125rem;
}

.video {
  position: relative;
  width: 100%;
  border-radius: 2.1875rem;
  max-width: 65.3125rem;
  overflow: hidden;
  height: 31.25rem;
  margin-inline: auto;
}

.video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.video__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video__inner._hidden {
  opacity: 0;
  visibility: hidden;
}

.video__play {
  padding: 0;
  max-width: 4.6875rem;
  width: 100%;
  aspect-ratio: 1;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.video__play img {
  width: 100%;
  height: 100%;
}

.instructor__content {
  max-width: 65.3125rem;
  width: 100%;
  margin-inline: auto;
}

.instructor__content h2 {
  font-family: "Manrope", sans-serif;
  line-height: normal;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.instructor__content p {
  font-size: 1.125rem;
  margin-bottom: 0.9375rem;
}

.instructor__content p:has(+ h2) {
  margin-bottom: 1.875rem;
}

.instructor__content p:last-child {
  margin-bottom: 0;
}

.instructor__content a {
  color: #292929;
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.1875rem;
}

.instructor__content a:hover {
  opacity: 0.7;
}

.instructor__content ul,
.instructor__content ol {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.instructor__content ul:not(:last-child),
.instructor__content ol:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.instructor__content ol {
  counter-reset: instructor-ol;
}

.instructor__content li {
  font-size: 1.125rem;
  padding-left: 1.875rem;
  position: relative;
}

.instructor__content ol > li {
  counter-increment: instructor-ol;
}

.instructor__content ul > li::after {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0;
  max-width: 1rem;
  width: 100%;
  aspect-ratio: 1;
  background: url(assets/images/icons/list.svg) center/cover no-repeat;
}

.instructor__content ol > li::after {
  content: counter(instructor-ol) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  color: #292929;
}

.vehicle-fleet .tab-buttons {
  margin-bottom: 4.375rem;
}

.vehicle-fleet__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp( 1.25rem , -20.2678571429rem  +  28.5714285714vw , 1.875rem );
}

.vehicle-fleet__top {
  position: relative;
  border-radius: 2.1875rem;
  background-color: #F0F0F0;
  margin-bottom: 4.375rem;
  padding: 2.5rem 3.75rem;
  display: flex;
  align-items: flex-start;
  gap: clamp( 1.25rem , -57.4264705882rem  +  82.3529411765vw , 5.625rem );
}

.vehicle-fleet__desc {
  width: 100%;
  margin-top: 1.25rem;
  max-width: clamp( 18.125rem , -3.5872093023rem  +  45.1162790698vw , 24.1875rem );
}

.vehicle-fleet__desc h1 {
  margin-bottom: 2.1875rem;
  font-size: clamp( 1.875rem , -0.8110465116rem  +  5.5813953488vw , 2.625rem );
}

.vehicle-fleet__desc p {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 3.125rem;
  max-width: 17.9375rem;
}

.vehicle-fleet__desc button {
  display: flex;
  align-items: center;
  gap: 1.5625rem;
  padding: 0.3125rem 0.3125rem 0.3125rem 1.5625rem;
  background-color: #292929;
  color: #FEFDF9;
  border-radius: 0.9375rem;
  font-size: 1.125rem;
  font-weight: 700;
  -webkit-transition: gap 0.4s ease, color 0.4s ease;
  transition: gap 0.4s ease, color 0.4s ease;
}

.vehicle-fleet__desc svg {
  flex-shrink: 0;
  border-radius: 0.625rem;
}

.vehicle-fleet__images {
  position: relative;
  max-width: 35.3125rem;
  width: 100%;
}

.vehicle-fleet__images-box {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  z-index: 3;
}

.vehicle-fleet__images-box img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.vehicle-fleet__images-box div {
  overflow: hidden;
  border-radius: 2.1875rem;
  max-width: 18.75rem;
  aspect-ratio: 300/250;
  width: 100%;
}

.vehicle-fleet__images-box div:first-child {
  margin-top: 7.5rem;
}

.vehicle-fleet__images-box div:last-child {
  margin-left: -2.1875rem;
}

.vehicle-fleet__images-1,
.vehicle-fleet__images-2 {
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: contain;
  object-fit: contain;
}

.vehicle-fleet__images-1 {
  top: -2rem;
  left: 4.125rem;
  max-width: 6.4375rem;
}

.vehicle-fleet__images-2 {
  bottom: -2.5rem;
  right: 0.375rem;
  max-width: 11.3125rem;
}

.vehicle-fleet-item {
  max-width: 25rem;
  width: 100%;
  border-radius: 2.1875rem;
  background-color: #F0F0F0;
  padding: 1.5625rem;
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
  height: 100%;
}

.vehicle-fleet-item img {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 21.875rem;
  width: 100%;
  aspect-ratio: 350/210;
}

.vehicle-fleet-item h2,
.vehicle-fleet-item h3 {
  font-size: 1.5rem;
}

.vehicle-fleet-item button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-radius: 0.9375rem;
  color: #FEFDF9;
  background-color: #292929;
  font-weight: 700;
  font-size: 1.125rem;
  padding-block: 0.3125rem;
  padding-inline: 0.9375rem 0.3125rem;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  margin-top: auto;
  text-align: center;
  gap: clamp( 1.5625rem , -19.9553571429rem  +  28.5714285714vw , 2.1875rem );
}

.vehicle-fleet-item svg {
  border-radius: 0.625rem;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  flex-shrink: 0;
}

.vehicle-fleet-item ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.vehicle-fleet-item li {
  display: flex;
  justify-content: space-between;
  gap: 0.9375rem;
  align-items: center;
  border-radius: 6.25rem;
  background-color: #FEFDF9;
  padding: 0.625rem 1.5625rem;
}

.vehicle-fleet-item li span {
  font-size: 1.125rem;
  font-weight: 600;
}

.vehicle-fleet-item p {
  font-size: 1.125rem;
  font-weight: 600;
  opacity: 0.5;
}

.documents {
  position: relative;
  z-index: 5;
}

.documents .breadcrumbs {
  margin-bottom: 4.0625rem;
}

.documents h1 {
  text-align: center;
  margin-bottom: 4.375rem;
  font-size: clamp( 1.5625rem , -0.03125rem  +  6.0714285714vw , 2.625rem );
}

.documents__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}

.documents__item {
  max-width: 25rem;
  padding: 1.5625rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  border-radius: 2.1875rem;
  background-color: #F0F0F0;
  position: relative;
}

.documents__item p {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.625rem 0.9375rem;
  border-radius: 6.25rem;
  background-color: #FEFDF9;
  text-align: center;
  text-wrap: balance;
}

.documents__item-img {
  max-width: 18.3125rem;
  width: 100%;
  aspect-ratio: 293/227;
  -o-object-fit: contain;
  object-fit: contain;
}

.documents__item-decor--1 {
  position: absolute;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 5.875rem;
  width: 100%;
  top: 8.125rem;
  aspect-ratio: 94/93;
  left: -3.75rem;
}

.documents__item-decor--2 {
  position: absolute;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 5.875rem;
  width: 100%;
  top: 4.3125rem;
  aspect-ratio: 94/93;
  left: -3.875rem;
}

.school {
  position: relative;
}

.school__bg {
  position: absolute;
  top: -8.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 120.1875rem;
  width: 100%;
  height: 45rem;
}

.school__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.school__inner {
  border-radius: 2.1875rem;
  background-color: #FEFDF9;
  -webkit-box-shadow: 0 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  z-index: 3;
}

.school__inner > img {
  position: absolute;
  top: -3.8125rem;
  width: 100%;
  aspect-ratio: 298/329;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: clamp( 14.625rem , -68.0416666667rem  +  133.3333333333vw , 18.625rem );
  left: clamp( 0.0000000625rem , -52.0535703839rem  +  75.7142842857vw , 3.3125rem );
}

.school__desc {
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
  max-width: clamp( 40.3125rem , -15.8333333333rem  +  85.5555555556vw , 45.125rem );
  margin-right: clamp( 0.0000000625rem , -97.4999986875rem  +  129.9999983333vw , 4.875rem );
}

.school__desc h2 {
  font-size: 2.625rem;
}

.school__desc p {
  font-size: 1.125rem;
  font-weight: 600;
  max-width: 39.6875rem;
}

.school__desc-links {
  display: flex;
  align-items: center;
  gap: 0.625rem 0.9375rem;
  flex-wrap: wrap;
}

.school__desc-links a {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 6.25rem;
  padding: 0.3125rem 0.9375rem;
  color: #FEFDF9;
  background-color: #FD9301;
  border: 0.0625rem solid transparent;
}

.school__desc-links a:last-child {
  gap: 0.3125rem;
  background-color: #292929;
}

.school__desc-links svg {
  flex-shrink: 0;
}

.school__desc-links path {
  -webkit-transition: fill 0.4s ease;
  transition: fill 0.4s ease;
}

.promotions h1 {
  text-align: center;
  margin-bottom: 4.375rem;
  font-size: clamp( 1.5625rem , -0.03125rem  +  6.0714285714vw , 2.625rem );
}

.promotions__banner {
  margin-bottom: 3.4375rem;
}

.promotions .item-promotions {
  max-width: 100%;
}

.promotions__items {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(auto-fill, minmax(24.375rem, 1fr));
}

.banner-promotions {
  position: relative;
  z-index: 10;
  border-radius: 2.1875rem;
  background-color: #F0F0F0;
  padding: 1.875rem;
  display: flex;
  gap: 0.8125rem;
  align-items: flex-end;
  padding-left: clamp( 1.875rem , -42.9575rem  +  63.2vw , 6.8125rem );
}

.banner-promotions button {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1.5625rem;
  padding: 0.3125rem 0.3125rem 0.3125rem 1.5625rem;
  background-color: #292929;
  color: #FEFDF9;
  border-radius: 0.9375rem;
  font-size: 1.125rem;
  font-weight: 700;
  -webkit-transition: gap 0.4s ease, color 0.4s ease;
  transition: gap 0.4s ease, color 0.4s ease;
}

.banner-promotions svg {
  flex-shrink: 0;
  border-radius: 0.625rem;
}

.banner-promotions__text {
  position: relative;
  z-index: 5;
  max-width: 31.75rem;
  width: 100%;
}

.banner-promotions__text h2 {
  font-size: 2.625rem;
  margin-bottom: 0.9375rem;
}

.banner-promotions__text p {
  font-size: 1.125rem;
  font-weight: 600;
}

.banner-promotions__img {
  max-width: 17.0625rem;
  width: 100%;
  aspect-ratio: 273/300;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  z-index: 2;
  top: -2.8125rem;
  right: clamp( 3.125rem , -30.925rem  +  48vw , 6.875rem );
}

.banner-promotions__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.1;
  border-radius: 2.1875rem;
  overflow: hidden;
}

.banner-promotions__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.item-promotions {
  max-width: 25rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  border-radius: 2.1875rem;
  padding: 2.8125rem 1.5625rem 11.875rem;
  min-height: 31.375rem;
  background-color: #292929;
}

.item-promotions h2,
.item-promotions h3 {
  font-size: 2.625rem;
  color: #FEFDF9;
  margin-bottom: 1.5625rem;
}

.item-promotions p {
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #FEFDF9;
}

.item-promotions span {
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  display: block;
  line-height: 1;
  color: #FEFDF9;
  font-size: 4.375rem;
  margin-left: -0.3125rem;
  max-width: 14.6875rem;
  margin-bottom: auto;
}

.item-promotions p,
.item-promotions span,
.item-promotions h2,
.item-promotions h3 {
  position: relative;
  z-index: 5;
}

.item-promotions__img {
  max-width: 21rem;
  width: 100%;
  aspect-ratio: 336/315;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  right: -4.5rem;
  bottom: 0;
  z-index: 5;
}

.item-promotions__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  opacity: 0.05;
}

.color-2 {
  background-color: #FD9301;
}

.promotion {
  margin-bottom: 8.125rem;
}

.promotion .breadcrumbs {
  margin-bottom: 6.25rem;
}

.promotion__inner {
  display: flex;
  justify-content: space-between;
  gap: 2.1875rem 1.5625rem;
  align-items: flex-start;
}

.promotion__desc {
  max-width: 45.125rem;
  width: 100%;
}

.promotion__desc span {
  display: block;
  opacity: 0.6;
  margin-bottom: 0.3125rem;
}

.promotion__desc h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: normal;
  margin-bottom: 2.5rem;
  max-width: 38.4375rem;
}

.promotion__desc p {
  margin-bottom: 0.9375rem;
  font-size: 1.125rem;
}

.promotion__desc p:last-child {
  margin-bottom: 0;
}

.promotion__desc a {
  color: #292929;
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.1875rem;
}

.promotion__desc a:hover {
  opacity: 0.7;
}

.promotion__desc ul,
.promotion__desc ol {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.promotion__desc ul:not(:last-child),
.promotion__desc ol:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.promotion__desc ol {
  counter-reset: promotion-ol;
}

.promotion__desc li {
  font-size: 1.125rem;
  padding-left: 1.875rem;
  position: relative;
}

.promotion__desc ol > li {
  counter-increment: promotion-ol;
}

.promotion__desc ul > li::after {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0;
  max-width: 1rem;
  width: 100%;
  aspect-ratio: 1;
  background: url(assets/images/icons/list.svg) center/cover no-repeat;
}

.promotion__desc ol > li::after {
  content: counter(promotion-ol) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  color: #292929;
}

.reviews {
  position: relative;
  margin-bottom: 9.375rem;
}

.reviews .breadcrumbs {
  margin-bottom: 6.25rem;
}

.reviews__bg {
  position: absolute;
  top: 13.4375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 45rem;
  max-width: 120rem;
  width: 100%;
}

.reviews__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.reviews__inner {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  gap: 3.125rem 1.875rem;
}

.reviews__text {
  margin-bottom: 2.5rem;
}

.reviews__info {
  flex-shrink: 0;
  max-width: 31.75rem;
  width: 100%;
  margin-top: 0.9375rem;
}

.reviews__info h1,
.reviews__info h2 {
  font-size: 2.625rem;
  margin-bottom: 2.5rem;
}

.reviews__info p {
  font-size: 1.125rem;
  font-weight: 600;
  max-width: 21.875rem;
}

.reviews__socials {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.reviews__socials svg {
  width: 2.1875rem;
  height: 2.1875rem;
}

.reviews__socials path {
  fill: #FEFDF9;
  -webkit-transition: fill 0.4s ease;
  transition: fill 0.4s ease;
}

.reviews__socials a {
  border-radius: 0.4375rem;
  overflow: hidden;
  border: 0.0625rem solid transparent;
  line-height: 0;
  background-color: #292929;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.reviews .swiper {
  margin-bottom: 2.5rem;
}

.reviews .swiper-slide {
  overflow: hidden;
  border-radius: 2.1875rem;
  max-width: 25rem;
  width: 100%;
  height: 100%;
  aspect-ratio: 400/600;
}

.reviews .swiper-slide:last-child {
  margin-right: 0.9375rem;
}

.reviews__box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.reviews__box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.reviews__box > img,
.reviews__box > video {
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.reviews__box span {
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 5;
  max-width: 4.6875rem;
  width: 100%;
  aspect-ratio: 1;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.reviews__slider {
  width: 100%;
}

.reviews .arrows {
  margin-left: 9.4375rem;
}

.reviews-block__box {
  background-color: #292929;
  min-height: 18.75rem;
}

.auto .tab-buttons {
  justify-content: flex-start;
}

.auto__nav {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.875rem;
}

.auto .arrows {
  display: none;
}

.auto .arrows--active {
  display: flex;
}

.auto__banner {
  position: relative;
  margin-bottom: 3.125rem;
  border-radius: 2.1875rem;
  background-color: #292929;
  padding: 1.875rem;
}

.auto__banner-text {
  position: relative;
  z-index: 3;
  color: #FEFDF9;
  max-width: clamp( 25.625rem , -28.28125rem  +  110.5769230769vw , 40rem );
}

.auto__banner-text h2 {
  margin-bottom: 0.625rem;
  font-size: 2.625rem;
}

.auto__banner-text p {
  font-size: 1.125rem;
  font-weight: 600;
}

.auto__banner-img {
  max-width: 20.1875rem;
  width: 100%;
  aspect-ratio: 323/181;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  z-index: 2;
  right: 1.875rem;
  bottom: -2.75rem;
}

.auto__banner-bg {
  position: absolute;
  overflow: hidden;
  border-radius: 2.1875rem;
  inset: 0;
  z-index: 1;
  opacity: 0.1;
}

.auto__banner-bg img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.team {
  position: relative;
  z-index: 5;
  background-color: #F0F0F0;
  border-radius: 3.125rem;
  padding-block: 5rem;
  margin-bottom: 11.25rem;
}

.team__top {
  margin-bottom: 2.5rem;
}

.team__desc {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 0.9375rem 1.25rem;
  flex-wrap: wrap;
}

.team__desc h2 {
  max-width: 31.75rem;
  font-size: 2.625rem;
}

.team__desc p {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  max-width: 31.75rem;
}

.team .tab-buttons {
  background-color: #FEFDF9;
  justify-content: flex-start;
}

.team__nav {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.team .arrows {
  background-color: #FEFDF9;
  display: none;
}

.team .arrows--active {
  display: flex;
}

.team .instructors-card {
  max-width: 100%;
  background-color: #FEFDF9;
}

.team .arrow-disabled rect {
  fill: #F0F0F0;
}

.main-reviews {
  margin-bottom: 9.375rem;
}

.main-reviews .reviews__bg {
  top: -3.75rem;
}

.main-reviews .reviews {
  margin-bottom: 6.25rem;
}

.article-slider h2 {
  font-size: 2.625rem;
  margin-bottom: 2.5rem;
}

.article-slider__top {
  margin-bottom: 2.5rem;
  display: flex;
  gap: 0.9375rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.article-slider__bottom {
  display: none;
}

.format {
  border-radius: 3.125rem;
  padding-block: 4.375rem;
  background-color: #F0F0F0;
  margin-bottom: 10rem;
  position: relative;
  z-index: 5;
}

.format h2 {
  text-align: center;
  font-size: 2.625rem;
  margin-bottom: 3.75rem;
}

.format__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp( 1.25rem , -37.1875rem  +  50vw , 1.875rem );
}

.format__item {
  max-width: 25rem;
  width: 100%;
  border-radius: 2.1875rem;
  background-color: #292929;
  color: #FEFDF9;
  overflow: hidden;
}

.format__item:nth-child(2) {
  background-color: #FEFDF9;
  color: #292929;
}

.format__item-content {
  height: 100%;
  width: 100%;
  padding-block: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
  align-items: center;
  padding-inline: clamp( 1.25rem , -23.75rem  +  33.3333333333vw , 1.875rem );
}

.format__item-content h3 {
  font-size: 1.5rem;
}

.format__item-content p {
  font-size: 1.125rem;
  font-weight: 600;
}

.format__item-content img {
  max-width: 20rem;
  width: 100%;
  aspect-ratio: 320/200;
  -o-object-fit: cover;
  object-fit: cover;
}

.comfort__inner {
  display: flex;
  gap: 8.625rem;
  align-items: flex-start;
}

.comfort__info {
  max-width: 25rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.comfort__info h2 {
  font-size: 2.625rem;
}

.comfort__info p {
  font-size: 1.125rem;
  font-weight: 600;
}

.comfort__info button {
  align-self: flex-start;
}

.comfort__slider {
  width: 100%;
}

.comfort .swiper {
  margin-bottom: 2.5rem;
}

.comfort .arrows {
  margin-left: 9.4375rem;
}

.comfort .swiper-slide {
  max-width: 25rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2.1875rem;
  aspect-ratio: 400/290;
}

.comfort .swiper-slide img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.comfort .swiper-slide:last-child {
  margin-right: 0.9375rem;
}

.formula-comfort-bg {
  position: relative;
  isolation: isolate;
  margin-inline: 0;
  padding-block: 5rem 6.25rem;
  border-radius: 3.125rem;
  overflow: hidden;
  background-image: url("assets/images/main/comfort-bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.formula-comfort-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(254, 253, 249, 0) 0%, #FEFDF9 100%);
  pointer-events: none;
} 

@media (min-width: 1920px) {
  

  /*.formula-comfort-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(90deg, #FEFDF9 0%, rgba(254, 253, 249, 0) 8%, rgba(254, 253, 249, 0) 92%, #FEFDF9 100%);
    pointer-events: none;
  } */
}

.formula-comfort-bg .formula {
  margin-bottom: 6.25rem;
}

.formula-comfort-bg .comfort {
  margin-bottom: 0;
}

.formula {
  margin-bottom: 3.125rem;
}

.formula__top {
  margin-bottom: 0.9375rem;
  position: relative;
}

.formula__top h2 {
  position: relative;
  z-index: 5;
  font-size: 3.75rem;
  line-height: normal;
  max-width: 44.625rem;
}

.formula__top img {
  position: absolute;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 56.8125rem;
  width: 56.8125rem;
  height: 26.875rem;
  top: -7.6875rem;
  left: 7.1875rem;
}

.formula__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.625rem;
  position: relative;
}

.formula__info {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  max-width: 38.4375rem;
  width: 100%;
  margin-top: 2.375rem;
  flex-shrink: 0;
}

.formula__info a {
  align-self: flex-start;
}

.formula__info > p {
  margin-bottom: 1.875rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.formula__desc {
  position: relative;
  max-width: 14.125rem;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #FD9301;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  text-align: center;
  justify-content: center;
  padding: 1.0625rem;
  margin-inline: auto 0.625rem;
  margin-top: -3.125rem;
}

.formula__desc span {
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  line-height: 1;
  font-size: 2.625rem;
  color: #FEFDF9;
}

.formula__desc p {
  font-weight: 600;
  color: #FEFDF9;
}

.gallery {
  margin-top: 9.375rem;
}

.gallery .swiper {
  overflow: visible;
  margin-bottom: 2.5rem;
}

.gallery .swiper-slide {
  max-width: 38.4375rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2.1875rem;
  aspect-ratio: 615/370;
}

.gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery .arrows {
  margin-inline: auto;
}

.about-reviews .reviews {
  margin-bottom: 0;
}

.about-reviews .reviews__bg {
  top: -3.75rem;
}

.stages {
  position: relative;
  background-color: #292929;
  border-radius: 3.125rem;
  padding-block: 5rem;
  overflow: hidden;
}

.stages__decor {
  position: absolute;
  max-width: 40.25rem;
  width: 100%;
  aspect-ratio: 644/635;
  top: -22.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.stages__inner {
  position: relative;
  margin-bottom: 5rem;
}

.stages__desc {
  max-width: 24.5rem;
  color: #FEFDF9;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.stages__desc h2 {
  font-size: 2.625rem;
  margin-bottom: 1.5625rem;
}

.stages__desc p {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 600;
}

.stages__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  max-width: 56.0625rem;
  width: 100%;
  justify-items: flex-end;
  margin-inline: auto 3.9375rem;
  position: relative;
  z-index: 5;
}

.stages__item {
  width: 100%;
  padding: 1.5625rem;
  border-radius: 2.1875rem;
  position: relative;
  background-color: #FEFDF9;
}

.stages__item h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5625rem;
  padding-right: 3.4375rem;
}

.stages__item span {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  padding: 0.625rem 0.9375rem;
  border-radius: 6.25rem;
  color: #FEFDF9;
  background-color: #292929;
  position: absolute;
  top: 0.9375rem;
  right: 0.9375rem;
}

.stages__item li,
.stages__item p {
  font-size: 1.125rem;
  font-weight: 600;
}

.stages__item ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.stages__item li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.stages__item svg {
  flex-shrink: 0;
}

.stages__item:first-child {
  background-color: transparent;
  padding: 0;
}

.stages__item--white-purple span {
  background-color: #292929;
}

.stages__item--white-purple li svg path {
  fill: #292929;
}

.stages__item--white-orange span {
  background-color: #FD9301;
}

.stages__item--white-orange li svg path {
  fill: #FD9301;
}

.stages__item--blue {
  background-color: #FD9301;
}

.stages__item--blue h3,
.stages__item--blue p {
  color: #FEFDF9;
}

.stages__item--blue span {
  color: #FD9301;
  background-color: #FEFDF9;
}

.stages__item--blue li svg path {
  fill: #FEFDF9;
}

.stages__item--lime {
  background-color: #FEFDF9;
}

.stages__item--lime span {
  background-color: #292929;
}

.stages__item--lime li svg path {
  fill: #292929;
}

.stages__item--white-lavender span {
  color: #292929;
  background-color: #F0F0F0;
}

.stages__item--white-lavender li svg path {
  fill: #292929;
}

.stages .video {
  position: relative;
  z-index: 5;
  max-width: 100%;
  height: 37.5rem;
}

.stages__box {
  position: relative;
}

.stages__box-decor {
  position: absolute;
  top: 11.1875rem;
  left: -36.8125rem;
  max-width: 57.75rem;
  width: 100%;
  aspect-ratio: 1;
}

.stages__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left 35%;
  object-position: left 35%;
  pointer-events: none;
}

.promotion-slider__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9375rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.promotion-slider__top h2 {
  font-size: 2.625rem;
}

.promotion-slider__bottom {
  display: none;
}

.promotion-slider .item-promotions {
  max-width: 100%;
}

.promotion-slider .swiper-slide {
  max-width: 25rem;
  width: 100%;
}

.about-block {
  padding-bottom: 12.5rem;
  border-radius: 0 0 3.125rem 3.125rem;
  position: relative;
  overflow: hidden;
}

.about-block::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 90.625rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(240, 240, 240, 0)), to(#F0F0F0));
  background: linear-gradient(180deg, rgba(240, 240, 240, 0) 0%, #F0F0F0 100%);
}

.about-block .breadcrumbs {
  margin-bottom: 5rem;
}

.about-block__bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 120rem;
  width: 100%;
  height: 87.8125rem;
  z-index: 2;
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(0, #000), color-stop(95%, #000), to(transparent));
  -webkit-mask-image: linear-gradient(to right, transparent, #000 0, #000 95%, transparent);
  mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(0, #000), color-stop(95%, #000), to(transparent));
  mask-image: linear-gradient(to right, transparent, #000 0, #000 95%, transparent);
}

.about-banner {
  margin-top: -5.5625rem;
  position: relative;
  z-index: 20;
}

.about-hero {
  position: relative;
  z-index: 5;
  margin-bottom: 3.625rem;
}

.about-hero__desc {
  margin-bottom: 7.3125rem;
  position: relative;
  z-index: 5;
  margin-bottom: clamp( 7.3125rem , 33.6505681818rem  +  -33.1818181818vw , 11.875rem );
}

.about-hero__desc h1 {
  text-align: center;
  margin-bottom: 1.25rem;
  max-width: 51.25rem;
  margin-inline: auto;
  font-size: clamp( 3.75rem , -2.972972973rem  +  10.8108108108vw , 5rem );
}

.about-hero__desc p,
.about-hero__desc span {
  font-family: "Unbounded", sans-serif;
  line-height: 1;
  font-weight: 500;
  font-size: clamp( 3.75rem , -2.972972973rem  +  10.8108108108vw , 5rem );
}

.about-hero__desc img {
  width: 100%;
}

.about-hero__desc span {
  background-color: #FEFDF9;
  border-radius: 6.25rem;
  padding-bottom: 0.3125rem;
  min-height: 4.375rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: clamp( 0.625rem , -0.3125rem  +  3.5714285714vw , 1.25rem );
}

.about-hero__desc-top {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  margin-bottom: 0.9375rem;
  justify-content: flex-end;
  margin-right: clamp( 0.0000000625rem , -68.062492375rem  +  89.99999vw , 0.5625rem );
}

.about-hero__desc-top img {
  border-radius: 0.9375rem;
  max-width: 7.6875rem;
  aspect-ratio: 123/75;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-hero__desc-bottom {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.875rem;
  margin-left: 13.25rem;
  max-width: 45.3125rem;
}

.about-hero__desc-bottom img {
  border-radius: 0.9375rem;
  max-width: 9.0625rem;
  aspect-ratio: 145/94;
  -o-object-fit: cover;
  object-fit: cover;
  flex-shrink: 0;
}

.about-hero__desc-decor {
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 123/120;
  position: absolute;
  top: -2.5rem;
  left: 0;
  max-width: clamp( 6.125rem , -2.2787162162rem  +  13.5135135135vw , 7.6875rem );
}

.about-hero__desc-decor--2 {
  position: absolute;
  top: -4.5rem;
  right: 0;
  aspect-ratio: 147/144;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: clamp( 4.6875rem , -19.5152027027rem  +  38.9189189189vw , 9.1875rem );
}

.about-hero__desc-decor--3 {
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 292/221;
  position: absolute;
  right: 0;
  bottom: clamp( -8.3125rem , -76.375rem  +  90vw , -6.0625rem );
  max-width: clamp( 15.125rem , -20.8125rem  +  50vw , 18.25rem );
}

.about-hero__img {
  position: relative;
  z-index: 6;
  border-radius: 3.125rem;
  width: 100%;
  max-width: 78.75rem;
  aspect-ratio: 1260/550;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-hero__bg {
  position: absolute;
  max-width: 120rem;
  width: 100%;
  height: 35.1875rem;
  left: 50%;
  top: -2.125rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.about-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.modern {
  position: relative;
  z-index: 10;
}

.modern__inner {
  position: relative;
}

.modern__inner h2 {
  font-size: 2.625rem;
  margin-bottom: 4.375rem;
  line-height: normal;
}

.modern__items {
  display: flex;
  align-items: flex-start;
  gap: 4.375rem 3.125rem;
  justify-content: space-between;
  margin-top: -0.875rem;
}

.modern__item {
  width: 100%;
}

.modern__item p {
  font-size: 1.125rem;
}

.modern__item img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  border-radius: 2.1875rem;
}

.modern__item:first-child {
  max-width: 25rem;
  margin-top: 1.4375rem;
}

.modern__item:first-child img {
  max-width: 25rem;
  aspect-ratio: 400/270;
}

.modern__item:last-child {
  max-width: 38.4375rem;
  padding-bottom: 4.0625rem;
}

.modern__item:last-child img {
  margin-bottom: 4.0625rem;
  max-width: 38.4375rem;
  aspect-ratio: 615/250;
}

.modern__decor {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  aspect-ratio: 130/136;
  margin-inline: auto;
  position: relative;
  left: -5.25rem;
  max-width: clamp( 6.0625rem , -2.1875rem  +  27.5vw , 8.125rem );
}

.modern__decor--2 {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 4.875rem;
  width: 100%;
  aspect-ratio: 1;
  position: absolute;
  bottom: 17.0625rem;
  left: 22.9375rem;
}

.modern__decor--3 {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  aspect-ratio: 164/120;
  position: absolute;
  right: 0;
  bottom: -3.75rem;
  max-width: clamp( 6.875rem , 0.125rem  +  22.5vw , 10.25rem );
}

.tariffs {
  position: relative;
  margin-bottom: 6.25rem;
}

.tariffs__inner {
  position: relative;
  z-index: 5;
}

.tariffs__top {
  max-width: 42.125rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 6.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  position: relative;
  z-index: 5;
}

.tariffs__top h1,
.tariffs__top h2 {
  font-size: 2.625rem;
}

.tariffs__top p {
  max-width: 31.75rem;
  margin-inline: auto;
  line-height: 1.5;
  font-size: 1.125rem;
  font-weight: 600;
}

.tariffs .swiper {
  overflow: hidden;
  margin-inline: -0.9375rem;
  padding-inline: 0.9375rem;
}

.tariffs__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 25rem;
  border-radius: 2.1875rem;
  background-color: #F0F0F0;
  padding: 3.125rem 1.875rem 2.5rem;
  gap: 3.75rem;
  justify-content: space-between;
  overflow: hidden;
}

.tariffs__card h2,
.tariffs__card h3 {
  max-width: 17.1875rem;
  font-size: 2.625rem;
  margin-bottom: 1.5625rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.tariffs__card ul {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.tariffs__card li {
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 6.25rem;
  background-color: #FEFDF9;
  padding-block: 0.3125rem;
  padding-inline: 1.875rem 0.625rem;
  position: relative;
  width: 100%;
  max-width: calc( 100% - clamp( 6.25rem , -25.5208333333rem  +  41.6666666667vw , 7.8125rem )  +  1.875rem );
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.tariffs__card li::after {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #292929;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0.625rem;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.tariffs__card button {
  color: #FEFDF9;
  background-color: #292929;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.tariffs__card strong {
  position: absolute;
  top: -1.25rem;
  color: #FEFDF9;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.625rem 0.9375rem;
  border-radius: 6.25rem;
  background-color: #FD9301;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  max-width: 10.625rem;
  justify-content: center;
  right: clamp( -1.25rem , -42.7625rem  +  54vw , 0.4375rem );
}

.tariffs__card strong img {
  flex-shrink: 0;
  max-width: 1.25rem;
  width: 100%;
  aspect-ratio: 1;
}

.tariffs__badge {
  position: absolute;
  z-index: 5;
  top: 0.9375rem;
  right: 3.625rem;
  text-align: center;
  padding: 0.9375rem 1.5625rem;
  border-radius: 6.25rem;
  background-color: #FEFDF9;
  line-height: 1;
  font-weight: 700;
  font-size: 1.125rem;
  -webkit-transition: right 0.4s ease;
  transition: right 0.4s ease;
}

.tariffs .swiper-slide {
  width: 100%;
  max-width: 25rem;
  position: relative;
}

@media (min-width: 74.99875em) {
  .tariffs .swiper-slide,
  .tariffs__card {
    max-width: 38.4375rem;
  }

  .tariffs .swiper {
    width: 100vw;
    margin-left: 50%;
    margin-right: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding-left: max( 0.9375rem , calc( (100vw - 80.625rem) / 2 + 0.9375rem ) );
    padding-right: 0.9375rem;
  }
}

@media (min-width: 160em) {
  .tariffs .swiper {
    max-width: 100rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 1.25rem, #000 calc(100% - 1.25rem), transparent);
    mask-image: linear-gradient(to right, transparent, #000 1.25rem, #000 calc(100% - 1.25rem), transparent);
  }
}

.tariffs .tariffs__card--main {
  background-color: #292929;
}

.tariffs .tariffs__card--main h2,
.tariffs .tariffs__card--main h3 {
  color: #FEFDF9;
}

.tariffs .tariffs__card--main li::after {
  background-color: #FD9301;
}

.tariffs .tariffs__card--main button {
  color: #292929;
  background-color: #FEFDF9;
}

.tariffs .tariffs__card--main .tariffs__card-price s,
.tariffs .tariffs__card--main .tariffs__card-price span {
  color: #FEFDF9;
}

.tariffs__card-price {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  margin-bottom: 1.875rem;
}

.tariffs__card-price s {
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  opacity: 0.3;
}

.tariffs__card-price span {
  font-family: "Unbounded", sans-serif;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.tariffs__card-top {
  position: relative;
  z-index: 5;
}

.tariffs__card-bottom {
  position: relative;
  z-index: 5;
}

.tariffs__card-installment {
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 0.625rem 1.5625rem;
  border-radius: 6.25rem;
  background-color: #292929;
  color: #FEFDF9;
  position: absolute;
  top: -1.875rem;
  max-width: 10.9375rem;
  right: clamp( -1.25rem , -24.3125rem  +  30vw , -0.3125rem );
}

.tariffs .tariffs__card--main .tariffs__card-installment {
  background-color: #FEFDF9;
  color: #292929;
}

.tariffs__card-installment span {
  font-size: 0.75rem;
}

.tariffs__card-installment p {
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 700;
}

.tariffs__card-icon {
  aspect-ratio: 1;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 4.25rem;
  right: 0;
  max-width: clamp( 6.25rem , -25.5208333333rem  +  41.6666666667vw , 7.8125rem );
}

.tariffs .arrows {
  display: flex;
  margin: 1.875rem auto 0;
}

.tariffs .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.tariffs .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: rgba(41, 41, 41, 0.15);
  opacity: 1;
  cursor: pointer;
  transition: background-color 0.4s ease, width 0.4s ease;
}

.tariffs .swiper-pagination-bullet-active {
  background-color: #FD9301;
  width: 1.5625rem;
  border-radius: 0.3125rem;
}

.tariffs__bg {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  max-width: 120rem;
  height: 45rem;
  top: 3.4375rem;
}

.tariffs__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.tariffs-block .tariffs {
  margin-bottom: 0;
}

.tariffs-block .tariffs__top {
  max-width: 100%;
  margin-inline: 0;
  justify-content: space-between;
  flex-direction: unset;
  flex-wrap: wrap;
  text-align: left;
  align-items: flex-start;
  margin-bottom: 4.375rem;
}

.tariffs-block .tariffs__top h2 {
  max-width: 31.875rem;
}

.tariffs-block .tariffs__top p {
  margin: 0;
}

.about-tariffs {
  margin-bottom: 11.25rem;
}

.cookie {
  position: fixed;
  bottom: 1.5625rem;
  width: 100%;
  z-index: 1000;
}

.cookie__content {
  margin-inline: auto;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
  max-width: 65.3125rem;
  width: 100%;
  border-radius: 2.1875rem;
  background-color: #292929;
  padding: 1.5625rem 3.125rem;
  -webkit-box-shadow: 0 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
}

.cookie__content p {
  color: #FEFDF9;
  text-align: center;
}

.cookie__content p a {
  text-decoration: underline;
  text-underline-offset: 25%;
  text-decoration-thickness: 5%;
}

.cookie__content img {
  position: absolute;
  max-width: 6.875rem;
  width: 100%;
  aspect-ratio: 1;
  bottom: 0;
  left: 0;
}

.cookie__buttons {
  display: flex;
  align-items: center;
  gap: 0.625rem 0.9375rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.cookie__buttons a,
.cookie__buttons button {
  padding: 0.625rem 1.25rem;
  border-radius: 6.25rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.cookie__buttons button {
  background-color: #FEFDF9;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.cookie__buttons a {
  color: #FEFDF9;
  background-color: rgba(254, 253, 249, 0.1);
}

.modal {
  overflow: auto;
  position: fixed;
  inset: 0;
  z-index: 1020;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  align-content: center;
  padding-block: 3.125rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(30%);
  -ms-transform: translateY(30%);
  transform: translateY(30%);
}

.modal--active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.modal__inner {
  position: relative;
  width: 100%;
  max-width: 38.3125rem;
  border-radius: 2.1875rem;
  padding: 3.125rem;
  margin-inline: auto;
  background-color: #FEFDF9;
  -webkit-box-shadow: 0 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
}

.modal__inner h2 {
  text-align: center;
  margin-bottom: 1.5625rem;
  font-size: 2.625rem;
}

.modal__inner p {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 3.125rem;
  max-width: 28.125rem;
  margin-inline: auto;
}

/*
 * Заявка-формы (outro/modal) собираются в CF7 напрямую в админке (вкладка
 * "Форма"), поэтому вёрстка не завязана на конкретные обёрточные div'ы —
 * .outro__form/.modal__form сами являются грид-контейнером, а поля
 * стилизуются по классам, которые CF7 генерирует сам. Так можно свободно
 * добавлять/убирать/переставлять поля в админке, не трогая код.
 */
.modal__form {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9375rem;
}

.modal__form .wpcf7-form-control-wrap:first-child {
  grid-column: span 2;
}

.modal__form .wpcf7-form-control-wrap:has(.wpcf7-acceptance) {
  grid-column: 1 / -1;
  max-width: 29.375rem;
}

.modal__form .wpcf7-form-control-wrap:has(.wpcf7-acceptance):first-of-type {
  margin-top: 0.9375rem;
}

.modal__form .wpcf7-submit {
  grid-column: 1 / -1;
  margin-top: 1.5625rem;
}

.modal__close {
  position: absolute;
  top: 0.9375rem;
  right: 0.9375rem;
  z-index: 2;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 6.25rem;
  background-color: #F0F0F0;
}

.modal__close img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.modal__decor-1 {
  position: absolute;
  top: 5.5625rem;
  left: 1.25rem;
  display: block;
}

.modal__decor-1 img {
  -o-object-fit: cover;
  object-fit: cover;
}

.modal__decor-2 {
  position: absolute;
  bottom: 9.375rem;
  right: 0.625rem;
  display: block;
}

.modal__decor-2 img {
  -o-object-fit: cover;
  object-fit: cover;
}

.outro {
  position: relative;
  z-index: 5;
}

.outro__inner {
  position: relative;
  border-radius: 3.125rem;
  background-color: #FEFDF9;
  -webkit-box-shadow: 0 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
  padding-block: 3.125rem;
  padding-inline: 3.125rem 2.875rem;
  min-height: 29.0625rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp( 1.5625rem , -56.3839285714rem  +  78.5714285714vw , 5rem );
}

.outro__form {
  width: 100%;
  max-width: 37.5rem;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9375rem;
}

.outro__form .wpcf7-form-control-wrap:first-child {
  grid-column: span 2;
}

.outro__form .wpcf7-form-control-wrap:has(.wpcf7-acceptance) {
  grid-column: 1 / -1;
}

.outro__form .wpcf7-form-control-wrap:has(.wpcf7-acceptance):first-of-type {
  margin-top: 0.9375rem;
}

.outro__form .wpcf7-submit {
  grid-column: 1 / -1;
  margin-top: 1.5625rem;
}

.outro__desc {
  max-width: 27.5rem;
  flex-shrink: 0;
}

.outro__desc h2 {
  font-size: 2.625rem;
  margin-bottom: 1.5625rem;
}

.outro__desc p {
  font-weight: 600;
  font-size: 1.125rem;
}

.outro__decor {
  position: absolute;
  bottom: -4rem;
  width: 100%;
  aspect-ratio: 475/330;
  -o-object-fit: contain;
  object-fit: contain;
  left: clamp( 0.625rem , -51.1931818182rem  +  72.7272727273vw , 5.625rem );
  max-width: clamp( 26.875rem , -2.2727272727rem  +  40.9090909091vw , 29.6875rem );
}

.footer {
  position: relative;
  z-index: 10;
  padding-block: 3.125rem;
  background-color: #292929;
  border-radius: 3.125rem 3.125rem 0 0;
}

.footer__top {
  margin-bottom: 3.125rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.1875rem;
}

.footer__items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer__top-box {
  width: 100%;
  max-width: 29.6875rem;
  display: flex;
  flex-direction: column;
  gap: 2.625rem;
}

.footer__item button {
  padding: 0;
  margin-bottom: 0.9375rem;
  color: #FEFDF9;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  cursor: default;
  outline: none;
  text-align: left;
}

.footer__item button img {
  display: none;
}

.footer__item ul {
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
}

.footer__item a {
  color: #FEFDF9;
  opacity: 0.7;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 25%;
}

.footer__contacts {
  max-width: 38.4375rem;
  width: 100%;
  display: flex;
  gap: 1.875rem 1.25rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer__contact {
  display: flex;
  flex-direction: column;
}

.footer__contact span {
  display: block;
  margin-bottom: 0.3125rem;
  color: #FAFAFA;
  opacity: 0.5;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer__contact > a {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FEFDF9;
}

.footer__contact > a:not(:last-child) {
  margin-bottom: 0.3125rem;
}

.footer__contact p {
  color: #FEFDF9;
  line-height: 1.5;
  max-width: 25.3125rem;
}

.footer__contact li {
  line-height: 0;
}

.footer__contact li a {
  border-radius: 0.4375rem;
  line-height: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 0.0625rem solid transparent;
  overflow: hidden;
  background-color: #FEFDF9;
  transition: all 0.4s ease;
}

.footer__contact ul {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer__contact path {
  fill: #292929;
  -webkit-transition: fill 0.4s ease;
  transition: fill 0.4s ease;
}

.footer__copy {
  max-width: 39.375rem;
  width: 100%;
}

.footer__copy p {
  color: #FEFDF9;
  margin-bottom: 0.9375rem;
  line-height: 1.5;
  font-size: 0.875rem;
}

.footer__copy-links {
  display: flex;
  justify-content: space-between;
  gap: 0.9375rem;
  flex-wrap: wrap;
}

.footer__copy-links a {
  color: #FEFDF9;
  text-decoration: underline;
  text-underline-offset: 21.5%;
  text-decoration-thickness: 8%;
  font-size: 0.875rem;
  opacity: 0.5;
}

.footer__dev {
  display: flex;
  max-width: 12.1875rem;
  gap: 1.5625rem;
  align-items: center;
  color: #FEFDF9;
  font-size: 0.875rem;
}

.footer__dev img {
  flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem 1.5625rem;
  flex-wrap: wrap;
}

.arrows:has(.swiper-button-lock) {
  display: none;
}

@media (max-width: 80.62375em) {
  .container-left {
    padding-left: 0.9375rem;
  }

  .promotion-slider .swiper {
    overflow: visible;
  }

  .tariffs__card-price s {
    font-size: 1.375rem;
  }
}

@media (max-width: 74.99875em) {
  .menu > ul {
    gap: 1.25rem;
  }

  .blog__items {
    gap: 3.125rem 1.25rem;
  }

  .article__top img {
    max-width: clamp( 28.75rem , 3.75rem  +  40vw , 31.25rem );
  }

  .schedule__items {
    gap: 1.25rem;
  }

  .faq__items {
    gap: 1.25rem;
  }

  .instructors__cards {
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }

  .instructors__desc h1 {
    margin-bottom: 1.25rem;
  }

  .vehicle-fleet__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .vehicle-fleet__top {
    padding-inline: 2.5rem;
    justify-content: space-between;
  }

  .vehicle-fleet-item {
    max-width: 100%;
  }

  .vehicle-fleet-item img {
    margin-inline: auto;
    max-width: 24.75rem;
  }

  .vehicle-fleet-item button {
    justify-content: center;
    padding-inline: 0.9375rem;
  }

  .documents__items {
    gap: 1.25rem;
  }

  .documents__item {
    border-radius: 1.5625rem;
    padding-inline: 0.8125rem;
  }

  .documents__item p {
    font-size: 1rem;
  }

  .documents__item-img {
    max-width: 13.125rem;
  }

  .documents__item-decor--1 {
    max-width: 4.625rem;
    left: -3rem;
  }

  .documents__item-decor--2 {
    max-width: 4.625rem;
    top: 2.1875rem;
    left: -2.875rem;
  }

  .school__bg {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .promotions__items {
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .comfort__inner {
    gap: 6.25rem;
  }

  .stages__items {
    margin-right: 0;
  }

  .about-hero__desc-top {
    justify-content: center;
    gap: 0.9375rem;
  }

  .about-hero__desc-bottom {
    justify-content: center;
    margin-inline: auto;
  }

  .tariffs__top {
    margin-bottom: 3.75rem;
  }

  .tariffs .swiper {
    margin-bottom: 3.75rem;
  }

  .tariffs .swiper-wrapper {
    gap: 0;
    align-items: stretch;
    min-height: 35.625rem;
  }

  .tariffs__card {
    padding-block: 2.8125rem 2.1875rem;
    gap: 3.4375rem;
    height: 100%;
    max-width: 27.875rem;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .tariffs__card h2,
  .tariffs__card h3 {
    font-size: 2.375rem;
    margin-bottom: 1.25rem;
  }

  .tariffs__card li {
    font-size: 1rem;
    padding-block: 0.28125rem;
    padding-inline: 1.6875rem 0.5625rem;
    max-width: calc( 100% - 5.75rem );
  }

  .tariffs__card li::after {
    width: 0.5625rem;
    height: 0.5625rem;
  }

  .tariffs__card strong {
    right: 5.625rem;
    font-size: 1rem;
    padding: 0.5625rem 0.8125rem;
    top: -1rem;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .tariffs__card strong img {
    max-width: 1rem;
    -webkit-transition: max-width 0.4s ease;
    transition: max-width 0.4s ease;
  }

  .tariffs__card button {
    border-radius: 0.8125rem;
    padding-block: 0.8125rem;
    font-size: 1rem;
  }

  .tariffs .swiper-slide {
    max-width: 27.875rem;
  }

  .tariffs__card-price {
    margin-bottom: 1.6875rem;
  }

  .tariffs__card-price s {
    font-size: 1.3125rem;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .tariffs__card-price span {
    font-size: 2.375rem;
  }

  .tariffs__card-installment {
    right: 4.375rem;
    padding-inline: 1.375rem;
    -webkit-transition: right 0.4s ease, padding-inline 0.4s ease;
    transition: right 0.4s ease, padding-inline 0.4s ease;
  }

  .tariffs__card-installment span {
    font-size: 0.6875rem;
    -webkit-transition: font-size 0.4s ease;
    transition: font-size 0.4s ease;
  }

  .tariffs__card-installment p {
    font-size: 1rem;
    -webkit-transition: font-size 0.4s ease;
    transition: font-size 0.4s ease;
  }

  .tariffs__card-icon {
    max-width: 7rem;
    top: 3.75rem;
    right: 0.625rem;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .tariffs .arrows {
    display: flex;
    margin-inline: auto;
  }

  .outro__inner {
    padding-inline: 2.1875rem;
  }
}

@media (max-width: 70.62375em) {
  .breadcrumbs {
    padding-top: 8.125rem;
  }

  .header__burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    justify-content: center;
    padding: 0;
    width: 2.1875rem;
    height: 1.125rem;
  }

  .header__burger::after,
  .header__burger::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.125rem;
    border-radius: 0.5rem;
    left: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-color: #292929;
  }

  .header__burger::after {
    -webkit-transform: translateY(0.5rem);
    -ms-transform: translateY(0.5rem);
    transform: translateY(0.5rem);
  }

  .header__burger::before {
    -webkit-transform: translateY(-0.5rem);
    -ms-transform: translateY(-0.5rem);
    transform: translateY(-0.5rem);
  }

  .header__burger span {
    width: 100%;
    height: 0.125rem;
    background-color: #292929;
    border-radius: 0.5rem;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  [data-color] .header__burger::after,
  [data-color] .header__burger::before,
  [data-color] .header__burger span {
    background-color: #FEFDF9;
  }

  .open-menu .header__burger::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #292929;
  }

  .open-menu .header__burger::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #292929;
  }

  .open-menu .header__burger span {
    opacity: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    background-color: #292929;
  }

  .header__menu {
    display: block;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    -webkit-transition: max-height 0.4s ease, opacity 0.4s ease;
    transition: max-height 0.4s ease, opacity 0.4s ease;
  }

  .logo {
    max-width: 9.25rem;
  }

  .menu > ul {
    justify-content: center;
    gap: 0.9375rem;
    flex-wrap: wrap;
    max-width: 47.25rem;
  }

  .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1.5625rem;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }

  .menu a,
  .menu button {
    border-radius: 0.625rem;
    background-color: #F0F0F0;
    padding: 0.4375rem 0.9375rem;
  }

  .menu > ul li:nth-child(5) {
    order: 2;
  }

  .menu > ul li:nth-child(6) {
    order: 1;
  }

  .menu button {
    width: 100%;
  }

  [data-color] .menu a,
  [data-color] .menu button {
    color: #292929;
  }

  .open-menu .menu {
    opacity: 1;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }

  .dropdown {
    min-width: 8.75rem;
  }

  .dropdown a {
    border-radius: 0;
    padding: 0;
    background-color: transparent;
  }

  .dropdown ul {
    background-color: #F0F0F0;
    margin-top: -0.125rem;
    padding-block: 0 0.4375rem;
    min-width: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0 0 0.625rem 0.625rem;
  }

  .dropdown path {
    fill: #292929;
  }

  .dropdown.dropdown-menu__open button {
    border-radius: 0.625rem 0.625rem 0 0;
  }

  .blog-item {
    max-width: 100%;
  }

  .article__top-desc {
    margin-top: 0;
  }

  .item-schedule {
    padding: 1.5rem;
    flex-direction: column;
  }

  .item-schedule__date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 0.625rem 0.9375rem;
  }

  .item-schedule__date button {
    width: auto;
    min-width: 13.6875rem;
  }

  .item-schedule__date-start {
    margin-bottom: 0;
  }

  .item-schedule__desc {
    max-width: 100%;
  }

  .item-schedule__desc-group {
    margin-bottom: 0.625rem;
  }

  .faq__item-text {
    padding-top: 1.25rem;
  }

  .instructors__top {
    padding-inline: 2.5rem;
  }

  .instructors__top > img {
    max-width: 26.6875rem;
  }

  .instructors__images > img {
    left: clamp( -2.3125rem , 6618.3125rem  +  -10700vw , 4.375rem );
  }

  .vehicle-fleet__top {
    gap: 0;
  }

  .vehicle-fleet__images {
    max-width: 29rem;
  }

  .vehicle-fleet__images-box div {
    max-width: clamp( 11.875rem , -0.8837209302rem  +  26.511627907vw , 15.4375rem );
  }

  .vehicle-fleet__images-1 {
    max-width: 4.8125rem;
    top: -0.4375rem;
    left: 3.75rem;
  }

  .banner-promotions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9375rem;
  }

  .banner-promotions__img {
    position: static;
    align-self: flex-end;
    max-width: clamp( 15.625rem , -25.15625rem  +  72.5vw , 19.25rem );
  }

  .promotion__desc h1 {
    font-size: 1.5rem;
    margin-bottom: 1.875rem;
  }

  .reviews__info {
    max-width: 29.6875rem;
  }

  .auto__banner-img {
    right: 0;
    max-width: 14.4375rem;
  }

  .format__items {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .format__item {
    max-width: 33.6875rem;
  }

  .format__item:last-child {
    grid-column: span 2;
  }

  .format__item-content {
    padding: 2.5rem;
  }

  .formula__top img {
    left: 4.375rem;
  }

  .formula__inner {
    gap: 1.25rem;
  }

  .formula__info {
    max-width: 36.25rem;
  }

  .about-hero__desc-top img {
    max-width: clamp( 5.0625rem , 1.875rem  +  12.1428571429vw , 7.1875rem );
  }

  .about-hero__desc-bottom img {
    max-width: 8.125rem;
  }

  .about-hero__desc-decor {
    top: -3.3125rem;
  }

  .about-hero__desc-decor--2 {
    top: -3.125rem;
  }

  .tariffs-block .tariffs__top {
    flex-direction: column;
    text-align: center;
    margin-bottom: 3.75rem;
  }

  .tariffs-block .tariffs__top h2,
  .tariffs-block .tariffs__top p {
    margin-inline: auto;
  }

  .cookie__content {
    padding-inline: 1.5625rem;
  }

  .cookie__content img {
    max-width: 5.5625rem;
  }

  .outro__form {
    grid-template-columns: repeat(1, 1fr);
  }

  .outro__form .wpcf7-form-control-wrap:first-child {
    grid-column: unset;
  }

  .footer__contacts {
    max-width: 26.875rem;
  }
}

@media (max-width: 62.06125em) {
  .container {
    padding-inline: 2.5rem;
  }

  .tariffs .swiper {
    margin-inline: -2.5rem;
    padding-inline: 2.5rem;
  }

  .container-left {
    padding-inline: 2.5rem;
  }

  .breadcrumbs {
    margin-bottom: 4.0625rem;
  }

  .mask {
    mask-image: none;
  }

  .lg-outer .lg-video-object {
    border-radius: 1.5625rem;
  }

  .header {
    padding-top: 2.5rem;
  }

  .hero {
    min-height: 58.75rem;
    padding-top: 13.4375rem;
    margin-bottom: 7.5rem;
  }

  .hero__desc {
    margin-bottom: 6.25rem;
  }

  .hero__list {
    justify-content: flex-start;
    margin: 0;
  }

  .blog__top {
    flex-direction: column;
    margin-bottom: 3.125rem;
  }

  .article__top {
    flex-direction: column;
    margin-bottom: 3.125rem;
  }

  .article__top img {
    max-width: 100%;
    border-radius: 2.1875rem;
  }

  .article__top-desc {
    max-width: 100%;
  }

  .article__top-desc h1 {
    font-size: 2rem;
    margin-bottom: 0.9375rem;
  }

  .schedule__top {
    margin-bottom: 3.75rem;
  }

  .schedule__top h1 {
    margin-bottom: 1.25rem;
  }

  .contacts__inner {
    flex-direction: column;
  }

  .contacts__item:nth-child(3) {
    grid-column: span 3;
    max-width: 25.3125rem;
    order: 1;
  }

  .contacts__items {
    grid-template-columns: repeat(3, 1fr);
    max-width: 39.375rem;
    -webkit-column-gap: 2.8125rem;
    -moz-column-gap: 2.8125rem;
    column-gap: 2.8125rem;
  }

  .contacts__map {
    max-width: 100%;
    height: 31.25rem;
  }

  .advice .breadcrumbs {
    margin-bottom: 4.0625rem;
  }

  .faq h1 {
    margin-bottom: 4.375rem;
  }

  .faq__items {
    gap: 0.9375rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .faq__item button {
    gap: 4.375rem;
    min-height: auto;
  }

  .instructors .breadcrumbs {
    margin-bottom: 4.0625rem;
  }

  .instructors__cards {
    row-gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .instructors__inner > img {
    right: 3rem;
  }

  .instructors__top {
    padding-block: 2.5rem 0.9375rem;
    padding-inline: 2.1875rem 0.9375rem;
    margin-bottom: 6.25rem;
    gap: 0;
  }

  .instructors__top > img {
    bottom: -11.0625rem;
    left: 1.25rem;
    -webkit-transform: rotate(127deg);
    -ms-transform: rotate(127deg);
    transform: rotate(127deg);
    -webkit-filter: blur(0.40625rem);
    filter: blur(0.40625rem);
  }

  .instructors__desc p {
    max-width: 27.5rem;
  }

  .instructors__desc h1 {
    font-size: clamp( 1.75rem , -1.5792682927rem  +  6.8292682927vw , 2.625rem );
  }

  .instructors__images {
    gap: 0;
    max-width: 19.125rem;
    right: 4.875rem;
    margin-top: 0.625rem;
  }

  .instructors__images div {
    border-radius: 1.5625rem;
    position: relative;
    flex-shrink: 0;
    max-width: clamp( 11.375rem , 4.7573529412rem  +  11.7647058824vw , 12rem );
  }

  .instructors__images div:nth-child(2) {
    left: clamp( 5.375rem , 19.8602941176rem  +  -23.5294117647vw , 6.625rem );
  }

  .instructors__images div:last-child {
    margin-top: 8.75rem;
  }

  .instructors__images > img {
    bottom: clamp( 2.5rem , -4757.0625rem  +  7700vw , 7.3125rem );
  }

  .instructors-card {
    padding-top: 0.3125rem;
    padding-inline: 0.3125rem;
  }

  .instructor__inner {
    flex-direction: column;
    max-width: 37.625rem;
    margin-bottom: 6.25rem;
  }

  .instructor__img {
    max-width: 100%;
  }

  .video {
    max-width: 37.625rem;
    height: 46.875rem;
  }

  .vehicle-fleet .tab-buttons {
    margin-bottom: 3.125rem;
  }

  .vehicle-fleet__top {
    padding: 2.5rem 1.25rem 2.0625rem 2.5rem;
  }

  .vehicle-fleet__desc {
    margin-top: 0;
  }

  .vehicle-fleet__images-box div:first-child {
    margin-top: 6.1875rem;
  }

  .vehicle-fleet__images-box div:last-child {
    margin-left: -1.875rem;
  }

  .vehicle-fleet__images-2 {
    bottom: -3.875rem;
    right: clamp( 0.0000000625rem , -17.2857136994rem  +  31.4285704762vw , 2.0625rem );
  }

  .vehicle-fleet-item button {
    padding-inline: 2.8125rem 0.3125rem;
    justify-content: space-between;
    gap: 1.25rem;
  }

  .school__bg {
    top: 4.375rem;
    max-width: 62rem;
    height: 24.125rem;
  }

  .school__inner > img {
    top: -4.25rem;
    max-width: clamp( 11.25rem , -0.8372093023rem  +  25.1162790698vw , 14.625rem );
  }

  .school__desc {
    max-width: clamp( 29.375rem , -9.7965116279rem  +  81.3953488372vw , 40.3125rem );
  }

  .promotions .item-promotions {
    min-height: 34.625rem;
  }

  .promotions .item-promotions__img {
    right: clamp( -6.25rem , -56.171875rem  +  88.75vw , -1.8125rem );
  }

  .banner-promotions__text {
    max-width: 30rem;
  }

  .promotion {
    margin-bottom: 9.375rem;
  }

  .promotion .breadcrumbs {
    margin-bottom: 4.0625rem;
  }

  .promotion__inner {
    flex-direction: row-reverse;
  }

  .promotion__desc {
    max-width: 34.375rem;
  }

  .promotion .item-promotions {
    max-width: 18.1875rem;
    min-height: auto;
    padding: 1.6875rem 1rem 0;
    border-radius: 1.5625rem;
  }

  .promotion .item-promotions h2 {
    font-size: 1.75rem;
    margin-bottom: 1.0625rem;
  }

  .promotion .item-promotions p {
    font-size: 0.875rem;
    max-width: 14.375rem;
    margin-bottom: 1.25rem;
  }

  .promotion .item-promotions span {
    font-size: 2.8125rem;
    margin-left: -0.1875rem;
    max-width: 10rem;
  }

  .promotion .item-promotions__img {
    max-width: 13.75rem;
    position: relative;
    right: -2.1875rem;
    margin-left: auto;
    margin-top: -3.9375rem;
  }

  .reviews {
    margin-bottom: 6.25rem;
  }

  .reviews .breadcrumbs {
    margin-bottom: 5rem;
  }

  .reviews__bg {
    display: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .reviews__inner {
    flex-direction: column;
  }

  .reviews__text {
    max-width: 31.75rem;
    margin-bottom: 0;
  }

  .reviews__info {
    margin-top: 0;
    max-width: 46.5625rem;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5625rem;
  }

  .reviews__socials {
    margin-top: 0.625rem;
  }

  .reviews .swiper {
    margin-bottom: 3.125rem;
  }

  .reviews .swiper-slide {
    border-radius: 1.5625rem;
  }

  .reviews .swiper-slide:last-child {
    margin-right: 0;
  }

  .reviews__box span {
    max-width: 3.75rem;
  }

  .reviews .arrows {
    margin-inline: auto;
  }

  .auto__nav {
    margin-bottom: 3.125rem;
  }

  .auto__banner {
    margin-bottom: 5rem;
  }

  .auto__banner-img {
    bottom: -2.125rem;
  }

  .team {
    margin-bottom: 10.3125rem;
  }

  .team__desc h2 {
    max-width: 100%;
  }

  .main-reviews .reviews__bg {
    display: block;
    height: 24.125rem;
    top: -9.375rem;
  }

  .format {
    margin-bottom: 11.25rem;
  }

  .format__item {
    max-width: 27.875rem;
    min-height: 28.125rem;
  }

  .formula-comfort-bg {
    margin-inline: 0;
    padding-block: 3.75rem 4.375rem;
    border-radius: 1.875rem;
  }

  .formula-comfort-bg .formula {
    margin-bottom: 3.75rem;
  }

  .comfort__inner {
    flex-direction: column;
    gap: 4.375rem;
  }

  .comfort__info {
    max-width: 100%;
  }

  .comfort__info p {
    max-width: 38.75rem;
  }

  .comfort .swiper {
    overflow: visible;
    margin-bottom: 3.75rem;
  }

  .comfort .arrows {
    margin-inline: auto;
  }

  .comfort .swiper-slide {
    max-width: 27.9375rem;
  }

  .comfort .swiper-slide:last-child {
    margin-right: 0;
  }

  .formula {
    margin-bottom: 6.25rem;
  }

  .formula__top {
    margin-bottom: 3.75rem;
  }

  .formula__top img {
    top: -6.875rem;
    left: 6.5625rem;
  }

  .formula__info {
    max-width: 37.8125rem;
    margin-top: 0;
  }

  .formula__info a {
    margin-bottom: 3.125rem;
  }

  .formula__desc {
    margin-top: 0;
    margin-inline: 4.0625rem 0;
  }


  .gallery .swiper {
    margin-bottom: 3.75rem;
  }

  .gallery .swiper-slide {
    max-width: 27.9375rem;
    aspect-ratio: 447/324;
  }

  .stages__decor {
    max-width: 29.6875rem;
    height: 39.6875rem;
  }

  .stages__items {
    margin: 0;
    gap: 1.25rem;
    max-width: 100%;
  }

  .stages__box-decor {
    display: none;
  }

  .stages__bg {
    object-position: left 30%;
  }

  .promotion-slider__top {
    margin-bottom: 3.125rem;
  }

  .promotion-slider .item-promotions {
    min-height: auto;
    padding: 1.6875rem 1rem 0;
    border-radius: 1.5625rem;
  }

  .promotion-slider .item-promotions h3 {
    font-size: 1.75rem;
    margin-bottom: 1.0625rem;
  }

  .promotion-slider .item-promotions p {
    font-size: 0.875rem;
    max-width: 14.375rem;
    margin-bottom: 1.25rem;
  }

  .promotion-slider .item-promotions span {
    font-size: 2.8125rem;
    margin-left: -0.1875rem;
    max-width: 10rem;
  }

  .promotion-slider .item-promotions__img {
    max-width: 13.75rem;
    position: relative;
    right: -2.1875rem;
    margin-left: auto;
    margin-top: -3.9375rem;
    right: clamp( -5rem , -47.65625rem  +  75vw , -2.1875rem );
  }

  .promotion-slider .swiper-slide {
    max-width: 18.1875rem;
  }

  .promotion-slider .swiper {
    overflow: hidden;
  }

  .about-block {
    padding-bottom: 17.375rem;
  }

  .about-block .breadcrumbs {
    margin-bottom: 4.0625rem;
  }

  .about-block__bg {
    display: none;
  }

  .about-banner {
    margin-top: -9.875rem;
  }

  .about-hero {
    margin-bottom: 6.25rem;
  }

  .about-hero__desc h1 {
    max-width: 40.625rem;
    margin-bottom: clamp( 0.3125rem , -0.90625rem  +  4.6428571429vw , 1.125rem );
  }

  .about-hero__desc-top {
    justify-content: flex-start;
    margin-bottom: clamp( 0.0000000625rem , -1.6874998437rem  +  6.4285710714vw , 1.125rem );
  }

  .about-hero__desc-bottom {
    max-width: 35.625rem;
  }

  .about-hero__desc-decor--2 {
    top: -0.1875rem;
  }

  .about-hero__desc-decor--3 {
    right: 0.375rem;
  }

  .about-hero__img {
    border-radius: 2.1875rem;
  }

  .about-hero__bg {
    height: 19.3125rem;
    top: 4.0625rem;
  }

  .modern__inner h2 {
    max-width: 40.625rem;
  }

  .modern__items {
    margin-top: 0;
    flex-direction: column-reverse;
  }

  .modern__item:first-child {
    max-width: 37.5rem;
    margin-top: 0;
  }

  .modern__item:first-child img {
    max-width: 37.5rem;
  }

  .modern__item:last-child {
    max-width: 47.3125rem;
    padding-bottom: 0;
    align-self: flex-end;
  }

  .modern__item:last-child img {
    max-width: 47.3125rem;
    margin-bottom: 2.5rem;
  }

  .modern__decor {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
  }

  .modern__decor--2 {
    bottom: 62.3595505618%;
    left: clamp( 0.0000000625rem , -112.8124979583rem  +  189.9999966667vw , 3.5625rem );
  }

  .modern__decor--3 {
    bottom: 19.75rem;
  }

  .tariffs__top {
    gap: 0.9375rem;
  }

  .tariffs__bg {
    height: 24.125rem;
    top: 1rem;
  }

  .about-tariffs {
    margin-bottom: 10.3125rem;
  }

  .modal__inner {
    max-width: 57rem;
  }

  .modal__inner h2 {
    max-width: 34.375rem;
    margin-inline: auto;
  }

  .modal__close {
    top: 1.25rem;
    right: 1.25rem;
  }

  .modal__decor-1 {
    top: 1.8125rem;
    left: 0.875rem;
  }

  .modal__decor-1 img {
    max-width: clamp( 3.125rem , -20.5rem  +  48.4615384615vw , 7.0625rem );
  }

  .modal__decor-2 {
    bottom: 7.1875rem;
    right: 1rem;
  }

  .modal__decor-2 img {
    max-width: clamp( 8.125rem , -16.6931818182rem  +  50.9090909091vw , 13.375rem );
  }

  .modal__form {
    max-width: 34.375rem;
    margin-inline: auto;
    position: relative;
    z-index: 5;
  }

  .outro__inner {
    flex-direction: column;
    padding: 4.375rem;
    min-height: 21.875rem;
    gap: 2.5rem;
  }

  .outro__form {
    max-width: 100%;
  }

  .outro__form {
    grid-template-columns: repeat(2, 1fr);
  }

  .outro__form .wpcf7-form-control-wrap:first-child {
    grid-column: span 2;
  }

  .outro__decor {
    bottom: auto;
    top: -3.75rem;
    left: auto;
    right: 0;
    max-width: clamp( 12.1875rem , -38.9553571429rem  +  102.2857142857vw , 23.375rem );
  }

  .footer {
    padding-block: 2.5rem;
  }

  .footer__top {
    gap: 1.5625rem;
    margin-bottom: 2.5rem;
  }

  .footer__contacts {
    max-width: 21rem;
    flex-direction: column;
    gap: 1.5625rem;
  }

  .footer__copy {
    max-width: 100%;
  }

  .footer__copy-links {
    justify-content: unset;
    gap: 0.9375rem 2.1875rem;
  }
}

@media (max-width: 59.37375em) {
  .documents__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .documents__item {
    max-width: 100%;
  }

  .documents__item p {
    font-size: 1.125rem;
  }

  .documents__item:nth-child(3) {
    grid-column: span 2;
  }

  .documents__item-img {
    max-width: 16.875rem;
  }

  .documents__item-decor--2 {
    top: -2.1875rem;
    left: 7.375rem;
  }

  .about-block .breadcrumbs {
    margin-bottom: 5rem;
  }

  .about-hero__desc {
    margin-bottom: 2.5rem;
  }

  .about-hero__desc h1 {
    max-width: 100%;
  }

  .about-hero__desc p,
  .about-hero__desc span,
  .about-hero__desc h1 {
    font-size: clamp( 2rem , -0.625rem  +  10vw , 3.75rem );
  }

  .about-hero__desc span {
    min-height: 2.4375rem;
  }

  .about-hero__desc-top {
    justify-content: center;
  }

  .about-hero__desc-bottom {
    max-width: 100%;
  }

  .about-hero__desc-bottom img {
    max-width: 9.0625rem;
    max-width: clamp( 5.25rem , -0.46875rem  +  21.7857142857vw , 9.0625rem );
  }

  .about-hero__desc-decor {
    max-width: clamp( 3.3125rem , 0.78125rem  +  9.6428571429vw , 5rem );
    top: clamp( -4.875rem , -0.8125rem  +  -9.2857142857vw , -3.25rem );
  }

  .about-hero__desc-decor--2 {
    right: 5.5020632737%;
    top: 23.0277185501%;
    max-width: clamp( 3.375rem , 1.40625rem  +  7.5vw , 4.6875rem );
  }

  .about-hero__desc-decor--3 {
    position: static;
    margin-left: auto;
  }

  .footer__items {
    justify-content: unset;
    gap: 1.25rem 3.125rem;
  }

  .footer__top-box {
    max-width: 40.625rem;
    gap: 2.5rem;
  }

  .footer__contacts {
    max-width: 100%;
    flex-direction: unset;
  }

  .footer__contact p {
    max-width: 100%;
  }
}

@media (max-width: 56.87375em) {
  .promotion-slider__top {
    margin-bottom: 2.5rem;
  }

  .promotion-slider__bottom {
    display: block;
  }

  .promotion-slider .arrows {
    margin-inline: auto;
  }

  .promotion-slider .item-promotions p {
    max-width: 21.875rem;
  }

  .promotion-slider .item-promotions span {
    margin-left: 0;
  }

  .promotion-slider .item-promotions__img {
    right: -2.1875rem;
  }

  .promotion-slider .swiper-slide {
    max-width: 100%;
  }

  .promotion-slider .swiper {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 54.99875em) {
  .hero__desc h1 {
    font-size: 3.4375rem;
  }

  .faq__help .btn {
    position: static;
    max-width: 100%;
    margin-bottom: 1.5625rem;
    padding-block: 0.9375rem;
  }

  .faq__help textarea {
    padding-top: 0.9375rem;
    border-radius: 0.625rem;
    padding-right: 1.5625rem;
    margin-bottom: 0.9375rem;
  }

  .faq__help textarea::-webkit-input-placeholder {
    font-size: 1.125rem;
    line-height: normal;
  }

  .faq__help textarea::-moz-placeholder {
    font-size: 1.125rem;
    line-height: normal;
  }

  .faq__help textarea:-ms-input-placeholder {
    font-size: 1.125rem;
    line-height: normal;
  }

  .faq__help textarea::-ms-input-placeholder {
    font-size: 1.125rem;
    line-height: normal;
  }

  .faq__help textarea::placeholder {
    font-size: 1.125rem;
    line-height: normal;
  }

  .faq__help-inputs {
    flex-direction: column;
    margin-bottom: 1.5625rem;
  }

  .instructors__top {
    border-radius: 1.5625rem;
  }

  .instructors__desc p {
    font-size: 1.0625rem;
  }

  .instructors__images {
    max-width: 17.875rem;
    margin-top: 0;
  }

  .instructors__images > img {
    max-width: 5.625rem;
  }

  .vehicle-fleet__top {
    padding-inline: 1.25rem;
  }

  .vehicle-fleet__desc p {
    font-size: 1.0625rem;
  }

  .vehicle-fleet__images-2 {
    max-width: 10.0625rem;
    bottom: -3.125rem;
  }

  .vehicle-fleet-item button {
    padding-left: 0.9375rem;
  }

  .school__desc h2 {
    font-size: clamp( 1.5625rem , -0.0284090909rem  +  6.0606060606vw , 2.1875rem );
  }

  .school__desc p {
    font-size: 1rem;
  }

  .promotions .item-promotions {
    min-height: auto;
    padding-bottom: 0;
  }

  .promotions .item-promotions p {
    font-size: 1rem;
    margin-bottom: 1.5625rem;
  }

  .promotions .item-promotions h2,
  .promotions .item-promotions h3 {
    font-size: 2.0625rem;
    margin-bottom: 1.5625rem;
  }

  .promotions .item-promotions span {
    font-size: 3.4375rem;
    max-width: 11.875rem;
  }

  .promotions .item-promotions__img {
    position: relative;
    bottom: 0;
    right: -3.5625rem;
    margin-left: auto;
    margin-top: -4.375rem;
    max-width: 15.625rem;
  }

  .banner-promotions__text {
    max-width: 29.375rem;
  }

  .banner-promotions__text h2 {
    font-size: clamp( 1.5625rem , -0.0284090909rem  +  6.0606060606vw , 2.1875rem );
  }

  .banner-promotions__text p {
    font-size: 1rem;
  }

  .banner-promotions__img {
    right: 0.3125rem;
    max-width: 11.25rem;
    top: auto;
    bottom: -2.5rem;
  }

  .promotion__inner {
    flex-direction: column;
  }

  .promotion__desc {
    max-width: 100%;
  }

  .promotion__desc h1 {
    max-width: 100%;
    margin-bottom: 1.25rem;
  }

  .promotion .item-promotions {
    max-width: 21.25rem;
  }

  .promotion .item-promotions p {
    max-width: 21.875rem;
  }

  .promotion .item-promotions span {
    margin-left: 0;
  }

  .auto__banner-text h2 {
    font-size: 2.1875rem;
  }

  .auto__banner-text p {
    font-size: 1rem;
  }

  .format__items {
    grid-template-columns: repeat(1, 1fr);
  }

  .format__item {
    max-width: 100%;
    min-height: 18.75rem;
  }

  .format__item:last-child {
    grid-column: unset;
  }

  .formula__top h2 {
    font-size: 3.4375rem;
  }

  .formula__top img {
    top: -7.8125rem;
  }

  .stages__desc {
    max-width: 21rem;
  }

  .stages__desc h2 {
    font-size: 2.1875rem;
  }

  .stages__desc p {
    font-size: 1rem;
  }

  .stages__items {
    gap: 0.9375rem;
  }

  .stages__item h3 {
    font-size: 1.25rem;
  }

  .stages__item li,
  .stages__item p {
    font-size: 1rem;
  }

  .modern__inner h2 {
    max-width: 25rem;
  }

  .modern__item:last-child {
    max-width: 100%;
  }

  .modern__item:last-child img {
    max-width: 100%;
  }

  .modern__decor {
    right: 5rem;
  }

  .modern__decor--2 {
    display: none;
  }

  .outro__inner {
    padding-inline: 3.4375rem;
  }
}

@media (max-width: 47.99875em) {
  .container {
    padding-inline: 1.25rem;
  }

  .tariffs .swiper {
    margin-inline: -1.25rem;
    padding-inline: 1.25rem;
  }

  .container-left {
    padding-inline: 1.25rem;
  }

  .breadcrumbs {
    margin-bottom: 2.8125rem;
  }

  .margin-bottom {
    margin-bottom: 7.5rem;
  }

  .header {
    padding-top: 1.875rem;
  }

  .open-menu .header {
    border-radius: 0 0 2.1875rem 2.1875rem;
  }

  .menu a,
  .menu button {
    font-size: 1rem;
  }

  .menu button {
    gap: 0.625rem;
  }

  .dropdown {
    min-width: 8.125rem;
  }

  .dropdown a,
  .dropdown span {
    font-size: 0.875rem;
  }

  .hero {
    border-radius: 0 0 2.5rem 2.5rem;
    min-height: 52.75rem;
    padding-top: 11.875rem;
    margin-bottom: 4.375rem;
  }

  .hero__desc h1 {
    margin-bottom: 1.25rem;
    font-size: clamp( 1.5625rem , -2.8125rem  +  16.6666666667vw , 2.5rem );
  }

  .hero__desc p {
    font-size: 1rem;
    max-width: 32.5rem;
  }

  .hero__list {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .hero__list span {
    font-size: 1.25rem;
  }

  .hero__list li {
    max-width: 100%;
  }

  .hero__list li::after {
    width: 5.3125rem;
    height: 0.0625rem;
    right: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: auto;
    bottom: -0.875rem;
    opacity: 0.2;
  }

  .blog h1 {
    font-size: 2.5rem;
  }

  .blog__top {
    row-gap: 3.125rem;
  }

  .blog__items {
    grid-template-columns: repeat(auto-fill, minmax(21.5625rem, 1fr));
  }

  .filter-buttons button {
    font-size: 1rem;
  }

  .article__top {
    margin-bottom: 1.5625rem;
  }

  .article__top img {
    border-radius: 1.5625rem;
  }

  .article__top-desc h1 {
    font-size: 1.375rem;
  }

  .article__top-desc p {
    font-size: 1rem;
  }

  .article__text p {
    font-size: 1rem;
  }

  .article__text p:has(+ h2) {
    margin-bottom: 1.5625rem;
  }

  .article__text li {
    font-size: 1rem;
  }

  .article__text li::after {
    top: 0.1875rem;
  }

  .article__text h2 {
    font-size: 1.25rem;
    margin-bottom: 0.9375rem;
  }

  .schedule__top {
    margin-bottom: 3.125rem;
  }

  .schedule__top p {
    font-size: 1rem;
  }

  .schedule__top h1 {
    font-size: clamp( 1.5625rem , -0.3125rem  +  7.1428571429vw , 2.5rem );
  }

  .schedule__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.9375rem;
  }

  .item-schedule {
    padding: 1.1875rem;
    border-radius: 1.5625rem;
    max-width: 100%;
    gap: 1.5625rem;
  }

  .item-schedule__date button {
    min-width: 12.5rem;
  }

  .contacts h1 {
    font-size: 2.5rem;
    margin-bottom: 3.125rem;
  }

  .contacts__inner {
    gap: 3.125rem;
  }

  .contacts__item:nth-child(3) {
    grid-column: span 2;
  }

  .contacts__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2.1875rem;
    max-width: 100%;
  }

  .contacts__map {
    border-radius: 1.5625rem;
  }

  .advice .breadcrumbs {
    margin-bottom: 2.8125rem;
  }

  .advice h1 {
    margin-bottom: 3.125rem;
  }

  .advice__desc p {
    font-size: 1rem;
  }

  .advice__desc h2 {
    font-size: 1.125rem;
    margin-bottom: 0.9375rem;
    padding-top: 0.9375rem;
  }

  .advice__desc span {
    margin-bottom: 0.9375rem;
  }

  .faq h1 {
    margin-bottom: 3.125rem;
  }

  .faq__items {
    margin-bottom: 6.25rem;
  }

  .faq__item {
    padding: 0.9375rem;
  }

  .faq__item button {
    gap: 1.25rem;
    font-size: 1rem;
  }

  .faq__item span {
    align-self: flex-start;
  }

  .faq__item-text {
    padding-top: 0.9375rem;
  }

  .faq__item-text p {
    font-size: 1rem;
  }

  .instructors .breadcrumbs {
    margin-bottom: 2.8125rem;
  }

  .instructors .tab-buttons {
    margin-bottom: 2.1875rem;
  }

  .instructors__cards {
    gap: 1.5625rem 0.9375rem;
    grid-template-columns: repeat(auto-fill, minmax(20.9375rem, 1fr));
  }

  .instructors__inner > img {
    max-width: 4.9375rem;
    right: 2.0625rem;
  }

  .instructors__top {
    flex-direction: column;
    gap: 1.5625rem;
    padding-inline: 1.25rem;
    padding-bottom: 2.5rem;
    margin-bottom: 3.125rem;
  }

  .instructors__desc {
    max-width: 29.375rem;
  }

  .instructors__desc h1 {
    font-size: 2.1875rem;
  }

  .instructors__images {
    max-width: 100%;
    gap: 1.125rem;
    right: 0;
    justify-content: center;
  }

  .instructors__images div {
    flex-shrink: unset;
    max-width: 12.5rem;
  }

  .instructors__images div:nth-child(2) {
    left: 0;
  }

  .instructors__images div:last-child {
    margin-top: 2.9375rem;
  }

  .instructors__images > img {
    bottom: 0;
  }

  .instructors-card {
    background-color: #F0F0F0;
    border-radius: 1.5625rem;
    padding: 1.5625rem;
  }

  .instructors-card__img {
    border-radius: 1.5625rem;
  }

  .instructors-card__info {
    padding-inline: 0.625rem;
  }

  .instructors-card__info h2,
  .instructors-card__info h3 {
    font-size: 1.25rem;
  }

  .instructors-card__item p {
    font-size: 1rem;
  }

  .instructors-card__bottom {
    padding-inline: 0.625rem;
  }

  .instructor .breadcrumbs {
    margin-bottom: 2.8125rem;
  }

  .instructor__inner {
    padding: 1.5625rem;
    border-radius: 1.5625rem;
    gap: 1.5625rem;
    margin-bottom: 3.125rem;
  }

  .instructor__img {
    border-radius: 1.5625rem;
  }

  .instructor__info > p {
    font-size: 1rem;
  }

  .instructor__info h1 {
    font-size: 1.75rem;
  }

  .instructor__items {
    -webkit-column-gap: 1.5625rem;
    -moz-column-gap: 1.5625rem;
    column-gap: 1.5625rem;
    grid-template-columns: 10rem 10rem;
  }

  .video {
    border-radius: 1.5625rem;
    height: 37.625rem;
  }

  .vehicle-fleet__items {
    grid-template-columns: repeat(auto-fill, minmax(21.25rem, 1fr));
    gap: 0.9375rem;
  }

  .vehicle-fleet__top {
    flex-direction: column;
    gap: 1.25rem;
    border-radius: 1.5625rem;
    margin-bottom: 3.125rem;
  }

  .vehicle-fleet__desc {
    max-width: 100%;
  }

  .vehicle-fleet__desc h1 {
    font-size: 2.1875rem;
    margin-bottom: 1.25rem;
  }

  .vehicle-fleet__desc p {
    font-size: 1rem;
    margin-bottom: 1.875rem;
  }

  .vehicle-fleet__images {
    max-width: 100%;
  }

  .vehicle-fleet__images-box div {
    max-width: 100%;
    border-radius: 0.9375rem;
  }

  .documents h1 {
    margin-bottom: 3.75rem;
  }

  .documents__items {
    gap: 0.9375rem;
  }

  .documents__item {
    border-radius: 0.9375rem;
    padding: 0.625rem 0.75rem 0.9375rem;
    gap: 0.9375rem;
  }

  .documents__item p {
    font-size: 1rem;
  }

  .documents__item-img {
    max-width: 13.125rem;
  }

  .documents__item-decor--1 {
    max-width: 2.9375rem;
    top: -1.125rem;
    left: -0.9375rem;
  }

  .documents__item-decor--2 {
    max-width: 2.9375rem;
    top: -1.5625rem;
  }

  .school__bg {
    display: none;
  }

  .school__inner {
    border-radius: 1.5625rem;
    align-items: center;
    text-align: center;
    gap: 0.625rem;
    padding: 0 1.25rem 1.25rem;
  }

  .school__inner > img {
    position: static;
    margin-top: -4.25rem;
  }

  .school__desc {
    gap: 0;
    max-width: 100%;
  }

  .school__desc h2 {
    margin-bottom: 0.9375rem;
  }

  .school__desc p {
    margin-bottom: 1.5625rem;
    max-width: 100%;
  }

  .school__desc-links {
    justify-content: center;
  }

  .school__desc-links a {
    font-size: 1rem;
    gap: 0.625rem;
  }

  .promotions h1 {
    margin-bottom: 3.125rem;
  }

  .promotions__banner {
    margin-bottom: 3.125rem;
  }

  .promotions__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5625rem;
  }

  .banner-promotions {
    padding: 2.5rem 1.25rem;
    gap: 1.5625rem;
    border-radius: 1.5625rem;
  }

  .banner-promotions__text h2 {
    margin-bottom: 1.5625rem;
  }

  .banner-promotions__img {
    max-width: 8.75rem;
  }

  .banner-promotions__bg {
    border-radius: 1.5625rem;
  }

  .item-promotions {
    border-radius: 1.5625rem;
  }

  .promotions .item-promotions {
    min-height: auto;
    padding: 2.1875rem 1.25rem 2.8125rem;
  }

  .promotions .item-promotions span {
    font-size: 3.125rem;
  }

  .promotion {
    margin-bottom: 7.5rem;
  }

  .promotion .breadcrumbs {
    margin-bottom: 2.8125rem;
  }

  .promotion__desc h1 {
    font-size: 1.375rem;
  }

  .promotion__desc p {
    font-size: 1rem;
  }

  .promotion__desc li {
    font-size: 1rem;
  }

  .promotion__desc li::after {
    top: 0.1875rem;
  }

  .reviews {
    margin-bottom: 5rem;
  }

  .reviews .breadcrumbs {
    margin-bottom: 3.75rem;
  }

  .reviews__bg {
    display: block;
    height: auto;
    max-width: 100%;
  }

  .reviews__info {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .reviews__info p {
    margin-inline: auto;
  }

  .reviews__info h1,
  .reviews__info h2 {
    font-size: 2.1875rem;
    margin-bottom: 1.5625rem;
  }

  .reviews__socials {
    margin-top: 0;
  }

  .reviews .swiper {
    overflow: visible;
    margin-bottom: 2.5rem;
  }

  .reviews .swiper-slide {
    max-width: 16.25rem;
  }

  .auto__nav {
    margin-bottom: 2.5rem;
  }

  .auto__banner {
    border-radius: 1.5625rem;
  }

  .auto__banner-text {
    max-width: 100%;
    margin-bottom: 0.5625rem;
  }

  .auto__banner-img {
    position: relative;
    right: -1.875rem;
    bottom: -4.625rem;
    margin-top: -4.625rem;
    margin-left: auto;
  }

  .auto__banner-bg img {
    width: 100%;
  }

  .team {
    border-radius: 2.5rem;
    padding-block: 3.125rem;
    margin-bottom: 7.5rem;
  }

  .team__top {
    margin-bottom: 1.875rem;
  }

  .team__desc {
    margin-bottom: 1.875rem;
  }

  .team__desc h2 {
    font-size: 2.1875rem;
  }

  .team__desc p {
    font-size: 1rem;
  }

  .main-reviews {
    margin-bottom: 6.25rem;
  }

  .main-reviews .reviews__bg {
    top: 2.5rem;
    height: auto;
  }

  .main-reviews .reviews {
    margin-bottom: 5rem;
  }

  .article-slider h2 {
    font-size: 2.1875rem;
  }

  .article-slider .swiper {
    margin-bottom: 2.5rem;
  }

  .article-slider__bottom {
    display: flex;
    justify-content: center;
  }

  .format {
    padding-block: 3.125rem;
    margin-bottom: 7.5rem;
  }

  .format h2 {
    font-size: 2.1875rem;
    margin-bottom: 2.5rem;
  }

  .format__item {
    border-radius: 1.5625rem;
  }

  .comfort__inner {
    gap: 3.125rem;
  }

  .comfort__info {
    gap: 1.875rem;
  }

  .comfort__info h2 {
    font-size: 2.1875rem;
  }

  .comfort__info p {
    font-size: 1rem;
  }

  .comfort .swiper {
    margin-bottom: 2.5rem;
  }

  .comfort .swiper-slide {
    border-radius: 1.5625rem;
    max-width: 21.875rem;
  }

  .formula {
    margin-bottom: 5rem;
  }

  .formula__top {
    margin-bottom: 1.25rem;
  }

  .formula__top img {
    width: 46.875rem;
    height: 22.125rem;
    top: -6.25rem;
    left: 0;
  }

  .formula__top h2 {
    font-size: 2.1875rem;
    max-width: 32.5rem;
  }

  .formula__inner {
    flex-direction: column;
    gap: 0;
  }

  .formula__info {
    max-width: 100%;
  }

  .formula__info a {
    margin-bottom: 0;
  }

  .formula__info > p {
    font-size: 1rem;
  }

  .formula__desc {
    margin-inline: auto 0;
  }


  .gallery {
    margin-top: 7.5rem;
  }

  .gallery .swiper {
    margin-bottom: 2.5rem;
  }

  .gallery .swiper-slide {
    max-width: 21.875rem;
    border-radius: 1.5625rem;
  }

  .about-reviews .reviews__bg {
    top: 2.5rem;
  }

  .stages {
    padding-block: 3.125rem;
    border-radius: 2.5rem;
  }

  .stages__decor {
    height: auto;
    max-width: 13.5rem;
    top: -5.4375rem;
    left: auto;
    right: -5rem;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .stages__inner {
    margin-bottom: 4.375rem;
  }

  .stages__desc {
    position: relative;
    margin-bottom: 3.125rem;
    text-align: center;
    max-width: 25rem;
    margin-inline: auto;
  }

  .stages__items {
    grid-template-columns: repeat(1, 1fr);
  }

  .stages__item {
    min-height: 10.9375rem;
    border-radius: 1.5625rem;
  }

  .stages__item h3 {
    margin-bottom: 1.25rem;
  }

  .stages__item:first-child {
    display: none;
  }

  .stages__box-decor {
    display: block;
    top: -2.8125rem;
    left: -4.0625rem;
    max-width: 11.75rem;
  }

  .stages__bg {
    object-position: left top;
  }

  .promotion-slider__top h2 {
    font-size: 2.1875rem;
  }

  .promotion-slider .swiper-slide {
    max-width: 21.25rem;
  }

  .promotion-slider .swiper {
    overflow: visible;
  }

  .about-block {
    border-radius: 0;
    padding-bottom: 22.9375rem;
  }

  .about-block::after {
    height: 70rem;
  }

  .about-banner {
    margin-top: -15.4375rem;
  }

  .about-hero {
    margin-bottom: 5rem;
  }

  .about-hero__desc {
    margin-bottom: 0.625rem;
  }

  .about-hero__desc-top img {
    border-radius: 0.625rem;
  }

  .about-hero__desc-bottom {
    gap: 1.125rem;
  }

  .about-hero__desc-bottom img {
    border-radius: 0.625rem;
  }

  .about-hero__desc-decor--2 {
    right: 0.3125rem;
  }

  .about-hero__desc-decor--3 {
    max-width: clamp( 10rem , 2.3125rem  +  29.2857142857vw , 15.125rem );
  }

  .about-hero__img {
    border-radius: 1.5625rem;
  }

  .about-hero__bg {
    width: 100%;
    height: auto;
    top: 6.75rem;
  }

  .modern__inner h2 {
    margin-bottom: 2.5rem;
    font-size: clamp( 1.5625rem , -0.625rem  +  8.3333333333vw , 2.5rem );
  }

  .modern__items {
    gap: 1.875rem;
  }

  .modern__item img {
    border-radius: 1.5625rem;
  }

  .modern__item p {
    font-size: 1rem;
  }

  .modern__item:last-child img {
    margin-bottom: 1.875rem;
    aspect-ratio: 350/220;
  }

  .modern__item:first-child {
    align-self: flex-end;
    padding-left: 5.625rem;
    max-width: 100%;
  }

  .modern__item:first-child img {
    max-width: 100%;
  }

  .modern__decor {
    right: 0;
  }

  .modern__decor--3 {
    left: 0;
    bottom: 16.6666666667%;
  }

  .tariffs {
    margin-bottom: 7.5rem;
  }

  .tariffs__top {
    margin-bottom: 3rem;
  }

  .tariffs__top h1,
  .tariffs__top h2 {
    font-size: 2.1875rem;
  }

  .tariffs__top p {
    font-size: 1rem;
  }

  .tariffs .swiper {
    margin-bottom: 2.5rem;
  }

  .tariffs__card {
    max-width: 25.625rem;
    border-radius: 1.5625rem;
  }

  .tariffs__card h2,
  .tariffs__card h3 {
    font-size: 2.1875rem;
  }

  .tariffs__card strong {
    right: 0.4375rem;
  }

  .tariffs .swiper-slide {
    max-width: 25.625rem;
  }

  .tariffs__card-installment {
    right: 1.25rem;
  }

  .tariffs__card-icon {
    top: 4.25rem;
    right: 0;
  }

  .tariffs__card li {
    max-width: calc( 100% - 5.125rem );
  }

  .tariffs-block .tariffs__top {
    margin-bottom: 3rem;
  }

  .about-tariffs {
    margin-bottom: 7.5rem;
  }

  .cookie {
    bottom: 0.9375rem;
  }

  .cookie__content {
    padding-inline: 1.25rem;
  }

  .cookie__content p {
    font-size: 0.875rem;
  }

  .cookie__content p a {
    display: inline;
  }

  .cookie__buttons {
    flex-direction: column-reverse;
    max-width: 15.625rem;
    margin-inline: auto;
  }

  .cookie__buttons a,
  .cookie__buttons button {
    font-size: 0.875rem;
    width: 100%;
    padding-inline: 0.9375rem;
  }

  .modal {
    padding-block: 0;
  }

  .modal__inner {
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    border-radius: 0;
    padding-block: 1.875rem;
  }

  .modal__inner p {
    font-size: 1rem;
  }

  .modal__inner h2 {
    font-size: 2.0625rem;
  }

  .modal__form {
    grid-template-columns: repeat(1, 1fr);
  }

  .modal__form .wpcf7-form-control-wrap:first-child {
    grid-column: unset;
  }

  .modal__form .wpcf7-form-control-wrap:has(.wpcf7-acceptance) {
    max-width: 100%;
  }

  .modal__close {
    top: 3.75rem;
  }

  .modal__decor-1 {
    position: static;
    margin-bottom: 2.6875rem;
    margin-left: -1.25rem;
  }

  .modal__decor-1 img {
    max-width: 7rem;
  }

  .modal__decor-2 {
    position: relative;
    bottom: unset;
    right: -2.375rem;
  }

  .modal__decor-2 img {
    max-width: 10.375rem;
    margin-left: auto;
  }

  .modal__form {
    margin-bottom: 1.25rem;
  }

  .modal .container {
    padding-inline: 0;
  }

  .outro__inner {
    padding: 3.4375rem 1.5625rem 2.8125rem;
    border-radius: 1.5625rem;
    gap: 1.875rem;
  }

  .outro__form {
    grid-template-columns: repeat(1, 1fr);
  }

  .outro__form .wpcf7-form-control-wrap:first-child {
    grid-column: unset;
  }

  .outro__desc h2 {
    font-size: 2.0625rem;
    margin-bottom: 0.9375rem;
  }

  .outro__desc p {
    font-size: 1rem;
  }

  .outro__decor {
    right: -1.25rem;
    max-width: 8.5625rem;
    top: -2.5rem;
  }

  .footer {
    border-radius: 2.5rem 2.5rem 0 0;
  }

  .footer__dev {
    max-width: 100%;
  }
}

@media (max-width: 29.99875em) {
  .breadcrumbs {
    padding-top: 5.9375rem;
  }

  .breadcrumbs ul li {
    font-size: 0.625rem;
    padding-right: 1.5rem;
  }

  .breadcrumbs ul li::after {
    width: 0.25rem;
    height: 0.4375rem;
  }

  .breadcrumbs ul li:last-child {
    max-width: 11.875rem;
  }

  .badges p {
    font-size: 0.875rem;
  }

  .form input {
    font-size: 0.875rem;
    padding: 0.6875rem;
  }

  .form input::placeholder {
    font-size: 0.875rem;
  }

  .btn {
    font-size: 0.875rem;
    padding-block: 0.5625rem;
    border-radius: 0.625rem;
  }

  .btn-arrow {
    font-size: 0.875rem;
    padding-left: 0.9375rem;
    border-radius: 0.625rem;
    gap: 0.9375rem;
  }

  .btn-arrow svg {
    width: 2rem;
    height: 2rem;
    border-radius: 0.4375rem;
  }

  .labels label {
    font-size: 0.75rem;
    padding-left: 1.5625rem;
  }

  .labels span {
    width: 1rem;
    height: 1rem;
  }

  .labels span::after {
    width: 0.625rem;
    height: 0.625rem;
  }

  .arrows {
    max-width: 5.4375rem;
  }

  .arrows svg {
    width: 1.8125rem;
    height: 1.8125rem;
  }

  .header__burger {
    width: 1.6875rem;
    height: 0.875rem;
  }

  .header__burger::after {
    -webkit-transform: translateY(0.375rem);
    -ms-transform: translateY(0.375rem);
    transform: translateY(0.375rem);
  }

  .header__burger::before {
    -webkit-transform: translateY(-0.375rem);
    -ms-transform: translateY(-0.375rem);
    transform: translateY(-0.375rem);
  }

  .logo {
    max-width: 6rem;
  }

  .menu > ul {
    flex-direction: column;
  }

  .hero {
    padding-top: 10.3125rem;
  }

  .hero__desc {
    margin-bottom: 4.9375rem;
  }

  .hero__desc p {
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
  }

  .hero__list li {
    gap: 0;
  }

  .hero__list span {
    font-size: 1rem;
  }

  .hero__list p {
    font-size: 0.75rem;
  }

  .blog h1 {
    font-size: 1.5625rem;
  }

  .blog__items {
    grid-template-columns: repeat(1, 1fr);
  }

  .filter-buttons button {
    font-size: 0.875rem;
    padding-inline: 0.8125rem;
  }

  .blog-item h2,
  .blog-item h3 {
    font-size: 1rem;
    margin-bottom: 0.3125rem;
  }

  .blog-item p {
    font-size: 0.875rem;
  }

  .blog-item__img {
    margin-bottom: 0.9375rem;
  }

  .article__top-desc h1 {
    font-size: 1rem;
  }

  .article__top-desc p {
    font-size: 0.875rem;
  }

  .article__top-desc time {
    font-size: 0.75rem;
  }

  .article__text p {
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
  }

  .article__text h2 {
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
  }

  .article__text ul:not(:last-child) {
    margin-bottom: 0.625rem;
  }

  .article__text li {
    font-size: 0.875rem;
    padding-left: 1.8125rem;
  }

  .article__text li::after {
    max-width: 0.8125rem;
    top: 0.25rem;
  }

  .schedule__top h1 {
    margin-bottom: 0.9375rem;
  }

  .schedule__top p {
    font-size: 0.875rem;
  }

  .item-schedule__date button {
    min-width: 8.6875rem;
    font-size: 1rem;
    padding-block: 0.75rem;
    border-radius: 0.625rem;
  }

  .item-schedule__date span {
    font-size: 1.5625rem;
  }

  .item-schedule__desc h2 {
    font-size: 1.125rem;
  }

  .item-schedule__desc-time span {
    font-size: 0.875rem;
  }

  .item-schedule__desc-group {
    gap: 0.625rem;
  }

  .item-schedule__desc-group span {
    font-size: 0.875rem;
  }

  .contacts h1 {
    font-size: 1.5625rem;
  }

  .contacts__item span {
    font-size: 0.75rem;
  }

  .contacts__item > a {
    font-size: 1rem;
  }

  .contacts__item p {
    font-size: 0.875rem;
  }

  .contacts__item:nth-child(3) {
    max-width: 100%;
  }

  .contacts__items {
    -webkit-column-gap: 0.9375rem;
    -moz-column-gap: 0.9375rem;
    column-gap: 0.9375rem;
  }

  .contacts__map {
    height: 36.25rem;
  }

  .advice__desc p {
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
  }

  .advice__desc h2 {
    font-size: 1rem;
  }

  .advice__desc span {
    padding: 0.3125rem 0.9375rem;
    font-size: 0.75rem;
  }

  .faq h2 {
    margin-bottom: 1.5625rem;
    text-align: center;
  }

  .faq__items {
    margin-bottom: 5rem;
  }

  .faq__item span {
    max-width: 1.875rem;
  }

  .faq__item button {
    font-size: 0.875rem;
  }

  .faq__item img {
    width: 0.9375rem;
    height: 0.9375rem;
  }

  .faq__item-text p {
    font-size: 0.875rem;
  }

  .faq__help .btn {
    padding-block: 0.5625rem;
  }

  .faq__help textarea {
    padding: 0.9375rem;
    min-height: 5.3125rem;
  }

  .faq__help textarea::-webkit-input-placeholder {
    font-size: 1rem;
  }

  .faq__help textarea::-moz-placeholder {
    font-size: 1rem;
  }

  .faq__help textarea:-ms-input-placeholder {
    font-size: 1rem;
  }

  .faq__help textarea::-ms-input-placeholder {
    font-size: 1rem;
  }

  .faq__help textarea::placeholder {
    font-size: 1rem;
  }

  .faq__help-inputs {
    gap: 0.625rem;
    margin-bottom: 0.9375rem;
  }

  .instructors__cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .instructors__inner > img {
    top: -1.5625rem;
  }

  .instructors__top {
    padding-bottom: 0.6875rem;
  }

  .instructors__top > img {
    -webkit-transform: rotate(123deg);
    -ms-transform: rotate(123deg);
    transform: rotate(123deg);
    bottom: -7.5rem;
    max-width: 19.5rem;
    -webkit-filter: blur(0.29375rem);
    filter: blur(0.29375rem);
  }

  .instructors__desc {
    max-width: 20rem;
  }

  .instructors__desc h1 {
    font-size: 1.5625rem;
    margin-bottom: 0.625rem;
  }

  .instructors__desc p {
    font-size: 0.875rem;
  }

  .instructors__images {
    gap: 0.625rem;
  }

  .instructors__images div {
    max-width: 8.8125rem;
  }

  .instructors__images > img {
    max-width: 3.8125rem;
    bottom: 10rem;
    left: auto;
    right: 3.5rem;
  }

  .tab-buttons button {
    padding-inline: 0.8125rem;
    font-size: 0.875rem;
  }

  .instructors-card__img {
    margin-bottom: 1.5625rem;
  }

  .instructors-card__info h2,
  .instructors-card__info h3 {
    font-size: 1rem;
  }

  .instructors-card__item span {
    font-size: 0.75rem;
  }

  .instructors-card__item p {
    font-size: 0.875rem;
  }

  .instructors-card__bottom a {
    font-size: 0.875rem;
  }

  .instructor__img span {
    bottom: 1.25rem;
    left: 1.25rem;
  }

  .instructor__info {
    padding-inline: 0.625rem;
  }

  .instructor__info > p {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .instructor__info h1 {
    font-size: 1rem;
  }

  .instructor__info > span {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .instructor__info strong {
    font-size: 0.75rem;
    margin-bottom: 0.625rem;
  }

  .instructor__items {
    grid-template-columns: 8.5rem 5.4375rem;
    margin-bottom: 1.25rem;
  }

  .instructor__item span {
    margin-bottom: 0.1875rem;
    font-size: 0.75rem;
  }

  .instructor__item p {
    font-size: 0.875rem;
  }

  .video {
    height: 32.8125rem;
  }

  .video__play {
    max-width: 3.75rem;
  }

  .vehicle-fleet__items {
    grid-template-columns: repeat(1, 1fr);
  }

  .vehicle-fleet__desc h1 {
    font-size: 1.5625rem;
    margin-bottom: 0.9375rem;
  }

  .vehicle-fleet__desc p {
    font-size: 0.875rem;
    margin-bottom: 0.9375rem;
  }

  .vehicle-fleet__desc button {
    gap: 0.9375rem;
    padding-left: 0.9375rem;
    border-radius: 0.625rem;
    font-size: 0.875rem;
  }

  .vehicle-fleet__desc svg {
    width: 2rem;
    height: 2rem;
    border-radius: 0.4375rem;
  }

  .vehicle-fleet__images-box div:first-child {
    margin-top: 2.8125rem;
  }

  .vehicle-fleet__images-box div:last-child {
    margin-left: -1.25rem;
  }

  .vehicle-fleet__images-1 {
    max-width: 3.25rem;
    top: -4.6875rem;
    left: auto;
    right: 1.875rem;
  }

  .vehicle-fleet__images-2 {
    max-width: 7.6875rem;
    bottom: -3.75rem;
  }

  .vehicle-fleet-item button {
    font-size: 0.875rem;
    padding-left: 3.5625rem;
    gap: 2.1875rem;
    border-radius: 0.625rem;
  }

  .vehicle-fleet-item button span {
    margin-inline: auto;
  }

  .vehicle-fleet-item svg {
    border-radius: 0.4375rem;
    width: 2rem;
    height: 2rem;
  }

  .vehicle-fleet-item li {
    padding-inline: 0.9375rem;
  }

  .vehicle-fleet-item li span {
    font-size: 0.875rem;
  }

  .vehicle-fleet-item p {
    font-size: 0.875rem;
  }

  .documents__items {
    gap: 0.625rem;
  }

  .documents__item {
    gap: 0.625rem;
  }

  .documents__item p {
    font-size: 0.875rem;
    padding-block: 0.3125rem;
  }

  .documents__item-img {
    max-width: 9.0625rem;
  }

  .school__inner > img {
    max-width: 9.5625rem;
  }

  .school__desc p {
    font-size: 0.875rem;
  }

  .school__desc-links a {
    width: 100%;
    font-size: 0.875rem;
    justify-content: center;
    padding: 0.375rem 0.625rem;
  }

  .school__desc-links svg {
    width: 0.875rem;
    height: 0.875rem;
  }

  .promotions .item-promotions h2,
  .promotions .item-promotions h3 {
    font-size: 2.1875rem;
  }

  .promotions .item-promotions p {
    margin-bottom: 2.1875rem;
  }

  .promotions .item-promotions span {
    margin-left: 0;
    font-size: 2.1875rem;
    max-width: 100%;
  }

  .promotions .item-promotions__img {
    max-width: 16.625rem;
    right: -5.1875rem;
    margin-top: -5.25rem;
  }

  .banner-promotions button {
    font-size: 0.875rem;
    padding-left: 0.9375rem;
    border-radius: 0.625rem;
    gap: 0.9375rem;
  }

  .banner-promotions svg {
    width: 2rem;
    height: 2rem;
    border-radius: 0.4375rem;
  }

  .banner-promotions__text p {
    font-size: 0.875rem;
  }

  .item-promotions__bg {
    height: 120%;
    bottom: -2.8125rem;
  }

  .promotion__desc h1 {
    font-size: 1.125rem;
  }

  .promotion__desc span {
    font-size: 0.75rem;
  }

  .promotion__desc p {
    font-size: 0.875rem;
  }

  .promotion__desc li {
    font-size: 0.875rem;
    padding-left: 1.4375rem;
  }

  .promotion__desc li::after {
    top: 0.25rem;
    max-width: 0.8125rem;
  }

  .promotion .item-promotions {
    max-width: 15.625rem;
    padding: 1.5625rem 0.875rem 0;
  }

  .promotion .item-promotions h2 {
    font-size: 1.5625rem;
    margin-bottom: 0.9375rem;
  }

  .promotion .item-promotions p {
    font-size: 0.75rem;
    margin-bottom: 1.875rem;
  }

  .promotion .item-promotions span {
    font-size: 2.5rem;
    margin-left: -0.125rem;
    max-width: 8.75rem;
  }

  .promotion .item-promotions__img {
    max-width: 11.5625rem;
    right: -1.8125rem;
    margin-top: -3.75rem;
  }

  .promotion .item-promotions__bg {
    height: auto;
    bottom: 0;
  }

  .reviews__info h1,
  .reviews__info h2 {
    font-size: 1.5625rem;
  }

  .reviews__info p {
    font-size: 0.875rem;
  }

  .reviews__socials svg {
    width: 1.875rem;
    height: 1.875rem;
  }

  .auto__banner {
    margin-bottom: 3.75rem;
  }

  .auto__banner-text h2 {
    font-size: 1.5625rem;
  }

  .auto__banner-text p {
    font-size: 0.875rem;
  }

  .auto__banner-img {
    max-width: 11.9375rem;
  }

  .team__desc h2 {
    font-size: 1.5625rem;
  }

  .team__desc p {
    font-size: 0.875rem;
  }

  .article-slider h2 {
    margin-bottom: 1.875rem;
    font-size: 1.5625rem;
  }

  .article-slider__top {
    margin-bottom: 1.875rem;
  }

  .format h2 {
    font-size: 1.5625rem;
  }

  .format__items {
    gap: 0.9375rem;
  }

  .format__item-content {
    padding-block: 1.5625rem;
    gap: 0.9375rem;
  }

  .format__item-content h3 {
    font-size: 1rem;
  }

  .format__item-content p {
    font-size: 0.875rem;
  }

  .format__item-content img {
    max-width: 12.0625rem;
    aspect-ratio: 193/143;
  }

  .comfort__info h2 {
    font-size: 1.5625rem;
  }

  .comfort__info p {
    font-size: 0.875rem;
  }

  .formula__top h2 {
    font-size: 1.5625rem;
  }

  .formula__top img {
    width: 27rem;
    height: 12.75rem;
    top: -5.1875rem;
  }

  .formula__info > p {
    font-size: 0.875rem;
  }

  .formula__desc {
    gap: 0.1875rem;
    max-width: 8.25rem;
    aspect-ratio: 1;
    padding: 1.875rem 0.5625rem 1.5625rem;
    margin-top: -3.5625rem;
  }

  .formula__desc span {
    font-size: 1.5625rem;
  }

  .formula__desc p {
    font-size: 0.625rem;
  }

  .stages__desc h2 {
    font-size: 1.5625rem;
    margin-bottom: 1.125rem;
  }

  .stages__desc p {
    font-size: 0.875rem;
  }

  .stages__items {
    gap: 0.625rem;
  }

  .stages__item {
    padding: 1.25rem;
  }

  .stages__item ul {
    gap: 0.4375rem;
  }

  .stages__item li,
  .stages__item p {
    font-size: 0.875rem;
  }

  .stages__item h3 {
    font-size: 1.125rem;
    padding-right: 2.8125rem;
  }

  .stages__item svg {
    width: 0.875rem;
    height: 0.875rem;
  }

  .stages__item span {
    font-size: 0.875rem;
    padding: 0.3125rem 0.625rem;
  }

  .stages .video__play {
    max-width: 4.6875rem;
  }

  .stages__bg {
    object-position: 20% top;
  }

  .promotion-slider__top h2 {
    font-size: 1.5625rem;
  }

  .promotion-slider .item-promotions {
    padding: 0.9375rem 0.625rem 0 0.75rem;
    border-radius: 0.9375rem;
  }

  .promotion-slider .item-promotions h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .promotion-slider .item-promotions p {
    font-size: 0.625rem;
    margin-bottom: 0.375rem;
  }

  .promotion-slider .item-promotions span {
    font-size: 1.5625rem;
  }

  .promotion-slider .item-promotions__img {
    max-width: 8.0625rem;
    right: -2.375rem;
    margin-top: -2.3125rem;
  }

  .promotion-slider .item-promotions__bg {
    height: 100%;
    bottom: 0;
  }

  .promotion-slider .swiper-slide {
    max-width: 100%;
  }

  .promotion-slider .swiper {
    overflow: hidden;
  }

  .about-block .breadcrumbs {
    margin-bottom: 2.8125rem;
  }

  .about-hero__desc-top {
    justify-content: flex-start;
  }

  .about-hero__desc-bottom {
    justify-content: flex-start;
  }

  .about-hero__img {
    aspect-ratio: 350/380;
  }

  .modern__inner h2 {
    max-width: 18.75rem;
    font-size: 1.5625rem;
    margin-bottom: 1.875rem;
  }

  .modern__item p {
    font-size: 0.875rem;
  }

  .modern__decor--3 {
    bottom: 3.5rem;
  }

  .tariffs__top h1,
  .tariffs__top h2 {
    font-size: 1.5625rem;
  }

  .tariffs__top p {
    font-size: 0.875rem;
  }

  .tariffs .swiper {
    margin-bottom: 0;
  }

  .tariffs .swiper-wrapper {
    min-height: auto;
  }

  .tariffs__card {
    padding-block: 2.5rem;
    gap: 1.875rem;
    max-width: 100%;
  }

  .tariffs__card h2,
  .tariffs__card h3 {
    font-size: 1.5625rem;
    max-width: 100%;
    -webkit-transition: none;
    transition: none;
    margin-bottom: 1.5625rem;
  }

  .tariffs__card li {
    font-size: 0.875rem;
    padding: 0.3125rem 0.625rem 0.3125rem 1.6875rem;
    max-width: 100%;
  }

  .tariffs__card button {
    font-size: 0.875rem;
    border-radius: 0.625rem;
    padding-block: 0.5625rem;
    -webkit-transition: none;
    transition: none;
  }

  .tariffs__card strong {
    -webkit-transition: none;
    transition: none;
    font-size: 0.875rem;
    padding-inline: 0.9375rem;
    right: 0;
  }

  .tariffs__badge {
    -webkit-transition: none;
    transition: none;
    font-size: 0.875rem;
    padding: 0.625rem 0.9375rem;
    right: 3.375rem;
    top: 0.5rem;
  }

  .tariffs .swiper-slide {
    max-width: 100%;
  }

  .tariffs__card-price {
    margin-bottom: 0.9375rem;
  }

  .tariffs__card-price s {
    font-size: 0.875rem;
    -webkit-transition: none;
    transition: none;
  }

  .tariffs__card-price span {
    font-size: 1.5625rem;
    -webkit-transition: none;
    transition: none;
  }

  .tariffs__card-installment {
    padding: 0.4375rem 0.9375rem;
    top: -1rem;
    right: -0.25rem;
    -webkit-transition: none;
    transition: none;
  }

  .tariffs__card-installment span {
    font-size: 0.625rem;
  }

  .tariffs__card-icon {
    display: none;
  }

  .tariffs .arrows {
    display: flex;
    margin-inline: auto;
  }

  .tariffs__bg {
    height: auto;
    top: -4.0625rem;
  }

  .cookie {
    bottom: 0;
  }

  .cookie .container {
    padding-inline: 0;
  }

  .cookie__content {
    border-radius: 2.1875rem 2.1875rem 0 0;
  }

  .cookie__buttons {
    max-width: 12.5rem;
  }

  .modal__inner p {
    font-size: 0.875rem;
  }

  .modal__inner h2 {
    font-size: 1.5625rem;
  }

  .modal__form {
    gap: 0.625rem;
  }

  .modal__form .wpcf7-form-control-wrap:has(.wpcf7-acceptance):first-of-type {
    margin-top: 0.625rem;
  }

  .modal__close {
    width: 2rem;
    height: 2rem;
  }

  .modal__close img {
    width: 0.75rem;
    height: 0.75rem;
  }

  .outro__form {
    gap: 0.625rem;
  }

  .outro__form .wpcf7-form-control-wrap:has(.wpcf7-acceptance):first-of-type {
    margin-top: 0.625rem;
  }

  .outro__desc h2 {
    font-size: 1.5625rem;
  }

  .outro__desc p {
    font-size: 0.875rem;
  }

  .footer__top {
    margin-bottom: 1.5625rem;
  }

  .footer__items {
    flex-direction: column;
  }

  .footer__item {
    padding-bottom: 1.1875rem;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.05);
  }

  .footer__item button {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    gap: 0.625rem;
    align-items: center;
  }

  .footer__item button img {
    display: block;
    flex-shrink: 0;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  }

  .footer__item button._spoller-active img {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .footer__item ul {
    padding-top: 0.9375rem;
  }

  .footer__contacts {
    flex-direction: column;
    gap: 0.9375rem;
  }

  .footer__contact:last-child {
    margin-top: 0.625rem;
  }

  .footer__contact span {
    font-size: 0.75rem;
  }

  .footer__contact > a {
    font-size: 1rem;
  }

  .footer__copy {
    display: flex;
    flex-direction: column;
  }

  .footer__copy p {
    margin-bottom: 0;
    order: 1;
  }

  .footer__copy-links {
    margin-bottom: 0.9375rem;
  }

  .footer__dev img {
    width: 1.875rem;
    height: 1.875rem;
  }
}

@media (any-hover: hover) {
  .breadcrumbs ul li a:hover {
    opacity: 1;
  }

  .btn:hover {
    background-color: transparent;
    border-color: #FD9301;
    color: #FD9301;
  }

  .btn-arrow:hover {
    gap: 1.875rem;
    color: rgba(254, 253, 249, 0.5);
  }

  .labels a:hover {
    opacity: 0.5;
  }

  .menu a:hover {
    opacity: 0.5;
  }

  .menu button:hover {
    opacity: 0.5;
  }

  .hero .btn-arrow:hover {
    color: rgba(41, 41, 41, 0.5);
  }

  .filter-buttons button:hover {
    color: #292929;
  }

  .filter-buttons .mixitup-control-active:hover {
    color: #fff;
  }

  .blog-item h2:hover,
  .blog-item h3:hover {
    opacity: 0.6;
  }

  .blog-item__img:hover img {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
  }

  .item-schedule__date button:hover {
    color: #292929;
    border-color: #292929;
    background-color: transparent;
  }

  .item-schedule__date button:hover:disabled {
    border-color: #F0F0F0;
    background-color: #F0F0F0;
    color: rgba(41, 41, 41, 0.5);
  }

  .contacts__item-socials a:hover {
    background-color: transparent;
    border-color: #292929;
  }

  .contacts__item-socials a:hover path {
    fill: #292929;
  }

  .contacts__item > a:hover {
    opacity: 0.5;
  }

  .faq__item button:hover {
    color: rgba(41, 41, 41, 0.8);
  }

  .faq__help .btn:disabled:hover {
    color: #fff;
    background-color: #FD9301;
    border-color: transparent;
  }

  .tab-buttons button:hover {
    color: #292929;
  }

  .tab-buttons .tab-buttons__active:hover {
    color: #fff;
  }

  .instructors-card__bottom a:hover {
    color: #292929;
  }

  .video__play:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  .vehicle-fleet__desc button:hover {
    gap: 1.875rem;
    color: rgba(254, 253, 249, 0.5);
  }

  .vehicle-fleet-item button:hover {
    color: rgba(254, 253, 249, 0.5);
  }

  .vehicle-fleet-item button:hover svg {
    opacity: 0.5;
    -webkit-transform: scale(0.98);
    -ms-transform: scale(0.98);
    transform: scale(0.98);
  }

  .school__desc-links a:first-child:hover {
    border-color: #FD9301;
    color: #FD9301;
    background-color: transparent;
  }

  .school__desc-links a:first-child:hover path {
    fill: #FD9301;
  }

  .school__desc-links a:last-child:hover {
    border-color: #292929;
    background-color: transparent;
    color: #292929;
  }

  .school__desc-links a:last-child:hover path {
    fill: #292929;
  }

  .promotions .item-promotions:hover {
    opacity: 0.7;
  }

  .banner-promotions button:hover {
    gap: 1.875rem;
    color: rgba(254, 253, 249, 0.5);
  }

  .reviews__socials a:hover {
    background-color: transparent;
    border-color: #292929;
  }

  .reviews__socials a:hover path {
    fill: #292929;
  }

  .reviews__box span:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  .promotion-slider .item-promotions:hover {
    opacity: 0.7;
  }

  .tariffs__card button:hover {
    color: #292929;
    border-color: #292929;
  }

  .tariffs .tariffs__card--main button:hover {
    color: #FEFDF9;
    border-color: #FEFDF9;
    background-color: transparent;
  }

  .cookie__content p a:hover {
    opacity: 0.5;
  }

  .cookie__buttons button:hover {
    color: rgba(41, 41, 41, 0.5);
  }

  .cookie__buttons a:hover {
    color: rgba(254, 253, 249, 0.5);
  }

  .modal__close:hover img {
    opacity: 0.5;
  }

  .footer__item a:hover {
    opacity: 0.5;
  }

  .footer__contact > a:hover {
    opacity: 0.5;
  }

  .footer__contact li a:hover {
    background-color: transparent;
    border-color: #FEFDF9;
  }

  .footer__contact li a:hover path {
    fill: #FEFDF9;
  }

  .footer__copy-links a:hover {
    opacity: 1;
  }

  .footer__dev:hover {
    color: rgba(254, 253, 249, 0.5);
  }

  .footer__dev:hover img {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.pdd-tickets__inner {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  background-color: #F4F3F0;
  border-radius: 2.1875rem;
  padding: 2.5rem;
}

.pdd-tickets__desc {
  flex: 0 0 21.25rem;
  max-width: 21.25rem;
}

.pdd-tickets__desc h2 {
  margin-bottom: 0.9375rem;
}

.pdd-tickets__desc p {
  margin-bottom: 1.5625rem;
}

.pdd-tickets__modes {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pdd-tickets__mode {
  width: 100%;
  text-align: center;
  padding: 0.9375rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  color: #292929;
  background-color: #E8E6E1;
  border-radius: 0.9375rem;
  border: 0.0625rem solid transparent;
  cursor: pointer;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.pdd-tickets__mode--active {
  color: #fff;
  background-color: #FD9301;
}

.pdd-tickets__widget {
  flex: 1 1 auto;
  min-width: 0;
  border-radius: 1.5625rem;
  overflow: hidden;
}

.pdd-tickets__widget iframe {
  display: block;
  width: 100%;
  border: none;
}

@media (max-width: 767.98px) {
  .pdd-tickets__inner {
    flex-direction: column;
    padding: 1.25rem;
    gap: 1.25rem;
  }

  .pdd-tickets__desc {
    flex-basis: auto;
    max-width: none;
  }

  .pdd-tickets__modes {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pdd-tickets__mode {
    width: auto;
    flex: 1 1 auto;
  }
}

/*
 * Cookie-баннер плагина "Beautiful and responsive cookie consent" (NSC Bar)
 * переоформлен под вёрстку .cookie/.cookie__content/.cookie__buttons —
 * настройки самого баннера (текст, ссылки, цвета) задаются через опцию
 * плагина nsc_bar_bannersettings_json, а здесь только переопределяются его
 * собственные классы (.cc-window/.cc-message/.cc-link/.cc-btn), поэтому это
 * не затрагивает другие всплывающие окна на сайте.
 */
.cc-window.cc-banner.cc-bottom {
  left: 50%;
  right: auto;
  bottom: 1.5625rem;
  transform: translateX(-50%);
  width: calc(100% - 1.875rem);
  max-width: 65.3125rem;
  margin: 0;
  padding: 1.5625rem 3.125rem;
  border-radius: 2.1875rem;
  background-color: #292929;
  box-shadow: 0 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5625rem 0.9375rem;
  z-index: 1000;
  font-family: "Manrope", sans-serif;
}

/* .cc-message is just a text wrapper around our own message markup + the
   {{link}} anchor the plugin appends after it — display:contents drops the
   wrapper so both become flex items of .cc-window directly, sitting on the
   same row as the dismiss button below instead of on separate levels. */
.cc-window.cc-banner .cc-message {
  display: contents;
}

.cc-message-text {
  flex: 1 0 100%;
  color: #FEFDF9;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}

.cc-message-text a {
  color: #FEFDF9;
  text-decoration: underline;
  text-underline-offset: 25%;
  text-decoration-thickness: 5%;
}

.cc-message-text a:hover {
  opacity: 0.5;
}

.cc-window .cc-compliance {
  position: relative;
  z-index: 2;
}

.cc-window .cc-btn,
.cc-window .cc-link {
  padding: 0.625rem 1.25rem;
  border-radius: 6.25rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  border: none;
  margin: 0;
  opacity: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.4s ease, background-color 0.4s ease, opacity 0.4s ease;
}

.cc-window .cc-btn.cc-dismiss {
  background-color: #FEFDF9;
  color: #292929;
}

.cc-window .cc-btn.cc-dismiss:hover {
  color: rgba(41, 41, 41, 0.5);
}

.cc-window .cc-link {
  color: #FEFDF9;
  background-color: rgba(254, 253, 249, 0.1);
  text-decoration: none;
}

.cc-window .cc-link:hover {
  color: rgba(254, 253, 249, 0.5);
  opacity: 1;
}

@media (max-width: 70.62375em) {
  .cc-window.cc-banner.cc-bottom {
    padding-inline: 1.5625rem;
  }
}

@media (max-width: 47.99875em) {
  .cc-window.cc-banner.cc-bottom {
    bottom: 0.9375rem;
    padding-inline: 1.25rem;
  }

  .cc-message-text {
    font-size: 0.875rem;
  }
}

@media (max-width: 29.99875em) {
  .cc-window.cc-banner.cc-bottom {
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    border-radius: 2.1875rem 2.1875rem 0 0;
  }

  .cc-window .cc-link,
  .cc-window .cc-compliance {
    flex: 1 0 auto;
    max-width: 12.5rem;
  }
}