@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: white;
  font-family: "Poppins";
  text-align: center;
  text-decoration: none;
}

body {
  overflow-x: hidden;
  background: #000;
}

.container {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(1, 33, 102, 0.5019607843);
  z-index: 1;
}
.container .content {
  z-index: 2;
  padding-top: clamp(15px, 3vh, 30px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.container .content .logo {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
.container .content .logo strong {
  font-weight: 700;
  color: #ffcb44;
  letter-spacing: 2px;
  font-size: clamp(4rem, 5vw, 3rem);
  animation: from-right 1s;
  position: relative;
}
.container .content .logo span {
  font-size: clamp(1.5rem, 1.5vw, 1rem);
  position: relative;
  top: -30px;
  left: -20px;
  animation: from-left 1s;
}
@keyframes from-left {
  from {
    margin-left: -40px;
  }
}
@keyframes from-right {
  from {
    margin-right: -40px;
  }
}
.container .content .lines {
  margin: clamp(3rem, 10vh, 10rem) 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  padding: 0 20px;
  position: relative;
  top: 3rem;
}
.container .content .lines .tagline {
  font-size: clamp(1.8rem, 5vw, 3rem);
  max-width: 750px;
  width: 100%;
  font-weight: 700;
  margin-top: 20px;
  opacity: 0;
  animation: fade-in 1s forwards;
}
.container .content .lines .subtext {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #ffcb44;
  opacity: 0.95;
  max-width: 600px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  animation: from-bottom 1s;
}
@media (max-width: 480px) {
  .container .content .lines .subtext {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
}
@keyframes fade-in {
  to {
    opacity: 1;
  }
}
@keyframes from-bottom {
  from {
    margin-top: 20px;
  }
}
.container .whatsapp-btn {
  position: absolute;
  right: clamp(20px, 3vw, 30px);
  bottom: clamp(10px, 2vh, 20px);
  animation: bounce 1s infinite alternate;
}
.container .whatsapp-btn svg {
  width: clamp(40px, 4vw, 20px);
}
@keyframes bounce {
  to {
    transform: translateY(-20px);
  }
}

video,
img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  animation: fade-in 1s forwards;
  pointer-events: none;
}
@keyframes fade-in {
  to {
    opacity: 1;
  }
}

.footer {
  width: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 20px;
  top: 8rem;
}
.footer .copy {
  font-size: clamp(0.7rem, 1vw, 0.9rem);
}
.footer .copy strong {
  color: #ffcb44;
}
.footer .contact {
  display: none;
  gap: 2rem;
  margin-right: 10rem;
}
.footer .contact div {
  display: flex;
  flex-direction: column;
}
.footer .contact ul {
  list-style: none;
  font-weight: lighter;
}

/* ---------- Tablet ---------- */
@media (max-width: 768px) {
  .container .content .lines {
    margin: 5rem 0;
  }
  .container .content .lines .tagline {
    font-size: 2.2rem;
  }
}
/* ---------- Mobile ---------- */
@media (max-width: 480px) {
  .container .content .logo strong {
    font-size: 3rem;
  }
  .container .content .logo span {
    font-size: 1.2rem;
    left: -18px;
    top: -20px;
  }
  .container .content .lines {
    top: 0;
  }
  .container .content .lines .tagline {
    font-size: 3rem;
  }
  .container .content .lines .subtext {
    width: 100%;
    position: relative;
    top: 1rem;
    font-size: 1.5rem;
  }
  .footer {
    top: 5rem;
  }
  .footer .copy {
    font-size: 0.9rem;
  }
  @keyframes bounce {
    to {
      transform: 0;
    }
  }
  .container .whatsapp-btn {
    right: 170px;
    bottom: 130px;
  }
  .container .whatsapp-btn svg {
    width: 45px;
  }
}/*# sourceMappingURL=index.css.map */