#exotic-products {
  padding: 2rem 0 12rem 0;
}

#exotic-products > .eg-container > .eg-wrapper {
  display: grid;
  grid-template-columns: var(--col-4);
  gap: 1rem;
}

#exotic-products > .eg-container > .eg-wrapper > .box {
  position: relative;
  z-index: 1;
}

#exotic-products .box > figure {
  position: relative;
  background-image: url("/public/assets/images/curved-bg.png");
  background-size: 100% 100%;
  background-position: center;
  min-height: 285px;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

#exotic-products .box > figure > img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-height: 465px;
  top: -4rem;
}

#exotic-products .box > .description {
  margin-top: -4rem;
  padding: 12rem 1rem 2rem 1rem;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  background: linear-gradient(112deg, #efe6d1 3.6%, #dfcfa5 97.62%), linear-gradient(112deg, #7aa75c 3.6%, #3f6128 97.62%);
  border-radius: 0 0 20px 20px;
}

#exotic-products .box > .description > b {
  color: var(--do-black);
  font-size: var(--font-22);
  font-weight: 700;
}

#exotic-products .box > .description > p {
  color: var(--do-black);
  font-size: var(--font-18);
  font-weight: 400;
  line-height: var(--line-26);
}

@media (max-width: 1200px) {
  #exotic-products .box > .description {
    padding: 8rem 1rem 2rem 1rem;
    min-height: 300px;
  }
}

@media (max-width: 992px) {
  #exotic-products .box > .description {
    padding: 4rem 1rem 2rem 1rem;
  }
  #exotic-products .box > figure > img {
    top: 0;
  }
}

@media (max-width: 768px) {
  #exotic-products > .eg-container > .eg-wrapper {
    grid-template-columns: var(--col-6);
    gap: 6rem 1rem;
  }
  #exotic-products .box > .description {
    padding: 8rem 1rem 2rem 1rem;
    min-height: 350px;
  }
  #exotic-products .box > figure > img {
    max-height: 400px;
    top: -4rem;
  }
}

@media (max-width: 576px) {
  #exotic-products > .eg-container > .eg-wrapper {
    grid-template-columns: var(--col-12);
    gap: 6rem 1rem;
  }
  #exotic-products .box > figure > img {
    max-height: 350px;
    top: -2rem;
  }
  #exotic-products .box > .description {
    min-height: 325px;
  }
}
