/* Hero */
.section-header {
  background: var(--B5, rgba(233, 238, 207, 0.3));
  display: flex;
  padding-block: 50px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.section-header .subtext-text-display {
  max-width: 775px;
  color: var(--black-color);

  /* H1 */
  font-family: Poppins;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.section-header .subtext-text-desc {
  width: 584px;
  color: var(--black-color);

  /* P2 */
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section-header .button-header {
  position: absolute;
  display: flex;
  padding: 16px 52px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 8px;
  background: var(--primary-color);
  color: var(--white-color);
}

.section-header .button-header:hover {
  background-color: var(--B5);
  border: 1px solid var(--primary-color);
  color: #0c4b36 !important;
}

.section-header .section-header .side-button-header {
  display: flex;
  height: 56px;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  color: var(--black-color);
}

.section-header .subtext-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 42px;
}

.section-header .anchor-header {
  gap: 60px;
}

.section-header .anchor-header a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .section-header .subtext .subtext-text {
    gap: 32px;
  }

  .section-header .subtext .subtext-image {
    display: none;
  }

  .section-header .subtext-text .subtext-text-display {
    font-size: 48px;
    max-width: 100%;
  }

  .section-header .subtext-text .subtext-text-desc {
    font-size: 16px;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .section-header .subtext .subtext-text {
    gap: 16px;
  }

  .section-header .subtext-text .subtext-text-display {
    font-size: 34px;
  }

  .section-header .anchor-header {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
}

/* Hero End */

/* choose */
.section-choose {
  background-color: rgba(233, 238, 207, 0.3);
  width: 100%;
  padding-block: 80px;
}

.section-choose .subtext-text > .subtext-text-display {
  color: var(--black-color);
  text-align: center;
  font-family: var(--font-display);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.section-choose .subtext-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-items: center;
}

.section-choose .subtext-card > .card {
  cursor: pointer;
  background-color: var(--white-color);
  border: none;
  gap: 24px;
  padding: 52px 32px;
  transition: all 300ms ease;
  max-width: 374px;
  width: 100%;
}

.section-choose .subtext-card > .card:hover {
  background-color: var(--primary-color);
}

.section-choose .card:hover .card-icon path,
.section-choose .card:hover .card-title,
.section-choose .card:hover .card-text {
  color: var(--white-color);
  fill: var(--white-color);
}

.section-choose 

.section-choose .card .card-icon {
  font-size: 64px;
  color: var(--primary-color);
}

.section-choose .subtext-card > .card .card-icon {
  max-width: 64px;
}

.section-choose .card-body {
  padding: 0;
}

.section-choose .card-body > .card-title {
  color: var(--black-color);
  font-family: var(--font-display);
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.section-choose .card-body > .card-text {
  color: var(--black-color);
  font-family: var(--font-display);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 768px) {
  .section-choose {
    padding-block: 40px;
  }

  .section-choose .subtext-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .section-choose .subtext-card > .card {
    padding-block: 42px;
  }

  .section-choose .subtext-card > .card:last-child {
    grid-column: 1/3;
  }

  .section-choose .card-body > .card-title {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .section-choose .subtext-card {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .section-choose .subtext-card > .card:last-child {
    grid-column: 1;
  }
}

/* End choose */

/* Section About */
.section-about {
  display: flex;
  width: 100%;
  padding-block: 100px;
  flex-direction: column;
  align-items: flex-end;
}

.section-about .subtext {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

.section-about .subtext-image {
  max-width: 412px;
}

.section-about .subtext-text-display {
  color: var(--black-color);

  /* H2 */
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.section-about .subtext-text-desc {
  color: var(--black-color);
  text-align: justify;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section-about .subtext-text-desc b {
  font-size: 28px;
}

@media (max-width: 768px) {
  .section-about {
    padding-block: 50px;
  }

  .section-about .subtext {
    gap: 24px;
  }

  .section-about .subtext-text-display {
    font-size: 34px;
  }

  .section-about .subtext-text-desc b {
    font-size: 24px;
  }

  .section-about .subtext-text-desc {
    font-size: 16px;
  }
}

/* End About */

/* Section Plant */
.section-plants {
  background-color: rgba(233, 238, 207, 0.3);
  display: flex;
  width: 100%;
  padding-block: 80px;
  flex-direction: column;
  align-items: flex-end;
}

.section-plants .content {
  gap: 60px;
}

.section-plants .subtext-text-display,
.section-plants .subtext-text-desc {
  color: var(--black-color);
  font-family: Poppins;
  text-align: center;
}

.section-plants .subtext-text-display {
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
}

.section-plants .subtext-text-desc {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.section-plants .wrapper-card {
  gap: 35px;
  flex-wrap: wrap;
}

.section-plants .card {
  border-radius: 10px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  max-width: 261px;
}

.section-plants .card > img {
  object-fit: cover;
}

@media (max-width: 768px) {
  .section-plants {
    padding-block: 40px;
  }

  .section-plants .subtext-text-display {
    font-size: 24px;
  }

  .section-plants .subtext-text-desc {
    font-size: 16px;
  }

}

@media (max-width: 576px) {
  .section-plants .card {
    max-width: 100%;
    width: 100%;
  }
  
  .section-plants .card > img {
    width: 100%;
    height: 100%;
  }
  
  .section-plants .wrapper-card {
    gap: 24px;
  }
}

/* End Plant */

/* Article */
.section-article {
  display: flex;
  width: 100%;
  padding-block: 80px;
  flex-direction: column;
  align-items: flex-end;
}

.section-article .subtext-text-display {
  color: var(--black-color);
  font-family: Poppins;
  display: flex;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 30px;
  justify-content: center;
}

.section-article .img-fluid {
  border-radius: 20px;
  object-fit: cover;
  width: 1290px;
  max-height: 600px;
}

.section-article .carousel-caption {
  background: linear-gradient(to bottom right, rgba(66, 66, 66, 0.50) 0%, rgba(37, 37, 37, 0.00) 50%) bottom right / 50% 50% no-repeat, linear-gradient(to bottom left, rgba(66, 66, 66, 0.50) 0%, rgba(37, 37, 37, 0.00) 50%) bottom left / 50% 50% no-repeat, linear-gradient(to top left, rgba(66, 66, 66, 0.50) 0%, rgba(37, 37, 37, 0.00) 50%) top left / 50% 50% no-repeat, linear-gradient(to top right, rgba(66, 66, 66, 0.50) 0%, rgba(37, 37, 37, 0.00) 50%) top right / 50% 50% no-repeat;
}

.section-article .carousel-caption h2 {
  font-size: 36px;
  font-weight: 700;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: var(--white-color);
}

.section-article .carousel-caption p {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 20px;
}

.section-article .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

@media (max-width: 1200px) {
  .section-article .img-fluid{
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .section-article {
    padding-block: 40px;
  }

  .section-article .subtext-text-display {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .section-article .carousel-caption h2 {
    font-size: 28px;
  }

  .section-article .carousel-caption p {
    font-size: 16px;
  }

  .section-article .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }

  .section-article .img-fluid{
    max-height: 350px;
  }
}

@media (max-width: 567px) {
  .section-article .img-fluid{
    max-height: 220px;
  }
}

/* End Article */
