@font-face {
    font-family: 'Unbounded';
    src: url('../fonts/Unbounded-VariableFont_wght.ttf') format('truetype');
    font-display: swap;
    font-weight: 400 900;
    font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-display: swap;
  font-weight: 100 900;
  font-style: normal;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --card-shadow: 0 0 32px rgba(11, 17, 32, 0.18);
  --card-shadow-hover: 0 24px 60px rgba(11, 17, 32, 0.22);
}
html {
  scroll-behavior: smooth;
}
.container {
    width: 100%;
    max-width: 1440px;
    padding: 0 16px;
    margin: 0 auto;
}
body {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    background: #f8fbff;
}
.header {
  --hero-shift: 0px;
  width: 100%;
  height: auto;
  background: #082c42;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.header::before {
  content: "";
  position: absolute;
  inset: -32px;
  background: url('../images/aqua2.webp') center calc(50% + var(--hero-shift)) / cover no-repeat;
  transform: scale(1.04);
  transform-origin: center;
  animation: heroBgAlive 18s ease-in-out infinite alternate;
  pointer-events: none;
  will-change: transform;
  z-index: 0;
}
.header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(5 5 12 / 95%), rgba(8 23 32 / 90%));
  pointer-events: none;
  z-index: 1;
}
.header > .container,
.header > .end__image {
  position: relative;
  z-index: 2;
}
.header__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  padding-block: 20px;
}
.head__logo {
  display: block;
  object-fit: cover;
  transition: transform 0.35s var(--motion-ease);
}
.head__img:hover .head__logo {
  transform: scale(1.04) rotate(-2deg);
}
.header__navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.head__nav {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease, transform 0.3s var(--motion-ease);
}
.head__nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #38b6ff;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--motion-ease);
}
.head__nav:hover {
  transform: translateY(-5px);
  color: #38b6ff;
}
.head__nav:hover::after {
  transform: scaleX(1);
}
.hero {
  width: 100%;
  height: auto;
  padding-block: clamp(16px, 6vw, 70px);
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 46px;
  width: 100%;
  max-width: 654px;
  height: auto;
}
.hero__title {
  font-size: 4.5rem;
  font-weight: 900;
  font-family: 'Unbounded', sans-serif;
  color: #ffffff;
  line-height: 100%;
  letter-spacing: 0;
  animation: heroReveal 0.85s var(--motion-ease) both;
}
.hero__descriptions-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: transparent;
  backdrop-filter: blur(4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  animation: heroReveal 0.85s var(--motion-ease) 0.12s both;
}
.hero__dsc {
  font-size: 1.1rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #38b6ff;
}
.hero__dot {
  font-size: 2rem;
  color: #38b6ff;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
}
.hero__buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  width: auto;
  height: auto;
  animation: heroReveal 0.85s var(--motion-ease) 0.2s both;
}
.hero__btn-1 {
  padding: 25px 30px 25px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  border-radius: 30px;
  border: 1px solid transparent;
  background: #ff5e3a;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(255, 94, 58, 0.28);
  transition: transform 0.3s var(--motion-ease), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.hero__btn-1:hover {
  background: transparent;
  backdrop-filter: blur(3px);
  border-color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(255, 94, 58, 0.36);
}
.hero__btn-2 {
  padding: 25px 30px 25px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  border-radius: 30px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  transition: transform 0.3s var(--motion-ease), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.hero__btn-2:hover {
  background: #ff5e3a;
  border-color: #ff5e3a;
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(255, 94, 58, 0.28);
}
.hero__cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 16px;
  backdrop-filter: blur(4px);
  border-radius: 20px;
  animation: heroReveal 0.85s var(--motion-ease) 0.28s both;
}
.adress__card {
  display: flex;
  gap: 8px;
  align-items: center;
}
.card__dsc {
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}
.hero__location {
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 390px;
  justify-content: center;
  padding: 12px 0 12px 0;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  animation: heroReveal 0.85s var(--motion-ease) 0.38s both;
}
.location {
  font-size: 1.1rem;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}
.advantages {
  width: 100%;
  height: auto;
}
.advantages__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-block: 20px;
}
.advantages__card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  transition: transform 0.3s var(--motion-ease);
}
.advantages__card:hover {
  transform: translateY(-6px);
}
.card__num {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Unbounded', sans-serif;
  color: #0057FF;
  line-height: 100%;
  letter-spacing: 0;
  transition: color 0.3s ease;
}
.advantages__card:hover .card__num {
  color: #ff5e3a;
}
.star__icon {
  object-fit: cover;
}
.stars__icon {
  width: 32px;
  height: 32px;
  object-fit: cover;
}
.card__dsc-1 {
  font-size: 1.1rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #808080;
  line-height: 100%;
  letter-spacing: 0;
}
.end__image {
  display: flex;
  justify-content: center;
}
.vawe__icon {
  object-fit: cover;
  display: block;
  animation: waveDrift 7s ease-in-out infinite;
}
.about {
  width: 100%;
  height: auto;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-block: clamp(16px, 5vw, 50px);
}
.about__title {
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #0057FF;
  line-height: 100%;
  letter-spacing: 0;
}
.about__title-1 {
  font-size: 3rem;
  font-weight: 700;
  color: #0b1120;
  font-family: 'Unbounded', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}
.about__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about__card {
  width: 100%;
  max-width: 384px;
  height: auto;
  min-height: 478px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.35s var(--motion-ease), box-shadow 0.35s ease;
}
.about__card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow-hover);
}
.aqua__img {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--motion-ease);
  cursor: pointer;
}
.about__card:hover .aqua__img,
.aqua__img:hover {
  transform: scale(1.05);
}
.card__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 15px 0 15px;
  position: relative;
  z-index: 1;
}
.card__title-one {
  background: #FF800040;
  width: 100%;
  max-width: 120px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  padding: 5px 5px 5px 5px;
}
.content__title-one {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #ff5e3a;
  line-height: 100%;
  letter-spacing: 0;
}
.card__content-2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card__title-1 {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Unbounded', sans-serif;
  color: #0b1120;
  line-height: 100%;
  letter-spacing: 0;
}
.card__dsc-2 {
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #808080;
}
.card__button {
  width: auto;
  height: auto;
}
.card__btn {
  background: transparent;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  color: #ff5e3a;
  transition: color 0.3s ease, transform 0.3s var(--motion-ease);
}
.card__btn:hover {
  color: #0057FF;
  transform: translateX(6px);
}
.card__title-two {
  background: #00aeff40;
  width: 100%;
  max-width: 120px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  padding: 5px 5px 5px 5px;
}
.content__title-two {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #0057FF;
  line-height: 100%;
  letter-spacing: 0;
}
.card__title-three {
  background: #00aeff40;
  width: 100%;
  max-width: 120px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  padding: 5px 5px 5px 5px;
}
.content__title-three {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #0057FF;
  line-height: 100%;
  letter-spacing: 0;
}
.content__title-four {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #ff5e3a;
  line-height: 100%;
  letter-spacing: 0;
}
.card__title-four {
  background: #FF800040;
  width: 100%;
  max-width: 120px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  padding: 5px 5px 5px 5px;
}
.content__title-five {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #0057FF;
  line-height: 100%;
  letter-spacing: 0;
}
.card__title-five {
  background: #00aeff40;
  width: 100%;
  max-width: 120px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  padding: 5px 5px 5px 5px;
}
.content__title-six {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #0057FF;
  line-height: 100%;
  letter-spacing: 0;
}
.card__title-six {
  background: #00aeff40;
  width: 100%;
  max-width: 120px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  padding: 5px 5px 5px 5px;
}
.tickets {
  width: 100%;
  height: auto;
  background: #0b1120;
}
.tickets__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  height: auto;
  gap: 24px;
  padding-block: clamp(16px, 7vw, 90px);
}
.ticket__tit {
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #38b6ff;
  line-height: 100%;
  letter-spacing: 0;
}
.tickets__title-1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Unbounded', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}
.tickets__cards {
  display: flex;
  gap: 46px;
  width: 100%;
  justify-content: center;
}
.ticket__card {
  width: 100%;
  max-width: 466px;
  height: auto;
  min-height: 550px;
  background: white;
  padding: 40px 40px 40px 40px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(11, 17, 32, 0.08);
  transition: transform 0.35s var(--motion-ease), box-shadow 0.35s ease;
}
.ticket__card-blue {
  width: 100%;
  max-width: 466px;
  height: auto;
  min-height: 550px;
  background: #0057FF;
  padding: 40px 40px 40px 40px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 58px rgba(0, 87, 255, 0.28);
  transition: transform 0.35s var(--motion-ease), box-shadow 0.35s ease;
}
.ticket__card::before,
.ticket__card-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56, 182, 255, 0.16), transparent 44%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.ticket__card:hover,
.ticket__card-blue:hover {
  transform: translateY(-10px);
}
.ticket__card:hover {
  box-shadow: 0 28px 68px rgba(11, 17, 32, 0.18);
}
.ticket__card-blue:hover {
  box-shadow: 0 32px 78px rgba(0, 87, 255, 0.38);
}
.ticket__card:hover::before,
.ticket__card-blue:hover::before {
  opacity: 1;
}
.card__content-1 {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.card__tit {
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #808080;
  line-height: 100%;
  letter-spacing: 0;
}
.card__tit-blue {
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  line-height: 100%;
  letter-spacing: 0;
}
.card__name {
  font-size: 2rem;
  font-weight: 600;
  color: #0b1120;
  font-family: 'Unbounded', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}
.card__name-blue {
  font-size: 2rem;
  font-weight: 600;
  color: #ff5e3a;
  font-family: 'Unbounded', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}
.card__sale {
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #808080;
  line-height: 100%;
  letter-spacing: 0;
}
.card__sale-blue {
  font-size: 1.1rem;
  font-family: 'Inter',sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 100%;
  letter-spacing: 0;
}
.strong__sale {
  font-size: 2rem;
  font-weight: 600;
  font-family: 'Unbounded', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
  color: #0b1120;
}
.strong__sale-blue {
  font-size: 2rem;
  font-weight: 600;
  font-family: 'Unbounded', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}
.card__points {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.card__point {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.vector__icon {
  display: block;
  object-fit: cover;
  width: 19px;
  height: 19px;
}
.point__text {
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #0b1120;
  line-height: 100%;
  letter-spacing: 0;
}
.point__text-blue {
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  line-height: 100%;
  letter-spacing: 0;
}
.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 36px, 0);
  transition: opacity 0.75s var(--motion-ease), filter 0.75s var(--motion-ease), transform 0.75s var(--motion-ease), box-shadow 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}
.reveal--left {
  transform: translate3d(-36px, 0, 0);
}
.reveal--right {
  transform: translate3d(36px, 0, 0);
}
.reveal--zoom {
  transform: translate3d(0, 28px, 0) scale(0.96);
}
.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}
@keyframes heroReveal {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 34px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes heroBgAlive {
  0% {
    transform: translate3d(-10px, -6px, 0) scale(1.04);
  }
  100% {
    transform: translate3d(14px, 10px, 0) scale(1.09);
  }
}
@keyframes waveDrift {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-18px);
  }
}
.reserve {
  width: 100%;
  height: auto;
}
.reserve__content {
  display: flex;
  flex-wrap: wrap;
}
.reserve__title {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-block: clamp(16px, 6vw, 50px);
  align-items: center;
}
.res__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0057FF;
  font-family: 'Inter', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}
.res__title-1 {
  font-size: 3.2rem;
  font-weight: 900;
  font-family: 'Unbounded', sans-serif;
  color: #0b1120;
  line-height: 100%;
  letter-spacing: 0;
}
.res__title-2 {
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #808080;
  line-height: 100%;
  letter-spacing: 0;
}
.reserve__cards {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--card-shadow);
  padding: 24px 32px 24px 32px;
  border-radius: 30px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.reserve__cards::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56, 182, 255, 0.12), transparent 46%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.reserve__cards:hover::before {
  opacity: 1;
}
.reserve__icon {
  object-fit: cover;
  display: block;
  width: 21px;
  height: 22px;
  transition: transform 0.35s var(--motion-ease);
}
.reserve__card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  border-right: 1px solid #808080;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.reserve__card:hover {
  transform: translateY(-4px);
}
.reserve__card:hover .reserve__icon {
  transform: scale(1.12) rotate(-6deg);
}
.card__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 20px 0 0;
}
.text-1 {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #808080;
  line-height: 100%;
  letter-spacing: 0;
}
.text-2 {
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #0b1120;
  line-height: 100%;
  letter-spacing: 0;
}
.reserve__button {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
}
.reserve__btn {
  padding: 16px 32px 16px 32px;
  border-radius: 30px;
  border: none;
  background: #ff5e3a;
  font-family: 'Unbounded', sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s var(--motion-ease), box-shadow 0.3s ease, background-color 0.3s ease;
  color: #f8fbff;
  line-height: 100%;
  letter-spacing: 0;
}
.reserve__btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(255, 94, 58, 0.28);
}
.reserve__guest {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.guest__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.guest__span {
  font-size: 4rem;
  color: #ff5e3a;
  transition: color 0.3s ease, transform 0.3s var(--motion-ease);
}
.guest__text {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
  color: #0057FF;
  transition: color 0.3s ease, transform 0.3s var(--motion-ease);
}
.guest__title:hover .guest__text {
  color: #ff5e3a;
  transform: translateY(-3px);
}
.guest__title:hover .guest__span {
  color: #0057FF;
  transform: scale(0.9);
}
.guest__numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.guest__img {
  width: 692px;
  height: 354px;
  object-fit: cover;
  display: block;
  border-radius: 30px;
  transition: transform 0.65s var(--motion-ease);
}
.guest__number {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 692px;
  height: auto;
  min-height: 254px;
  border-radius: 30px;
  box-shadow: var(--card-shadow);
  background-color: #ffffff;
  overflow: hidden;
}
.guest__number:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}
.guest__number:hover .guest__img {
  transform: scale(1.04);
}
.guest__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 0 10px 30px;
}
.guest__text-1 {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #0b1120;
  line-height: 100%;
  letter-spacing: 0;
}
.guest__text-2 {
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #0057FF;
  line-height: 100%;
  letter-spacing: 0;
}
.reserve__field-card {
  min-width: 0;
  transition: transform 0.3s var(--motion-ease), background-color 0.3s ease, box-shadow 0.3s ease;
}
.reserve__field-card:focus-within {
  background-color: #edf7ff;
  box-shadow: inset 0 0 0 1px rgba(0, 87, 255, 0.18);
}
.reserve__field-card .card__text {
  flex: 1 1 auto;
  min-width: 0;
}
.reserve__field {
  width: 100%;
  min-width: 150px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  cursor: pointer;
  appearance: none;
}
.reserve__field::-webkit-calendar-picker-indicator {
  cursor: pointer;
}
.reserve__select {
  padding-right: 20px;
  background-image: linear-gradient(45deg, transparent 50%, #0057FF 50%), linear-gradient(135deg, #0057FF 50%, transparent 50%);
  background-position: calc(100% - 10px) 50%, calc(100% - 5px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.grabe {
  width: 100%;
  height: auto;
}
.grabe__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-block: clamp(16px, 6vw, 70px);
  align-items: center;
}
.grabe__card {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  border-radius: 24px;
  background-color: transparent;
}
.grabe__icon {
  width: 28px;
  height: 28px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s var(--motion-ease);
}
.grabe__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.grabe__text {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Unbounded', sans-serif;
  color: #0b1120;
  line-height: 100%;
  letter-spacing: 0;
  transition: color 0.3s ease;
}
.grabe__text-1 {
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #0057FF;
  line-height: 100%;
  letter-spacing: 0;
  transition: color 0.3s ease;
}
.grabe__card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.78);
}
.grabe__card:hover .grabe__icon {
  transform: translateY(-3px) scale(1.1);
}
.grabe__card:hover .grabe__text {
  color: #0057FF;
}
.grabe__card:hover .grabe__text-1 {
  color: #ff5e3a;
}
.feedback {
  width: 100%;
  height: auto;
  background: #0b1120;
}
.feedback__title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-block: clamp(16px, 7vw, 80px);
}
.feed__title {
  font-size: 3rem;
  font-weight: 500;
  font-family: 'Unbounded', sans-serif;
  color: #f8fbff;
  line-height: 100%;
  letter-spacing: 0;
}
.feed__title-1 {
  font-size: 1.5rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  color: #808080;
  line-height: 100%;
  letter-spacing: 0;
}
.feedback__number {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
.number {
  font-size: 3rem;
  font-weight: 500;
  font-family: 'Unbounded', sans-serif;
  color: #ff5e3a;
  line-height: 100%;
  letter-spacing: 0;
}
.feedback__button {
  width: 100%;
  max-width: 245px;
  height: auto;
  min-height: 43px;
  border: 2px solid #e4eef8;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 20px 10px 20px 10px;
}
.feedback__button:hover {
  transform: translateY(-5px);
}
.feedback__tel {
  color: #e4eef8;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
}
.gallery {
  width: 100%;
  height: auto;
}
.gallery__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-block: clamp(16px, 8vw, 80px);
}
.gallery__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.gallery__title {
  font-size: 3rem;
  font-weight: 600;
  font-family: 'Unbounded', sans-serif;
  color: #0b1120;
  line-height: 100%;
  letter-spacing: 0;
}
.gallery__button {
  width: auto;
  height: auto;
}
.gallery__btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: #ff5e3a;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  transition: all 0.3s ease;
}
.gallery__btn:hover {
  transform: translateX(5px);
  color: #0057FF;
}
.gallery__photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, clamp(240px, 22vw, 330px));
  gap: 20px;
  width: 100%;
}
.gallery__photo {
  min-width: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #e4eef8;
  box-shadow: 0 18px 50px rgba(11, 17, 32, 0.12);
}
.gallery__photo img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.45s var(--motion-ease);
}
.gallery__photo:hover img {
  transform: scale(1.04);
}
.gallery__photo:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}
.gallery__photo:nth-child(2) {
  grid-row: 1;
  grid-column: 2;
}
.gallery__photo:nth-child(3) {
  grid-column: 3;
  grid-row: 1 / 3;
}
.gallery__photo:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}
@media (max-width: 900px) {
  .gallery__photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(220px, 280px));
    gap: 16px;
  }
  .gallery__photo:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .gallery__photo:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .gallery__photo:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .gallery__photo:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 3;
  }
}
@media (max-width: 620px) {
  .gallery__content {
    gap: 28px;
  }
  .gallery__header {
    align-items: flex-start;
    gap: 16px;
  }
  .gallery__title {
    font-size: clamp(2rem, 11vw, 3rem);
  }
  .gallery__photos {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .gallery__photo {
    aspect-ratio: 4 / 3;
  }
}
body.gallery-modal-open {
  overflow: hidden;
}
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 46px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, 0.72);
  backdrop-filter: blur(12px);
}
.gallery-modal__dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.6vw, 28px);
  width: min(1180px, 100%);
  max-height: calc(100dvh - 32px);
  padding: clamp(18px, 3vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  background: #f8fbff;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s var(--motion-ease);
}
.gallery-modal.is-open .gallery-modal__dialog {
  transform: translateY(0) scale(1);
}
.gallery-modal__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.gallery-modal__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.gallery-modal__eyebrow {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #ff5e3a;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
}
.gallery-modal__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  font-family: 'Unbounded', sans-serif;
  color: #0b1120;
  line-height: 105%;
  letter-spacing: 0;
}
.gallery-modal__close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(11, 17, 32, 0.12);
  border-radius: 50%;
  background: #ffffff;
  color: #0b1120;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.gallery-modal__close:hover {
  transform: rotate(90deg);
  background: #ff5e3a;
  color: #ffffff;
}
.gallery-modal__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gallery-modal__tab {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(11, 17, 32, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #0b1120;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.gallery-modal__tab:hover {
  transform: translateY(-2px);
  border-color: #38b6ff;
}
.gallery-modal__tab.is-active {
  border-color: #0b1120;
  background: #0b1120;
  color: #ffffff;
}
.gallery-modal__slider {
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #0b1120;
}
.gallery-modal__slider .swiper-wrapper {
  align-items: stretch;
}
.gallery-modal__slide {
  position: relative;
  height: clamp(360px, 56vh, 620px);
  overflow: hidden;
  background: #0b1120;
}
.gallery-modal__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-modal__caption {
  position: absolute;
  left: clamp(14px, 2.5vw, 28px);
  bottom: clamp(14px, 2.5vw, 28px);
  max-width: min(520px, calc(100% - 28px));
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: rgba(11, 17, 32, 0.68);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  line-height: 125%;
  letter-spacing: 0;
}
.gallery-modal__nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(248, 251, 255, 0.88);
  color: #0b1120;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.gallery-modal__nav:hover {
  background: #38b6ff;
  color: #ffffff;
}
.gallery-modal__nav--prev {
  left: 18px;
}
.gallery-modal__nav--next {
  right: 18px;
}
.gallery-modal__pagination {
  bottom: 16px !important;
}
.gallery-modal__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.74);
  opacity: 1;
}
.gallery-modal__pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: #38b6ff;
}
.gallery-modal--static .gallery-modal__slider {
  overflow-y: auto;
  background: transparent;
}
.gallery-modal--static .gallery-modal__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-modal--static .gallery-modal__slide {
  height: auto;
  min-height: 260px;
  border-radius: 16px;
}
.gallery-modal--static .gallery-modal__nav,
.gallery-modal--static .gallery-modal__pagination {
  display: none;
}
@media (max-width: 760px) {
  .gallery-modal {
    padding: 10px;
  }
  .gallery-modal__dialog {
    max-height: calc(100dvh - 20px);
    border-radius: 20px;
  }
  .gallery-modal__top {
    align-items: center;
  }
  .gallery-modal__close {
    width: 42px;
    height: 42px;
  }
  .gallery-modal__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .gallery-modal__tab {
    flex: 0 0 auto;
  }
  .gallery-modal__slide {
    height: min(58vh, 430px);
  }
  .gallery-modal__nav {
    width: 42px;
    height: 42px;
    font-size: 2rem;
  }
  .gallery-modal__nav--prev {
    left: 10px;
  }
  .gallery-modal__nav--next {
    right: 10px;
  }
}
@media (max-width: 480px) {
  .gallery-modal {
    padding: 0;
  }
  .gallery-modal__dialog {
    width: 100%;
    max-height: 100dvh;
    min-height: 100dvh;
    border-radius: 0;
  }
  .gallery-modal__slide {
    height: 58vh;
  }
  .gallery-modal__caption {
    font-size: 0.95rem;
  }
}
.gallery__summer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 50px;
  height: auto;
  min-height: 128px;
  background: linear-gradient(to right, #1e63f5 0%, #1a53d8 35%, #163a92 60%, #101D4E 80%, #090c15 100%);
  border-radius: 30px;
}
.summer {
  font-size: 2.5rem;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  color: #e4eef8;
  line-height: 100%;
  letter-spacing: 0;
}
.summer__button {
  width: auto;
  height: auto;
}
.summer__btn {
  padding: 16px 32px 16px 32px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  background: #ff5e3a;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
}
.summer__btn:hover {
  transform: translateY(-5px);
}
.safety {
  width: 100%;
  height: auto;
}
.safety__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-block: clamp(16px, 7vw, 80px);
}
.safety__title {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #0057FF;
  line-height: 100%;
  letter-spacing: 0;
}
.safety__title-1 {
  font-size: 3rem;
  font-weight: 600;
  color: #0b1120;
  font-family: 'Unbounded', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}
.safety__blocks {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.safety__cards {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 680px;
  height: auto;
  gap: 67px;
  border-radius: 30px;
  padding: 20px 15px 20px 15px;
}
.safety__card {
  display: flex;
  align-items: center;
  gap: 12px;
}
.saf__icon {
  object-fit: cover;
  display: block;
}
.safety__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.saf__text {
  font-size: 1rem;
  font-weight: 500;
  color: #0b1120;
  font-family: 'Inter', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}
.saf__text-1 {
  font-size: 0.875rem;
  font-weight: 400;
  color: #808080;
  font-family: 'Inter', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}
.safety__numbers {
  width: 100%;
  max-width: 440px;
  height: auto;
  min-height: 596px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 99px;
  padding: 48px 48px 48px 48px;
  border-radius: 30px;
  box-shadow: var(--card-shadow);
}
.safety__number {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.saf__number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ff5e3a;
  font-family: 'Unbounded', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}
.saf__dsc {
  font-size: 2rem;
  font-weight: 500;
  color: #0b1120;
  font-family: 'Inter', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}
.search {
  width: 100%;
  height: auto;
  background: #0b1120;
}
.search__content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: clamp(24px, 4vw, 56px);
  padding-block: clamp(36px, 7vw, 90px);
}
.search__map {
  flex: 0 1 640px;
  min-width: min(100%, 520px);
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: #162033;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}
.search__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}
@media (max-width: 960px) {
  .search__content {
    flex-direction: column;
  }
  .search__map {
    flex-basis: auto;
    min-width: 100%;
    min-height: 360px;
  }
  .search__map iframe {
    min-height: 360px;
  }
}
.search__block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.search__title {
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter',sans-serif;
  color: #0057FF;
  line-height: 100%;
  letter-spacing: 0;
}
.search__title-1 {
  font-size: 3rem;
  font-weight: 600;
  color: #e4eef8;
  font-family: 'Unbounded', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}
.search__adress {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.adress-1 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.search__icon {
  object-fit: cover;
  display: block;
}
.adress {
  font-size: 1.125rem;
  font-weight: 500;
  color: #e4eef8;
  font-family: 'Inter', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}
.time__works {
  width: 100%;
  max-width: 520px;
  height: auto;
  min-height: 151px;
  border: 1px solid #808080;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 32px 32px 32px 32px;
  gap: 24px;
  display: flex;
  flex-direction: column;
}
.time {
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #64748b;
  line-height: 100%;
  letter-spacing: 0;
}
.time__works-1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.works__day {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}
.works__time {
  font-size: 1rem;
  font-weight: 600;
  color: #38b6ff;
  font-family: 'Unbounded', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}
.search__calling {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.call {
  font-size: 3rem;
  font-weight: 700;
  color: #e4eef8;
  font-family: 'Unbounded', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}
.search__call {
  width: 100%;
  max-width: 174px;
  height: auto;
  min-height: 55px;
  background: #ff5e3a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search__call:hover {
  transform: translateY(-5px);
}
.search__callings {
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  color: #e4eef8;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
}
.footer {
  width: 100%;
  height: auto;
  background: #0b1120;
}
.footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-block: clamp(16px, 6vw, 80px);
}
.footer__block-1 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__image {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__icon {
  display: block;
  object-fit: cover;
}
.footer__city {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Unbounded', sans-serif;
  color: #ffffff;
  line-height: 100%;
  letter-spacing: 0;
}
.footer__descriptions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__dsc {
  font-size: 1rem;
  font-weight: 400;
  color: #808080;
  font-family: 'Inter', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}
.footer__block-2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__block-2--title {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Unbounded', sans-serif;
  color: #e4eef8;
  line-height: 100%;
  letter-spacing: 0;
}
.footer__block-2--dsc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.block__2-dsc {
  font-size: 1rem;
  font-weight: 400;
  color: #808080;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  line-height: 100%;
  letter-spacing: 0;
  transition: all 0.3s ease;
}
.block__2-dsc:hover {
  color: #ffffff;
}
.footer__block-3 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__block-3--title {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Unbounded', sans-serif;
  color: #e4eef8;
  line-height: 100%;
  letter-spacing: 0;
}
.footer__block-3--dsc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.block__3-dsc {
  font-size: 1rem;
  font-weight: 400;
  color: #808080;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  line-height: 100%;
  letter-spacing: 0;
  transition: all 0.3s ease;
}
.block__3-dsc:hover {
  color: #ffffff;
}
.footer__block-4 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__block-4--title {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Unbounded', sans-serif;
  color: #e4eef8;
  line-height: 100%;
  letter-spacing: 0;
}
.footer__block-4--dsc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.block__4-dsc {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Unbounded', sans-serif;
  color: #e4eef8;
  line-height: 100%;
  letter-spacing: 0;
}
.block__5-dsc {
  font-size: 1rem;
  font-weight: 500;
  color: #808080;
  font-family: 'Inter', sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}
img {
  max-width: 100%;
}
button {
  max-width: 100%;
}
.hero__title,
.about__title-1,
.tickets__title-1,
.res__title-1,
.feed__title,
.gallery__title,
.summer,
.safety__title-1,
.search__title-1,
.call,
.number,
.footer__city,
.block__4-dsc {
  overflow-wrap: break-word;
}
.hero__btn-1,
.hero__btn-2,
.reserve__btn,
.feed__btn,
.summer__btn,
.search__btn {
  white-space: normal;
}
.aqua__img {
  width: 100%;
  height: 245px;
}
.about__cards {
  justify-items: stretch;
}
.about__card {
  max-width: none;
}
.tickets__cards {
  flex-wrap: wrap;
}
.ticket__card,
.ticket__card-blue {
  flex: 1 1 300px;
}
.card__point {
  flex-wrap: nowrap;
  align-items: flex-start;
}
.reserve__cards,
.feedback__number,
.gallery__summer,
.safety__blocks,
.footer__content {
  gap: 24px;
}
.footer__block-1 {
  flex: 1 1 320px;
  max-width: 470px;
}
.footer__block-2,
.footer__block-3,
.footer__block-4 {
  flex: 1 1 180px;
}
@media (min-width: 1441px) {
  .container {
    max-width: 1520px;
    padding-inline: 32px;
  }
  .hero__content {
    max-width: 760px;
  }
  .hero__title {
    font-size: 5rem;
  }
  .tickets__cards {
    gap: 32px;
  }
}
@media (max-width: 1280px) {
  .container {
    max-width: 1160px;
    padding-inline: 24px;
  }
  .header__content {
    justify-content: space-between;
    gap: 24px;
  }
  .header__navigation {
    justify-content: flex-end;
    gap: 18px 22px;
  }
  .head__nav {
    font-size: 1rem;
  }
  .hero__content {
    max-width: 620px;
    gap: 38px;
  }
  .hero__title {
    font-size: 3.85rem;
  }
  .tickets__cards {
    gap: 24px;
  }
  .reserve__cards {
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .reserve__card {
    flex: 1 1 210px;
    border-right: 0;
    border-radius: 20px;
    padding: 12px;
    background: #f8fbff;
  }
  .reserve__button {
    flex: 1 1 220px;
    display: flex;
  }
  .reserve__btn {
    width: 100%;
  }
  .guest__img {
    width: 100%;
    height: 300px;
  }
  .safety__blocks {
    align-items: stretch;
    justify-content: space-between;
  }
  .safety__numbers {
    min-height: auto;
    gap: 52px;
  }
  .footer__content {
    justify-content: flex-start;
    gap: 32px 24px;
  }
}
@media (max-width: 1024px) {
  .header__content {
    justify-content: center;
  }
  .header__navigation {
    justify-content: center;
    gap: 14px 22px;
  }
  .hero__content {
    max-width: 760px;
    margin-inline: auto;
    align-items: center;
    text-align: center;
  }
  .hero__title {
    font-size: 3.2rem;
    line-height: 1.08;
  }
  .hero__descriptions-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
  }
  .hero__cards {
    justify-content: center;
    gap: 12px 18px;
  }
  .hero__location {
    margin-inline: auto;
  }
  .advantages__content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .advantages__card {
    text-align: center;
  }
  .about__title-1,
  .tickets__title-1,
  .res__title-1,
  .feed__title,
  .gallery__title,
  .safety__title-1,
  .search__title-1 {
    font-size: 2.45rem;
    line-height: 1.12;
  }
  .about__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ticket__card,
  .ticket__card-blue {
    min-height: auto;
    max-width: none;
  }
  .reserve__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .reserve__button {
    width: 100%;
  }
  .guest__title {
    justify-content: center;
    gap: 16px;
  }
  .guest__numbers {
    grid-template-columns: 1fr;
  }
  .guest__number {
    max-width: none;
  }
  .guest__img {
    height: 320px;
  }
  .grabe__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .grabe__card {
    align-items: flex-start;
    padding: 16px;
  }
  .gallery__summer {
    padding: 28px 32px;
  }
  .summer {
    font-size: 2rem;
    line-height: 1.12;
  }
  .safety__blocks {
    flex-direction: column;
  }
  .safety__cards {
    max-width: none;
    gap: 28px;
  }
  .safety__numbers {
    max-width: none;
    flex-direction: row;
    justify-content: space-between;
    padding: 32px;
    gap: 24px;
  }
  .saf__number {
    font-size: 2.8rem;
  }
  .saf__dsc {
    font-size: 1.35rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding-inline: 20px;
  }
  .header::before {
    inset: -18px;
    background-position: center top;
  }
  .header__content {
    padding-block: 16px;
  }
  .head__logo {
    width: 96px;
  }
  .header__navigation {
    gap: 12px 18px;
  }
  .head__nav {
    font-size: 0.95rem;
  }
  .hero {
    padding-block: 36px 50px;
  }
  .hero__content {
    gap: 28px;
  }
  .hero__title {
    font-size: 2.45rem;
  }
  .hero__descriptions-buttons {
    width: 100%;
    padding: 14px;
    border-radius: 18px;
  }
  .hero__dot {
    display: none;
  }
  .hero__buttons {
    width: 100%;
    flex-direction: column;
    gap: 14px;
  }
  .hero__btn-1,
  .hero__btn-2 {
    width: 100%;
    padding: 18px 20px;
  }
  .hero__cards {
    width: 100%;
    padding: 12px;
  }
  .card__dsc,
  .location {
    font-size: 0.95rem;
  }
  .card__num {
    font-size: 1.55rem;
  }
  .card__dsc-1 {
    font-size: 1rem;
    line-height: 1.25;
  }
  .about__title-1,
  .tickets__title-1,
  .res__title-1,
  .feed__title,
  .gallery__title,
  .safety__title-1,
  .search__title-1 {
    font-size: 2rem;
    line-height: 1.15;
  }
  .about__cards {
    grid-template-columns: 1fr;
  }
  .about__card {
    min-height: auto;
  }
  .aqua__img {
    height: 220px;
  }
  .card__content {
    padding: 0 18px 22px;
  }
  .tickets__cards {
    flex-direction: column;
  }
  .ticket__card,
  .ticket__card-blue {
    flex-basis: auto;
    padding: 28px;
    border-radius: 26px;
  }
  .card__content-1 {
    gap: 24px;
  }
  .card__points {
    gap: 18px;
  }
  .reserve__title {
    align-items: flex-start;
  }
  .res__title-2 {
    line-height: 1.45;
  }
  .reserve__cards {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 26px;
  }
  .card__text {
    padding: 0;
  }
  .guest__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .guest__span {
    display: none;
  }
  .guest__img {
    height: 240px;
  }
  .guest__content {
    padding: 0 18px 18px;
  }
  .grabe__cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .grabe__card {
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(11, 17, 32, 0.1);
  }
  .feedback__title,
  .gallery__header {
    text-align: center;
  }
  .feed__title-1 {
    font-size: 1.1rem;
    line-height: 1.4;
    text-align: center;
  }
  .feedback__number {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
  .number,
  .call {
    font-size: 2.2rem;
    text-align: center;
  }
  .feed__btn,
  .search__btn {
    width: 100%;
  }
  .gallery__header {
    justify-content: center;
  }
  .gallery__summer {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 24px;
    gap: 16px;
  }
  .summer {
    font-size: 1.8rem;
  }
  .summer__button,
  .summer__btn {
    width: 100%;
  }
  .safety__card {
    align-items: flex-start;
  }
  .safety__numbers {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }
  .saf__number {
    font-size: 2.4rem;
  }
  .saf__dsc {
    font-size: 1.2rem;
    line-height: 1.25;
  }
  .search__map,
  .search__map iframe {
    min-height: 300px;
  }
  .time__works {
    padding: 24px;
  }
  .footer__content {
    flex-direction: column;
  }
  .footer__block-1,
  .footer__block-2,
  .footer__block-3,
  .footer__block-4 {
    max-width: none;
  }
  .block__4-dsc {
    font-size: 1.35rem;
  }
}
@media (max-width: 560px) {
  .container {
    padding-inline: 14px;
  }
  .header__navigation {
    gap: 10px 14px;
  }
  .head__nav {
    font-size: 0.88rem;
    line-height: 1.2;
  }
  .hero__title {
    font-size: 2.05rem;
  }
  .hero__cards {
    flex-direction: column;
    align-items: stretch;
  }
  .adress__card,
  .adress_card {
    justify-content: center;
  }
  .hero__location {
    max-width: none;
    padding-inline: 12px;
    text-align: center;
  }
  .advantages__content {
    grid-template-columns: 1fr;
  }
  .ticket__card,
  .ticket__card-blue {
    padding: 22px;
  }
  .card__name,
  .card__name-blue,
  .strong__sale,
  .strong__sale-blue {
    font-size: 1.6rem;
    line-height: 1.12;
  }
  .reserve__card {
    align-items: flex-start;
  }
  .guest__img {
    height: 205px;
  }
  .grabe__text {
    font-size: 1.15rem;
    line-height: 1.2;
  }
  .grabe__text-1 {
    font-size: 0.95rem;
    line-height: 1.35;
  }
  .number,
  .call {
    font-size: 2rem;
  }
  .search__map,
  .search__map iframe {
    min-height: 260px;
  }
  .footer__city {
    font-size: 1.2rem;
  }
}
@media (max-width: 380px) {
  .container {
    padding-inline: 12px;
  }
  .header__navigation {
    gap: 8px 12px;
  }
  .hero__title {
    font-size: 1.75rem;
  }
  .hero__btn-1,
  .hero__btn-2,
  .reserve__btn,
  .feed__btn,
  .summer__btn,
  .search__btn {
    padding: 15px 16px;
    font-size: 0.95rem;
  }
  .about__title-1,
  .tickets__title-1,
  .res__title-1,
  .feed__title,
  .gallery__title,
  .safety__title-1,
  .search__title-1 {
    font-size: 1.75rem;
  }
  .ticket__card,
  .ticket__card-blue,
  .reserve__cards,
  .time__works,
  .safety__numbers,
  .gallery__summer {
    border-radius: 22px;
  }
  .card__point {
    gap: 8px;
  }
  .point__text,
  .point__text-blue {
    line-height: 1.25;
  }
  .guest__img {
    height: 180px;
  }
  .number,
  .call {
    font-size: 1.75rem;
  }
  .footer__image {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 1025px) and (max-height: 760px) {
  .hero {
    padding-block: 28px 44px;
  }
  .hero__content {
    gap: 26px;
  }
  .hero__title {
    font-size: 3.35rem;
  }
  .hero__btn-1,
  .hero__btn-2 {
    padding: 18px 24px;
  }
}

@media (max-width: 768px) {
  .reserve__field {
    min-width: 0;
  }
}
