/* =========================================================
   DESIGN SYSTEM NOTES
   - Section padding scale: 64px/24px -> 48px/32px (1024) ->
     40px/24px (768) -> 32px/16px (480) -> 24px/12px (360)
   - Heading: 36px/700/#101818, green (#00a651) underline bar,
     scaling down to 20px on the smallest phones
   - Container max-width: 1440px everywhere except Who We Are,
     which is a narrower reading column (900px)
   - Sliders use vh height but grow slightly on small screens
     so overlaid text has room to breathe
   ========================================================= */

/* =========================================================
   WHO WE ARE
   ========================================================= */
.homepage_who_we_are {
  font-family: "Nunito", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  background: white;
  padding: 64px 24px;
}

.homepage_who_we_are_container {
  width: 100%;
  max-width: 900px;
}

.homepage_who_we_are_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.6em;
}

.homepage_who_we_are_content > h1 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  color: #101818;
  margin-bottom: 32px;
  padding-bottom: 16px;
}

.homepage_who_we_are_content > h1::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 5px;
  width: 80px;
  background: #00a651;
  border-radius: 20px;
  transform: translateX(-50%);
}

.homepage_who_we_are_content p {
  padding: 8px 0;
  font-size: 16px;
  font-weight: 400;
  color: #2c2c2c;
  max-width: 700px;
}

.homepage_who_we_are_content a {
  font-size: 18px;
  font-weight: 600;
  text-decoration: underline;
  display: inline-block;
  margin-top: 16px;
  color: #009f9c;
}

.homepage_who_we_are_content a:hover {
  color: #000;
}

@media (max-width: 1024px) {
  .homepage_who_we_are {
    padding: 48px 32px;
  }
  .homepage_who_we_are_container {
    max-width: 700px;
  }
  .homepage_who_we_are_content > h1 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .homepage_who_we_are {
    padding: 40px 24px;
  }
  .homepage_who_we_are_container {
    width: 90%;
    max-width: 600px;
  }
  .homepage_who_we_are_content > h1 {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .homepage_who_we_are_content p {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .homepage_who_we_are {
    padding: 32px 16px;
  }
  .homepage_who_we_are_container {
    width: 100%;
  }
  .homepage_who_we_are_content > h1 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
  .homepage_who_we_are_content > h1::before {
    width: 56px;
    height: 4px;
  }
  .homepage_who_we_are_content p {
    font-size: 14px;
    padding: 6px 0;
  }
  .homepage_who_we_are_content a {
    margin-top: 12px;
    font-size: 15px;
  }
}
@media (max-width: 360px) {
  .homepage_who_we_are {
    padding: 24px 12px;
  }
  .homepage_who_we_are_content > h1 {
    font-size: 20px;
  }
}

/* =========================================================
   WHAT WE DO
   ========================================================= */
.homepage_what_we_do {
  font-family: "Nunito", sans-serif;
  width: 100%;
  position: relative;
  background-color: #f8fdff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px 24px;
}

.homepage_what_we_do_container {
  width: 100%;
  max-width: 1440px;
}

.homepage_what_we_do_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.homepage_what_we_do_heading {
  position: relative;
  text-align: center;
}

.homepage_what_we_do_heading h1 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  color: #101818;
  margin-bottom: 32px;
  padding-bottom: 16px;
}

.homepage_what_we_do_heading h1::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 5px;
  width: 80px;
  background: #00a651;
  border-radius: 20px;
  transform: translateX(-50%);
}

.homepage_what_we_do_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.homepage_what_we_do_card {
  background: white;
  border-radius: 16px;
  box-shadow: 0px 4px 4px 0px #00000017;
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.homepage_what_we_do_card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 10px 24px 0px #0000001a;
}

.homepage_what_we_do_card_icon {
  width: 70%;
  margin-bottom: 16px;
}

.homepage_what_we_do_card_icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.homepage_what_we_do_card_heading {
  text-align: center;
  margin-bottom: 8px;
}

.homepage_what_we_do_card_heading h2 {
  font-size: 20px;
  font-weight: 700;
  color: #00405e;
}

.homepage_what_we_do_card_text {
  text-align: center;
  margin-bottom: 16px;
}

.homepage_what_we_do_card_text p {
  font-size: 15px;
  font-weight: 400;
  color: #2c2c2c;
  line-height: 1.5em;
}

.homepage_what_we_do_card_link {
  margin-top: auto;
}

.homepage_what_we_do_card_link a {
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  color: #009f9c;
}

.homepage_what_we_do_card_link a:hover {
  color: #000;
}

@media (max-width: 1200px) {
  .homepage_what_we_do_cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .homepage_what_we_do {
    padding: 48px 32px;
  }
  .homepage_what_we_do_cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .homepage_what_we_do_heading h1 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .homepage_what_we_do {
    padding: 40px 24px;
  }
  .homepage_what_we_do_cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .homepage_what_we_do_heading h1 {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .homepage_what_we_do {
    padding: 32px 16px;
  }
  .homepage_what_we_do_cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .homepage_what_we_do_heading h1 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
  .homepage_what_we_do_heading h1::before {
    width: 56px;
    height: 4px;
  }
  .homepage_what_we_do_card {
    padding: 24px 16px;
  }
  .homepage_what_we_do_card_heading h2 {
    font-size: 18px;
  }
  .homepage_what_we_do_card_text p {
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .homepage_what_we_do {
    padding: 24px 12px;
  }
  .homepage_what_we_do_heading h1 {
    font-size: 20px;
  }
}

/* =========================================================
   OUR IMPACT
   ========================================================= */
.homepage_our_impact {
  font-family: "Nunito", sans-serif;
  width: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px 24px;
}

.homepage_our_impact_container {
  width: 100%;
  max-width: 1440px;
}

.homepage_our_impact_content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.homepage_our_impact_heading {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.homepage_our_impact_heading h1 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  color: #101818;
  margin-bottom: 32px;
  padding-bottom: 16px;
  text-transform: uppercase;
}

.homepage_our_impact_heading h1::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 5px;
  width: 80px;
  background: #00a651;
  border-radius: 20px;
  transform: translateX(-50%);
}

.homepage_our_impact_heading p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
  color: #2c2c2c;
  line-height: 1.6em;
}

.homepage_our_impact_section {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.homepage_our_impact_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 50%;
}

.homepage_our_impact_box {
  border: 2px solid #2584b1;
  background-color: white;
  border-radius: 16px;
  color: #2584b1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.5em;
  padding: 24px 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.homepage_our_impact_box:hover {
  transform: translateY(-4px);
  box-shadow: 0px 10px 24px 0px #0000001a;
}

.homepage_our_impact_box_icon {
  width: 60px;
  object-fit: contain;
  margin-bottom: 12px;
}

.homepage_our_impact_box h2 {
  color: #2584b1;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.homepage_our_impact_box p {
  font-size: 14px;
  color: #2c2c2c;
}

.homepage_our_impact_map {
  width: 50%;
}

.homepage_our_impact_map img {
  width: 100%;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .homepage_our_impact {
    padding: 48px 32px;
  }
  .homepage_our_impact_heading h1 {
    font-size: 32px;
  }
  .homepage_our_impact_section {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .homepage_our_impact {
    padding: 40px 24px;
  }
  .homepage_our_impact_heading h1 {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .homepage_our_impact_heading p {
    max-width: 100%;
    font-size: 15px;
  }
  .homepage_our_impact_section {
    flex-direction: column;
    gap: 32px;
  }
  .homepage_our_impact_list,
  .homepage_our_impact_map {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .homepage_our_impact {
    padding: 32px 16px;
  }
  .homepage_our_impact_heading h1 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
  .homepage_our_impact_heading h1::before {
    width: 56px;
    height: 4px;
  }
  .homepage_our_impact_list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .homepage_our_impact_box {
    padding: 20px 16px;
  }
  .homepage_our_impact_box h2 {
    font-size: 16px;
  }
  .homepage_our_impact_box p {
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .homepage_our_impact {
    padding: 24px 12px;
  }
  .homepage_our_impact_heading h1 {
    font-size: 20px;
  }
}

/* =========================================================
   SHARED HEADING: Gallery + Blog Stories
   ========================================================= */
.homepage_gallery_heading,
.homepage_blog_heading {
  font-family: "Nunito", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: white;
  padding: 64px 24px 24px 24px;
}
.homepage_gallery_heading_container,
.homepage_blog_heading_container {
  width: 100%;
  max-width: 1440px;
}
.homepage_gallery_heading_content,
.homepage_blog_heading_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.6em;
  text-align: center;
}
.homepage_gallery_heading_content > h1,
.homepage_blog_heading_content > h1 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  color: #101818;
  margin-bottom: 32px;
  padding-bottom: 16px;
}
.homepage_gallery_heading_content > h1::before,
.homepage_blog_heading_content > h1::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 5px;
  width: 80px;
  background: #00a651;
  border-radius: 20px;
  transform: translateX(-50%);
}
.homepage_gallery_heading_content p,
.homepage_blog_heading_content p {
  max-width: 700px;
  font-size: 16px;
  color: #2c2c2c;
  text-align: center;
}
.homepage_gallery_heading_content a,
.homepage_blog_heading_content a {
  color: #14a0df;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .homepage_gallery_heading,
  .homepage_blog_heading {
    padding: 48px 32px 24px 32px;
  }
  .homepage_gallery_heading_content > h1,
  .homepage_blog_heading_content > h1 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .homepage_gallery_heading,
  .homepage_blog_heading {
    padding: 40px 24px 20px 24px;
  }
  .homepage_gallery_heading_container,
  .homepage_blog_heading_container {
    width: 90%;
  }
  .homepage_gallery_heading_content > h1,
  .homepage_blog_heading_content > h1 {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .homepage_gallery_heading_content,
  .homepage_blog_heading_content {
    font-size: 0.95em;
  }
}
@media (max-width: 480px) {
  .homepage_gallery_heading,
  .homepage_blog_heading {
    padding: 32px 16px 16px 16px;
  }
  .homepage_gallery_heading_content > h1,
  .homepage_blog_heading_content > h1 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
  .homepage_gallery_heading_content > h1::before,
  .homepage_blog_heading_content > h1::before {
    width: 56px;
    height: 4px;
  }
  .homepage_gallery_heading_content p,
  .homepage_blog_heading_content p {
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .homepage_gallery_heading,
  .homepage_blog_heading {
    padding: 24px 12px 12px 12px;
  }
  .homepage_gallery_heading_content > h1,
  .homepage_blog_heading_content > h1 {
    font-size: 20px;
  }
}

/* =========================================================
   BLOG SLIDER
   ========================================================= */
.homepage_blog_slider {
  position: relative;
  height: 55vh;
  width: 100%;
  margin: 1% 0% 4% 0%;
}
.homepage_blog_slider_container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.homepage_blog_slider_track {
  width: 100%;
  height: 100%;
}
.homepage_blog_slider_track.slick-slider .slick-list {
  border-radius: 16px;
  overflow: hidden;
}
.homepage_blog_slide {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,1) 60%, #424242 66%, rgba(0,0,0,1) 79%);
}
.homepage_blog_slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.homepage_blog_slide_content {
  position: relative;
  top: -100%;
  width: 55%;
  color: white;
  line-height: 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-left: 6%;
}
.homepage_blog_slide_content .heading_title {
  margin-bottom: 4%;
}
.homepage_blog_slide_content .usertext {
  color: #33bfff;
  line-height: 1.3em;
}
.homepage_blog_slide_content .body_title .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.homepage_blog_slide_content .body_title a {
  color: #33bfff;
}
.homepage_blog_nav_prev,
.homepage_blog_nav_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4vh;
  cursor: pointer;
  z-index: 3;
}
.homepage_blog_nav_next {
  right: 32px;
}
.homepage_blog_nav_prev {
  left: 32px;
}

@media (max-width: 1024px) {
  .homepage_blog_slider {
    height: 58vh;
  }
  .homepage_blog_slider_container {
    padding: 0 32px;
  }
  .homepage_blog_slide_content {
    width: 65%;
  }
}
@media (max-width: 768px) {
  .homepage_blog_slider {
    height: 65vh;
  }
  .homepage_blog_slider_container {
    padding: 0 16px;
  }
  .homepage_blog_slide_content {
    width: 85%;
    font-size: 2.1vh;
  }
  .slider-button-white {
    display: none;
  }
}
@media (max-width: 480px) {
  .homepage_blog_slider {
    height: 75vh;
  }
  .homepage_blog_slider_container {
    padding: 0 12px;
  }
  .homepage_blog_slide_content {
    width: 90%;
    margin-left: 5%;
  }
}
@media (max-width: 360px) {
  .homepage_blog_slider {
    height: 80vh;
  }
}

/* =========================================================
   GALLERY
   ========================================================= */
.homepage_gallery {
  position: relative;
  width: 100%;
  margin-bottom: 4%;
}
.homepage_gallery_nav_container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.homepage_gallery_nav_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding: 0 24px;
}
.homepage_gallery_nav_item {
  cursor: pointer;
  padding: 8px 20px;
  border: 2px solid #eaeaea;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.homepage_gallery_nav_item .title {
  margin: 0;
  font-weight: 600;
  color: #6b6b6b;
}
.homepage_gallery_nav_item:hover,
.homepage_gallery_nav_item_active {
  border-color: #33bfff;
  background: #33bfff;
}
.homepage_gallery_nav_item:hover .title,
.homepage_gallery_nav_item_active .title {
  color: white;
}
.homepage_gallery_slider_container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 55vh;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.homepage_gallery_slider {
  width: 100%;
  height: 100%;
}
.homepage_gallery_slider_track {
  width: 100%;
  height: 100%;
}

.homepage_gallery_slider_track.slick-slider .slick-list {
  border-radius: 16px;
  overflow: hidden;
}
.homepage_gallery_slide {
  width: 100%;
  height: 100%;
}
.homepage_gallery_slide .entity-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homepage_gallery_nav_prev,
.homepage_gallery_nav_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4vh;
  cursor: pointer;
  z-index: 3;
}
.homepage_gallery_nav_next {
  right: 32px;
}
.homepage_gallery_nav_prev {
  left: 32px;
}

@media (max-width: 1024px) {
  .homepage_gallery_slider_container {
    height: 50vh;
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .homepage_gallery_nav_wrapper {
    gap: 8px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0 16px 8px 16px;
  }
  .homepage_gallery_nav_item {
    flex-shrink: 0;
    padding: 6px 16px;
  }
  .homepage_gallery_slider_container {
    height: 45vh;
    padding: 0 16px;
  }
}
@media (max-width: 480px) {
  .homepage_gallery_slider_container {
    height: 35vh;
    padding: 0 12px;
  }
}

/* =========================================================
   TESTIMONIAL HEADING
   ========================================================= */
.homepage_testimonial_heading {
  font-family: "Nunito", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: white;
  padding: 64px 24px 24px 24px;
}
.homepage_testimonial_heading_container {
  width: 100%;
  max-width: 1440px;
}
.homepage_testimonial_heading_content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.homepage_testimonial_heading_content h1 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  color: #101818;
  margin-bottom: 24px;
  padding-bottom: 16px;
}
.homepage_testimonial_heading_content h1::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 5px;
  width: 80px;
  background: #00a651;
  border-radius: 20px;
  transform: translateX(-50%);
}

/* =========================================================
   TESTIMONIAL SLIDER
   ========================================================= */
.homepage_testimonial {
  position: relative;
  height: 55vh;
  width: 100%;
  margin: 1% 0% 4% 0%;
}
.homepage_testimonial_container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.homepage_testimonial_track {
  width: 100%;
  height: 100%;
}

.homepage_testimonial_track.slick-slider .slick-list {
  border-radius: 16px;
  overflow: hidden;
}
.homepage_testimonial_slide {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,1) 60%, #424242 66%, rgba(0,0,0,1) 79%);
}
.homepage_testimonial_slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.homepage_testimonial_content {
  position: relative;
  top: -100%;
  width: 50%;
  color: white;
  line-height: 1.5em;
  font-size: 1.1em;
  display: flex;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  margin-left: 6%;
}
.homepage_testimonial_quote {
  margin-bottom: 4%;
}
.homepage_testimonial_name {
  font-weight: 700;
}
.homepage_testimonial_role {
  opacity: 0.85;
}

.homepage_testimonial_nav_prev,
.homepage_testimonial_nav_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 3;
}

.homepage_testimonial_nav_icon {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}
.homepage_testimonial_nav_prev {
  left: 32px;
}
.homepage_testimonial_nav_next {
  right: 32px;
}

@media (max-width: 1024px) {
  .homepage_testimonial_heading_content h1 {
    font-size: 32px;
  }
  .homepage_testimonial {
    height: 58vh;
  }
  .homepage_testimonial_container {
    padding: 0 32px;
  }
  .homepage_testimonial_content {
    width: 65%;
  }
}
@media (max-width: 768px) {
  .homepage_testimonial_heading {
    padding: 40px 24px 20px 24px;
  }
  .homepage_testimonial_heading_content h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .homepage_testimonial {
    height: 65vh;
  }
  .homepage_testimonial_container {
    padding: 0 16px;
  }
  .homepage_testimonial_content {
    width: 85%;
    font-size: 1em;
  }
  .homepage_testimonial_nav_prev,
  .homepage_testimonial_nav_next {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 480px) {
  .homepage_testimonial_heading {
    padding: 32px 16px 16px 16px;
  }
  .homepage_testimonial_heading_content h1 {
    font-size: 22px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
  .homepage_testimonial_heading_content h1::before {
    width: 56px;
    height: 4px;
  }
  .homepage_testimonial {
    height: 75vh;
  }
  .homepage_testimonial_container {
    padding: 0 12px;
  }
  .homepage_testimonial_content {
    width: 90%;
    margin-left: 5%;
    font-size: 0.9em;
  }
  .homepage_testimonial_nav_prev,
  .homepage_testimonial_nav_next {
    width: 32px;
    height: 32px;
  }
  .homepage_testimonial_nav_icon {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 360px) {
  .homepage_testimonial_heading_content h1 {
    font-size: 20px;
  }
  .homepage_testimonial {
    height: 80vh;
  }
}

/* =========================================================
   PARTNER HEADING
   ========================================================= */
.homepage_partner_heading {
  font-family: "Nunito", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: white;
  padding: 64px 24px 64px 24px;
}
.homepage_partner_heading_container {
  width: 100%;
  max-width: 1440px;
}
.homepage_partner_heading_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.6em;
}
.homepage_partner_heading_content h1 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  color: #101818;
  margin-bottom: 32px;
  padding-bottom: 16px;
}
.homepage_partner_heading_content h1::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 5px;
  width: 80px;
  background: #00a651;
  border-radius: 20px;
  transform: translateX(-50%);
}
.homepage_partner_heading_content p {
  padding: 8px 0;
  font-size: 16px;
  font-weight: 400;
  color: #2c2c2c;
  max-width: 700px;
}
.homepage_partner_heading_content a {
  display: inline-block;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: underline;
  color: #009f9c;
}
.homepage_partner_heading_content a:hover {
  color: #000;
}

/* =========================================================
   PARTNER LOGO SLIDER
   ========================================================= */
.homepage_partner_slider {
  position: relative;
  width: 100%;
  padding: 0 24px 48px 24px;
}
.homepage_partner_slider_container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 15vh;
  margin: 0 auto;
}
.homepage_partner_slider_track {
  width: 90%;
  height: 100%;
  margin: 0 auto;
}
.homepage_partner_slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 15vh !important;
}
.homepage_partner_logo {
  height: 80%;
  width: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.homepage_partner_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.homepage_partner_content {
  text-align: center;
}
.homepage_partner_content .heading_title p {
  font-size: 14px;
  color: #6b6b6b;
  margin-top: 8px;
}

.homepage_partner_nav_prev,
.homepage_partner_nav_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid #eaeaea;
  box-shadow: 0px 4px 10px 0px #00000017;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.25s ease, transform 0.25s ease;
}
.homepage_partner_nav_prev:hover,
.homepage_partner_nav_next:hover {
  background: #33bfff;
  transform: translateY(-50%) scale(1.05);
}
.homepage_partner_nav_prev:hover .homepage_partner_nav_icon,
.homepage_partner_nav_next:hover .homepage_partner_nav_icon {
  filter: brightness(0) invert(1);
}
.homepage_partner_nav_icon {
  width: 12px;
  height: 12px;
  opacity: 0.6;
}
.homepage_partner_nav_prev {
  left: 0;
}
.homepage_partner_nav_next {
  right: 0;
}

@media (max-width: 1024px) {
  .homepage_partner_heading {
    padding: 48px 32px 24px 32px;
  }
  .homepage_partner_heading_content h1 {
    font-size: 32px;
  }
  .homepage_partner_slider_container {
    height: 17vh;
  }
  .homepage_partner_slide {
    height: 17vh !important;
  }
}
@media (max-width: 768px) {
  .homepage_partner_heading {
    padding: 40px 24px 20px 24px;
  }
  .homepage_partner_heading_content h1 {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .homepage_partner_slider_container {
    height: 20vh;
  }
  .homepage_partner_slide {
    height: 20vh !important;
  }
}
@media (max-width: 480px) {
  .homepage_partner_heading {
    padding: 32px 16px 16px 16px;
  }
  .homepage_partner_heading_content h1 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
  .homepage_partner_heading_content h1::before {
    width: 56px;
    height: 4px;
  }
  .homepage_partner_slider_container {
    height: 24vh;
  }
  .homepage_partner_slide {
    height: 24vh !important;
  }
  .homepage_partner_nav_prev,
  .homepage_partner_nav_next {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 360px) {
  .homepage_partner_heading {
    padding: 24px 12px 12px 12px;
  }
  .homepage_partner_heading_content h1 {
    font-size: 20px;
  }
}