/* Base */
html {
  box-sizing: border-box;
  height: 100%;
}

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

body {
  min-height: 100%;
}

ul,
ol {
  padding: 0;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: transparent;
}

a {
  text-decoration: none;
  color: inherit;
  outline: transparent;
}

button {
  padding: 0;
  background: none;
  cursor: pointer;
  outline: transparent;
}

address,
cite {
  font-style: normal;
}

legend {
  display: table;
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
}
legend + * {
  clear: both;
}

fieldset {
  border: 0;
  padding: 0.01em 0 0 0;
  margin: 0;
  min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: table-cell;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type='number'] {
  -moz-appearance: textfield;
}

a,
button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@font-face {
  font-family: 'Manrope';
  font-display: swap;
  src: url('../fonts/Manrope-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Manrope';
  font-display: swap;
  src: url('../fonts/Manrope-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Manrope';
  font-display: swap;
  src: url('../fonts/Manrope-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Manrope';
  font-display: swap;
  src: url('../fonts/Manrope-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Onest';
  font-display: swap;
  src: url('../fonts/Onest-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
:root {
  --font-main: 'Manrope', sans-serif;
  --font-second: 'Onest', sans-serif;
  --page-bg: var(--dark-color);
  --text-color: var(--light-color);
  --font-size: 16px;
  --light-color: #fff;
  --light-color-80: rgba(255, 255, 255, 0.8);
  --light-color-70: rgba(255, 255, 255, 0.7);
  --light-color-50: rgba(255, 255, 255, 0.5);
  --light-color-40: rgba(255, 255, 255, 0.4);
  --light-color-15: rgba(255, 255, 255, 0.15);
  --light-color-10: rgba(255, 255, 255, 0.1);
  --dark-color: #000;
  --accent-color: #ffd65a;
  --container: 375px;
  --container-padding: 40px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --transition: 0.2s ease-in-out;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

.no-scroll {
  overflow-y: hidden !important;
}

.d-none {
  display: none !important;
}

.container {
  margin-inline: auto;
  padding-inline: var(--container-padding);
  max-width: var(--container);
  width: 100%;
}

.container-social {
  overflow-x: auto;
  scrollbar-width: none;
  padding-left: 32px;
}
@media only screen and (min-width: 361px) and (max-width: 534px) {
  .container-social {
    padding-left: calc(32px + (100vw - 360px) * 0.54);
  }
}
@media (min-width: 480px) {
  .container-social {
    padding-left: 0;
  }
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  display: flex;
  flex-direction: column;
  font-family: var(--font-main);
  background-color: var(--page-bg);
  color: var(--text-color);
  font-size: var(--font-size);
  overflow-x: hidden;
}

.main {
  flex-grow: 1;
}

.arrow {
  transition: var(--transition);
}

.videos {
  display: inline-block;
  position: relative;
  height: 220px;
}
.videos::before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 100px;
  background: linear-gradient(135deg, #ffe38f 0%, #edbc26 100%);
  transition: width var(--transition), height var(--transition);
}
.videos::after {
  content: '';
  display: block;
  position: absolute;
  width: 10px;
  height: 12px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url('./../img/play.svg');
  background-repeat: no-repeat;
}
@media (any-hover: hover) {
  .videos:hover .videos__play {
    width: 58px;
    height: 58px;
  }
  .videos:hover::before {
    width: 58px;
    height: 58px;
  }
}
.videos img {
  border-radius: var(--radius-lg);
}

/* Components */
.btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: 16px;
  color: var(--light-color-80);
  border-radius: var(--radius-sm);
  height: 75px;
  background-color: var(--light-color-10);
  padding: 10px 30px 10px 25px;
  letter-spacing: -0.05em;
}
@media (any-hover: hover) {
  .btn:hover .arrow {
    transform: translateX(3px);
  }
}
.btn--accent {
  background: linear-gradient(135deg, #ffe38f 0%, #edbc26 100%);
  color: var(--dark-color);
  letter-spacing: -0.04em;
  transition: background-color var(--transition);
}
.btn .arrow {
  margin-left: auto;
}

.social {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (min-width: 480px) {
  .social {
    justify-content: center;
  }
}
.social__item:last-child {
  padding-right: calc(32px + (100vw - 360px) * 0.54);
}
@media (min-width: 480px) {
  .social__item:last-child {
    padding-right: 0;
  }
}
.social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 67px;
  height: 67px;
  border-radius: 100px;
  border: 1px solid var(--light-color-10);
  transition: background-color var(--transition), border-color var(--transition);
}
@media (any-hover: hover) {
  .social__link:hover {
    background-color: var(--light-color-10);
    border-color: transparent;
  }
}

/* Blocks */
.hero__top {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 480px;
}
@media (min-width: 480px) {
  .hero__top {
    max-width: 668px;
  }
}
.hero__top::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  bottom: -1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 54%, rgb(0, 0, 0) 100%);
}
.hero__img-wrap {
  position: relative;
}
@media (min-width: 480px) {
  .hero__img-wrap::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: -1px;
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 68%, rgb(0, 0, 0) 100%);
  }
  .hero__img-wrap::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    right: -1px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 65%, rgb(0, 0, 0) 100% 100%);
  }
}
.hero__img {
  display: none;
}
@media (min-width: 480px) {
  .hero__img {
    display: block;
  }
}
.hero__video {
  width: 100%;
}
@media (min-width: 480px) {
  .hero__video {
    display: none;
  }
}
.hero__content {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}
.hero__title {
  position: relative;
  font-family: var(--font-second);
  font-weight: 500;
  color: var(--light-color);
  font-size: 52px;
  line-height: 110%;
  letter-spacing: -0.06em;
  margin-bottom: -114px;
  transform: translateY(-134px);
  z-index: 2;
}
.hero__descr {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  margin-bottom: 50px;
}
.hero__descr-1 {
  font-weight: 700;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: -0.07em;
  color: var(--light-color-70);
}
.hero__descr-2 {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.03em;
  color: var(--light-color-50);
}
.hero__links {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.contacts {
  margin-bottom: 60px;
}

.booking {
  margin-bottom: 60px;
}
.booking__inner {
  border-radius: var(--radius-sm);
  padding: 50px 40px 40px;
  background-color: var(--light-color-10);
}
.booking__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 110%;
  margin-bottom: 20px;
  letter-spacing: -0.06em;
}
.booking__descr {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.03em;
  color: var(--light-color-80);
  opacity: 0.5;
  margin-bottom: 30px;
}
.booking__item:not(:last-child) {
  border-bottom: 1px solid var(--light-color-10);
}
.booking__link {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  font-weight: 600;
  letter-spacing: -0.05em;
}
@media (any-hover: hover) {
  .booking__link:hover svg {
    transform: translateX(3px);
  }
}
.booking__link svg {
  transition: var(--transition);
}

.partners {
  margin-bottom: 60px;
  text-align: center;
}
@media (min-width: 768px) {
  .partners__container {
    max-width: 680px;
  }
}
.partners__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 110%;
  color: var(--light-color);
  margin-bottom: 20px;
  letter-spacing: -0.06em;
}
.partners__descr {
  max-width: 295px;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  margin-inline: auto;
  color: var(--light-color-80);
  margin-bottom: 44px;
  letter-spacing: -0.03em;
}
.partners__list {
  display: flex;
  flex-wrap: wrap;
}
.partners__item {
  width: 50%;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--light-color-15);
}
.partners__item:nth-child(7),
.partners__item:nth-child(8) {
  border-bottom: none;
}
.partners__item:nth-child(odd) {
  border-right: 1px solid var(--light-color-15);
}
@media (min-width: 768px) {
  .partners__item {
    width: 25%;
  }
  .partners__item:nth-child(5),
  .partners__item:nth-child(6) {
    border-bottom: none;
  }
  .partners__item:nth-child(2),
  .partners__item:nth-child(6) {
    border-right: 1px solid var(--light-color-15);
  }
}

.video {
  position: relative;
  overflow: hidden;
}
.video__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 110%;
  letter-spacing: -0.06em;
  text-align: center;
  color: var(--light-color);
  margin-bottom: 30px;
}
.video__slider {
  max-width: 295px;
  overflow: visible;
}
.video__slider .swiper-slide {
  height: 220px;
}
@media (min-width: 480px) {
  .video__slider {
    overflow: hidden;
  }
}
.video .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
}
.video .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  opacity: 1;
  background: #2a2c44;
}
.video .swiper-pagination-bullet-active {
  width: 8px;
  height: 8px;
  background: var(--light-color);
}

.lang {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
  padding: 40px 0 37px;
  border-bottom: 1px solid var(--light-color-10);
}
.lang__icon {
  transform: translateY(1px);
}
.lang__list {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.lang__item {
  position: relative;
}
.lang__item:not(:last-child) {
  padding-right: 15px;
}
.lang__item:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 12px;
  width: 3px;
  height: 3px;
  border-radius: 50px;
  background-color: var(--light-color-40);
}
.lang__btn {
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--light-color-40);
}
.lang__btn.active {
  color: var(--light-color);
}

.footer__copyright {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.04em;
  text-align: center;
  color: rgba(255, 255, 255, 0.23);
  padding: 40px 0 80px;
}
