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

html, body {
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  font-family: "mundial", sans-serif;
  background: #FFF9EB;
}

#desktop {
  display: flex;
}
@media (max-width: 600px) {
  #desktop {
    display: none;
  }
}

#mobile {
  display: none;
}
@media (max-width: 600px) {
  #mobile {
    display: flex;
  }
}

.hero {
  background: #1C1B19;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
}
.hero .mainDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  gap: 24px;
  padding: 40px 0 180px;
}
.hero .mainDiv h1 {
  color: var(--Neutra-base, #FFF);
  font-size: 47px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
  max-width: 970px;
}
.hero .mainDiv h1 span {
  color: #ECBF70;
}
.hero .mainDiv .desc {
  color: #FFFFFF;
  font-family: "mundial", sans-serif;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  max-width: 970px;
}
.hero .mainDiv .vsl {
  width: 880px;
  height: auto;
}
@media (1279px <= width <= 1537px) {
  .hero .mainDiv {
    gap: 16px;
    padding: 20px 0 180px;
  }
}
@media (max-width: 600px) {
  .hero {
    justify-content: center;
    min-height: 80vh;
    align-items: center;
  }
  .hero .mainDiv {
    padding: 40px 16px 60px;
    align-items: center;
    gap: 16px;
    align-self: unset;
  }
  .hero .mainDiv h1 {
    font-size: 26px;
    line-height: 110%;
    max-width: 342px;
    text-align: center;
  }
  .hero .mainDiv .desc {
    font-size: 15px;
    text-align: center;
    max-width: 342px;
  }
  .hero .mainDiv .vsl {
    width: 100%;
    height: auto;
  }
}

footer {
  display: flex;
  padding: 32px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #E8E8E8;
  background: #FFF9EB;
}
footer .lastDiv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
footer .lastDiv strong {
  color: #9E9B98;
  text-align: center;
  font-family: "minion-3", sans-serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  line-height: 110%;
  max-width: 800px;
}
footer .lastDiv span {
  color: #66625C;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "minion-3", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
}
footer > strong {
  color: #66625C;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 99%;
  letter-spacing: 0.315px;
}
footer > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
footer > div a, footer > div p {
  color: #66625C;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 99%;
  letter-spacing: 0.315px;
  text-decoration: none;
  transition: 0.2s;
}
footer > div a:hover {
  filter: brightness(80%);
}
@media (max-width: 600px) {
  footer {
    padding: 24px;
    gap: 16px;
    min-height: 20vh;
  }
  footer .lastDiv {
    margin-bottom: unset;
    gap: 3px;
  }
  footer .lastDiv strong {
    font-size: 18px;
    max-width: 326px;
  }
  footer strong {
    text-align: center;
  }
  footer .links {
    flex-direction: column;
  }
}

.whatsapp-btn {
  z-index: 999;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  transition: 0.2s;
}
.whatsapp-btn:hover {
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .whatsapp-btn {
    bottom: 1rem;
    right: 1rem;
  }
}

/*# sourceMappingURL=style.min.css.map */
