:root {
  /* Colors: */
  --color-8aa5aa: #8aa5aa;
  --color-c7c7c7: #c7c7c7;
  --color-f2f2f2: #f2f2f2;
  --color-333333: #333333;
  --color-000000: #000000;
  --color-ffffff: #ffffff;

  /* Font/text values */
  --font-family-dm-sans: DM Sans;
  --font-style-normal: normal;
  --font-weight-300: 300px;
  --font-weight-normal: normal;
  --font-size-30: 30px;
  --font-size-50: 50px;
  --character-spacing-0: 0px;
  --character-spacing-1-5: 1.5px;
  --line-spacing-85: 85px;
  --text-transform-uppercase: uppercase;
}

/*=============== HEADER ===============*/
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #131c1f 0% 0% no-repeat padding-box;
  opacity: 1;
  height: 80px;
  display: flex;
  z-index: 10;
}

/*=============== NAV ===============*/
.nav__logo {
  width: 220px;
}

.nav__logo,
.nav__burger,
.nav__close {
  color: #fff;
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger,
.nav__close {
  position: absolute;
  width: 30px;
  height: 30px;
  margin: auto;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 4rem);
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background: #000;
    padding: 0 6px;
    height: 100%;
  }
  #nav-menu .nav_border {
    border-bottom: 1px solid #fff;
  }
    a.nav__logo {
      width: 60%;
  }
  a.nav__logo img {
      width: 35%;
  }
  .nav__data {
      width: 100%;
  }
}

.nav__link {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
  font-size: 16px;
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1rem;
  font-weight: initial;
  transition: transform 0.4s;
}

.dropdown__link {
  padding: 0.5rem 1rem;
  width: 180px;
  color: #fff;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
  font-size: 16px;
}

.dropdown__link i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover {
  color: #fff;
  font-size: 17px;
  transition: font-size 0.3s ease;
}

.dropdown__menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu {
  max-height: 1000px;
  transition: max-height 0.4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 767.98px) {
  .nav__link {
    padding-inline: 1rem;
  }
  .nav__data {
    width: 100%;
/*     padding-right: 20%; */
  padding-left: 0%;   
  }
  a.nav__logo , a.nav__logo img {
    width: 70%;
}

  #brands_banner h2 {
    font-size: 26px;
  }
  .slider-buttons{
    bottom: 180px !important;
  }   
  .row-cols-5>* {
    width: 50%;
  }
  #ESG_body h1 {
    font-size: 28px !important;
    padding: 10% 0 !important;
    line-height: 32px;
    letter-spacing: 1px !important;
}
  #news h3 {
    letter-spacing: normal !important;
    font-size: 24px !important;
    line-height: initial !important;
    font-weight: 500 !important;
  }

}
@media screen and (max-width: 460px) {
  .hero-content {
    padding: 0;
  }
  .hero-content h1 {
    font-size: 26px;
  }
  .slider-buttons {
    left: 8px;
    bottom: 250px;
  }
  .dropdown__menu {
    background: transparent;
    padding: 0 16px;
  }
  #brands_banner h2,
  #teams_banner h2,
  #ESG_banner h2,
  #contact_banner h2,
  #news_banner h2{
    font: normal normal 100 45px/55px DM Sans !important;
    margin-bottom: 0;
  }
  #contact_banner .contact a {
    font: normal normal 300 24px/30px DM Sans;
  font-size: 20px;  
  }
  #news_content .news_link span,
  #news_content .news_link a {
    font-size: 10px !important;
  }
  #whp-plus_banner .contents img {
    width: 180px !important;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: 0.25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  color: #fff;
  }

  .dropdown__item {
    position: relative;
  }

  .dropdown__menu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0px;
    top: 100px;
    opacity: 0;
    padding: 0;
    pointer-events: none;
    transition: opacity 0.3s, top 0.3s;
  }

  .dropdown__link {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__link {
    padding-inline: 1rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 80px;
    pointer-events: initial;
    transition: top 0.3s;
  }

}

/* banner section */

.hero-section {
  height: 90vh;
  overflow: hidden;
}

.hero-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-slide {
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
}

.hero-slider::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  bottom: 0vh;
  left: 0;
  overflow: hidden;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  opacity: 0.4;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 90vh;
  object-fit: cover;
}

.hero-content {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
  position: relative;
  color: #fff;
  width: 100%;
}
.hero-content .col-4 {
    position: relative;
    padding: 2rem 0 3rem;
}
.hero-content .col-4::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 40px;
    bottom: 0;
    left: 50%;
    background: rgb(255 255 255 / 50%);
}
.arrow {
  margin-left: 0.5rem;
  font-size: 20px;
}

.slider-buttons {
  position: absolute;
  display: flex;
  right: 50px;
  bottom: 20px;
}

.arrow-buttons {
    width: 30px;
    height: 50px;
    color: #8AA5AA;
    cursor: pointer;
    padding: 10px;
    margin-right: 0rem;
    user-select: none;
    transition: 0.3s;
}

.arrow-buttons:hover {
  transform: scale(1.05);
}

#brands h1,
#news h1 {
  text-align: center;
  font: normal normal 300 45px/60px DM Sans;
  letter-spacing: 3px;
  color: #8aa5aa;
  opacity: 1;
}
#oversees {
  background: #131c1f 0% 0% no-repeat padding-box;
  opacity: 1;
}
#oversees h1,
#ESG_body h1 {
  text-align: center;
  letter-spacing: 2px;
  color: #ffffff;
  opacity: 1;
  font-size: 3.2rem;
  padding: 0 12px;
}
#news {
  background-image: url("/wp-content/uploads/2023/12/news-background.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#news h3 {
  text-align: left;
  font: normal normal 300 40px/40px DM Sans;
  letter-spacing: 1.5px;
  color: #242c2e;
  opacity: 1;
}
#news .all_news a {
  text-align: center;
  text-decoration: underline;
  font: normal normal normal 24px/30px DM Sans;
  letter-spacing: 0px;
  color: #8aa5aa;
  opacity: 1;
}

footer,
#news_page-accordion,
#whp-plus_accordion {
  background-color: #131c1f;
  padding-top: 100px;
}
footer p,
.footer_bottom p {
  text-align: left;
  font: normal normal normal 20px/33px DM Sans;
  letter-spacing: 1.25px;
  color: #ffffff;
  opacity: 1;
}
.footer hr .footer_bottom .row hr {
  height: 4px;
  width: 100%;
  border: 2px solid #ffffff;
}
.footer_bottom .text-end img {
    width: 34px;
    margin: 0 5px;
}

#brands_banner,
#our_brands,
#teams_banner,
#teams,
#ESG_banner,
#ESG_body,
#contact_banner,
#accordion,
#news_banner,
#news_content,
#news-interior_banner,
#solutions_banner,
#whp-plus_banner {
  background-color: #242c2e;
}
#brands_banner h2,
#teams_banner h2,
#ESG_banner h2,
#contact_banner h2,
#accordion h2,
#news_banner h2,
#solutions_banner h2 {
  text-align: left;
  font: normal normal 100 40px/91px DM Sans;
  letter-spacing: 2px;
  color: #8aa5aa;
  opacity: 1;
}
#news-interior_banner h2,
#whp-plus_banner h2 {
  font: normal normal 100 56px/60px DM Sans;
  letter-spacing: 2px;
  padding-left: 15px;
}
.col-md-6.contents.text-light p.fs-6{
  padding-left: 15px;
}
#whp-plus_banner a {
  text-decoration: underline;
}
#whp-plus_banner button {
  border: 2px solid #8aa5aa;
  color: #8aa5aa;
  text-decoration: none;
}
#whp-plus_banner button:hover {
  background-color: #131c1f;
}
#whp-plus_banner button a {
  text-decoration: none;
}
#whp-plus_banner .contents img{
  width: 300px;
}
.sol-logo {
  width: 35%;
  padding-bottom: 2%;
}
/* Brands page */
#brands_banner .brands_link {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#brands_banner .brands_link span a {
  text-align: left;
  font: normal normal normal 18px/35px DM Sans;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
  margin: 0 12px;
}
#our_brands .brand_head {
  position: relative;
}
#our_brands .brand_head .brand_logo {
  position: absolute;
  bottom: 0;
  background: #ffffff 0% 0% no-repeat padding-box;
  opacity: 1;
  padding: 2rem;
  text-align: center;
}
#our_brands .brand_head .brand_logo p {
    text-align: left;
    font: normal normal 600 16px/24px DM Sans;
    letter-spacing: 0.6px;
    color: #8aa5aa;
    opacity: 1;
    margin-bottom: 25px;
    text-align: center;
}
#our_brands .brand_body p {
  font: normal normal 300 15px/26px DM Sans;
  letter-spacing: 0px;
  color: #ffffff;
  opacity: 1;
}
#our_brands .brand_body .link a {
  text-decoration: underline;
}

#teams_banner hr,
#ESG_body hr,
#contact_banner hr {
  width: 100%;
  border: 2px solid #ffffff;
}

#contact_banner p {
  font: normal normal 300 32px/44px DM Sans !important;
  letter-spacing: 1px;
  color: #ffffff;
  opacity: 1;
}
#contact_banner h6 {
  font: normal normal normal 16px/30px DM Sans;
  letter-spacing: 1.5px;
  color: #8aa5aa;
  text-transform: uppercase;
  opacity: 1;
}
#contact_banner a {
  font: normal normal 300 32px/30px DM Sans;
  letter-spacing: 1.5px;
  color: #ffffff;
  opacity: 1;
}
#contact_banner hr {
    border: none;
    color: #fff;
    margin: 35px 0;
}
#contact_banner .col-md-4.contact {
    margin-bottom: 40px;
}

/* News page */
#news_content .news_link {
  font-size: 14px;
/*   display: flex;
  justify-content: left;
  align-items: center; */
}

/************************ ACCORDION ======================= */

.accordion-container {
  position: relative;
}

.accordion-question {
  display: flex;
  align-items: center;
  column-gap: 0.7rem;
  padding: 1.25rem 0rem 1.25rem 0rem;
  cursor: pointer;
}

.question {
  font-weight: 500;
  margin-top: 0.15rem;
  transition: 0.3s;
  color: #ffffff;
  margin-bottom: 0;
}
#accordion .question .readbio p {
  font-size: 1.2rem !important;
  margin: 0;
}

.question-icon {
  font-size: 1.35rem;
  height: max-content;
  color: #fff;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0.5rem;
  transition: 0.3s;
}

.answer {
/*   font-size: 0.75rem; */
/*   line-height: 1.2rem; */
  color: #ffffff;
}

.accordion-item {
  background: transparent;
  position: relative;
  transition: all 0.25s ease;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.accordion-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
}

.accordion-item:last-child::before {
  display: none;
}

.content {
  overflow: hidden;
  height: 0;
  transition: all 0.25s ease;
}
/* CSS class for the rotated arrow icon */
.accordion-item .ri-arrow-down-s-line {
  transition: transform 0.3s ease;
}

/* Rotate the arrow icon when the specified class is present */
.accordion-item.accordion-open .ri-arrow-down-s-line {
  transform: rotate(-180deg);
}

/* Change question font weight to bold on active ============= */
.accordion-open .question {
/*   font-weight: 600; */
  color: #8aa5aa;
}

.d-flex a img{
  margin-right: 2rem;
}

.executive-title{
  font-size: 35px;
}
.my-hr {
    height: 2px !important;
    opacity: 1;
    border: none !important;
    color: #fff;
}
.contact-logo{
  width: 40%;
}
#our_brands .brand_head .img-fluid {
    width: 100%;
}
#news .news-height a , #news_content .news_link a , .readbio a {
    position: relative;
    width: max-content;
}
#news .news-height a:after , #news_content .news_link a:after , .readbio a:after {
    content: "";
    width: 85%;
    height: 1px;
    background: #8aa5aa;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.5s all;
}
#news .news-height a:hover::after , #news_content .news_link a:hover::after , .readbio a:hover::after {
    opacity: 1;
}
.readbio {
    color: #8aa5aa;
}
.readbio a {
    height: max-content;
}
.readbio a:after{
  width: 100%;
}
.position-text{
  letter-spacing: 0.8px;
}
.bm-headshot {
    width: 70px;
}
.bm-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border: none;
}
.bm-item header.accordion-question {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    width: calc(100% - 100px);
}
.bm-item .content {
    margin-left: 100px;
}
.bm-item.accordion-open header.accordion-question {
    border-color: transparent;
}
#ESG_body hr {
    border-width: 1px;
}
.esg-logos img.img-fluid {
    width: 90%;
}
.footer_bottom hr.text-light {
    width: 65%;
}
.footer_bottom.d-none.d-md-block {
    display: flex !important;
    justify-content: space-between;
}
footer {
    background-color: #131c1f;
    padding-top: 50px;
}
.brand_logo img{
  width: 175px !important;
}
#our_brands .brand_head .brand_logo{
  padding: 1rem 1.5rem;
}
#our_brands .brand_head .brand_logo p{
  margin-bottom: 20px;
}
/* MEDIA QUERIES for accordion =================== */
@media screen and (min-width: 576px) {
  .accordion-container {
    padding: 2.5rem;
    justify-self: center;
    border-radius: 0.75rem;
  }

  .accordion-question {
    padding: 1.5rem 0;
  }

  .question {
    padding-right: 3.5rem;
  }
}

.footer_bottom.d-none.d-md-block.desktop{
/*  display: block !important; */
}
.footer_bottom.d-block.d-md-none.mobile{
  display: none !important;
}

.enquiry_box.p-3.mt-4 {
    display: none;
}
.header-social{
	display: none;
}
.mobile{
	display: none;
}
.site-footer .footer_bottom .text-end {
    padding-left: 15px !important;
    background: #131c1f;
    z-index: 1;
}
.site-footer .footer_bottom p {
    padding-right: 15px;
    background: #131c1f;
    z-index: 1;
}
.site-footer .footer_bottom {
    position: relative;
}
.site-footer .footer_bottom::after {
    content: "";
    position: absolute;
    width: 90%;
    left: 5%;
    top: 35%;
    background: #fff;
    height: 1px;
    transform: translate(0% , -50%);
}
.dropdown__item .mobile-only {
    display: none;
}

@media(max-width: 1118px){
  #news .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .news-height img {
    height: 100%;
  }
  #news h3 {
    font-size: 1.75rem;
    line-height: 1.1;
  }
	.dropdown__item .desktop-only {
		display: none;
	}
	.dropdown__item .mobile-only {
		display: block;
	}
}

@media screen and (max-width: 767px) {
  .footer_bottom.d-none.d-md-block.desktop {
    display: none !important;
  }
  .footer_bottom.d-block.d-md-none.mobile{
    display: block !important;
  }
	footer .container {
    border-top: 1px solid #fff;
	}
 #news_page-accordion, #whp-plus_accordion{
    padding-top: 50px;
  }
  section#brands_banner {
    padding: 0 5%;
  }
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
    width: 90%;
  }
  .px-5 {
    padding-right: 1rem!important;
    padding-left: 1rem!important;
  }
  .px-3 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .contact-logo {
    width: 80%;
  }
  #contact_banner p {
    line-height: initial !important;
    font-size: 20px !important;
    padding-bottom: 20px;
  }
  #contact_banner .col-md-4.contact{
    margin-top: 40px;
  }
  .row.pb-md-5 {
    padding: 5% 0;
  }
  .p-2 {
    padding: 1rem!important;
  }
  #news-interior_banner h2, #whp-plus_banner h2 {
    font-size: 30px !important;
    line-height: 36px;
    letter-spacing: 1px;
  }
  #news-interior_banner h2 {
    padding-left: 0;
  }
  .w-75 {
    width: 100%!important;
  }
  #brands_banner h2, #teams_banner h2, #ESG_banner h2, #contact_banner h2, #accordion h2, #news_banner h2, #solutions_banner h2{
    font-size: 30px;
    line-height: initial;
  }
  .row.text-light.pt-2 .justify-content-center {
    justify-content: left !important;
  }
  .executive-title {
    font-size: 30px;
    padding-top: 15%;
  }
  h3.question {
    font-size: 1.5rem;
  }
  .sol-logo {
    width: 75%;
  }
  .col-md-6.contact {
    padding-top: 15%;
  }
  .footer_bottom.d-block.d-md-none.mobile .d-flex a img {
    margin-right: 0.5rem;
  }
  .readbio p{
    display: none;
  }
  #brands_banner .brands_link span a {
    display: block;
    margin-left: 0;
    font-size: 15px;
  }
  #brands_banner .brands_link {
    justify-content: flex-start;
  }
  #our_brands .brand_head .brand_logo {
    padding: 10px 15px;
    width: 80%;
  }
  #our_brands .brand_head .brand_logo img {
    width: 150px;
  }
  #our_brands .brand_head .brand_logo p {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .brand_details .brand_body {
    padding-left: 0 !important;
    padding-right: 0 !important;
	padding-bottom: 0px !important; 
  }
  .brand_details .brand_body .text-md-end.text-end {
    text-align: left !important;
  }
  .brand_details {
    padding-bottom: 10px !important;
  }
	img.img-fluid.p-15 {
		padding-left: 15px;
	}  
	.accordion-item.text-light.bm-item {
		margin-bottom: 10% !important;
	}	
	.team-name h3 {
		width: 100%;
	}
	.footer_bottom.d-block.d-md-none .d-flex a img {
		margin-right: 0.3rem;
		width: 25px;
	}
	.footer_bottom hr.text-light {
		width: 100%;
		opacity: 1;
	}
		#oversees h1 {
    font-size: 36px;
    padding: 0;
    margin: 0;
}
	.hero-content .container-fluid {
		padding: 0;
		width: 95%;
	}
	.hero-content p {
		font-size: 15px;
		width: 52%;
		margin: 0 auto;
	}
	#ESG_body .row.gy-5 + hr, #ESG_body .row.gy-5 hr {
		display: none;
	}
	#news_page-accordion header .question {
		width: 100%;
		margin-bottom: 10px;
	}
	#news_page-accordion header {
		display: block !important;
	}
	.mobile{
		display: block;
	}
	.desktop{
		display: none;
	}
	.site-footer .footer_bottom::after{
		display: none;
	}
}

@media(max-width: 1118px){
	.dropdown__item span .dropdown__arrow {
		color: #fff;
		position: absolute;
		right: 0px;
		top: 0px;
		padding: 16px;
	}
	.dropdown__item {
		position: relative;
	}
	.dropdown__item:hover .dropdown__menu {
		max-height: 0;
		transition: max-height 0.4s ease-in;
	}
	.dropdown__item.open .dropdown__menu {
		max-height: 1000px;
		transition: max-height 0.4s ease-in;
	}
	.dropdown__item:hover .dropdown__arrow {
		transform: rotate(0deg);
	}
	.dropdown__item.open .dropdown__arrow {
		transform: rotate(180deg);
	}
	.header-social{
		display: block;
	}
	.header-social hr.text-light {
		width: 100%;
		opacity: 1;
	}
	.footer_bottom.header-social .d-flex a img {
		margin-right: 0.5rem;
		width: 25px;
	  }
}