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

html {
  font-size: 62.5%; }

body {
  background-color: #000000;
  box-sizing: border-box; }

main {
  margin: auto; }

a,
a:active,
a:hover {
  text-decoration: none; }

.heading-1 {
  font: 600 96px/normal "sf-pro-display-regular", sans-serif, open-sans;
  text-transform: none;
  color: #ffffff; }

.heading-2 {
  font: 600 64px/normal "sf-pro-display-regular", sans-serif, open-sans;
  text-transform: none;
  color: #ffffff; }
  @media (max-width: 56.25em) {
    .heading-2 {
      font-size: 32px; } }

.heading-3 {
  font: 400 24px/normal "sf-pro-display-regular", sans-serif, open-sans;
  text-transform: none;
  color: #ffffff; }

.heading-3-sbold {
  font: 600 24px/normal "sf-pro-display-regular", sans-serif, open-sans;
  text-transform: none;
  color: #ffffff; }

.paragraph {
  font: 500 16px/10px "sf-pro-display-regular", sans-serif, open-sans;
  text-transform: none;
  color: #ffffff; }

.nav-font {
  font: 600 18px/10px "sf-pro-display-regular", sans-serif, open-sans;
  text-transform: none;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  padding-bottom: 1px; }
  .nav-font:hover {
    border-bottom: 1px solid; }

.btn-txt {
  font: 600 12px/100% "sf-pro-display-regular", sans-serif, open-sans;
  text-transform: none;
  color: #ffffff; }

.close-icon {
  background-image: url("/src/img/icons/close-icon.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 30px;
  width: 30px; }

@font-face {
  font-family: "sf-pro-display-regular";
  src: url("/src/fonts/sf_pro_display/SF-Pro-Display-Regular.woff") format("woff"); }

.btn-num {
  display: block;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer; }
  .btn-num:focus {
    outline: none; }

.btn {
  display: block;
  padding: 15px;
  width: 168px;
  border: 1px solid #ffffff;
  background: none;
  cursor: pointer;
  text-align: center; }
  .btn:focus {
    outline: none; }

.visible {
  visibility: visible; }

.close-button {
  background-image: url("/src/img/icons/close-icon.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 30px;
  position: absolute;
  top: 10px;
  right: 50px;
  width: 50px;
  height: 50px;
  background-color: black;
  opacity: 0.8;
  border-radius: 5px;
  cursor: pointer; }
  @media (max-width: 56.25em) {
    .close-button {
      right: 10px;
      opacity: 1; } }

.modal {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center; }
  .modal iframe {
    width: 100%;
    height: 100%; }

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 10;
  align-items: center;
  height: 10vh;
  background-color: #000000; }
  .header__nav {
    position: relative; }
    .header__nav .burger {
      display: none; }
      @media (max-width: 56.25em) {
        .header__nav .burger {
          display: block;
          background-image: url("/src/img/icons/burger-white.png");
          background-position: right top;
          background-repeat: no-repeat;
          background-size: 30px 30px;
          height: 30px;
          width: 30px; } }
    .header__nav .close-icon {
      display: none; }
      @media (max-width: 56.25em) {
        .header__nav .close-icon {
          background-position: right top;
          position: absolute;
          top: 0;
          right: 0;
          z-index: 101; } }
    .header__nav ul {
      float: right;
      display: flex;
      list-style: none; }
      @media (max-width: 56.25em) {
        .header__nav ul {
          display: none;
          flex-direction: column;
          position: fixed;
          width: 100vw;
          height: 100vh;
          z-index: 100;
          left: 0;
          top: 0;
          right: 0;
          bottom: 0;
          background-color: black;
          justify-content: center; } }
      .header__nav ul li {
        margin-left: 20px; }
        @media (max-width: 56.25em) {
          .header__nav ul li {
            margin-bottom: 50px;
            text-align: center; } }
        .header__nav ul li > a {
          font-size: 24px; }

.logo-box {
  margin-top: 7px;
  z-index: 200; }
  .logo-box img {
    height: 40px; }

.index {
  width: 100vw;
  height: 100vh;
  position: relative; }
  .index .swiper-container {
    display: flex;
    align-items: center;
    justify-content: center; }
  .index__carousel-track {
    width: 100vw;
    height: 100vh;
    display: flex; }
    @media (max-width: 56.25em) {
      .index__carousel-track {
        height: 60vh !important; } }
    .index__carousel-track__slide {
      display: flex;
      align-items: center;
      justify-content: center; }
      .index__carousel-track__slide .heading-2 {
        position: absolute;
        padding: 20px; }
      .index__carousel-track__slide .video-title {
        text-align: center; }
      .index__carousel-track__slide--video {
        width: 100%; }
        @media (max-width: 56.25em) {
          .index__carousel-track__slide--video {
            object-fit: cover; } }
  .index__video-nav {
    position: fixed;
    z-index: 10;
    bottom: 0;
    width: 100%;
    display: flex;
    height: 10vh;
    background-color: black; }

.wrapper-main {
  padding: 0 10%; }
  @media (max-width: 56.25em) {
    .wrapper-main {
      padding: 0 10px; } }

.swiper-container {
  height: 100vh; }

.swiper-slide {
  width: 100%;
  height: 100%;
  cursor: pointer; }

img.swiper-pagination-bullet {
  width: 32px;
  height: 32px;
  align-self: center;
  margin-right: 40px;
  margin-top: 15px;
  cursor: pointer;
  border-radius: 0;
  background-color: transparent; }

img.swiper-pagination-bullet-active {
  border-radius: 0;
  color: #fff;
  background: transparent; }
  img.swiper-pagination-bullet-active:active, img.swiper-pagination-bullet-active:hover, img.swiper-pagination-bullet-active:focus {
    border: none;
    outline: none; }

.visible-flex {
  display: flex !important; }

.gallery {
  display: grid;
  width: 100%;
  margin: auto;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 0;
  margin-top: 10vh; }
  @media (max-width: 56.25em) {
    .gallery {
      grid-template-columns: 1fr; } }
  .gallery__card {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; }
    .gallery__card .animated {
      background-repeat: no-repeat;
      background-size: cover; }
    .gallery__card .static {
      width: 100%;
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center; }
      .gallery__card .static:hover {
        opacity: 0; }
      .gallery__card .static h2 {
        position: absolute;
        color: #ffffff;
        font-size: 6rem;
        line-height: 1;
        font-weight: normal;
        letter-spacing: 0.1rem;
        padding: 20px;
        text-align: center; }
        @media (max-width: 56.25em) {
          .gallery__card .static h2 {
            font-size: 3rem;
            font-weight: 100; } }
    .gallery__card img {
      width: 100%;
      height: auto;
      background-repeat: no-repeat;
      background-size: cover; }

.contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100vw;
  height: 100vh; }
  @media (max-width: 56.25em) {
    .contacts {
      height: auto; } }
  .contacts h1 {
    color: #bdbdbd;
    letter-spacing: 10px;
    margin-bottom: 120px; }
    @media (max-width: 56.25em) {
      .contacts h1 {
        margin: 110px 0 50px 0; } }
  .contacts div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; }
    @media (max-width: 56.25em) {
      .contacts div {
        display: flex;
        flex-direction: column; } }
    .contacts div > div {
      margin-bottom: 40px; }
      @media (max-width: 56.25em) {
        .contacts div > div p,
        .contacts div > div a {
          line-height: 100%; } }
    .contacts div .left-container {
      display: flex;
      flex-direction: column;
      justify-content: space-between; }
      .contacts div .left-container h3 {
        color: #ffffff; }
    .contacts div .center-container {
      display: flex;
      flex-direction: column; }
      .contacts div .center-container a:hover {
        border-bottom: 1px solid #ffffff; }
    .contacts div .right-container {
      display: flex;
      flex-direction: column; }
      .contacts div .right-container a {
        color: #bdbdbd;
        line-height: 50%; }
        .contacts div .right-container a:hover {
          color: #ffffff; }

.under-construction {
  width: 100vw;
  height: 100vh;
  background-image: url("/src/img/temp/under-const-bg.jpg");
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center; }
  .under-construction img {
    width: 300px;
    height: auto; }
  .under-construction div {
    padding: 50px 80px;
    background-color: black;
    opacity: 0.6;
    text-align: center; }
    .under-construction div h1 {
      color: white;
      margin-bottom: 20px; }
    .under-construction div a {
      font-size: 48px;
      color: white;
      text-decoration: underline; }
