.new-section {
  margin-bottom: 64px;
}

.new-section-banner {
  overflow: visible;
  width: 100%;
  padding-top: 64px;
  margin-bottom: 64px;
  background: #fff;
}
.new-section-banner .wrapper-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  overflow: visible;
}
.new-section-banner .banner-content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  border-radius: 8px;
}
.new-section-banner .banner-content-left .banner-wrapper {
  max-width: 700px;
}
.new-section-banner .banner-content-left .banner-wrapper .banner-text {
  padding-right: 60px;
}
.new-section-banner .banner-content-left .banner-wrapper .banner__button {
  display: inline-block;
  color: var(--white, #FFF);
  font-family: Archivo;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 45px;
  background: var(--Orange, #F16731);
  padding: 16px 30px;
  text-decoration: none;
}
.new-section-banner .banner-content-left .banner-wrapper .banner__button a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}
.new-section-banner .banner-content-left .banner-wrapper .banner__button:hover {
  background-color: #ff8570;
}
.new-section-banner .banner-content-left .new-banner-heading {
  color: var(--black, #000);
  font-family: Archivo;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  padding-bottom: 8px;
}
.new-section-banner .banner-content-left .banner-subheading {
  color: var(--black, #000);
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  padding-bottom: 16px;
}
.new-section-banner .banner-content-left .banner-button {
  display: inline-block;
  background: #F16731;
  padding: 12px 24px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
  transition: background 0.3s ease-in-out;
}
.new-section-banner .banner-content-left .banner-button a {
  color: #fff;
  text-decoration: none;
}
.new-section-banner .banner-content-left .banner-button:hover {
  background: #c0392b;
}
.new-section-banner .banner-content-right {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-align: center;
}
.new-section-banner .banner-content-right .container {
  display: flex;
  width: 100%;
}
.new-section-banner .banner-content-right .card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  border-radius: 32px;
  color: #fff;
  cursor: pointer;
  flex: 1.5;
  margin: 10px;
  position: relative;
  transition: all 300ms ease-in-out;
  z-index: 1;
  display: flex;
  align-items: flex-end;
}
.new-section-banner .banner-content-right .news-content {
  opacity: 0;
  transform: translateY(10px); /* Slightly lower to prepare for animation */
  transition: opacity 250ms ease-in-out, transform 250ms ease-in-out;
  will-change: opacity, transform; /* Optimize animation */
}
.new-section-banner .banner-content-right .card.active {
  flex: 5;
  max-width: 120vw !important;
  position: relative;
  z-index: 10;
}
.new-section-banner .banner-content-right .card.active .news-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 15px;
  border-radius: 10px;
  max-width: 80%;
  color: #fff;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  opacity: 1;
  transform: translateY(0); /* Move into place */
}
.new-section-banner .banner-content-right .card.active::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
}
.new-section-banner .banner-content-right .news-title {
  font-size: 22px;
  margin-bottom: 8px;
  line-height: 120%;
}
.new-section-banner .banner-content-right .news-description {
  font-size: 16px;
  margin-bottom: 10px;
}
.new-section-banner .banner-content-right .banner__button {
  display: inline-block;
  color: var(--white, #FFF);
  font-family: Archivo;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 45px;
  background: var(--Orange, #F16731);
  padding: 16px 20px;
  text-decoration: none;
  margin-top: 15px;
}
.new-section-banner .banner-content-right .banner__button a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}
.new-section-banner .banner-content-right .banner__button:hover {
  background-color: #ff8570;
}
.new-section-banner .banner-content-right .news-link a {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  background-color: #f16730;
  font-family: Poppins, sans-serif;
  border-radius: 30px;
  padding: 6px 12px;
  margin-top: 16px;
  transition: background 150ms ease-in-out;
}
.new-section-banner .banner-content-right .news-link a:hover {
  background-color: rgb(255, 255, 255);
  color: #333;
}
.new-section-banner .banner-content-right .learn-more-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease-in-out;
}
.new-section-banner .banner-content-right .card.active .learn-more-icon {
  background: #F16731;
}
.new-section-banner .banner-content-right .card.active .learn-more-icon img {
  filter: brightness(0) invert(1);
}
@media (max-width: 480px) {
  .new-section-banner .banner-content-right .container {
    width: 100vw;
  }
  .new-section-banner .banner-content-right .card:nth-of-type(4),
  .new-section-banner .banner-content-right .card:nth-of-type(5) {
    display: none;
  }
}
@media (max-width: 768px) {
  .new-section-banner .wrapper-inner {
    grid-template-columns: 1fr;
  }
  .new-section-banner .banner-content-left,
  .new-section-banner .banner-content-right {
    padding: 0px;
  }
  .new-section-banner .new-banner-heading {
    font-size: 32px;
  }
  .new-section-banner .banner-subheading {
    font-size: 16px;
  }
}

.new-section.cta-section .cta-section-title {
  color: var(--Orange, #F16731);
  text-align: center;
  font-family: Archivo;
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 16px;
}
.new-section.cta-section .cta-section-subtitle {
  color: var(--black, #000);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0px;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.new-section.cta-section .cta-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1350px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
.new-section.cta-section .cta-container :hover {
  background-color: #D9D9D9;
}
.new-section.cta-section .cta-column {
  border-radius: 22px;
  border: 1px solid var(--CoolGray-20, #DDE1E6);
  background: var(--Default-White, #FFF);
  display: flex;
  height: 194px;
  padding: 24px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex: 1 0 auto;
}
.new-section.cta-section .cta-column .cta-title {
  color: var(--black, #000);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
}
.new-section.cta-section .cta-column .cta-text {
  font-size: 16px;
  margin-bottom: 15px;
}
.new-section.cta-section .cta-column .cta-button {
  text-decoration: none;
  color: var(--Orange, #F16731);
  font-family: Archivo;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.new-section.cta-section .cta-column .cta-button .learn-more-icon {
  padding-left: 10px;
}
@media (max-width: 1024px) {
  .new-section.cta-section .cta-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .new-section.cta-section .cta-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.new-section.two-column-cta-section {
  display: flex;
  justify-content: center;
  padding: 0px 80px 0px 80px;
  position: relative;
  /* Full-width background colors */
  /* Full-width background container */
  /* Responsive Design */
}
.new-section.two-column-cta-section .two-column-cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 2;
}
.new-section.two-column-cta-section .two-column-cta-left {
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 80px 32px 80px 0px;
}
.new-section.two-column-cta-section .two-column-cta-right {
  flex: 1;
  padding: 60px 0px 40px 80px;
  position: relative;
  z-index: 2;
}
.new-section.two-column-cta-section .two-column-cta-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-right: 100px;
}
.new-section.two-column-cta-section .two-column-cta-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.new-section.two-column-cta-section .two-column-cta-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.new-section.two-column-cta-section .two-column-cta-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: #F16731;
  z-index: -1;
}
.new-section.two-column-cta-section .two-column-cta-title {
  color: var(--Orange, #F16731);
  font-family: Archivo;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 46.2px */
  padding-bottom: 16px;
}
.new-section.two-column-cta-section .two-column-cta-subtitle {
  color: var(--CoolGray-90, #21272A);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  padding-bottom: 32px;
}
.new-section.two-column-cta-section .two-column-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.new-section.two-column-cta-section .cta-button {
  display: flex;
  height: 48px;
  padding: 16px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  background: var(--Orange, #F16731);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.5px;
}
.new-section.two-column-cta-section .cta-button.primary:hover {
  background-color: #ff8570;
}
.new-section.two-column-cta-section .cta-button.secondary {
  display: flex;
  height: 48px;
  padding: 16px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  border: 2px solid var(--Orange, #F16731);
  background-color: transparent;
  color: #F16731;
}
.new-section.two-column-cta-section .cta-button.secondary:hover {
  background: #f3f1f1;
}
.new-section.two-column-cta-section .cta-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #FFF;
  margin-bottom: 32px;
  padding-bottom: 8px;
}
.new-section.two-column-cta-section .cta-item .icon-learn-more-end {
  float: inline-end;
}
.new-section.two-column-cta-section .cta-item-title {
  color: #FFF;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 162.5% */
  text-decoration: none;
  width: 90%;
  display: inline-flex;
}
.new-section.two-column-cta-section .cta-item-link {
  color: #0073e6;
  text-decoration: underline;
  font-weight: bold;
}
.new-section.two-column-cta-section .cta-item-link:hover {
  text-decoration: none;
}
.new-section.two-column-cta-section .full-width-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.new-section.two-column-cta-section .full-width-bg.left {
  background: #D9D9D9;
}
.new-section.two-column-cta-section .full-width-bg.right {
  background: #f4f4f4;
}
@media (max-width: 768px) {
  .new-section.two-column-cta-section .two-column-cta-wrapper {
    flex-direction: column;
  }
  .new-section.two-column-cta-section .two-column-cta-left,
  .new-section.two-column-cta-section .two-column-cta-right {
    width: 100%;
  }
  .new-section.two-column-cta-section .two-column-cta-buttons {
    justify-content: center;
  }
}
@media (max-width: 998px) {
  .new-section.two-column-cta-section {
    padding: 0px 0px 0px 0px;
  }
  .new-section.two-column-cta-section .two-column-cta-left {
    padding-right: 0px;
  }
}

@media (max-width: 768px) {
  .two-column-cta-right {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 40px 0px 5px 30px !important;
  }
  .two-column-cta-right::before {
    width: 100vw;
    left: 0;
  }
}
.new-section.new-tab-container .tabs-container {
  display: flex;
  flex-direction: column;
}
.new-section.new-tab-container .tabs-container .tabs {
  display: flex;
  gap: 10px;
}
.new-section.new-tab-container .tabs-container .tabs .tab-link {
  color: var(--Orange, #F16731);
  /* Button/M */
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  letter-spacing: 0.5px;
  text-decoration: none;
  padding-bottom: 16px;
  margin-right: 24px;
}
.new-section.new-tab-container .tabs-container .tabs .tab-link.active {
  color: #000;
  border-bottom: 2px solid #000;
}
.new-section.new-tab-container .tabs-container .tab-content-wrapper {
  width: 100%;
  display: flex;
}
.new-section.new-tab-container .tabs-container .tab-content-wrapper .tab-content {
  margin-top: 32px;
  display: none;
  flex-direction: column;
  text-align: left;
}
.new-section.new-tab-container .tabs-container .tab-content-wrapper .tab-content.active {
  display: flex;
}
.new-section.new-tab-container .tabs-container .tab-content-wrapper .tab-content .tab-title {
  color: var(--Orange, #F16731);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 20px */
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 16px;
}
.new-section.new-tab-container .tabs-container .tab-content-wrapper .tab-content .tab-desc {
  color: var(--CoolGray-90, #21272A);
  font-family: Archivo;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 46.2px */
  padding-bottom: 64px;
  max-width: 50%;
}
.new-section.new-tab-container .tabs-container .tab-content-wrapper .tab-content img {
  max-height: 700px;
  height: auto;
  border-radius: 5px;
  display: block;
  margin-left: auto;
}

.new-project-container {
  display: flex;
  align-items: center;
  position: relative;
}
.new-project-container .left-column {
  flex: none;
  width: 49vw; /* Full width on the left side */
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.new-project-container .left-column img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.new-project-container .wrapper-inner {
  max-width: 1200px;
  flex: 1;
  margin-left: 50vw;
  padding-left: 20px;
}
.new-project-container .right-column {
  flex: 1;
  position: relative;
}
.new-project-container .right-column .our-project-heading-prefix {
  color: var(--black, #000);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 108.333% */
}
.new-project-container .right-column .our-project-heading-title {
  color: var(--Orange, #F16731);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Archivo;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 54px; /* 128.571% */
  letter-spacing: -0.4px;
}
.new-project-container .right-column .content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
  max-width: 70vh;
}
.new-project-container .right-column .content-item {
  padding: 15px;
  padding-left: 0;
  border-radius: 8px;
  text-align: left;
}
.new-project-container .right-column .content-item img {
  max-width: 48px;
  padding-bottom: 16px;
}
.new-project-container .right-column .content-item h3 {
  color: var(--black, #000);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Archivo;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 166.667% */
  padding-bottom: 16px;
}
.new-project-container .right-column .content-item p {
  color: var(--black, #000);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* number of lines to show */
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
.new-project-container .right-column .content-item .partners {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-right: 16px;
}
.new-project-container .right-column .content-item a {
  color: var(--Orange, #F16731);
  font-family: Archivo;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 16px */
  letter-spacing: 0.5px;
  text-decoration: none;
}
.new-project-container .right-column .content-item a .read-more {
  padding-bottom: 0px;
  padding-left: 16px;
}
.new-project-container .right-column .learn-more-project {
  margin-top: 16px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  background: var(--Orange, #F16731);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  position: relative;
  font-size: 16px;
  letter-spacing: 0.5px;
}
.new-project-container .right-column .learn-more-project:hover {
  background-color: #ff8570;
}

.new-section.new-full-width-slider .featured_content_banner_section_01 {
  padding-bottom: 0;
  margin-bottom: 0;
}
.new-section.new-full-width-slider .featured_content_banner_section_01 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px 0;
}
.new-section.new-full-width-slider .featured_content_banner_section_01 .featured__arrows {
  top: 0;
  left: 0;
}
.new-section.new-full-width-slider .featured_content_banner_section_01 .featured__arrows .arrow-left {
  top: 250px;
  position: absolute;
  background-color: transparent;
}
.new-section.new-full-width-slider .featured_content_banner_section_01 .featured__arrows .arrow-left svg {
  height: 57px;
  width: 100%;
}
.new-section.new-full-width-slider .featured_content_banner_section_01 .featured__arrows .arrow-right {
  top: 250px;
  right: 0;
  position: absolute;
  background-color: transparent;
}
.new-section.new-full-width-slider .featured_content_banner_section_01 .featured__arrows .arrow-right svg {
  height: 57px;
  width: 100%;
}
.new-section.new-full-width-slider .featured_content_banner_section_01 .featured__block-left {
  flex: 1;
  max-width: 49vw;
}
.new-section.new-full-width-slider .featured_content_banner_section_01 .featured__block-left img {
  width: 100%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1200px) {
  .new-section.new-full-width-slider .featured_content_banner_section_01 .featured__block-left img {
    height: 500px;
  }
}
@media (max-width: 1200px) and (min-width: 768px) {
  .new-section.new-full-width-slider .featured_content_banner_section_01 .featured__block-left img {
    height: 500px;
  }
}
.new-section.new-full-width-slider .featured_content_banner_section_01 .featured__block-right {
  flex: 1;
  max-width: 50vw;
  padding: 50px;
  padding-left: 35px;
  position: relative;
  z-index: 2;
}
@media (min-width: 1800px) {
  .new-section.new-full-width-slider .featured_content_banner_section_01 .featured__block-right {
    padding-right: 250px;
  }
}
.new-section.new-full-width-slider .featured_content_banner_section_01 .featured__block-right .featured__title {
  color: var(--Orange, #F16731);
  font-family: Archivo;
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
  padding-bottom: 16px;
  text-decoration: none;
}
.new-section.new-full-width-slider .featured_content_banner_section_01 .featured__block-right .featured__title a {
  text-decoration: none !important;
  border-bottom: none;
  color: #F16731;
}
.new-section.new-full-width-slider .featured_content_banner_section_01 .featured__block-right .featured__tagline {
  color: var(--CoolGray-90, #21272A);
  font-size: 18px;
  padding-bottom: 16px;
  color: var(--CoolGray-90, #21272A);
  font-family: Archivo;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 25.2px */
}
.new-section.new-full-width-slider .featured_content_banner_section_01 .featured__block-right .featured__desc {
  color: var(--CoolGray-90, #21272A);
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  margin: 0;
  padding-bottom: 16px;
}
.new-section.new-full-width-slider .featured_content_banner_section_01 .featured__block-right .featured__learn-more {
  display: inline-block;
  padding: 16px 24px;
  border-radius: 45px;
  background: var(--Orange, #F16731);
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .new-section.new-full-width-slider .featured_content_banner_section_01 .container {
    flex-direction: column;
    text-align: left;
  }
  .new-section.new-full-width-slider .featured_content_banner_section_01 .featured__block-left, .new-section.new-full-width-slider .featured_content_banner_section_01 .featured__block-right {
    max-width: 100%;
  }
}
.new-section.new-full-width-slider .featured_content_banner_section_01 .slick-dots {
  display: none;
}

.new-slider_wrapper_resources {
  position: relative;
  padding-bottom: 40px;
}
.new-slider_wrapper_resources .post-slider-slick {
  display: flex;
  gap: 20px;
}
.new-slider_wrapper_resources .post-item {
  position: relative;
  overflow: hidden;
  padding: 10px;
  padding-left: 0px;
}
.new-slider_wrapper_resources .post-item .item-image {
  position: relative;
  display: block;
  overflow: hidden;
  height: 455px;
}
.new-slider_wrapper_resources .post-item .item-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease-in-out;
}
.new-slider_wrapper_resources .post-item .item-image img {
  width: 100%;
  display: block;
}
.new-slider_wrapper_resources .post-item .item-image .item-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  height: 60%;
  background: var(--Orange, #F16731);
  border-radius: 0 0 10px 10px;
  z-index: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
}
.new-slider_wrapper_resources .post-item .item-image .post-title {
  color: var(--white, #FFF);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Archivo;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4; /* Adjust based on font */
  display: -webkit-box;
  -webkit-line-clamp: 5; /* Limits to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word; /* Ensures words wrap correctly */
}
.new-slider_wrapper_resources .post-item .item-image .post-Author {
  color: var(--white, #FFF);
  padding-bottom: 8px;
}
.new-slider_wrapper_resources .post-item .item-image .post-date {
  color: var(--white, #FFF);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
}
.new-slider_wrapper_resources .post-item .item-image .post-description {
  color: var(--white, #FFF);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* Adjusted for proper spacing */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  padding-bottom: 24px;
  max-width: 100%; /* Prevents overflowing */
  max-height: 44px; /* Ensure exactly 2 lines */
}
.new-slider_wrapper_resources .post-item .item-image .post-title {
  margin-bottom: 4px; /* Adjust as needed */
}
.new-slider_wrapper_resources .post-item .item-image .post-description {
  margin-top: 4px;
}
.new-slider_wrapper_resources .post-item .item-image .learn-more {
  color: var(--white, #FFF);
  font-family: Archivo;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 16px */
  letter-spacing: 0.5px;
  text-decoration: none;
  display: flex;
  font-size: 14px;
}
.new-slider_wrapper_resources .post-item .item-image .learn-more img {
  margin-left: 5px;
  display: flex;
  width: 10px;
}
.new-slider_wrapper_resources .slider-controls {
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  margin-top: 64px;
  padding-right: 20%;
}
.new-slider_wrapper_resources .slider-progress {
  flex: 0 0 80%;
  height: 2px;
  background: #E4DDD4;
  border-radius: 3px;
  overflow: hidden;
}
.new-slider_wrapper_resources .slider-progress .progress-bar {
  width: 0%;
  height: 100%;
  background: #ff6b00;
  transition: width 0.3s ease-in-out;
}
.new-slider_wrapper_resources .slider-nav {
  flex: 0 0 20%;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.new-slider_wrapper_resources .slick-prev,
.new-slider_wrapper_resources .slick-next {
  width: 45px;
  height: 45px;
  background-color: transparent;
  border: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
}
.new-slider_wrapper_resources .slick-prev {
  background-image: url("/wp-content/themes/ghhin/assets/img/arrow_back.png");
}
.new-slider_wrapper_resources .slick-next {
  background-image: url("/wp-content/themes/ghhin/assets/img/arrow_forward.png");
}

.new-resource-slider.resource-title-section .title-prefix {
  color: var(--black, #000);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px; /* 108.333% */
  padding-bottom: 16px;
}
.new-resource-slider.resource-title-section .resource-title {
  padding-bottom: 16px;
}
.new-resource-slider.resource-title-section .resource-title .title {
  color: var(--Orange, #F16731);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Archivo;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 54px; /* 128.571% */
  letter-spacing: -0.4px;
}
.new-resource-slider.resource-title-section .resource-description {
  color: var(--black, #000);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 130.435% */
  padding-bottom: 16px;
  max-width: 70%;
}
@media (max-width: 998px) {
  .new-resource-slider.resource-title-section .resource-description {
    max-width: 100%;
  }
}
.new-resource-slider.resource-title-section .resource-button {
  display: flex;
  height: 48px;
  padding: 16px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  background: var(--Orange, #F16731);
  margin-bottom: 32px;
  color: #fff;
  text-decoration: none;
  max-width: 285px;
  font-size: 16px;
  letter-spacing: 0.5px;
}
.new-resource-slider.resource-title-section .resource-button:hover {
  background-color: #ff8570;
}

.new-section.new-container-slider .featured_content_banner_section {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.new-section.new-container-slider .featured_content_banner_section .featured__arrows {
  top: 0;
  left: 0;
}
.new-section.new-container-slider .featured_content_banner_section .featured__arrows .arrow-left {
  top: 200px;
  position: absolute;
  background-color: transparent;
  left: -115px;
}
@media (max-width: 998px) {
  .new-section.new-container-slider .featured_content_banner_section .featured__arrows .arrow-left {
    left: -65px;
  }
}
@media (max-width: 998px) and (min-width: 768px) {
  .new-section.new-container-slider .featured_content_banner_section .featured__arrows .arrow-left {
    left: -45px;
    width: 58px;
  }
}
@media (max-width: 1200px) and (min-width: 998px) {
  .new-section.new-container-slider .featured_content_banner_section .featured__arrows .arrow-left {
    left: -70px;
    width: 58px;
  }
}
.new-section.new-container-slider .featured_content_banner_section .featured__arrows .arrow-left svg {
  height: 57px;
  width: 100%;
}
.new-section.new-container-slider .featured_content_banner_section .featured__arrows .arrow-right {
  top: 200px;
  right: -130px;
  position: absolute;
  background-color: transparent;
}
@media (max-width: 998px) {
  .new-section.new-container-slider .featured_content_banner_section .featured__arrows .arrow-right {
    right: -90px;
  }
}
@media (max-width: 998px) and (min-width: 768px) {
  .new-section.new-container-slider .featured_content_banner_section .featured__arrows .arrow-right {
    right: -77px;
    width: 58px;
  }
}
@media (max-width: 1200px) and (min-width: 998px) {
  .new-section.new-container-slider .featured_content_banner_section .featured__arrows .arrow-right {
    right: -110px;
    width: 58px;
  }
}
.new-section.new-container-slider .featured_content_banner_section .featured__arrows .arrow-right svg {
  height: 57px;
  width: 100%;
}
.new-section.new-container-slider .featured_content_banner_section .front_page_margin {
  top: 0px;
}
.new-section.new-container-slider .featured_content_banner_section .featured__block-left {
  display: block;
  background-color: #F16731;
  position: relative;
  padding: 30px;
  padding-left: 50px;
  padding-top: 120px;
  padding-right: 95px;
  max-height: 510px;
}
.new-section.new-container-slider .featured_content_banner_section .featured__block-left .featured__title {
  color: var(--white, #FFF);
  font-family: Archivo;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 46.2px */
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 16px;
}
.new-section.new-container-slider .featured_content_banner_section .featured__block-left .featured__tagline {
  display: inline-flex;
  padding: 0px 0.48px 0.24px 0px;
  justify-content: center;
  align-items: flex-start;
  gap: 1646px;
  flex-shrink: 0;
  color: var(--CoolGray-90, #21272A);
  font-size: 18px;
  padding-bottom: 16px;
  text-decoration: none;
}
.new-section.new-container-slider .featured_content_banner_section .featured__block-left .featured__desc {
  color: #FFF;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
  margin-bottom: 16px;
}
.new-section.new-container-slider .featured_content_banner_section .featured__block-left .featured__learn-more {
  display: flex;
  height: 48px;
  padding: 16px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  background: var(--white, #FFF);
  margin-right: 16px;
  font-size: 16px;
  letter-spacing: 0.5px;
}
.new-section.new-container-slider .featured_content_banner_section .featured__block-left .featured__learn-more-second {
  display: flex;
  height: 48px;
  padding: 16px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
  border: 2px solid var(--white, #FFF);
  color: #fff;
}
.new-section.new-container-slider .featured_content_banner_section .featured__block-left .links {
  display: flex;
}
.new-section.new-container-slider .featured_content_banner_section .container {
  box-shadow: none;
  margin-bottom: 0px;
}
.new-section.new-container-slider .featured_content_banner_section .featured__block-right {
  position: relative;
  z-index: 2;
  padding: 0px;
}
@media only screen and (min-width: 998px) {
  .new-section.new-container-slider .featured_content_banner_section .featured__block-right {
    max-width: 50%;
  }
}
.new-section.new-container-slider .featured_content_banner_section .featured__block-right img {
  height: 100%;
  width: 100%;
  max-height: 510px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 998px) {
  .new-section.new-container-slider .featured_content_banner_section .featured__block-right img {
    max-width: 100%;
  }
}
.new-section.new-container-slider .slider__toggles {
  display: none;
}

.new-section.centered-cta-section {
  text-align: center;
  padding: 0px 20px;
}
.new-section.centered-cta-section .cta-section-title {
  color: var(--Orange, #F16731);
  font-family: Archivo, sans-serif;
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 64px;
  padding-left: 250px;
  padding-right: 250px;
}
@media (max-width: 998px) {
  .new-section.centered-cta-section .cta-section-title {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.new-section.centered-cta-section .cta-links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1050px;
  margin: 0 auto;
}
.new-section.centered-cta-section .cta-column {
  background: var(--Default-White, #FFF);
  padding: 16px;
  text-align: left;
  flex: 1 1 calc(50% - 20px);
  max-width: 525px;
  border-bottom: 1px solid var(--Orange, #F16731);
}
.new-section.centered-cta-section .cta-column .cta-title {
  color: var(--black, #000);
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 10px;
}
.new-section.centered-cta-section .cta-column img {
  float: inline-end;
}
.new-section.centered-cta-section .cta-column .cta-button {
  align-items: center;
  color: var(--Orange, #000);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.new-section.centered-cta-section .cta-column .cta-button:hover {
  color: #d35400;
}
.new-section.centered-cta-section .cta-column .cta-button .learn-more-icon {
  padding-left: 10px;
}
@media (max-width: 768px) {
  .new-section.centered-cta-section .cta-links-container {
    flex-direction: column;
    align-items: center;
  }
  .new-section.centered-cta-section .cta-column {
    flex: 1 1 100%;
    width: 100%;
    text-align: left;
  }
}

.new-section-bidirectional-scroll {
  overflow: hidden;
  width: 100%;
}
.new-section-bidirectional-scroll .section-title {
  color: var(--Orange, #F16731);
  text-align: center;
  font-family: Archivo;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 46.2px */
  padding-bottom: 32px;
}
.new-section-bidirectional-scroll .view-all-wrapper {
  text-align: center;
  margin-top: 20px;
}
.new-section-bidirectional-scroll .view-all-btn {
  display: inline-block;
  color: var(--white, #FFF);
  font-family: Archivo;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 45px;
  background: var(--Orange, #F16731);
  padding: 16px 30px;
}
.new-section-bidirectional-scroll .carousel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
}
.new-section-bidirectional-scroll .carousel {
  display: flex;
  gap: 150px;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  padding: 32px 0;
}
.new-section-bidirectional-scroll .carousel-item {
  flex: 0 0 auto;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-section-bidirectional-scroll .carousel-item img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.new-section-bidirectional-scroll .row-1, .new-section-bidirectional-scroll .row-3, .new-section-bidirectional-scroll .row-2 {
  animation: scroll-right 50s linear infinite;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.case_studies_section .content-block .case-studies__title {
  color: #F16731;
  width: 100%;
  display: block;
  font-size: 32px !important;
}

@media (max-width: 480px) {
  .new-section.new-section-banner .wrapper-inner .banner-content-left {
    max-width: 455px;
  }
  .new-section.cta-section .cta-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .new-project-container {
    display: block;
    position: relative;
  }
  .new-project-container .left-column {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    bottom: auto;
    margin-bottom: 20px;
  }
  .new-project-container .left-column img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .new-project-container .wrapper-inner {
    margin-left: 0;
    padding-left: 0;
  }
  .new-project-container .right-column {
    padding: 0 30px;
  }
  .new-project-container .right-column .content-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .new-project-container .right-column .content-grid .content-item {
    padding: 0px;
  }
  .new-project-container .right-column .learn-more-project {
    justify-content: center;
    text-align: center;
  }
  .new-section.new-container-slider .featured_content_banner_section .container.active {
    display: flex;
    flex-direction: column-reverse;
  }
  .new-section.new-container-slider .featured_content_banner_section .featured__arrows .arrow-right {
    width: 40px;
    right: -65px;
  }
  .new-section.new-container-slider .featured_content_banner_section .featured__arrows .arrow-left {
    width: 40px;
    left: -35px;
  }
  .new-section.new-container-slider .featured_content_banner_section .featured__block-left {
    padding: 25px !important;
    height: 40vh;
  }
  .new-section.new-container-slider .featured_content_banner_section .featured__block-left .featured__title {
    font-size: 24px !important;
  }
  .new-section.centered-cta-section {
    padding: 0px 0px;
  }
  .new-section.centered-cta-section .cta-section-title {
    padding-left: 0px;
    padding-right: 0px;
  }
  .new-section.new-full-width-slider .featured_content_banner_section_01 .featured__arrows .arrow-left {
    width: 40px;
  }
  .new-section.new-full-width-slider .featured_content_banner_section_01 .featured__arrows .arrow-right {
    width: 40px;
    right: 0px;
  }
  .new-section.new-full-width-slider .featured_content_banner_section_01 .featured__block-left {
    width: 100%;
    height: auto;
  }
  .new-section.new-full-width-slider .featured_content_banner_section_01 .featured__block-left img {
    width: 100%;
    height: 255px;
  }
  .new-section.new-full-width-slider .featured_content_banner_section_01 .featured__block-right {
    padding-left: 30px;
    width: 100%;
  }
}
@media (max-width: 998px) and (min-width: 765px) {
  .new-section.new-full-width-slider .featured_content_banner_section .featured__arrows .arrow-left {
    width: 40px;
  }
  .new-section.new-full-width-slider .featured_content_banner_section .featured__arrows .arrow-right {
    width: 40px;
    right: -34px;
  }
  .new-section.new-full-width-slider .featured_content_banner_section .featured__block-left {
    width: 100%;
    height: auto;
  }
  .new-section.new-full-width-slider .featured_content_banner_section .featured__block-left img {
    width: 100%;
  }
  .new-section.new-full-width-slider .featured_content_banner_section .featured__block-right {
    padding-top: 0px;
  }
}
@media (max-width: 850px) {
  /* Stack text and card sections vertically */
  .new-section-banner .wrapper-inner {
    display: flex;
    flex-direction: column;
  }
  /* Horizontal scroll area */
  .new-section-banner {
    /* Prevent scrollbar styling from interfering */
    /* Hide the scrollbar */
  }
  .new-section-banner .banner-content-right .container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth; /* Add smooth scrolling */
  }
  .new-section-banner .banner-content-right .card.active {
    transition: transform 0.4s ease, opacity 0.4s ease; /* Smooth transition for transform and opacity */
    flex: 0 0 80% !important; /* The active card takes 80% width */
    scroll-snap-align: center !important; /* Ensures smooth scroll behavior and focus on active card */
    height: 60vh;
  }
  .new-section-banner .banner-content-right .card {
    scroll-snap-align: start;
    height: 60vh;
    transition: transform 0.4s ease, opacity 0.4s ease; /* Smooth transition for transform and opacity */
  }
  .new-section-banner .banner-content-right .container {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .new-section-banner .banner-content-right .container::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
  }
}
/* SCSS Styles */
.new-full-width-slider .featured_content_banner_section_01 {
  position: relative;
  overflow: hidden;
  /* Arrows */
  /* Toggle Indicators */
}
.new-full-width-slider .featured_content_banner_section_01 .slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.new-full-width-slider .featured_content_banner_section_01 .slide-container {
  min-width: 100%;
  transition: opacity 0.5s ease-in-out;
  display: none;
}
.new-full-width-slider .featured_content_banner_section_01 .slide-container.active {
  display: flex;
}
@media (max-width: 768px) {
  .new-full-width-slider .featured_content_banner_section_01 .slide-container.active {
    display: block;
  }
}
.new-full-width-slider .featured_content_banner_section_01 .featured__arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10; /* Ensure the arrows are above other elements */
}
.new-full-width-slider .featured_content_banner_section_01 .arrow-left, .new-full-width-slider .featured_content_banner_section_01 .arrow-right {
  cursor: pointer;
  z-index: 15; /* Make sure the arrows are clickable */
  position: relative;
}
.new-full-width-slider .featured_content_banner_section_01 .arrow-left svg, .new-full-width-slider .featured_content_banner_section_01 .arrow-right svg {
  fill: #F16731;
  width: 30px;
  height: 30px;
}
.new-full-width-slider .featured_content_banner_section_01 .slider__toggles {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  z-index: 5;
}
.new-full-width-slider .featured_content_banner_section_01 .toggle {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
.new-full-width-slider .featured_content_banner_section_01 .toggle.active {
  background-color: #F16731;
}

.hero_banner_section {
  margin-top: 24px;
}

.page__banner {
  margin-top: 24px;
}

.bootstrap-page-content .form-check-input:checked {
  background-color: #F16731 !important;
  border-color: #F16731 !important;
}