.hero-home {
  position: relative;
  /* border: 5px solid black; */
  top: 0;
}
.hero_text_container {
  color: white;
  /* font-size: 18px; */
  margin-top: 40px;
  z-index: 100;
  /* padding-inline: 1rem; */
  /* position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%); */
  /* background-color: #76B99A; */
  /* max-width: 1200px; */
}
.hero_text_container > p:first-child {
  line-height: 110%;
  margin-bottom: 20px;
}
@media (min-width: 1010px) {
  .hero_text_container {
    margin-top: 120px;
  }
}
/* @media (min-width: 1010px){
  .hero_text_container {
    margin-top: 60px;
  }

} */
.embla {
  overflow: hidden;
}
.embla-custom {
  margin-inline: auto;
  height: 80vh;
  background-color: #706fab;
}
@media (min-width: 1024px) {
  .embla-custom {
    height: 89vh;
  }
}
.embla__container {
  display: flex;
}
.embla__container-custom {
  height: 100vh;
  width: 100%;
  display: flex;
}
.embla__slide {
  flex: 0 0 100%;
  min-width: 0;
}
.embla__slide-custom {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* 💥💥💥CONTAINER💥💥💥 */
.main-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1.5rem;
  margin-top: 1.25rem;
  /* background-color: pink; */
}

/* For extra-large screens (xl breakpoint) */
@media (min-width: 1280px) {
  .main-container {
    padding-left: 2rem; /* Equivalent to xl:px-36 */
    padding-right: 2rem; /* Equivalent to xl:px-36 */
  }
}

/* Space between elements */
.main-container > *:not(:last-child) {
  margin-bottom: 6rem;
}

/* .flex {
  display: flex;
}

.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
} */
/* 💥💥💥SPONSORS💥💥💥 */
.partners-section {
  background-color: #3e034d;
  padding: 2.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.partners-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.partners-logo {
  width: 6rem;
}

@media (min-width: 640px) {
  .partners-logo {
    width: 8rem;
  }
}

/* 💥💥💥IMPACT REPORT💥💥💥 */
.impact-container {
  width: 100%;
  padding: 3rem 1.25rem;
  text-align: center;
}

.impact-title {
  font-size: 1.75rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  .impact-title {
    font-size: 2rem;
  }
}

.impact-subtitle {
  font-size: 1rem;
}

@media (min-width: 640px) {
  .impact-subtitle {
    font-size: 1.125rem;
  }
}

/* Cards */
.impact-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  margin-top: 30px;
}

@media (min-width: 1024px) {
  .impact-cards {
    flex-direction: row;
    justify-content: center;
  }
}

.impact-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 8px 12px;
  max-width: 333px;
  overflow: hidden;
  text-align: center;
  color: white;
}

.impact-image img {
  width: 100%;
  height: auto;
  display: block;
}

.impact-category {
  background: #004aad;
  padding: 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-size: 14px;
}
@media (min-width: 600px) {
  .impact-category {
    font-size: 16px;
  }
}

.impact-description {
  background: #706fab;
  padding: 1.25rem 2rem;
}

.impact-link {
  background: #bc99c3;
  padding: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.impact-link:hover {
  background: #a47ea0;
}

/* 💥💥💥ABOUT💥💥💥 */
/* .about-wraper {
  width: 100%;
  padding: 6rem 1.25rem;
} */

.about-container {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  /* padding-inline: 1.25rem; */
  /* padding-block: 6rem; */
  /* background-color: aqua; */
}

@media (min-width: 768px) {
  .about-container {
    flex-direction: row;
    align-items: flex-start;
    padding: 6rem 2rem;
  }
}

/* Text Section */
.text-section {
  flex: 1;
  text-align: center;
}
/* ! flex flex-col items-center mb-16 */

@media (min-width: 768px) {
  .text-section {
    text-align: left;
    padding-right: 2rem;
  }
}

.about-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 4rem;
  }
}

.highlight {
  position: relative;
  display: inline-block;
  padding: 0 0.25rem;
  font-weight: 600;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  right: 0;
  height: 0.5rem;
  width: 60%;
  background-color: #16a34a;
  opacity: 0.4;
  transform: translateX(3.5rem) translateY(-0.75rem);
  z-index: -1;
}

.description {
  font-size: 1rem;
  line-height: 1.75rem;
}

@media (min-width: 768px) {
  .description {
    font-size: 1.125rem;
    line-height: 2rem;
  }
}

/* Image Section */
.image-section {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* 💥💥💥SHARE PAGE💥💥💥 */
.share-container {
  background-color: #bc99c3;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 6rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  /* width: 100%; */
  text-align: center;
  color: white;
}

/* Adjustments for larger screens */
@media (min-width: 768px) {
  .share-container {
    flex-direction: row;
    gap: 5rem;
    padding-top: 6rem;
    padding-bottom: 8rem;
    padding-left: 3rem;
    padding-right: 3rem;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .share-container {
    gap: 8rem;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* Background Images */
.bg-img {
  position: absolute;
  top: 0;
  width: 6rem;
}

@media (min-width: 640px) {
  .bg-img {
    width: 10rem;
  }
}

.bg-img-left {
  left: 0;
}

.bg-img-right {
  right: 0;
}

/* Text Section */
.text-section {
  max-width: 40rem;
  position: relative;
  z-index: 10;
}

.title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .title {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .title {
    font-size: 3rem;
  }
}

.description {
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .description {
    font-size: 1rem;
  }
}

/* Hide break tag on small screens */
.hidden-sm {
  display: none;
}

@media (min-width: 640px) {
  .hidden-sm {
    display: inline;
  }
}

/* Button */
.share-button {
  height: 2.75rem;
  width: 8rem;
  background-color: #ff7f00;
  font-weight: 500;
  border-radius: 0.375rem;
  color: white;
  border: none;
  cursor: pointer;
}

@media (min-width: 640px) {
  .share-button {
    width: 9rem;
  }
}

/* 💥💥💥TESTIMONIAL💥💥💥 */
.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
  /* background-color: #ff7f00; */
}

@media (min-width: 768px) {
  .testimonial {
    flex-direction: row;
    padding: 8rem 4rem;
  }
}

/* Text Content */
.testimonial__content {
  /* width: 100%; */
  /* margin-bottom: 2.5rem; */
}

@media (min-width: 768px) {
  .testimonial__content {
    width: 50%;
    /* margin-bottom: 0; */
  }
}

.testimonial__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial__icon {
  width: 2.5rem;
  height: 2.5rem;
}

.testimonial__title {
  position: relative;
  display: inline-block;
  color: black;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .testimonial__title {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    padding-right: 9rem;
  }
}
@media (width >= 64rem /* 1024px */) {
  .testimonial__title {
    padding-right: 9rem;
  }
}

.testimonial__underline {
  position: absolute;
  left: 0.5rem;
  bottom: 0;
  height: 0.5rem;
  width: 6rem;
  background-color: #047857;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .testimonial__underline {
    height: 0.75rem;
    width: 8rem;
  }
}

/* Description */
.testimonial__description {
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .testimonial__description {
    font-size: 1rem;
  }
}

.testimonial__description--desktop {
  display: none;
}

@media (min-width: 768px) {
  .testimonial__description--desktop {
    display: block;
  }
}

.testimonial__description--mobile {
  display: block;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .testimonial__description--mobile {
    display: none;
  }
}

/* .testimonial__author {
  margin-top: 1rem;
} */

.testimonial__name {
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .testimonial__name {
    font-size: 1rem;
  }
}

/* Star Ratings */
.testimonial__stars {
  display: flex;
  gap: 0.5rem;
}

.testimonial__star {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 768px) {
  .testimonial__star {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* Image Section */
.testimonial__image-wrapper {
  position: relative;
  width: 100%;
  width: 50%;
}

@media (min-width: 768px) {
  .testimonial__image-wrapper {
    width: 50%;
  }
}

.testimonial__border-box {
  display: none;
}

@media (min-width: 768px) {
  .testimonial__border-box {
    display: block;
    height: 12rem;
    width: 12rem;
    border: 12px solid black;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0.25rem;
    animation: pulse 1.5s infinite;
    z-index: 100;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

.testimonial__image {
  width: 370px;
  height: 444px;
  margin-left: auto;
}

/* 💥💥💥SUBCSRIBE💥💥💥 */
.subscribe {
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 9rem;
  padding-inline: 1.5rem;
  color: #ffff;
  background-color: #bc99c3;
}
@media (width >= 40rem /* 640px */) {
  .subscribe {
    padding-inline: 4rem;
  }
}

.subscribe__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 3rem;
  text-align: center;
  /* gap: 1rem; */
}
@media (width >= 40rem /* 640px */) {
  .subscribe__content {
    flex-direction: row;
    text-align: left;
  }
}
.subscribe__title {
  font-size: 1.875rem; /* Equivalent to text-3xl */
  font-weight: bold;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .subscribe__title {
    font-size: 2.25rem; /* Equivalent to text-4xl */
    margin-bottom: 0;
  }
}
.subscribe__description {
  font-size: 0.875rem; /* Equivalent to text-sm */
}

@media (min-width: 640px) {
  .subscribe__description {
    font-size: 1rem; /* Equivalent to text-base */
  }
}
.subscribe__line-break {
  display: none;
}

@media (min-width: 640px) {
  .subscribe__line-break {
    display: inline-block;
  }
}

/* Subscribe form */
.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .subscribe-form {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.subscribe-form__group {
  width: 100%;
}

.subscribe-form__input {
  background-color: #f9fafb;
  border: 1px solid #d1d5db;
  color: #101827;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  display: block;
}

.subscribe-form__button {
  color: white;
  background-color: #1447e6; /* Equivalent to bg-blue-700 */
  font-weight: 500; /* Equivalent to font-medium */
  border-radius: 0.5rem; /* Equivalent to rounded-lg */
  font-size: 0.875rem; /* Equivalent to text-sm */
  padding: 0.75rem 1.5rem; /* Equivalent to px-6 py-3 */
  text-align: center;
  width: 100%;
}

@media (min-width: 640px) {
  .subscribe-form__button {
    width: auto;
  }
}
