@font-face {
  font-family: "Gotham";
  src:
    url("../fonts/Gotham-Bold.woff2") format("woff2"),
    url("../fonts/Gotham-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src:
    url("../fonts/Gotham-Book.woff2") format("woff2"),
    url("../fonts/Gotham-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src:
    url("../fonts/Gotham-BookItalic.woff2") format("woff2"),
    url("../fonts/Gotham-BookItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src:
    url("../fonts/Gotham-Medium.woff2") format("woff2"),
    url("../fonts/Gotham-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

body,
html {
  color: #434343;
  font-family: "Gotham", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  background-color: #ffffff;
  scroll-behavior: smooth;
}

body.preloader-active {
  overflow: hidden;
}

.dfcc-preloader {
  position: fixed;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.dfcc-preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.dfcc-preloader::after {
  content: "";
  position: absolute;
  inset: -15%;
  background: transparent;
  pointer-events: none;
}

.dfcc-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.dfcc-preloader__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  min-width: 300px;
  max-width: 760px;
  width: min(94vw, 760px);
  padding: 18px 18px 14px;
}

.dfcc-preloader__halo {
  position: absolute;
  width: 190px;
  height: 190px;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 141, 62, 0.24) 0, rgba(176, 141, 62, 0) 74%);
  animation: dfccPulse 1.8s ease-in-out infinite;
}

.dfcc-preloader__logo {
  position: relative;
  z-index: 1;
  width: 186px;
  max-width: 62vw;
  margin-bottom: 20px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.22));
}

.dfcc-preloader__bar {
  width: min(500px, 86vw);
  height: 4px;
  background: rgba(176, 141, 62, 0.2);
  border-radius: 999px;
  margin: 0 auto 12px;
  overflow: hidden;
}

.dfcc-preloader__bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ed1d24 0%, #b08d3e 100%);
  animation: dfccBarFill var(--dfcc-preloader-progress-duration, 1.5s) linear forwards;
}

.dfcc-preloader__text {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #222222;
  font-weight: 500;
}

.dfcc-preloader__subtext {
  margin: 8px 0 0;
  font-size: 13px;
  color: #666666;
}

@keyframes dfccBarFill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes dfccPulse {
  0%,
  100% {
    transform: translateX(-50%) scale(0.95);
    opacity: 0.65;
  }
  50% {
    transform: translateX(-50%) scale(1.08);
    opacity: 1;
  }
}

@keyframes dfccBgFlow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

@keyframes dfccShadeShift {
  0% {
    opacity: 0.85;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes dfccRedDrift {
  0% {
    transform: translate3d(-2%, 1%, 0) scale(1);
    opacity: 0.75;
  }
  100% {
    transform: translate3d(2%, -1%, 0) scale(1.05);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dfcc-preloader,
  .dfcc-preloader::before,
  .dfcc-preloader::after,
  .dfcc-preloader__halo,
  .dfcc-preloader__bar span {
    transition: none;
    animation: none;
  }
}

main {
  background-color: #ffffff;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 30px;
}

.cs-copyright {
  color: white;
  font-size: 12px;
}

ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
  list-style: square outside none;
}

ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 15px;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6em;
  margin: 0;
}

address {
  margin: 0 0 15px;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

a {
  color: #ed1d24;
  opacity: 1;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

button {
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
  opacity: 0.8;
}

table {
  width: 100%;
  margin-bottom: 25px;
}

table th {
  font-weight: 600;
  color: rgba(254, 254, 254, 0.7);
}

/*table td,
table th {
  border-top: 1px solid #4D4D4D;
  padding: 11px 10px;
}*/

dl {
  margin-bottom: 25px;
}

dl dt {
  font-weight: 600;
}

b,
strong {
  font-weight: 500;
}

pre {
  color: rgba(254, 254, 254, 0.7);
  border: 1px solid #4d4d4d;
  font-size: 18px;
  padding: 25px;
  border-radius: 5px;
}

kbd {
  font-size: 100%;
  background-color: rgba(254, 254, 254, 0.7);
  border-radius: 5px;
}

@media screen and (max-width: 991px) {
  body,
  html {
    font-size: 16px;
    line-height: 1.6em;
    overflow-x: unset;
  }
}

input,
textarea {
  color: #fefefe;
}

.heading-line {
  color: #b08d3e;
  padding-bottom: 10px;
  border-bottom: 4px solid #b08d3e;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.border-bottom-head {
  border-bottom: 1px solid #b08d3e;
}

.text-color-table {
  color: #000000;
}

.stakeholders {
  background-color: #fff;
  padding: 40px 15px;
}

.stakeholders-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stakeholder-card {
  border: 2px solid #b08d3e;
  background: #fff;
  position: relative;
  overflow: visible;
}

.stakeholder-header {
  background: #d8d0c2;
  text-align: center;
  padding: 50px 15px 20px;
}

.icon-box {
  width: 90px;
  height: 90px;
  background: #a97817;
  border: 4px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.icon-box img {
  width: 40px;
}

.stakeholder-title {
  color: #a97817;
  font-weight: 700;
  font-size: 12px;
  margin: 0;
}

.stakeholder-content {
  padding: 20px;
}

/* TEXT */
.stakeholder-content p {
  font-size: 15px;
  margin-bottom: 12px;
}

.stakeholder-content strong {
  color: red;
  display: block;
  margin-bottom: 3px;
}

.stakeholder-header {
  background: #cfcbbd;
  text-align: center;
  padding: 60px 15px 20px; /* this creates space for icon */
}

.high-box {
  background-color: #c9d6b9;
}
.moderate-box {
  background-color: #b08d3e;
  color: white;
}
.legend-box {
  padding: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 0.8rem;
}

.legend-box-container {
  margin: 59px 0px 0px 0px;
}

.stakeholder-card-heading {
  background-color: #fdfaf2;
  text-align: center;
  padding: 10px 0;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .stakeholders {
    width: 100%;
    margin-left: 0;
  }

  .stakeholder-card {
    margin-bottom: 20px;
  }

  .legend-box-container {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .stakeholder-card-heading {
    width: calc(100% + 40px);
  }

  .icon-box {
    width: 60px;
    height: 60px;
    top: -30px;
  }
}

.tr {
  border-bottom: 1px solid #b08d3e !important;
}

.bg-gold {
  background-color: #b08d3e !important;
}
.border-gold {
  border: 2px solid #b08d3e !important;
}
.resilient-label {
  background-color: #c9d6b9;
  color: #2c3e2d;
  font-weight: bold;
  padding: 8px 15px;
  min-width: 180px;
  text-align: center;
  font-size: 0.85rem;
}

.small-text {
  font-size: 0.85rem;
  line-height: 1.5;
  border: 1px solid #b08d3e;
  padding: 12px;
  width: 100%;
}

.fork-container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 60%;
  background-color: #b08d3e;
}

.fork-arrow-top,
.fork-arrow-bottom {
  width: 20px;
  height: 2px;
  background-color: #b08d3e;
  position: absolute;
  left: 0;
}

.fork-arrow-top {
  top: 25%;
}
.fork-arrow-bottom {
  bottom: 25%;
}

.fork-arrow-top::after,
.fork-arrow-bottom::after {
  content: "▶";
  color: #b08d3e;
  font-size: 10px;
  position: absolute;
  right: -5px;
  top: -11px;
}

.card-head {
  background-color: #b08d3e;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.small-text {
  font-size: 0.85rem;
  line-height: 1.5;
  border-radius: 2px;
  text-align: left;
  margin: 0px 0px;
  width: 100%;
  border: 1px solid #b08d3e;
}

.container.border-gold {
  border: 1px solid #b08d3e !important;
}

.resilient-card {
  border: 2px solid #b08d3e;
}

.card-header-gold {
  background: #a97817;
  color: #fff;
  font-weight: bold;
  padding: 15px;
  font-size: 18px;
}

.card-body-white {
  background: #fff;
  padding: 15px;
  font-size: 14px;
}

.flow-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.flow-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.flow-box {
  background: #c9d6b9;
  padding: 10px 15px;
  font-weight: bold;
  min-width: 200px;
}

.section-title {
  color: #a97817;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 2px solid #a97817;
  display: inline-block;
}

.risk-table {
  font-size: 14px;
}

.strategy-list {
  padding-left: 18px;
}

.strategy-list li {
  margin-bottom: 10px;
}

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(3, 80px);
  gap: 10px;
}

.sdg-grid img {
  width: 100%;
}

.resilient-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgb(226, 217, 184);
}

@media (max-width: 768px) {
  .flow-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .sdg-grid {
    grid-template-columns: repeat(3, 60px);
  }
}

/* Simple Table Title Icon Box css */

.simple-tabletitle-box {
  display: flex;
  flex-direction: row;
  gap: 15px;
  width: fit-content;
  margin-bottom: 7px;
  padding: 5px 2px;
  align-items: center;
}

.simple-tabletitle-icon {
  width: 60px;
  height: 60px;
}

.simple-tabletitle-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ab7f19;
}

@media(max-width: 767px) {
  .simple-tabletitle-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
}

/* Simple Table Title Icon Box css */

/* Main Table Warapper Box css */
.tabletitle-wrapper {
  border: 2px #ab7f19 solid;
  border-radius: 7px;
}
.tabletitle-box {
  display: flex;
  flex-direction: row;
  gap: 15px;
  width: 100%;
  padding: 8px;
  align-items: center;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

.tabletitle-box.color-lightbrown {
  background: #f6efe4;
}
.tabletitle-box.color-lightgreen {
  background: #EEF2EB;
}

.tabletitle-icon {
  width: 70px;
  height: 70px;
}

.tabletitle-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ab7f19;
}

.tabletitle-wrapper table {
  margin-bottom: 10px;
}

.tabletitle-wrapper table thead tr,
.tabletitle-wrapper table thead tr td {
  border-top: 0px !important;
}

.tabletitle-wrapper table thead tr:last-child td {
  border-bottom: 2px !important;
}

.tabletitle-wrapper table tbody tr:last-child,
.tabletitle-wrapper table thead tr:first-child td {
  border-bottom: 1px !important;
}

.tabletitle-wrapper table.noborder tbody tr,
.tabletitle-wrapper table.noborder tbody tr td,
.tabletitle-wrapper table.noborder thead tr {
  border: none !important;
}

.tabletitle-wrapper table tr td.brown-text p {
  margin-bottom: 0px;
}

.tabletitle-wrapper table tr.bg-brownpatch td {
  background: #f6efe4 !important;
  font-weight: bold;
}

.tabletitle-wrapper table tr.bg-greenpatch td {
  background: #F2F3EA!important;
  font-weight: bold;
}
.tabletitle-wrapper table tr td.bg-greenpatch{
  background: #F2F3EA!important;
  font-weight: bold;
  border-top: 2px solid #AB7E18;
}

.tabletitle-wrapper table tr.border-brown {
  border-bottom: 2px solid #AB7E18;
}

.tabletitle-wrapper table .border-brown-right {
  border-right: 2px solid #AB7E18;
}

.tabletitle-wrapper table tbody tr:last-child td {
  border-bottom: none;
}

.tabletitle-wrapper table tbody tr td.no-border {
  border-bottom: none;
}

/* Simple Table Title Icon Box css */

/* GRI box css start */
.gri-box {
  width: fit-content;
  display: flex;
  flex-direction: row;
  border: 1px solid #ab7f19;
  margin-bottom: 10px;
}

.gri-text {
  padding: 3px 10px;
  background: #ab7f19;
  color: #fff;
  font-weight: 500;
}

.gri-items {
  display: flex;
  flex-wrap: wrap;
  row-gap: 6px;
  padding: 3px 5px;
  align-items: center;
}

.gri-item {
  padding: 1px 8px;
  line-height: 1.2;
  border-right: 2px solid #ab7f19;
}

.gri-item:last-child {
  border-right: 0;
}

/* GRI box css end */

/* Search Page Styles start */
.search-container input {
  padding: 10px 15px;
  border: 1px solid grey;
  border-radius: 25px;
  width: 80%;
}
.search-container input[type="submit"] {
  width: 20%;
  margin-left: 10px;
  background-color: #c81e24;
  border: none;
  color: white;
}
.search-container input[type="search"] {
  color: black;
}
.search-container form {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.search-container .search-result {
  margin-top: 15px;
}
.search-container .search-result .result {
  display: block;
  padding: 15px;
  border-bottom: 1px solid #b1d2f4;
}
.search-container .search-result .result h4 {
  font-size: 16px;
  margin: 0 0 5px 0;
  color: #c81e24;
}
.search-container .search-result .result p {
  margin: 0;
}
.search-container .no-results {
  margin-top: 25px;
  width: 100%;
  padding: 50px;
  text-align: center;
  background-color: #f1eefe;
  border-radius: 25px;
}
.search-container .no-results p {
  margin: 0;
}

@media (max-width: 540px) {
  .search-container form {
    flex-direction: column;
    align-items: flex-start;
  }
  .search-container input {
    width: 100%;
  }
  .search-container input[type="submit"] {
    width: 100%;
    margin: 10px 0 0 0;
  }
}

/* Search Page Styles end */

/* Download Excel css start */

.download-table {
  display: flex;
  justify-content: flex-end;
}
.download-table .exportToExcel {
  font-size: 14px;
  text-decoration: none;
  color: black;
  margin: 10px 0;
  font-weight: bold;
}
.download-table .exportToExcel i {
  margin-right: 2.5px;
  color: #ed1f34;
}

/* Download Excel css end */

/* Accordion Style */
.accordion {
  margin-bottom: 0px;
}
.accordion .sub-menu-content {
  display: none;
  padding: 12px 15px;
}

.cd-panel-content .sub-menu-content {
  display: block;
}
.accordion .sub-menu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-top: 1px solid lightgray;
  color: var(--primary-color);
  text-decoration: none;
}

.cd-panel-content .sub-menu-title {
  border: none;
}
.accordion .sub-menu-title.active {
  background-color: rgb(243, 243, 243);
}
.accordion .sub-menu-title:hover {
  background-color: rgb(243, 243, 243);
}
.accordion .sub-menu-title h1 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 0;
  color: #3b1310;
}
.accordion .sub-menu-title i {
  font-size: 20px;
}
.accordion .fa-angle-down {
  transition: 300ms;
}
.accordion .fa-angle-down.close {
  transform: rotate(180deg);
  color: var(--primary-color);
}
.cd-panel-content .fa-angle-down {
  display: none;
}
/* Accordion Style End*/

/* wi-qrsection style start */

.wi-qrsection {
  display: flex;
  flex-direction: row;
  margin-bottom: 15px;
}

.wi-graypatch {
  display: flex;
  flex-direction: row;
  width: calc(100% - 270px);
  height: auto;
  padding: 30px;
  background: #f6f6f7;
}

.wi-textbox {
  width: 40%;
  padding-right: 5%;
}

.wi-qrboxflex {
  width: 60%;
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.wi-qrboxitem {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  width: 50%;
  padding: 5px 5% 15px 5%;
}

img.wi-qrimg {
  width: 80%;
}

.wi-qrlink {
  text-align: center;
  word-break: break-word;
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.wi-qrboxtitle {
  margin-top: 10px;
  font-weight: 500;
  color: #ab7f19;
}

.wi-reportimgbox {
  width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 4%;
  background: #f6efe4;
}

.wi-reportimage {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.9rem;
  line-height: 1.3;
}

@media (max-width: 1480px) {
  .wi-textbox {
    width: 35%;
    padding-right: 5%;
  }

  .wi-qrboxflex {
    width: 65%;
    display: flex;
    flex-direction: row;
  }
}

@media (max-width: 1200px) {
  .wi-graypatch {
    flex-direction: column;
  }

  .wi-textbox {
    width: 100%;
    padding-right: 0;
  }

  .wi-qrboxflex {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .wi-qrboxitem {
    max-width: 180px;
  }
}

@media (max-width: 991px) {
  .wi-graypatch {
    width: calc(100% - 190px);
    padding: 20px;
  }

  .wi-reportimgbox {
    width: 190px;
  }

  .wi-qrboxitem {
    padding: 5px 5% 5px 5%;
  }
}

@media (max-width: 560px) {
  .wi-qrsection {
    flex-direction: column;
  }

  .wi-graypatch {
    width: 100%;
    padding: 20px;
  }

  .wi-qrboxflex {
    justify-content: space-around;
  }

  .wi-reportimgbox {
    width: 100%;
  }

  .wi-qrboxitem {
    padding: 5px 4% 5px 4%;
  }

  .wi-reportimgbox {
    justify-content: center;
    align-items: center;
    padding: 30px 4%;
  }

  .wi-reportimage {
    max-width: 220px;
  }
}

@media (max-width: 420px) {
  .wi-qrboxflex {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }

  .wi-qrboxitem {
    max-width: 200px;
    width: 100%;
  }
}

/* wi-qrsection style start */

/* key-improvebox css start */

.key-improvebox {
  margin-bottom: 15px;
}

.key-improveheader {
  background: #f6efe4;
  padding: 20px 30px;
  font-weight: 600;
  font-size: 1.15rem;
  text-align: center;
}

.key-improvebody {
  background: #f8f8f9;
  padding: 20px;
}

/* key-improvebox css end */

/* materiality-box css start */

.materiality-box {
  border: 2px solid #e1ceab;
  padding: 15px 25px;
  text-align: center;
  margin-bottom: 15px;
  max-width: 450px;
}

.materiality-box p {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.mat-title {
  color: #ab7f19;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 10px 10px;
}

.mat-line {
  width: 90%;
  border-top: 3px dotted #e1ceab;
  margin-left: auto;
  margin-right: auto;
}

.mat-img {
  margin: 10px 0px;
}

.mat-img img {
  width: 60px;
}

.materiality-seccondrow {
  display: flex;
  justify-content: space-around;
  padding: 12px 10px;
  background: #f6efe4;
  align-items: center;
  margin: 20px 0px;
}

.mat-icon {
  width: 35px;
}

.mat-text {
  color: #ab7f19;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 10px 10px;
}

/* materiality-box css end */

/* mineth style start */

/* materiality diagram style start */

/* Materiality Determination Diagram */
      .materiality-determination-diagram {
        position: relative;
        width: 100%;
        max-width: 600px;
        aspect-ratio: 1;
        margin: 4rem auto 0rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

      .diagram-center {
        position: absolute;
        width: 77%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
      }

      .diagram-center .center-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      .diagram-step {
        position: absolute;
        width: 24%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
        border-radius: 8px;
        font-weight: 500;
        font-size: 0.9rem;
        line-height: 1.3;
      }

      .diagram-background {
        border: 1px solid #ced5ae;
        background-color: #f9faf6;
        margin: 28px auto;
      }

      /* Step 1: Top - Green */
      .step-1 {
        top: -11%;
        left: 50%;
        text-align: center;
        transform: translateX(-50%);
        /* background-color: #b8e6c1; */
        color: #434343;
        font-weight: 100;
        width: 77%;
      }

      /* Step 2 */
      .step-2 {
        font-weight: 100;
        top: 0%;
        right: -33%;
        width: 43%;
        text-align: left;
      }

      .li-class {
        color: #434343;
        padding-left: 20px;
        font-weight: 100;
      }

      .step-2-li{
        margin-top: 8px;
      }

      /* Step 3*/
      .step-3 {
        bottom: 2%;
        text-align: left;
        color: #434343;
        right: -33%;
        width: 43%;
        font-weight: 100;
      }

      /* Step 4*/
      .step-4 {
        bottom: 2%;
        color: #434343;
        left: -10%;
        transform: translateX(-50%);
        width: 43%;
        font-weight: 100;
        text-align: right;
      }

      /* Step 5: Left */
      .step-5 {
        font-weight: 100;
        top: 16%;
        text-align: right;
        left: -30%;
        color: #434343;
        width: 42%;
      }

      /* Responsive Design */

      @media (max-width: 992px) {
        .materiality-determination-diagram{
          max-width: 500px;
        }

        .diagram-center{
          width: 70%;
        }

        .diagram-step{
          font-size: 0.8rem;
          padding: 1rem;
        }

        /* Step 1 */
        .step-1{
          width: 70%;
          top: -10%;
        }

        /* Right side steps */
        .step-2{
          right: -22%;
          width: 36%;
        }

        .step-3{
          right: -22%;
          width: 36%;
        }

        /* Left side steps */
        .step-4{
          left: -22%;
          width: 36%;
        }

        .step-5{
          left: -22%;
          width: 36%;
        }

      }

      @media (max-width: 768px) {
        .materiality-determination-diagram{
          aspect-ratio: auto;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 20px;
        }

        .diagram-center{
          position: relative;
          width: 70%;
          margin-bottom: 20px;
        }

        .diagram-step{
          position: relative;
          width: 100%;
          text-align: left;
          padding: 15px;
          transform: none;
        }

        .step-1,
        .step-2,
        .step-3,
        .step-4,
        .step-5{
          top: auto;
          bottom: auto;
          left: auto;
          right: auto;
        }

      }

      @media (max-width: 576px) {
        .materiality-determination-diagram {
          max-width: 100%;
        }

        .diagram-center {
          width: 55%;
          height: 55%;
        }

        .diagram-step {
          font-size: 0.7rem;
          padding: 0.8rem;
        }

        .step-number {
          font-size: 1.3rem;
          margin-bottom: 0.3rem;
        }

        .arrow-left,
        .arrow-right {
          width: 8%;
        }
      }

/* materiality diagram style end */

/* dfcc sustainability framework diagram style start */

.sdg-diagram{
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.sdg-images-column {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 18px;
}

.sdg-icon{
  width: 55px;
    height: auto;
}

.box{
  margin-top: 1px;
}

.key-enablers {
  height: fit-content;
    margin-top: 17px;
    border: 1px solid #ced5ae;
}



.heading {
    background-color: #ced5ae;
    padding: 16px;
    font-size: 21px;
    width: 100%;
    height: auto;
}

.heading-text {
    margin: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.enabler-1 {
    border: 1px solid #aa7f19;
    padding: 5px 30px 5px 30px;
    align-items: center;
    font-weight: 700
}

.enabler-2 {
    border: 1px solid #aa7f19;
    padding: 5px 33px 5px 30px;
    align-items: center;
    font-weight: 700
}
.enabler-3 {
    border: 1px solid #aa7f19;
    padding: 5px 22px 5px 28px;
    align-items: center;
    font-weight: 700
}
.enabler-4 {
    border: 1px solid #aa7f19;
    padding: 5px 41px 5px 40px;
    align-items: center;
    font-weight: 700
}
.enabler-5 {
    border: 1px solid #aa7f19;
    padding: 5px 42px 5px 43px;
    align-items: center;
    font-weight: 700
}
.enabler-6 {
    border: 1px solid #aa7f19;
    padding: 5px 38px 5px 31px;
    align-items: center;
    font-weight: 700
}
.enabler-7 {
    border: 1px solid #aa7f19;
    padding: 5px 36px 5px 36px;
    align-items: center;
    font-weight: 700
}

.enabler-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    margin-top: 7px;
    align-items: center;
    justify-content: center;
}

.item-text{
  margin: 0;
  color: #ab7f19;
}

.diagram-image {
    position: relative;
    transform: translate(21px, 20px);
    width: 50%;
    height: auto;
}

.goals-targets-1 {
    margin-top: -6px;
    background-color: rgba(206 213 174);
    width: fit-content;
    padding: 13px;
}

.goals-targets-2 {
    position: relative;
    top: 16px;
    background-color: rgba(246 239 228);
    width: fit-content;
    padding: 13px;
    height: fit-content;
    right: -17px;
    width: 23%;
}

.goals-targets-3{
  
}

.key-goals{
  margin: 0;
  font-size: 19px;
}

.goals-target-heading {
    padding-bottom: 11px;
    font-weight: 700;
}

.items {
    padding-left: 16px;
}
/* dfcc sustainability framework diagram style start */

/* mineth style end */

/* nevindu style start */

/* a_sustainable_strategy */

/* our_sustainability_strategy */

.labour-principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
  margin: 120px auto;
  position: relative;
}

.human-rights-layout {
  display: flex;
  gap: 30px;
  margin: 50px auto;
  position: relative;
}

.env-principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
  margin: 60px auto;
  position: relative;
}

.p9 {
  grid-column: 1 / span 2;
}

.anti-corruption-section {
  display: flex;
  gap: 75px;
  margin: 60px auto;
}

.principle-column {
  position: relative;
  width: 50%;
}

.letter-column {
  width: 50%;
}

@media (max-width: 991px) {
.principle-column {
  width: 100%;
}

.letter-column {
  width: 100%;
}

    .anti-corruption-section {
      gap: 20px;
      display: flex;
      flex-direction: column;
    }

  .center-badge-container-9{
    display: none;
  }
}

.principle-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid #b38e44;
  background: #fff;
  position: relative;
}

.principle-tab {
  border: 1px solid #b38e44;
  color: #b38e44;
  padding: 4px 12px;
  width: fit-content;
  position: absolute;
  top: -36px;
  left: 0;
  background: white;
  z-index: 2;
}

.principle-tab-6{
  border: 1px solid #b38e44;
  color: #b38e44;
  padding: 4px 12px;
  width: fit-content;
  position: absolute;
  top: -36px;
  left: 50px;
  background: white;
  z-index: 2;
}

.card-header {
  background-color: #c8d6ad;
  padding: 10px 25px 10px;
  display: flex;
  align-items: center;
  min-height: 90px;
}

.card-header-6 {
  background-color: #c8d6ad;
  padding: 10px 50px 10px;
  display: flex;
  align-items: center;
  min-height: 90px;
}

.card-body {
  background-color: #fdfaf5;
  padding: 25px;
  flex-grow: 1;
}

.card-footer {
  margin-top: 20px;
}

.card-footer ul {
  padding-left: 18px;
  margin-top: 5px;
  list-style-type: disc;
}

.center-badge-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 10;
}

.center-badge-container-grid{
  bottom: 50%;
}

.center-badge-container-grid-9{
  bottom: 43%;
}

.center-badge-img {
  width: 100px;
  height: auto;
  display: block;
}

.center-badge-container-9 {
	position: absolute;
	bottom: 50%;
	right: 0;
	transform: translate(50%, 50%);
	z-index: 10;
}

.letter-frame {
  border: 1px solid #c8d6ad;
  padding: 15px;
  background-color: #fdfaf5;
}

.letter-img {
  width: 100%;
  height: auto;
  border: 1px solid #b38e44;

}

.letter-caption {
  font-size: 12px;
  color: #b38e44;
  margin-top: 15px;
  line-height: 1.4;
}

@media (max-width: 1199px) {
  .center-badge-container-grid-9 {
	bottom: 40%;
}
}


@media (max-width: 991px) {

  .labour-principles-grid {
    display: flex;
    flex-direction: column;
    gap: 40px 30px;
    max-width: 1100px;
    margin: 120px auto;
    position: relative;
  }

  .human-rights-layout {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 20px;
  }

  .center-badge-container {
    display: none;
  }

  .principle-card {
    width: 100%;
  }

  .card-header-6 {
    background-color: #c8d6ad;
    padding: 10px 25px 10px;
    display: flex;
    align-items: center;
  }

  .principle-tab-6{
    border: 1px solid #b38e44;
    color: #b38e44;
    padding: 4px 12px;
    width: fit-content;
    position: absolute;
    top: -36px;
    left: 0;
    background: white;
    z-index: 2;
  }

  .env-principles-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .p9 {
    grid-column: 1;
  }

  .letter-column {
    flex: 1;
    margin-left: 0;
  }
}

/*FINANCIAL CAPITAL FOR VALUE CREATION */

.capital-box {
    background-color: #f9faf3;
    border: 1px solid #d1d1d1;
    padding: 20px 30px;
    line-height: 1.6;
    margin: 20px auto;
}
    

.capital-box p {
    color: #333;
    font-size: 16px;
    margin: 0;
    text-align: justify;
}

/*LINKAGE TO KEY STRATEGIC PILLARS OF DFCC BANK'S STRATEGY*/

 .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 15px 0px;
    /* padding: 20px; */
  }

  .info-card {
    display: flex;
    border: 1px solid #ccc;
    /* min-height: 120px; */
    /* min-height: 277px; */
    height: 100%;
    flex-direction: column;
  }

  .card-title {
    /* flex: 0 0 35%; */
    padding: 15px 15px 20px;
    display: flex;
    /* align-items: center; */
    font-weight: bold;
    font-size: 1.1em;
    color: #000;
  }

  .card-content {
    flex: 1;
    padding: 15px;
    background-color: #fcfcfc;
    font-size: 0.95em;
    line-height: 1.4;
    display: flex;
    /* align-items: center; */
  }

  /* Color Variations */
  .bg-green  { background-color: #c8e1bc; }
  .border-green { border-color: #c8e1bc; }
  .card-content:has(.border-green) { background-color: #f4f9f1; }

  .bg-purple { background-color: #bfc7e1; }
  .border-purple { border-color: #bfc7e1; }

  .bg-yellow { background-color: #fee1a8; }
  .border-yellow { border-color: #fee1a8; }

  .bg-blue   { background-color: #cfe9f7; }
  .border-blue { border-color: #cfe9f7; }

  .bg-orange { background-color: #f9c0ac; }
  .border-orange { border-color: #f9c0ac; }

  .bg-grey   { background-color: #dadde1; }
  .border-grey { border-color: #dadde1; }

  /* Extra touch: Light tint for content areas */
  .border-green  .card-content { background-color: #f4f9f2; }
  .border-purple .card-content { background-color: #f2f4f9; }
  .border-yellow .card-content { background-color: #fffaf0; }
  .border-blue   .card-content { background-color: #f0f8ff; }
  .border-orange .card-content { background-color: #fff3f0; }
  .border-grey   .card-content { background-color: #f7f7f7; }

  /* Responsive for mobile */
  @media (max-width: 991px) {
    .info-grid { grid-template-columns: 1fr; }
  }

  /*SWOT ANALYSIS FOR SOCIAL AND RELATIONSHIP CAPITAL*/

  .swot-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 60px;
    background-color: #fff;
  }

  .swot-box {
    position: relative;
    background-color: #f6f1e8;
    border: 1px solid #c5a059;
    padding: 20px 20px 20px 50px;
  }

  .swot-circle {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background-color: #b38e44;
    border: 4px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .swot-list {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
  }

  @media (max-width: 991px) {
    .swot-container { grid-template-columns: 1fr; gap: 50px; }
    .swot-box { margin-left: 35px; }
  }


  /*MEASURING INTELLECTUAL CAPITAL*/

  .metrics-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin: 20px 0;
  }

  .metrics-column {
    display: flex;
    flex-direction: column;
  }

  .metrics-header {
    padding: 12px 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    border-bottom: none;
  }

  .metrics-body {
    flex-grow: 1;
    padding: 15px;
    min-height: 180px;
  }

  .bg-tan { background-color: #ebdfcd; }
  .body-tan { background-color: #f8f3eb; }

  .bg-sage { background-color: #e3ead8; }
  .body-sage { background-color: #f5f8f0; }

  .bg-peach { background-color: #f9e2d3; }
  .body-peach { background-color: #fef5f0; }

  .metrics-list {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
  }

  .metrics-list li {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 10px;
  }

  @media (max-width: 991px) {
    .metrics-container {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }


  .policy-container {
    background-color: #f9faf3;
    border: 1px solid #d1d1b1;
    padding: 25px 35px;
    margin: 20px auto;
  }

  .policy-container h3 {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .policy-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style-type: disc;
  }

  .policy-list li {
    flex: 0 0 50%;
    box-sizing: border-box;
    padding-right: 20px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
    list-style-position: inside; 
    text-indent: -1.2em; 
    padding-left: 1.2em;
  }

  @media (max-width: 600px) {
    .policy-list li {
      flex: 0 0 100%;
      margin-bottom: 5px;
    }
  }


  /*EMPLOYMENT BENEFITS*/

  .benefits-stack {
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
  }

  .benefit-item {
    padding: 20px;
    /* margin-bottom: 2px; */
    line-height: 1.4;
  }

  .level-1 { background-color: #e3cc9e; }
  .level-2 { background-color: #ecdbc0; }
  .level-3 { background-color: #f1e4ce; }
  .level-4 { background-color: #f6eedf; }
  .level-5 { background-color: #fbf7ef; }

  @media (max-width: 480px) {
    .benefit-item {
      padding: 15px;
    }
  }

  /* Social and Relationship Capital */

  /*CUSTOMER RELATIONS heading*/

  .banner-wrapper {
    display: flex;
    padding: 40px 0px;
  }

  .relation-banner {
    display: flex;
    align-items: center;
    background-color: #ede2d1;
    height: 55px;
    width: 100%;
    position: relative;
    padding-left: 90px;
    box-sizing: border-box;
  }

  .icon-circle {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background-color: #fff;
    border: 1px solid #b38e44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .icon-circle-img{
    width: 65% !important;
    height: auto !important;
    color: #c81e24 !important;
  }

  .banner-text {
    margin: 0;
    color: #b38e44;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  @media (max-width: 768px) {
    .relation-banner {
      height: 50px;
      padding-left: 70px;
    }
    .icon-circle {
      width: 75px;
      height: 75px;
      left: -10px;
    }
    .banner-text {
      font-size: 22px;
    }
  }

  /*CUSTOMER RELATIONS*/
  .stats-card {
    background-color: #fcfcf7;
    border: 1px solid #c5a059;
    padding: 20px 30px;
    max-width: 450px;
    margin-bottom: 10px;
  }

  .stat-item {
    border-bottom: 1px solid #c5a059;
    padding: 5px 0px 5px 0px;
  }

  .stat-item.last {
    border-bottom: none;
  }

  .stat-number {
    color: #b38e44;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
  }

  .stat-label {
    color: #b38e44;
    margin-top: 2px;
  }

  @media (max-width: 480px) {
    .stats-card {
      padding: 15px 20px;
    }
    .stat-number {
      font-size: 24px;
    }
  }

/* Gold Award – Bank of the Year */

  .page-center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .awards-container {
    background-color: #f9faf3;
    border: 1px solid #d1d1b1;
    padding: 20px 25px;
    max-width: 500px;
    margin-bottom: 15px;
  }

  .award-item {
    border-bottom: 1px solid #d1d1b1;
    padding: 15px 0;
  }

  .award-item.last {
    border-bottom: none;
    padding-bottom: 0;
  }

  .award-item:first-child {
    padding-top: 0;
  }

  .award-title {
    font-size: 1rem;
    font-weight: bold;
    margin: 0 0 10px 0;
    line-height: 1.3;
    color: #000;
  }

  .gold-text { color: #b38e44; }
  .merit-text { color: #a6894c; }

  .award-list {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
  }

  .award-list li {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
    margin-bottom: 5px;
  }

  @media (max-width: 480px) {
    .awards-container { padding: 15px; }
    .award-title { font-size: 0.95rem; }
  }

  /* KEY CSR AND SUSTAINABILITY */
  
  .process-container {
    display: flex;
    align-items: stretch;
    margin: 40px auto;
  }

  .process-step {
    flex: 1;
    background-color: #f9f4eb;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .icon-holder {
    width: 65px;
    height: 65px;
    background-color: #b38e44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .icon-holder img {
    width: 100%;
    height: auto;
    /* filter: brightness(0) invert(1); */
  }

  .step-title {
    margin: 0 0 12px 0;
    line-height: 1.2;
  }

  .step-desc {
    line-height: 1.5;
    margin: 0;
  }

  .step-arrow {
    display: flex;
    align-items: center;
    color: #b38e44;
    font-size: 1.2rem;
  }

  @media (max-width: 992px) {
    .process-container {
      flex-direction: column;
    }
    .step-arrow {
      transform: rotate(90deg);
      padding: 10px 0;
      justify-content: center;
    }
  }

  /* Community Impact */

  .impact-container {
    max-width: 600px;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .impact-header {
    background-color: #c8d6ad;
    display: inline-block;
    padding: 5px 15px;
    font-weight: bold;
    color: #000;
  }

  .impact-body {
    border: 1px solid #b38e44;
    padding: 20px;
    background-color: #f5f5f5;
    margin-top: -1px;
  }

  .metric-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
  }

  .metric-icon img {
    width: 40px;
    height: auto;
  }

  .stat-main {
    color: #b38e44;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
  }

  .stat-sub {
    color: #b38e44;
    margin-top: 4px;
  }

  .impact-divider {
    border: 0;
    border-top: 1px solid #b38e44;
    margin: 15px 0;
    opacity: 0.5;
  }

  .outcomes-title {
    color: #b38e44;
    margin: 0 0 8px 0;
  }

  .outcomes-list {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
    color: #b38e44;
  }

  .outcomes-list li {
    font-size: 15px;
    line-height: 1.4;
  }

  /* SUPPLIERS AND SERVICE */
   .suppliers-card {
    max-width: 600px;
    margin-bottom: 20px;
  }

  .suppliers-body {
    background-color: #f5f5f5;
    border: 1px solid #c8d6ad; 
    padding: 20px;
  }

  .supplier-row {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .supplier-icon img {
    width: 45px;
    height: auto;
  }

  .supplier-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .supplier-count {
    color: #b38e44;
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
  }

  .supplier-label {
    color: #b38e44;
  }

  @media (max-width: 480px) {
    .supplier-count { font-size: 28px; }
    .supplier-label { font-size: 16px; }
    .suppliers-body { padding: 20px; }
  }

  /* Our Procurement Policy */
  .procurement-flow {
    max-width: 650px;
    margin-bottom: 20px;
    text-align: center;
  }

  .step-header {
    padding: 10px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-transform: none;
  }

  .step-header-black{
    padding: 10px;
    color: black;
    font-weight: bold;
    font-size: 16px;
    text-transform: none;
  }

  .step-body {
    padding: 15px;
    text-align: left;
  }

  .bg-red { background-color: #e32b2b; }
  .bg-gold { background-color: #b38e44; }
  .bg-grey { background-color: #a0a0a0; }
  .bg-sage { background-color: #c8d6ad; }
  .bg-light-tan { background-color: #fdf5f0; }
  .bg-off-white { background-color: #f9f9f9; }

  .bold-text {
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    margin-bottom: 5px;
  }

  .small-text-m {
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
    color: #333;
  }

  .principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 13px;
  }

  .model-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 10px;
  }

  .check-list, .outcomes-list-new {
    margin: 0;
    padding-left: 18px;
    list-style-type: disc;
    font-size: 13px;
  }

  .check-list li, .outcomes-list-new li {
    margin-bottom: 5px;
    line-height: 1.3;
  }

  .outcomes-list-new ul {
    padding-left: 20px;
    margin-top: 5px;
  }

  .flow-arrow {
    font-size: 24px;
    color: #000;
    margin: 10px 0;
    font-weight: bold;
  }

  @media (max-width: 480px) {
    .principles-grid, .model-grid { grid-template-columns: 1fr; }
  }

  /* Supplier Selection */

   .purchase-lifecycle {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 650px;
    margin-bottom: 20px;
  }

  .lifecycle-step {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .step-box {
    background-color: #c8d6ad;
    width: 100%;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #000;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.4;
  }

  .box-title {
    margin-bottom: 8px;
  }

  .sub-list {
    text-align: left;
    display: inline-block;
    margin: 0;
    padding-left: 20px;
    font-weight: normal;
    font-size: 14px;
    list-style-type: disc;
  }

  .sub-list ul {
    list-style-type: disc;
    padding-left: 20px;
  }

  .arrow-down {
    width: 0; 
    height: 0; 
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #b38e44;
    margin-bottom: 8px;
  }

  @media (max-width: 480px) {
    .step-box {
      font-size: 14px;
      padding: 12px;
    }
    .sub-list {
      font-size: 13px;
    }
  }

  /* Our procurement policy */ 
  .engagement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    max-width: 650px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fdfaf5;
  }

  .engagement-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .icon-square {
    width: 70px;
    height: 70px;
    border: 1.5px solid #b38e44;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .icon-square img {
    width: 45px;
    height: auto;
  }

  .engagement-text {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
  }

  @media (max-width: 500px) {
    .engagement-grid {
      grid-template-columns: 1fr;
    }
    .icon-square {
      width: 60px;
      height: 60px;
    }
  }

  /* ESG Evaluation */
    .environmental-container {
    max-width: 650px;
    margin-bottom: 20px;
    padding: 30px;
    background-color: #fcfaf5;
    border: 1px solid #b38e44;
  }

  .env-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
  }

  .env-icon img {
    width: 45px;
    height: auto;
  }

  .env-label {
    color: #b38e44;
    font-size: 18px;
    font-weight: bold;
  }

  .env-divider {
    border: 0;
    border-top: 1px solid #b38e44;
    margin: 5px 0;
    opacity: 0.6;
  }

  .env-item:last-of-type + .env-divider {
    display: none;
  }

  /* Green Bond Structure */ 
   .green-bond-framework {
    display: flex;
    gap: 15px;
    max-width: 1200px;
    margin: 40px auto;
    align-items: stretch;
  }

  .framework-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .chevron {
    position: relative;
    padding: 20px 10px;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    margin-bottom: 10px;
    clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%, 15% 50%);
  }

  .content {
    flex-grow: 1;
    padding: 20px;
    line-height: 1.5;
    padding-top: 100px;
    margin-top: -70px;
  }

  .content h4 {
    margin-top: 0 !important;
    font-weight: bold !important;
  }

  .content ul {
    padding-left: 20px;
    margin: 0;
  }

  .content li {
    margin-bottom: 10px;
  }

  .bg-gold { background-color: #e3cc9e !important; }
  .bg-light-gold { background-color: #fdfaf5; }

  .bg-red { background-color: #f9c0ac; }
  .bg-light-red { background-color: #fff6f3; }

  .bg-sage { background-color: #c8d6ad; }
  .bg-light-sage { background-color: #f6f8f1; }

  .bg-grey { background-color: #dadde1; }
  .bg-light-grey { background-color: #f7f8f9; }

  @media (max-width: 991px) {
    .green-bond-framework { flex-direction: column; }
    .chevron { clip-path: none; }
  }

  .SDG-heading{
    margin-bottom: 10px;
  }


  /* Cross section of sustainable */ 

  /* Flexbox Grid Structure */
  .product-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
  }

  .product-item {
    display: flex;
    flex-direction: column;
  }

  .large-items .product-item {
    flex: 0 0 49%;
  }

  .small-items .product-item {
    flex: 0 0 32%;
  }

  .product-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
  }

  .product-desc {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    text-align: left;
  }

  @media (max-width: 768px) {
    .product-row {
      flex-direction: column;
    }
    .large-items .product-item,
    .small-items .product-item {
      flex: 1 0 100%;
      margin-bottom: 20px;
    }
  }

  /* Vincent’s Story */ 
  .lab-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .gallery-item {
    flex: 1;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
  }

  @media (max-width: 600px) {
    .lab-gallery {
      flex-direction: column;
      align-items: center;
    }
    .gallery-item {
      max-width: 100%;
    }
  }

  .custom_w
  {
    width: 400px;
    height: auto;
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .icon-style-e{
    width: 50px;
  }

  /* MANDATE OF THE BOARD */
  .gov-infographic {
    background-color: #f8f8f8;
    border: 1px solid #b38e44;
    padding: 60px 20px;
    position: relative;
}

.vertical-axis {
    position: absolute;
    left: 48%;
    top: 0;
    bottom: 0;
    width: 2px !important;
    background-color: #b38e44;
    transform: translateX(-50%);
}

.vertical-axis-2{
     position: absolute;
    left: 52%;
    top: 0;
    bottom: 0;
    width: 2px !important;
    background-color: #b38e44;
    transform: translateX(-50%);
}

.gov-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
    position: relative;
}

.gov-side {
    position: relative;
    padding: 0 40px;
}

.heading-tab {
    background-color: #ede2d1;
    display: inline-block;
    padding: 6px 15px;
    font-weight: bold;
    color: #000;
    font-size: 14px;
    margin-bottom: 12px;
    position: relative;
    border: 1px solid #b38e44;
}

.gov-side p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.gov-side::after {
    content: "";
    position: absolute;
    top: 15px;
    width: 30px;
    height: 1.5px;
    background-color: #b38e44;
}

.gov-side::before {
    content: "";
    position: absolute;
    top: 13px;
    width: 6px;
    height: 6px;
    background-color: #b38e44;
}

.left { text-align: right; }
.left::after { right: 0; }
.left::before { right: 30px; }

.right { text-align: left; }
.right::after { left: 0; }
.right::before { left: 30px; }

.gov-side.empty {
    visibility: hidden;
    pointer-events: none;
}

.gov-side.empty::before,
.gov-side.empty::after {
    display: none !important;
}

@media (max-width: 768px) {
    .gov-infographic {
        padding: 40px 15px;
        border: none;
    }
    .vertical-axis, .vertical-axis-2, .gov-side::after, .gov-side::before {
        display: none;
    }
    .gov-row {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
        gap: 0;
    }
    .gov-side {
        padding: 0;
        text-align: left !important;
    }
    .heading-tab {
        width: 100%;
        box-sizing: border-box;
    }
}

/* GOVERNANCE FRAMEWORK */

    .regulatory-top-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
      margin-bottom: 5px;
    }

    .pillar {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .pillar-box {
      width: 100%;
      min-height: 65px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 15px;
      font-size: 13px;
      box-sizing: border-box;
    }

    .pillar-box.tan {
      background-color: #ede2d1;
    }

    .pillar-box.white {
      border: 1px solid #ede2d1;
      background: #fff;
    }

    .connector-arrow {
      width: 1px;
      height: 30px;
      background: #000;
      position: relative;
      margin: 5px 0;
    }

    .connector-arrow::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: -4px;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 6px solid #000;
    }

    .connector-long-line {
      width: 1px;
      height: 125px;
      background: #000;
      margin-bottom: -5px;
      position: relative;
    }

    .connector-long-line::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: -4px;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 6px solid #000;
    }

    .internal-elements-container {
      display: flex;
      border: 1px solid #999;
      padding: 8px;
      margin-bottom: 20px;
    }

    .vertical-div {
      display: flex;
      align-items: flex-end;
    }

    .vertical-sidebar {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      background-color: #c8d6ad;
      padding: 15px 5px;
      font-weight: bold;
      text-align: center;
      font-size: 14px;
      display: flex;
      align-items: center;
      height: 212px;
      margin-left: -25px;
    }

    .internal-main-content {
      flex: 1;
      padding-left: 10px;
    }

    .top-banners {
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
      margin-bottom: 15px;
    }

    .banner-sage {
      background-color: #c8d6ad;
      padding: 8px 30px;
      font-weight: bold;
      font-size: 13px;
      text-align: center;
      width: 250px;
    }

    .banner-sage.full-width {
      width: 100%;
      box-sizing: border-box;
      margin-top: 10px;
    }

    .policies-flex-wrap {
      display: flex;
      flex-wrap: wrap;
      /* gap: 8px; */
      justify-content: space-between;
    }

    .policies-middle {
      display: flex;
      /* gap: 8px; */
      justify-content: space-between;
      padding-top: 8px;
      padding-bottom: 8px;
    }

    .policies-last {
      display: flex;
      /* gap: 8px; */
      justify-content: space-between;
    }

    .policy-tile {
      background-color: #c8d6ad;
      padding: 8px 15px;
      font-size: 11.5px;
      text-align: center;
      min-height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1.4;
    }

    .regulatory-bottom-grid {
      display: flex;
      gap: 15px;
      justify-content: space-between;
    }

    .bottom-block {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .grey-box {
      background-color: #e6e7e8;
      padding: 15px 0px;
      font-size: 12px;
      width: 100%;
      min-height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1.4;
    }

    .connector-arrow-up {
      width: 1px;
      height: 30px;
      background: #000;
      position: relative;
      margin-bottom: 5px;
    }

    .connector-arrow-up::after {
      content: "";
      position: absolute;
      top: -6px;
      left: -4px;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 6px solid #000;
    }

 @media (max-width: 991px) {
  .regulatory-top-grid,
  .regulatory-bottom-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .connector-long-line {
    height: 30px;
  }

  .internal-elements-container {
    flex-direction: column;
    border: 1px solid #999;
  }

  /* .vertical-sidebar {
    writing-mode: horizontal-tb;
    transform: none;
    width: 100%;
    height: auto;
    position: relative;
    left: 0;
    padding: 10px 0;
    border-bottom: 2px solid #b38e44;
  } */

  .vertical-sidebar{
    display: none;
  }

  .policies-flex-wrap,
  .policies-middle,
  .policies-last {
    flex-direction: column;
    gap: 10px;
  }

  .policy-tile {
    width: 100%;
    flex: 1 1 100%;
    box-sizing: border-box;
    margin-bottom: 5px;
  }

  .banner-sage {
    width: 100%;
    box-sizing: border-box;
  }
}

/* nevindu style end */

/* Avishka Css Start */

.signature-box{
	p strong {
		color: #ab7f19 !important;
		font-weight: bold;
	}
	
	img {
		max-width: 150px
	}
}

/* previous-reports css start  */
.previous-reports {
	margin-top: 20px;
    max-width: 650px;
}

.reports-imagebox {
    position: relative;
    margin-bottom: 45px;
	font-weight: bold;
	font-size: 1.08rem;
}

.y1 {
    position: absolute;
    bottom: 7%;
    left: 11%;
}

.y2 {
    position: absolute;
    bottom: -6%;
    left: 44%;
}

.y3 {
    position: absolute;
    bottom: 7%;
    right: 17%;
}

/* previous-reports css end  */

.annualreport-qr {
    max-width: 140px;
}

/* ar-greentag-box css start */

.ar-greentag-box {
	margin-bottom: 25px;
}

.ar-greentag {
    width: fit-content;
    padding: 12px 35px 12px 45px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    background-color: #ced6ae;
}

.ar-greentag-items {
    position: relative;
    padding: 25px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
	row-gap: 18px;
    border: 2px solid #ced6ae;
}

img.ar-greentag-tran {
    position: absolute;
    top: -1px;
    left: 0;
    width: 20px;
}

.ar-greentag-item {
    width: calc(100% / 3 - 7px);
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

.ar-greentag-items.four-column {
      align-items: flex-start;
}

.ar-greentag-itemicon {
    width: 35%;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ar-greentag-itemicon img {
	max-height: 100%;
}

.ar-greentag-itemcontent {
    font-weight: 500;
	width: calc(100% - 85px);
}

.ar-gr-title {
    font-weight: bold;
    color: #ab7f19;
    font-size: 1.05rem;
    line-height: 1.2;
}


.ar-greentag-items.four-column .ar-greentag-item {
    width: calc(100% / 4 - 8px);
}

.ar-greentag-items.four-column .ar-greentag-item .ar-greentag-itemcontent {
	width: 100%;
}

@media(max-width:1200px) {
	.ar-greentag-items {
		padding: 25px 30px;
	}
}

@media(max-width:991px){
	.ar-greentag-items {		
		gap: 14px;
		row-gap: 20px;
	}
	
	.ar-greentag-item, .ar-greentag-items.four-column .ar-greentag-item {
		width: calc(100% / 2 - 7px);
	}
}

@media(max-width:540px){
	.ar-greentag-items {
        padding: 20px 20px;
    }
	.ar-greentag-item {
		flex-direction: column;
		align-items: center;
		text-align: center
	}
	
	.ar-greentag-items.four-column .ar-greentag-item {
		flex-direction: column;
	}

  .ar-greentag-itemcontent {
	  width: calc(100%);
  }
}

@media(max-width:380px){
	.ar-greentag-items {
        padding: 18px 12px;
    }
}


/* ar-greentag-box css end */

/* .vm-box css start */

.vm-box {
    padding-right: 20px;
}

.vm-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.vm-icon img {
    height: auto;
    max-height: 100%;
}

.vm-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ed1d24;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.vm-content p {
    color: #ed1d24 !important;
    font-size: 1.05rem;
	
}

.vm-valueflex {
    display: flex;
	flex-wrap: wrap;
    gap: 58px;
	row-gap: 25px;
	margin-top: 10px;
}

.vm-valueflex-item {
    width: fit-content;
    display: flex;
    gap: 7px;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.valueflex-itemicon {
    width: 70px;
}

.valueflex-itemtext p {
    color: #000 !important;
}

@media(max-width:991px){
  .vm-box {
    padding-right: 0px;
  }
}

@media(max-width:768px){
	.vm-box {
		padding-right: 5px;
	}
	
	.vm-icon {
		width: 70px;
		height: 70px;
	}
	
	.vm-valueflex {
		gap: 40px;
		row-gap: 20px;
    max-width: 400px;
	}

  .vm-title {
    margin-bottom: 16px;
  }
}

@media(max-width:360px){
  .vm-valueflex {
    gap: 28px;
    row-gap: 20px;
    max-width: 400px;
  }
}

/* .vm-box css end */


/* pp-accordion css start */

.pp-accordion {
    margin-bottom: 15px;
}

.pp-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
    padding-bottom: 10px;
    border-bottom: 5px solid #ab7f19;
	cursor: pointer;
	transition: all 0.5s ease;
}

.pp-accordion-header:hover {
	background-color: rgb(243, 243, 243);
}

.pp-accordion-header-flex {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.pp-header-icon {
    width: 85px;
    height: 85px;
}

.pp-header-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ed1d24;
	text-transform: uppercase;
}

.pp-acc-icon {
	margin-right: 20px;
}

.pp-acc-icon i {
    font-size: 1.6rem;
    color: #ed1d24;
	transition: all 0.4s ease;
}

.pp-accordion-header.active .pp-acc-icon i {
    transform: rotate(180deg);
	transition: all 0.4s ease;
}

.pp-accordion-container {
	display: none;
}

.pp-flexbox {
    display: flex;
	flex-wrap: wrap;
}

.pp-flex-item {
	width: calc(100% / 4);
    position: relative;
    padding: 5px 10px 10px 18px;
    border-left: 2px solid #ab7f19;
}

.pp-absolute-circle {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #ed1d24;
    border-radius: 50px;
    top: 25px;
    left: 0;
    transform: translateX(-50%);
}

.pp-flex-itemcontent {
    display: flex;
    flex-direction: column;
    gap: 3px;
	padding-top: 15px;
/*    border-top: 2px solid #ab7f19;*/
}

.pp-flex-itemcontent strong {
    color: #ab7f19;
    font-weight: bold;
    font-size: 1.05rem;
    line-height: inherit;
}

.pp-flex-item:nth-child(n+5) .pp-flex-itemcontent{
	border-top: 2px solid #ab7f19;
}

@media(max-width:1200px){
	.pp-flex-item {
		width: calc(100% / 3);
	}
	
	.pp-flex-item:nth-child(n+4) .pp-flex-itemcontent {
		border-top: 2px solid #ab7f19;
	}
}

@media(max-width:991px){
	.pp-flex-item {
		width: calc(100% / 2);
	}
	
	.pp-flex-item:nth-child(n+3) .pp-flex-itemcontent {
		border-top: 2px solid #ab7f19;
	}
}

@media(max-width:768px){
	.pp-header-icon {
		width: 75px;
		height: 75px;
		display: flex;
        align-items: center;
	}
	
	.pp-accordion {
		margin-bottom: 10px;
	}
}

@media(max-width:480px){
	.pp-flex-item {
		width: calc(100%);
	}
	
	.pp-flex-item:nth-child(n+2) .pp-flex-itemcontent {
		border-top: 2px solid #ab7f19;
	}
	
	.pp-header-title {
		font-size: 1rem;
	}
	
	.pp-accordion-header-flex {
		gap: 10px;
	}
	
	.pp-header-icon {
        width: 75px;
        min-width: 75px;
        max-width: 75px;
        height: 75px;
    }
	
	.pp-absolute-circle {
		width: 12px;
		height: 12px;
		top: 27px;
		left: 0;
	}
}

@media(max-width:380px){
  .pp-accordion-header {
    padding: 10px 5px;
  }

	.pp-header-icon {
    width: 60px;
    min-width: 60px;
    max-width: 60px;
    height: 60px;
  }

  .pp-header-title {
    margin-right: 10px;
  }
}

.icon-w-60 {
	width: 60px;
	height: auto;
	margin-bottom: 10px;
	margin-top: 5px;
}

/* pp-accordion css end */

/* green-patchbox css start */

.green-patchbox {
    max-width: 600px;
    background: #edefe2;
    border: 2px solid #ced6ae;
}
.green-flex-item {
    display: flex;
    padding: 10px 20px;
    border-bottom: 2px solid #e0e4cb;
}

.green-image {
    width: 220px;
    padding: 5px 0px;
    text-align: center;
}

.green-image img {
    max-width: 85%;
    max-height: 200px;
}

.green-textbox {
    width: calc(100% - 220px);
    padding: 5px 10px;
}

.green-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #41ad49;
}

.green-text {
    line-height: 1.4;
}

@media(max-width:768px){
  .green-image {
    width: 190px;
    padding: 5px 0px;
    text-align: center;
  }
  
  .green-textbox {
    width: calc(100% - 190px);
    padding: 5px 15px;
  }
}

@media(max-width:480px){
  .green-flex-item {
    flex-direction: column;
    gap: 10px;
  }
  
  .green-image {
    text-align: left;
  }
  
  .green-textbox {
    width: calc(100%);
    padding: 5px 0px;
  }
}

/* green-patchbox css end */

/* general accordion css start */

.general-accordion-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    border-top: 1px solid lightgray;
    color: #d9120c !important;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.general-accordion-head:hover {
	background-color: rgb(243, 243, 243);
}

.general-accordion-head h2 {
    color: #d9120c !important;
    margin-top: 5px;
}

.general-accordion-head i {
    font-size: 20px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.general-accordion-head.active i {
    transform: rotate(180deg);
}

.general-accordion-content {
    padding: 12px 15px;
    display: none;
}

/* general accordion css end */

/* gs block css start */

.gs_logo img {
	width: auto;
	height: 100px;
}

.gs_content_main_container {
    background-color: #F7F0E6;
    padding: 20px;
}

.gs_content_logo {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border-bottom: 1px solid #AA7E19;
	padding: 20px 0;
}

.gs_content_logo img {
	height: auto;
  width: auto;
  max-width: 25%;
  max-height: 80px;
	margin-right: 20px;
  mix-blend-mode: darken;
}

.gs_content_logo h4 {
	margin: 0;
	line-height: 1;
  color: #000 !important;
}

.gs_content {
	display: flex;
	padding: 15px 0;
}

.gs_content_one {
	width: 25%;
	padding: 0 10px;
}

.gs_content_two {
	width: 25%;
	padding: 0 10px;
}

.gs_content_three {
	width: 50%;
  margin-top: -15px;
}

.gs_content_three > div {
	display: flex;
	padding: 15px 0
}

.gs_content_three > div:first-child {
	border-bottom: 1px solid #AA7E19;
}

.gs_content_three div div {
	width: 50%;
	padding: 0 10px;
}

.gs_content p {
	margin: 0;
	line-height: 1.3;
}

.gs_topics {
	color: #B3892D;
	margin: 0;
	margin-bottom: 5px !important;
	line-height: 1 !important;
}

.gs_content_wrapper {
	padding: 20px;
	border: 1px solid #AA7E19;
	margin: 20px 0;
}

.gs_container {
	position: relative;
	margin: 100px 0;
}

@media(max-width:991px){
  .gs_content {
    flex-wrap: wrap;
  }
  .gs_content_one {
    width: 50%;
    padding: 0 10px;
  }
  .gs_content_two {
    width: 50%;
    padding: 0 10px;
  }
  .gs_content_three {
    width: 100%;
    margin-top: 0px;
  }
  .gs_content_wrapper {
    padding: 15px;
  }
}

@media(max-width:767px){
  .gs_content_logo h4 {
		width: 50%;    
	}
	
	.gs_content_logo img {
		width: 50%;
    max-width: 50%;
	}
}

@media(max-width:540px){
  .gs_content_main_container {
    padding: 15px;
  }
  
  .gs_content_logo {
    padding: 15px 0 10px;
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .gs_content_logo img {
    width: auto;
    max-width: 200px;
  }

  .gs_content_logo h4 {
    width: 100%;
  }

  .gs_content_one {
    padding: 0 10px;
    padding-left: 0;
  }

  .gs_content_three div div {
    padding-left: 0;
  }
}

/* gs-block css end */

/* acc-policy css start */

.acc-policy {
  padding: 20px;
  background: #f7f7f5;
  border: 2px solid #c1a780;
  border-radius: 3px;
}

.acc-policy-head {
  border-bottom: 2px solid #ad8421;
}

h3.acc-policy-title {
  color: #ad8421;
  font-weight: 500;
  font-size: 1.3rem;
}

.acc-policy-content {
  margin-top: 8px;
}

/* acc-policy css end */

/* awa-wrapper css start */

.awa-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.awa-item {
    width: calc(100% / 4 - 8px);
    background: #f6efe4;
    border: 2px solid #ab7f19;
    overflow: hidden;
}

.awa-item-image {
  max-height: 155px;
  overflow: hidden;
}

.awa-item-content {
    padding: 5px 15px;
}

.awa-item-title {
    padding: 5px 0px;
    border-bottom: 2px solid #ab7f19;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 500;
    color: #ab7f19;
    min-height: 90px;
}

.awa-item-flexitem {
    padding: 10px 0px;
    border-bottom: 2px solid #a7a9ac;
}

.awa-item-flextitle {
    color: #ed1d24;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.awa-item-flexdesc {
    /* font-weight: 500; */
    line-height: 1.3;
    font-size: 0.9;
}

.awa-item-flexitem:last-child {
    border-bottom: 0;
}

.awa-item.big {
    width: calc(100% / 2 - 8px);
}

.awa-item.big .awa-item-image {
    height: 155px;
}

.awa-item.big .awa-item-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.awa-item.big .awa-item-flex {
    display: flex;
    flex-wrap: wrap;
}

.awa-item.big .awa-item-flexitem {
    width: calc(50%);
}

.awa-item.big .awa-item-flexitem:nth-child(even) {
    padding-left: 10px;
    padding-right: 10px;
    border-left: 2px solid #a7a9ac;
}

.awa-item.big .awa-item-flexitem:nth-child(odd) {
    padding-right: 10px;
}

.awa-item.big .awa-item-flexitem:nth-child(n+3) {
    border-bottom: 0;
}

@media(max-width:1399px){
    .awa-item {
        width: calc(100% / 3 - 8px);
    }

    .awa-item-image {
        max-height: 180px;
        overflow: hidden;
    }

    .awa-item.big {
        width: calc(100% / 1.5 - 8px);
    }

    .awa-item.big .awa-item-image {
        height: 180px;
    }
}

@media (max-width: 1200px) {
    .awa-item.big .awa-item-image {
        height: 150px;
    }
}

@media(max-width:991px){
    .awa-item {
        width: calc(100% / 2 - 8px);
    }

    .awa-item-image {
        max-height: 200px;
        overflow: hidden;
    }

    .awa-item.big {
        width: 100%;
    }

    .awa-item.big .awa-item-image {
        height: 200px;
    }
}

@media(max-width:480px){
    .awa-item {
        width: 100%;
    }

    .awa-item-image {
        max-height: unset;
        overflow: hidden;
    }

    .awa-item.big .awa-item-image {
        height: unset;
    }

    .awa-item.big .awa-item-flexitem {
        width: calc(100%);
    }

    .awa-item.big .awa-item-flexitem:nth-child(even) {
        padding-left: 0px;
        padding-right: 10px;
        border-left: 0;
    }

    .awa-item.big .awa-item-flexitem:nth-child(3) {
        border-bottom: 2px solid #a7a9ac;
    }
}

/* awa-wrapper css start */

/* .key-events-wrap css start */

.key-events-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.key-event-item {
    width: calc(100% / 2 - 10px);
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}

.key-event-content {
    padding: 15px 13px;
    background: #f6efe4;
    font-weight: 500;
    position: relative;
    min-height: 100px;
}

.key-event-month {
    padding: 5px 15px;
    line-height: 1;
    width: fit-content;
    background: #ed1d24;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1rem;
    transform: translateY(-100%);
}

.key-event-content p {
    line-height: 1.3;
    font-size: 1.05rem;
    margin-bottom: 0;
}

@media(max-width:1200px){
  .key-event-content {
    min-height: 120px;
  }
}

@media(max-width:991px){
  .key-event-content p {
    font-size: 1rem;
  }
}

@media(max-width:768px){
  .key-event-item {
    width: 100%;
  }

  .key-event-content {
    min-height: 80px;
  }
}

/* .key-events-wrap css end */

/* .nav-topbar css start */

.nav-section {
    position: fixed;
    top: 0;
    width: 100%;
    background: #FFEED4;
    z-index: 999;
}

.header_sticky {
    top: -60px !important;
    opacity: 1;
    -webkit-transition: top 0.4s ease;
    transition: top 0.4s ease;
}

.header_sticky.header_show {
    top: 0 !important;
    opacity: 1;
    -webkit-transition: top 0.4s ease;
    transition: top 0.4s ease;
}

section.nav-topbar {
    position: relative;
    background: #FFEED4;
    width: 100%;
    height: 60px;
    z-index: 99;
}

.nav-topbar-inner {
    position: relative;
    width: calc(100%);
    height: 60px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-topbar-left {
    width: fit-content;
    height: 60px;
    display: flex;
    padding: 6px 5px 6px 0px;
    align-items: center;
}

.nav-topbar-left a {
    height: 100%;
    width: fit-content;
    margin-right: 20px;
    /* border-bottom: lemonchiffon; */
}

.nav-topbar-left a img {
    height: 45px;
    width: auto;
}

.topbar-left-rname {
    height: 35px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    border-left: 1px solid #767676;
}
.topbar-left-rname a {
  height: auto;
  line-height: 1;
}


.header__search button, .header__search-3 button {
    border: none;
    font-size: 18px;
    color: #000;
    background: transparent;
}

.header__search .search-close, .header__search-3 .search-close {
    font-size: 20px;
    display: none;
}


.search_form {
    position: absolute;
    width: 100%;
    top: 95px;
    padding-bottom: 40px;
    z-index: 999;
    opacity: 0;
    right: 0;
    border-radius: 7px;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background-color: #333;
}

.search_form h1 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 300;
    padding: 30px 0px 10px 0px;
    font-family: 'Gotham', sans-serif;
    text-transform: none;
}

.search_form input {
    width: 100%;
    padding: 12px;
    outline: none;
    border-radius: 5px;
    color: #8e8e8e;
    border: 1px solid #8e8e8e;
    background-color: transparent;
}

.search_form.showed {
    top: 60px;
    opacity: 1;
    visibility: visible;
}

.toptip img {
    filter: drop-shadow(-20px 0 10px rgba(0, 0, 0, 0.1));
    cursor: pointer;
    padding: 10px;
}

.toptip {
    position: relative;
    transition: all 0.3s;
    padding: 0px;
    width: 50px;
    height: 50px;
    margin: 0px;
}

.tt-hti-btn img:hover {
    transform: scale(1.1);
}

.toptip .name {
    position: absolute;
    background-color: #000000;
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    bottom: -40px;
    left: 50%;
    white-space: nowrap;
    transform: translate(-50%, -10px);
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: -1;
}

.toptip .name::before {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  background-color: #000;
  top: 0; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.toptip img:hover + .name {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%);
    box-shadow: 0 10px 20px #000;
}

.nav-bottom {
  background: #fff;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  box-shadow: 0px 4px 4px 0px #00000014;
}

.navbar.site-navbar {
    position: relative;
    padding: 0 !important;
}

.mobile-menu-head {
  display: none;
}


ul.site-menu-main {
    display: flex;
    list-style: none;
    position: relative;
    padding: 0 !important;
    margin-bottom: 0 !important;
}

li.nav-item {
    display: flex;
    min-width: 135px;
}

ul.site-menu-main li a {
    position: relative;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    font-style: normal;
    letter-spacing: normal;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    padding-left: 5px !important;
    padding-right: 28px !important;
    color: #000;
}

ul.site-menu-main li.nav-item:hover a {
  color: red;
}

.site-menu-main .sub-menu--item > a {
    text-transform: none;
    display: flex;
    padding: 5px 8px;
    font-weight: 500;
    color: #000 !important;
    position: relative;
    font-size: 14px;
    line-height: 1.3;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.site-menu-main .sub-menu--item > a:hover {
  color: red !important;
}

ul.site-menu-main li a.nav-link-item.drop-trigger {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    margin-bottom: 0px !important;
}

ul.sub-menu {
    position: absolute;
    width: 100%;
    height: auto;
    display: flex;
    bottom: 0px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(110%);
    left: 0;
    padding: 30px 25px;
    border-radius: 10px;
    background-color: #fff;
    transition: all 0.3s ease;
    list-style: none;
    z-index: 99;
}

ul.sub-menu ul {
  list-style: none;
}

.img_wrap {
    display: flex;
    width: 100%;
    gap: 20px;
}

.wrapitem {
    width: 50%;
}

@media(min-width: 992px){
  .nav-item.nav-item-has-children:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(100%);
    transition: all 0.3s ease;
    box-shadow: 0px 4px 4px 0px #00000014;
  }

  .display-mob {
    display: none !important;
  }

  .display-desk {
    display: flex !important;
  }
}

.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}

.nav-container {
    width: calc(100% - 30px) !important;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .nav-container {
        max-width: calc(100% - 40px);
    }
}

@media (min-width: 1200px) {
    .nav-container {
        max-width: 95%;
    }
}

@media (min-width: 1400px) {
    .nav-container {
        max-width: 1320px;

    }
}

@media(max-width:1399px){
  li.nav-item {
    display: flex;
    min-width: 110px;
  }
  ul.site-menu-main li a {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    padding-left: 5px !important;
    padding-right: 15px !important;
  }
}

@media(max-width:1200px){
  li.nav-item {
    display: flex;
    min-width: 100px;
  }
  ul.site-menu-main li a {
    font-size: 12px;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    padding-left: 5px !important;
    padding-right: 10px !important;
  }

  li.nav-item:nth-child(5) {
    max-width: 140px;
  }

  li.nav-item:nth-child(6) {
    max-width: 215px;
  }
}

@media (max-width: 1099px) {
    li.nav-item {
        display: flex;
        min-width: 89px;
    }
}

@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

@keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

/*responsive*/
@media (max-width: 991px) {
  .toptip .name ,.toptip .name::before, .toptip img:hover + .name {
    display: none;
    opacity: 0;
    pointer-events: none;
  }
  .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    top: 20px;
    right: 30px;
	  z-index: 3;
  }
  .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #13111A;
    width: 24px;
    position: relative;
  }
  .mobile-menu-trigger span {
    background-color: #13111A !important;
  }
  .mobile-menu-trigger span:before,
  .mobile-menu-trigger span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #13111A;
  }
  .mobile-menu-trigger span:before,
  .mobile-menu-trigger span:after {
    background-color: #13111A !important;
  }
  .mobile-menu-trigger span {
    background-color: #13111A;
  }
  .mobile-menu-trigger span:before,
  .mobile-menu-trigger span:after {
    background-color: #13111A;
  }
  .mobile-menu-trigger span:before {
    top: -8px;
  }
  .mobile-menu-trigger span:after {
    top: 8px;
  }
   /* .item-right {
    align-items: center;
  } */

  ul.site-menu-main {
    flex-direction: column;
  }

  ul.site-menu-main li a.nav-link-item.drop-trigger {
    color: #fff;
    font-size: 14px;
    align-items: center;
    padding-left: 10px !important;
    padding-right: 40px !important;
  }

  li.nav-item:nth-child(5) {
    max-width: 100% !important;
  }

  li.nav-item:nth-child(6) {
    max-width: 100% !important;
  }

  .menu-block {
    position: fixed;
    width: 320px;
    background-color: #d9120c;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }
   .menu-block.active {
    transform: translate(0%);
  }
  .site-menu-main > li {
    line-height: 1;
    margin: 0;
    display: block;
  }
  .site-menu-main > li > a {
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .site-menu-main > li > a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }
   .menu-block .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: -webkit-sticky;
    position: sticky;
    background-color: #d9120c;
    top: 0;
  }
   .menu-block .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #FFFFFF;
    font-size: 16px;
    display: none;
  }
   .menu-block .mobile-menu-head.active .go-back {
    display: block;
  }
   .menu-block .mobile-menu-head .current-menu-title {
font-size: 13px;
    font-weight: 500;
    color: #FFFFFF;
    visibility: hidden;
    text-transform: capitalize;
    line-height: 1.2;
  }
   .menu-block .mobile-menu-head.active .current-menu-title {
    visibility: visible;
  }
   .menu-block .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #FFFFFF;
    font-size: 25px;
  }
   .menu-block .site-menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .site-menu-main > li .sub-menu.mega-menu,
  .site-menu-main > li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* padding-top: 50px; */
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%) translateY(0%);
    overflow-y: auto;
    overflow-x: hidden;
  }

  .display-mob {
    display: flex !important;
  }

  .display-desk {
    display: none !important;
  }

  li.sub-menu--item {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .site-menu-main .sub-menu--item > a {
    padding: 8px 20px !important;
  }

  .site-menu-main > li .sub-menu.active {
    display: flex;
    flex-direction: column;
    /* transform: translateX(0%) translateY(0%); */
  }
  .site-menu-main > li .sub-menu > ul > li > a,
  .site-menu-main > li .sub-menu.mega-menu > .list-item > ul > li > a {
    display: block;
  }
  .site-menu-main > li .sub-menu.mega-menu > .list-item > ul {
    margin-bottom: 15px;
  }
  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }
  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }

  .img_wrap {
    display: flex;
    width: 100%;
    gap: 0px;
    flex-direction: column;
  }

  .wrapitem {
    width: 100%;
  }
}

@media(max-width:540px){

  .nav-topbar-left a {
    height: 100%;
    margin-right: 10px;
  }
  .nav-topbar-left a:last-child {
    margin-right: 0px;
  }
  .topbar-left-rname {
    align-items: center;
    padding: 0px 10px;
    justify-content: center;
    max-width: 130px;
  }
  .topbar-left-rname a {
    height: auto;
  }

  .mobile-menu-trigger {
    height: 30px;
    width: 30px;
    margin-left: 10px;
    top: 20px;
    right: 30px;
    z-index: 3;
  }

  button.search-icon.tt-hti-btn {
    width: 50px !important;    
  }

  button.search-icon img {
    width: 50px !important;    
  }
}

@media(max-width:480px){
 .nav-container {
    width: calc(100% - 20px) !important;
  }

  .mobile-menu-trigger {
    margin-left: 5px;
    margin-right: 5px;
  }

  .nav-topbar-left a:last-child {
    font-size: 14px;
    width: min-content;
  }
}

@media(max-width: 380px) {
  .nav-topbar-left a img {
    height: 45px;
    max-width: 130px;
  }

  .menu-block {
    width: 100%;
  }
}

/* Current page/section menu state */
.site-menu-main .nav-item-has-children.current-section > .nav-link-item,
.site-menu-main .nav-link-item.current-section {
  color: #ED1D24 !important;
}

.site-menu-main .sub-menu--item.current-page > a,
.site-menu-main .sub-menu--item > a.current-page {
  color: #ED1D24 !important;
  font-weight: 500;
}

@media (max-width: 991px) {
  .site-menu-main .nav-item-has-children.current-section > .nav-link-item,
  .site-menu-main .nav-link-item.current-section {
    color: #FFFFFF !important;
    background: #00000026;
    font-weight: 500;
  }
  .site-menu-main .sub-menu--item.current-page > a,
  .site-menu-main .sub-menu--item > a.current-page {
    color: #ED1D24 !important;
    font-weight: 500;
  }
}


/* .nav-topbar css start */

/* header tooltip css start */

.tooltip {
    position: relative;
    opacity: 1;
    transition: all 0.3s;
}

.tooltip .name {
    position: absolute;
    background-color: #000000;
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    bottom: -45px;
    left: 50%;
    white-space: nowrap;
    transform: translate(-50%, -10px);
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 10;
    z-index: -1;
}

.tooltip .name::before {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  background-color: #000;
  top: 0; left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%) rotate(45deg);
}

.tooltip:hover .name {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%);
    box-shadow: 0 10px 20px #000;
}

@media(max-width:991px){
  .tooltip .name , .tooltip .name:before {
    display: none !important;
  }
}

/* header tooltip css end */

/* footer css start */

.cs-footer {
    background-color: #181818;
    padding-bottom: 50px;
}

.cs-bottom_footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #4D4D4D;
}

.cs-bottom_footer > * {
    padding: 4px 0;
}

.cs-copyright {
    color: white;
    font-size: 12px;
}

.cs-footer a {
    color: white;
    font-size: 12px;
}

.cs-bottom_footer .cs-bottom_footer_right img {
    height: 52px;
}

@media(max-width:991px){
    .cs-bottom_footer {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cs-bottom_footer .cs-bottom_footer_right {
        margin: 0px auto;
    }
}

@media(max-width:768px){
    .cs-footer {
      background-color: #181818;
    }

    .cs-copyright {
      text-align: center;
    }

    .cs-bottom_footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cs-bottom_footer .cs-bottom_footer_right {
        margin: 0px auto;
    }
}

/* Footer css end */

/* botoom fixed button css start */
.buttonbotfix-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.buttonbotfix {
    position: fixed;
    right: 15px;
    bottom: 160px;
    right: 55px;
    z-index: 99;
}

.directions-box {
    display: flex;
    gap: 6px;
    align-items: center;
}

.Button_icon, .Button_text, .Button_textWrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  /* left: 0; */
}

.prelink .Button_textWrapper {
  right: 0;
}

.nextlink .Button_textWrapper {
  right: 0;
}

.prelink .Button_text {
  transition: left 500ms;
}

.nextlink .Button_text {
  transition: right 500ms;
}

.prelink .Button_icon {
  transition: left 500ms;
}

.nextlink .Button_icon {
  transition: right 500ms;
}

.Button {
    display: inline-block;
    position: relative;
    background-color: #EBDAB8;
    color: #ed1d24;
    border-radius: 50px;
    font-size: 1.2rem;
    width: 45px !important;
    height: 45px !important;
    text-align: center;
    transition: background-color 500ms, transform 100ms;
}
.Button_textWrapper {
  overflow: hidden;
}
.prelink .Button_text {
  line-height: 50px;
  left: 0;
}
.nextlink .Button_text {
  line-height: 50px;
  right: 0;
}
.prelink .Button_icon {
  left: 100%;
	color: #FFFFFF;
}

.nextlink .Button_icon {
  right: 100%;
	color: #FFFFFF;
}

span.Button_icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.Button::before {
  content: attr(data-tooltip);
  width: 160px;
  height: auto;
  background-color: #000000;
  color: #fff;
  font-size: 0.8rem;
  border-radius: 0.25em;
  line-height: 17px;
  bottom: 90px;
  left: calc(50% - 80px);
  padding: 7px 8px;
  border: 1px solid #000000;
}
.Button::after {
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: #000000;
  left: calc(50% - 10px);
  bottom: 70px;
}
.Button::before, .Button::after {
  position: absolute;
  opacity: 0;
  transition: all 500ms;
  visibility: hidden;
}
.Button:hover {
  border: 1px solid #ed1d24;
}
.Button.prelink:hover .Button_text {
  left: -100%;
}
.Button.nextlink:hover .Button_text {
  right: -100%;
}
.Button.prelink:hover .Button_icon {
  left: 0%;
}
.Button.nextlink:hover .Button_icon {
  right: 0%;
}
.Button:hover::before, .Button:hover::after {
  opacity: 1;
  visibility: visible;
}
.Button:hover::after {
  bottom: 50px;
}
.Button:hover::before {
  bottom: 70px;
}

span.cs-scrollup {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 50px;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transform: translateY(0);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

span.cs-scrollup svg path.scrollupicon {
  fill: #fff;
}

span.cs-scrollup:hover {
  background: #ed1d24;
  transform: translateY(-10px);
}

span.cs-scrollup svg path.scrollupicon {
  fill: #fff;
}

span.cs-scrollup.show {
  opacity: 1 !important;
  visibility: visible !important;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

@media(max-width:991px){
  .buttonbotfix {
    position: fixed;
    bottom: 15px;
    right: initial;
    left: 15px;
  }

  .buttonbotfix-flex {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-direction: column-reverse;
  }

  .directions-box {
    display: flex;
    gap: 12px;
  }

  span.cs-scrollup
  {
      background: #797979;
  }

  span.cs-scrollup:hover {
    background: #797979;
    transform: translateY(0px);
  }

  .Button:hover::before, .Button:hover::after {
    display: none;
  }

}

@media(max-width:768px){

  .buttonbotfix {
    position: fixed;
    bottom: 15px;
    right: initial;
    left: 15px;
  }

  .directions-box {
    display: flex;
    gap: 12px;
  }

  .Button {
    width: 40px !important;
    height: 40px !important;
  }

  .prelink .Button_text {
    line-height: 40px;
  }

  .nextlink .Button_text {
    line-height: 40px;
  }
}

/* botoom fixed button css end */

/* leadership css start */
.leading-signaturebox {
    max-width: 210px;
}

img.signature {
    margin-left: 20px;
}

.signature-name-linebox {
    position: relative;
    padding-bottom: 0px;
    margin-left: 25px;
}

.signature-name-linebox p {
  margin-bottom: 10px;
}

.signature-name-linebox p strong {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ab7f19;
}

.signature-name-linebox img {
    position: absolute;
    bottom: 0;
    width: 150px;
    transform: translateX(-25px) translateY(3px);
}

.signature-name-linebox img.sig-line-img-ceo {
    position: absolute;
    bottom: 0;
    width: 110%;
    height: 43px;
    transform: translateX(-25px) translateY(3px);
}

p.signature-date {
    margin-left: 25px;
}

/* leadership css end */

/* green-border */

.green-borderbox {
    border: 2px solid #ced6ae;
    width: fit-content;
    width: 80%;
    display: flex;
}

@media(max-width:767px){
  .green-borderbox {
    width: 100%;
  }
}

@media(min-width:1580px){
  .green-borderbox {
    width: 70%;
  }
}

.ac-table-icon {
    max-width: 100%;
    height: auto;
    min-width: 35px;
    max-height: 35px;
}

/* fn box css start */
.fn-boxwrap {
  display: flex;
  gap: 15px;
  margin: 20px 0px;
}

.fn-box{
    width: calc(100% / 2);
}

.fn-hreadbox {
    color: #ad8421;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.fn-title {
    line-height: 1.2;
}

.fn-year {
    padding: 8px 14px;
    border: 2px solid;
    line-height: 1;
}

.fn-itemtext, .fn-date {
    font-weight: 500;
    padding: 12px 10px;
    font-size: 16px;
}

.fn-itemtext {
    min-height: 74px;
    line-height: 1.2;
    display: flex;
    align-items: flex-end;
}

.fn-date {
  background: #f1efeb;
  font-weight: bold;
  text-align: right;
}

@media(max-width:991px){
  .fn-boxwrap {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
  }

  .fn-box{
    width: calc(100%);
  }
}

/* fn box css start */

/* Avishka Css end */

/* Kanishka Css Start  */
/* operating environment start  */
.stakeholder-wrapper {
  background-color: #ffffff;
  border: 2px solid #ced5ae;
  padding: 40px;
  max-width: 900px;
}
.stakeholder-wrapper-gold {
  margin-top: 20px;
  background-color: #ffffff;
  border: 2px solid #AB7E18;
  padding: 40px;
  max-width: 900px;
}

.st-top-banner {
  background-color: #ced5ae;
  padding: 25px;
  text-align: center;
  margin-bottom: 50px;
  color: #000;
}

.st-top-banner h4, .st-top-banner h3 {
  color: #000 !important;
  text-transform: none;
}

.st-gold {
  background-color: #AB7E18;
}
.st-gold h4, .st-gold h3 {
  color: white !important;
  text-transform: none;
}

.st-top-banner-gold {
  background-color: #AB7E18;
  padding: 25px;
  text-align: center;
  margin-bottom: 50px;
  color: white;
}

.st-top-banner h4 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.st-top-banner h3 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 10px;
  margin-bottom: 0;
}

.st-banner-arrow img {
  width: 28px;
  height: 28px;
  stroke-width: 3;
  margin: 5px 0;
}

.st-stakeholder-card {
  border: 1px solid #e3dcc7;
  background-color: #fff;
  position: relative;
  margin-top: 25px;
  height: calc(100% - 25px);
  display: flex;
  flex-direction: column;
}

.st-icon-circle {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background-color: #ced5ae;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bc9b4c;
  z-index: 2;
}

.st-gold-circle {
  background-color: #AB7E18;
}

.st-icon-circle img {
  width: 40px;
}

.icon-circle img {
  width: 24px;
  height: 24px;
  color: #000;
}

.st-card-header-area {
  background-color: #f2f4ec;
  border-left: 6px solid #ced5ae;
  margin: 10px 10px 0 10px;
  padding: 35px 20px 20px;
  text-align: center;
}
@media (min-width:991px) {
  .st-card-header-area {
    min-height: 115px;
  }
}

.st-gold-header-area {
  background-color: #F5EEE4 !important;
  border-left: 6px solid #AB7E18;
}

.st-card-title-gold {
  color: #bc9b4c;
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
  text-transform: none;
}

.st-card-body-area {
  padding: 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  flex-grow: 1;
}

.st-label-red {
  color: #ea3a33;
  font-weight: 600;
}

.st-desc-text {
  margin-bottom: 1rem;
}

.st-desc-text:last-child {
  margin-bottom: 0;
}

/* -----  */
.se-wrapper {
  background-color: #F9F9F5;
  border: 1px solid #e2dec9;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 40px auto;
}

.se-process-row {
  position: relative;
}

.se-col {
  position: relative;
  padding-bottom: 30px;
}

.se-number {
  font-size: 4.5rem;
  font-weight: 300;
  color: #d1b882;
  text-align: center;
  line-height: 1;
  margin-bottom: 25px;
}

.se-step-box {
  border: 1px solid #CED5AE;
  background-color: #ffffff;
  padding: 12px 10px;
  text-align: center;
  color: #b38836;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 100%; 
}

.se-arrow-wrap {
  text-align: center;
  margin: 25px 0;
  color: #d1b882;
}

.se-arrow-wrap img {
  width: 32px;
  height: 32px;
  fill: #d1b882;
}

.se-content-area {
  padding: 0 5px;
}

.se-heading-red {
  color: #f03e3e;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 15px;
  margin-bottom: 5px;
}

.se-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 15px;
}

.se-list {
  padding-left: 18px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #333333;
  list-style: disc;
}

.se-list li {
  margin-bottom: 6px;
}

.se-sublist {
  padding-left: 18px;
  list-style-type: circle;
  margin-top: 5px;
  margin-bottom: 5px;
  list-style: disc;
}

@media (min-width: 768px) and (max-width: 991px) {
  .se-col:nth-child(odd) .se-step-box::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -24px; 
    width: 24px;
    height: 2px;
    background-color: #000000;
    transform: translateY(-50%);
    z-index: 1;
  }

  .se-col:nth-child(odd)::before {
    content: "";
    position: absolute;
    right: 0;
    top: 220px;
    bottom: 0;
    width: 1px;
    background-color: #e6e3d5;
  }
}

@media (min-width: 992px) {
  .se-col:not(:last-child) .se-step-box::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -24px; 
    width: 24px;
    height: 2px;
    background-color: #000000;
    transform: translateY(-50%);
    z-index: 1;
  }

  .se-col:not(:last-child)::before {
    content: "";
    position: absolute;
    right: 0;
    top: 220px;
    bottom: 0;
    width: 1px;
    background-color: #e6e3d5;
  }
}

/* --------  */
.special-focus {
  padding: 20px;
  border: 2px solid #D9DEC0;
  background-color: #F8F8F4;
}

.red-text {
  color: #ED1C24;
}

.bold-text {
  font-weight: 700;
}

/* ----------  */

.colorline-table-wrapper table {
  border: 1px solid #AB7F19;
}

.colorline-table-wrapper .border-b-none {
  border-bottom: none;
}

 .tbyellow {
  background-color: #E7D9C0;
}

 .tbred {
  background-color: #F6A88E;
}
 .tbgreen {
  background-color: #E2E5D0;
}
 .tbblue {
  background-color: #DBDCDE;
}
.colorline-table-wrapper table thead tr:first-child {
  border-top: 1px solid #AB7F19 !important;
}

.tbcolorbox {
  width: 10px;
  height: 10px;
}

/* ----------  */

.--em_light_brown_bg {
  background-color: #f7f2ea;
}
.--em_brown_bg {
  background-color: #f2e9dc;
}
.--em_medium_brown_bg {
  background-color: #d9c193;
}
.--em_dark_brown_bg {
  background-color: #d1b47e;
}
.--em_special_brown_bg {
  background-color: #e9dbc2;
}
.--em_text-gold-dark {
  color: #a47b36;
}
.--em_border-gold {
  border-color: #a47b36 !important;
}

.brown_line_arrow::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  width: 20px;
  height: 1px;
  background-color: #a47b36;
}
.em_arrow-head-brown {
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 0 5px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #a47b36;
  z-index: 2;
}

.em_strategy-title-brown {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
}
.em_strategy-title-brown::before {
  content: "•";
  color: #a47b36;
  font-size: 1.5rem;
  line-height: 0.8;
  margin-right: 8px;
}

/* -------- orange */
.--em_light_orange_bg {
  background-color: #fef1eb;
}
.--em_orange_bg {
  background-color: #fde7dc;
}
.--em_medium_orange_bg {
  background-color: #f8a98f;
}
.--em_dark_orange_bg {
  background-color: #f8a98f;
}
.--em_special_orange_bg {
  background-color: #fcd2c1;
}
.--em_text-red-dark {
  color: #ed1c24;
}
.--em_border-orange {
  border-color: #f69679 !important;
}

.orange_line_arrow::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  width: 20px;
  height: 1px;
  background-color: #f8a98f;
}
.em_arrow-head-orange {
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 0 5px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #f8a98f;
  z-index: 2;
}

.em_strategy-title-red {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
}
.em_strategy-title-red::before {
  content: "•";
  color: #ed3f89;
  font-size: 1.5rem;
  line-height: 0.8;
  margin-right: 8px;
}
/* -------- green */
.--em_light_green_bg {
  background-color: #f7f8f3;
}
.--em_green_bg {
  background-color: #edeee2;
}
.--em_medium_green_bg {
  background-color: #a6b88f;
}
.--em_dark_green_bg {
  background-color: #b3c29f;
}
.--em_special_green_bg {
  background-color: #ced5ae;
}
.--em_text-green {
  color: #79925a;
}
.--em_border-green {
  border-color: #779158 !important;
}

.green_line_arrow::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  width: 20px;
  height: 1px;
  background-color: #779158;
}
.em_arrow-head-green {
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 0 5px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #779158;
  z-index: 2;
}

.em_strategy-title-green {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
}
.em_strategy-title-green::before {
  content: "•";
  color: #779158;
  font-size: 1.5rem;
  line-height: 0.8;
  margin-right: 8px;
}

/* -------- gray */
.--em_light_gray_bg {
  background-color: #f0f1f1;
}
.--em_gray_bg {
  background-color: #e6e7e8;
}
.--em_medium_gray_bg {
  background-color: #bbbdc0;
}
.--em_dark_gray_bg {
  background-color: #a7a9ab;
}
.--em_special_gray_bg {
  background-color: #d1d2d4;
}
.--em_text-black {
  color: #000000;
}
.--em_border-gray {
  border-color: #939597 !important;
}

.gray_line_arrow::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  width: 20px;
  height: 1px;
  background-color: #939597;
}
.em_arrow-head-gray {
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 0 5px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #939597;
  z-index: 2;
}

.em_strategy-title-gray {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
}
.em_strategy-title-gray::before {
  content: "•";
  color: #000000;
  font-size: 1.5rem;
  line-height: 0.8;
  margin-right: 8px;
}

/* ----------  */

.em_container {
  border: 2px solid;
  padding: 2rem;
  color: #333;
}

.em-title-text {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: none;
}

.em-text-bold {
  font-weight: 700;
}

.em_top-left-box {
  border: 1px solid;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.em_top-left-header {
  display: flex;
  padding: 0;
}
.em_number-box {
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.em_number {
  font-size: 2.8rem;
  font-weight: bold;
  /* color: #b5853a; */
  line-height: 1;
  margin: 0;
}
.em_title-box {
  padding: 15px 20px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.em_top-left-title {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2;
  color: #000;
  margin: 0;
}
.em_top-left-body {
  padding: 15px 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  background-color: transparent;
}

.em_top-right-box {
  border: 1px solid;
  height: 100%;
}
.em_flow-btn {
  padding: 12px;
  text-align: center;
  font-weight: bold;
  font-size: 0.95rem;
  position: relative;
}

.em_line-main {
  position: absolute;
  left: -20px;
  top: 50%;
  width: 38px;
  height: 1px;
  z-index: 1;
}
.em_line-vertical {
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
}
.em_line-vertical-orange2 {
  position: absolute;
  left: 0;
  top: 49px;
  bottom: 24px;
  width: 1px;
}

.em_line-vertical-orange {
  position: absolute;
  left: 0;
    top: 49px;
    bottom: 49px;
    width: 1px;
    width: 1px;
}

.em_line-vertical-green {
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 24px;
  width: 1px;
}
.em_line-vertical-gray {
  position: absolute;
  left: 0;
  top: 60px;
  bottom: 37px;
  width: 1px;
}

.em_strategy-grid {
  border: 1px solid;
  border-radius: 2px;
}
.em_strategy-item {
  padding: 20px;
  height: 100%;
}

.em_strategy-text {
  font-size: 0.9rem;
  margin-left: 18px;
}

.em_table-header {
  color: #fff;
  padding: 8px 15px;
  font-weight: bold;
  font-size: 0.95rem;
}
.em_table-body {
  border: 1px solid;
  border-top: none;
  padding: 15px;
  height: calc(100% - 37px);
}
.em_custom-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.em_custom-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.em_custom-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -3px;
  font-size: 20px;
}

.em_actions-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* SDG Icons */
.em_sdg-container {
  background-color: #fff;
  border: 1px solid;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.em_sdg-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

@media (max-width:1399px) {
  .em_line-vertical-orange {
    top: 61px;
    bottom: 49px;
}
.em_line-vertical-gray {
  top: 75px;
  bottom: 37px;
}
.em_line-vertical-orange2 {
  top: 62px;
  bottom: 24px;
}
}

@media (max-width: 1199px) {
  .em_line-vertical {
    top: 35px;
    bottom: 32px;
  }
  .em_line-vertical-orange {
      top: 61px;
      bottom: 75px;
  }
  .em_line-vertical-green {
    top: 41px;
    bottom: 24px;
  }
  .em_line-vertical-gray {
    top: 87px;
    bottom: 50px;
  }
  .em_line-vertical-orange2 {
    top: 74px;
    bottom: 37px;
  }
}
@media (max-width: 991px) {
  .em_line-vertical-orange, .em_line-vertical-green, .em_line-vertical-gray, .em_line-vertical-orange2 {
      display: none;
  }
  .em_line-vertical {
    top: -85px;
    bottom: 23px;
    display: none;
  }
  .em_line-main {
    display: none;
  }
  .em_arrow-head-brown, .em_arrow-head-orange, .em_arrow-head-green, .em_arrow-head-gray {
    display: none;
  }
  .orange_line_arrow::before, .brown_line_arrow::before, .green_line_arrow::before, .gray_line_arrow::before {
    display: none;
  }
}

@media (min-width: 768px) {
  .em_border-md-end {
    border-right: 1px solid;
  }
  .em_border-md-bottom {
    border-bottom: 1px solid;
  }
}
@media (max-width: 767px) {
  .em_strategy-item {
    border-bottom: 1px solid #e2d1a8;
  }
  .em_flow-btn::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .em_line-main,
  .em_line-vertical,
  .em_arrow-head-green {
    display: none !important;
  }
  .em_flow-btn::before {
    display: none !important;
  }
  .em_flow-wrapper {
    padding-left: 0 !important;
  }
  .em_top-right-box {
    margin-top: 15px;
  }
  
}
/* operating environment end  */

/* BOD Styles Start  */
.modern-bod-accordion {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  margin-bottom: 50px;
  background: #fff;
}

.bod-header {
  cursor: pointer;
  padding-bottom: 15px;
  border-bottom: 1px solid #c4a45e;
}

.bod-header:hover .bod-name-wrapper h2,
.modern-bod-accordion.active .bod-name-wrapper h2 {
  color: #e61c24;
  transition: color 0.3s ease;
}

.bod-top-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  min-height: 250px;
}

.bod-name-wrapper {
  padding-bottom: 10px;
  z-index: 2;
}

.bod-name-wrapper h2 {
  font-size: 28px;
  font-weight: 800;
  color: #000;
  margin: 0;
  transition: color 0.3s ease;
}

.bod-name-wrapper h3 {
  font-size: 20px;
  font-weight: 400;
  color: #555;
  margin: 5px 0 0 0;
}

.bod-image-wrapper {
  position: relative;
  width: 60%;
  height: 250px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.bod-person {
  max-height: 280px;
  position: relative;
  z-index: 2;
  margin-right: 5%;
  transition: transform 0.4s ease-out;
  transform-origin: bottom center;
}

.beige-shape2 {
  position: absolute;
  right: 0;
  max-height: 230px;
  z-index: 1;
  overflow: hidden;
}

.beige-shape2 img {
  height: 230px;
  transition: transform 0.4s ease;
}

.beige-shape {
  width: 100px;
  height: 230px;
  background-color: #c19b5c;
  clip-path: polygon(0 0, 100% 0, 75% 100%, 40% 100%);
  left: 188px;
  position: absolute;
  z-index: 0;
  transition: all 0.4s ease;
}

.bod-header:hover .bod-person,
.modern-bod-accordion.active .bod-person {
  transform: scale(1.03);
}

.bod-header:hover .beige-shape {
  background-color: #b58d34;
  width: 110px;
  left: 180px;
}

.modern-bod-accordion.active .beige-shape {
  background-color: #8c6a22;
  width: 110px;
  left: 180px;
}

.bod-header:hover .beige-shape2 img,
.modern-bod-accordion.active .beige-shape2 img {
  transform: translateX(5px);
}

.bod-red-line {
  height: 6px;
  width: 100%;
  background-color: #e61c24;
  margin: 0 0 15px 0;
}

.bod-sub-header h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}

.bod-sub-header p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}

.toggle-icon i {
  font-size: 24px;
  color: #a98022;
  transition: transform 0.3s ease;
}

.modern-bod-accordion.active .toggle-icon i {
  transform: rotate(180deg);
}

.bod-content {
  border-left: 1px solid #c4a45e;
  border-right: 1px solid #c4a45e;
  border-bottom: 1px solid #c4a45e;
  padding: 10px 20px;
}

.bod-content-details p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.bod-gold-title {
  color: #a98022;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
  border-bottom: 1px solid #a98022;
}

.bod-list {
  padding-left: 20px;
  margin-bottom: 0;
}

.bod-list li {
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 5px;
  list-style: disc;
}

@media (max-width: 1399px) {
  .beige-shape {
    left: 90px;
  }
  .bod-header:hover .beige-shape,
  .modern-bod-accordion.active .beige-shape {
    width: 100px;
    left: 85px;
  }
}

@media (max-width: 1199px) {
  .beige-shape {
    left: 10px;
  }
  .bod-header:hover .beige-shape,
  .modern-bod-accordion.active .beige-shape {
    width: 100px;
    left: 5px;
  }
  .bod-name-wrapper {
      max-width: 306px;
  }
}

@media (max-width: 991px) {
  .beige-shape2 img {
    max-height: 230px;
    max-width: none !important;
  }
  .beige-shape {
    left: auto;
    right: 363px;
  }
  .bod-header:hover .beige-shape,
  .modern-bod-accordion.active .beige-shape {
    width: 100px;
    left: auto;
    right: 368px;
  }
}

@media (max-width: 767px) {
  .bod-top-hero {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .bod-name-wrapper {
    width: 100%;
    padding-top: 15px;
  }

  .bod-image-wrapper {
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
  }

  .bod-person {
    margin-right: 0;
    max-height: 250px;
  }

  .beige-shape {
    width: 100%;
    left: 0;
    right: 0;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
  }

  .bod-header:hover .bod-name-wrapper h2 {
    color: #000;
  }

  .bod-header:hover .bod-person {
    transform: none;
  }

  .bod-header:hover .beige-shape {
    width: 100%;
    left: 0;
    right: 0;
    background-color: #c19b5c;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
  }

  .modern-bod-accordion.active .beige-shape {
    width: 100%;
    left: 0;
    right: 0;
    background-color: #8c6a22;
    clip-path: polygon(0 5%, 100% 10%, 100% 100%, 0% 100%);
  }

  .modern-bod-accordion.active .bod-person {
    transform: scale(1.02);
  }

  .beige-shape2 {
    right: 43%;
    transform: translateX(50%);
    opacity: 0.6;
  }

  .bod-header:hover .beige-shape2 img {
    transform: none;
  }
  .modern-bod-accordion.active .beige-shape2 img {
    transform: scale(1);
  }

  .bod-sub-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .toggle-icon {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 567px) {
  .beige-shape2 {
    right: 0;
    transform: translateX(0%);
    opacity: 0.6;
  }
  .beige-shape2 img {
    height: 230px;
    transition: transform 0.4s ease;
  }
}
/* BOD Styles End  */

/* corporate management start  */
.cmg-profile-card {
  margin-bottom: 30px;
}

.cmg-image-container {
  position: relative;
  width: 100%;
  border-bottom: 6px solid #b58e30;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 20px;
}

.cmg-being-shape {
  width: 100px;
  height: 170px;
  bottom: -26px;
  background-color: #cdd4ad;
  clip-path: polygon(0 0, 100% 0, 75% 100%, 40% 100%);
  left: 40px;
  position: absolute;
  z-index: 0;
  transition: all 0.4s ease;
}

.cmg-bg-shape {
  position: absolute;
  bottom: -13px;
  right: -65px;
  z-index: 1;
}

.cmg-bg-shape img {
  width: 85%;
  height: 170px;
  transition: transform 0.5s ease;
}

.cmg-name-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #000;
  margin-top: 15px;
  margin-bottom: 5px;
}

.cmg-designation {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
}

.cmg-person-img {
  position: relative;
  width: 300px;
  z-index: 2;
  display: block;
  right: -37px;
  transition: transform 0.4s ease;
}

.cmg-profile-card:hover .cmg-person-img {
  transform: scale(1.08) translateY(-8px);
}

.cmg-profile-card:hover .cmg-being-shape {
  transform: translateX(-20px);
}

.cmg-profile-card:hover .cmg-bg-shape img {
  transform: scale(1.08) translateX(-10px);
}

@media (max-width: 1399px) {
  .cmg-being-shape {
    width: 100px;
    height: 160px;
    bottom: -35px;
    left: 40px;
  }
  .cmg-bg-shape {
    bottom: -17px;
    right: -95px;
  }

  .cmg-bg-shape img {
    width: 78%;
    height: 160px;
  }

  .cmg-person-img {
    width: 270px;
    z-index: 2;
    right: -37px;
  }

  .cmg-profile-card:hover .cmg-person-img {
    transform: scale(1.08) translateY(-8px);
  }

  .cmg-profile-card:hover .cmg-being-shape {
    transform: translateX(-20px);
  }

  .cmg-profile-card:hover .cmg-bg-shape img {
    transform: scale(1.07) translateX(-10px);
  }
}

@media (max-width: 1199px) {
  .cmg-being-shape {
    width: 100px;
    height: 160px;
    bottom: -56px;
    left: 20px;
  }
  .cmg-bg-shape {
    bottom: -28px;
    right: -141px;
  }

  .cmg-bg-shape img {
    width: 65%;
    height: 160px;
  }

  .cmg-person-img {
    width: 230px;
    z-index: 2;
    right: -17px;
  }

  .cmg-profile-card:hover .cmg-person-img {
    transform: scale(1.08) translateY(-8px);
  }

  .cmg-profile-card:hover .cmg-being-shape {
    transform: translateX(-20px);
  }

  .cmg-profile-card:hover .cmg-bg-shape img {
    transform: scale(1.07) translateX(-10px);
  }
}

@media (max-width: 991px) {
  .cmg-being-shape {
    width: 100px;
    height: 160px;
    bottom: -49px;
    left: 24px;
  }
  .cmg-bg-shape {
    bottom: -28px;
    right: -102px;
  }

  .cmg-bg-shape img {
    width: 75%;
    height: 160px;
  }

  .cmg-person-img {
    width: 270px;
    z-index: 2;
    right: -17px;
  }

  .cmg-profile-card:hover .cmg-person-img {
    transform: scale(1.08) translateY(-8px);
  }

  .cmg-profile-card:hover .cmg-being-shape {
    transform: translateX(-20px);
  }

  .cmg-profile-card:hover .cmg-bg-shape img {
    transform: scale(1.07) translateX(-10px);
  }
}

@media (max-width: 767px) {
  .cmg-image-container {
    height: 235px;
    padding-top: 30px;
    border-bottom: 5px solid #b58e30;
  }

  .cmg-being-shape {
    width: 100%;
    height: 120px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cdd4ad;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .cmg-bg-shape {
    display: none;
  }

  .cmg-person-img {
    width: auto;
    height: 100%;
    right: auto;
    left: 50%;
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    transform-origin: bottom center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .cmg-profile-card:hover .cmg-person-img {
    transform: translateX(-50%) scale(1.08) translateY(-0px);
  }

  .cmg-profile-card:hover .cmg-being-shape {
    height: 170px;
    background-color: #cedb92;
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
  }

  .cmg-name-title,
  .cmg-designation {
    text-align: center;
  }
}

@media (max-width: 567px) {
  .cmg-image-container {
    height: 161px;
    padding-top: 30px;
    border-bottom: 5px solid #b58e30;
  }
}

/* corporate management end  */

/* management team css start  */
.mgt-profile-card {
  margin-bottom: 30px;
  cursor: pointer;
}

.mgt-image-container {
  position: relative;
  width: 100%;
  border-bottom: 6px solid #b58e30;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 20px;
}

.mgt-being-shape {
  width: 100px;
  height: 170px;
  bottom: -26px;
  background-color: #cdd4ad;
  clip-path: polygon(0 0, 100% 0, 75% 100%, 40% 100%);
  left: 40px;
  position: absolute;
  z-index: 0;
  transition: all 0.4s ease;
}

.mgt-person-img {
  position: relative;
  width: 100%;
  max-width: 300px;
  z-index: 2;
  display: block;
  transition: transform 0.4s ease;
}

.mgt-name-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #000;
  margin-top: 15px;
  margin-bottom: 5px;
}

.mgt-designation {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
}

.mgt-profile-card:hover .mgt-person-img {
  transform: scale(1.08) translateY(-8px);
}

.mgt-profile-card:hover .mgt-being-shape {
  transform: translateX(-10px);
  background-color: #cedb92;
}

@media (max-width: 767px) {
  .mgt-image-container {
    height: auto;
    padding-top: 15px;
  }

  .mgt-being-shape {
    width: 100%;
    height: 80%;
    left: 0;
    bottom: 0;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
  }

  .mgt-person-img {
    height: auto;
    width: 90%;
    max-width: 200px;
    margin: 0 auto;
  }

  .mgt-profile-card:hover .mgt-person-img {
    transform: scale(1.05) translateY(-5px);
  }

  .mgt-name-title,
  .mgt-designation {
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
  }

  .mgt-name-title {
    font-size: 1rem;
  }
  .mgt-designation {
    font-size: 0.8rem;
  }
}

/* management team css end */


/* Insightful value creation css start  */
.vcm-dashboard {
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid #955018;
  border-radius: 10px;
  overflow: hidden;
  margin: 1%;
}

.vcm-header {
  background-color: #fff;
  padding: 15px;
  border-bottom: 2px solid #c9b67e;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vcm-header h1 {
  color: #e53935;
  font-size: 1.5rem;
  font-weight: bold;
}

.vcm-flow-section {
  background-color: #ab7f19;
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 19px;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .vcm-flow-section {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: left;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
  }
}

.vcm-flow-item {
  padding: 10px;
  flex: 1;
  position: relative;
}

.vcm-flow-item:not(:first-child)::after {
  content: "›";
  position: absolute;
  left: -30px;
  top: 13%;
  transform: translateY(-50%);
  font-size: 172px;
  color: #fff;
  line-height: 100px;
}

.vcm-flow-section i {
    display: none;
  }
  .vcm-footer-section i {
    display: none;
  }

@media screen and (max-width: 991px) {
  .vcm-flow-item {
    padding: 10px 20px 10px -1px;
    flex: 1;
    position: relative;
    /* text-align: center;
    padding: 0 13px; */
  }
  .vcm-flow-item:not(:first-child)::after {
    font-size: 208px;
    top: 0%;
    left: -66px;
  }
  .vcm-flow-section .vcm-flow-item:first-child {
    display: none;
  }
}

@media screen and (max-width: 800px) {

  .vcm-grihead {
      margin-bottom: 0px !important;
  }
   .vcm-flow-item:not(:first-child)::after {
    content: "↓";
    position: relative;
    bottom: -31px;
    right: 63%;
    top: auto;
    font-size: 28px;
    transform: translateX(50%);
    display: none;
  }

      .vcm-footer-item:not(:last-child)::after {
        display: none !important;
    }

  .vcm-footer-item:not(:first-child)::after {
    content: "↓";
    bottom: -34px;
    right: 50%;
    top: auto;
    transform: translateX(50%);
    font-size: 20px;
    color: #fff;
    line-height: 60px;
    display: none;
  }

  .vcm-flow-section i {
    display: block;
  }

  .vcm-footer-section i {
    display: block;
    color: white;
  }

    .vcm-flow-section {
      flex-direction: column;
      gap: 10px;
    }

    .vcm-footer-section {
      flex-direction: column-reverse;
      gap: 10px;
    }
}

@media screen and (max-width: 768px) {
  .vcm-flow-item:not(:first-child)::after {
    content: "↓";
    position: absolute;
    left: 0px;
    top: 22%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
    line-height: 60px;
  }

  .vcm-footer-item:first-child {
    display: none;
  }
}

.vcm-main-content {
  display: grid;
  grid-template-columns: 1.4fr 1.3fr 1.5fr 2.5fr 1.4fr;
  gap: 0;
}

.vcm-main-content2 {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  grid-gap: 10px;
}

.vcm-grihead {
  background-color: #f5f6ef;
  padding: 20px;
  text-align: center;
  margin-bottom: 10px;
}

.vcm-grihead h2 {
  font-size: 20px;
  color: #ab7f19;
  font-weight: bold;
  margin: 10px 0px 10px 0px;
  padding: 0px;
  text-transform: none;
}

.vcm-main-content2 .vcm-card {
  margin-bottom: 15px;
  background-color: #f5f6ef;
  border: 1px solid #c9b67e;
  border-radius: 8px;
  overflow: hidden;
}

.vcm-column {
  border-right: 1px solid #c9b67e;
  background-color: #fff;
  padding: 15px 10px;
}

.vcm-column:last-child {
  border-right: none;
}

.vcm-column-header {
  text-align: center;
  font-weight: bold;
  padding: 10px 0;
  margin-bottom: 15px;
  color: white;
  font-size: 17px;
  background-color: #afb1b4;
}

.vcm-card {
  margin-bottom: 8px;
  border: 1px solid #dbc498;
  border-radius: 8px;
  overflow: hidden;
}

.vcm-card-header {
  background-color: #fff;
  padding: 10px 8px;
  font-weight: bold;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  flex-direction: row;
}

.vcm-card-header img {
  width: 40px;
  margin-right: 10px;
}

.vcm-card-header {
  color: #ab7f19;
}
.vcm-card-header:hover {
  background-color: #ffefc9;
}
.vcm-column-1-card-header {
  background-color: #ab7f19;
  color: white;
}
.vcm-column-1-card-header:hover {
  background-color: #ce981c;
  color: white;
}
.vcm-column-2-card-header {
  background-color: #7f8183;
  color: white;
}
.vcm-column-2-card-header:hover {
  background-color: #afb1b4;
  color: white;
}
.vcm-column-3-card-header {
  background-color: #cdd4ad;
  color: #212529;
}
.vcm-column-3-card-header:hover {
  background-color: #e5eebd;
  color: #212529;
}

.vcm-card-header-label {
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 500;
}

.vcm-ref-number {
  background-color: #f0d775;
  padding: 2px 6px;
  border-radius: 20px;
  font-size: 0.7rem;
}

.vcm-card-content {
  padding: 20px;
  font-size: 0.85rem;
  background-color: #f5f6ef;
  display: none; 
}

.vcm-card-content2 {
  padding: 20px;
  font-size: 0.85rem;
  background-color: #f5f6ef;
  display: block; 
}

.vcm-card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.vcm-icon-circle {
  width: 50px;
  height: 50px;
  background-color: #f0e6ca;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #8a7b4b;
  font-size: 24px;
}

.vcm-key-stat {
  margin-bottom: 5px;
  display: flex;
}

.vcm-key-stat::before {
  content: "•";
  margin-right: 5px;
}

.vcm-impact-label {
  color: #ab7f19;
  font-size: 15px;
  font-weight: 500;
  margin: 10px 0px 10px 0px;
  line-height: 1.2;
  text-align: left;
}

.vcm-highlight-red {
  text-align: left;
  line-height: 1.4;
}

.vcm-footer-section {
  background-color: #ab7f19;
  padding: 10px 10px;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.vcm-footer-item {
  flex: 1;
  padding: 7px 10px;
  text-align: center;
  color: white;
  font-size: 19px;
  font-weight: 700;
  position: relative;
}

.vcm-footer-item:not(:last-child)::after {
  content: "‹";
  position: absolute;
  right: -14%;
  top: 11%;
  transform: translateY(-50%);
  font-size: 173px;
  color: #fff;
  line-height: 100px;
}

@media (max-width: 1100px) {
  .vcm-main-content2 {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 10px;
  }

  .vcm-insight-vcm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .vcm-insight-vcm img {
    width: 80%;
  }

  .vcm-main-content {
    grid-template-columns: repeat(1, 1fr);
  }

  .vcm-footer-item {
    font-size: 17px;
    font-weight: 500;
  }
}

@media(max-width:940px){
  .vcm-footer-item:not(:last-child)::after {
    content: "‹";
    position: absolute;
    right: -18%;
    top: 12%;
    transform: translateY(-50%);
    font-size: 220px;
    color: #fff;
    line-height: 100px;
  }

  .vcm-footer-item {
    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  .vcm-main-content {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 480px) {
  .vcm-main-content {
    grid-template-columns: 1fr;
  }

  .vcm-insight-vcm img {
    width: 98%;
  }
  .vcm-column {
    border-right: none;
    border-bottom: 1px solid #c9b67e;
  }

  .vcm-column:last-child {
    border-bottom: none;
  }
}
/* Insightful value creation css end  */

/* Milestone css start  */
.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
}

.timeline-line {
  position: absolute;
  width: 4px;
  background-color: #ed1d24;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}

.timeline-item {
  position: relative;
  margin-bottom: 2px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.timeline-marker {
  position: absolute;
  margin-top: 10px;
  width: 15px;
  height: 15px;
  background-color: #ed1d24;
  z-index: 2;
}

.timeline-arrow-top,
.timeline-arrow-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.timeline-arrow-bottom {
  bottom: -10px;
  top: auto;
  border-top: 10px solid #ed1d24;
}

.timeline-content {
  width: 45%;
  position: relative;
  padding: 5px 0;
  opacity: 0;
}

.timeline-content.left {
  margin-right: auto;
  text-align: right;
  padding-right: 20px;
}

.timeline-content.right {
  margin-left: auto;
  text-align: left;
  padding-left: 20px;
}

.timeline-year {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
  padding: 8px 35px;
  text-align: center;
  z-index: 1;
}

.timeline-year::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f0e9d6;
  transform: skewX(-25deg);
  z-index: -1;
}

.tl-green1::before {
  background-color: #ced6ae;
}

.tl-green2::before {
  background-color: #e0e4cb;
}

.tl-green3::before {
  background-color: #edefe2;
}

.tl-cream1::before {
  background-color: #f6efe4;
}

.tl-cream2::before {
  background-color: #eee2cf;
}

.tl-cream3::before {
  background-color: #e6d5b7;
}

.timeline-text {
  font-size: 14px;
  color: #333;
  padding-bottom: 15px;
  border-top: 1px solid #ddd;
  text-align: inherit;
}

.timline-list {
  list-style: none; 
  padding-left: 0px;
}

.timline-list li {
  position: relative; 
  padding-left: 20px; 
}

.timline-list li::before {
  content: "•"; 
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem; 
  color: #333; 
}

.timeline-content.left .timline-list li  {
  padding-left: 0px;
  padding-right: 20px;
}

.timeline-content.left .timline-list li::before  {
  left: auto;
  right: 0;
}


/* Responsive styles */
@media screen and (max-width: 992px) {
  .timeline-year {
    font-size: 20px;
  }

  .timeline-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .timeline-marker {
    width: 10px;
    height: 10px;
  }

  .timeline-line {
    left: 40px;
  }

  .timeline-marker {
    left: 15px;
  }

  .timeline-arrow-top,
  .timeline-arrow-bottom {
    left: 2px;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
    margin-right: 0;
    text-align: left;
    padding-left: 20px;
    padding-right: 0;
  }

  .timeline-content.left,
  .timeline-content.right {
    text-align: left;
    margin-left: 80px;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 0;
  }

  .timeline-content.left .timline-list li  {
    padding-left: 20px;
    padding-right: 0px;
  }

  .timeline-content.left .timline-list li::before  {
    left: 0;
    right: auto;
  }

  .timeline-year {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .timeline-line {
    left: 50px;
  }

  .timeline-marker {
    left: 25px;
    width: 10px;
    height: 10px;
  }

  .timeline-arrow-top,
  .timeline-arrow-bottom {
    left: 2px;
  }

  .timeline-content {
    width: calc(100% - 40px);
    margin-left: 25px;
  }

  .timeline-content.left,
  .timeline-content.right {
    margin-left: 40px;
  }

  .timeline-year {
    font-size: 18px;
  }

  .timeline-text {
    font-size: 14px;
  }
}
/* Milestone css end  */

/* human-capital css start  */
.yt-chart-wrapper {
      width: 100%;
      /* max-width: 960px; */
    }

    /* ── TOP NODE ── */
    .yt-top-node {
      background: #ED1C24;
      color: #fff;
      font-size: 1.2rem;
      text-align: center;
      padding: 18px 32px;
      border-radius: 4px;
      letter-spacing: 0.01em;
      position: relative;
      z-index: 2;
      box-shadow: 0 4px 18px rgba(192, 57, 43, 0.25);
    }

    /* ── CONNECTOR AREA ── */
    .yt-connector {
      display: none;
      width: 100%;
      overflow: visible;
    }

    .yt-connector svg {
      width: 100%;
      height: 70px;
      overflow: visible;
      display: block;
    }

    /* ── CARDS GRID ── */
    .yt-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-top: 12px;
    }

    .yt-card {
      border: 1.5px solid #c8c9a8;
      border-radius: 4px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      animation: fadeUp 0.5s ease both;
    }

    .yt-card:nth-child(1) {
      animation-delay: 0.1s;
    }

    .yt-card:nth-child(2) {
      animation-delay: 0.2s;
    }

    .yt-card:nth-child(3) {
      animation-delay: 0.3s;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(14px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .yt-card-title {
      font-size: 1rem;
      text-align: center;
      padding: 14px 20px;
      background:#E8ECC9;
      letter-spacing: 0.01em;
      font-weight: 600;
      flex-shrink: 0;
    }

    .yt-card-body {
      background: #ffffff;
      padding: 18px 20px 20px;
      flex: 1;
    }

    .yt-card ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .yt-card ul li {
      font-size: 1rem;
      padding-left: 16px;
      position: relative;
      line-height: 1.45;
    }

    .yt-card ul li::before {
      content: '•';
      position: absolute;
      left: 0;
      font-size: 1rem;
      line-height: 1.3;
    }

    @media(max-width:1200px){
      .yt-card-body {
        background: #ffffff;
        padding: 18px 15px 20px;
        flex: 1;
      }
      .yt-card-body ul {
        padding: 0;
      }
    }

    /* ── DESKTOP ── */
    @media (min-width: 991px) {
      .yt-connector {
        display: block;
      }

      .yt-cards {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 0;
        align-items: stretch;
      }
    }
/* human-capital css end  */


/* Kanishka Css End  */

/* Shamith CSS Start */
header {
  padding-top: 145px;
  position: relative;
}
header .page-actions {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 4;
}
header.messages-page .page-actions {
  left: initial;
  right: 50px;
}
header .page-actions a {
  display: block;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  padding: 10px;
  background-color: #EBDAB8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
header .page-actions a img {
  height: 100%;
  width: auto;
}

header .messages-header {
  width: 100%;
  height: calc(90vh - 100px);
  background-color: white;
  padding: 50px 50px 0 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
header .messages-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: calc(100% - 50px);
  background-color: var(--primary-red);
  z-index: 3;
}
header .messages-header .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
header .messages-header .right h2 {
  text-transform: none;
  font-weight: 500;
  color: #5B5B5B;
}
header .messages-header .right h1 {
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.1;
}
header .page-header .titles h1,
header .messages-header .right h1 {
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}
header .page-header .titles h1 .split-word,
header .messages-header .right h1 .split-word {
  display: inline-block;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}
@media(max-width: 768px){
  header .page-header .titles h1,
  header .messages-header .right h1 {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: manual;
  }
  header .page-header .titles h1 .split-line,
  header .messages-header .right h1 .split-line {
    display: block;
    overflow: hidden;
  }
}
header .messages-header .right p {
  color: var(--primary-red);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}
header .messages-header .name-positions {
  background-color: var(--primary-red);
  width: fit-content;
  padding: 15px 30px 15px 100px;
  margin-left: -100px;
  margin-bottom: 20px;
}
header .messages-header .name-positions p {
  font-weight: 300;
  color: white;
  margin: 0;
}
header .messages-header .msg-bg-img {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: auto;
}
header .messages-header .left {
  position: relative;
  z-index: 2;
}
header .messages-header .left .msg-main-img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: auto;
}

header .page-header {
  position: relative;
  height: calc(80vh - 100px);
  padding: 50px;
  overflow: hidden;
}

.custom-page-header {
    position: relative;
    padding: 20px 50px;
}

header .page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 5px;
  width: calc(100% - 50px);
  background-color: var(--primary-red);
  z-index: 3;
}

header .custom-page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 5px;
  width: calc(100% - 50px);
  background-color: var(--primary-red);
  z-index: 3;
}
header .page-header .pageheader-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  object-fit: cover;
  z-index: 1;
}
header .page-header .titles {
  width: 40%;
  position: relative;
  z-index: 2;
}
header .page-header .titles h2 {
  text-transform: none;
  font-weight: 500;
  color: #5B5B5B;
}
header .page-header .titles h1 {
  line-height: 1.1;
  font-weight: 800;
}

@media(min-width: 1490px){
  header.messages-page .page-actions {
    right: 100px;
  }
  header .page-actions a {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    padding: 12px;
  }

  header .messages-header {
    padding: 50px 100px 0 100px;
  }
  header .messages-header::after {
    width: calc(100% - 100px);
  }
  header .messages-header .right h2 {
    font-size: 1.5rem;
  }
  header .messages-header .right h1 {
    font-size: 3rem;
  }
  header .messages-header .right p {
    font-size: 1.2rem;
  }

  header .page-header {
    height: fit-content;
    min-height: calc(70vh - 100px);
    padding: 50px 50px 125px 50px;
  }
  header .page-header .titles h2 {
    font-size: 1.5rem;
  }
  header .page-header .titles h1 {
    font-size: 2.4rem;
  }
}

@media(min-width: 1750px){
  header.messages-page .page-actions {
    right: 150px;
  }
  header .messages-header {
    padding: 50px 150px 0 150px;
  }
  header .messages-header::after {
    width: calc(100% - 150px);
  }
  header .messages-header .right h2 {
    font-size: 1.8rem;
  }
  header .messages-header .right h1 {
    font-size: 3.5rem;
  }
  header .messages-header .right p {
    font-size: 1.6rem;
  }
  header .messages-header .name-positions {
    padding: 20px 30px 20px 150px;
    margin-left: -150px;
    margin-bottom: 30px;
  }

  header .page-header .titles {
    width: 50%;
    position: relative;
    z-index: 2;
  }

  header .page-header .titles {
    width: 50%;
  }

  header .page-header .titles h2 {
    font-size: 1.8rem;
  }
  header .page-header .titles h1 {
    font-size: 2.6rem;
  }
}

@media(max-width: 1200px){
  header .messages-header  {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
    padding: 30px 30px 0 30px;
  }
  header .messages-header .name-positions {
    margin-left: 0;
    padding: 15px;
    margin-bottom: 0;
  }
  header .messages-header .msg-bg-img  {
    height: 100%;
  }
  header .messages-header .left .msg-main-img  {
    position: relative;
    width: 70%;
    height: auto;
  }
  header .messages-header .left {
    width: 50%;
  } 
  header .messages-header .right {
    position: absolute;
    top: 0;
    width: 50%;
    padding-right: 30px;
    left: 50%;
  }

  header .page-header {
    height: fit-content;
    padding: 50px 50px 120px;
  }

  header .page-header .titles h1 {
    font-size: 28px;
  }
}

@media(max-width: 992px){
  header {
    padding-top: 60px;
  }
  header .messages-header .right {
    position: relative;
    left: initial;
    top: initial;
    width: 100%;
    padding: 0;
  }
  header .messages-header .msg-bg-img {
    height: 60%;
  }
  header .messages-header .left .msg-main-img {
    width: 90%;
  }

  header .page-header {
    padding: 100px 30px;
  }
  .custom-page-header {
    padding: 20px 30px;
  }

  header .page-header .pageheader-bg-img {
    object-position: 90% 50%;
    object-fit: cover;
  }

  header .page-header .titles {
    background-color: rgb(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    padding: 15px 15px 15px 15px;
    width: 60%;
  }
  header .page-header::after, header .custom-page-header::after {
    width: calc(100% - 30px);
  }
  header .messages-header .right h2,
  header .page-header .titles h2 {
    font-size: 1.2rem;
  }
  header .page-actions {
    left: 15px;
  }
}

@media(max-width:768px){
  header .messages-header .left {
    width: auto;
    max-width: 360px;
    left: 5vw;
  }
  header .messages-header .msg-bg-img {
    max-height: 380px;
  }
}

@media(max-width:767px){
    header .page-actions {
    display: none;
  }
}

@media(max-width:580px){
  header .messages-header {
    padding: 30px 20px 0 20px;
  }
  header .messages-header .left {
    width: auto;
    max-width: 340px;
  }
  header .messages-header .left {
    width: auto;
    max-width: 360px;
    left: 2vw;
  }
}

@media(max-width: 540px){
  header .page-actions {
    bottom: 15px;
    left: 15px;
  }
  header.messages-page .page-actions {
    left: initial;
    right: 30px;
  }

  header .messages-header .right h2,
  header .page-header .titles h2 {
    font-size: 0.9rem;
  }
  header .messages-header .right h1 {
    margin-bottom: 15px;
  }
    header .page-header .titles h1 {
      font-size: 1.2rem;
    }
  header .messages-header .left .msg-main-img {
    width: 100%;
  }
  header .messages-header .msg-bg-img {
    height: 50%;
  }
  header .messages-header::after {
    width: 100%;
  }

  header .page-header {
    padding: 300px 30px 30px 15px;
  }
  header .page-header .titles {
    padding: 15px;
    width: 100%;
  }
}



/* Shamith CSS End */

/* mineth css start */
/* our_strategy page css start */
.strategy-texts{
  column-count: 2;
  column-gap: -1px;
  text-align: left;
}

.strategy-texts h2, .strategy-texts h3 {
  break-inside: avoid;
}

.pillar-heading {
    margin-top: 20px;
}

.pillar-heading h3 {
    background-color: var(--primary-red);
    color: white;
    text-align: center;
    padding: 12px;
    margin: 0;
    text-transform: none;
}

.pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 20px;
}

.pillar {
    flex: 1;
    padding: 16px 17px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.green {
    background-color: #cae4c0;
}

.yellow {
    background-color: #ffe2a5;
}

.peach {
    background-color: #facbb9;
}

.blue {
    background-color: #bbc5e2;
}

.lightblue {
    background-color: #c5e9fa;
}

.grey {
    background-color: #dcddde;
}

.priorities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.priority-card {
    border: 2px solid #e6ead7;
    background-color: #f9faf6;
}

.priority-card-plain {
  border: none;
  background-color: transparent;
}

.priority-card-plain .priority-card-header {
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

.priority-card-header {
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    padding: 11px 18px;
    font-size: 22px;
    line-height: 1.3;
}

.priority-number {
  margin-right: 6px;
}

.priority-card-body {
    padding: 0px 18px 20px;
    font-size: 14px;
}

.priority-card-body p {
    margin-bottom: 10px;
}
.priority-sub {
    padding-left: 40px;
    margin-top: 9px;
}

.priority-sub h3 {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    /* color: var(--primary-red); */
    margin-bottom: 3px;
    margin-top: 23px;
}

.priority-body-title {
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    /* color: var(--primary-color); */
}

.strategy-list {
    padding-left: 18px;
    line-height: 1;
}

.strategy-list li {
    margin-bottom: 10px;
    list-style-type: disc;
}

@media (max-width: 991px) {
  .priorities-grid {
    grid-template-columns: 1fr;
  }

  .priority-card-header {
    font-size: 18px;
    padding: 10px 14px;
  }

  .priority-card-body {
    padding: 8px 14px 16px;
    font-size: 13px;
  }

  .priority-sub {
    padding-left: 24px;
    margin-top: 6px;
  }

  .priority-sub h3 {
    font-size: 16px;
    margin-top: 14px;
  }
}

@media (max-width: 576px) {
  .priority-card-header {
    font-size: 16px;
  }

  .priority-sub {
    padding-left: 18px;
  }

  .priority-sub h3 {
    font-size: 14px;
  }
}

/* our_strategy page css end */

/* digital_journey css start */
/* .digital-journey {
  column-count: 2;
  gap: 60px;
} */

HEAD
h3{
  color: var(--primary-color);
}

.dj-feature-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #fbf8f1;
  margin: 12px 0 18px;
  break-inside: avoid;
  border: none;
}

.dj-feature-table thead th {
  background-color: #eadbc3;
  color: #2b2b2b;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 14px;
  border: none;
}

.dj-feature-table thead th:nth-child(2) {
  background-color: #e4e7d3 !important;
}

.dj-feature-table thead th:nth-child(3) {
  background-color: #e2e3e4 !important;
}

.dj-feature-table thead th + th {
  border-left: none;
}

.dj-feature-table tbody td {
  vertical-align: top;
  padding: 12px 14px 14px;
  font-size: 14px;
  line-height: 1.45;
  color: #2b2b2b;
  background-color: #f7f0e7;
  text-align: left;
  border: none;
}

table.dj-feature-table tbody tr td+td {
  vertical-align: top !important;
  text-align: left !important;
}

table.dj-feature-table thead tr {
  border-top: none !important;
  border-bottom: none !important;
}

table.dj-feature-table tbody tr {
  border-bottom: none !important;
}

.dj-feature-table tbody td:nth-child(2) {
  background-color: #f5f6ef;
  text-align: left;
}

.dj-feature-table tbody td:nth-child(3) {
  background-color: #f6f6f6;
}

.dj-feature-table tbody td + td {
  border-left: none;
}

@media (max-width: 991px) {
  /* .digital-journey {
    column-count: 1;
    gap: 24px;
  } */
}

@media (max-width: 576px) {
  /* .dj-feature-table,
  .dj-feature-table thead,
  .dj-feature-table tbody,
  .dj-feature-table th,
  .dj-feature-table td,
  .dj-feature-table tr {
    display: block;
  } */

  .dj-feature-table {
    min-width: 500px;
  }

  /* .dj-feature-table thead {
    position: absolute;
    left: -9999px;
    top: -9999px;
  } */

  .dj-feature-table tbody td {
    border-left: none !important;
    border-top: none !important;
  }

  .dj-feature-table tbody td:first-child {
    border-top: none;
  }
}

/* digital_journey css end */

/* our_sustainability_strategy css start */
/* .ft1 thead td {
    padding: 5px 10px 5px 5px;
    vertical-align: top;
    background-color: #f8f8f3;
    font-weight: 500;
} */

.ft1 tbody tr.tbyellow td {
  border-bottom: none !important;
}

/* table.ft1 thead tr:first-child th+th,
table.ft1 thead tr:first-child td+td {
    text-align: left;
    background-color: transparent;
} */

/* .ft1 ul.list-disc {
    margin-bottom: 25px;
    text-align: left;
} */

/* .ft1 tbody td {
    padding: 5px 10px 5px 5px;
    border-bottom: 1px #d9c194 solid;
    vertical-align: top;
    background-color: #f8f8f3;
} */

/* table.ft1 tbody tr td+td {
    vertical-align: top !important;
    background-color: transparent !important;
} */

/* .ft1 col.ft1-col-1 {
  width: 32%;
} */

/* .ft1 col.ft1-col-2 {
  width: 68%;
} */

/* .ft1 tbody tr.ft1-band-row td:first-child {
  color: var(--primary-color);
  font-weight: 600;
} */

/* .ft1 tbody tr.ft1-band-row td {
  border-bottom: none;
} */

.ft1-strategy {
  margin-top: 10px;
  margin-bottom: 25px;
}

.ft1-strategy thead td {
  
  border-bottom: 2px solid #b08d3e;
  font-size: 14px;
  padding: 10px 12px;
  text-align: left;
  line-height: normal;
  vertical-align: top;
}

.ft1-strategy tbody td {
  background-color: #f8f8f3;
  border-bottom: 1px solid #d9c194;
  padding: 10px 12px;
  vertical-align: top !important;
}

.ft1-strategy col.ft1s-col-1 {
  width: 24%;
}

.ft1-strategy col.ft1s-col-2 {
  width: 23%;
}

.ft1-strategy col.ft1s-col-3 {
  width: 25%;
}

.ft1-strategy col.ft1s-col-4 {
  width: 14%;
}

.ft1-strategy col.ft1s-col-5 {
  width: 14%;
}

.ft1-strategy tbody td:first-child {
  /* background-color: #f3ebdb; */
  color: #b08d3e;
  font-weight: 600;
}

.ft1-strategy .strategy-icon-cell,
.ft1-strategy .strategy-sdg-cell {
  text-align: center;
}

.ft1-strategy .strategy-icon-cell img,
.ft1-strategy .strategy-sdg-cell img {
  max-height: 56px;
  margin: 3px 2px;
}

.ft1-strategy ul.list-disc {
  margin-bottom: 0;
}

/* DFCC Sustainability Pledge layout */
.pledge-section {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin: -14px 0;
}

.pledge-section .pledge-text {
  flex: 1.2;
}

.pledge-section .pledge-image {
  flex: 1;
  text-align: left;
}

.pledge-section .pledge-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 60px auto 1px;
}

.pledge-section .pledge-text h2 {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}

p.cap, p.caption {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-style: italic;
    font-weight: 600;
}

.sdg-support-section {
  margin: 24px 0;
  border: 1px solid rgb(209, 215, 179);
  /* padding: 24px 24px 20px 24px; */
  padding: 0px 1%;
  background-color: #f9faf6;
}

.sdg-support-section .row.g-3 {
  --bs-gutter-x: 0.1rem;
}

.ref-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sdg-capital-legend {
    display: flex;
    align-items: center;
    gap: 41px;
    justify-content: center;
    margin-top: 18px;
    margin-bottom: 15px;
    /* margin-left: 38px; */
}

.sdg-capital-item {
  text-align: center;
}

.sdg-capital-item h6 {
  font-size: 12px;
  font-weight: 700;
  color: #ab7f19;
  margin: 0 0 8px 0;
  transition: all 0.3s ease;
}

.sdg-capital-item h6 a {
  color: #ab7f19;
  font-weight: 700;
}

.sdg-capital-item h6 a:hover {
  color: #ed1d24;
  font-weight: 700;
}

.sdg-capital-item img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  margin-bottom: 6px;
}

.sdg-capital-item p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
}

@media (max-width: 991px) {
  .sdg-capital-legend {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .sdg-capital-legend {
    /* flex-direction: column; */
    align-items: center;
  }

  .sdg-capital-item {
    text-align: center;
    width: 45%;
  }
}

/* UNGC principles cards */
.ungc-principles-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.ungc-card {
  position: relative;
  border: 1px solid #d1d7b3;
  background-color: #f9faf6;
  margin-top: 18px;
}

.ungc-card-label {
  position: absolute;
  top: -22px;
  left: -1px;
  display: inline-block;
  background-color: #fff;
  color: #ab7f19;
  font-weight: 700;
  padding: 4px 12px;
  font-size: 14px;
  border-top: 1px solid #d1d7b3;
  border-left: 1px solid #d1d7b3;
  border-right: 1px solid #d1d7b3;
  border-bottom: none;
}

.ungc-card-body {
  padding: 0 16px 16px 16px;
}

.ungc-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #1a1a1a;
  background-color: #d7e0b0;
  padding: 10px 12px;
}

.ungc-card-body p {
  margin-bottom: 10px;
}

.ungc-reference-title {
  font-weight: 700;
  margin-top: 12px;
}

@media (max-width: 991px) {
  .ungc-principles-row {
    grid-template-columns: 1fr;
  }
}


.sdg-support-section .col-12.col-lg-6 {
  display: flex;
}

.sdg-support-card {
  border: 1px solid #c4a45e;
  background: #fdfaf5;
  overflow: hidden;
  /* width: 87%; */
  width: 95%;
  margin: 0 auto;
  margin-top: 30px;
}

.sdg-support-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 0;
}

.sdg-support-table thead th {
  background: #f9faf6;
  color: #1a1a1a;
  font-weight: 700;
  padding: 10px 12px;
  border-bottom: 1px solid #c4a45e;
  text-align: left;
}

.sdg-support-table tbody td {
    vertical-align: top;
    padding: 12px;
    border-bottom: 1px solid rgb(217 193 148);
}

.sdg-support-table tbody tr:last-child td {
  border-bottom: none;
}

.sdg-support-table .sdg-col {
  width: 92px;
  text-align: center;
}

.sdg-support-table .ref-col {
  width: 92px;
  text-align: center;
  background-color: #f6efe4;
}

.sdg-support-table .sdg-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.sdg-support-table .ref-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    opacity: 0.95;
    margin-bottom: 9px;
}

.sdg-activity-list {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.sdg-activity-list li {
  margin-bottom: 6px;
}

.sdg-activity-list li:last-child {
  margin-bottom: 0;
}

.sdg-support-table tbody tr:hover {
  background-color: transparent;
}

@media (max-width: 991px) {
  .pledge-section {
    flex-direction: column;
  }

  .pledge-section .pledge-image {
    order: -1;
  }
}

/* Governance table */
.ft1-governance col.ft1-col-1 {
  background-color: #f8f8f3;
}

.ft1-governance col.ft1-col-2{
  text-align: left;
}

.ft1-governance tbody td:first-child,
.ft1-governance thead td:first-child {
  background-color: #f8f8f3;
}

.ft1-governance td+td {
  text-align: left !important;
}

.ft1-governance thead tr td+td {
  text-align: left !important;
}

/* Working Groups table (scoped to this page only) */
.ft1-working-groups col.ft1-col-1 {
  background-color: #f8f8f3;
}

.ft1-working-groups col.ft1-col-2{
  text-align: left;
}

.ft1-working-groups tbody td:first-child,
.ft1-working-groups thead td:first-child {
  background-color: #f8f8f3;
}

.ft1-working-groups td+td {
  text-align: left !important;
}

.ft1-working-groups thead tr td+td {
  text-align: left !important;
}

/* Strategy tables overrides */
.ft1-strategy-1 td+td,
.ft1-strategy-2 td+td {
  text-align: left !important;
}

.ft1-strategy-1 tbody td,
.ft1-strategy-2 tbody td {
  vertical-align: top !important;
}


/* our_sustainability_strategy css end */
/* mineth css end */

/* brown color box start */

.brown-box {
  
  background: #f7f7f5;
  border: 1px solid #c1a780;
  border-radius: 3px;
  margin-top: 20px
 
}

.brown-box-head {
  border-bottom: 1px solid #ad8421;
	background-color: #E7E8D9;
	 padding: 5px;
}

.brown-box-content {
  margin-top: 8px;
padding: 5px;
	background: #F2ECE1;
}

/* brown color box v start */

.brown-box2 {
  
  background: #f7f7f5;
  border: 1px solid #c1a780;
  border-radius: 3px;
  margin-top: 20px
 
}

.brown-box-head2 {
  border-right: 1px solid #ad8421;
	background-color: #E8DFCE;
	 padding: 5px;
	text-align:center;
	
	
	color: #AB7F19;
}

.brown-box-content2 {
 padding: 5px;
text-align:center;
	background: #EDECEC;
}

/* acc-policy css end */

/* issue fix start */
.ft1-strategy-wrapper table.ft1 tr td {
  vertical-align: top !important;
}

.ar-gr-title a {
  color: #ab7f19;
  font-weight: bold;
  font-size: 1.05rem;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.ar-gr-title a:hover {
  color: var(--primary-red);
}


