<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --primary: tomato;
  --white: #ffffff;
  --dark: #000000;

  --font-roboto: "Roboto", sans-serif;
  --font-poppins: "Poppins", sans-serif;

  --fs-small: 0.875rem;
  --fs-normal: 1rem;
  --fs-large: 1.25rem;
  --fs-xlarge: 1.5rem;
}

.diskon {
  padding: 0.5em 1em;
  font-family: var(--font-roboto);
  font-weight: 700;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: var(--fs-small);
}

.img-logo {
  height: 40px;
  width: 120px;
  object-fit: contain;
}

.btn-orange {
  background: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 0.5em 1em;
  font-family: var(--font-poppins);
  color: var(--white);
  border-radius: 6px;
  transition: 0.4s ease-in-out;
  font-size: var(--fs-small);
  cursor: pointer;
  font-weight: medium;
}

.btn-orange:hover {
  background: transparent;
  color: var(--primary);
}

.carousel-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.carousel-header {
  font-weight: 900;
}

.carousel-header,
.carousel-text {
  color: var(--white);
}

@media (max-width: 929px) {
  .carousel-text {
    font-size: 14px;
  }

  .diskon {
    top: 20px;
    right: 20px;
    font-size: var(--fs-normal);
  }

  .img-logo {
    height: 80%;
    width: 160px;
  }

  .btn-orange {
    font-size: var(--fs-normal);
  }
}

@media (min-width: 992px) {
  .carousel-text {
    font-size: 22px;
  }

  .diskon {
    top: 25px;
    right: 25px;
    padding: 0.5em 1em;
    font-size: var(--fs-large);
    width: fit-content;
  }

  .img-logo {
    height: 70px;
    width: 180px;
  }

  .btn-orange {
    background-color: var(--primary);
    font-size: var(--fs-large);
  }

  .carousel-content {
    padding-bottom: 20%;
  }
}

.heading {
  font-size: var(--fs-xlarge);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  bottom: 1%;
  right: 1%;
}
</pre></body></html>