/*************************************************
**************************************************

Website Name: ELK-Desa Resource Berhad
Website URL: https://www.elk-desa.com.my
Website developer: Design Team MY
Developer email: design.my@shareinvestor.com
Copyright @ ShareInvestor Malaysia Sdn Bhd 2023. All Rights Reserved.

Color Guide
***************/
:root {
  --white-color-1: #ffffff;
  --grey-color-1: #f2f2f2;
  --grey-color-2: #cccccc;
  --grey-color-3: #666666;
  --grey-color-4: #e9ecef;
  --black-color-1: #1a1b27;
  --black-color-2: #333333;
  --red-color-1: #ff1d25;
  --orange-color-1: #f15a25;
  --orange-color-2: #f7931f;
  --orange-color-3: #fab03b;
  --chocolate-color-1: #c8b299;
  --chocolate-color-2: #998675;
  --chocolate-color-3: #736356;
  --chocolate-color-4: #524741;
  --blue-color-1: #4899d0;
  --blue-color-2: #55b6c9;
  --blue-color-3: #0996b1;
  --blue-color-4: #006d86;
  --green-color-1: #8cc63e;
  --green-color-2: #65b200;
  --pink-color-1: #fe7666;
  --font-family-sans-serif: "Lato", sans-serif;
  --default-transition-config: all 0.3s;
}

/*************************************************

Type Guide
***************


Debugging Tools
***************
border: 1px solid #fff;

*************************************************/

/************************************************
*************************************************
0. CSS Reset ------------------------ 
1. Universal Styles -----------------
2. Header & Nav Styles -------------- 
3. Body Styles ----------------- 
4. Sidebar Styles ------------------- 
5. Widget Styles --------------------
6. Footer Styles -------------------- 
7. Media Queries Styles ----------- 
*************************************************
************************************************/

/*----------------------------------------------
------------------------------------------------
0. CSS Reset
------------------------------------------------
----------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*----------------------------------------------
------------------------------------------------
1. Universal Styles
------------------------------------------------
----------------------------------------------*/
body {
  font-family: 'Lato', sans-serif;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  color: inherit;
  transition: var(--default-transition-config);
}

.web-btn a {
  font-size: 13px;
  color: var(--orange-color-1);
  border: solid 1px var(--orange-color-1);
  border-radius: 100px;
  background: transparent;
  transition: var(--default-transition-config);
  padding: 10px 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  min-width: 200px;
  width: 200px;
}

.web-btn:hover a {
  color: var(--black-color-2);
  border: solid 1px var(--orange-color-1);
  background: var(--orange-color-1);
}

.web-btn-white a {
  font-size: 13px;
  color: var(--white-color-1);
  border: solid 1px var(--white-color-1);
  border-radius: 100px;
  background: transparent;
  transition: var(--default-transition-config);
  padding: 10px 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  min-width: 200px;
  width: 200px;
}

.web-btn-white:hover a {
  color: var(--grey-color-3);
  border: solid 1px var(--white-color-1);
  background: var(--white-color-1);
}

.web-btn-red a {
  font-size: 13px;
  color: var(--red-color-1);
  border: solid 1px var(--red-color-1);
  border-radius: 100px;
  background: transparent;
  transition: var(--default-transition-config);
  padding: 10px 25px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  min-width: 200px;
  width: 200px;
}

.web-btn-red:hover a {
  color: var(--white-color-1);
  border: solid 1px var(--red-color-1);
  background: var(--red-color-1);
}

.bg-black-color-1 {
  background: var(--black-color-1);
}

.bg-black-color-2 {
  background: var(--black-color-2);
}

.bg-grey-color-1 {
  background: var(--grey-color-1);
}

.bg-grey-color-2 {
  background: var(--grey-color-2);
}

.bg-grey-color-3 {
  background: var(--grey-color-3);
}

.bg-chocolate-color-1 {
  background: var(--chocolate-color-4);
}

.text-red {
  color: var(--red-color-1);
}

.p-relative {
  position: relative;
}
/*----------------------------------------------
------------------------------------------------
2. Header & Nav Styles
------------------------------------------------
----------------------------------------------*/
.navbar {
  background-color: var(--white-color-1);
  padding: 10px 0 0 0;
  padding-bottom: 0 !important;
  /* border-bottom: solid 1px var(--grey-color-1); */
  position: fixed;
  width: 100%;
  z-index: 999999;
  box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
}

.navbar-nav {
  margin: 0 0 0 auto;
  justify-content: center;
}

a.navbar-brand {
  padding-bottom: 15px;
}

.navbar-nav .nav-item {
  position: relative;
  margin: 0 13px;
}

.navbar-toggler-icon {
  background-image: url(/images/close-bar-icon.png);
  background-repeat: no-repeat;
  transition: transform .2s ease-in-out;
  background-size: 20px;
}

.collapsed .navbar-toggler-icon {
  background-image: url(/images/open-bar-icon.png);
  background-repeat: no-repeat;
  transition: transform .2s ease-in-out;
  transform: rotate(-180deg);
  background-size: 23px;
}

a.nav-link {
  color: var(--black-color-1);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  padding: 15px 0 25px 0;
}

.nav-item.active a.nav-link,
a.nav-link:hover,
a.nav-link:focus {
  color: var(--red-color-1);
}

a.nav-link.dropdown-toggle::after {
  display: none;
}

a.nav-link::after {
  display: none;
  content: "";
  background-image: url(/images/chevron-down-red.png);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  width: 25px;
  height: 15px;
  padding: 0 0;
  margin: auto auto;
  border: none;
  text-align: center;
  transition: var(--default-transition-config);
  animation: fadeInDropdown 0.3s ease-in-out;
}

.nav-item.active .nav-link::after,
.nav-item:hover .nav-link::after {
  display: inline-block;
}

.navbar-nav .nav-item .dropdown-menu {
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 10;
  display: none;
  min-width: 200px;
  padding: 0 0;
  margin: 0 0;
  background-color: var(--white-color-1);
  border: none;
  color: var(--black-color-1);
  border-radius: 0;
  box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
  animation: fadeInDropdown 0.3s ease-in-out;
}

@keyframes fadeInDropdown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-nav .nav-item:hover > .dropdown-menu,
.navbar-nav .dropdown-menu:hover {
  display: block;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.dropdown-menu a {
  font-size: 14px;
  font-weight: 600;
  color: var(--black-color-1);
  padding: 8px 20px;
  display: block;
  transition: var(--default-transition-config);
  background-color: var(--white-color-1);
  border: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:active,
.dropdown-menu a:focus,
.dropdown-menu a.active {
  color: var(--red-color-1);
  background-color: transparent;
}

.carousel-item.item-1 {
  background: url(/images/home-banner.jpg) no-repeat center center;
  background-size: cover;
  /* background-position-y: 30px; */
  background-color: var(--white-color-1);
  height: 600px;
  min-height: 360px;
}

.carousel-item.item-2 {
  background: url(/images/furniture-4.jpg) no-repeat center bottom;
  background-size: cover;
  background-color: var(--white-color-1);
  height: 600px;
  min-height: 360px;
}

.carousel-item.item-3 {
  background: url(/images/about-us-banner.jpg) no-repeat center center;
  background-size: cover;
  /* background-position-y: 30px; */
  background-color: var(--white-color-1);
  height: 600px;
  min-height: 360px;
}

.carousel-item img {
  margin-top: 65px;
}

.pages-banner {
  height: 60vh;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.pages-banner.home-banner {
  background-image: url(/images/home-banner.jpg);
}

.pages-banner.about-us-banner {
  background-image: url(/images/about-us-banner.jpg);
}

.pages-banner.governance-banner {
  background-image: url(/images/governance-banner.jpg);
}

.pages-banner.sustainability-banner {
  background-image: url(/images/sustainability-banner.jpg);
}

.pages-banner.investor-banner {
  background-image: url(/images/investor-banner.jpg);
}

.pages-banner.contact-banner {
  background-image: url(/images/contact-banner.jpg);
  background-position: center center;
}

.page-name {
  padding: 30px 0;
}

.page-name h1 {
  color: var(--red-color-1);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  margin: 0;
}

.page-name h2 {
  color: var(--red-color-1);
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 1em;
}

.subpages-menu {
  background: var(--black-color-2);
  padding: 0 0;
}

.subpages-menu ul {
  list-style: none;
  padding: 0 0;
  margin: 0 0;
  color: var(--white-color-1);
  display: inline-flex;
  align-items: center;
}

.subpages-menu ul li {
  padding: 15px 20px;
  transition: var(--default-transition-config);
}

.subpages-menu ul li:hover,
.subpages-menu ul li.active {
  background: var(--red-color-1);
}

/*----------------------------------------------
------------------------------------------------
3. Body Styles
------------------------------------------------
----------------------------------------------*/
.corporate-profile-section h2,
.bod-management-section h2,
.corporate-governance-section h2,
.sustainability-section h2,
.contact-us-section h2 {
  color: var(--red-color-1);
  margin-bottom: 1em;
  font-weight: 600;
}

.corporate-profile-section h6 {
  margin-bottom: 0;
}

.download-box {
  border: none;
  background: var(--grey-color-1);
  padding: 20px 20px;
  height: 170px;
  transition: var(--default-transition-config);
  position: relative;
}

.download-box p {
  font-weight: 600;
  margin-bottom: 2em;
}

.download-box a {
  position: absolute;
  bottom: 20px;
}

.download-box img {
  width: 40px;
  margin-right: 11px;
}

.download-box:hover {
  box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.31);
  -webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.31);
  -moz-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.31);
}

.all-accordion .accordion-item {
  border: none;
}

.all-accordion .accordion-button {
  padding-bottom: 16px;
  font-size: 28px;
  border-top: solid 1px var(--grey-color-2);
  border-radius: 0 !important;
}

.all-accordion .accordion-button:focus {
  border-color: unset;
  outline: 0;
  box-shadow: none;
  border-top: solid 1px var(--grey-color-2);
}

.all-accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  color: var(--red-color-1);
  border-top: solid 1px var(--red-color-1);
  border-radius: 0;
}

.all-accordion .accordion-body {
  padding-bottom: 16px;
}

.all-accordion .accordion-button::after {
  background-image: url(/images/chevron2-right-grey.png);
}

.all-accordion .accordion-button:not(.collapsed)::after {
  background-image: url(/images/chevron2-right-red.png);
  transform: rotate(90deg);
}

.contact-us-section h2.text-dark {
  border-bottom: solid 2px var(--grey-color-3);
  padding-bottom: 10px;
}

.contact-us-section h6 {
  color: var(--red-color-1);
  font-weight: 600;
}

.faq-drawer {
  margin-bottom: 10px;
}

.faq-drawer-content-wrapper {
  font-size: 1.25em;
  line-height: 1.4em;
  max-height: 0px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.faq-drawer-title {
  border: none;
  cursor: pointer;
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 5px 0 25px 0;
  position: relative;
  transition: all 0.3s ease-out;
}

.faq-drawer-title:active,
.faq-drawer-title:focus {
  color: var(--red-color-1);
}

.faq-drawer-title::after {
  display: none;
}

.faq-drawer-title:hover { 
  color: var(--red-color-1)  ;
}

.faq-drawer-trigger:checked + .faq-drawer-title + .faq-drawer-content-wrapper {
  max-height: 100%;
}

.faq-drawer p,
.faq-table th,
.faq-table td {
  font-size: 16px;
}

.faq-drawer input[type="checkbox"] {
  display: none;
}

.faq-table {
  margin: 0 0 20px 0;
}

.faq-table th {
  padding: 10px 10px;
  border-bottom: solid 2px var(--grey-color-3);
}

.faq-table td {
  padding: 15px 10px;
  border-bottom: solid 1px var(--grey-color-2);
  vertical-align: top;
}

.faq-drawer-content ul {
  list-style: decimal;
  font-size: 16px;
}

.faq-drawer-content a {
  color: var(--red-color-1);
}

img.icon-hp,
img.icon-furniture {
  width: 170px;
  height: 130px;
}

.icon-hp-row span.fw-bold {
  font-size: 28px;
}

.p-circle {
  border: solid 10px var(--orange-color-3);
  border-radius: 100%;
  height: 350px;
  width: 350px;
  margin: auto;
  position: relative;
  transition: var(--default-transition-config);
}

.p-circle-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.p-circle:hover {
  box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.31);
  -webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.31);
  -moz-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.31);
}

.p-circle-content h3 {
  margin-bottom: 0;
}

.p-circle-content h3 span.counter {
  font-size: 40px;
  font-weight: 600;
}

.p-circle-content h3 img {
  width: 20px;
  margin-bottom: 16px;
}

.hp-bg-red {
  background: var(--red-color-1);
  border-radius: 20px;
  color: var(--white-color-1);
  padding: 30px 30px;
}

.hp-bg-red h5 {
  border-bottom: solid 1px var(--white-color-1);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.hp-bg-grey {
  background: var(--grey-color-3);
  border-radius: 20px;
  color: var(--white-color-1);
  padding: 30px 30px;
  position: relative;
}

.hp-bg-grey img {
  width: 50px;
  margin-bottom: 2em;
}

.hp-bg-grey h5 {
  margin-bottom: 3em;
}

.hp-bg-grey .web-btn-white {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
}

img.furniture-img {
  width: 100%;
}

.furniture-img-slider .slick-prev:before {
  content: url(/images/chevron2-left-choc.png);
}

.furniture-img-slider .slick-next:before {
  content: url(/images/chevron2-right-choc.png);
}

.furniture-img-slider .slick-prev {
  top: 120px;
  right: -70px;
  left: unset;
}

.furniture-img-slider .slick-next {
  top: 120px;
  right: -130px;
}

.bg-chocolate-color-1 h3 {
  margin: 50% 0 1em 0;
}

.bod-management-section .all-accordion .accordion-item {
  border: none;
}

.bod-management-section .all-accordion .accordion-button {
  padding-bottom: 16px;
  font-size: 28px;
  border-top: solid 1px var(--grey-color-2);
  border-radius: 0 !important;
}

.bod-management-section .all-accordion .accordion-button:focus {
  border-color: unset;
  outline: 0;
  box-shadow: none;
  border-top: solid 1px var(--grey-color-2);
}

.bod-management-section .all-accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  color: var(--red-color-1);
  border-top: solid 1px var(--red-color-1);
  border-radius: 0;
}

.bod-management-section .all-accordion .accordion-body {
  padding-bottom: 16px;
  padding-left: 108px;
}

.bod-management-section .all-accordion .accordion-button::before {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  margin-left: 0;
  margin-right: 15px;
  content: "";
  background-image: url(/images/icons-bod-m1.svg);
  background-repeat: no-repeat;
  background-size: 70px;
  transition: transform .2s ease-in-out;
}

.bod-management-section .all-accordion .accordion-button:not(.collapsed)::before {
  background-image: url(/images/icons-bod-m2.svg);
  /* transform: rotate(90deg); */
}

.bod-management-section .all-accordion .accordion-button::after {
  background-image: unset;
}

.bod-management-section .all-accordion .accordion-button:not(.collapsed)::after {
  background-image: unset;
  transform: unset;
}

.director-name h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0;
}

.director-name h5 {
  margin-bottom: 0;
}

.bod-management-section .all-accordion #heading7 .accordion-button::before,
.bod-management-section .all-accordion #heading8 .accordion-button::before,
.bod-management-section .all-accordion #heading9 .accordion-button::before {
  background-image: url(/images/icons-bod-f1.svg);
}

.bod-management-section .all-accordion #heading7 .accordion-button:not(.collapsed)::before,
.bod-management-section .all-accordion #heading8 .accordion-button:not(.collapsed)::before,
.bod-management-section .all-accordion #heading9 .accordion-button:not(.collapsed)::before {
  background-image: url(/images/icons-bod-f2.svg);
}

.bg-hands-img {
  background-image: url(/images/sustainability-approach.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 450px;
}

.sust-border-1 {
  border: solid 5px var(--orange-color-3);
  border-radius: 30px;
  background-color: var(--orange-color-1);
  color: var(--white-color-1);
  width: 100%;
  min-height: 180px;
  position: relative;
}

.sust-border-1 h5 {
  position: absolute;
  margin: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sust-border-2 {
  border: solid 5px var(--grey-color-1);
  border-radius: 30px;
  color: var(--white-color-1);
  min-height: 150px;
  position: relative;
}

.bg-sust-blue {
  background-color: var(--blue-color-1);
}

.bg-sust-green {
  background-color: var(--green-color-1);
}

.bg-sust-orange {
  background-color: var(--orange-color-3);
}

.bg-sust-pink {
  background-color: var(--pink-color-1);
}

.sust-border-2 .d-inline-flex {
  width: 100%;
  position: absolute;
  margin: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sust-border-2 h5 {
  width: 50%;
  font-weight: 600;
  text-align: center;
}

.sust-btn {
  width: 50%;
  text-align: center;
}

.sust-btn a {
  border: solid 1px var(--white-color-1);
  padding: 10px 30px;
  border-radius: 30px;
  transition: var(--default-transition-config); 
  background-color: transparent; 
}

.bg-sust-blue .sust-btn a:hover {
  background-color: var(--white-color-1);
  color: var(--blue-color-1);
}

.bg-sust-green .sust-btn a:hover {
  background-color: var(--white-color-1);
  color: var(--green-color-1);
}

.bg-sust-orange .sust-btn a:hover {
  background-color: var(--white-color-1);
  color: var(--orange-color-3);
}

.bg-sust-pink .sust-btn a:hover {
  background-color: var(--white-color-1);
  color: var(--pink-color-1);
}

.sust-border-3 {
  border: solid 5px var(--blue-color-1);
  border-radius: 30px;
  color: var(--white-color-1);
  min-height: 180px;
  position: relative;  
}

.sust-border-3.bg-blue-2 {
  background-color: var(--blue-color-2);
}

.sust-border-3.bg-blue-3 {
  background-color: var(--blue-color-3);
}

.sust-border-3.bg-blue-4 {
  background-color: var(--blue-color-4);
}

.sust-border-3 h5 {
  width: 80%;
  position: absolute;
  margin: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);  
}

.economic-border {
  border: solid 5px var(--grey-color-1);
  border-radius: 30px;
  background: var(--blue-color-1);
  padding: 10px 10px;
}

.economic-border table {
  width: 90%;
  margin: auto;
  background: var(--blue-color-1);
}

.economic-border table th {
  color: var(--white-color-1);
  border-bottom: solid 2px var(--white-color-1);
  padding: 10px 0 10px 10px;
  text-align: right;
}

.economic-border table td {
  color: var(--white-color-1);
  border-bottom: solid 1px var(--white-color-1);
  padding: 10px 0 10px 10px;
  text-align: right;
}

.economic-border table th:first-child,
.economic-border table td:first-child {
  padding-left: 0;
  text-align: left;
}

.economic-border table tr:last-child td {
  border-bottom: none;
}

.economic-circle {
  border: solid 10px var(--blue-color-1);
  border-radius: 100%;
  height: 250px;
  width: 250px;
  margin: auto;
  position: relative;
  transition: var(--default-transition-config); 
}

.economic-circle:hover {
  box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.31);
  -webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.31);
  -moz-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.31);
}

.economic-circle-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.economic-circle-content h3 {
  font-size: 40px;
}

.environment-circle {
  border: solid 10px var(--green-color-1);
  border-radius: 100%;
  height: 250px;
  width: 250px;
  margin: auto;
  position: relative;
  transition: var(--default-transition-config); 
}

.environment-circle:hover {
  box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.31);
  -webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.31);
  -moz-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.31);
}

.environment-circle-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.environment-circle-content h3 {
  font-size: 40px;
}

.environment-border {
  border: solid 5px var(--grey-color-1);
  border-radius: 30px;
  background: var(--green-color-1);
  padding: 10px 10px;
}

.environment-border table {
  width: 90%;
  margin: auto;
  background: var(--green-color-1);
}

.environment-border table th {
  color: var(--white-color-1);
  border-bottom: solid 2px var(--white-color-1);
  padding: 10px 0 10px 10px;
  text-align: right;
}

.environment-border table td {
  color: var(--white-color-1);
  border-bottom: solid 1px var(--white-color-1);
  padding: 10px 0 10px 10px;
  text-align: right;
}

.environment-border table th:first-child,
.environment-border table td:first-child {
  padding-left: 0;
  text-align: left;
}

.environment-border table tr:last-child td {
  border-bottom: none;
}

.environment-border tbody.borders {
  border: solid 4px var(--white-color-1);
  border-right: none;
  border-left: none;
  background: var(--green-color-2);
}

.environment-border tbody.borders th,
.environment-border tbody.borders td {
  padding: 10px 20px;
}

.environment-border tbody.borders tr:nth-child(1) td,
.environment-border tbody.borders tr:nth-child(3) td {
  border-bottom: none;
}

.environment-border.misc tbody:nth-child(1) th {
  padding: 10px 20px;
}

.environment-border.misc tbody:nth-child(7) th {
  border-bottom: none;
}

img.icons-esg {
  width: 320px;
}

.social-border {
  border: solid 5px var(--grey-color-1);
  border-radius: 30px;
  background: var(--orange-color-2);
  padding: 10px 10px;
}

.social-border table {
  width: 90%;
  margin: auto;
  background: var(--orange-color-2);
}

.social-border table th {
  color: var(--white-color-1);
  border-bottom: solid 2px var(--white-color-1);
  padding: 10px 0 10px 10px;
  text-align: right;
}

.social-border table td {
  color: var(--white-color-1);
  border-bottom: solid 1px var(--white-color-1);
  padding: 10px 0 10px 10px;
  text-align: right;
}

.social-border table th:first-child,
.social-border table td:first-child {
  padding-left: 0;
  text-align: left;
}

.social-border table tr:last-child td {
  border-bottom: none;
}

.governance-border {
  border: solid 5px var(--grey-color-1);
  border-radius: 30px;
  background: var(--chocolate-color-2);
  padding: 10px 10px;
}

.governance-border table {
  width: 90%;
  margin: auto;
  background: var(--chocolate-color-2);
}

.governance-border table th {
  color: var(--white-color-1);
  border-bottom: solid 2px var(--white-color-1);
  padding: 10px 0 10px 10px;
  text-align: right;
}

.governance-border table td {
  color: var(--white-color-1);
  border-bottom: solid 1px var(--white-color-1);
  padding: 10px 0 10px 10px;
  text-align: right;
}

.governance-border table th:first-child,
.governance-border table td:first-child {
  padding-left: 0;
  text-align: left;
}

.governance-border table tr:last-child td {
  border-bottom: none;
}

.gov-border-1.bg-chocolate-2 {
  background-color: var(--chocolate-color-2);
}

.gov-border-1.bg-chocolate-3 {
  background-color: var(--chocolate-color-3);
}

.gov-border-1.bg-chocolate-4 {
  background-color: var(--chocolate-color-4);
}

.gov-border-1 {
  border: solid 5px var(--chocolate-color-1);
  border-radius: 30px;
  color: var(--white-color-1);
  min-height: 180px;
  position: relative;
}

.gov-border-1 h5 {
  width: 80%;
  position: absolute;
  margin: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.abac-download {
  text-align: center;
}

.abac-download a img {
  width: 45px;
  margin: 10px 0;
  transition: var(--default-transition-config);
}

.abac-download a:hover img {
  transform: translateY(8px);
}

.governance-circle {
  border: solid 10px var(--chocolate-color-1);
  border-radius: 100%;
  height: 250px;
  width: 250px;
  margin: auto;
  position: relative;
  transition: var(--default-transition-config); 
}

.governance-circle:hover {
  box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.31);
  -webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.31);
  -moz-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.31);
}

.governance-circle-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.governance-circle-content h3 {
  font-size: 40px;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 300px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  border-radius: 30px;
  border: solid 1px var(--grey-color-1);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: var(--white-color-1);
  border-radius: 30px;
  padding: 25px 25px;
}

.flip-card-back {
  background-color: var(--orange-color-1);
  color: white;
  transform: rotateY(180deg);
  border-radius: 30px;
  border: solid 1px var(--orange-color-1);
  padding: 25px 25px;
  overflow: auto;
}

.flip-card h6 {
  text-transform: uppercase;
  font-weight: 600;
}

.flip-card-back p {
  font-size: 14px;
}

img.icons-business {
  width: 140px;
  margin: 20px 0;
}

img.flip-icon {
  width: 45px;
  position: absolute;
  right: 20px;
  bottom: 15px;
}

.business-circle.c-1 {
  border: solid 10px var(--orange-color-1);
}

.business-circle.c-2 {
  border: solid 10px var(--orange-color-2);
}

.business-circle.c-3 {
  border: solid 10px var(--orange-color-3);
}

.business-circle {
  border-radius: 100%;
  height: 250px;
  width: 250px;
  margin: auto;
  position: relative;
  transition: var(--default-transition-config);
}

.business-circle:hover {
  box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.31);
  -webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.31);
  -moz-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.31);
}

.business-circle-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.business-circle.c-2 .business-circle-content h3,
.business-circle.c-1 .business-circle-content h3 {
  font-size: 40px;
}

.business-circle-content p.f-small {
  font-size: 12px;
}

.top-slider {
  border-bottom: solid 3px var(--red-color-1);
}

.top-slider h2 {
  margin: 0 3em 0 0;
}

.top-home-slider .slick-prev:before,
.bottom-home-slider .slick-prev:before {
  content: url(/images/chevron2-left-red2.png);
}

.top-home-slider .slick-next:before,
.bottom-home-slider .slick-next:before {
  content: url(/images/chevron2-right-red2.png);
}

.top-home-slider .slick-prev,
.bottom-home-slider .slick-prev {
  top: 25px;
  right: 90px;
  left: unset;
  z-index: 99999;
}

.top-home-slider .slick-next,
.bottom-home-slider .slick-next {
  top: 25px;
  right: 35px;
  z-index: 99999;
}

.stock-quotes-iframe {
  height: 330px;
  margin: 3em 0;
}

.iframe-height,
.newsroom-iframe {
  height: 83px;
}

.sust-table {
  width: 100%;
}

.sust-table th {
  padding: 10px 10px;
  border: solid 1px var(--grey-color-2);
  background: var(--red-color-1);
  color: var(--white-color-1);
}

.sust-table td {
  padding: 10px 10px;
  border: solid 1px var(--grey-color-2);
}

.sust-table tr:nth-child(even) td {
  background: var(--grey-color-4);
}

.sust-table tr:nth-child(11) td:nth-child(1),
.sust-table tr:nth-child(11) td:nth-child(2) {
  background: var(--grey-color-4);
}

.sust-table tr:nth-child(14) td:nth-child(1),
.sust-table tr:nth-child(14) td:nth-child(2) {
  background: var(--white-color-1);
}
.sust-table tr:nth-child(17) td:nth-child(1),
.sust-table tr:nth-child(17) td:nth-child(2) {
  background: var(--grey-color-4);
}
/*----------------------------------------------
------------------------------------------------
4. Sidebar Styles
------------------------------------------------
----------------------------------------------*/

/*----------------------------------------------
------------------------------------------------
5. Widget Styles
------------------------------------------------
----------------------------------------------*/

/*----------------------------------------------
------------------------------------------------
6. Footer Styles
------------------------------------------------
----------------------------------------------*/
footer {
  background: var(--black-color-2);
  color: var(--white-color-1);
  padding: 4em 0 1em 0;
}

footer h5 {
  margin-bottom: 25px;
}

footer h5 a,
footer p a {
  transition: var(--default-transition-config);
}

footer h5 a:hover,
footer p a:hover {
  color: var(--grey-color-2);
}

.copyright-footer {
  background: var(--red-color-1);
}

.copyright-footer .wrapper {
  color: var(--white-color-1);
  padding: 20px 0;
} 
/*----------------------------------------------
------------------------------------------------
7. Media Queries Styles
------------------------------------------------
----------------------------------------------*/
@media (max-width: 1399px) {
  .navbar-nav .nav-item {
    margin: 0 5px;
  }
  .bg-chocolate-color-1 h3 {
    margin: 40% 0 1em 0;
  }
}

@media (max-width: 1299px) {
  .carousel-item.item-5 {
    background-position-y: 0;
  }
}

@media (max-width: 1199px) {
  a.nav-link {
    padding: 10px 0 10px 0;
  }
  a.nav-link::after {
    display: none !important;
  }
  .navbar-nav .nav-item .dropdown-menu {
    position: static;
  }
  .stock-quotes-iframe {
    height: 900px;
  }
}

@media (max-width: 1099px) {
  .bg-chocolate-color-1 h3 {
    margin: 30% 0 1em 0;
  }
}

@media (max-width: 991px) {
  .carousel-item.item-1,
  .carousel-item.item-2,
  .carousel-item.item-3,
  .carousel-item.item-4,
  .carousel-item.item-5,
  .carousel-item.item-6 {
    height: 450px;
    background-position-y: 0;
  }
  .subpages-menu > .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .subpages-menu ul {
    display: flex;
    flex-wrap: wrap;
  }
  .subpages-menu ul li {
    text-align: center;
    width: 50%;
  }
  .hp-bg-grey {
    height: 290px !important;
  }
  .bg-chocolate-color-1.p-5 {
    padding: 30px 30px !important;
  }
  .furniture-img-slider .slick-prev {
    top: 80px;
    right: -50px;
  }
  .furniture-img-slider .slick-next {
    top: 80px;
    right: -105px;
  }
  .bg-chocolate-color-1 h3 {
    margin: 24% 0 1em 0;
    font-size: 20px;
  }
  .top-slider h2 {
    margin: 0 1em 0 0;
  }
  .top-slider .web-btn-red a {
    min-width: 145px;
    width: 145px;
  }
  .top-slider .d-inline-flex {
    display: grid !important;
  }
  .top-slider h2 {
    margin: 0 1em 10px 0;
  }
  .stock-quotes-iframe {
    height: 850px;
  }
  .iframe-height,
  .newsroom-iframe {
    height: 138px;
  }
}

@media (max-width: 767px) {
  .pages-banner {
    height: 45vh;
    background-position: top center;
    background-size: contain;
  }
  .pages-banner.contact-banner {
    background-position-y: 35px;
  }
  .p-circle {
    height: 255px;
    width: 255px;
  }
  .p-circle-content {
    width: 85%;
  }
  .icon-hp-row .wrapper br,
  .icon-furniture-row .wrapper br {
    display: none;
  }
  .furniture-img-slider .slick-prev {
    top: unset;
    bottom: -100px;
    right: unset;
    left: 30px;
  }
  .furniture-img-slider .slick-next {
    top: unset;
    bottom: -100px;
    right: unset;
    left: 85px;
  }
  .bg-chocolate-color-1 h3 {
    margin: 7em 0 1em 0;
  }
  img.icons-esg {
    width: 280px;
  }
  .top-home-slider .slick-prev,
  .top-home-slider .slick-next {
    top: 75px;
  }
  .bod-management-section .all-accordion .accordion-button {
    padding: 10px 0 10px 0;
  }
  .bod-management-section .all-accordion .accordion-body {
    padding-left: 86px;
  }
  .director-name h3 {
    font-size: 20px;
  }
  .director-name h5 {
    font-size: 16px;
  }
  .stock-quotes-iframe {
    height: 850px;
  }
  .web-btn-red a {
    padding: 5px 10px;
  }
}

@media (max-width: 600px) {
  .carousel-item.item-1, 
  .carousel-item.item-2, 
  .carousel-item.item-3, 
  .carousel-item.item-4, 
  .carousel-item.item-5, 
  .carousel-item.item-6 {
    height: 350px;
    background-position-y: 35px;
  }
  .pages-banner {
    height: 38vh;
    background-position-x: center;
    background-position-y: 50px;
    background-size: contain;
  }
  .subpages-menu ul {
    display: grid;
  }
  .subpages-menu ul li {
    width: 100%;
    padding: 5px 10px;
  }
}

@media (max-width: 425px) {
  .pages-banner {
    height: 34vh;
  }
  img.icons-esg {
    width: 250px;
  }
  .stock-quotes-iframe {
    height: 850px;
  }
  .sust-border-2 .d-inline-flex {
    display: grid !important;
  }
  .sust-border-2 h5,
  .sust-btn {
    width: 100%;
    padding-bottom: 1.5em;
  }
}

@media (max-width: 375px) {
  .pages-banner {
    height: 29vh;
  }
  .stock-quotes-iframe {
    height: 850px;
  }
}