:root {
  --main-color: #003eff;
  --white: #ffffff;
  --light-white: #f7f7f7;
  --black: #000000;
  --text: #333333;
  --light-black: #808080;
  --purple: #8e48ff;
  --light-purple: #c7a3ff;
  --tab-bg: #e6e6e6;
  --tab-inactive: #b3b3b3;
  --link-color: #003eff;
  --light-gray: #cccccc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

ul {
  list-style: none;
}

/* Navbar  */
.my-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 87px 122px 0 122px;
  z-index: 999;
  transition: 0.5s all ease-in-out;
} 

.my-navbar .logo {
  max-width: 300px;
  width: 100%;
  padding-right: 15px;
}

.my-navbar .logo a {
  text-decoration: none;
  color: var(--white);
}

.my-navbar .logo a img {
  max-height: 60px;   /* adjust as needed */
  width: auto;
  height: auto;
  object-fit: contain;
}

.my-navbar .navigation {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
}

.my-navbar .navigation .nav-item {
  position: relative;
  padding: 5px 0;
}

.my-navbar.sticky .navigation .nav-item:last-child a {
  display: flex;
  align-items: center;
}

.my-navbar .navigation .nav-item:not(:last-child) {
  margin-right: 30px;
}

.my-navbar .navigation .nav-item a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  height: 2px;
  width: 0;
  background-color: var(--purple);
  transition: 0.5s all ease-in-out;
}

.my-navbar .navigation .nav-item a:hover::before,
.my-navbar .navigation .nav-item.active a::before {
  width: 100%;
}

.my-navbar .navigation .nav-item a {
  text-decoration: none;
  color: var(--white);
  font-size: 21px;
  font-weight: bold;
}

.my-navbar .navigation .nav-item.active > a,
.my-navbar.varient-black .navigation .nav-item.active > a {
  color: var(--main-color);
}

.my-navbar .navigation .nav-item a img {
  height: 12px;
  width: 12px;
  margin-left: 10px;
  object-fit: contain;
}

.my-navbar.varient-black .navigation .nav-item a {
  color: var(--black);
  position: relative;
}

.hamburger {
  position: absolute;
  top: 15px;
  right: 20px;
  height: auto;
  width: 36px;
  display: none;
  cursor: pointer;
}

.hamburger .bars {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--black);
  margin: 7px 0;
  transition: 0.35s all linear;
}

.my-navbar.sticky .hamburger .bars {
  background: var(--black);
}

.hamburger.active .bars:nth-child(1) {
  transform: translate(-5px, 7px) rotate(45deg);
}

.hamburger.active .bars:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bars:nth-child(3) {
  transform: translate(-5px, -10px) rotate(-45deg);
}

.my-navbar.sticky {
  height: 100px;
  background: var(--white);
  position: fixed;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

/* Banner  */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/banner.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-info {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-section {
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-section.contact {
  background-image: url("images/contact.png");
}

.hero-section.investors {
  background-image: url("images/investors-banner.png");
}

.hero-section.sustainability {
  background-image: url("images/sus-landing-kv.jpg");
}

.hero-section.our-framework {
  background-image: url("images/sus-framework-kv.jpg");
}

.hero-section.our-approach {
  background-image: url("images/sus-approach-kv.jpg");
}

.hero-section.our-economic-contribution {
  background-image: url("images/our-economic-contribution-banner.jpg");
}

.hero-section.esg-performance {
  background-image: url("images/sus-esg-performance-kv.jpg");
}

.hero-section.sustainability-reports {
  background-image: url("images/sus-reports-kv.jpg");
}

.hero-section .banner .banner-info h2 {
  font-size: 55px;
  color: var(--main-color);
  font-weight: bold;
  margin-bottom: 0;
  font-weight: bold;
}

.hero-section .banner .banner-info h2.light-varient {
  color: var(--white);
}

.title {
  position: relative;
  font-size: 34px;
  color: var(--main-color);
  padding-top: 25px;
  font-weight: bold;
}

.title.white {
  color: var(--white);
}

.title::before {
  content: "";
  position: absolute;
  top: 0;
  height: 10px;
  width: 83px;
  background: var(--main-color);
}

.title.white::before {
  background: var(--white);
}

.section-inner,
.medias .media-section,
.footer-container,
.copyright-statements {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

.footer .copyright-statements p,
.footer .footer-container ul {
  padding: 0;
  margin: 0;
}

.container-2 {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
}

/* About */
.about .section-inner .title {
  margin-bottom: 20px;
}

.about .section-inner p {
  color: var(--text);
}

.about .section-inner .inner {
  display: flex;
  flex-wrap: wrap;
  margin-top: 75px;
}

.about .section-inner .inner .column .map img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* Investors */
.investors p {
  color: var(--font);
  font-size: 18px;
  line-height: 1.4;
  margin-top: 20px;
  margin-bottom: 0;
}

.investors .tab-container {
  margin-top: 60px;
}

.investors .tab-container ul.tabs {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  border-bottom: 1px solid var(--tab-bg);
}

.investors .tab-container ul li {
  height: 60px;
  max-width: 33.33%;
  width: 100%;
  background: var(--tab-bg);
  color: var(--tab-inactive);
  line-height: 60px;
  text-align: center;
  transition: 0.2s;
  cursor: pointer;
  border-right: 1px solid #fff;
}

.investors .tab-container ul li.active {
  color: var(--white);
  background: var(--main-color);
}

.investors .tab-container .content .tab-body {
  display: none;
}

.investors .tab-container .content .tab-body.active {
  display: block;
}

.investors .tab-body .cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.investors .tab-body .cards-container .cards {
  flex: 0 1 25%;
  padding: 10px 10px 70px 10px;
}

.investors .tab-container .content .tab-body.two .cards {
  flex: 0 1 20%;
}

.investors .tab-body .cards-container .cards .card-inner {
  position: relative;
  padding-bottom: 40px;
}

.investors .tab-body .cards-container .cards .card-inner .more-info {
  display: none;
}

.investors .tab-body .cards-container .cards .card-inner .profile-pic {
  height: 305px;
  max-width: 305px;
  width: 100%;
}

.investors .tab-body .cards-container .cards .card-inner .profile-pic img {
  height: 100%;
  width: 100%;
}

.investors .tab-body .cards-container .cards .card-inner h4 {
  color: var(--black);
  margin: 15px 0;
  font-weight: bold;
  font-size: 24px;
}

.investors .tab-body .cards-container .cards .card-inner p {
  color: var(--text);
  margin-bottom: 15px;
}

.investors .tab-body .cards-container .cards .card-inner .learn-more {
  position: absolute;
  bottom: 0;
  color: var(--black);
  text-decoration: none;
  font-size: 16px;
  padding-bottom: 5px;
}

.investors .tab-body .cards-container .cards .card-inner .learn-more::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: var(--purple);
}

.investors .tab-container .content .tab-body.two {
  padding-top: 0;
}

.investors
  .tab-container
  .content
  .tab-body.two
  .cards-container
  .cards
  .card-inner {
  min-height: unset;
}

.investors
  .tab-container
  .content
  .tab-body.two
  .cards-container
  .cards
  .learn-more {
  display: inline-block;
  text-decoration: none;
  margin-top: 10px;
  color: var(--main-color);
  border-bottom: 3px solid var(--purple);
}

.investors
  .tab-body.two
  .cards-container
  .cards
  .card-inner
  .learn-more::before {
  display: none;
}

/* Capabilities */
.capabilities {
  background: #f2f2f2;
}

.section-inner {
  padding: 70px 0;
  max-width: 1440px;
  width: 78%;
}

.capabilities .section-inner {
  display: flex;
  flex-wrap: wrap;
}

.capabilities .section-inner .cards {
  flex: 0 1 25%;
}

.capabilities .section-inner .cards .cards-inner {
  max-width: 290px;
  width: 100%;
  padding-right: 25px;
}

.capabilities .section-inner .cards .cards-inner .icon {
  height: 70px;
  max-width: 70px;
  width: 100%;
  margin-bottom: 10px;
}

.capabilities .section-inner .cards .cards-inner .icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.capabilities .section-inner .cards .cards-inner h2 {
  font-size: 32px;
  color: var(--main-color);
  font-weight: bold;
  max-width: 200px;
}

.capabilities .section-inner .cards .cards-inner p {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 0;
}

/* Solutions */
.close {
  font-size: 1.5rem;
}

.col-12 img {
  opacity: 0.7;
  cursor: pointer;
  width: 100%;
}

.col-12 img:hover {
  opacity: 1;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.modal-dialog {
  max-width: unset;
  margin: 0 auto;
}

.eng-solution {
  background-color: var(--main-color);
}

.row.solutions-row {
  margin-right: -22px;
  margin-left: -22px;
  justify-content: flex-start;
}

.thumb-box {
  flex: 0 1 20%;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  color: var(--white);
  padding: 0 10px;
  cursor: pointer;
}

.thumb-box .contents .thumbnail {
  overflow: hidden;
}

.w-line {
  border-top: 8px solid var(--white);
  width: 80px;
}

.eng-heading {
  margin-top: 15px;
  margin-bottom: 50px;
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
}

.eng-heading .title {
  font-size: 34px;
  font-weight: 600;
  color: var(--white);
  flex: 0 1 50%;
  padding-right: 65px;
}

.eng-heading .title::before {
  background: var(--white);
}

.eng-heading p {
  font-size: 18px;
  flex: 0 1 50%;
  margin-bottom: 0;
  margin-top: 20px;
}

.investors .eng-heading p {
  color: var(--black);
}

.investors .eng-heading .title {
  color: var(--main-color);
}

.investors .eng-heading .title::before {
  background: var(--main-color);
}

.solutions-row .titles {
  font-size: 20px;
  display: block;
  line-height: 1.3;
  font-weight: normal;
  color: var(--white);
  min-height: 65px;
  margin-bottom: 15px;
}

.solutions-row .read-more {
  color: var(--white);
  display: inline-block;
  text-decoration: none;
  padding: 7px 0;
  border-bottom: 4px solid var(--light-purple);
  cursor: pointer;
}

.oil_gas {
  position: relative;
}

.oil_gas h2 {
  color: var(--main-color);
  padding: 20px 0;
}

.oil_gas ul {
  padding: 0;
  list-style: square;
}

.oil_gas ul li:not(:last-child) {
  margin-bottom: 10px;
}

.oil_gas p {
  padding-bottom: 20px;
}

.oil_gas .line {
  border: 6px solid blue;
  position: absolute;
  width: 88px;
  top: -20px;
}

.arrow_txt {
  width: 40px;
  height: 40px;
}

.arrow_txt img {
  width: 100%;
}

.line2 {
  position: absolute;
  border: 5px solid blue;
  width: 58px;
  left: 22px;
  top: 12px;
}

.oil_img img {
  width: 100%;
}

.slide2 img {
  width: 100%;
}

.box {
  display: flex;
}

.arrow_section {
  display: flex;
  position: relative;
}

.arrow_txt2 h3 {
  font-size: 20px;
  font-weight: 600;
}

.slider-txt {
  padding-left: 16px;
  font-size: 15px;
  padding-top: 30px;
}

.close_btn {
  width: 30px;
  height: 30px;
}

.close_btn img {
  width: 100%;
}

.oil_img p {
  padding-top: 15px;
}

.solutions-row span.title {
  font-size: 22px;
}

.eng-solution .container {
  padding: 0;
}

.solutions-modal .row {
  padding: 50px 0;
}

.solutions-modal .modal-content {
  border: none;
  padding-bottom: 50px;
}

.modal-dialog {
  pointer-events: unset !important;
}

.solutions-modal .img-groups {
  display: flex;
  flex-wrap: wrap;
}

.solutions-modal .img-groups .img {
  flex: 0 1 50%;
  padding: 10px;
}

.solutions-modal .img-groups p {
  margin-bottom: 0;
  padding-top: 7px;
  font-size: 12px;
}

.solutions-modal .carousel-control-next,
.solutions-modal .carousel-control-prev {
  width: 50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.solutions-modal .carousel-control-prev,
.solutions-modal .carousel-control-next {
  top: auto;
  bottom: 0;
}

.solutions-modal .carousel-control-prev {
  left: 55px;
}

.solutions-modal .carousel-control-prev-icon,
.solutions-modal .carousel-control-next-icon {
  background-image: none;
}

.solutions-modal .carousel-control-prev::before,
.solutions-modal .carousel-control-next::before {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  color: var(--black);
}

.solutions-modal .carousel-control-next {
  right: 55px;
}

.solutions-modal .carousel-control {
  position: relative;
  padding-bottom: 8px;
  color: #000;
}

.solutions-modal .carousel-control::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: var(--light-purple);
}

.solutions-modal .close-modal {
  position: absolute;
  z-index: 1000;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 40px;
  padding-bottom: 20px !important;
  opacity: 1;
}

.solutions-modal .close-modal span {
  display: none;
}

.solutions-modal .close-modal::before {
  content: "Close";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: normal;
}

.solutions-modal .close-modal::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 100%;
  background: var(--light-purple);
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  filter: drop-shadow(2px 4px 4px var(--black));
}

button.close:focus {
  outline: none;
}

.swiper {
  width: 100%;
  height: 300px;
  background-color: var(--main-color);
}

.mySwiper {
  padding-top: 50px !important;
}

.swiper-button-next,
.swiper-button-prev {
  top: 15px !important;
  color: var(--white) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 36px !important;
}

.swiper-button-prev {
  right: 40px !important;
  left: auto !important;
}

.swiper-button-next {
  right: 0 !important;
}

.swiper-slide {
  font-size: 18px;
  background: var(--white);
  display: flex;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.background-image__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Media */
.medias .report-section {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}

.medias .report-section .column {
  flex: 0 1 50%;
}

.medias .stock-and-media .column-left {
  flex: 0 1 70%;
}

.medias .stock-and-media .column-left .wrapper {
  border-right: 1px solid var(--light-gray);
}

.medias .stock-and-media .column-right {
  flex: 0 1 30%;
}

.medias .inner .thumbnail img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.medias .report-section .column-right {
  background: var(--main-color);
  color: var(--white);
  padding: 125px 130px;
}

.medias .report-section .column-right .title {
  color: var(--white);
  margin-bottom: 15px;
}

.medias .report-section .column-right .title::before {
  background-color: var(--white);
}

.medias .report-section .column-right .report p {
  font-size: 22px;
  margin-bottom: 60px;
}

.medias .report-section .column-right .report p a {
  color: var(--white);
  text-decoration: none;
}

.medias .report-section .column-right .annual-report {
  margin-bottom: 55px;
}

.medias .report-section .column-right .report ul {
  display: flex;
  padding-left: 0;
  margin: 20px 0;
}

.medias .report-section .column-right .report ul li {
  font-size: 22px;
  border-bottom: 3px solid var(--white);
}

.medias .report-section .column-right .report ul li a {
  text-decoration: none;
  color: var(--white);
}

.medias .report-section .column-right .report ul li:not(:last-child) {
  margin-right: 10px;
}

.medias .media-section .stock-and-media {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--light-gray);
}

.medias .media-section .stock-and-media .title {
  color: var(--main-color);
  margin-bottom: 25px;
}

.medias .media-section .stock-and-media .column ul {
  padding: 0;
  padding-right: 25px;
}

.medias .media-section .stock-and-media .column .wrapper ul li {
  display: flex;
}

.medias
  .media-section
  .stock-and-media
  .column
  .wrapper
  ul
  li:not(:last-child) {
  margin-bottom: 25px;
}

.medias .media-section .stock-and-media .column .wrapper ul li strong {
  font-size: 22px;
  color: var(--black);
  display: block;
  min-width: 200px;
  font-weight: bold;
}

.medias .media-section .stock-and-media .column .wrapper ul li a {
  text-decoration: none;
  color: var(--link-color);
  font-weight: bold;
  font-size: 22px;
  padding-right: 22px;
}

/* Latest Share Price */
.latest-share-price {
  padding-left: 25px;
}

.latest-share-price .card {
  border: 0;
}

.latest-share-price .card .card-head {
  background: var(--main-color);
  color: var(--white);
  padding: 20px;
}

.latest-share-price .card p,
.latest-share-price .card h1 {
  font-weight: bold;
  margin-bottom: 0;
}

.latest-share-price .card .card-contents {
  padding: 25px 0;
}

.latest-share-price .card .card-contents a {
  text-decoration: none;
}

.latest-share-price .card .card-contents h1 {
  position: relative;
  margin-bottom: 10px;
  padding-top: 18px;
}

.latest-share-price .card .card-contents h1::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 25px;
  right: 0;
  top: 52.5%;
  background: url("images/external-link.png") no-repeat;
  background-size: 15px;
}

/* Media Releses */
.media-releases .section-inner {
  padding-top: 0;
}

.media-releases .title {
  color: var(--main-color);
  margin-bottom: 25px;
}

#media_wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -20px;
}

#media_wrapper ul  {
  flex: 0 1 20%;
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  margin-bottom: 30px;
}

.media-releases ul li .date {
    color: var(--black);
    margin-bottom: 0;
    font-weight: bold;
}

.media-releases ul li a {
  position: relative;
  color: var(--black);
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 3px solid var(--purple);
}

.media-releases h3{
    font-size: 18px;
    line-height: normal;
    font-weight: bold;
    color: var(--main-color);
    margin: 10px 0;
}

/* Footer */
.footer {
  background: var(--main-color);
  padding: 0 120px;
}

.footer .footer-container {
  display: flex;
  padding-top: 95px;
  padding-bottom: 20px;
}

.footer .footer-container .column {
  position: relative;
  flex: 1;
}

.footer .footer-container .column.brand {
  flex: 3;
}

.footer .footer-container .column ul {
  margin-bottom: 0;
}

.footer .footer-container .column .branding {
  max-width: 266px;
  width: 100%;
  padding-right: 15px;
}

.footer .footer-container .column .branding img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.footer .footer-container .column .title {
  font-size: 30px;
  margin-bottom: 15px;
  color: var(--white);
}

.footer .footer-container .column .title::before {
  background: var(--white);
}

.footer .footer-container .column .title a {
  color: var(--white);
  text-decoration: none;
}

.footer .footer-container .column .contact-info li span {
  color: var(--light-white);
  opacity: 0.75;
  padding-right: 10px;
}

.footer .footer-container .column .contact-info li a {
  position: relative;
  text-decoration: none;
  color: var(--white);
  font-size: 21px;
}

.footer .footer-container .social-handles {
  position: absolute;
  bottom: 0;
  right: 0;
}

.footer .footer-container .social-handles ul {
  display: flex;
  justify-content: flex-end;
}

.footer .footer-container .social-handles ul li:not(:last-child) {
  margin-right: 14px;
}

.footer .footer-container .social-handles .social a {
  display: inline-block;
  height: 25px;
  width: 25px;
}

.footer .footer-container .social-handles .social a img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.footer .copyright-statements {
  border-top: 1px solid var(--white);
  display: flex;
  padding: 15px 0 25px 0;
  color: var(--white);
}

.footer .copyright-statements .links {
  display: flex;
  padding: 0;
  padding-left: 50px;
  margin-bottom: 0;
}

.footer .copyright-statements .links span {
  padding: 0 10px;
}

.footer .copyright-statements .links li a {
  text-decoration: none;
  color: var(--white);
}

/* Bottom to Top Scroll Button */
.bottom-to-top {
  position: fixed;
  bottom: 200px;
  right: 45px;
  height: 40px;
  width: 40px;
  transform: translateY(1000px);
  transition: 0.3s all linear;
}

.bottom-to-top img {
  display: none;
}

.bottom-to-top::before {
  content: "";
  position: absolute;
  height: 25px;
  width: 25px;
  top: 0;
  background: transparent;
  transform: rotate(45deg);
  border-top: 5px solid var(--light-purple);
  border-left: 5px solid var(--light-purple);
}

.bottom-to-top::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 33%;
  transform: translateX(-50%);
  height: 40px;
  width: 5px;
  background: var(--light-purple);
}

.bottom-to-top.show {
  transform: translateY(0px);
}

/* Modal CSS */
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  padding: 0;
  z-index: 1000;
}

.modal-container .modal-body {
  padding: 0;
}

.modal-container #modal {
  position: relative;
  background: var(--white);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 50px;
  max-height: 100vh;
  overflow-y: auto;
}

.modal-container #modal .close-modal {
  position: absolute;
  width: auto;
  right: 20px;
  top: 20px;
  border-bottom: 4px solid var(--purple);
  cursor: pointer;
}

.modal-container #modal .learn-more {
  display: none;
}

.modal-container #modal .my-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.modal-container #modal .profile-pic {
  max-width: 240px;
  height: 240px;
}

.modal-container #modal .profile-pic img {
  width: 100%;
}

.modal-container #modal .modal-contents {
  width: calc(100% - 250px);
  padding-left: 50px;
}

.modal-container #modal .modal-contents h4 {
  position: relative;
  color: var(--main-color);
  font-size: 30px;
  padding-top: 40px;
  margin-bottom: 40px;
}

.modal-container #modal .modal-contents .more-info > p {
  padding-left: 150px;
}

.modal-container #modal .modal-contents h4::before,
.modal-container #modal .modal-contents > p::before,
.modal-container #modal .intro::before {
  content: "";
  position: absolute;
  top: 0;
  height: 10px;
  width: 80px;
  background: var(--main-color);
}

.modal-container #modal .modal-contents .intro,
.modal-container #modal .modal-contents strong,
.modal-container #modal .modal-contents > p {
  position: relative;
  padding-left: 150px;
}

.modal-container #modal .modal-contents > p {
  font-size: 18px;
}

.modal-container #modal .modal-contents .intro p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.25;
}

.modal-container #modal .modal-contents > p::before {
  height: 6px;
  top: 4px;
  left: 0;
}

.modal-container #modal .more-info strong {
  font-size: 18px;
  font-weight: normal;
  display: block;
  margin: 20px 0;
}

.modal-container #modal .intro {
  position: relative;
}

.modal-container #modal .intro::before {
  top: 4px !important;
  left: 0;
  height: 6px;
}

/* Contact Us */
.contact-us .section-inner {
  padding-top: 20px;
}

section.contact-us .tab {
  width: 100%;
  color: var(--main-color);
  padding-top: 50px;
  overflow: hidden;
}

section.contact-us .tab-label {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  background: #fff;
  font-weight: bold;
  cursor: pointer;
  font-size: 28px;
}

section.contact-us .tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  color: #854cf6;
  text-align: center;
  font-weight: 500;
  transition: all 0.35s;
  transform: rotate(90deg);
}

section.contact-us .content-box {
  max-width: 650px;
  width: 100%;
  margin-left: auto;
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  transition: all 0.35s;
}

section.contact-us .tab-close {
  display: flex;
  justify-content: flex-end;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}

section.contact-us .tab-close:hover {
  background: #1a252f;
}

section.contact-us input:checked + .tab-label {
  background: #ffffff;
}

section.contact-us input:checked + .tab-label::after {
  transform: translateX(-20px) rotate(-90deg);
}

section.contact-us input:checked ~ .content-box {
  max-height: max-content;
  padding: 1em;
}

section.contact-us input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

section.contact-us .address-box b {
  color: var(--main-color);
  font-size: 24px;
  display: inline-block;
  margin-bottom: 10px;
}

section.contact-us .address-box .address {
  font-size: 16px;
  color: black;
  margin-bottom: 10px;
}

section.contact-us .address-box .contact-no a {
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  color: black;
  margin-right: 11px;
}

section.contact-us .address-box .contact-no a::first-letter {
  font-size: 18px;
  color: #939598;
}

section.contact-us .tab {
  border-bottom: 1px solid lightgrey;
}

section.contact-us .address-box {
  padding-bottom: 25px;
}

.sgx-price-api-data {
  display: none;
}

/* Investors Page */
.investors .banner-info,
.contact .banner-info,
.banner-info.bottom {
  position: absolute;
  top: auto;
  bottom: 50px;
  left: 50px;
  right: auto;
  transform: unset;
}

.tabs-container ul.tabs {
  display: flex;
  flex-wrap: wrap;
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.tabs-container ul.tabs li {
  color: var(--black);
  padding: 10px 0;
  cursor: pointer;
}

.tabs-container ul.tabs li:not(:last-child) {
  padding-right: 40px;
}

.tabs-container .title {
  color: var(--light-gray);
}

.tabs-container .title::before {
  background: var(--light-gray);
}

.tabs-container .tab-link.current .title {
  color: var(--main-color);
}

.tabs-container .tab-link.current .title::before {
  background: var(--main-color);
}

.tabs-container .tab-content {
  display: none;
}

.tabs-container .tab-content.current {
  display: inherit;
}

.tabs-container nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--light-gray);
  border-top: 1px solid var(--light-gray);
  display: none;
}

.tabs-container nav .sort-by-year {
  display: flex;
  flex: 0 1 50%;
}

.tabs-container nav .sort-by-year select {
  height: 30px;
  max-width: 90px;
  width: 100%;
  margin-left: 28px;
  outline: none;
}

.tabs-container nav .download-report img {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.tabs-container nav .sort-by-year span,
.tabs-container nav p {
  font-size: 18px;
  margin-bottom: 0;
}

.tabs-container .reports-container ul {
  padding: 0;
}

.tabs-container .reports-container ul li a:not(a.purple) {
  text-decoration: none;
}

.tabs-container .reports-container ul li a {
  color: var(--light-black);
}

.tabs-container .reports-container ul li a.purple {
  color: var(--main-color);
  text-decoration: underline;
}

.tabs-container .reports-container .reports li.report {
  justify-content: space-between;
  display: flex;
  padding: 20px 0;
}

.tabs-container .reports-container .reports li.report .year,
.tabs-container .reports-container .reports li.report .info {
  flex: 0 1 50%;
}

.tabs-container
  .reports-container
  .reports
  li.report
  .info
  ul
  li:not(:last-child) {
  margin-bottom: 20px;
}

.tabs-container .reports-container .reports li.report .info strong {
  font-weight: bold;
  font-size: 24px;
}

.tabs-container .reports-container .reports li.report .year {
  font-weight: bold;
  font-size: 34px;
  color: var(--main-color);
}

.tabs-container .reports-container .reports li.report {
  border-bottom: 1px solid var(--light-gray);
}

.modal .modal-content .carousel-inner {
  width: 80%;
  margin: 0 auto;
  max-width: 1440px;
}

.modal {
  padding-right: 0 !important;
}

.modal-dialog {
  margin: 0;
}

.modal-content {
  border: 0;
  border-radius: 0;
}

@media only screen and (max-width: 1580px) {
  .banner-info {
    top: 35%;
  }

  .capabilities .section-inner .cards .cards-inner {
    max-width: 220px;
  }

  .my-navbar {
    padding: 20px 50px;
  }

  .my-navbar .logo,
  .footer .footer-container .column .branding {
    max-width: 200px;
    min-width: 200px;
  }

  .my-navbar .navigation .nav-item:not(:last-child) {
    margin-right: 35px;
  }

  .hero-section .banner .banner-info h2 {
    font-size: 42px;
  }

  .title {
    padding-top: 20px;
  }

  .title::before {
    height: 8px;
  }

  .my-navbar .navigation .nav-item a,
  .about .section-inner p,
  .investors .tab-body .cards-container .cards .card-inner p {
    font-size: 15px;
  }

  .capabilities .section-inner .cards .cards-inner h2,
  .title {
    font-size: 24px;
  }

  .medias .media-section .stock-and-media .column .wrapper ul li a,
  .footer .footer-container .column .contact-info li a {
    font-size: 16px;
  }

  .investors .tab-container .content .tab-body {
    padding-left: 0;
    padding-right: 0;
    margin: 0 -10px;
  }

  .investors .tab-body .cards-container .cards .card-inner .profile-pic {
    height: auto;
    max-width: 240px;
  }

  .medias .report-section .column-right {
    padding: 40px;
  }

  .medias
    .media-section
    .stock-and-media
    .column
    .wrapper
    ul
    li:not(:last-child) {
    margin-bottom: 10px;
  }

  .medias .media-section .stock-and-media .column .wrapper ul li strong,
  .media-releases ul li h3 {
    font-size: 16px;
  }

  .medias .report-section .column-right .report p,
  .medias .report-section .column-right .report ul li,
  .investors p,
  .capabilities .section-inner .cards .cards-inner p {
    font-size: 16px;
  }

  .solutions-row .titles {
    font-size: 18px;
    min-height: 50px;
  }

  .medias .report-section .column-right .report p {
    margin-bottom: 20px;
  }

  .investors .tab-body .cards-container .cards .card-inner h4 {
    font-size: 20px;
  }

  .medias .media-section .stock-and-media {
    margin: 0 auto;
  }

  .solutions-row span.titles {
    font-size: 22px !important;
    font-weight: 400 !important;
  }

  .solutions-row span.titles {
    min-height: 100px;
  }

  .modal-container #modal {
    padding: 70px 25px 25px 25px;
  }

  .line2 {
    left: 0;
  }

  .oil_gas p {
    margin-bottom: 0;
  }

  .slider-txt {
    padding-top: 0;
  }

  .latest-share-price .card .card-contents h1 {
    font-size: 24px;
  }

  .tabs-container .reports-container .reports li.report .year {
    font-size: 28px;
  }

  section.contact-us .tab-label {
    font-size: 22px;
  }

  .footer {
    padding: 0 40px;
  }
}

@media (max-width: 1200px) {
  section.contact-us br {
    display: none;
  }

  section.contact-us .address-box b {
    font-size: 18px;
  }

  section.contact-us .tab {
    padding-top: 25px;
  }
}

@media only screen and (max-width: 1024px) {
  .section-inner {
    width: 92%;
  }

  .investors .tab-container {
    margin-top: 25px;
  }

  .capabilities .section-inner .cards {
    flex: 0 1 50%;
    margin: 0 -5px;
  }

  .capabilities .section-inner .cards .cards-inner {
    max-width: unset;
  }

  .investors .tab-body .cards-container .cards {
    padding-bottom: 40px;
  }

  .medias .report-section .column-right {
    padding: 40px;
  }

  .medias .media-section .stock-and-media .column-left {
    padding-right: 15px;
  }

  .medias .media-section .stock-and-media .column-right {
    padding-left: 0;
  }

  .container-2 {
    max-width: unset;
  }

  .thumb-box {
    flex: 0 1 33.33% !important;
  }

  .eng-heading .title,
  .eng-heading p {
    flex: 0 1 100%;
  }

  .eng-heading .title {
    padding-right: 0;
  }

  .tabs-container .reports-container .reports li.report .year {
    flex: 0 1 25%;
  }

  .tabs-container .reports-container .reports li.report .info {
    flex: 0 1 75%;
  }

  .footer {
    padding: 0 50px;
  }

  .footer .copyright-statements {
    border-top-color: transparent;
  }

  .footer .footer-container {
    padding: 30px 0;
  }

  .footer .footer-container .column .branding {
    padding-right: 45px;
  }

  .footer .footer-container .social-handles .social a {
    height: 40px;
    width: 40px;
  }

  .bottom-to-top {
    right: 25px;
  }
}

@media only screen and (max-width: 991px) {
  .hamburger {
    display: block;
    right: 50px;
  }

  .my-navbar .navigation {
    position: fixed;
    flex-direction: column;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 20px 20px 20px 50px;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: var(--main-color);
    transform: translateX(-991px);
    transition: 0.5s all ease-in-out;
    overflow-y: auto;
    display: block;
  }

  .my-navbar.sticky .hamburger {
    top: 32px;
  }

  .my-navbar .navigation.active {
    transform: unset;
  }

  .my-navbar .navigation.active + .hamburger .bars {
    background: var(--white);
  }

  .my-navbar .navigation .nav-item::before {
    display: none;
  }

  .my-navbar .navigation .nav-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 14px;
  }

  .my-navbar.varient-black .navigation .nav-item a {
    color: var(--white);
  }

  .my-navbar .navigation .nav-item.active a,
  .my-navbar.varient-black .navigation .nav-item.active a {
    color: var(--white);
  }

  .my-navbar .navigation .nav-item::before {
    display: inline-block;
    max-width: 40px;
    background: var(--white);
  }

  .hero-section {
    background-size: cover;
  }

  .hero-section.contact {
    background-size: cover;
    background-position: top right;
  }

  .investors .tab-body .cards-container .cards,
  .media-releases ul li {
    flex: 0 1 33.33%;
  }

  .media-releases ul {
    margin: 0 -15px;
  }

  .media-releases ul li {
    padding: 15px;
  }

  .medias .media-section .stock-and-media .title,
  .media-releases .title {
    margin-bottom: 20px;
  }

  .medias .report-section .column-right .report p {
    margin-bottom: 0;
  }

  .modal-container #modal .container {
    flex-direction: column;
  }

  .modal-container #modal .container .profile-pic {
    height: auto;
    width: 100%;
  }

  .modal-container #modal .modal-contents {
    margin-top: 20px;
    padding-left: 0;
    width: 100%;
  }

  .oil_gas h2 {
    font-size: 26px;
    padding: 10px 0;
    margin-bottom: 0;
  }

  .arrow_txt2 h3 {
    position: relative;
    padding-top: 25px;
    padding-left: 0;
  }

  .arrow_txt {
    position: absolute;
    top: 0;
  }

  .line2 {
    top: 0;
  }

  .medias .media-section .stock-and-media .column-left {
    flex: 0 1 100%;
    padding-right: 0;
  }

  .medias .media-section .stock-and-media .column-left .wrapper {
    border-right: 0;
  }

  .medias .media-section .stock-and-media .column-right {
    flex: 0 1 100%;
  }

  .medias .media-section .stock-and-media .column ul {
    padding-right: 0;
  }

  .latest-share-price {
    padding-left: 0;
  }

  section.contact-us input:checked ~ .content-box {
    padding: 1rem 0;
  }

  .footer .footer-container {
    flex-wrap: wrap;
  }

  .footer .footer-container .column:first-child {
    display: none;
  }

  .footer .footer-container .column .title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  section.contact-us .content-box {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .hero-section {
    background: url("images/home-mob-banner.png") no-repeat center/cover;
  }

  .hero-section.contact {
    background: url("images/contact-mob-banner.png") no-repeat center/cover;
  }

  .hero-section.investors {
    background: url("images/investors-mob-banner.png") no-repeat center/cover;
  }

  .hero-section.sustainability {
    background: url("images/sus-landing-kv-mob.jpg") no-repeat center/cover;
  }

  .hero-section.our-framework {
    background: url("images/sus-framework-kv-mob.jpg") no-repeat center/cover;
  }

  .hero-section.our-approach {
    background: url("images/sus-approach-kv-mob.jpg") no-repeat center/cover;
  }
  
.hero-section.our-economic-contribution {
    background: url("images/our-economic-contribution-mob.jpg") no-repeat center/cover;
  }


  .hero-section.esg-performance {
    background: url("images/sus-esg-performance-kv-mob.jpg") no-repeat
      center/cover;
  }

  .hero-section.sustainability-reports {
    background: url("images/sus-reports-kv-mob.jpg") no-repeat center/cover;
  }

  .hero-section .banner .banner-info {
    position: absolute;
    top: 115px;
    left: 50px;
    transform: unset;
    max-width: 500px;
  }

  .title {
    font-size: 24px;
  }

  .title::before {
    height: 5px;
  }

  .title::before,
  .w-line {
    width: 38px !important;
  }

  .about .section-inner p {
    font-size: 16px;
  }

  .investors .tab-body .cards-container .cards,
  .investors .tab-container .content .tab-body.two .cards-container .cards {
    flex: 0 1 50%;
    padding-bottom: 0;
  }

  .capabilities .section-inner .cards {
    margin: 0;
  }

  .capabilities .section-inner .cards:not(:last-child) {
    margin-bottom: 25px;
  }

  .investors p {
    font-size: 16px;
  }

  .investors .tab-container ul li {
    height: 45px;
    line-height: 45px;
    padding: 0 10px;
    font-size: 16px;
    min-width: unset;
    max-width: 50%;
  }

  .investors .tab-container ul li:first-child {
    margin-right: 0;
  }

  .investors .tab-body .cards-container .cards:not(:last-child) {
    margin-bottom: 30px;
  }

  .investors .tab-body .cards-container .cards .card-inner {
    min-height: unset;
  }

  .investors .tab-body .cards-container .cards .card-inner .learn-more {
    position: static;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-color: var(--purple);
  }

  .investors .tab-body .cards-container .cards .card-inner .learn-more::before {
    display: none;
  }

  .investors .tab-body .cards-container .cards .card-inner p {
    font-size: 16px;
  }

  .tabs-container .reports-container .reports li.report .info strong,
  .tabs-container .reports-container .reports li.report .year {
    font-size: 18px;
  }

  .tabs-container ul.tabs li {
    width: 100%;
  }

  .tabs-container nav .sort-by-year,
  .tabs-container nav .download-report {
    flex: 0 1 100%;
  }

  .tabs-container nav .sort-by-year {
    margin-bottom: 5px;
  }

  .medias .inner .column {
    flex: 0 1 100%;
  }

  .medias .report-section .media-info {
    padding: 50px;
  }

  .medias .media-section .stock-and-media .thumbnail,
  .medias .media-section .stock-and-media .media-info {
    padding: 0;
    flex: 0 1 100%;
  }

  .medias .media-section .stock-and-media .column-left {
    padding-right: 0;
  }

  .media-releases ul li {
    flex: 0 1 50%;
  }

  .medias .report-section .column-right .report ul {
    margin-bottom: 0;
  }

  .medias .media-section .stock-and-media .column .wrapper ul li strong {
    font-size: 18px;
    min-width: 150px;
  }

  .about .section-inner .inner {
    margin-top: 35px;
  }

  .modal-container #modal {
    padding-left: 20px;
    padding-right: 20px;
  }

  .modal-container #modal .profile-pic {
    min-width: unset;
    height: auto;
  }

  .modal-container #modal .modal-contents h4::before,
  .modal-container #modal .intro::before {
    height: 5px;
  }

  .modal-container #modal .modal-contents h4 {
    font-size: 20px;
    padding-top: 20px;
    margin-bottom: 20px;
  }

  .modal-container #modal .modal-contents .more-info > p {
    padding-left: 0;
  }

  .modal-container #modal .modal-contents h4::before,
  .modal-container #modal .modal-contents > p::before,
  .modal-container #modal .intro::before {
    width: 50px;
  }

  .modal-container #modal .modal-contents .intro,
  .modal-container #modal .modal-contents strong,
  .modal-container #modal .modal-contents > p {
    padding-left: 0;
    padding-top: 20px;
  }

  .oil_gas ul {
    padding-left: 15px;
  }

  .thumb-box {
    flex: 0 1 50% !important;
  }

  .contact-us {
    padding: 50px 25px;
  }

  .footer .footer-container .column.careers {
    flex: 0 1 100%;
  }

  .footer .footer-container .column:not(:last-child) {
    margin-bottom: 20px;
  }

  .footer .footer-container .social-handles ul {
    justify-content: center;
  }

  .suppliers-registration-form .form_row {
    flex-direction: column;
  }
}

@media only screen and (min-width: 767px) {
  .my-navbar.sticky .navigation .nav-item a {
    color: var(--black);
  }

  .my-navbar.sticky .hamburger .bars {
    background: var(--black);
  }
}

@media only screen and (max-width: 520px) {
  .my-navbar .logo {
    max-width: 140px;
    min-width: 140px;
  }

  .my-navbar.sticky {
    height: 60px;
  }

  .section-inner {
    padding: 0;
    width: 100%;
  }

  .my-navbar {
    padding: 20px 25px 0 25px;
  }

  .hamburger {
    right: 25px;
  }

  .my-navbar.sticky .hamburger {
    top: 15px;
  }

  .hero-section .banner .banner-info {
    left: 25px;
  }

  .hero-section .banner .banner-info h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .about,
  .capabilities .section-inner,
  .investors .section-inner,
  .medias .report-section .media-info {
    padding: 25px;
  }

  .medias .media-section .stock-and-media .column .wrapper ul li a,
  .medias .report-section .column-right .report p,
  .investors p,
  .about .section-inner p,
  .medias .report-section .column-right .report ul li,
  .footer .footer-container .column .contact-info li a {
    font-size: 16px;
  }

  .capabilities .section-inner .cards,
  .investors .tab-body .cards-container .cards,
  .investors .tab-container .content .tab-body.two .cards-container .cards,
  .media-releases ul li {
    flex: 0 1 100%;
  }

  .medias .media-section .stock-and-media .column .wrapper ul li {
    flex-wrap: wrap;
  }

  .investors .tab-body .cards-container .cards .card-inner .profile-pic {
    max-width: unset;
  }

  .medias .media-section,
  .media-releases {
    padding: 25px;
  }

  .thumb-box {
    flex: 0 1 100% !important;
    padding: 0 !important;
    margin-bottom: 25px;
  }

  .eng-solution {
    padding: 50px 25px !important;
  }

  .solutions-row .titles {
    font-size: 20px;
    min-height: 0;
    margin-bottom: 5px;
  }

  .footer {
    padding: 0 25px;
  }

  .footer .footer-container .social-handles {
    bottom: 20px;
  }

  .footer .copyright-statements {
    flex-direction: column;
    text-align: center;
    padding-top: 0;
  }

  .footer .copyright-statements .links {
    margin-top: 7px;
    justify-content: center;
    padding-left: 0;
  }

  section.contact-us .tab-label {
    font-size: 16px;
  }

  section.investorsSec {
    padding: 40px 20px;
  }

  .capabilities .section-inner .cards .cards-inner h2 {
    max-width: 100%;
  }

  #indicators .carousel-inner {
    width: 92%;
  }
}

/* SGX  */
.company-announcements .inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 50px;
  display: flex;
  flex-wrap: wrap;
}

.company-announcements .sidebar {
  flex: 1;
  padding-right: 50px;
}

.company-announcements .sidebar .blocks.search-area .options.active {
  height: auto;
  overflow: auto;
}

.company-announcements .sidebar .blocks {
  position: relative;
  padding-bottom: 25px;
  border-bottom: 1px solid #777;
}

.company-announcements .sidebar .blocks ul {
  max-height: 200px;
  overflow: auto;
}

.company-announcements .sidebar .blocks.announcement-period,
.company-announcements .sidebar .blocks.categories {
  padding-top: 25px;
}

.company-announcements .sidebar label {
  display: block;
  font-size: 15px;
  font-weight: bold;
}

.company-announcements .sidebar .search {
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border-bottom: 1px solid #000;
  padding: 0 5px;
}

.company-announcements .sidebar .search input {
  background: transparent;
  outline: none;
  border: none;
  padding: 5px;
  width: calc(100% - 15px);
}

.company-announcements .sidebar .area:not(:last-child) {
  margin-bottom: 20px;
}

.company-announcements .blocks.announcement-period input {
  background: #f7f7f7;
  outline: none;
  border: none;
  width: 100%;
  padding: 5px;
}

.company-announcements .blocks.announcement-period .date-from {
  margin-bottom: 10px;
}

.company-announcements .sidebar .search .close {
  font-weight: 100;
  transform: rotate(45deg);
  cursor: pointer;
}

.company-announcements .sidebar ul {
  padding-left: 0;
}

.company-announcements .options {
  height: 0;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s all ease-in-out;
}

.company-announcements .options li {
  padding: 7px 10px;
  transition: 0.3s all ease-in-out;
}

.company-announcements .options li:hover {
  background-color: dodgerblue;
  transition: 0s;
}

.company-announcements .options li:not(:last-child) {
  border-bottom: 1px solid #f7f7f7;
}

.company-announcements .options li input {
  margin-right: 10px;
}

.company-announcements .sidebar p {
  margin-bottom: 8px;
  font-size: 14px;
  color: #777;
}

.company-announcements .sidebar .action {
  display: flex;
  justify-content: flex-end;
}

.company-announcements .sidebar .clear-all {
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  color: #005197;
  display: inline-block;
}

.company-announcements .sidebar .clear-all img {
  height: 20px;
  width: 20px;
  object-fit: contain;
  margin-right: 4px;
}

.company-announcements .table-container {
  flex: 4;
}

.company-announcements .table-container {
  overflow-x: auto;
}

.company-announcements .table-wrapper {
  overflow-x: auto;
  margin-bottom: 50px;
}

.company-announcements .table-wrapper table {
  min-width: 900px;
}

.company-announcements .table-wrapper table th {
  border-bottom: 2px solid #c1c1c1;
}

.company-announcements .table-wrapper table td {
  border-bottom: 1px solid #c1c1c1;
}

.company-announcements .table-wrapper table tr:nth-child(even) td {
  background: #f7f7f7;
}

.company-announcements .table-wrapper table th,
.company-announcements .table-wrapper table td {
  padding: 10px 15px;
  font-size: 15px;
}

.company-announcements .table-wrapper table tbody td:nth-child(2),
.company-announcements .table-wrapper table tbody td:nth-child(3) {
  text-transform: uppercase;
}

/* SGX Detail */
.sgx-detail .inner {
  position: relative;
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
  margin-top: 80px;
  padding: 35px 50px;
}

.sgx-detail .main-title {
  position: sticky;
  top: 100px;
  max-width: 670px;
  width: 100%;
  color: var(--main-color);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 15px;
  background: var(--white);
  box-shadow: 0 2px 10px #d1d1d1;
  margin-bottom: 0;
  z-index: 1;
}

table.legend {
  width: 100%;
  border: 1px solid var(--light-white);
}

table.legend tr th {
  padding: 7px 15px;
  background-color: var(--light-white);
  font-weight: normal;
}

table.legend tr td {
  padding: 7px 15px;
  border: 1px solid var(--light-white);
}

table.legend tr td .info p {
  margin-bottom: 0;
}

table.legend tr td .info p:nth-child(odd) {
  color: var(--main-color);
  font-size: 14px;
  margin-bottom: 4px;
}

.attachment-icon img {
  width: 20px;
  transform: rotate(90deg);
  opacity: 0.75;
}

.sgx-detail a {
  color: var(--main-color);
  text-decoration: underline;
  font-size: 15px;
}

.my-navbar .navigation .nav-item.switch .submenu {
  right: 0;
  left: auto !important;
  min-width: 170px !important;
}

@media only screen and (max-width: 1024px) {
  .company-announcements .table-container {
    flex: 3;
  }

  .sgx-detail .inner {
    max-width: unset;
  }
}

@media only screen and (max-width: 767px) {
  .company-announcements .sidebar {
    padding-right: 0;
  }

  .company-announcements .sidebar,
  .company-announcements .table-container {
    flex: 100%;
  }
}

@media only screen and (max-width: 520px) {
  .company-announcements .inner {
    padding: 40px 25px;
  }

  .sgx-detail .inner {
    margin-top: 0;
    padding: 35px 25px;
  }

  .sgx-detail .main-title {
    top: 60px;
  }
}

.my-navbar .navigation .submenu a::before {
  display: none;
}

.my-navbar .navigation .submenu {
  padding-left: 10px;
  margin-top: 10px;
}

.my-navbar .navigation .submenu ul {
  margin-left: 10px;
  padding-left: 0px;
}

@media only screen and (min-width: 1025px) {
  .my-navbar .navigation .submenu {
    position: absolute;
    top: auto;
    left: 0;
    padding: 20px;
    background-color: #e5e5e5;
    color: #333333;
    min-width: 280px;
    margin-top: 5px;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: opacity 100ms ease-out,
      transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .my-navbar .navigation .nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transition: opacity 150ms 300ms ease-out,
      transform 600ms 300ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .my-navbar .navigation .nav-item a:hover {
    color: #003eff;
  }
}

.my-navbar .navigation .submenu li {
  margin: 5px 0;
}

.entitySection {
  margin-top: 50px;
}

.content-table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  overflow-x: auto;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}

.content-table table {
  width: 100%;
}

.content-table thead tr {
  background-color: #003eff;
  color: #ffffff;
  text-align: left;
  font-weight: bold;
}

.content-table th,
.content-table td {
  padding: 12px 15px;
}

.content-table td:first-child,
.content-table th:first-child {
  border-right: 1px solid lightgrey;
}

.content-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.content-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type {
  border-bottom: 2px solid #003eff;
}

/* Share Price */
.share-price .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 0;
  border-bottom: 1px solid var(--light-gray);
}

.share-price .info h4 {
  position: relative;
  color: var(--main-color);
  font-weight: 600;
  max-width: 340px;
}

.share-price .info h4::before {
  content: "";
  position: absolute;
  top: -20px;
  height: 0;
  width: 100px;
  border-bottom: 10px solid var(--main-color);
}

.share-price .info h2 {
  color: var(--main-color);
}

.share-price .info h2 span:first-child {
  font-weight: bold;
  color: var(--link-color);
}

.share-price .info h2 span:nth-child(2) {
  font-size: 22px;
  font-weight: 600;
}

.share-price .info h2 span:last-child {
  font-size: 22px;
}

.share-price .info h2 img {
  max-width: 15px;
}

.share-price .inner .info {
  width: 40%;
}

.share-price .inner .graph {
  width: 60%;
}

.share-price .inner .graph img {
  height: 100%;
  width: 100%;
}

.share-price table {
  width: 100%;
}

.share-price table tr td {
  padding: 5px 0;
  color: var(--light-black);
}

.share-price table tr td:nth-child(even) {
  font-weight: bold;
  color: var(--black);
}

@media only screen and (max-width: 1024px) {
  .company-announcements .table-container {
    flex: 3;
  }

  .sgx-detail .inner {
    max-width: unset;
  }
}

@media only screen and (max-width: 767px) {
  .company-announcements .sidebar {
    padding-right: 0;
  }

  .share-price .inner .info,
  .share-price .inner .graph {
    width: 100%;
  }

  .share-price .inner .info {
    margin-bottom: 15px;
  }

  .company-announcements .sidebar,
  .company-announcements .table-container {
    flex: 100%;
  }
}

@media only screen and (max-width: 520px) {
  .company-announcements .inner {
    padding: 40px 25px;
  }

  .sgx-detail .inner {
    margin-top: 0;
    padding: 35px 25px;
  }

  .sgx-detail .main-title {
    top: 60px;
  }
}

/* Core values */
.core-values {
  background: #003eff;
  color: white;
}

.core-values .title {
  color: white;
}

.core-values .title::before {
  background: white;
}

.core-values .cards-container {
  display: flex;
  flex-wrap: wrap;
}

.core-values .cards-container {
  padding: 25px 0;
}

.core-values .cards-container:not(:last-child) {
  border-bottom: 1px solid white;
}

.core-values .cards-container .core-value {
  position: relative;
  width: 33.33%;
}

.core-values .cards-container .core-value img {
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
}

.core-values .cards-container .core-value h3 {
  font-weight: 600;
  margin-bottom: 0;
}

.core-values .cards-container .core-value strong {
  font-size: 20px;
  display: inline-block;
  margin: 15px 0;
  width: calc(100% - 10px);
}

.core-values .cards-container .core-value p {
  max-width: 280px;
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .core-values .cards-container .core-value {
    position: relative;
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .core-values .cards-container .core-value {
    position: relative;
    width: 100%;
  }

  .core-values .cards-container .core-value:not(:last-child) {
    margin-bottom: 25px;
  }

  .core-values .cards-container .core-value p {
    max-width: unset;
  }
}

@media only screen and (max-width: 520px) {
  .core-values .section-inner {
    padding: 25px;
  }
}

/* Brazil  Landing Page */
.flex {
  display: flex;
}

.column-50 {
  width: 50%;
}

.brazil p {
  font-size: 18px;
}

.brazil .inner {
  padding: 0 10px;
}

.brazil.hero-section {
  position: relative;
  background-image: url("brazil/banner.png");
}

.brazil.hero-section .banner-contents {
  position: absolute;
  bottom: 75px;
  left: 75px;
}

.brazil.hero-section .banner-contents h2 {
  font-size: 56px;
  color: #fff;
  font-weight: bold;
}

.who-we-are {
  position: relative;
}

.who-we-are ul {
  padding-left: 0;
}

.who-we-are ul li {
  position: relative;
  padding-left: 25px;
}

.who-we-are ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #777;
}

.who-we-are a {
  text-decoration: underline;
}

.who-we-are .file-icon {
  height: auto;
  width: 18px;
}

.who-we-are .brazil-icon {
  height: auto;
  width: 25px;
}

.who-we-are .switch {
  position: absolute;
  top: 25px;
  right: 100px;
}

.who-we-are .switch p {
  font-size: 24px;
}

.who-we-are .switch a {
  text-decoration: underline;
  color: #003eff;
  font-weight: bold;
}

.brazil.investors {
  background: #f2f2f2;
}

/* Track Records */
.brazil.track-records .heading {
  padding: 0 10px;
  justify-content: space-between;
}

.brazil.track-records .titles {
  font-size: 24px;
  font-weight: bold;
  min-height: 95px;
}

.brazil.track-records .heading .title {
  max-width: 460px;
}

.brazil .eng-heading .title::before {
  background: #003eff;
}

.brazil.track-records .text-blue {
  color: #003eff;
}

.brazil.track-records .read-more {
  font-size: 15px;
  font-weight: bold;
}

/* Focus on ESG */
.esg {
  background: #003eff;
}

.esg .title {
  margin-bottom: 20px;
}

.esg .contents {
  color: #fff;
}

.esg .imgBox img {
  width: 100%;
}

.esg .contents > a {
  position: relative;
  text-decoration: none;
}

.esg .contents > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 215px;
  transform: scaleX(0);
  transform-origin: left;
  background: #fff;
  transition: 0.35s all ease-in-out;
}

.esg .contents > a:hover::before {
  transform: scaleX(1);
}

.esg .contents p a {
  color: #fff;
  text-decoration: underline;
}

/* Two Column Full With Layout */
.two-columns-layout .imgBox {
  height: 100%;
}

.two-columns-layout .imgBox img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.two-columns-layout .contents {
  padding: 50px;
}

.bg-gray {
  color: #003eff;
  background-color: #f2f2f2;
}

.bg-blue {
  color: #fff;
  background-color: #003eff;
}

.bg-white {
  color: #003eff;
  background-color: #fff;
}

.brazil.facilities .heading {
  padding: 60px;
}

.two-columns-layout h2 {
  font-size: 34px;
  font-weight: bold;
}

.two-columns-layout ul {
  padding-left: 0;
}

.two-columns-layout .bg-blue .contents {
  padding-left: 100px;
}

/* Current Projects */
.brazil.current-projects {
  background-color: #003eff;
}

.brazil .carousel-item .title {
  margin-bottom: 80px;
}

.brazil.current-projects .thumb-box {
  flex: 0 1 33.33%;
}

.brazil .cards-row .titles {
  font-size: 24px;
  font-weight: bold;
  min-height: 100px;
}

.brazil .cards-row .read-more {
  font-size: 16px;
  display: inline-block;
  text-decoration: none;
  padding: 7px 0;
  border-bottom: 4px solid var(--light-purple);
  cursor: pointer;
}

.brazil .cards-row .slider-txt,
.brazil .cards-row .slider-txt ul {
  padding-left: 0;
}

.brazil.track-records .cards-row .titles {
  min-height: 100px;
}

section.current-projects .thumb-box .thumbnail img {
  min-height: 300px;
}

section.current-projects .title {
  margin-bottom: 20px;
}

.brazil .modal-dialog {
  display: flex;
  align-items: center;
}

.brazil .img-groups {
  display: block;
}

.brazil .slider-txt,
.brazil .slider-txt ul {
  padding-left: 0;
}

.brazil .slider-txt ul li {
  position: relative;
  padding-left: 20px;
}

.brazil .slider-txt ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #555;
}

.brazil-pt .solutions-modal .close-modal::before {
  content: "Fechar";
}

/* Responsive Design */
@media only screen and (max-width: 1366px) {
  .brazil.hero-section .banner-contents {
    bottom: 50px;
    left: 50px;
  }

  .brazil.hero-section .banner-contents h2 {
    font-size: 42px;
  }

  .brazil p {
    font-size: 16px;
  }

  .brazil.track-records .cards-row .titles {
    min-height: 120px;
  }

  .who-we-are .switch p {
    font-size: inherit;
  }

  .brazil .title,
  .two-columns-layout h2 {
    font-size: 32px;
  }

  .brazil .carousel-item .title {
    margin-bottom: 50px;
  }

  .brazil .cards-row .titles {
    font-size: 18px;
    margin-bottom: 0;
  }

  .brazil.current-projects cards-row .thumb-box {
    flex: 0 1 33.33%;
  }

  .two-columns-layout .bg-blue .contents {
    padding: 40px;
  }

  .brazil.facilities .heading,
  .two-columns-layout .contents {
    padding: 40px;
  }

  .who-we-are .switch {
    right: 50px;
  }
}

@media only screen and (max-width: 1024px) {
  .brazil.hero-section .banner-contents {
    bottom: 25px;
  }

  .brazil.hero-section .banner-contents h2 {
    font-size: 34px;
  }

  .title::before {
    height: 6px;
  }

  .brazil .title,
  .two-columns-layout h2 {
    font-size: 28px;
  }

  .brazil .cards-row .titles {
    font-size: 18px;
  }

  .thumb-box {
    margin-bottom: 20px;
  }

  .investors .tab-body .cards-container .cards .card-inner .profile-pic {
    max-width: unset;
  }
}

@media only screen and (max-width: 767px) {
  .brazil.hero-section {
    background-image: url("brazil/banner-mobile.png");
  }

  .brazil.hero-section .banner-contents {
    left: 35px;
  }

  .eng-heading {
    margin-bottom: 0;
  }

  .column-50 {
    width: 100%;
  }

  .two-columns-layout .flex {
    flex-wrap: wrap;
  }

  .two-columns-layout .flex.reverse {
    flex-wrap: wrap-reverse;
  }

  .brazil.track-records .heading {
    margin-bottom: 20px;
  }

  .brazil.facilities .heading,
  .two-columns-layout .contents {
    padding: 35px;
  }

  .brazil.facilities .heading {
    padding: 30px;
  }

  .who-we-are .switch {
    right: 25px;
  }
}

@media only screen and (max-width: 520px) {
  .brazil.hero-section .banner-contents {
    left: 25px;
  }

  .brazil.hero-section .banner-contents h2 {
    font-size: 28px;
  }

  .brazil .cards-row .titles,
  .brazil.track-records .cards-row .titles {
    min-height: unset;
    margin-bottom: 18px;
  }

  .brazil .title,
  .two-columns-layout h2 {
    font-size: 24px;
  }

  .section-inner {
    padding: 25px;
  }

  .brazil .inner {
    padding: 0;
  }

  .brazil.facilities .heading,
  .two-columns-layout .contents,
  .two-columns-layout .bg-blue .contents {
    padding: 25px;
  }

  .investors .tab-body .cards-container .cards .card-inner {
    padding-bottom: 0;
  }

  .brazil.who-we-are {
    padding-top: 40px;
  }
}

/* Sustainability */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.sustainability-container {
  max-width: 80%;
}

.sustainability-container.w-100 {
  max-width: unset;
}

.sustainability-container.flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}

.sustainability-container article.card {
  width: 50%;
  padding: 20px;
  border: 0;
}

.sustainability-container.w-100 article.card {
  width: 33.33%;
}

.sustainability-container article.card img {
  width: 100%;
}

.sustainability-container article.card h2 {
  position: absolute;
  bottom: 30px;
  left: 35px;
  color: var(--white);
  font-weight: bold;
  font-size: 24px;
}

.video-embed {
  max-width: 95%;
  margin: 40px 0;
}

/* Sustainability -> Framework */
.disclosures {
  background: var(--main-color);
}

.disclosures .swiper {
  height: auto;
}

.disclosures .details {
  min-height: 350px;
  padding: 30px 25px;
  text-align: center;
  font-size: 16px;
}

.disclosures .details img {
  margin-bottom: 30px;
}

/* Sustainability -> Approach */
.vision-2030 {
  background: #f5f5f5;
}

.approach .investors .tab-container ul.tabs {
  margin-bottom: 0;
}

.approach .investors .tab-container ul li {
  font-weight: bold;
  line-height: 1.4;
  text-align: left;
  padding: 10px 15px;
  height: auto;
}

.approach .investors .tab-container .content {
  padding: 30px 10px;
  box-shadow: 0 0 15px #ccc;
}

.approach .investors .tab-container .content .tab-body {
  margin: 0;
}

.approach .tab-body .tab-contents .panel {
  width: 50%;
  overflow: hidden;
  padding: 10px;
}

.approach .tab-body .tab-contents .left-panel img {
  height: 100px;
}

.approach .tab-body .tab-contents .left-panel p {
  margin-top: 10px;
  line-height: 1.8;
}

.approach .tab-body .tab-contents .right-panel img {
  width: 100%;
  border-radius: 7px;
}

.grid-3x3 {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ccc;
}

.grid-3x3 .tile {
  border: 1px solid #ccc;
  width: 33.33%;
  padding: 25px;
  font-size: 12px;
  transition: 300ms all linear;
}

.grid-3x3 .tile:hover {
  background: var(--main-color);
  border: 1px solid var(--main-color);
}

.grid-3x3 .tile h3 {
  font-weight: bold;
}

.grid-3x3 .tile:hover h3 {
  color: var(--white) !important;
}

.grid-3x3 .tile p {
  margin-bottom: 0;
}

.grid-3x3 .tile:hover p {
  color: var(--white);
}

.membership-and-ratings {
  background: var(--main-color);
}

.membership-and-ratings .swiper {
  height: auto;
}

.membership-and-ratings .details {
  min-height: 250px;
  padding: 0 25px;
  font-size: 16px;
}

.membership-and-ratings .details img {
  margin: 25px 0;
}

ul.footnotes {
  padding-left: 0;
  margin: 25px 0;
}

ul.footnotes li {
  font-size: 12px;
  margin-bottom: 15px;
}

.reports .image-box {
  margin-bottom: 50px;
}

.reports-row {
  gap: 25px;
}

.reports .card {
  background: #f5f5f5;
  padding: 20px;
  width: calc(50% - 13px);
}

.reports .card .image {
  width: 160px;
}

.reports .card .image img {
  width: 100%;
}

.reports .card .pdf-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 15px;
  width: calc(100% - 160px);
}

.reports .card .pdf-info ul {
  padding-left: 16px;
  list-style: disc;
}

.reports .card .pdf-info ul li a {
  text-decoration: none;
  color: var(--black);
  transition: 300ms all linear;
}

.reports .card .pdf-info ul li a:hover {
  color: var(--main-color);
}

.reports .card .pdf-info h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--main-color);
}

.reports .image-box .card .pdf-info h3 {
  font-size: 24px;
}

.reports .card .pdf-info h3 span {
  font-size: 22px;
}

.reports .card .pdf-info a.button {
  text-decoration: none;
  color: var(--white);
  padding: 15px 20px;
  font-weight: bold;
  max-width: 170px;
  text-align: center;
  background: var(--main-color);
}

.reports .image-box .card {
  width: 60%;
}

.reports .image-box .card .image {
  width: 35%;
}

.reports .image-box .card .pdf-info {
  width: 65%;
}

/* Suppliears Reg. Form  */
section.procurement h2 {
  margin-bottom: 25px;
  font-weight: 700;
}

.suppliers-registration-form .form_row {
  display: flex;
  margin-bottom: 10px;
}

.suppliers-registration-form
  .form_row
  input:not(input[type="radio"], input[type="checkbox"]) {
  width: calc(100% - 180px);
}

.suppliers-registration-form .form_row input.half {
  width: 185px;
}

.suppliers-registration-form .form_row label.first-label {
  min-width: 200px;
}

.suppliers-registration-form .form_row label.first-label + div {
  width: calc(100% - 180px);
}

.suppliers-registration-form .form_row input {
  padding: 7px 10px;
  outline: 0;
  border-width: 1px;
  border-color: #848484 #c1c1c1 #e1e1e1;
}

.suppliers-registration-form .field-radio label,
.suppliers-registration-form .field-checkbox label {
  margin: 0;
  margin-inline: 10px;
  cursor: pointer;
}

.suppliers-registration-form .field-checkbox input,
.suppliers-registration-form .field-radio input {
  cursor: pointer;
}

.suppliers-registration-form select {
  width: 180px;
  height: 40px;
  border-radius: 0;
  outline: 0;
  border-color: #848484 #c1c1c1 #e1e1e1;
  background: #fff;
  padding-left: 7px;
  cursor: pointer;
}

.suppliers-registration-form textarea {
  outline: 0;
  border-color: #848484 #c1c1c1 #e1e1e1;
  padding: 5px 10px;
  min-height: 100px;
  width: 100%;
  resize: none;
}

.suppliers-registration-form .form_row img {
  cursor: pointer;
  object-fit: contain;
  margin-left: 15px;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
}

.suppliers-registration-form input[type="submit"] {
  background: #003eff;
  color: #fff;
  border: 0;
  outline: 0;
  margin: 0 auto;
  display: block;
  font-size: 15px;
  margin: 10px auto;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

.notes {
  text-align: center;
  font-size: 14px;
  margin-bottom: 10px;
}

form.suppliers-registration-form > div {
  position: relative;
}

span.error {
  background: #ee0101;
  position: absolute;
  right: 0;
  top: -35px;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  display: none;
}

span.error::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  background: #ee0101;
  right: 10px;
  bottom: -7px;
  border-right: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  transform: rotate(45deg);
}

@media only screen and (max-width: 991px) {
  .sustainability-container {
    max-width: unset;
  }

  .reports .card .pdf-info a {
    padding: 10px 15px;
  }

  .suppliers-registration-form .form_row .form_row {
    flex-direction: column;
  }

  .field-radio,
  .field-checkbox {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 4fr 1fr 4fr;
  }

  .field-radio input[type="radio"],
  .field-checkbox input[type="checkbox"] {
    height: 15px;
    width: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .sustainability-container.flex {
    margin: 0;
  }

  .sustainability-container article.card h2 {
    left: 15px;
    bottom: 15px;
  }

  .sustainability-container.w-100 article.card,
  .sustainability-container article.card {
    width: 100%;
    padding: 10px 0;
  }

  .approach .tab-body .tab-contents .panel,
  .reports .card,
  .reports .image-box .card {
    width: 100%;
  }

  .grid-3x3 .tile {
    width: 50%;
    padding: 20px;
  }

  .grid-3x3 .tile h3 {
    font-size: 24px;
  }

  .reports .card .pdf-info a {
    padding: 10px;
  }

  .approach .investors .tab-container ul li {
    width: 100%;
    max-width: unset;
    border-top: 2px solid #ffffff;
  }

  .suppliers-registration-form
  .form_row
  input:not(input[type="radio"], input[type="checkbox"]),
  .suppliers-registration-form .form_row label.first-label + div {
    width: 100%;
  }

  .suppliers-registration-form .form_row img {
    margin-left: 0;
    margin-top: 7px;
  }

  .suppliers-registration-form select {
    width: 100%;
  }
}

@media only screen and (max-width: 520px) {
  .grid-3x3 .tile {
    width: 100%;
  }

  .reports .card .image,
  .reports .card .pdf-info,
  .reports .image-box .card .image,
  .reports .image-box .card .pdf-info {
    width: 100%;
  }

  .reports .card .image {
    overflow: hidden;
  }

  .reports .card .image img,
  .reports .image-box .card .image img {
    width: auto;
  }

  .reports .card .pdf-info {
    padding: 0;
    padding-top: 10px;
  }
}

.readMore {
  position: relative;
  color: var(--black);
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 3px solid var(--purple);
}

.readmoreBox {
  text-align: right;
  padding-right: 25px;
}

.readMore:hover {
  text-decoration: none;
}