/* 
Theme Name: Ganesha Ecosphere LTD
Version:1.0
Description: Ganesha Ecosphere LTD Website created by Cyberworx Technologies.
Author: Mohit Kumar | Cyberworx Technologies
Author URI: https://cyberworx.in/
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');

/*@font-face {*/
/*  font-family: 'Uni Neue-Trial';*/
/*  src: url('../fonts/UniNeue-Trial-Bold.woff2') format('woff2'),*/
/*    url('../fonts/UniNeue-Trial-Bold.woff') format('woff');*/
/*  font-weight: bold;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/

/*@font-face {*/
/*  font-family: 'Uni Neue-Trial';*/
/*  src: url('../fonts/UniNeue-Trial-Regular.woff2') format('woff2'),*/
/*    url('../fonts/UniNeue-Trial-Regular.woff') format('woff');*/
/*  font-weight: normal;*/
/*  font-style: normal;*/
/*  font-display: swap;*/
/*}*/


:root {
  --primary: #027A3A;
  --secondary: #123530;
  --accent: #048626;
  --accent-secondary: #65AC37;
  --color-text: #272727;
  --color-border: #8BA6A2;
  --color-border-secondary: #5CA66F;
  --color-off: #DAE4DC;
  --error: #ce0606;
  --cream: #F7EFDA;
  --light: #F4FBEF;
  --white: #ffffff;
  --font-heading: "Noto Sans", sans-serif;
  --font-body: "Outfit", sans-serif;
  font-size: 18px;
  /* rewriting variables */
  --swiper-pagination-progressbar-bg-color: #478B81;
  --swiper-pagination-color: var(--accent-secondary);
  --swiper-theme-color: var(--accent-secondary);
  accent-color: var(--accent);
}

::selection {
  color: var(--light);
  background: var(--accent);
}

::-moz-selection {
  /* Code for Firefox */
  color: var(--light);
  background: var(--accent);
}

* {
  padding: 0;
  border: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-optical-sizing: auto;
}

a {
  color: var(--secondary);
  text-decoration: none;
}

/* Bootstrap Overwrites */
/*@media (min-width: 1200px) {*/

/*  .container,*/
/*  .container-lg,*/
/*  .container-md,*/
/*  .container-sm,*/
/*  .container-xl {*/
/*    max-width: 92%;*/
/*  }*/
/*}*/

/* @media (min-width: 1600px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1440px;
  }
} */

.no-container {
  max-width: 100vw;
  overflow: hidden;
}

p {
  margin-bottom: 0px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 500;
}

.h1 {
  font-size: 70px;
  line-height: 72px;
  font-weight: 500;
}

.h2 {
  font-size: 60px;
  line-height: 62px;
  font-weight: 500;
}

.h3 {
  font-size: 50px;
  line-height: 62px;
  font-weight: 500;
}

.h4 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 500;
}

.h5 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 500;
}

/* elements */
.btn {
  min-width: 150px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-heading);
  text-align: center;
  padding: 12px 24px;
  border-radius: 40px;
}

.btn-theme {
  background-color: var(--primary);
  color: var(--white);
}

.btn-theme:hover {
  background-color: var(--accent-secondary);
  color: var(--white);
}

.btn-theme-light {
  background-color: var(--white);
  color: var(--color-text);
}

.btn-theme-light:hover {
  background-color: var(--accent-secondary);
  color: var(--white);
}

.btn-have-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
}

.btn-have-icon span:has(svg) {
  display: grid;
  place-content: center;
}

.btn-have-icon span>svg {
  width: 100%;
  height: auto;
}

.tag-pill {
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  font-weight: bold;
  font-family: var(--font-heading);
  padding: 5px 14px;
  border-radius: 20px;
  text-align: center;
}

.tag-pill--dark {
  background-color: #272727;
  color: var(--accent-secondary);
}

/* Utility */
.section-padding {
  padding-top: 65px;
  padding-bottom: 65px;
}

.font-body {
  font-family: var(--font-body);
}

.font-heading {
  font-family: var(--font-heading);
}

.font-size-18 {
  font-size: 18px;
}

.font-size-20 {
  font-size: 20px;
}

.font-size-40 {
  font-size: 40px;
}

.bg-layer {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  z-index: -1;
}

.bg-layer>* {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.bg-layer.have-overlay::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background: #000000;
  opacity: 0.7;
}

.img-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.theme-nav-tabs {
  border-bottom: 0px;
  column-gap: 40px;
  row-gap: 24px;
}

.theme-nav-tabs .nav-link {
  font-size: 26px;
  font-family: var(--font-body);
  color: var(--secondary);
  border-radius: 0px;
  border: 0px;
  margin: 0px;
  padding: 8px 5px;
}

.theme-nav-tabs .nav-link.active {
  border-bottom: 3px solid var(--accent);
  color: var(--accent);
}

/* swiper classes overides */
.swiper-navigation-theme .swiper-button-next,
.swiper-navigation-theme .swiper-button-prev {
  height: 46px;
  width: 70px;
  border-radius: 40px;
}

.swiper-navigation-theme .swiper-button-next::after,
.swiper-navigation-theme .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 600;
}

.swiper-navigation-static {
  display: flex;
  column-gap: 8px;
  justify-content: center;
}

.swiper-navigation-static .swiper-button-next,
.swiper-navigation-static .swiper-button-prev {
  position: static;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  transform: translate(0);
  margin: 0px;
}

.swiper-navigation-theme--primary .swiper-button-next,
.swiper-navigation-theme--primary .swiper-button-prev {
  background: var(--primary);
  color: var(--white)
}

.swiper-navigation-theme--primary .swiper-button-next:hover,
.swiper-navigation-theme--primary .swiper-button-prev:hover {
  background: var(--accent-secondary);
  color: var(--white)
}

/* header */

.main-header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 99;
  background: var(--cream);
}

.main-header .navbar-nav .nav-link {
  font-size: 16px;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--secondary);
  padding-left: 0px;
  padding-right: 0px;
}

.main-header .navbar-nav {
  column-gap: 44px;
  row-gap: 20px;
}

.main-header .desktop-nav-wrap {
  column-gap: 44px;
}

.main-header .navbar-brand {
  max-width: 350px;
  display: block;
}

.main-header .navbar-brand img {
  width: 100%;
  height: auto;
}

/* Footer */

.main-footer {
  background: var(--primary);
  color: var(--white);
}

.f-logo {
  max-width: 400px;
}

.f-logo img {
  width: 100%;
  height: auto;
}

.footer-about {
  margin-top: 20px;
}

.footer-social {
  margin-top: 50px;
}

.social-links {
  display: flex;
  padding: 0px;
  list-style: none;
  column-gap: 20px;
  row-gap: 10px;
}

.footer-left,
.footer-right {
  padding-top: 90px;
  padding-bottom: 100px;
  min-height: 100%;
}

.footer-left {
  border-right: 1px solid var(--color-border-secondary);
  padding-right: 40px;
}

.footer-right {
  padding-left: 40px;
}

.footer-menu-nav {
  padding: 0px;
  list-style: none;
  margin-top: 20px;

}

.footer-menu-nav li+li {
  margin-top: 15px;
}

.footer-menu-nav li a {
  color: var(--white);
}

.footer-menu-nav.contact-links li a {
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 24px;
  padding-bottom: 24px;
  border: 1px solid var(--color-border-secondary);
}

.credits-text a {
  color: inherit;
}

/* Home */
#home-banner {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  color: var(--white);
}

#home-banner .content-layer {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}

#home-banner .bg-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
}

#home-banner .media-wrap {
  width: 100%;
  height: 100%;
}

#home-banner .media-wrap>video,
#home-banner .media-wrap>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home-banner .bg-layer::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9;
  background: linear-gradient(90deg, rgba(3, 3, 3, 0.76) 5.25%, rgba(2, 2, 2, 0.547599) 43.57%, rgba(2, 2, 2, 0.42833) 56.5%, rgba(0, 0, 0, 0) 82.4%);
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

#home-banner .thumb-text {
  font-size: 16px;
  line-height: 22px;
  padding-bottom: 30px;
  cursor: pointer;
  transition: 0.2s ease;
}

#home-banner .swiper-slide-thumb-active .thumb-text {
  font-size: 18px;
  font-weight: 600;
}

#home-banner .swiper-pagination {
  position: static;
  margin-top: 80px;
  margin-bottom: 20px;
}

#home-banner .swiper-pagination-progressbar {
  height: 1px;
}

#home-banner .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 2px;
}

#home-banner .banner-content-item {
  max-width: 750px;
}

#home-about {
  padding-top: 180px;
  padding-bottom: 238px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  background-color: var(--primary);
  background-image: url('../img/home-about-bg.svg');
  background-size: cover;
  background-blend-mode: soft-light;
}

/*#home-about .h3 span {*/
/*  font-family: var(--font-heading);*/
/*  color: #67BB8F;*/
/*}*/

#home-about #target-text * {
  font-family: var(--font-heading);
}

.word {
  white-space: nowrap;
}

.char {
  opacity: 0.1;
  /* "Initially has low opacity" */
}

#home-product-swiper .swiper-wrapper {
  padding-left: 10%;
}

#home-product-swiper .swiper-slide {
  width: 30vw;
  max-width: 450px;
  height: 400px;
}

#home-product-swiper .swiper-slide.swiper-slide-active {
  width: 50vw;
  max-width: 760px;
}

.product-block--slide .img-cover {
  width: 100%;
  height: 280px;
}

.product-block--slide .content-wrap {
  padding: 12px 30px;
  padding-right: 100px;
}

.product-block--slide .content-wrap h3 a {
  color: inherit;
  font-family: var(--font-heading);
}

.product-block--slide {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  overflow: hidden;
  transition: 0.4s ease;
  position: relative;
  height: 100%;
}

.product-block--slide .product-applications ul {
  padding: 0px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  flex-wrap: wrap;
  /*column-gap: 60px;*/
  /*row-gap: 40px;*/
}

.product-block--slide .product-info .hidden-summary {
  margin-top: 0px;
  color: #B2B2B2;
}

.product-block--slide .product-applications,
.product-block--slide .product-info .hidden-summary {
  max-height: 0px;
  overflow: hidden;
  transition: 0.3s ease;
}

/*.product-applications ul li {*/
/*  width: 80px;*/
/*}*/

.product-applications ul li span {
  display: block;
  width: 50px;
  height: 30px;
}

.product-applications ul li span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-block--slide .product-info {
  display: flex;
  flex-direction: column;
}

#home-product-swiper .swiper-slide.swiper-slide-active .product-block--slide {
  background: var(--color-text);
  color: #ffffff;
  padding: 15px;
  padding-bottom: 50px;
}

#home-product-swiper .swiper-slide.swiper-slide-active .product-info {
  flex-direction: row;
}

#home-product-swiper .swiper-slide.swiper-slide-active .product-block--slide .img-cover {
  width: 35%;
  height: auto;
  aspect-ratio: 3/2;
  border-radius: 30px;
  overflow: hidden;
}

#home-product-swiper .swiper-slide.swiper-slide-active .product-block--slide .content-wrap {
  width: 65%;
  padding-right: 40px;
}

#home-product-swiper .swiper-slide.swiper-slide-active .product-block--slide .product-info .hidden-summary {
  margin-top: 30px;
}

#home-product-swiper .swiper-slide.swiper-slide-active .product-block--slide .product-applications,
#home-product-swiper .swiper-slide.swiper-slide-active .product-block--slide .product-info .hidden-summary {
  max-height: max-content;
}



.product-block--slide .btnn-only-btn {
  position: absolute;
  bottom: 15px;
  right: 100px;
}

.btnn-only-btn {
  background: var(--color-off);
  color: var(--primary);
  min-width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btnn-only-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.product-block--slide .icon-only-btn {
  position: absolute;
  bottom: 15px;
  right: 24px;
}

.icon-only-btn {
  background: var(--color-off);
  color: var(--primary);
  min-width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-only-btn.icon--plus {
  min-height: 46px;
  min-width: 70px;
}

.icon--plus::before,
.icon--plus::after {
  content: '';
  background-color: currentColor;
  width: 2px;
  height: 14px;
  display: block;
  position: absolute;
}

.icon--plus::before {
  transform: rotate(90deg);
}

.icon-only-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.border-y-1 {
  border-top: 1px;
  border-bottom: 1px;
  border-style: solid;
  border-color: var(--color-border);
}

.partner-block--slide .img-contain {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
}

#home-partner-swiper .partner-block--slide {
  padding-top: 10px;
  padding-bottom: 10px;
}

#features-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.feature-block {
  padding: 50px 30px;
  color: var(--secondary);
  background: var(--white);
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  column-gap: 24px;
  text-align: left;
  min-height: 100%;
  transition: 0.3s ease;
}

.feature-block:hover {
  color: var(--white);
  background: var(--primary);
}

.feature-block .icon {
  width: 80px;
  height: 80px;
}

.feature-block .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* transition: 0.3s ease; */
}

.feature-block .info {
  width: calc(100% - 104px);
}

.feature-block .count {
  font-size: 50px;
  line-height: 1;
  font-family: var(--font-body);
  font-weight: 500;
}

.feature-block .count span {
  font-family: var(--font-heading);
  font-weight: 500;
}

.feature-block:hover .icon img {
  filter: grayscale(1) brightness(100);
}

.theme-seperator {
  border-color: var(--accent-secondary);
  border-width: 2px;
  opacity: 1;
}

#home-investor-section {
  padding-bottom: 110px;
  background-color: var(--primary);
  background-image: url('../img/our-investor-bg.svg');
  background-blend-mode: multiply;
}

.investor-card-block {
  display: block;
  border-radius: 30px;
  overflow: hidden;
  min-height: 100%;
  background: var(--white);
}

.investor-card-block .img-cover {
  padding: 50px 60px 30px;
  background-color: #F1F1F1;
}

.investor-card-block .img-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: 0px 0px 20px 0px #0000001A;
}

.investor-card-block .info {
  padding: 15px 40px 20px;
  background: var(--white);
}

.investor-card-block .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
}

.investor-card-block .title-wrap h3 {
  margin-bottom: 0px;
}

.share-price-block {
  display: block;
  border-radius: 30px;
  overflow: hidden;
  background: var(--light);
  padding: 60px 60px 80px;
  min-height: 100%;
  position: relative;
}

.share-price-block .share-chart-layer {
  position: absolute;
  left: 0px;
  z-index: 0;
  user-select: none;
  right: 0px;
  top: 10%;
  bottom: 5%;
}

.share-price-block .share-chart-layer .chart svg {
  width: 100%;
  height: auto;
}

.share-price-block .info {
  position: relative;
  z-index: 1;
}

.share-price-block .share-price {
  margin-top: 18px;
  font-size: 80px;
  line-height: 1;
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--primary);
}

.share-price-block .currency {
  font-size: 40px;
  color: var(--accent-secondary);
}

.share-price-block .share-price span {
  font-family: var(--font-heading);
}

.share-price-block .day-returns {
  font-weight: 400;
  margin: 12px 0px 15px;
}

.share-price-block .day-returns span {
  font-family: var(--font-heading);
}

.share-price-block .day-returns span i {
  font-family: var(--font-body);
  font-style: normal;
}

.share-price-block .share-date-time {
  color: #868686;
}

#home-insights-section {
  padding-top: 70px;
  padding-bottom: 60px;
}

.swiper-slide>.post-block {
  margin-bottom: 20px;
}

.post-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 0px 20px 0px #00000026;
  border-radius: 15px;
  overflow: hidden;
  background: var(--white);
  min-height: 100%;
  transition: 0.4s ease;
}

.post-block .img-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.post-block .info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-block .content-wrap {
  padding: 10px 20px;
  flex-grow: 1;
}

.post-block .content-wrap .date {
  color: #868686;
  margin-bottom: 5px;
  font-family: var(--font-heading);
}

.post-block .read-more {
  border-top: 1px solid #E1F1EF;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
}

.bottle-counter {
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 70px;
  width: 100%;
  background-color: #FFDB43;
  z-index: 11;
  position: fixed;
  bottom: 0;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.bottle-counter.is-visible {
    transform: translateY(0);
}

/* .bottle-counter .bottles-graphic {
  position: absolute;
  right: 0;
  bottom: 0;
} */

/* .bottle-counter .bottles-graphic img {
  width: 140px;
  height: auto;
  transition: all .5s;
} */

.bottles-recycled-txt {
  font-family: var(--font-body);
  height: 100%;
  margin: 0 !important;
  position: relative;
  font-size: 28px;
  font-weight: 400;
}

.bottle-counter .bottles-recycled {
  padding: 4px 15px;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-radius: 10px;
  column-gap: 10px;
}

.bottles-recycled h4 {
  color: #63ae32;
  margin-bottom: 2px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 20px;
}

.bottles-recycled .counter-icon {
  width: 36px;
  height: 36px;
}

.bottles-recycled .counter-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bottles-recycled-number {
  font-size: 26px;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  padding-bottom: 20px;
}

.bottles-recycled-number span label {
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 400;
  position: absolute;
  bottom: -12px;
  left: 0px;
}

.bottles-recycled-number span {
  position: relative;
  font-family: var(--font-heading);
  font-weight: bold;
}

/* Page Header */
.page-title-header {
  padding-top: 140px;
  background: var(--primary);
  color: var(--white);
  min-height: 450px;
  z-index: 1;
  position: relative;
}

.first-section-padding {
  padding-top: 140px;
}

.page-title-header .content-wrap {
  padding-top: 24px;
  /* min-height: 450px; */
}

.page-title-header .img-cover {
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: -80px;
}

.page-title-header--simple {
  background: var(--white);
  color: var(--color-text);
  overflow: hidden;
  padding-bottom: 60px;
  min-height: auto;
}

.page-title-header--centered {
  background: var(--white);
  color: var(--color-text);
  text-align: center;
}

.page-title-header--centered .no-container {
  width: 100vw;
  overflow: hidden;
  margin-top: 30px;
}

.page-title-header--centered .image-wrap {
  width: 100%;
}

.page-title-header--centered .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-title-header.page-title-header--simple .img-cover {
  margin-bottom: 0px;
}

.page-title-header--simple .wp-editor * {
  font-family: var(--font-heading);
  position: relative;
  overflow: hidden;
}

.page-title-header--simple .bg-element {
  position: absolute;
  left: 0px;
  top: 0px;
}

/* About Us Page */

#about-us-section {
  overflow: hidden;
  position: relative;
  padding-top: 120px;
}

.about-features-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.about-features-list li {
  display: flex;
  align-items: center;
  column-gap: 40px;
  width: 500px;
}

.about-features-list li .icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EDEDED;
  border-radius: 100px;
  padding: 20px;
}

.about-features-list li .info {
  width: calc(100% - 140px);
}

.about-features-list li .info p {
  font-size: 20px;
  color: #717171;
}

.about-features-list li .icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.about-features-list li+li {
  margin-top: 20px;
}

#about-us-section .left-wrap {
  position: relative;
  width: 50%;
}

#about-us-section .element {
  width: 100%;
  height: auto;
  min-height: 550px;
  aspect-ratio: 5 / 4;
  margin-top: 30px;
  overflow: hidden;
}

#about-us-section .element svg {
  width: 100%;
  height: auto;
}

#about-us-section .wraps-flex {
  display: flex;
}

#about-us-section .right-wrap {
  position: relative;
  width: 50%;
}

#about-us-section .about-features {
  position: absolute;
  top: 30px;
  left: 0px;
}

#about-us-section .about-features-list li:nth-child(1) {
  transform: translate(-20vw, 0px);
}

#about-us-section .about-features-list li:nth-child(2) {
  transform: translate(-12vw, 0px);
}

#about-us-section .about-features-list li:nth-child(3) {
  transform: translate(-6vw, 2vw);
}

#about-us-section .about-features-list li:nth-child(4) {
  transform: translate(-3vw, 5vw);
}

#about-us-section .bg-element {
  position: absolute;
  width: 30%;
  user-select: none;
  right: 0px;
  top: 0px;
}

#about-us-section .bg-element svg {
  width: 100%;
  height: 100%;
}

#about-journey-section {
  position: relative;
  overflow: hidden;
}

#journey-thumb-swiper {
  height: 550px;
}

#about-journey-section .journey-wrapper {
  display: flex;
  column-gap: 120px;
}

#about-journey-section .year-button {
  font-size: 30px;
  font-weight: 600;
  font-family: var(--font-heading);
  text-align: right;
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
  color: var(--white);
  width: 100%;
  padding-right: 30px;
  position: relative;
}

#about-journey-section .year-button::before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--white);
  border-radius: 10px;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}

#about-journey-section .journey-thumb-swiper {
  width: 150px;
  position: relative;
}

#about-journey-section .journey-thumb-swiper .swiper-slide:not(:last-child) .year-button::after {
  position: absolute;
  content: '';
  width: 1px;
  height: 100px;
  background-color: var(--white);
  border-radius: 10px;
  right: 5px;
  top: 20px;
}

#about-journey-section .journey-swiper {
  width: calc(100% - 270px);
}

#about-journey-section .journey-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#about-journey-section .journey-item .year-title {
  font-size: 100px;
  line-height: 62px;
  margin-bottom: 40px;
  color: var(--white);
}

#about-journey-section .journey-item h4 {
  font-size: 30px;
  line-height: 62px;
  margin-bottom: 10px;
}

#about-journey-section .have-overlay::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background: #00401E;
  opacity: 0.7;
}

#mission-vision-section {
  border-bottom: 1px solid #c3c3c3;
}

#mission-vision-section .mission-vision-wrapper {
  padding: 100px 10%;
}

#mission-vision-section .mission-wrapper {
  border-right: 1px solid #c3c3c3;
}

.bg-theme-cream {
  background-color: #FFFAEF;
}

#about-values-section {
  padding-top: 60px;
  padding-bottom: 100px;
}

#about-values-section .values-wrap {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
}

#about-values-section .value-item {
  padding: 40px 40px 50px;
  border-radius: 30px;
  background: var(--white);
  text-align: center;
  width: calc((100% / 5) - (80px / 5));
  box-shadow: 0px 0px 20px 0px #0000000D;
  transition: 0.3s ease;
}

#about-values-section .value-item .icon {
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  transition: 0.1s ease;
}

#about-values-section .value-item:hover {
  background-color: var(--primary);
  color: var(--white);
}

#about-values-section .value-item:hover .icon {
  filter: grayscale(1) brightness(100);
}

.post-block--basic {
  text-align: center;
  display: block;
}

.post-block.post-block--basic .content-wrap {
  padding-top: 26px;
  padding-bottom: 26px;
}

.post-block--basic .content-wrap .btn {
  margin-top: 24px;
  opacity: 0;
  transition: 0.4 ease;
}

.post-block--basic:hover {
  background: var(--primary);
  color: var(--white);
}

.post-block--basic:hover .content-wrap .btn {
  opacity: 1;
}

/* people page */
#team-head-section {
  position: relative;
  overflow: hidden;
  padding-top: 280px;
  padding-bottom: 100px;
}

#team-head-section .info {
  padding: 60px;
  background-color: var(--primary);
  border-radius: 40px;
}

.team-member-item .img-cover {
  background: #cccccc;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.team-member-item {
  background: #ffffff;
  box-shadow: 0px 0px 30px 0px #0000001A;
  overflow: hidden;
  border-radius: 20px;
  transition: 0.4s ease;
}

.team-member-item:hover {
  box-shadow: 0px 0px 50px 20px #0000001A;
  background: var(--color-text);
  color: var(--white);
  transform: scale(1.01);
}

.team-member-item:hover a {
  color: var(--white);
}

.team-member-item .info {
  display: flex;
  column-gap: 20px;
  justify-content: space-between;
}

.team-member-item .info .social-group,
.team-member-item .info .name-group {
  padding: 15px 20px;
}

.team-member-item .info .social-group {
  padding-left: 0px;
}

.team-member-item .info .name-group {
  padding-right: 0px;
}

.team-member-item .info .h5 {
  font-size: 20px;
}

.accordion-theme .accordion-item {
  background-color: #FFFAEF;
}

.accordion-theme .accordion-item .accordion-header {
  background-color: transparent;
}

.accordion-theme .accordion-item .accordion-button {
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: transparent;
  color: var(--color-text);
  font-size: 26px;
  font-weight: 700;
  box-shadow: none;
  outline: none;
}

.accordion-theme .accordion-body {
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 20px;
  padding-bottom: 30px;
}

.accordion-theme .accordion-button::after {
  border-radius: 10px;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid var(--color-text);
  background-position: center;
}

/* Our Partner */
#strategic-partners-section {
  background: var(--primary);
  color: var(--white);
}

.partner-block {
  display: grid;
  padding: 45px 30px 30px 30px;
  border-radius: 20px;
  background: var(--white);
  row-gap: 30px;
  height: 100%;
}

.partner-block .img-wrap {
  height: 60px;
  width: auto;
  max-width: 200px;
  margin-bottom: 20px;
}

.partner-block .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.partner-block .name {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 20px;
}

.filter-partner-block {
  background-color: #F6F6F6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  padding: 40px 30px;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
}

.filter-partner-block img {
  width: 100%;
  height: auto;
  max-width: 160px;
  max-height: 50px;
  object-fit: contain;
}

.theme-nav-pills-wrap {
  padding: 10px 15px;
  border-radius: 40px;
  background: var(--white);
  box-shadow: 0px 0px 40px 0px #0000001A;
  display: inline-block;
  margin-bottom: 30px;
}

.theme-nav-pills.nav-pills .nav-link {
  color: var(--color-text);
  font-weight: 500;
  border-radius: 30px;
}

.theme-nav-pills.nav-pills .nav-link.active,
.theme-nav-pills.nav-pills .show>.nav-link {
  background: var(--primary);
  color: var(--white);
}

.generic-cta-container .cta-text-wrap {
  padding: 50px 100px 50px 50px;
  height: 100%;
  color: var(--white);
}

.generic-cta-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.generic-cta-container .cta-text-wrap::before {
  content: '';
  background: linear-gradient(90deg, #272727 0%, #272727 51.99%, rgba(39, 39, 39, 0) 86.61%);
  position: absolute;
  left: 0px;
  display: block;
  width: 100%;
  top: 0px;
  height: 100%;
  z-index: 1;
}

.generic-cta-container .cta-text-wrap>* {
  position: relative;
  z-index: 1;
}

.presence-location-block {
  background: #E6EFEF;
  display: block;
  padding: 35px 20px 20px 40px;
  color: var(--primary);
  border-radius: 20px;
  transition: 0.4s ease;
}

.presence-location-block:hover {
  box-shadow: 0px 0px 50px 20px #0000001A;
  background: var(--color-text);
  color: var(--white);
  transform: scale(1.01);
}

.presence-location-block .img-wrap {
  width: 205px;
  height: 205px;
  margin-left: auto;
  margin-top: 50px;
  border-radius: 15px;
  overflow: hidden;
}

#presence-map-section {
  background: var(--secondary);
}

.map-makers-wrap {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
}

.map-container {
  position: relative;
}

.map-makers-wrap>ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.map-marker-group {
  position: absolute;
}

.map-marker-group .map-marker {
  width: 24px;
  height: 24px;
  font-size: 20px;
  line-height: 1;
  background: var(--accent);
  border: 0px;
  border-radius: 40px;
  color: var(--white);
  font-weight: 400;
  filter: brightness(1.1);
  position: relative;
  z-index: 10;
}

.map-marker-group--blue .map-marker {
  background: #2a71ce;
}

.map-marker-group .map-marker-detail {
  display: none;
  position: absolute;
  min-width: 18px;
  top: -5px;
  left: -5px;
  padding: 10px 20px 10px 40px;
  background: #D9D9D9;
  border-radius: 15px;
  z-index: 8;
}

.map-marker-group.active {
 z-index: 11;
}

.map-marker-group.active .map-marker-detail {
  display: block;
}

.map-marker-group .map-country-name {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-body);
  margin-bottom: 5px;
}

.map-marker-group .map-location-type {
  font-size: 16px;
  color: var(--primary);
}

.simple-card .img-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  border-radius: 20px;
  overflow: hidden;
}

.simple-card .read-more {
  color: #048626
}

#presence-contact-section .bg-element {
  position: absolute;
  bottom: -50%;
}

#presence-contact-section {
  position: relative;
}

#presence-contact-section .content-wrap .h3 {
  font-size: 30px;
  line-height: 1.3;
  font-family: var(--font-heading);
  font-weight: 400;
}

.form-control {
  min-height: 50px;
  border: 1px solid #A9A9A9;
  border-radius: 8px;
}

.form-wrap label {
  font-weight: 500;
  padding-bottom: 4px;
}

.form-wrap label span {
  color: var(--accent);
}

.certification-block {
  display: block;
  padding: 60px 30px 30px 30px;
  height: 100%;
  background: #F0F0F0;
  border-radius: 20px;
  text-align: center;
}

.certification-block .img-wrap {
  width: 200px;
  height: 180px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

#page-certification-section .certification-block .img-wrap {
  width: 120px;
  height: 100px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

#page-certification-section .certification-block {
    padding: 40px 20px 20px 20px;
}

.certification-block .img-wrap img {
  object-fit: contain;
  mix-blend-mode: multiply;
}

.association-block {
  background: #F0F0F0;
  display: block;
  padding: 40px;
  border-radius: 20px;
}

.association-block .img-wrap {
  width: 170px;
  height: 80px;
}

.association-block .img-wrap img {
  object-fit: contain;
  object-position: left top;
}

.job-detail-section {
  padding-top: 140px;
  padding-bottom: 100px;
}

.job-detail-section .h2 {
  font-size: 50px;
}

.job-meta {
  display: flex;
  column-gap: 20px;
  list-style: none;
  padding: 0px;
  margin-top: 24px;
}

.job-meta .pill {
  padding: 8px 20px;
  border: 1px solid var(--color-text);
  border-radius: 30px;
}

.job-info-wrapper .wp-editor {
  margin-top: 50px;
}

.job-detail-section .form-container,
.contact-detail-section .form-container {
  padding: 20px 50px 30px;
  background: var(--primary);
  color: var(--white);
  border-radius: 20px;
  position: sticky;
  top: 90px;
}

.contact-detail-section .form-container {
  position: static;
}

.upload-dropzone {
  border: 1px solid #dddddd;
  border-radius: 10px;
  color: #fff;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.upload-instructions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

.upload-icon-text {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;

}

.upload-dropzone input[type="file"] {
  display: none;
}

.job-detail-section .upload-dropzone,
.job-detail-section .form-control,
.contact-detail-section .form-control {
  border-color: #C5C5C5;
  background-color: transparent;
  color: var(--white);
}

.job-detail-section .form-control::placeholder,
.contact-detail-section .form-control::placeholder {
  color: transparent;
}

.job-detail-section .form-container {
  margin-left: 40px;
}

.featured-news-media-item {
  display: flex;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  padding: 40px;
  border-radius: 20px;
}

.featured-news-media-item .info {
  padding: 10px 50px;
  width: 60%;
}

.featured-news-media-item .img-wrap {
  width: 40%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.featured-news-media-item .news_m-title {
  font-size: 40px;
  line-height: 1.2;
  margin: 0.8rem 0px;
}

.featured-news-media-item .news_m-date {
  font-weight: 400;
  font-family: var(--font-heading);
}

.social-sharing-links {
  display: flex;
  align-items: center;
  justify-content: end;
  column-gap: 20px;
}

.social-sharing-links .social-links {
  margin: 0px;
  column-gap: 12px;
}

.social-sharing-links .social-links a,
.social-sharing-links .social-links button {
  width: 45px;
  height: 45px;
  border: 2px solid #999999;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
}

.social-sharing-links .social-links a svg,
.social-sharing-links .social-links button svg {
  width: 18px;
  height: auto;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#detail-news-media-section .wp-editor {
  margin-top: 50px;
}

#detail-news-media-section .featured-image-wrap {
  border-radius: 20px;
  overflow: hidden;
}

#detail-news-media-section h1 {
  text-align: center;
  margin-bottom: 30px;
}

#detail-news-media-section .wp-editor p {
  margin-bottom: 1rem;
}

#detail-news-media-section {
  position: relative;
}

#detail-news-media-section .bg-element {
  position: absolute;
  left: 0px;
  bottom: 20%;
}

#detail-news-media-section .bg-element.bg-element--right {
  left: auto;
  top: 20%;
  bottom: auto;
  right: 0px;
}

.post-block.post-block--blog {
  box-shadow: none;
  border-radius: 0px;
}

.post-block.post-block--blog .content-wrap {
  padding: 15px 0px;
}

.post-block.post-block--blog .read-more {
  padding: 0px;
  border-top: 0px;
}

.post-block.post-block--blog .img-cover {
  border-radius: 10px;
  overflow: hidden;
}

.post-block.post-block--blog .content-wrap .date {
  margin-bottom: 10px;
}

#featured-blogs-swiper .post-block.post-block--blog .font-size-20 {
  font-size: 26px;
  margin: 0px;
}

#detail-blog-section .featured-image-wrap {
  border-radius: 20px;
  overflow: hidden;
}

#detail-blog-section .post-meta {
  justify-content: flex-start;
  column-gap: 100px;
  margin-bottom: 60px;
}

#detail-blog-section .post-meta .date-type {
  width: calc(25% - 100px);
}

#detail-blog-section .post-caption-excert {
  width: 50%;
}

#detail-blog-section .social-sharing-links {
  display: block;
  width: calc(25% - 100px);
}

#journey-header {
  background-color: var(--primary);
  color: var(--white);
}

#journey-timeline-section .timeline-container {
  position: relative;
  max-width: 1420px;
}

#journey-timeline-section .timeline-line-path {
  position: absolute;
  top: 300px;
  right: 15%;
  width: 100%;
  max-width: 895px;
  min-height: 1735px;
  height: calc(100% - 700px);
  background-image: url('data:image/svg+xml,<svg width="899" height="1826" viewBox="0 0 899 1826" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.5 1v335.595c0 66.274 53.726 119.999 120 119.999H778c66.274 0 120 53.726 120 120V868.5m0 1.5v379.09c0 66.28-53.726 120-120 120H121c-66.274 0-120 53.73-120 120V1825" stroke="%2365AC37" stroke-width="3" stroke-linecap="round" stroke-dasharray="12 13"/></svg>');
  background-repeat: repeat-y;
  background-size: contain;
  z-index: 0;
  overflow: hidden;
}

.timeline-container {
  gap: 32px;
  flex-direction: row;
  display: flex;
  position: relative;
}

.timeline-container .timeline-sections {
  width: 100%;
  gap: 265px;
  display: flex;
  flex-direction: column;
}

.timeline-card-wrapper {
  padding: 35px 32px;
  width: 100%;
  max-width: 420px;
  border-radius: 30px;
  height: -moz-fit-content;
  height: fit-content;
  background-color: var(--secondary);
}

.timeline-section-wrapper .timeline-section .timeline-card {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
}

.timeline-section-wrapper:nth-child(odd) .timeline-section {
  display: flex;
  flex-direction: row-reverse;
  gap: 8px;
  align-items: center;
}

.timeline-section-wrapper:nth-child(2n) .timeline-section {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: row;
}

.timeline-section-wrapper:nth-child(odd) .timeline-section .timeline-card {
  left: 0;
}

.timeline-section-wrapper:nth-child(2n) .timeline-section .timeline-card {
  right: 0;
}

.timeline-container .timeline-nav {
  width: 5%;
  display: block;
}

.timeline-nav-container {
  max-width: 170px;
  display: flex;
  position: sticky;
  flex-direction: column;
  gap: 13px;
  top: calc(50% - 65px);
}

.timeline-nav-container .timeline-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all .3s ease;
  width: -moz-fit-content;
  width: fit-content;
}

.timeline-nav-container .timeline-item .nav-dot {
  border-radius: 32px;
  border: 2px solid var(--accent-secondary);
  width: 15px;
  height: 15px;
}

.timeline-section-wrapper {
  min-height: 580px;
  width: 100%;
  position: relative;
}

.timeline-section-wrapper .timeline-section .media-container>* {
  aspect-ratio: 980 / 580px;
  max-width: 980px;
  max-height: 580px;
  width: 100%;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  object-fit: cover;
}

.timeline-card-wrapper span.year {
  font-size: 20px;
  display: block;
  color: #65AC37;
  font-family: var(--font-heading);
  font-weight: bold;
  margin-bottom: 10px;
}

.timeline-card-wrapper span.title {
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 30px;
  line-height: 35px;
  margin-bottom: 12px;
  display: block;
}

.timeline-nav-container .timeline-item.active-item .nav-dot {
  background: var(--accent-secondary);
}

#journey-timeline-section {
  position: relative;
  padding-top: 0px;
}

#journey-timeline-section:before {
  background: var(--primary);
  width: 100%;
  display: block;
  content: '';
  height: 50vh;
  position: absolute;
  top: 0px;
}

.awards-block--slide .award-icon img {
  width: 100%;
  height: auto;
  aspect-ratio: 61/156;
}

.awards-block--slide {
  display: flex;
  column-gap: 5%;
  align-items: center;
}

.awards-block--slide .award-icon {
  width: 20%;
}

.awards-block--slide .info-wrap {
  width: 50%;
  text-align: center;
}

.awards-block--slide .info-wrap h4 {
  font-size: 20px;
  font-family: var(--font-body);
  font-weight: 600;
}

#home-insights-section {
  position: relative;
}

#home-insights-section .bg-element {
  position: absolute;
  left: auto;
  right: 15%;
  top: 80px;
}

.more-info-wrap {
  padding: 50px 40px;
  border-radius: 30px;
  background: #E3F6E6;
  position: relative;
}

.more-info-wrap .info-title {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.more-info-wrap .info-title .h3 {
  font-size: 26px;
  text-align: center;
  background: var(--secondary);
  color: var(--white);
  padding: 10px 40px 15px;
  line-height: 1.2;
  border-radius: 0px 0px 30px 30px;
  width: max-content;
  margin: 0px;
}

.more-info-wrap .icon-box {
  display: flex;
  align-items: flex-start;
  column-gap: 15px;
  width: 350px;
  max-width: 100%;
}

.more-info-wrap .icon-box .icon {
  width: 70px;
}

.more-info-wrap .icon-box .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.more-info-wrap .icon-box .info {
  width: calc(100% - 85px);
}

.more-info-wrap .icon-boxes-wrap {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 50px;
  flex-direction: column;
  margin-top: 40px;
}

.more-info-wrap .icon-box .info .icon-title {
  font-size: 50px;
  line-height: 1;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
}

.more-info-wrap .icon-box .info p {
  line-height: 1.2
}

.more-info-wrap.more-info-wrap--right {
  background: #EFF2FF;
}

.more-info-wrap.more-info-wrap--right .icon-boxes-wrap {
  column-gap: 50px;
  flex-direction: row;
}

.sus-ac-nav-wrap .custom-progressbar {
  position: relative;
  width: 100%;
  height: 40px;
  margin-top: 16px;
}

.sus-ac-nav-wrap .progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, white 40%, transparent 40%);
  border-bottom: 2px dashed white;
  transform: translateY(-50%);
}

.sus-ac-nav-wrap .progress-dots {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.sus-ac-nav-wrap .dot {
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
}

#sus-achievements-section {
  background-color: var(--primary);
}

#sus-impact-stats {
  position: relative;
}

#sustainability-head-section {
  position: relative;
  padding-bottom: 0px;
}

#sustainability-head-section .content-wrap {
  margin-bottom: -40px;
  position: relative;
  z-index: 2;
}

#sustainability-head-section .content-wrap h1 {
  margin-bottom: 0px;
}

#sustainability-head-section .img-wrap {
  position: relative;
}

#sustainability-head-section .img-wrap:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 35.37%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

#sustainability-head-section .img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

#sustainability-head-section .content-wrap h1 span {
  font-family: var(--font-heading);
  color: var(--primary);
}

#about-sus-section {
  padding-top: 70px;
  padding-bottom: 120px;
}

.approach-pointers-list {
  list-style: none;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 15px;
  margin: 0px;
}

.approach-pointers-list li {
  padding: 15px 24px;
  background: #F4EDDF;
  line-height: 1.1;
  font-size: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  border: 1px solid var(--white);
  border-radius: 60px;
}

#sus-approach-section {
  padding-top: 70px;
  padding-bottom: 120px;
}

#sus-impact-stats .bg-layer:after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 38.3%, rgba(255, 255, 255, 0.69) 52.81%, rgba(255, 255, 255, 0) 100%);
}

.sus-impact-item {
  background: #FFFFFF85;
  backdrop-filter: blur(10px);
  border: 1px solid var(--white);
  padding: 25px 30px 35px;
  text-align: center;
  border-radius: 20px;
}

.sus-impact-stat {
  background: #FFFFFF85;
  padding: 36px 24px;
  border-radius: 20px;
  border: 1px solid #CCCCCC;
  min-height: 210px;
}

.sus-impact-stat+.sus-impact-stat {
  margin-top: 30px;
}

.sus-impact-item .h4 {
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 30px;
}

.sus-impact-stat .h5 {
  font-size: 24px;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 15px;
}

.sus-impact-stat p {
  font-size: 30px;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.1;
  margin: 0px;
}

#sus-impact-stats {
  padding-bottom: 150px;
}

#sus-chairmain-section {
  background: var(--primary);
  color: var(--white);
}

#sus-chairmain-section .content-wrap {
  padding-bottom: 50px;
}

#sus-chairmain-section .content-wrap>p {
  margin-top: 30px;
  margin-bottom: 40px;
  font-size: 26px;
}

.nav-pills--theme {
  justify-content: center;
  column-gap: 30px;
  row-gap: 30px;
}

.nav-pills--theme.nav-pills .nav-link {
  border: 1px solid #929292;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: bold;
  color: var(--text-color);
  border-radius: 30px;
}

.nav-pills--theme.nav-pills .nav-link.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.esg-block {
  border: 1px solid #BABABA;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.esg-block .info-wrap {
  padding: 20px 70px 30px 24px;
}

.esg-block .info-wrap .h5 {
  font-size: 22px;
}

.esg-block .img-wrap {
  width: 100%;
  aspect-ratio: 23/22;
}

.esg-block .img-wrap img {
  width: 100%;
  height: 100%;
}

.esg-block .info-wrap .read-more {
  background: var(--primary);
  display: inline-flex;
  padding: 10px 24px;
  border-radius: 30px;
  position: absolute;
  right: 8px;
  bottom: 8px;
  height: 46px;
  align-items: center;
  visibility: hidden;
  opacity: 0;
}

#sus-achievements-section {
  color: var(--white);
}

.sus-achievement-item {
  display: flex;
  align-items: center;
  column-gap: 150px;
}

.sus-achievement-item .year {
  font-size: 30px;
  color: #20DE50;
}

.sus-achievement-item .info {
  width: calc(100% - 400px);
}

.sus-achievement-item .img-wrap {
  width: 250px;
  height: 250px;
}

#sus-achievements-section .sus-ac-title {
  font-size: 30px;
  line-height: 1.3;
}

#sus-achievements-section .sus-ac-nav-wrap .custom-progressbar {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
}

#sus-achievements-section .sus-ac-nav-wrap .progress-dots {
  width: 90%;
  left: 5%;
  right: 5%;
}

#sdg-section .title-img-wrap {
  margin-bottom: 40px;
}

#sdg-section .content-wrap {
  padding-right: 40px;
  padding-top: 30px;
}

#sdg-section .content-wrap p {
  font-size: 20px;
}

.esg-commit--slide .info-wrap li {
  margin-bottom: 10px;
}

.esg-commit--slide .info-wrap ul {
  padding-left: 1.2rem;
}

.esg-commit--slide .info-wrap {
  padding-right: 40px;
}

.esg-commit--slide .info-wrap .h4 {
  font-size: 40px;
}

.esg-commit--slide .img-wrap {
  width: 100%;
  height: auto;
  aspect-ratio: 7/5;
  border-radius: 20px;
  overflow: hidden;
}

#disclosure-audit-section .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 250px;
}

#disclosure-audit-section .img-wrap {
  text-align: center;
}

#disclosure-audit-section .info-wrap {
  padding-right: 40px;
}

#disclosure-audit-section .info-wrap .h4 {
  font-size: 30px;
}

.share-list-wrap {
  padding: 0px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 24px;
  row-gap: 24px;
}

.document-block {
  display: block;
  background: #F0F0F0;
  padding: 24px 20px;
  border-radius: 20px;
  height: 100%;
}

.document-block .h5 {
  font-size: 20px;
  line-height: 1.3;
  margin: 0px;
}

.document-block .info {
  margin-top: 20px;
}

.document-block .icon {
  width: 57px;
  height: 70px;
}

.document-block .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}

ul.cta-links-list {
  list-style: none;
  padding: 0px;
  display: flex;
  column-gap: 70px;
  margin-top: 40px;
  justify-content: center;
}

ul.cta-links-list li a {
  display: inline-flex;
  column-gap: 10px;
  font-size: 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  align-items: center;
}

#sus-cta-section .content-wrap p {
  font-size: 20px;
  margin-top: 20px;
}

#career-header.page-title-header .content-wrap {
  padding-top: 0px;
}

#career-header.page-title-header--simple .bg-element {
  left: auto;
  right: 0px;
  transform: scaleX(-1);
}

#career-header.page-title-header--simple .wp-editor p {
  font-family: var(--font-body);
}

#smooth-slider-1 .swiper-wrapper,
#smooth-slider-2 .swiper-wrapper {
  transition-timing-function: linear !important;
}

.c-gallery-item img {
  width: 100%;
  height: 100%;
}

.c-gallery-item {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
}

#smooth-slider-2 {
  margin-top: 24px;
}

.img-mask {
  -webkit-mask-image: url(../img/mask.png);
  mask-image: url(../img/mask.png);
  mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: 30% center;
  width: 600px;
  height: 600px;
  margin-left: auto;
}

.accordion-theme--secondary .accordion-button {
  background: #FFFFFF;
  padding: 40px 30px;
  box-shadow: none;
  color: var(--text-color);
}

.accordion-theme--secondary .accordion-button:not(.collapsed) {
  background: #FBF8F3;
}

.accordion-theme--secondary .accordion-body {
  background: #FBF8F3;
}

.accordion-theme--secondary .accordion-button {
  display: flex;
  column-gap: 20px;
}

.accordion-theme--secondary .accordion-button .position {
  width: 40%;
  font-size: 24px;
  font-family: var(--font-heading);
  font-weight: bold;
  text-transform: uppercase;
}

.accordion-theme--secondary .accordion-button .location,
.accordion-theme--secondary .accordion-button .job-type {
  width: 25%;
  font-size: 20px;
  font-weight: 400;
}

.accordion-theme--secondary .accordion-body {
  padding: 40px 30px;
  padding-top: 0px;
}

.accordion-theme--secondary .accordion-button {
  position: relative;
}

.accordion-theme--secondary .accordion-body .btn-wrap {
  margin-top: 30px;
}

.accordion-theme--secondary .accordion-button::after {
  display: none;
}

/* .accordion-theme--secondary .accordion-button::after, */
.accordion-theme--secondary .accordion-button::before {
  content: '+';
  font-family: var(--font-body);
  position: absolute;
  right: 30px;
  width: 32px;
  height: 32px;
  border-radius: 30px;
  font-size: 24px;
  line-height: 1;
  color: var(--white);
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.accordion-theme--secondary .accordion-button::before {
  transition: 0.3s ease;
  /* transform: rotate(90deg); */
}

.accordion-theme--secondary .accordion-button:not(.collapsed)::before {
  /* transform: rotate(0deg); */
  content: '-';
}

.benefits-list-wrap {
  display: flex;
  justify-content: center;
}

.benefits-list-wrap .career-benefit-item {
  padding: 32px;
  text-align: center;
  width: 20%;
}

.benefits-list-wrap .career-benefit-item .icon {
  width: 75px;
  height: 75px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

.benefits-list-wrap .career-benefit-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefits-list-wrap .career-benefit-item .info .h5 {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-body);
}

.nav-pills--secondary.nav-pills .nav-link {
  text-align: left;
  color: var(--text-color);
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 14px 22px;
}

.nav-pills--secondary.nav-pills .nav-link>p {
  display: none;
  margin-top: 15px;
}

.nav-pills--secondary.nav-pills .nav-link.active {
  background: var(--primary);
  color: var(--white);
}

.nav-pills--secondary.nav-pills .nav-link.active p {
  display: block;
}

.nav-pills--secondary.nav-pills .nav-link .h5 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 0px;
}

#career-tabs-section .img-wrap img {
  width: 600px;
  height: 600px;
  max-width: 100%;
  aspect-ratio: 1/1;
  margin-left: auto;
}

#career-tabs-section .content-wrap .h3 {
  font-weight: 400;
}

.contact-detail-section .bg-element {
  position: absolute;
  left: 20%;
  bottom: 30px;
  opacity: 0.6;
}

.contact-detail-section {
  position: relative;
}

.contact-detail-section .contact-link a {
  display: block;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 20px;
  text-decoration: underline;
}

.contact-detail-section .contact-link {
  margin-top: 80px;
}

.contact-detail-section .contact-detail-wrap p {
  font-size: 20px;
}

.contact-location-block .info .h4 {
  font-size: 30px;
}

.contact-location-block .img-cover {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
}

.contact-location-block .info {
  padding: 15px 0px;
}

#investors-header-section .content-wrap {
  margin-bottom: 40px;
}

#investors-header-section .no-container {
  background: var(--primary);
  color: var(--white);
  padding-top: 50px;
  padding-bottom: 50px;
}

#investors-header-section .investors-stats-wrap .title-wrap .h3 {
  font-size: 40px;
}

#investors-header-section .investors-stats-wrap .title-wrap {
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid #71AD8D;
}

#investors-header-section .inv-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 50px;
}

#investors-header-section .inv-stat-item h4,
#investors-header-section .inv-stat-item h4 span.number {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 50px;
}

#investors-header-section .inv-stat-item h4 .suffix {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 200;
}

#investors-header-section .inv-stat-item h4 .prefix {
  font-family: var(--font-body);
}

#investors-header-section .inv-stat-item p {
  font-size: 20px;
}

#investors-header-section .inv-stat-item p span {
  font-weight: 600;
}

#investor-main-section .navbar {
  justify-content: center;
  padding-top: 0px;
  padding-bottom: 0px;
}

#investor-main-section .navbar .theme-nav-pills {
  column-gap: 16px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

#investor-main-section .navbar .theme-nav-pills.nav-pills .nav-item {
  flex-grow: 1;
  flex-shrink: 0;
}

#investor-main-section .navbar .theme-nav-pills.nav-pills .nav-link {
  border: 1px solid #777777;
  font-size: 16px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.investor-slider-container .year {
  text-align: center;
  padding: 10px 30px;
  margin-bottom: 2px;
}

.investor-thumb-wrap {
  border-bottom: 1px solid #D6D6D6;
}

.investor-thumb-wrap .swiper-button-next:after,
.investor-thumb-wrap .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 700;
  color: #272727;
}

.investor-thumb-wrap .swiper-button-next,
.investor-thumb-wrap .swiper-button-prev {
  width: 10px;
}

.investor-thumb-wrap .swiper-button-next {
  right: 0px;
}

.investor-thumb-wrap .swiper-button-prev {
  left: 0px;
}

.investor-thumb-wrap .swiper {
  padding-left: 50px;
  padding-right: 50px;
}

.investor-thumb-wrap .swiper .swiper-slide.swiper-slide-thumb-active .year {
  box-shadow: 0px 3px 0px 0px var(--primary);
}

.investor-main-swiper .nested-slider-wrap {
  padding-top: 30px;
}

.investor-main-swiper .nested-slider-wrap .document-block,
.shareholding-main-swiper .document-block,
.docs-grid-slider .document-block {
  text-align: center;
  padding-top: 40px;
}

.investor-main-swiper .nested-slider-wrap .document-block .icon,
.shareholding-main-swiper .document-block .icon,
.docs-grid-slider .document-block .icon {
  margin-left: auto;
  margin-right: auto;
}

.scrollspy-investors {
  position: relative;
}

.investor-scroll-section {
  padding-top: 50px;
  scroll-margin-top: 160px;
}

#investor-main-section {
  position: relative;
  padding-bottom: 50px;
}

#investor-main-section .page-navigation-wrapper {
  position: sticky;
  top: 65px;
  z-index: 9;
  background-color: var(--white);
}

.pagination.theme-pagination {
  justify-content: center;
  margin-top: 40px;
}

.pagination.theme-pagination .page-link {
  background: none;
  border: 0px;
  color: var(--dark);
  border-radius: 40px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination.theme-pagination .active .page-link {
  background: var(--primary);
  color: var(--white);
}

.simple-links-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.simple-links-list .simple-link-nav {
  padding: 30px 40px;
  background: var(--white);
  display: block;
  border-radius: 10px;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--secondary);
}

.legal-page-header {
  padding-bottom: 50px;
}

#shareholder-header-section {
  background-color: var(--primary);
  color: var(--white);
  min-height: 500px;
}

#shareholder-header-section .img-wrap {
  border-radius: 20px;
  overflow: hidden;
}

.shareholding-thumb-wrap .swiper-button-next,
.shareholding-thumb-wrap .swiper-button-prev {
  width: 40px;
  height: 40px;
}

.shareholding-thumb-wrap .swiper-button-next:after,
.shareholding-thumb-wrap .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 700;
  color: #272727;
}

.shareholding-thumb-wrap .swiper-button-prev {
  top: 0px;
  bottom: auto;
  left: 50px;
  right: auto;
  margin: 0px;
  transform: rotate(90deg);
}

.shareholding-thumb-wrap .swiper-button-next {
  top: auto;
  bottom: 0px;
  left: 50px;
  right: auto;
  margin: 0px;
  transform: rotate(90deg);
}

.shareholding-thumb-wrap .swiper {
  height: 680px;
}

.shareholding-thumb-swiper .year {
  padding: 10px 24px;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
}

.shareholding-thumb-swiper .swiper-slide-thumb-active .year {
  background: var(--primary);
  color: var(--white);
  border-radius: 30px;
}

.shareholding-thumb-wrap {
  max-width: 210px;
}

.shareholding-thumb-swiper {
  padding-top: 50px;
  padding-bottom: 50px;
}

.shareholding-thumb-swiper .year::after {
  content: 'next';
  font-family: swiper-icons;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  opacity: 0;
  font-size: 14px;
}

.shareholding-thumb-swiper .swiper-slide-thumb-active .year::after {
  opacity: 1;
}

.shareholding-main-wrap .title-wrap .h4 {
  font-family: var(--font-body);
  font-weight: 600;
}

.shareholding-main-wrap .title-wrap {
  margin-bottom: 30px;
}

.shareholding-wrap {
  padding: 24px 36px;
  border: 2px solid #E5E5E5;
  border-radius: 20px;
  margin-right: 1px;
  max-height: 680px;
  overflow-y: auto;
}

.theme-accordion-doc .accordion-button {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--font-body);
  background-color: #F6F6F6;
  border-radius: 10px !important;
  overflow: hidden;
  border: 0px;
  box-shadow: none;
  color: var(--dark);
}

.theme-accordion-doc .accordion-body {
  background-color: #F6F6F6;
  border-radius: 10px !important;
  overflow: hidden;
  border: 0px;
  box-shadow: none;
  margin-top: -10px;
}

.theme-accordion-doc .accordion-item {
  margin-top: 10px;
  border: 0px;
  box-shadow: none;
}

.acc-doc-list-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 22px;
  row-gap: 22px;
}

.acc-doc-list-wrap .document-block {
  background: var(--white);
  text-align: center;
}

.acc-doc-list-wrap .document-block .icon {
  margin-left: auto;
  margin-right: auto;
}

.accordion-list-wrap {
  padding-top: 20px;
}

.document-block.document-block--flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.document-block.document-block--flex {
  padding: 40px 26px;
}

.investor-main-swiper .nested-slider-wrap .document-block.document-block--flex .icon,
.document-block.document-block--flex .icon {
  width: 80px;
  height: 80px;
  margin-left: 0px;
  margin-right: 20px;
}

.document-block.document-block--flex .info {
  margin-top: 0px;
  width: calc(100% - 100px)
}

.investor-main-swiper .nested-slider-wrap .document-block.document-block--flex,
.document-block.document-block--flex {
  text-align: left;
}

.document-block.document-block--flex .info .h5 {
  font-weight: 600;
  font-family: var(--fontbody);
}

#glance-main-section .theme-nav-pills.nav-pills {
  /* justify-content: center; */
  column-gap: 32px;
  row-gap: 16px;
  margin-bottom: 50px;
}

#glance-main-section .theme-nav-pills.nav-pills .nav-link {
  min-width: 200px;
  border: 1px solid #929292;
}

#chartTabsContent canvas {
  width: 100%;
  /*max-width: 980px;*/
  max-height: 70vh;
}

#chartTabsContent .h3 {
  font-size: 40px;
  /*text-align: center;*/
}

/* Financial Year Section */
/* Wrapper */
.financial-year-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0px 0px 30px 0px #0000000D;
  display: flex;
  gap: 2rem;
}

/* Left Navigation */
.financial-nav {
  min-width: 200px;
}

.financial-nav .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #717171;
  font-size: 20px;
  column-gap: 10px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  max-width: 150px;
  transition: all 0.3s;
}

.financial-nav .nav-link::after {
  content: '';
  height: 10px;
  width: 10px;
  display: inline-block;
  transform: rotate(45deg);
  border: 3px solid var(--primary);
  border-left: 0px;
  border-bottom: 0px;
  opacity: 0;
  transition: all 0.3s;
}

.financial-nav .nav-link.active {
  color: var(--primary);
  background-color: transparent;
  font-weight: 600;
}

.financial-nav .nav-link.active::after {
  opacity: 1;
}

.financial-nav .nav-link:hover {
  background: transparent;
  color: var(--primary);
}

.financial-nav .read-more-btn {
  padding: 0px;
  background-color: none;
  background: none;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-top: 30px;
}

/* Right Content */
.financial-content {
  flex-grow: 1;
}

/* Announcement Table */
.announcement-table {
  border-radius: 8px;
  overflow: hidden;
}

.announcement-header {
  padding: 16px 24px;
  font-family: var(--font-heading);
}

.year-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  line-height: 40px;
}

.table-title-wrap .h4 {
  color: var(--secondary);
  font-size: 30px;
  line-height: 40px;
}

.announcement-header>div {
  font-family: inherit;
  font-weight: 700;
}

.announcement-row {
  padding: 24px;
  background: #F8F8FD;
  margin-bottom: 5px;
  border-radius: 10px;
}


#csr-report-section .title-wrap .h4 {
  font-size: 30px;
  color: var(--secondary);
}

.csr-report-row .col-lg-4+.col-lg-4 {
  border-left: 2px solid #B3B3B3;
}

.csr-info-block .date {
  font-size: 16px;
  margin-bottom: 10px;
}

.csr-info-block {
  padding: 0px 50px;
}

.csr-report-row .col-lg-4:first-child .csr-info-block {
  padding-left: 0px;
}

.csr-report-row .col-lg-4:nth-child(3n) .csr-info-block {
  padding-right: 0px;
}

.csr-info-block .h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.table-box-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0px 0px 30px 0px #0000000D;
}

.custom-table .custom-table-row {
  background: #F6F6F6;
  padding: 20px 30px;
  border-radius: 10px;
  font-size: 20px;
}

.custom-table .custom-table-header {
  padding: 10px 30px;
  font-size: 22px;
}

.custom-table .custom-table-row:nth-child(even) {
  background: #ffffff;
}

.custom-table .custom-table-row p,
.custom-table .custom-table-header p {
  margin: 0px;
}

.custom-table .col-lg-3 {
  text-align: right;
}

.custom-table .custom-table-row .hidden-label {
  display: none;
}

#operation-metrics-section .h4 {
  font-size: 30px;
  color: var(--secondary);
}

.custom-table .custom-table-row .th {
  font-weight: 600;
  color: var(--secondary);
}

.document-block--center {
  text-align: center;
}

.document-block--center .icon {
  margin-left: auto;
  margin-right: auto;
}

#about-shareholder-section {
  padding-top: 120px;
}

.wp-editor p+p {
  margin-top: 1rem;
}

#about-shareholder-section .h2 {
  margin-bottom: 1rem;
}

.share-address-block {
  padding: 30px;
  background: var(--white);
  border: 1px solid #DFD0B0;
  border-radius: 20px;
  min-height: 100%;
}

.share-address-block .info ul {
  list-style: none;
  padding: 0px;
}

.share-address-block .info ul li {
  margin-bottom: 30px;
}

.share-address-block .h4 {
  margin-bottom: 30px;
  font-family: var(--font-body);
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
}

#shareholder-extra-links .content-wrap .h2 {
  margin-bottom: 24px;
}

#shareholder-extra-links .share-e-link-item {
  margin-bottom: 30px;
}

#shareholder-extra-links .share-e-link-item .h4 {
  font-size: 24px;
  font-family: var(--font-body);
  line-height: 1.3;
  font-weight: 600;
}

#shareholder-extra-links .share-e-link-item a {
  display: flex;
  column-gap: 10px;
  align-items: center;
  color: #1E53D8;
  background: #F6F6F6;
  padding: 15px;
  border-radius: 10px;
}

#shareholder-extra-links .share-e-link-item a span img {
  width: 20px;
}

.gorewise-banner#home-banner .content-layer {
  align-items: center;
}

.gorewise-banner#home-banner .img-wrap img {
  width: 230px;
  height: auto;
  margin-bottom: 15px;
}

.gorewise-banner#home-banner .h1 {
  margin-bottom: 2rem;
}

.gorewise-banner#home-banner .h4 {
  font-size: 30px;
  font-weight: 400;
}

.gorewise-banner#home-banner .btns-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
  margin-top: 35px;
}

.gorewise-banner#home-banner .bg-layer::after {
  background: linear-gradient(90deg, rgba(3, 3, 3, 0.76) 5.25%, rgba(2, 2, 2, 0.547599) 43.57%, rgba(2, 2, 2, 0.42833) 56.5%, rgba(0, 0, 0, 0) 82.4%);
}

.pro-con-wrap {
  padding: 32px 40px;
  border-radius: 20px;
}

.pro-con-wrap ul {
  list-style: none;
  padding: 0px;
}

.pro-con-wrap li {
  padding: 24px 30px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 10px;
  margin-bottom: 20px;
}

.pro-con-wrap .h4 {
  margin-bottom: 1rem;
  font-size: 30px;
  font-weight: 700;
}

.pro-con-wrap.con {
  background: #FFEFEF;
}

.pro-con-wrap.con li {
  background: #F2E1E1;
}

.pro-con-wrap.pro {
  background: #E3F6E6;
}

.pro-con-wrap.pro li {
  background: #D2ECE0;
}

.impact-container {
  background: #EEF0FB;
  padding: 24px 40px;
  padding-bottom: 40px;
  border-radius: 20px;
  text-align: center;
}

.impact-container .title-wrap .h4 {
  font-size: 30px;
  margin-bottom: 1rem;
  font-weight: 700;
}

.g-impact-itme .icon {
  width: 80px;
  height: 80px;
  margin: 0px auto 12px;
}

.g-impact-itme .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* object-position: bottom center; */
}

.g-impact-itme .info h4 {
  font-size: 20px;
  font-family: var(--font-body);
  font-weight: 500;
}

#gorewise-foundation-section .thumbs-swiper {
  height: 600px;
}

#gorewise-foundation-section .thumbs-swiper .swiper-slide {
  height: 80px;
}

#gorewise-foundation-section .thumb-item {
  display: flex;
  column-gap: 28px;
  align-items: center;
  padding: 18px 32px;
  border-radius: 100px;
  border: 1px solid var(--color-text);
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  font-family: var(--font-heading);
}

#gorewise-foundation-section .swiper-slide-thumb-active .thumb-item {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

#gorewise-foundation-section .content-item {
  padding: 50px 40px 30px;
  font-size: 20px;
}

#gorewise-foundation-section .content-item .btn-wrap a {
  color: var(--primary);
  margin-top: 20px;
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
}

#common-partner-section .partner-block--slide {
  box-shadow: 0px 0px 30px 0px #0000001A;
  border-radius: 20px;
  padding: 30px;
}

#common-partner-section .swiper {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 4%;
}

#common-partner-section {
  text-align: center;
}

#common-partner-section .btns-wrap {
  margin-top: 30px;
  display: flex;
  column-gap: 20px;
  justify-content: center;
}

#go-tech-section {
  background: var(--primary);
  color: var(--white);
}

.go-tech-slide .h4 {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 700;
}

.go-tech-slide .info-wrap p {
  font-size: 20px;
}

.go-tech-slide>.row {
  align-items: center;
}

.go-tech-slide .img-wrap {
  border-radius: 20px;
  overflow: hidden;
}

.go-tech-slide .info-wrap {
  padding-right: 50px;
}

#go-tech-swiper-navigation {
  justify-content: flex-start;
}

#go-tech-swiper-navigation>button {
  background: var(--white);
  color: var(--primary);
}

#go-tech-section .video-wrapper {
  margin-top: 60px;
  text-align: center;
}

#go-tech-section .video-wrapper .h3 {
  font-weight: 300;
}

#go-tech-section .video-wrapper .video-wrap {
  padding-right: 10%;
  padding-left: 10%;
  margin-top: 50px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

#go-tech-section .video-wrapper .video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 20px;
}

#go-tech-section .video-wrapper .video-wrap .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 9;
}

.play-icon {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.play-icon.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.common-certification-block {
  display: flex;
  text-align: center;
  min-height: 100%;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
}

.common-certification-block img {
  max-width: 100%;
}

#gorewise-circularity-section {
  background: var(--primary);
  color: var(--white);
  padding-bottom: 100px;
}

#gorewise-circularity-section .association-block {
  background: var(--white);
  border: 1px solid #DFD0B0;
}

#gorewise-circularity-section .association-block .p-association-name {
  font-family: var(--font-body);
}

#go-circularity-swiper-navigation {
  justify-content: flex-end;
}

#go-circularity-swiper-navigation>button {
  background: var(--white);
  color: var(--primary);
}

.common-cta#sus-cta-section {
  padding-bottom: 100px;
}

.common-cta#sus-cta-section .cta-links-list {
  margin-top: 80px;
}

.focus-area-section #go-tech-swiper-navigation {
  justify-content: center;
}

/* #go-tech-swiper-navigation>button {
  background: var(--primary);
  color: var(--white);
} */

.focus-area-section .title-wrap {
  display: flex;
  column-gap: 60px;
  align-items: flex-end;
  margin-bottom: 50px;
  justify-content: space-between;
}

.focus-area-section#csr-impact-section .theme-nav-pills.nav-pills {
  column-gap: 20px;
  row-gap: 20px;
  margin-bottom: 20px;
}

.focus-area-section#csr-impact-section .theme-nav-pills.nav-pills .nav-link {
  border: 1px solid #929292;
}

#impact-stat-section {
  padding-bottom: 70px;
  background-color: var(--primary);
  color: var(--white);
}

.impact-stat-item {
  background: linear-gradient(126.1deg, rgba(2, 122, 58, 0.2) -15.34%, rgba(4, 224, 106, 0.2) 125.03%);
  padding: 40px 60px;
  border-radius: 20px;
  text-align: center;
  min-height: 100%;
}

.impact-stat-item .icon {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.impact-stat-item .info h3 {
  padding-bottom: 20px;
  font-size: 40px;
}

#csr-strategic-section .swiper-navigation-static {
  justify-content: flex-end;
}

#csr-strategic-section .association-block {
  background: #FFFAEF;
  border: 1px solid #DFD0B0;
}

#csr-strategic-swiper {
  padding-left: 5%;
}

.main-content-wrap {
  position: relative;
  color: var(--white);
  padding: 30px 50px 80px;
  border-radius: 20px;
  overflow: hidden;
}

.csr-docs-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
  row-gap: 24px;
}

.csr-docs-list .csr-doc-block {
  background: var(--white);
  padding: 80px 40px;
  border-radius: 20px;
  text-align: center;
}

.csr-docs-list .csr-doc-block.csr-doc-block--large {
  grid-column: span 2;
  padding: 10px;
}

.csr-docs-list .csr-doc-block .info {
  margin-top: 60px;
}

.csr-docs-list .csr-doc-block .h4 {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 600;
}

#csr-gover-section .bg-layer.have-overlay::after {
  opacity: 0.6;
}

.csr-cta-block {
  position: relative;
  padding: 70px 40px;
  text-align: center;
  color: var(--white);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.csr-cta-block .btn-wrap {
  margin-top: 50px;
}

.csr-cta-block p {
  padding-left: 100px;
  padding-right: 100px;
}

.csr-cta-block .bg-layer::after {
  opacity: 0.5;
}

.csr-cta-block .bg-layer img {
  transition: 0.4s ease;
}

.csr-cta-block:hover .bg-layer img {
  filter: blur(20px);
}

.future-timeline-block .dot {
  width: 30px;
  height: 30px;
  background: var(--secondary);
  border-radius: 30px;
  position: static;
  top: -15px;
}

.future-timeline-block {
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
}

.future-timeline-block .content-wrap {
  display: flex;
  font-weight: 500;
  font-size: 16px;
  padding-top: 15px;
  padding-bottom: 15px;
  height: 200px;
}

#csr-future-swiper .swiper-slide:nth-child(even) .future-timeline-block .content-wrap {
  align-items: end;
}

.future-timeline-block .blank-box {
  width: 100%;
  height: 200px;
}

.future-timeline-block .dot::before {
  content: '';
  width: 100%;
  height: 6px;
  background: var(--primary);
  border-radius: 0px;
  left: 0px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.future-timeline-block {
  display: flex;
  flex-direction: column;
}

#csr-future-swiper .swiper-slide:nth-child(even) .future-timeline-block {
  flex-direction: column-reverse;
}


.epr-impact-stat#impact-stat-section {
  background: none;
  color: #123530;
}

.epr-impact-stat#impact-stat-section .col-lg-3:nth-child(4n + 1) .impact-stat-item {
  background: linear-gradient(126.1deg, rgba(2, 122, 58, 0.2) -15.34%, rgba(4, 224, 106, 0.2) 125.03%);
}

.epr-impact-stat#impact-stat-section .col-lg-3:nth-child(4n + 2) .impact-stat-item {
  background: linear-gradient(126.1deg, rgba(122, 84, 2, 0.2) -15.34%, rgba(224, 220, 4, 0.2) 125.03%);
}

.epr-impact-stat#impact-stat-section .col-lg-3:nth-child(4n + 3) .impact-stat-item {
  background: linear-gradient(126.1deg, rgba(2, 122, 98, 0.2) -15.34%, rgba(4, 224, 220, 0.2) 125.03%);
}

.epr-impact-stat#impact-stat-section .col-lg-3:nth-child(4n + 4) .impact-stat-item {
  background: linear-gradient(126.1deg, rgba(16, 2, 122, 0.2) -15.34%, rgba(60, 112, 243, 0.2) 125.03%);
}

.epr-go-tech-section#go-tech-section {
  background: var(--white);
  color: #123530;
}

.go-tech-container {
  background: var(--primary);
  padding: 50px 40px;
  border-radius: 20px;
  color: var(--white);
}

.go-tech-container .go-tech-slide .h4 {
  font-size: 40px;
}

.go-tech-container .go-tech-slide .epr-tech-list {
  list-style: none;
  padding: 0px;
}

.go-tech-container .go-tech-slide .epr-tech-list li {
  background: #F4EDDF;
  color: var(--color-text);
  font-size: 20px;
  padding: 15px 30px;
  border-radius: 10px;
  margin-top: 10px;
  border: 1px solid var(--white);
}

.go-tech-container #go-tech-swiper-navigation {
  justify-content: center;
}

.epr-contact-section#presence-contact-section {
  background: var(--primary);
  color: var(--white);
}

.epr-contact-section .form-container {
  padding: 20px 50px;
  border-radius: 20px;
  color: var(--color-text);
}

.epr-contact-section#presence-contact-section .content-wrap .h3 {
  font-weight: 700;
}

.epr-contact-section#presence-contact-section .contact-form-links {
  list-style: none;
  padding: 0px;
  margin-top: 60px;
}

.epr-contact-section#presence-contact-section .contact-form-links li a {
  margin-top: 30px;
  font-size: 20px;
  color: var(--white);
  display: inline-flex;
  column-gap: 20px;
  align-items: center;
}

.epr-contact-section .form-container .form-title .h3 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 0px;
}

.epr-contact-section .upload-dropzone {
  border: 1px solid #A9A9A9;
  background: var(--white);
  color: var(--primary);
}

.epr-service-item .icon {
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.epr-service-item .icon.img-contain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.epr-service-item .info .h4 {
  margin-bottom: 10px !important;
}

.epr-service-item .info p {
  font-size: 20px;
}

#epr-about-section .epr-svg-wrap {
  text-align: center;
}

#epr-about-section .epr-svg-wrap img {
  max-width: 100%;
  height: auto;
}

#epr-about-section .epr-svg-wrap {
  margin-top: 40px;
}

#epr-about-section .text-wrap p {
  margin-bottom: 1rem;
}

.page-title-header--product {
  position: relative;
  overflow-x: clip;
}

.page-title-header--product .bg-element {
  position: absolute;
  right: 0px;
  bottom: 0px;
  left: auto;
  height: 100%;
  width: 700px;
  overflow: hidden;
}

.key-features-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 24px;
  row-gap: 24px;
}

.key-features-wrap .value-item {
  padding: 24px 12px;
  box-shadow: 0px 0px 20px 0px #00000026;
  border-radius: 20px;
  text-align: center;
  background: var(--white);
  transition: 0.3s ease;
}

.key-features-wrap .value-item .icon img {
  transition: 0.1s ease;
}

.key-features-wrap .value-item .icon {
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.key-features-wrap .value-item h3 {
  margin-bottom: 10px !important;
}

.key-features-wrap .value-item:hover {
  color: var(--white);
  background: var(--color-text);
}

.key-features-wrap .value-item:hover .icon img {
  filter: grayscale(1) brightness(100);
}

.product-accordion-item .product-detail-flex {
  display: flex;
}

.product-accordion-item .product-detail-flex>* {
  flex-grow: 1;
}

.product-accordion-item .product-detail-flex .product-contact-card {
  width: 35%;
}

.product-accordion-item .product-detail-flex .product-content-wrap {
  width: 65%;
}

.product-accordion-item .accordion-button {
  padding: 10px 15px;
  font-size: 24px;
  font-weight: 400;
  color: var(--secondary);
}

.product-accordion-item .features-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0px;
  column-gap: 20px;
  row-gap: 15px;
  margin: 0px;
}

.product-accordion-item .features-list li {
  padding: 8px 24px;
  border: 1px solid #CBCBCB;
  border-radius: 30px;
}

.product-accordion-item .end-product-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 10px;
  row-gap: 10px;
}

.product-accordion-item .e-pro-item .img-wrap {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background: #ddd;
}

.product-accordion-item .e-pro-item .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-accordion-item .e-pro-item {
  text-align: center;
}

.product-accordion-item .e-pro-item .info .h5 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
}

.product-accordion-item .suggested-product-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 10px;
  row-gap: 10px;
}

.product-accordion-item .sug-pro-item {
  background: #EFEEE7;
  text-align: center;
  padding: 15px 10px;
}

.product-accordion-item .sug-pro-item .icon-wrap {
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
}

.product-accordion-item .sug-pro-item .icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-accordion-item .sug-pro-item .info .h5 {
  font-size: 16px;
  margin-bottom: 0px;
  margin-top: 18px;
}

.product-accordion-item .product-detail-wrap {
  margin-top: 30px;
}

.product-accordion-item .product-contact-card .img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
}

.product-accordion-item .product-contact-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-accordion-item .product-contact-card .info {
  padding: 20px 30px;
}

.product-accordion-item .product-contact-card .contact-detail {
  margin-top: 60px;
  display: flex;
  column-gap: 10px;
}

.product-accordion-item .product-contact-card .contact-detail ul {
  list-style: none;
  padding: 0px;
}

.product-accordion-item .product-contact-card .h5 {
  font-size: 18px;
  font-family: var(--font-body);
  font-weight: 500;
}

.product-accordion-item .product-contact-card .contact-detail ul a {
  color: var(--primary);
}

.product-accordion-item .accordion-button::after {
  background-image: none;
  content: '+';
  font-size: 40px;
  border: 1px solid var(--color-text);
  border-radius: 40px;
  width: 50px;
  height: 50px;
  line-height: 1;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-accordion-item .accordion-button:not(.collapsed)::after {
  transform: none;
  content: '-';
}

.product-accordion-item .accordion-button {
  box-shadow: none;
  background: none;
}

.product-accordion-wrap .accordion-item {
  border: 1px solid #272727 !important;
  margin-bottom: 20px;
}

.product-accordion-wrap .accordion-body {
  padding: 0px;
  border-top: 1px solid #272727 !important;
}

.product-accordion-wrap .product-content-wrap {
  padding: 30px 50px;
}

.product-accordion-item .product-detail-flex .product-contact-card {
  border-right: 1px solid #272727 !important;
}

#product-explore-section {
  background: #123530;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

#product-explore-section .bg-element {
  position: absolute;
  bottom: -50%;
  right: 0px;
}

.related-block {
  background: #F0F0F0;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.related-block .img-wrap {
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
}

.related-block .info {
  padding: 15px 30px;
}

.related-block .info .h4 {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  margin-bottom: 0px;
  align-items: center;
}

#product-explore-section .loop-break-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding-right: 50px;
}

.certificate-new-section .certification-block {
  background: none;
  border: 1px solid #C4C4C4;
}

#csr-strategic-section #csr-strategic-swiper-navigation-new {
  justify-content: center;
}

.product-csr-strategic#csr-strategic-section {
  background: #FFFAEF;
}

.product-csr-strategic#csr-strategic-section .association-block {
  background: #FFFFFF;
}

#product-kfeatures-section {
  padding-top: 120px;
}

#industury-main-section {
  background: var(--secondary);
  color: var(--white);
}

.product-industry-block {
  background: var(--white);
  display: block;
  min-height: 100%;
  box-shadow: 0px 0px 20px 0px #00000026;
  border-radius: 15px;
  padding: 0px 24px 40px 24px;
  position: relative;
}

.product-industry-block .wp-editor * {
    font-size: inherit !important;
    font-family: inherit !important;
    color: inherit !important;
    line-height: inherit !important;
}

.product-industry-block .img-wrap {
  width: 250px;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  transform: translateY(-80px);
  margin-bottom: -60px;
}

.industry-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 40px;
}

.industry-card-item {
  padding-top: 80px;
}

.product-industry-block .info .wp-editor ul {
  margin-top: 20px;
}

/* Awards slide with Image */

.awards-block--slide.have-img {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.awards-block--slide.have-img .award-image {
  width: 100%;
  height: auto;
  aspect-ratio: 7/4;
}

.awards-block--slide.have-img .award-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.awards-block--slide.have-img .info-wrap {
  position: absolute;
  left: 0px;
  bottom: 0px;
  color: #ffffff;
  width: 100%;
  margin: 0px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  padding-top: 20px;
  padding-bottom: 5px;
}


/* FIXES */

#home-product-swiper .swiper-slide.swiper-slide-active .product-block--slide .product-info .hidden-summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 20px;
}

.product-block--slide .product-applications ul {
  /*overflow-y: auto;*/
  column-gap: 15px;
  row-gap: 10px;
  margin: 0px;
  /*max-height: 160px;*/
}

.product-applications ul li {
  /*width: 160px;*/
  font-size: 13px;
  line-height: 1.2;
}

.product-applications ul li span {
  margin-bottom: 0.5rem;
}



/* NEW EPR Section */

#epr-map-section {
    background: #E3F6E6;
}

#epr-map-section .content-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 60px 40px;
}

#epr-map-section .content-wrap .content-inner-wrap {
    max-width: 800px;
}

.epr-stat-list-item {
    padding: 15px 20px;
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
}

.epr-stat-list-item > h3 {
    margin: 0;
}


/* Desktop Only */

@media screen and (min-width: 992px) {

  /* --- Mega Menu Container --- */
  .mega-menu.dropdown {
    position: static;
  }

  /* Target the dropdown menu of the top-level "Expertise" item */
  header .navbar-nav>.mega-menu.dropdown>.dropdown-menu {
    left: 0px;
    max-width: 100%;
    width: 100%;
    margin-top: 0.5rem;
    /* Add some space from the main nav */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0px 0px 24px 24px;
    border: none;
    display: grid;
    /* Use CSS Grid for the columns */
    grid-template-columns: repeat(6, 1fr);
    /* Create 4 equal columns */
    padding: 1rem;
    column-gap: 16px;
    row-gap: 16px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
  }

  header .navbar-nav>.mega-menu.dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
  }

  .dropdown-item {
    white-space: normal;
  }

  .dropdown-item:focus,
  .dropdown-item:hover {
    color: var(--primary);
    text-decoration: underline;
  }

  /* --- Column Styling (Second Level) --- */
  /* Target the second-level menu items (the columns/cards) */
  /* header .mega-menu.dropdown>.dropdown-menu>.menu-item-has-children {
    padding: 45px 40px 50px;
    border-radius: 13px;
    list-style: none;
  } */

  /* Style the second-level links (e.g., "Digital Marketing") */
  header .mega-menu.dropdown>.dropdown-menu>.nav-item.dropdown>a {
    font-size: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    color: #63AE33;
  }

  header .mega-menu-icon {
    width: 40px;
    height: 40px;
  }

  /* --- Sub-Sub Menu Styling (Third Level) --- */
  /* The nested list within each column */
  header .mega-menu.dropdown .dropdown-menu .dropdown-menu {
    position: static !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: block !important;
  }

  /* The third-level list items */
  header .mega-menu.dropdown .dropdown-menu .dropdown-menu .nav-item {
    padding: 0;
  }

  header .mega-menu.dropdown .dropdown-menu .dropdown-menu .nav-item a {
    padding: 20px 0px;
    border-bottom: 1px solid;
    font-size: 18px;
    font-weight: 600;
    color: #272727;
    line-height: 1;
  }

  header .mega-menu.dropdown .dropdown-menu .dropdown-menu .nav-link {
    padding: 0;
    color: #495057;
    background-color: transparent !important;
  }

  header .mega-menu.dropdown .dropdown-menu .dropdown-menu .nav-link:hover {
    color: #0d6efd;
    /* Bootstrap's primary blue */
  }

  header .dropdown-menu .nav-item a {
    background: transparent;
  }

  header .mega-menu.dropdown>.dropdown-menu {
    background-image: url('../img/Union.svg');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 160px;
  }
  
    .presence-location-block{
        min-height: 100%;
    }
    
    .p-location-name {
        min-height: 100px;
    }
    
    .p-location-detail {
        min-height: 27px;
    }
}

/*@media (max-width: 1440px) {}*/

@media (max-width: 1600px) {
  :root {
    font-size: 16px;
  }

  .main-header .navbar-brand {
    max-width: 280px;
  }

  .main-header .navbar-nav {
    column-gap: 24px;
  }

  .main-header .desktop-nav-wrap {
    column-gap: 24px;
  }

  .main-header .navbar-nav .nav-link {
    font-size: 14px;
  }

  .f-logo {
    max-width: 280px;
  }

  .h1 {
    font-size: 60px;
    line-height: 62px;
  }

  .h2 {
    font-size: 50px;
    line-height: 52px;
  }

  .h3 {
    font-size: 40px;
    line-height: 52px;
  }

  .h4 {
    font-size: 22px;
    line-height: 32px;
  }

  .h5 {
    font-size: 20px;
    line-height: 22px;
  }

  .font-size-20 {
    font-size: 18px;
  }

  .feature-block {
    padding: 30px 24px;
  }

  .feature-block .icon {
    width: 56px;
  }

  .feature-block .info {
    width: calc(100% - 80px)
  }

  .feature-block .count {
    font-size: 40px;
  }

  .share-price-block .share-price {
    font-size: 50px;
  }

  .share-price-block {
    padding: 40px 40px 60px;
  }
}

@media (max-width: 1080px) {
  :root {
    font-size: 14px;
  }

  .h1 {
    font-size: 36px;
    line-height: 38px;
  }

  .h2 {
    font-size: 32px;
    line-height: 34px;
  }

  .h3 {
    font-size: 28px;
    line-height: 30px;
  }

  .h4 {
    font-size: 20px;
    line-height: 30px;
  }

  .h5 {
    font-size: 18px;
    line-height: 20px;
  }

  .font-size-20 {
    font-size: 16px;
  }

  .font-size-40 {
    font-size: 28px;
  }

  .main-header .navbar-brand {
    max-width: 180px;
  }
}

@media (max-width: 992px) {

  .bottles-recycled-txt {
    font-size: 10px;
    text-align: center;
    margin-bottom: 5px !important;
  }

  .bottle-counter {
    display: block;
    padding: 5px 15px;
  }

  .bottle-counter .bottles-recycled {
    padding: 0px;
    justify-content: center;
    background: none;
  }
  
  .bottles-recycled .counter-icon {
    width: 30px;
    height: 30px;
  }

  .bottles-recycled-number {
    font-size: 18px;
    padding-bottom: 15px;
    line-height: 1;
  }

  .bottles-recycled-number span label {
    font-size: 10px;
    left: 0px;
  }

  #home-about {
    padding: 40px 0px;
  }

  .section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  #features-section {
    height: auto;
  }

  .feature-block .count {
    font-size: 24px;
  }

  .feature-block {
    align-items: center;
    padding: 10px 24px;
    border-radius: 15px;
    margin-bottom: 10px;
    text-align: center;
    flex-direction: column;
    min-height: auto;
  }

  .feature-block .info {
    width: 100%;
  }

  .feature-block .icon {
    margin-bottom: 10px;
  }

  .footer-left {
    padding-right: 0px;
    border: 0px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .f-logo {
    max-width: 180px;
    display: block;
  }

  .footer-right {
    padding-top: 10px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 40px;
  }

  .investor-card-block {
    margin-bottom: 30px;
    min-height: auto;
  }

  #home-insights-section .bg-element {
    width: 130px;
    height: 130px;
    right: 0px;
    left: auto;
    top: 30px;
  }

  .bg-element img,
  .bg-element svg {
    width: 100%;
    height: auto;
  }

  .product-block--slide .product-info {
    display: block;
  }

  #home-product-swiper .swiper-slide.swiper-slide-active .product-block--slide .img-cover {
    width: 100%;
  }

  #home-product-swiper .swiper-slide.swiper-slide-active .product-block--slide .content-wrap {
    width: 100%;
    padding: 15px 0px 0px;
  }

  .product-block--slide .icon-only-btn {
    display: none;
  }

  #home-product-swiper .swiper-slide {
    height: auto;
  }

  #home-product-swiper .swiper-slide.swiper-slide-active .product-block--slide {
    padding-bottom: 30px;
  }

  #home-product-swiper .swiper-wrapper {
    padding: 0px;
  }

  #home-product-swiper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .product-block--slide .product-applications ul {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-title-header {
    padding-top: 60px;
  }

  .page-title-header .img-cover {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  #about-us-section .bg-element {}

  #about-us-section {
    padding-top: 40px;
  }

  #about-us-section .element {
    min-height: auto;
    opacity: 0.1;
  }

  #about-us-section .about-features {
    position: static;
  }

  #about-us-section .about-features-list li {
    transform: translate(0px, 0px) !important;
  }

  #about-us-section .wraps-flex {
    display: block;
    position: relative;
    padding-bottom: 40px;
  }

  #about-us-section .left-wrap,
  #about-us-section .right-wrap {
    width: 100%;
  }

  #about-us-section .right-wrap {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 30px;
  }

  #about-us-section .left-wrap {
    position: absolute;
    bottom: 0px;
  }

  .about-features-list li {
    width: auto;
  }

  .about-features-list li .info {
    width: calc(100% - 120px);
  }

  .about-features-list li {
    column-gap: 20px;
  }

  #mission-vision-section .mission-vision-wrapper {
    padding: 30px 15px;
  }

  #about-values-section .value-item {
    width: calc((100% / 2) - 10px);
    padding: 20px 10px;
  }

  #about-values-section .values-wrap {
    justify-content: center;
  }

  #about-values-section .value-item .icon {
    width: 50px;
    margin-bottom: 10px;
  }

  #about-values-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .more-info-wrap .icon-box .info .icon-title {
    font-size: 28px;
  }

  .more-info-wrap .icon-box .icon {
    width: 50px;
  }

  .more-info-wrap .icon-box .info {
    width: calc(100% - 65px);
  }

  #home-insights-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .post-block.post-block--basic .content-wrap {
    padding: 15px;
  }

  .post-block--basic {
    min-height: auto;
  }

  .post-block--basic .content-wrap .btn {
    display: none;
  }

  .more-info-wrap.more-info-wrap--right {
    margin-top: 40px;
  }

  .about-features-list li .icon {
    padding: 10px;
    width: 80px;
    height: 80px;
  }

  .about-features-list li .icon img {
    width: 40px;
    height: 40px;
  }

  #about-journey-section .journey-wrapper {
    display: block;
  }

  #about-journey-section .journey-thumb-swiper {
    height: auto;
    width: 100%;
    margin: 30px 0px;
  }

  #about-journey-section .year-button {
    font-size: 20px;
    font-family: var(--font-body);
    padding-right: 0px;
    text-align: center;
    padding-bottom: 20px;
  }

  #about-journey-section .year-button::before {
    top: auto;
    bottom: 0px;
    left: 50%;
    transform: translate(0, -50%);
  }

  #about-journey-section .journey-thumb-swiper .swiper-slide:not(:last-child) .year-button::after,
  #about-journey-section .journey-thumb-swiper .swiper-slide .year-button::after {
    width: 100%;
    height: 1px;
    bottom: 10px;
    top: auto;
    left: auto;
    right: 0px;
  }

  #about-journey-section .journey-swiper {
    width: 100%;
  }

  #about-journey-section .journey-item .year-title {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 10px;
  }

  .gorewise-banner#home-banner .img-wrap img {
    width: 160px;
  }

  .pro-con-wrap li {
    font-size: 16px;
    padding: 10px 15px;
    margin-bottom: 10px;
  }

  .pro-con-wrap .h4 {
    font-size: 20px;
  }

  .pro-con-wrap {
    padding: 24px 30px;
  }

  header .navbar-nav .dropdown {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  header .navbar-nav .dropdown-menu {
    width: 100%;
  }

  .main-header .navbar-nav .dropdown>.nav-link,
  .main-header .navbar-nav .dropdown>.dropdown-item {
    width: calc(100% - 60px);
  }

  .main-header .dropdown-toggle-button {
    width: 40px;
    height: 30px;
    margin-left: 20px;
    background: var(--primary);
    font-size: 20px;
    color: var(--white);
    font-weight: 400;
    border-radius: 20px;
  }

  .main-header .navbar-nav {
    column-gap: 0px;
    row-gap: 0px;
  }

  .extra-links {
    display: none;
  }

  .main-header .navbar-nav li {
    padding-top: 3px;
    padding-bottom: 3px;
  }

  .main-header .navbar-nav>li {
    border-top: 1px solid var(--secondary);
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .main-header .navbar-nav {
    padding-top: 10px;
  }

  .main-header .navbar-nav>li:first-child {
    border: 0px;
  }

  .dropdown-menu {
    background: none;
    border: 0px;
    padding: 0px;
  }

  .dropdown-item {
    padding: 5px 0px;
    font-size: 14px;
    font-weight: 500;
  }

  /* Base button styling */
  .navbar-toggler {
    border: none;
    padding: 0.4rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background-color: transparent;
    background-color: rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  }

  /* Focus ring */
  .navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
  }

  /* Reset Bootstrap default icon background */
  .navbar-toggler-icon {
    background-image: none !important;
  }

  /* Hamburger base (3 lines) */
  .navbar-toggler-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    /* middle bar */
    border-radius: 999px;
    transition: background-color 0.25s ease, transform 0.25s ease;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 999px;
    transition:
      transform 0.25s ease,
      top 0.25s ease,
      opacity 0.2s ease,
      background-color 0.25s ease;
  }

  /* Spacing for default hamburger */
  .navbar-toggler-icon::before {
    top: -7px;
  }

  .navbar-toggler-icon::after {
    top: 7px;
  }

  /* Hover color tweak */
  .navbar-toggler .navbar-toggler-icon,
  .navbar-toggler .navbar-toggler-icon::before,
  .navbar-toggler .navbar-toggler-icon::after {
    background-color: var(--secondary);
  }

  /* ========================= */
  /* OPEN STATE: aria-expanded="true" → X */
  /* ========================= */

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
    /* hide middle bar */
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
    background-color: var(--secondary);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: var(--secondary);
  }

  /* Optional: stronger background when open */
  .navbar-toggler[aria-expanded="true"] {
    background-color: rgba(0, 0, 0, 0.06);
  }

  #team-head-section .bg-layer {
    position: static;
  }

  #team-head-section {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  #team-head-section .info {
    padding: 30px 24px;
    border-radius: 0px;
    margin-left: -15px;
    margin-right: -15px;
  }

  .accordion-theme .accordion-item .accordion-button {
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .accordion-theme .accordion-button::after {
    width: 30px;
    height: 30px;
  }

  .generic-cta-container .row>.col-lg-6:first-child {
    order: 2;
  }

  .generic-cta-container .cta-text-wrap::before {
    display: none;
  }

  .generic-cta-container .cta-text-wrap {
    background: var(--secondary);
    padding: 24px;
  }

  .page-title-header {
    min-height: auto;
    overflow: hidden;
    padding-bottom: 30px;
  }

  .presence-location-block {
    padding: 20px;
  }

  .map-marker-group .map-marker {
    width: 16px;
    height: 16px;
    font-size: 12px;
  }

  #presence-contact-section .content-wrap .h3 {
    font-size: 20px;
  }

  .map-marker-group .map-country-name {
    font-size: 14px;
  }

  .map-marker-group .map-marker-detail {
    padding: 8px 10px;
    padding-left: 25px;
    max-width: 150px;
  }

  .map-marker-group .map-location-type {
    font-size: 12px;
  }

  .first-section-padding {
    padding-top: 80px;
  }

  #shareholder-header-section .img-wrap {
    margin-top: 30px;
  }

  .focus-area-section .title-wrap {
    display: block;
  }

  .focus-area-section#csr-impact-section .theme-nav-pills.nav-pills {
    column-gap: 15px;
    row-gap: 10px;
    margin-top: 20px;
  }

  .go-tech-slide .info-wrap {
    padding-right: 0px;
    margin-bottom: 30px;
  }

  .go-tech-slide .info-wrap p {
    font-size: 16px;
  }

  .impact-stat-item {
    margin-bottom: 20px;
    min-height: auto;
    padding: 30px 24px;
  }

  .impact-stat-item .info h3 {
    font-size: 28px;
  }

  .impact-stat-item .icon {
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
  }

  #csr-strategic-section .swiper-navigation-static {
    justify-content: center;
    margin-top: 20px;
  }

  #csr-strategic-section .title-wrap {
    text-align: center;
  }

  .association-block {
    padding: 30px;
  }

  .main-content-wrap {
    padding: 40px 20px;
  }

  .csr-docs-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .csr-docs-list .csr-doc-block.csr-doc-block--large {
    grid-column: span 1;
  }

  .csr-docs-list .csr-doc-block {
    padding: 24px 30px;
  }

  .csr-docs-list .csr-doc-block .h4 {
    font-size: 24px;
  }

  .csr-docs-list .csr-doc-block .info {
    margin-top: 30px;
  }

  .csr-cta-block {
    padding: 40px 15px;
    min-height: auto;
  }

  .csr-cta-block p {
    padding: 0px;
  }

  .csr-cta-block .btn-wrap {
    margin-top: 20px;
  }

  #sustainability-head-section .img-wrap img {
    height: 350px;
  }

  #about-sus-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  #sus-approach-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .approach-pointers-list {
    margin-top: 20px;
    row-gap: 10px;
  }

  .approach-pointers-list li {
    padding: 10px 20px;
    font-size: 16px;
  }

  .sus-impact-item {
    margin-bottom: 30px;
  }

  .sus-impact-item .h4 {
    font-size: 28px;
  }

  .sus-impact-stat {
    padding: 30px 24px;
    min-height: auto;
  }

  .sus-impact-stat p {
    font-size: 24px;
  }

  .sus-impact-stat .h5 {
    font-size: 18px;
  }

  #sus-impact-stats {
    padding-bottom: 40px;
  }

  #sus-chairmain-section .content-wrap {
    padding-top: 30px;
  }

  #sus-chairmain-section .content-wrap>p {
    margin-top: 20px;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .nav-pills--theme {
    column-gap: 15px;
    row-gap: 10px;
  }

  .nav-pills--theme.nav-pills .nav-link {
    font-size: 14px;
  }

  .sus-achievement-item {
    display: block;
    text-align: center;
  }

  .sus-achievement-item .info {
    width: 100%;
    margin-bottom: 30px;
  }

  .sus-achievement-item .img-wrap {
    width: 100%;
    height: auto;
  }

  .sus-achievement-item .img-wrap img {
    width: 180px;
    height: auto;
  }

  #sus-achievements-section .sus-ac-nav-wrap .custom-progressbar {
    margin-top: 30px;
  }

  #sdg-section .content-wrap {
    padding: 0px;
    padding-bottom: 30px;
  }

  #sdg-section .content-wrap p {
    font-size: 16px;
  }

  #sdg-section .title-img-wrap {
    margin-bottom: 20px;
  }

  .esg-commit--slide .info-wrap .h4 {
    font-size: 24px;
  }

  #disclosure-audit-section .info-wrap .h4 {
    font-size: 24px;
  }

  #disclosure-audit-section .info-wrap {
    padding-right: 0px;
    padding-bottom: 30px;
  }

  .share-list-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  ul.cta-links-list {
    display: block;
    text-align: left;
    margin-top: 30px;
  }

  ul.cta-links-list li a {
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
  }

  #sus-cta-section .content-wrap p {
    font-size: 16px;
  }

  .gorewise-banner#home-banner {
    min-height: 550px;
  }

  .gorewise-banner#home-banner .content-layer {
    min-height: 550px;
  }

  .gorewise-banner#home-banner .btns-wrap {
    flex-direction: column;
    row-gap: 10px;
  }

  .g-impact-itme .icon {
    width: 50px;
    height: 50px;
  }

  .g-impact-itme {
    margin-top: 30px;
  }

  .impact-container {
    padding: 40px 30px;
  }

  #gorewise-foundation-section .thumb-item {
    font-size: 20px;
    padding: 10px;
    margin-bottom: 10px;
    justify-content: center;
  }

  #gorewise-foundation-section .thumb-item .icon img {
    width: 30px;
  }

  #gorewise-foundation-section .content-item {
    padding: 20px 15px;
    font-size: inherit;
  }

  .go-tech-slide .h4 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  #common-partner-section .btns-wrap {
    display: block;
  }

  #common-partner-section .btns-wrap>.btn:first-child {
    margin-bottom: 10px;
  }

  #go-circularity-swiper-navigation {
    justify-content: center;
  }

  #gorewise-circularity-section .title-wrap {
    text-align: center;
  }

  .page-title-header--product .bg-element {
    width: 200px;
    height: auto;
    top: 0px;
    bottom: auto;
    opacity: 0.2;
  }

  #product-kfeatures-section {
    padding-top: 40px;
  }

  .key-features-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-accordion-item .accordion-button {
    font-size: 18px;
  }

  .product-accordion-item .accordion-button::after {
    font-size: 20px;
    width: 30px;
    height: 30px;
    margin-left: 10px;
  }

  #product-main-section {
    padding: 0px;
  }

  #product-explore-section .loop-break-title {
    width: 100%;
    padding-right: 0px;
  }

  .product-accordion-item .product-detail-flex {
    display: block;
  }

  .product-accordion-item .product-detail-flex .product-contact-card {
    width: 100%;
  }

  .product-accordion-item .product-contact-card .info {
    padding: 15px;
  }

  .product-accordion-item .product-contact-card .contact-detail {
    margin-top: 20px;
  }

  .product-accordion-item .product-contact-card .info .btn-wrap {
    margin-top: 15px;
  }

  .product-accordion-item .product-detail-flex .product-content-wrap {
    width: 100%;
    padding: 15px;
    border-top: 1px solid;
  }

  .product-accordion-item .features-list {
    row-gap: 10px;
    column-gap: 10px;
  }

  .product-accordion-item .features-list li {
    padding: 8px 14px;
  }

  .product-accordion-item .end-product-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-accordion-item .suggested-product-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .certification-block {
    padding: 20px;
  }

  .industry-cards-grid {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 30px;
    row-gap: 30px;
  }

  .product-industry-block {
    padding: 0px 20px 20px 20px;
  }

  .go-tech-container .go-tech-slide .h4 {
    font-size: 24px;
  }

  .epr-service-item .info p {
    font-size: 14px;
  }

  .epr-service-item {
    margin-top: 20px;
  }

  .go-tech-container {
    padding: 40px 15px;
  }

  #impact-stat-section {
    padding-bottom: 40px;
  }

  .epr-contact-section#presence-contact-section .contact-form-links {
    margin-top: 30px;
  }

  .epr-contact-section#presence-contact-section .contact-form-links li a {
    display: flex;
    justify-content: space-between;
  }

  .epr-contact-section .form-container {
    padding: 30px;
  }

  #investors-header-section .investors-stats-wrap .title-wrap .h3 {
    font-size: 24px;
  }

  #investors-header-section .investors-stats-wrap .title-wrap {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  #investors-header-section .inv-stat-item h4,
  #investors-header-section .inv-stat-item h4 span.number {
    font-size: 20px;
  }

  #investors-header-section .inv-stats {
    column-gap: 30px;
    row-gap: 20px;
  }

  #investors-header-section .inv-stat-item p {
    font-size: 16px;
  }

  #investor-main-section .page-navigation-wrapper {
    top: 58px;
  }

  #investors-text-section .row>.col-lg-7 {
    order: 2;
  }

  #investors-text-section .img-wrap {
    margin-bottom: 30px;
  }

  .investor-scroll-section {
    padding-top: 50px;
  }

  .investor-scroll-section .content-wrap {
    text-align: center;
  }

  .investor-thumb-wrap .swiper {
    padding-left: 0px;
    padding-right: 0px;
  }

  .shareholding-thumb-wrap {
    max-width: 100%;
  }

  .shareholding-thumb-wrap .swiper {
    height: auto;
    padding-bottom: 30px;
    padding-top: 0px;
  }

  .shareholding-wrap {
    padding: 0px;
    border: 0px;
    border-radius: 0px;
    max-height: 100%;
  }

  .acc-doc-list-wrap {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
    row-gap: 10px;
  }

  #about-shareholder-section {
    padding-top: 40px;
  }

  .share-address-block .h4 {
    margin-bottom: 20px;
  }

  .share-address-block {
    margin-bottom: 30px;
    min-height: auto;
  }

  .share-address-block .info ul li {
    margin-bottom: 15px;
  }

  .financial-year-wrapper {
    display: block;
  }

  .financial-nav .nav-link {
    width: 100%;
    max-width: 100%;
    padding: 8px 0px;
    font-size: 16px;
  }

  .financial-nav .read-more-btn {
    margin-top: 10px;
  }

  .table-title-wrap .h4 {
    font-size: 24px;
  }

  .financial-content {
    margin-top: 30px;
  }

  .simple-links-list .simple-link-nav {
    padding: 15px 20px;
    font-size: 16px;
    margin-bottom: 10px;
  }

  #csr-report-section {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .csr-info-block,
  .csr-report-row .col-lg-4:first-child .csr-info-block {
    padding: 15px;
  }

  .csr-report-row .col-lg-4+.col-lg-4 {
    border-left: 0px;
    border-top: 2px solid #B3B3B3;
  }

  #glance-main-section .theme-nav-pills.nav-pills {
    column-gap: 15px;
    row-gap: 10px;
    margin-bottom: 30px;
  }

  #chartTabsContent .h3 {
    font-size: 24px;
  }

  #glance-main-section .theme-nav-pills.nav-pills .nav-link {
    min-width: auto;
  }

  .csr-info-block .h5 {
    font-size: inherit;
  }

  .featured-news-media-item {
    display: block;
    padding: 24px;
  }

  .featured-news-media-item .img-wrap {
    width: 100%;
  }

  .featured-news-media-item .info {
    width: 100%;
    padding: 0px;
  }

  .featured-news-media-item .news_m-title {
    font-size: inherit;
  }

  #detail-blog-section .post-meta {
    display: block;
  }

  #detail-blog-section .post-meta>* {
    width: 100% !important;
    margin-top: 15px;
  }

  #detail-blog-section .post-meta {
    margin-bottom: 20px;
  }

  .dropdown-item.active,
  .dropdown-item:active {
    color: var(--primary);
    background: none;
  }

  .dropdown-item:focus,
  .dropdown-item:hover {
    background: none;
  }

  .timeline-section-wrapper {
    min-height: auto;
    position: static;
    margin-bottom: 60px;
  }

  .timeline-section-wrapper .timeline-section {
    display: block !important;
  }

  #journey-timeline-section:before {
    background: none;
  }

  #journey-timeline-section {
    padding-top: 40px;
  }

  #journey-timeline-section .timeline-container {
    display: block;
    max-width: 100%;
  }

  #journey-timeline-section .timeline-line-path {
    display: none;
  }

  .timeline-container .timeline-nav {
    display: none;
  }

  .timeline-section-wrapper .timeline-section .media-container>* {
    border-radius: 30px 30px 0px 0px;
    max-width: unset;
    max-height: unset;
    position: static;
  }

  .timeline-card-wrapper {
    border-radius: 0px 0px 30px 30px;
    padding: 24px;
  }

  .timeline-section-wrapper .timeline-section .timeline-card {
    width: auto;
    margin-top: -10px;
    position: static;
  }

  .timeline-container .timeline-sections {
    display: block;
  }

  .timeline-container .timeline-sections {
    position: relative;
  }

  .timeline-container .timeline-sections::before {
    content: '';
    width: 1px;
    height: 100%;
    top: 0px;
    bottom: 0px;
    display: block;
    position: absolute;
    left: 50%;
    border-left: 3px dashed var(--accent-secondary);
    z-index: -1;
    transform: translateX(-1px);
  }
  
  /* EPR SECTION*/
  
  #epr-map-section .content-wrap {
    padding: 40px 15px;
    }
    
    .epr-stat-list-item {
        padding: 15px 20px;
        border-radius: 8px;
        margin-bottom: 10px;
    }

}