/*==================== GOOGLE FONTS ====================*/
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Raleway:wght@500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

/*==================== VARIABLES CSS ====================*/
:root {
  /*========== Colors ==========*/
  /* Change favorite color */
  --hue-color: 250; /*Purple 250 - Green 142 - Blue 230 - Pink 340*/

  /* HEX color mode */
  --first-color: #2dd881;
  --first-color-second: #29652f;
  --first-color-alt: #fff;
  --first-color-lighter: #f5f5f5;
  --title-color: var(--first-color);
  --text-color: #000;
  --text-color-light: var(--first-color-alt);
  --body-color: var(--first-color-alt);
  --container-color-light: #e2fff0;
  --container-color-dark: var(--first-color-second);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);

  /*========== Font and typography ==========*/
  --body-font: "Lato", sans-serif;
  --header-font: "Raleway", sans-serif;

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
  --big-font-size: clamp(1.94rem, calc(1.8rem + 0.71vw), 2.44rem);
  --h1-font-size: clamp(1.73rem, calc(1.53rem + 0.98vw), 2.16rem);
  --h2-font-size: clamp(1.44rem, calc(1.28rem + 0.82vw), 1.8rem);
  --normal-font-size: clamp(1.2rem, calc(1.06rem + 0.68vw), 1.5rem);
  --small-font-size: clamp(1rem, calc(0.89rem + 0.57vw), 1.25rem);

  /*========== Font weight ==========*/
  --font-reguler: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-extra-bold: 800;

  /*========== Margin Bottom ==========*/
  /* .25rem = 4px, .5rem = 8px, .75rem = 12px ... */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/* Font size for large devices */
/* @media screen and (min-width: 968px) {
    :root {
        --big-font-size: 3rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
} */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-bold);
}

ul {
  list-style: none;
}

a {
  color: var(--text-color);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*==================== REUSABLE CSS CLASSES ====================*/
.section {
  padding: 2rem 0;
}

.section__title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-3);
}

.section__title,
.section__subtitle {
  text-align: center;
}

.section-pupuk {
  padding-block: 3rem;
}

.section-benefit {
  padding-block: 5.25rem;
}

.section-composition {
  padding-block: 3rem;
}

.section-footer {
  padding-block: 3.125rem;
}

.text-center {
  text-align: center;
}

/*==================== LAYOUT ====================*/
.container {
  max-width: 1024px;
  padding: 0 1rem;
  margin-inline: auto;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/*==================== HERO ====================*/
.hero {
  background-color: var(--container-color-light);
  position: relative;
  overflow: hidden;
}

.hero__box {
  height: 200vh;
  width: 53vw;
  background-color: var(--first-color);
  position: absolute;
  border-radius: 215px;
  bottom: -40px;
  right: -40%;
  transform: translatex(-50%);
  display: none;
}

.hero__container {
  gap: 1rem;
  min-height: 100vh;
  justify-content: center;
}

.hero__content {
  align-items: center;
  z-index: var(--z-tooltip);
}

.hero__data {
  max-width: 400px;
}

.hero__logo {
  max-height: 70px;
  margin-right: 10px;
}

.hero__title {
  font-family: var(--header-font);
  font-size: var(--h1-font-size);
  margin-bottom: var(--mb-0-5);
  margin-top: 20px;
}

.hero__description {
  font-size: var(--small-font-size);
  font-family: var(--body-font);
  line-height: 2rem;
  margin-bottom: var(--mb-1-5);
}

.hero__button {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
}

.hero__img {
  position: relative;
  margin-inline: auto;
}

/*==================== BUTTONS ====================*/
.button {
  background-color: var(--first-color);
  max-width: 250px;
  padding: 0.625rem 0;
  border-radius: 0.625rem;
  color: var(--first-color-alt);
  font-size: var(--small-font-size);
  transition: 0.2s;
  box-shadow: 16px 22px 8px rgba(0, 0, 0, 0.01),
    10px 14px 7px rgba(0, 0, 0, 0.07), 6px 8px 6px rgba(0, 0, 0, 0.25),
    3px 3px 4px rgba(0, 0, 0, 0.43), 1px 1px 2px rgba(0, 0, 0, 0.49),
    0px 0px 0px rgba(0, 0, 0, 0.5);
}

.button:hover {
  background-color: #05be60;
}

.button i {
  font-size: var(--normal-font-size);
}

.button-flex {
  gap: 0.25rem;
  display: flex;
  place-content: center;
}

.button-download {
  font-size: var(--small-font-size);
  max-width: 250px;
  padding: 0.625rem 0;
  transition: 0.2s;
  border: 2px solid #000;
  border-radius: 0.625rem;
}

.button-download:hover {
  color: var(--title-color);
  border-color: var(--title-color);
}

.button-download i {
  font-size: var(--normal-font-size);
}

.button-outline {
  background-color: #c7fecb;
  color: #049c2f;
  font-size: var(--normal-font-size);
  font-weight: var(--font-bold);
  padding: 16px 17px;
  border-radius: 28px;
  font-family: var(--header-font);
  border-style: none;
  width: fit-content;
  margin: 0 auto;
}
/*==================== QUESTION ====================*/
.question__container {
  justify-content: center;
}

.question__content {
  align-items: center;
}

.question__title {
  font-size: var(--h1-font-size);
  font-family: var(--header-font);
  color: #000;
  text-align: center;
  margin-bottom: 3rem;
}

.question__list {
  list-style-image: url("/assets/img/close-fill.svg");
  padding-left: 16px;
}

.question__list > li {
  margin-bottom: 1.5rem;
}

.question__note {
  text-align: center;
}

.question__note-bold {
  font-weight: var(--font-bold);
}

/*==================== FACT ====================*/
.fact__title {
  text-align: center;
  color: #000;
}

.fact__article {
  font-size: var(--small-font-size);
  color: #333333;
  font-weight: var(--font-reguler);
  text-align: center;
  line-height: 1.5rem;
}
/*==================== FUTURE ====================*/
.future__content {
  align-items: center;
}

.future__title {
  color: #000;
  margin-bottom: 21px;
}

.future_list {
  list-style-image: url("/assets/img/checkbox-circle-fill-green.svg");
  padding-left: 28px;
}

.future__list-desc {
  color: #494949;
  line-height: 30px;
  border-bottom: 1px solid #8ebd40;
  padding-bottom: 12px;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.future__note {
  background-color: #049c2f;
  text-align: center;
  border-radius: 10px;
  margin-top: 40px;
}

.future__description {
  max-width: 1000px;
  color: var(--first-color-alt);
  padding: 1rem 1.5rem;
}
/*==================== REASON ====================*/
.reason__title {
  text-align: center;
}

.reason__box {
  background-color: var(--first-color);
  padding: 16px 28px 28px;
  border-radius: 10px;
}

.reason__certificate {
  width: 100px;
  display: block;
  margin: 0 auto 1.5rem;
}

.reason__title-box {
  color: var(--text-color);
  margin-bottom: 14px;
  text-align: center;
}

.reason__desc {
  text-align: center;
}

/*==================== PUPUK TNT ====================*/
.pupuk {
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center right;
}

.pupuk__content {
  align-items: center;
}

.pupuk__title {
  font-size: 2.5rem;
  font-family: var(--header-font);
}

.pupuk__subtitle {
  font-size: var(--small-font-size);
  font-family: var(--header-font);
  margin-bottom: var(--mb-1-5);
}

.pupuk__description {
  font-size: var(--normal-font-size);
}

.pupuk__description span {
  vertical-align: super;
  font-size: var(--small-font-size);
  font-size: 1rem;
}

/*==================== CERIFICATE ====================*/
.certificate {
  background-color: var(--first-color-lighter);
}

.certificate__container {
  justify-content: center;
}

.certificate__img {
  max-height: 85px;
}

/*==================== BENEFIT ====================*/
.benefit {
  background-color: var(--first-color-second);
  position: relative;
  overflow: hidden;
}

.benefit__bg:nth-child(1) {
  position: absolute;
  top: 0;
  width: 40vw;
  max-width: 250px;
}

.benefit__bg:nth-child(2) {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40vw;
  max-width: 250px;
}

.benefit__content {
  align-items: center;
  z-index: var(--z-tooltip);
  column-gap: 4.5rem;
}

.benefit__title {
  font-family: var(--header-font);
  color: var(--first-color-alt);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1-5);
}

.benefit__title span {
  font-weight: var(--font-bold);
}

.benefit__list {
  color: var(--first-color-alt);
  padding-left: 1rem;
}

.benefit__list {
  list-style-image: url("../img/check-circle-rounded.svg");
  padding-inline-start: 1ch;
}

.benefit__item {
  margin-bottom: 1rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-reguler);
}

/*==================== COMPOSITION ====================*/
.composition__title,
.composition__subtitle {
  text-align: center;
}

.composition__title {
  font-style: var(--header-font);
  font-weight: var(--font-semi-bold);
  font-size: var(--h1-font-size);
  font-family: var(--header-font);
}

.composition__title span {
  font-weight: var(--font-extra-bold);
}

.composition__subtitle {
  font-style: var(--body-font);
  font-weight: var(--font-reguler);
  font-size: var(--normal-font-size);
  margin-bottom: 2.625rem;
  color: var(--text-color);
}

.composition__card {
  display: flex;
  place-content: center;
  flex-wrap: wrap;
  row-gap: 2.625rem;
  column-gap: 1.5rem;
}

.composition__data {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  row-gap: 0.75rem;
}

.composition__name {
  font-size: var(--normal-font-size);
  background-image: linear-gradient(
    92.27deg,
    var(--first-color) 2.71%,
    var(--first-color-second) 100.38%
  );
  border: none;
  width: fit-content;
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  color: var(--first-color-lighter);
}

.composition__caption {
  font-size: var(--small-font-size);
  text-align: center;
  text-transform: capitalize;
  color: #555555;
}

/*==========  TRUSTED ==========*/
.trusted {
  background-color: var(--first-color-lighter);
  border-block: 1px solid #c9c9c9;
  font-family: "Poppins", sans-serif;
}

.trusted__container {
  justify-content: center;
}

.trusted__content {
  max-width: 650px;
}

.trusted__title {
  color: #494949;
  text-align: center;
  margin-bottom: 40px;
}

.trusted__list {
  padding-left: 1rem;
}

.trusted__list {
  list-style-image: url("/assets/img/checkbox-circle-fill-success.svg");
  padding-inline-start: 1ch;
}

.trusted__list-item {
  line-height: 30px;
  border-bottom: 1px dotted;
  padding-bottom: 0.5rem;
  margin-top: 10px;
}

/*========== PROMO ==========*/
.promo__title {
  color: #e53e2d;
  text-align: center;
  margin-bottom: 0.5rem;
}

.promo__subtitle {
  color: #e53e2d;
  text-align: center;
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
}

.promo__time {
  display: flex;
  justify-content: center;
  column-gap: 1rem;
}

.promo__time span {
  display: block;
  text-align: center;
}

.promo__clock {
  font-weight: var(--font-bold);
  font-family: var(--header-font);
}

.promo__text {
  font-weight: var(--font-reguler);
  font-family: var(--header-font);
  font-size: var(--small-font-size);
}

.promo__whatsapp {
  background: #27ae60;
  border: 2px solid #27ae60;
  border-radius: 50px;
  color: var(--first-color-alt);
  display: flex;
  place-content: center;
  gap: 0.3rem;
  font-size: var(--small-font-size);
  padding: 12px 25px;
  box-shadow: 16px 22px 8px rgba(0, 0, 0, 0.01),
    10px 14px 7px rgba(0, 0, 0, 0.07), 6px 8px 6px rgba(0, 0, 0, 0.25),
    3px 3px 4px rgba(0, 0, 0, 0.43), 1px 1px 2px rgba(0, 0, 0, 0.49),
    0px 0px 0px rgba(0, 0, 0, 0.5);
  width: fit-content;
  margin: 0 auto;
}
/*========== GUARANTEED ==========*/
.guaranteed__box {
  background-color: #f5f5f5;
  box-shadow: 0px 73px 29px rgba(0, 0, 0, 0.01),
    0px 41px 25px rgba(0, 0, 0, 0.05), 0px 18px 18px rgba(0, 0, 0, 0.09),
    0px 5px 10px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin: 0 auto;
  max-width: 790px;
}

.guaranteed__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 48px;
}

.guaranteed__img {
  max-width: 180px;
}

.guaranteed__small {
  display: block;
  text-align: center;
  margin-bottom: 12px;
}

.guaranteed__paragraph {
  text-align: center;
}
/*========== TESTIMONI ==========*/
.testimoni__title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: normal;
}

.testimoni__container {
  margin-bottom: 1rem;
}

.testimoni__title span {
  font-weight: var(--font-bold);
}

.testimoni__content {
  position: relative;
}

.myTestimoni {
  width: 90%;
}

.testimoni__video {
  aspect-ratio: 1;
}

/*========== GALERY ==========*/
.galery {
  margin-bottom: 1rem;
}

.galery__title {
  text-align: center;
  font-weight: normal;
  margin-bottom: 18px;
}

.galery__title span {
  font-weight: 800;
}

.galery__content {
  position: relative;
}

.myGalery {
  width: 90%;
}

.swiper-button-next,
.swiper-button-prev {
  color: #2dd881 !important;
  top: 50% !important;
  transform: translateY(-50%);
}

.swiper-button-prev {
  left: 0 !important;
}

.swiper-button-next {
  right: 0 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  font-weight: var(--font-bold);
}

.swiper-pagination {
  position: relative !important;
}

.swiper-pagination-bullet-active {
  background-color: #2dd881 !important;
}

.galery__image {
  object-fit: cover;
  object-position: top;
  height: 300px;
  width: 100%;
}

/*========== CERTIFICATE ==========*/
.certificate__title {
  text-align: center;
  margin-bottom: 20px;
}

.certificate__grid {
  grid-template-columns: repeat(2, 1fr);
}

.certificate__box img {
  height: 100%;
}

.certificate_cap {
  font-weight: 700;
}

#zoom-overlay {
  cursor: zoom-out;
}

/*========== FOOTER ==========*/
.payment {
  background: #29652f;
}

.payment__container {
  gap: 3.5rem;
}

.payment__title {
  color: var(--first-color-alt);
  margin-bottom: 30px;
  font-size: var(--h1-font-size);
}

.payment__paragraph {
  color: var(--first-color-alt);
  margin-bottom: 0.5rem;
}

.payment__contact-us {
  color: var(--first-color-alt);
  background-color: transparent;
  border: 2px solid white;
  border-radius: 50px;
  display: flex;
  place-content: center;
  column-gap: 0.5rem;
  padding: 0.5rem;
  font-weight: var(--font-bold);
  font-size: var(--h2-font-size);
  height: fit-content;
  margin: auto 0;
  align-items: center;
  transition: all ease-in-out 0.3s;
}

.payment__contact-us:hover {
  cursor: pointer;
  color: var(--first-color);
  border-color: var(--first-color);
}

.payment__icon {
  transform: rotateY(180deg);
}

.payment__bank {
  max-width: 426px;
  width: 100%;
}

/*========== FOOTER ==========*/
.footer {
  background-color: var(--container-color-light);
  overflow: hidden;
  position: relative;
}

.footer__box {
  background-color: var(--first-color);
  height: 150%;
  width: 80%;
  border-radius: 350px;
  position: absolute;
  top: -50%;
  left: -40vw;
  transform: translateY(25%);
  display: none;
}

.footer__content {
  z-index: var(--z-tooltip);
  align-items: center;
  justify-items: center;
}

.footer__title {
  color: var(--text-color);
  font-family: var(--header-font);
  font-weight: var(--font-extra-bold);
  font-size: var(--h1-font-size);
}

.footer__description {
  margin: 1.5rem 0;
}

/*==================== MEDIA QUERIES ====================*/
/* For small devices */
@media screen and (min-width: 576px) {
}

/* For medium devices */
@media screen and (min-width: 768px) {
  .hero__logo {
    max-height: 80px;
  }

  .question__content,
  .fact__content,
  .future__content,
  .reason__content {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment__container {
    grid-template-columns: 2fr 1fr;
  }

  .section-pupuk {
    padding-block: 6.125rem;
  }

  .pupuk {
    background-image: url("../img/daun\ 1.png");
  }

  .hero__box,
  .footer__box {
    display: block;
  }

  .pupuk__data {
    order: 1;
  }

  .hero__content,
  .pupuk__content,
  .benefit__content,
  .footer__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .composition__subtitle {
    margin-bottom: 4.625rem;
  }

  .composition__card {
    row-gap: 4.625rem;
  }

  .composition__data {
    row-gap: 1.5rem;
  }

  .promo__time {
    column-gap: 3rem;
  }

  .promo__clock {
    font-size: 60px;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .fact__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
