@font-face {
  font-family: "Inter";
  src:
    url("/fonts/Inter-LightBETA.woff2") format("woff2"),
    url("/fonts/Inter-LightBETA.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("/fonts/Inter-Regular.woff2") format("woff2"),
    url("/fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("/fonts/Inter-Medium.woff2") format("woff2"),
    url("/fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("/fonts/Inter-SemiBold.woff2") format("woff2"),
    url("/fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("/fonts/Inter-Bold.woff2") format("woff2"),
    url("/fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

[hidden] {
  display: none !important;
}

html {
  font-size: 16px;
}

body {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  color: #ffffff;
}

body:not(.animations-ready) [data-animate-on-view] {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.page {
  background-color: #3a4257;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page--menu-open {
  overflow: hidden;
}

.container {
  max-width: 75rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.625rem;
}

.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  padding: 1rem 0.9375rem;
  border-radius: 10px;
  background-color: #ed1a20;
  gap: 8px;
  border: none;
}

.button--ghost {
  background-color: transparent;
  border: 1px solid #ed1a20;
  color: #ed1a20;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  text-decoration: none;
  background-color: rgba(237, 26, 32, 0.12);
}

/* .button--primary {
} */

.button:hover,
.button:focus-visible {
  cursor: pointer;
  text-decoration: underline;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #2b3141;
  z-index: 100;
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.625rem;
  position: relative;
}
.header__logo img {
  max-width: 4.125rem;
}
.header__panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-left: 2rem;
  flex: 1;
}
.nav__list {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav__link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.35s ease;
}

.nav__link--active {
  color: #ed1a20;
  font-weight: 600;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: #ed1a20;
  text-decoration: underline;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__lang {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.header__burger {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.4rem;
  cursor: pointer;
}
.header__burger span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.header--menu-open .header__burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header--menu-open .header__burger span:nth-child(2) {
  opacity: 0;
}
.header--menu-open .header__burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.lang-switcher {
  position: relative;
}
.lang-switcher__flag {
  width: 35px;
  height: 35px;
}
.lang-switcher__button {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background-color: transparent;
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.lang-switcher__menu {
  list-style: none;
  margin: 0;

  position: absolute;
  top: calc(100% + 0.9rem);
  right: -7px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 10;
}

.lang-switcher__item button {
  width: 100%;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 0.95rem;
  cursor: pointer;
}

.lang-switcher__item button:hover,
.lang-switcher__item button:focus-visible {
  text-decoration: underline;
}

.lang-switcher--open .lang-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #2b3141;
  border-radius: 8px;
  padding: 10px 5px;
}
.main {
  flex: 1;
  background-color: #3a4257;
  padding-top: 5.5rem;
  padding-bottom: 2rem;
}

.main--thankyou {
  min-height: calc(100vh - 5.625rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.thankyou__card {
  width: min(90vw, 25rem);
  background-color: #ffffff;
  color: #1c1c1c;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 1.5rem 3rem rgba(12, 16, 29, 0.18);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.thankyou__icon svg {
  display: block;
  margin: 0 auto;
}

.thankyou__title {
  font-size: 1.5rem;
  margin: 0;
  color: #1c1c1c;
}

.thankyou__text {
  font-size: 1rem;
  line-height: 1.4;
  color: #4a4e5c;
}

.thankyou__note {
  margin: 0;
  font-weight: 600;
  color: #1c1c1c;
}

.main--not-found {
  min-height: calc(100vh - 5.625rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.not-found {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.not-found__card {
  width: min(90vw, 48rem);
  padding: 3rem 2.5rem;
  border-radius: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(237, 26, 32, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(58, 66, 87, 0.98), rgba(28, 34, 47, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1.5rem 3rem rgba(12, 16, 29, 0.28);
}

.not-found__code {
  margin: 0;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 1;
  font-weight: 700;
  color: #ed1a20;
  letter-spacing: 0.08em;
}

.not-found__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
}

.not-found__text {
  max-width: 34rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.button--ticket-download {
  background-color: #d9d9d9;
  color: #1c1c1c;
  font-weight: 600;
  justify-content: center;
}

.button--ticket-download:hover,
.button--ticket-download:focus-visible {
  text-decoration: none;
  background-color: #c9c9c9;
}

.button--ticket-download:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.page--home .main {
  padding-top: 0;
}

.page--home .header {
  background-color: transparent;
  box-shadow: none;
}

.page--home .header.header--menu-open {
  background-color: #2b3141;
}

.page--home .header.header--scrolled {
  background-color: #2b3141;
}

.page--home .header:not(.header--scrolled) .nav__link {
  color: #ffffff;
}

.page--home .header:not(.header--scrolled) .nav__link--active {
  color: #ed1a20;
}

.page--home .header.header--scrolled .nav__link,
.page--home .header.header--menu-open .nav__link {
  color: #ffffff;
}

.page--home .header.header--scrolled .nav__link--active,
.page--home .header.header--menu-open .nav__link--active {
  color: #ffffff;
}
body.animations-ready [data-animate-on-view] {
  will-change: transform, opacity;
}

body.animations-ready [data-animate-on-view].is-visible {
  animation-play-state: running;
}

body.animations-ready .fade-up-on-scroll {
  opacity: 0;
  transform: translate3d(0, 1.5rem, 0);
  animation: hero-fade-up 0.8s ease forwards;
  animation-play-state: paused;
}

body.animations-ready .fade-up-on-scroll.is-visible {
  animation-play-state: running;
}

.hero {
  padding: 5rem 0;
  position: relative;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 1.5rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

body.animations-ready .hero__title-animated {
  opacity: 0;
  transform: translate3d(0, 1.5rem, 0);
  animation: hero-fade-up 0.9s ease forwards;
  animation-delay: 0.05s;
  animation-play-state: paused;
}

body.animations-ready .hero__cta {
  opacity: 0;
  transform: translate3d(0, 1.5rem, 0);
  animation: hero-fade-up 0.9s ease forwards;
  animation-delay: 0.25s;
  animation-play-state: paused;
}

body.animations-ready .hop__title-animated {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  animation: hero-fade-up 0.9s ease forwards;
  animation-delay: 0.15s;
  animation-play-state: paused;
}

body.animations-ready .hop-step--animated {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  animation: hero-fade-up 0.8s ease forwards;
  animation-play-state: paused;
}

body.animations-ready .hop-step--animated:nth-of-type(1) {
  animation-delay: 0.2s;
}

body.animations-ready .hop-step--animated:nth-of-type(2) {
  animation-delay: 0.35s;
}

body.animations-ready .hop-step--animated:nth-of-type(3) {
  animation-delay: 0.5s;
}

body.animations-ready .schedule__title-animated {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  animation: hero-fade-up 0.9s ease forwards;
  animation-delay: 0.2s;
  animation-play-state: paused;
}

body.animations-ready .schedule__text-animated {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  animation: hero-fade-up 0.9s ease forwards;
  animation-delay: 0.3s;
  animation-play-state: paused;
}

body.animations-ready .schedule-meta--animated {
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  animation: hero-fade-up 0.75s ease forwards;
  animation-delay: var(--schedule-meta-delay, 0.35s);
  animation-play-state: paused;
}

.schedule__meta .schedule-meta--animated:nth-of-type(1) {
  --schedule-meta-delay: 0.3s;
}

.schedule__meta .schedule-meta--animated:nth-of-type(2) {
  --schedule-meta-delay: 0.4s;
}

.schedule__meta .schedule-meta--animated:nth-of-type(3) {
  --schedule-meta-delay: 0.5s;
}

body.animations-ready .schedule-card--animated {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  animation: hero-fade-up 0.85s ease forwards;
  animation-delay: var(--schedule-card-delay, 0.45s);
  animation-play-state: paused;
}

.schedule__cards
  .schedule__card-row:nth-of-type(1)
  .schedule-card--animated:nth-of-type(1) {
  --schedule-card-delay: 0.35s;
}

.schedule__cards
  .schedule__card-row:nth-of-type(1)
  .schedule-card--animated:nth-of-type(2) {
  --schedule-card-delay: 0.45s;
}

.schedule__cards
  .schedule__card-row:nth-of-type(2)
  .schedule-card--animated:nth-of-type(1) {
  --schedule-card-delay: 0.55s;
}

.schedule__cards
  .schedule__card-row:nth-of-type(2)
  .schedule-card--animated:nth-of-type(2) {
  --schedule-card-delay: 0.65s;
}

body.animations-ready .schedule__button-animated {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  animation: hero-fade-up 0.9s ease forwards;
  animation-delay: 0.75s;
  animation-play-state: paused;
}

body.animations-ready .tickets__title-animated,
body.animations-ready .tickets__text-animated {
  opacity: 0;
  transform: translate3d(0, 1.2rem, 0);
  animation: hero-fade-up 0.85s ease forwards;
  animation-play-state: paused;
}

body.animations-ready .tickets__title-animated {
  animation-delay: 0.2s;
}

body.animations-ready .tickets__text-animated {
  animation-delay: 0.3s;
}

body.animations-ready .comfort__title-animated {
  opacity: 0;
  transform: translate3d(0, 1.2rem, 0);
  animation: hero-fade-up 0.85s ease forwards;
  animation-delay: 0.2s;
  animation-play-state: paused;
}

body.animations-ready .comfort-card--animated {
  opacity: 0;
  transform: translate3d(0, 1.2rem, 0);
  animation: hero-fade-up 0.8s ease forwards;
  animation-delay: var(--comfort-card-delay, 0.3s);
  animation-play-state: paused;
}

.comfort__list .comfort-card--animated:nth-of-type(1) {
  --comfort-card-delay: 0.3s;
}

.comfort__list .comfort-card--animated:nth-of-type(2) {
  --comfort-card-delay: 0.4s;
}

.comfort__list .comfort-card--animated:nth-of-type(3) {
  --comfort-card-delay: 0.5s;
}

body.animations-ready .ticket-card--animated {
  opacity: 0;
  transform: translate3d(0, 1.4rem, 0);
  animation: hero-fade-up 0.85s ease forwards;
  animation-delay: var(--ticket-card-delay, 0.4s);
  animation-play-state: paused;
}

.tickets__list .ticket-card--animated:nth-of-type(1) {
  --ticket-card-delay: 0.3s;
}

.tickets__list .ticket-card--animated:nth-of-type(2) {
  --ticket-card-delay: 0.4s;
}

.tickets__list .ticket-card--animated:nth-of-type(3) {
  --ticket-card-delay: 0.5s;
}

.tickets__list .ticket-card--animated:nth-of-type(4) {
  --ticket-card-delay: 0.6s;
}

.hero--full {
  min-height: 100vh;
  padding: 6.5rem 0 4rem;
  display: flex;
  align-items: start;
  background-image: url("/img/hero-bg-image-1.webp");
  background-size: cover;
  background-position: center;
}

.hero--full .hero__container {
  width: 100%;
  justify-content: center;
}

.hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.5rem;
}

.hero__content--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero--full .hero__content--center {
  text-align: center;
  align-items: center;
}

.hero__title {
  font-size: 2.125rem;
  color: #ffffff;
  margin-bottom: 1.125rem;
  font-weight: 600;
  background-color: rgb(113 113 113 / 50%);
  backdrop-filter: blur(2px);
}

.hero__title--wide {
  font-size: clamp(2.5rem, 4vw + 1rem, 3.25rem);
  line-height: 1.2;
  margin-bottom: 0;
  /* max-width: 48rem; */

  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 3.875rem; */
}
.hero__title-left {
}

.hero--full .button {
  font-size: 1.125rem;
  padding: 1.125rem 1.75rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
}
/* .hero__title-bold {
  text-decoration: underline;
  text-decoration-color: #ed1a20;
} */
.hero__text {
  max-width: 29.675rem;
  margin-bottom: 1.125rem;
  line-height: 1.3;
  font-size: 1.125rem;
}

.hero__image {
  max-width: 37.5rem;
  border-radius: 20px;
}

.hop {
  padding: 3rem 0 4rem;
  background-image: url("/img/bg-section.png");
  background-repeat: no-repeat; /* Image will appear only once */
  background-position: center center;
  background-size: cover;
}

.hop__header {
  position: relative;
  margin-bottom: 1.25rem;
}

.hop__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cfd5e7;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.hop__title {
  font-size: 2.5rem;
  margin: 0;
}

.hop__accent {
  color: #ed1a20;
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.hop__subtitle {
  color: #d8dce9;
  margin: 1rem 0 0;
  max-width: 48rem;
}

.hop__list {
  margin: 1.5rem 0 4rem 1.25rem;
  color: #ffffff;
  line-height: 1.6;
  max-width: 48rem;
}

.hop__item {
  margin-bottom: 0.4rem;
}

.hop__steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.875rem;
}

.hop__button {
  margin: 2rem auto 0;
  max-width: 18rem;
  justify-content: center;
  padding-inline: 2rem;
}

.hop-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.hop-step__badge {
  width: 9.375rem;
  height: 9.375rem;
  margin: 0 auto 1rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2b3141;
  color: #ed1a20;
  font-size: 7.5rem;
  font-weight: 700;
}

.hop-step__text {
  color: #d8dce9;
  margin: 0;
  max-width: 16.25rem;
  text-align: center;
}

.schedule {
  padding: 4rem 0;
  padding-bottom: 0rem;
}

.schedule__inner {
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.schedule-box {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background-color: #2b3141;
  padding-top: 1.25rem;
}
.schedule__intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.schedule__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.schedule__title {
  margin: 0 0 1rem;
  font-size: 1.875rem;
}

.schedule__title span {
  color: #ed1a20;
}

.schedule__text {
  margin: 0;
  line-height: 1.6;
}

.schedule__meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.875rem;
}

.schedule-meta {
  flex: 1;
  min-width: 180px;
  text-align: center;
}

.schedule-meta__label {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

.schedule-meta__value {
  margin: 0;
  font-weight: 500;
  font-size: 1.125rem;
}

.schedule__cards {
  display: flex;
  gap: 1rem;

  justify-content: space-between;
  margin-bottom: 30px;
  padding: 0rem 1.25rem 0rem 1.25rem;
}
.schedule__card-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.875rem;
  width: 100%;
}
.schedule-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.schedule-card__figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 15rem;
}

.schedule-card__figure img {
  width: 100%;
  display: block;
  height: 170px;
  object-fit: cover;
}

.schedule-card__title {
  margin: 0;
  font-size: 1rem;
}

.schedule__button {
  align-self: center;
  width: 100%;
  justify-content: center;
  font-size: 1.125rem;
  border-radius: 0px 0px 20px 20px;
}

.tickets {
  padding: 4rem 0rem;
  background-image: url("/img/bg-section.png");
  background-repeat: no-repeat; /* Image will appear only once */
  background-position: center center;
  background-size: cover;
}

.tickets__inner {
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tickets__intro {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto;
}

.tickets__title {
  margin: 0 0 0.75rem;
  font-size: 2rem;
}

.tickets__text {
  margin: 0;
  line-height: 1.6;
}

.tickets__list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tickets__note {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  background-color: #ed1a20;
  max-width: 480px;
  border-radius: 10px;
}

.tickets__note strong {
  color: #ffffff;
  font-weight: 700;
}

.support {
  padding: 4rem 0;
}

.support__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.support__intro {
  text-align: center;
}

.support__title {
  margin: 0;
  font-size: 2rem;
}

.support__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.support-card {
  background-color: #2b3141;
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-card__title {
  margin: 0;
  font-size: 1.25rem;
}

.support-card__list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.5rem;
  line-height: 1.6;
}

.support-card__button {
  align-self: flex-start;
  margin-top: auto;
}

.ticket-card {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  padding: 1.125rem;
  border-radius: 18px;
  gap: 0.75rem;
  background-color: #2b3141;
}

.ticket-card__figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
}

.ticket-card__figure img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.ticket-card__title {
  margin: 0;
  font-size: 1.125rem;
}

.ticket-card__subtitle {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 0.9375rem;
}

.ticket-card__price {
  margin: 0;
  font-weight: 600;
  font-size: 1.2rem;
}

.ticket-card__button {
  width: 100%;
  justify-content: center;
}

.comfort {
  padding: 4rem 0;
}

.comfort__inner {
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.comfort__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 500;
}

.comfort__list {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.comfort-card {
  flex: 1;
  min-width: 220px;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background-color: #2b3141;
  max-width: 19rem;
}

.comfort-card__icon {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.comfort-card__text {
  margin: 0;
  line-height: 1.5;
}

.reviews {
  padding: 4rem 0;
}

.reviews__inner {
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.reviews__intro {
  max-width: 38rem;
  margin: 0 auto;
}

.reviews__title {
  margin: 0 0 0.5rem;
  font-size: 2rem;
}

.reviews__text {
  margin: 0;
  opacity: 0.85;
}

.reviews__list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.review-card {
  flex: 1;
  min-width: 220px;
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  background-color: #2b3141;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card__name {
  margin: 0;
  font-weight: 600;
}

.review-card__date {
  font-size: 0.85rem;
  opacity: 0.7;
}

.review-card__rating {
  margin: 0;
  font-size: 1.1rem;
  color: #ffc107;
}

.review-card__text {
  margin: 0;
  line-height: 1.5;
}

.review-card__brand {
  width: 70px;
  margin-top: auto;
}

.reviews__button {
  align-self: center;
  min-width: 14rem;
  justify-content: center;
}

.faq {
  padding: 0rem 0rem 4rem 0rem;
  background-image: url("/img/bg-section.png");
  background-repeat: no-repeat; /* Image will appear only once */
  background-position: center center;
  background-size: cover;
}

.faq__inner {
  border-radius: 20px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq__intro {
  text-align: center;
}

.faq__title {
  margin: 0 0 0.5rem;
  font-size: 2rem;
}

.faq__text {
  margin: 0;
  opacity: 0.8;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 18px;
  padding: 1rem 1.25rem;
  background-color: #2b3141;
  max-width: 46.25rem;
  width: 100%;
  margin: 0 auto;
  cursor: pointer;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-item__trigger span {
  font-size: 1.125rem;
  font-weight: 500;
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.25s ease;
}

.faq-item__content {
  margin-top: 0.75rem;
  display: none;
  line-height: 1.5;
}

.faq-item--open .faq-item__content {
  display: block;
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg) translate(1px, 1px);
}

.safety {
  padding: 4rem 0;

  padding-bottom: 2rem;
}

.partners {
  padding-top: 0;
  padding-bottom: 3rem;
}

.safety__inner {
  border-radius: 20px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.safety__intro {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
  margin-bottom: 1.25rem;
}

.safety__title {
  margin: 0 0 0.75rem;
  font-size: 2rem;
}

.safety__text {
  margin: 0;
  line-height: 1.5;
}

.safety__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 45rem;
  margin: 0 auto;
  justify-content: center;
}

.safety-card {
  flex: 1 1 calc(50% - 1rem);
  min-width: 220px;
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  background-color: #2b3141;
  max-width: 21.25rem;
}

.safety-card img {
  width: auto;
}

.safety-card h3 {
  margin: 0;
  font-size: 1.25rem;
  text-align: center;
}

.safety-card p {
  margin: 0;
  opacity: 0.85;
  line-height: 1.4;
  text-align: center;
}

.safety__notes {
  text-align: left;
  border-radius: 18px;
  padding: 1.5rem;
  line-height: 1.5;
  text-align: center;
}

.safety__notes h3 {
  margin: 0 0 0.75rem;
  text-align: center;
}

.safety__notes ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contacts {
  padding-bottom: 1.875rem;
}

.contacts__inner {
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contacts__intro {
  text-align: center;
}

.contacts__title {
  margin: 0 0 0.5rem;
  font-size: 2rem;
}

.contacts__text {
  margin: 0;
  opacity: 0.85;
}

.contacts__content {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contacts__info {
  flex: 1 1 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.contacts-card-row {
  display: flex;
  gap: 1.25rem;
}

.contacts-card {
  flex: 1 1 18rem;
  border-radius: 18px;
  padding: 1.25rem;
  background-color: #2b3141;
  width: 19.5rem;
  height: 8.375rem;
}

.contacts-card__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.contacts-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contacts-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.contacts-card__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.contacts-card p {
  margin: 0.15rem 0;
}

.contacts__map {
  flex: 1 1 320px;
  border-radius: 20px;
  overflow: hidden;
}

.contacts__map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contacts__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.contacts__socials a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #ffffff;
}
.contacts__socials img {
  width: 36px;
  height: 36px;
}

.footer {
  background-color: #262b3b;
  color: #f0f0f5;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-size: 0.875rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__link {
  color: inherit;
  text-decoration: none;
}

.footer__link:hover,
.footer__link:focus-visible {
  text-decoration: underline;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 2rem 0.75rem;
  z-index: 200;
}

.modal-open {
  overflow: hidden;
}

.modal--open {
  display: flex;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 29, 42, 0.8);
}

.modal__window {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 1.25rem;
  width: min(90vw, 420px);
  color: #151515;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.4);
}

.modal__window--request {
  background: #f4f4f4;
  width: min(90vw, 360px);
  text-align: center;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6f6f6f;
}

.modal__title {
  margin: 0 0 0.5rem;
  text-align: center;
}

.modal__subtitle {
  margin: 0 0 1.5rem;
  text-align: center;
  font-weight: 500;
  color: #151515;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-request__form {
  gap: 1.25rem;
}

.modal-request__form .modal-field {
  text-align: left;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.9rem 1.1rem;
  border-radius: 18px;
  background: #e5e5e5;
  font-weight: 600;
  color: #6f6f6f;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-option__text {
  color: inherit;
  flex: 1;
}

.modal-option__icons {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  margin-left: auto;
  flex-wrap: wrap;
}

.modal-option__icon {
  width: 2.25rem;
  height: 1.75rem;
  border-radius: 0.35rem;
  object-fit: contain;
  flex-shrink: 0;
}

.modal-option input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  accent-color: #ed1a20;
}

.modal-option input[type="radio"]:checked + .modal-option__text {
  color: #151515;
}

.modal-flow {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 0.5rem;
}

.modal-ticket-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-info {
  background: #f7f7f7;
  border-radius: 18px;
  padding: 1rem 1.25rem;
  color: #151515;
  font-weight: 500;
  line-height: 1.4;
}

.modal-info p {
  margin: 0;
}

.modal-info p + p {
  margin-top: 0.5rem;
}

.modal__error {
  min-height: 1.25rem;
  margin: 0 0 0.75rem;
  color: #d93a3a;
  font-size: 0.95rem;
  text-align: center;
}

.modal-request__message--success {
  color: #15803d;
}

.modal-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-ticket {
  background: #f4f4f4;
  border-radius: 18px;
  padding: 1rem 1.25rem;
}

.modal-ticket__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.modal-ticket__title {
  margin: 0;
  font-weight: 600;
  color: #151515;
}

.modal-ticket__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-ticket__control {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #cdcdcd;
  background: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  color: #151515;
  cursor: pointer;
}

.modal-ticket__count {
  width: 3rem;
  height: 2.5rem;
  border-radius: 12px;
  border: 1px solid #dcdcdc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #151515;
  background: #ffffff;
}

.modal-summary {
  border-top: 1px solid #dcdcdc;
  padding-top: 0.75rem;
}

.modal-summary__label {
  margin: 0 0 0.5rem;
  font-weight: 600;
  color: #151515;
}

.modal-summary__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.modal-summary__details {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #6f6f6f;
  font-weight: 500;
}

.modal-summary__details li + li {
  margin-top: 0.35rem;
}

.modal-summary__amount {
  font-weight: 600;
  color: #151515;
  white-space: nowrap;
}

.modal-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  color: #151515;
}

.modal-field input {
  border-radius: 12px;
  border: 1px solid #dcdcdc;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: #151515;
  background: #ffffff;
}

.modal-field input::placeholder {
  color: #b5b5b5;
}

.modal__submit {
  width: 100%;
  justify-content: center;
  font-weight: 600;
  margin-top: 0.25rem;
}

.modal-request__submit {
  border-radius: 999px;
  font-size: 1rem;
  margin-top: 0;
}

.routes-hero {
  position: relative;
  min-height: 11.875rem;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(15, 18, 30, 0.1) 30%, rgba(15, 18, 30, 0.75)),
    url("../img/routes-hero.webp");
  background-size: cover;
  background-position: center;
}

.routes-hero__overlay {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 22rem;
  padding: 4rem 1rem;
  text-align: center;
}

.routes-hero__title {
  margin: 0;
  font-size: 3rem;
  color: #ffffff;
  text-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.45);
}

.routes-brief {
  background-image: url("../img/bg-section.png");
  background-size: cover;
  padding: 2rem 2rem;
}

.routes-brief__content {
  text-align: center;
  max-width: 60rem;
  margin: 0 auto;
  min-height: 11.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.routes-brief__title {
  margin: 0 0 1rem;
  font-size: 1.625rem;
  text-decoration: underline;
  text-decoration-color: #ed1a20;
}

.routes-brief__text {
  margin: 0 auto;
  line-height: 1.6;
  color: #f4f4f9;
}

.routes-timeline {
  padding-bottom: 4rem;
}

.routes-timeline__header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.routes-timeline__title {
  margin: 0 0 0.5rem;
  font-size: 2rem;
}

.routes-timeline__text {
  margin: 0;
  color: #d8dce9;
}

.routes-timeline__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 3.75rem;
  padding-top: 3.125rem;
}

.routes-timeline__list::before {
  content: "";
  position: absolute;
  top: 3.125rem;
  bottom: 16rem;
  left: 1.5rem;
  width: 2px;
  background-color: #ed1a20;
}

.route-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 10px;
  background-color: #2b3141;
  position: relative;
}

.route-card__order {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #ed1a20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  left: -3.65rem;
  top: 0;
  flex-shrink: 0;
  box-shadow: 0 0.5rem 1.25rem rgba(237, 26, 32, 0.45);
}

.route-card__media {
  flex: 0 0 320px;
  border-radius: 18px;
  overflow: hidden;
}

.route-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.route-card__title {
  margin: 0;
  font-size: 1.5rem;
}

.route-card__location {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #cfd5e7;
}

.route-card__location a {
  color: #ffffff;
  text-decoration: underline;
}

.route-card__location-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(1.4);
  margin-top: 0.2rem;
}

.route-card__description {
  margin: 0;
  line-height: 1.6;
  color: #f4f4f9;
}

.route-card__tags {
  margin: 0;
  font-size: 0.9rem;
  color: #cfd5e7;
}

.route-card__tags span {
  color: #ffffff;
  font-weight: 500;
}

.route-card__button {
  align-self: flex-end;
  margin-top: auto;
  background-color: #3a4257;
  color: #ffffff;
}

.routes-cta {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.routes-cta__button {
  min-width: 12rem;
  justify-content: center;
  padding-inline: 2rem;
}

.routes-map {
  margin-top: 2.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.routes-map iframe {
  border-radius: 0.75rem;
}
/* .routes-map img {
  display: block;
  width: 70%;
  height: auto;
  margin: 0 auto;
  border-radius: 20px;
} */
.button--download {
  background-color: #3a4257;
  color: #ffffff;
  border: 1px solid #ed1a20;
}
.about-hero {
  background-image:
    linear-gradient(180deg, rgba(15, 18, 30, 0.1) 30%, rgba(15, 18, 30, 0.75)),
    url("../img/routes-hero.webp");
}

.about-overview {
  padding: 3rem 0 4rem;
  background-image: url("../img/bg-section.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
}

.about-overview__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-overview__header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-overview__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  color: #cfd5e7;
}

.about-overview__title {
  margin: 0;
  font-size: 2.25rem;
}

.about-overview__subtitle {
  margin: 0;
  color: #d8dce9;
}

.about-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.about-video {
  background-color: #2b3141;
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-video__frame {
  border-radius: 16px;
  overflow: hidden;
  background-color: #000;
}

.about-video__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.about-video__frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

.about-video__caption {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.about-description {
  background-color: #2b3141;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1.7;
}
.about-partners {
  background-color: #2b3141;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-partners__header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-partners__title {
  margin: 0;
  font-size: 1.75rem;
}

.about-partners__subtitle {
  margin: 0;
  color: #d8dce9;
  line-height: 1.5;
}

.about-partners__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-partner-card {
  margin: 0;
  border-radius: 18px;
  padding: 1.25rem 1rem;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}

.about-partner-card__logo {
  width: 100%;
  height: 6.6875rem;
  max-width: 11rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

.about-partner-card__logo img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

.about-partner-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}
.about-cta {
  margin-top: 2.5rem;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  background-color: #2b3141;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.about-cta__title {
  margin: 0;
  font-size: 1.75rem;
}

.about-cta__text {
  margin: 0;
  max-width: 32rem;
  line-height: 1.5;
}

.about-cta__button {
  min-width: 14rem;
  justify-content: center;
}

.contacts-hero {
  background-image:
    linear-gradient(180deg, rgba(15, 18, 30, 0.1) 30%, rgba(15, 18, 30, 0.75)),
    url("../img/routes-hero.webp");
}

.contacts-page {
  padding: 3rem 0 4rem;
  background-image: url("../img/bg-section.png");
  background-size: cover;
}

.contacts-page__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contacts-page__intro {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contacts-page__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  color: #cfd5e7;
}

.contacts-page__title {
  margin: 0;
  font-size: 2rem;
}

.contacts-page__text {
  margin: 0;
  color: #d8dce9;
  line-height: 1.5;
}

.contacts-page__socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.25rem;
}

.contacts-page__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
}

.contacts-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.contacts-info-card {
  border-radius: 18px;
  background-color: #2b3141;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
  min-height: 160px;
}

.contacts-info-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.contacts-info-card p {
  margin: 0;
  line-height: 1.5;
}

.contacts-info-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.5rem;
}

.contacts-page__media {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.contacts-page__map,
.contacts-page__photo {
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  background-color: #2b3141;
}

.contacts-page__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.contacts-page__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cooperation-hero {
  background-image:
    linear-gradient(180deg, rgba(15, 18, 30, 0.1) 30%, rgba(15, 18, 30, 0.75)),
    url("../img/routes-hero.webp");
}

.cooperation-lead {
  padding: 3rem 0;
  background-color: #2f3648;
}

.cooperation-lead__container {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cooperation-lead__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: #cfd5e7;
}

.cooperation-lead h2 {
  margin: 0;
  font-size: 2rem;
}

.cooperation-lead p {
  margin: 0;
  line-height: 1.6;
  color: #d8dce9;
}

.cooperation-section {
  padding: 3rem 0;
  background-image: url("../img/bg-section.png");
  background-size: cover;
}
.cooperation-section--reverse {
  background-image: none;
}
.cooperation-section__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: flex-start;
}

.cooperation-section__content {
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cooperation-section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: #ffffff;
  margin: 0;
  text-decoration: underline;
  text-decoration-color: #ed1a20;
}

.cooperation-section__content h2 {
  margin: 0;
  font-size: 1.75rem;
}

.cooperation-section__content p {
  margin: 0;
  line-height: 1.6;
}

.cooperation-section__lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.cooperation-section__lists--single {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cooperation-section__subtitle {
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.cooperation-list,
.cooperation-steps {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cooperation-steps {
  list-style: decimal;
}

.cooperation-section__button {
  align-self: flex-start;
  padding-inline: 1.5rem;
}

.cooperation-section__media {
  border-radius: 20px;
  overflow: hidden;
  background-color: #2b3141;
}

.cooperation-section__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cooperation-section--reverse .cooperation-section__container {
  direction: rtl;
}
.cooperation-section--reverse .cooperation-section__content,
.cooperation-section--reverse .cooperation-section__media {
  direction: ltr;
}

@media (max-width: 63.75rem) {
  .cooperation-section__container {
    grid-template-columns: 1fr;
  }

  .cooperation-section--reverse .cooperation-section__container {
    direction: ltr;
  }
}

.cooperation-cta {
  padding: 3rem 0;
}

.cooperation-cta h2 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
}

.cooperation-cta p {
  margin: 0 0 1rem;
  color: #d8dce9;
}

.cooperation-contacts {
  padding: 4rem 0;
  background-image: url("../img/bg-section.png");
  background-size: cover;
}

.cooperation-contacts__intro {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cooperation-contacts__intro h2 {
  margin: 0;
  font-size: 2rem;
}

.cooperation-contacts__intro p {
  margin: 0;
  color: #d8dce9;
}

.cooperation-contacts__map {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
}

.cooperation-contacts__map iframe {
  width: 100%;
  display: block;
}

.contacts-main {
  padding-bottom: 0;
}

@media (max-width: 63.75rem) {
  .header__panel {
    margin-left: 0;
    flex: unset;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #2b3141;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
    z-index: 1;
  }

  .header--menu-open .header__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    align-items: center;
    text-align: center;
  }
  .header--menu-open .header__panel .header__lang {
    justify-content: center;
  }
  .header__nav .nav__list {
    flex-direction: column;
    gap: 1rem;
  }

  .header__actions {
    margin-left: auto;
  }

  .header__lang {
    width: 100%;
    margin-left: 0;
  }

  .header__burger {
    display: inline-flex;
    margin-left: 1rem;
  }
  .hero__container {
    flex-direction: column;
  }
  .hero__title,
  .hero__text {
    text-align: center;
  }
  .hero__content {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.875rem;
  }
  .hero__text {
    min-width: 30.375rem;
  }
  .schedule__card-row {
    width: 100%;
  }
  .schedule__cards {
    flex-wrap: wrap;
  }
  .schedule-card {
    align-items: center;
    justify-content: center;
  }
  .schedule-card__figure img {
    height: auto;
  }
  .schedule-card__figure {
    max-width: 21.875rem;
  }

  .ticket-card {
    width: 40%;
    flex: none;
  }
  .tickets__list {
    justify-content: center;
  }

  .comfort__list {
    justify-content: center;
  }
  .comfort-card {
    width: 40%;
  }
  .reviews__list {
    justify-content: center;
  }
  .review-card {
    flex: none;
    width: 20.625rem;
  }
  .contacts__info {
    justify-content: center;
  }
  .contacts__map {
    min-height: 18.75rem;
  }
  .hero__title--wide {
    right: 4.2%;
    font-size: 2.5rem;
  }
  .hero__content {
    margin-bottom: 0;
  }
}

@media (max-width: 62rem) {
  .route-card__media {
    width: 100%;
  }

  /* .route-card__order {
    margin-left: 0;
  } */

  /* .routes-timeline__list {
    padding-left: 0;
  } */

  /* .routes-timeline__list::before {
    display: none;
  } */
}

@media (max-width: 48rem) {
  .routes-hero__overlay {
    min-height: 8.75rem;
    padding: 3rem 1rem;
  }
  .routes-hero {
    min-height: 8.75rem;
  }
  .routes-hero__title {
    font-size: 2.25rem;
  }

  .routes-brief__content {
    padding: 2rem 1.5rem;
  }
  .contacts-card-row {
    flex-wrap: wrap;
    width: 19.5rem;
  }
  .contacts__content {
    flex-direction: column;
  }

  .support__grid {
    grid-template-columns: 1fr;
  }

  .hero__image {
    max-width: 28rem;
  }
  .hero__title {
    font-size: 1.625rem;
  }
  .hero__text {
    font-size: 16px;
  }
  .header__logo img {
    width: 12rem;
  }
  .hop__steps {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hop__title {
    font-size: 28px;
  }
  .comfort__title,
  .reviews__title,
  .schedule__title {
    font-size: 1.5rem;
  }
  .schedule__inner {
    padding: 1rem;
  }

  .ticket-card__figure img {
    height: auto;
  }
  .routes-hero__title {
    font-size: 1.5rem;
  }
  .route-card__media img {
    height: auto;
  }
  .route-card__media {
    height: auto;
    flex-basis: auto;
  }
  .route-card {
    flex-direction: column;
  }
  .tickets__title {
    font-size: 1.5rem;
  }
  .cooperation-lead h2 {
    font-size: 1.2rem;
  }
  .cooperation-section__content h2 {
    font-size: 1.2rem;
  }
  .cooperation-section {
    padding: 1rem 0rem;
  }
  .cooperation-section__content {
    padding: 1rem;
  }
  .contacts__title {
    font-size: 1.5rem;
  }
  .contacts-page__title {
    font-size: 1.5rem;
  }
  .safety-card h3 {
    font-size: 1rem;
  }
  .faq__title {
    font-size: 1.5rem;
  }
  .faq-item__trigger span {
    font-size: 1rem;
  }
  .faq__inner {
    padding: 2rem 1rem;
  }
  .safety__inner {
    padding: 2rem 1rem;
  }
  .hop-step__badge {
    width: 5rem;
    height: 5rem;
    font-size: 4rem;
  }
  .hop__list {
    margin-bottom: 1.5rem;
  }
  .schedule,
  .tickets,
  .comfort,
  .reviews,
  .safety {
    padding: 2rem 0;
  }
  .safety__title {
    font-size: 1.5rem;
  }
  .about-partners__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 35rem) {
  .schedule__card-row {
    flex-direction: column;
  }
  .ticket-card {
    width: 80%;
  }
  .hero__text {
    width: auto;
  }
  .header__button {
    font-size: 16px;
  }
  .header__logo img {
    width: 10rem;
  }
  .hero__text {
    min-width: auto;
  }
  .modal-option__icon {
    width: 1.65rem;
  }
  .hero__visual {
    width: 98%;
    text-align: center;
  }
  .hero__image {
    width: 100%;
  }
  .footer__content {
    flex-direction: column;
    gap: 1rem;
  }

  .not-found__card {
    padding: 2rem 1.25rem;
    border-radius: 1.5rem;
  }

  .not-found__actions {
    flex-direction: column;
  }

  .not-found__actions .button {
    width: 100%;
    justify-content: center;
  }
}
.reviews__title-animated,
.reviews__text-animated,
.review-card--animated,
.reviews__button-animated {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  animation: hero-fade-up 0.85s ease forwards;
  animation-play-state: paused;
}

.reviews__title-animated {
  animation-delay: 0.2s;
}

.reviews__text-animated {
  animation-delay: 0.3s;
}

.review-card--animated {
  animation-delay: var(--review-card-delay, 0.4s);
}

.reviews__list .review-card--animated:nth-of-type(1) {
  --review-card-delay: 0.3s;
}

.reviews__list .review-card--animated:nth-of-type(2) {
  --review-card-delay: 0.4s;
}

.reviews__list .review-card--animated:nth-of-type(3) {
  --review-card-delay: 0.5s;
}

.reviews__button-animated {
  animation-delay: 0.6s;
}

.policy {
  padding: 3.5rem 0 4rem;
  background-color: #f6f7fb;
}

.policy__container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.policy__intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.policy__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: #6b7280;
}

.policy__title {
  margin: 0;
  font-size: 2.2rem;
  color: #111827;
}

.policy__lead {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}

.policy__sections {
  display: grid;
  gap: 1.25rem;
}

.policy__section {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.policy__section h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  color: #111827;
}

.policy__section p {
  margin: 0 0 0.75rem;
  color: #4b5563;
  line-height: 1.6;
}

.policy__section p:last-child,
.policy__section ul:last-child {
  margin-bottom: 0;
}

.policy__section ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #4b5563;
  line-height: 1.6;
}

.policy__section li {
  margin-bottom: 0.4rem;
}

@media (max-width: 48rem) {
  .policy {
    padding: 2.5rem 0 3rem;
  }
  .policy__title {
    font-size: 1.8rem;
  }
  .policy__section {
    padding: 1.25rem;
  }
}
