@import url(https://fonts.googleapis.com/css?family=Exo:regular);
@import url(https://fonts.googleapis.com/css?family=Bakbak+One:regular);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrapper {
  font-family: "Exo", sans-serif;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
  position: relative;
  overflow: hidden;
}

.coming-soon {
  --white-color: #fff;

  position: relative;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;

  color: var(--white-color) !important;
}

.coming-soon a {
  color: inherit;
}

.coming-soon__header {
  display: flex;
  align-items: center;
  height: var(--header-height);
  width: 100%;
  padding: 1rem 5rem;

  background-color: var(--white-color);
}

.coming-soon__inner {
  position: relative;

  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}

.coming-soon__bg-wrapper {
  position: absolute;
  top: 0;
  left: 50%;

  transform: translateX(-50%);

  pointer-events: none;
}

.coming-soon__bg-wrapper * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coming-soon__bg-image {
  z-index: 1;

  mix-blend-mode: multiply;
}

.coming-soon__bg-grid {
  z-index: 2;

  mix-blend-mode: screen;
}

.coming-soon__bg-lottie {
  position: absolute;

  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.coming-soon__container {
  position: relative;
  z-index: 4;

  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 67.75rem;
  width: 100%;
  margin: 0 auto;
}

.coming-soon__content {
  max-width: 52.5rem;
  margin-inline: auto;
  margin-top: auto;
  margin-bottom: auto;

  text-align: center;
}

.coming-soon__title {
  font-family: "Bakbak One", sans-serif;
  font-weight: 400;
  color: var(--white-color) !important;
}

.coming-soon__description {
  font-size: 1rem;
  line-height: 1.875;
}

.coming-soon__description:not(:first-child) {
  margin-top: 2.5rem;
}

.coming-soon__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;

  font-size: 1rem;
  line-height: 1.875;
}

.coming-soon__social li {
  list-style: none;
}

.coming-soon__social a {
  text-decoration-color: transparent;

  transition: text-decoration-color 0.2s ease;
}

@media (any-hover: hover) {
  .coming-soon__social a:hover {
    text-decoration-color: inherit;
  }
}

.coming-soon__social a:focus-visible {
  text-decoration-color: inherit;
}

.coming-soon__logo-link {
  display: block;
  aspect-ratio: 286/55;
}

.coming-soon__logo {
  display: block;
  width: 100%;
  height: 100%;
}

.coming-soon__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.coming-soon__footer {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;

  text-align: center;
}

@media screen and (min-width: 1920px) {
  html {
    font-size: calc(100vw / 1920 * 16);
  }
}

@media screen and (min-width: 768px) {
  :root {
    --header-height: 120px;
  }

  .coming-soon__logo-link {
    width: 286px;
  }

  .coming-soon__bg-wrapper {
    width: 120rem;
    height: max(calc(100vh - var(--header-height)), 60.0625rem);
  }

  .coming-soon__bg-grid {
    padding: 5rem 2.375rem 8.75rem 2rem;
  }

  .coming-soon__bg-lottie > canvas {
    top: 31.945%;
    left: 5.625%;

    width: 82.08% !important;
    height: 49.22% !important;
  }

  .coming-soon__container {
    row-gap: 5.625rem;
    padding-block: 1.25rem 3.375rem;
  }

  .coming-soon__inner {
    padding: 0 5rem;
  }

  .coming-soon__title {
    font-size: 4rem;
    line-height: 1.22;
  }

  .coming-soon__description {
    display: none;
  }

  .coming-soon__copyright {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}

@media screen and (max-width: 767.5px) {
  :root {
    --header-height: 4rem;
  }

  .coming-soon__header {
    padding-inline: 1.5rem;
  }

  .coming-soon__logo-link {
    width: 10.125rem;
  }

  .coming-soon__bg-wrapper {
    left: 0;

    width: 73.6875rem;
    height: max(calc(100vh - var(--header-height)), 49.375rem);

    transform: translate(0);
  }

  .coming-soon__bg-grid {
    top: 2rem;
    left: -8.375rem;

    width: 102.625rem;
    height: max(calc(100vh - var(--header-height) - 8.25rem), 41.125rem);
  }

  .coming-soon__bg-lottie > canvas {
    top: 25.2%;
    left: min(-26.625rem, -50vh);

    width: 136.3% !important;
    height: 83.3% !important;
  }

  .coming-soon__container {
    row-gap: 0.625rem;
    padding-block: 1.25rem 1.375rem;
  }

  .coming-soon__inner {
    padding: 0 1.5rem;
  }

  .coming-soon__title {
    font-size: 2rem;
    line-height: 1.28;
  }

  .coming-soon__copyright {
    font-size: 10px;
    line-height: 1.8;
  }
}
