* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: #212a31;
}

.container {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: url(./../images/hero-background.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

.hero-content-container {
  display: grid;
  margin-top: 3rem;
  width: 50vw;
  margin-left: 3rem;
}

.title-container {
  display: flex;
  gap: 1rem;
  text-align: left;
  margin-bottom: 2rem;
}

.logo {
  height: 4rem;
}

.title {
  font-size: 48px;
  font-weight: 900;
  align-self: flex-end;
  position: relative;
  top: 0.6rem;
}

.contact-container {
  margin-bottom: 0.5rem;
}

p {
  font-size: 18px;
}

span {
  font-size: 22px;
  font-weight: 700;
}

.sub-title {
  background: url(./../images/coming.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 2rem 4rem;
  text-align: center;
  width: fit-content;
  margin: 1rem 3rem;
}

.sub-title h2 {
  color: white;
}

ul {
  margin-left: 2rem;
  margin-top: 1rem;
}

li {
  display: inline-block;
  font-size: 16px;
  list-style-type: none;
  padding: 0.5rem;
  text-align: center;
  text-transform: uppercase;
}

li span {
  display: grid;
  align-items: center;
  font-size: 20px;
  text-align: center;
  background-color: rgba(252, 144, 3, 0.5);
  padding: 1rem;
  width: clamp(2rem, 3rem, 4rem);
}

.emoji {
  display: none;
  padding: 1rem;
}

.emoji span {
  font-size: 4rem;
  padding: 0 0.5rem;
}

.preloader-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  position: absolute;
  background-color: #ffff;
  z-index: 1;
  justify-items: center;
  align-items: center;
}
.preloader-container img {
  height: 15rem;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loading-dots {
  text-align: center;
  z-index: 5;
  align-self: flex-start;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dot {
  display: inline;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  position: relative;
  top: -3rem;
  color: rgb(236, 154, 0);
  font-size: 5.5em;
  opacity: 0;
  animation: showHideDot 2.5s ease-in-out infinite;
}
.one {
  animation-delay: 0.15s;
}
.two {
  animation-delay: 0.3s;
}
.three {
  animation-delay: 0.45s;
}

.four {
  animation-delay: 0.6s;
}

@keyframes showHideDot {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media screen and (min-width: 1030px) {
  .hero-content-container {
    margin-left: 6rem;
  }

  .title-container {
    margin-bottom: 2rem;
  }

  .title-container h1 {
    font-size: 60px;
  }

  .sub-title {
    padding: 2rem 6rem;
  }

  ul {
    margin-left: 6rem;
  }

  li {
    font-size: 20px;
  }

  li span {
    font-size: 30px;
    width: clamp(3rem, 4rem, 5rem);
  }
}

@media screen and (min-width: 1400px) {
  .logo {
    height: 7rem;
  }

  .title {
    font-size: 56px;
    top: 1.3rem;
  }

  p {
    font-size: 20px;
  }

  span {
    font-size: 24px;
  }

  .sub-title {
    padding: 2rem 4rem;
    margin: 2rem 6rem;
  }
}

@media screen and (max-width: 1000px) {
  .container {
    background: url(./../images/hero-background-tab.svg);
    background-position: bottom;
    background-repeat: no-repeat;
  }

  .hero-content-container {
    display: grid;
    width: 100vw;
    margin: 0rem;
    margin-top: 6rem;
  }

  .title-container {
    flex-direction: column;
    margin-bottom: 1rem;
  }

  .logo {
    height: 8rem;
  }

  .title {
    font-size: 52px;
    align-self: center;
    position: relative;
    top: 0rem;
  }

  .contact-container {
    text-align: center;
  }

  .sub-title {
    justify-self: center;
  }

  ul {
    margin: 0rem;
  }

  li {
    font-size: 16px;
    padding: 0.5rem;
  }

  li span {
    font-size: 20px;
    height: 2rem;
  }

  .timer-container {
    display: grid;
  }

  #countdown {
    justify-self: center;
  }

  .preloader-container img {
    height: 10rem;
  }
}

@media screen and (max-width: 560px) {
  .container {
    background: url(./../images/hero-background-mob.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .sub-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -75%);
  }

  .hero-content-container {
    margin-top: 2rem;
  }

  .logo {
    height: 5rem;
  }

  .title {
    font-size: 32px;
  }

  p {
    font-size: 14px;
  }

  span {
    font-size: 18px;
    font-weight: 700;
  }

  .sub-title {
    padding: 1rem 2rem;
    margin: 2rem;
  }

  .sub-title h2 {
    font-size: 18px;
  }

  .timer-container {
    margin: 0rem 1rem;
  }

  li {
    font-size: 14px;
    padding: 0.25rem;
  }

  li span {
    font-size: 18px;
    padding: 0.25rem;
  }

  .preloader-container img {
    height: 7rem;
  }

  .dot {
    font-size: 3rem;
  }
}

@media screen and (max-width: 360px) {
  .logo {
    height: 4rem;
  }

  p {
    font-size: 12px;
  }

  span {
    font-size: 16px;
  }

  .sub-title h2 {
    font-size: 16px;
  }
}
