@font-face {
	font-family: Henju-Regular;
	src: url("../css/fonts/Henju-Regular.woff2") format("woff2");
}

@font-face {
	font-family: Henju-Medium;
	src: url("../css/fonts/Henju-Medium.woff2") format("woff2");
}

@font-face {
	font-family: Henju-SemiBold;
	src: url("../css/fonts/Henju-SemiBold.woff2") format("woff2");
}

@font-face {
	font-family: Henju-Bold;
	src: url("../css/fonts/Henju-Bold.woff2") format("woff2");
}

@font-face {
	font-family: Henju-ExtraBold;
	src: url("../css/fonts/Henju-ExtraBold.woff2") format("woff2");
}

@font-face {
	font-family: Henju-Light;
	src: url("../css/fonts/Henju-Light.woff2") format("woff2");
}

@font-face {
	font-family: Henju-ExtraLight;
	src: url("../css/fonts/Henju-ExtraLight.woff2") format("woff2");
}

@font-face {
	font-family: Eastman-Regular;
	src: url("../css/fonts/Eastman-Regular.woff2") format("woff2");
}

@font-face {
	font-family: Eastman-Bold;
	src: url("../css/fonts/Eastman-Bold.woff2") format("woff2");
}

@font-face {
	font-family: dmsans;
	src: url("../css/fonts/dmsans.woff2") format("woff2");
}

:root {
	--black: #000000;
	--bon-jour: #e0e0e0;
	--eerie-black: #171717;
	--granite-gray: #666666;
	--lightsystem-backgroundprimary: #ffffff;
	--mine-shaft: #333333;
	--pale-sky: #6b7280;
	--shady-lady: #aaaaaa;
	--tango: #f26f21;

	--font-family-henju-bold: "Henju-Bold", Helvetica;
	--font-family-henju-extrabold: "Henju-ExtraBold", Helvetica;
	--font-family-henju-medium: "Henju-Medium", Helvetica;
	--font-family-henju-regular: "Henju-Regular", Helvetica;
	--font-family-henju-semibold: "Henju-SemiBold", Helvetica;
	--font-family-henju-light: "Henju-Light", Helvetica;
	--font-family-henju-extralight: "Henju-ExtraLight", Helvetica;
	--font-family-inter: "Inter", Helvetica;
	--font-family-eastman-regular: "Eastman-Regular", Helvetica;
	--font-family-eastman-bold: "Eastman-Bold", Helvetica;
	--font-family-dmsans: "dmsans", Helvetica;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family-henju-regular);
	margin: 0;
	background: var(--lightsystem-backgroundprimary);
	overflow-x: hidden;
}

html, body {
	overflow-x: hidden;
	width: 100%;
}

b,
strong {
	font-family: var(--font-family-henju-medium);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/* list-style: none; */
	/* text-decoration: none; */
	z-index: 2;
}

/*	Preloader  */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
	overflow: hidden;
}

.loader-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.loader-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: center;
    display: block;
    z-index: 1;
}

.loader-border-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
	pointer-events: none;
}

.loader-border-svg rect {
    fill: none;
    stroke: var(--tango);
    stroke-width: 1;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: snakeBorder 3s ease-in-out infinite;
    rx:	1;
    ry: 1;
	/* vector-effect: non-scaling-stroke; */
}

@keyframes snakeBorder {
    0% {
        stroke-dashoffset: 400;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes zoomInFadeOut {
	0% {
	  opacity: 1;
	  transform: scale(0.5);
	}
	100% {
	  opacity: 0;
	  transform: scale(3);
	}
}

.preloader-zoom-in-out {
	animation: zoomInFadeOut 0.8s ease forwards;
	transform-origin: center center;
}
  
#status {
	width:200px;
	height:200px;
	position:absolute;
	left:50%; /* centers the loading animation horizontally one the screen */
	top:50%; /* centers the loading animation vertically one the screen */
	background-image:url("../assets/component/loader.gif"); /* path to your loading animation */
	background-repeat:no-repeat;
	background-position:center;
	margin:-100px 0 0 -100px; /* is width and height divided by two */
}

/*	Preloader End  */

/*	Scrol To Top  */

.scrollToTop {
	bottom: 60px;
	border-radius: 4px;
	display: none;
	font-size: 26px;
	line-height: 45px;
	font-weight: bold;
	height: 40px;
	position: fixed;
	right: 50px;
	text-align: center;
	text-decoration: none;
	width: 40px;
	z-index: 999999;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.5);    
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
  
.scrollToTop:hover,
.scrollToTop:focus{
	background-color: var(--tango);
	color: var(--black);
	text-decoration: none;
	outline: none;
}

/*	Scroll To Top End  */

/*	Search Form  */

.search-icon {
	cursor: pointer;
}

.search-box {
	position: absolute;
	right: 250px;
	height: 45px;
	max-width: calc(70% - 150px);
	width: 100%;
	border: 1px solid var(--tango);
	border-radius: 6px;
	opacity: 0;
	pointer-events: none;
	transition: all 0.2s linear;
	background-color: var(--lightsystem-backgroundprimary);
}

.openSearch .search-box {
	opacity: 1;
	pointer-events: auto;
}

.search-box form {
	height: 100%;
	width: 100%;
}

.search-inner {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 15px;
}

.search-inner i {
	color: var(--tango);
	font-size: 16px;
	margin-right: 10px;
}

.search-inner input {
	flex: 1;
	height: 100%;
	font-size: 16px;
	background-color: transparent;
	border: none;
	outline: none;
}

.openSearch .nav-link {
	opacity: 0;
	pointer-events: none;
}

/* .search-box i {
	position: absolute;
	left: 15px;
	top: 50%;
	color: var(--tango);
	transform: translateY(-50%);
} */

/* .search-box input {
	font-size: 12px;
	height: 100%;
	width: 100%;
	background-color: var(--lightsystem-backgroundprimary);
	border: none;
	outline: none;
	border-radius: 6px;
	padding: 0 15px 0 45px;
} */

/*	Search Form End	 */

/*	Navbar	*/

.navbar {
	padding: 0;
	z-index: 999999;
	transition-property: height, background-color, top;
    transition-duration: .05s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
}

.navbar-wrapper {
	height: 100px;
	padding-bottom: 40px;
	padding-top: 40px;
}

.navbar-logo {
	width: 140px;
	outline: none;
	box-shadow: none;
}

.navbar-logo:focus,
.navbar-brand:focus {
    outline: none;
    box-shadow: none;
}

/* .navbar-collapse {
	flex-grow: 0 !important;
} */

nav.bg-transparent {
	transition: .3s ease-in;
}

.nav-bg-square {
	background-image: url("../assets/component/bg_logo_square.png");
	background-repeat: no-repeat;
    background-position: left;
	background-size: 300px 100px;
}

.nav-color {
	background-color: var(--lightsystem-backgroundprimary);
	transition: .3s ease-in-out;
}

.nav-color:hover {
	color: var(--tango);
}

.nav-toggle-icon {
	font-size: 20px;
	color: var(--tango);
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.top-menu {
	z-index: -1;
}

.menu {
	display: flex;
	align-items: center;
	/* gap: 10px; */
}

.nav-link {
	font-family: var(--font-family-henju-semibold);
	font-size: 14px;
	color: var(--lightsystem-backgroundprimary);
	/* font-weight: 600; */
	transition: all 0.2s linear;
}

/* .nav-link:hover,
.nav-link:focus {
	font-weight: 700;
}

.nav-link.active {
	font-weight: 700;
} */

/* .navbar .nav-item .dropdown-menu {
	transition:.3s;
	margin-top: 0;
	left: auto;
	background-color: var(--tango);
	border: 0;
	border-radius: 25px;
	padding: 15px;
	width: 300px;
} */

.nav-dropdown-icon {
	font-size: 8px;
    margin-left: .255em;
    vertical-align: .255em;
	-moz-transition: all .2s linear;
	-webkit-transition: all .2s linear;
	transition: all .2s linear;
}

.nav-dropdown-icon.rotate {
	-moz-transition: rotate(180deg);
	-webkit-transition: rotate(180deg);
	transition: rotate(180deg);
}

.scrolled {
	color: var(--eerie-black) !important;
	transition: .3s!important;
}

.scrolled:hover {
	color: var(--tango)!important;
}

.active-home {
	/* font-weight: 700; */
	color: var(--lightsystem-backgroundprimary)!important;
}

.active {
	/* font-weight: 700; */
	color: var(--tango)!important;
}

.tools-wrapper {
	display: flex;
	align-items: center;
	gap: 20px;
}

.switch-wrapper {
	background-color: transparent;
    height: 36px;
}

.switch-wrapper-in {
	background-color: var(--tango);
    border-radius: 18px;
    height: 36px;
}

.toggle-switch-lang {
	background-color: transparent;
    border-radius: 15px;
    height: 30px;
	border: none;
	margin: 3px 5px;
}

.toggle-switch-lang .active {
	background-color: var(--lightsystem-backgroundprimary);
	border: none;
	border-radius: 15px;
}

.switch-lang {
	font-size: 12px;
	color: var(--lightsystem-backgroundprimary);
	display: flex;
    align-items: center;
	border-radius: 15px !important;
	border: none;
}

.switch-lang:not(.active):hover {
	color: var(--lightsystem-backgroundprimary)!important;
}

/*	Navbar End	*/

/*	Hero Section  */

#hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
	display: flex;
	align-items: center;
    padding: 60px 0;
	position: relative;
	overflow: hidden;
}

.hero-content-wrapper {
    height: 100%;
}

.hero-description-wrapper {
	max-width: 600px;
	padding: 20px;
}

.hero-image-wrapper {
	flex-shrink: 0;
	padding: 20px;
}

.hero-main-image {
	width: 100%;
	max-width: 700px;
    height: auto;
}

.img-hero {
	background-color: transparent;
	/* height: 100%; */
}

.img-hero-component {
	bottom: 10%;
}

.img-hero img {
	z-index: 1;
}

.img-hero a {
	cursor: pointer;
}

.play-button {
	background-color: transparent;
	height: 120px;
	width: 120px;
    position: absolute;
	bottom: 40%;
    right: 27%;
}

#shadow-motor-img {
	mix-blend-mode: multiply;
	right: 200px !important;
}

#shadow-car-img {
	mix-blend-mode: multiply;
	right: 150px !important;
}

.hero-tagline {
	margin-top: auto !important;
	margin-bottom: auto !important;
}

.hero-tagline-title {
	font-family: var(--font-family-henju-semibold);
	color: var(--lightsystem-backgroundprimary);
	/* font-weight: 600; */
	font-size: 60px;
	/* line-height: 80px; */
	letter-spacing: -3px;
	width: 750px;
}

.hero-tagline-summary {
	font-family: var(--font-family-henju-regular);
	color: var(--lightsystem-backgroundprimary);
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0px;
	/* line-height: 31px; */
	margin-bottom: 10px;
	margin-top: 10px;
	width: 500px;
}

.ourbusiness-title-hero {
	font-family: var(--font-family-henju-regular);
	color: #ffffffb2;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 2.88px;
	/* line-height: 31px; */
	width: 171px;
	margin-bottom: 0;
	text-transform: uppercase;
}

.logo-opcos {
	background-color: transparent;
	width: 80%;
}

.fancybox__backdrop {
	opacity: 0.95!important;
}

/*	Hero Section End  */

/*	Homepage - About Us Section	 */

#homepage-about-us {
	background-color: var(--lightsystem-backgroundprimary);
	padding: 0;
}

.homepage-about-us-photo {
	width: 100%;
	height: 471px;
}

.homepage-about-us-photo img {
	width: 100%;
}

.homepage-about-us-summary {
	font-family: var(--font-family-henju-semibold);
	font-size: 40px;
	/* font-weight: 600; */
	line-height: 55px;
	color: var(--black);
	margin-top: 50px;
}

.net-revenue-value,
.total-network-value,
.social-investment-value {
	font-family: var(--font-family-henju-bold);
    font-size: 30px;
    line-height: 20px;
    color: var(--eerie-black);
    /* font-weight: 700; */
}

.homepage-about-us-achievement {
    margin: 100px 0 10px;
}

.net-revenue-wrapper,
.total-network-wrapper,
.social-investment-wrapper {
    margin: 10px 10px;
}

.net-revenue-label,
.total-network-label,
.social-investment-label {
	font-family: var(--font-family-henju-regular);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--eerie-black);
	/* text-transform: uppercase; */
}

.achievement-update {
	font-family: var(--font-family-henju-regular);
    color: var(--eerie-black);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    margin-left: 10px;
}

/*	Homepage - About Us Section	End */

/* Scroll To Explore */

.scroll-explore-wrapper {
	background-color: transparent;
	margin: -15% auto 0;
	position: relative;
	z-index: 3;
}

.scroll-explore-wrapper img {
	width: 100%;
	height: auto;
}

/* Scroll To Explore End */

/*	Homepage - Our Business Section	 */

#homepage-our-business {
	background-color: var(--lightsystem-backgroundprimary);
	padding: 20px 0;
	margin-top: 96px;
}

.homepage-our-business-slider-wrapper {
	margin-top: 20px;
	padding: 20px 40px;
}

.homepage-our-business-text h1 {
	font-family: var(--font-family-henju-medium);
    color: var(--eerie-black);
    font-size: 70px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 30px;
    text-align: center;
}

.homepage-our-business-text h3 {
	font-family: var(--font-family-henju-bold);
    font-size: 30px;
    /* font-weight: 700; */
    color: var(--tango);
	padding-top: 20px;
	letter-spacing: 0px;
    line-height: 30px;
    text-align: center;
}

.homepage-our-business-text p {
	font-family: var(--font-family-henju-semibold);
    color: var(--eerie-black);
    font-size: 20px;
    /* font-weight: 600; */
	width: 70%;
	margin: 0 auto 20px;
	padding: 14px 0;
}

.business-text-transition {
	-webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

#ourBusinessCarousel {
    height: auto;
	width: 85%;
	margin: 0 auto;
}

/* .swiper-container {
    height: auto;
	width: 85%;
	margin: 0 auto;
} */

.swiper-slide {
	display: flex;
	justify-content: center;
	align-items:center;
	background-color: transparent;
	font-size: 5rem;
	color: var(--shady-lady);
	border: none;
	padding: 0 10px;
}

.swiper-slide img {
	width: 100%;
	height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    opacity: .5;
    color: lightgrey;
    font-weight: 700;
}

.btn-view-more-slider {
	border: 1px solid #e5e7eb;
    background-color: transparent;
    border-radius: 30px;
    height: 50px;
    padding: 22px 64px;
    width: 200px;
	font-family: var(--font-family-henju-medium);
    color: var(--lightsystem-backgroundprimary);
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 20%;
    left: 0;
    right: 0;
    margin: auto;
    white-space: nowrap;
    letter-spacing: 0.90px;
    font-size: 14px;
	display: none;
	text-transform: uppercase;
}

.btn-view-more-slider:hover,
.btn-view-more-slider:focus {
	border-color: var(--tango)!important;
    background-color: #e5e7eb!important;
    color: var(--tango)!important;
}

/*	Homepage - Our Business Section	End */

/*	Homepage - Latest Report Section */

#homepage-last-report {
	background-color: transparent;
    background-image: url("../assets/component/bg-ar-sr-report.png");
    background-size: cover;
    background-position: center;
	padding: 20px 0;
	border-radius: 150px 150px 0 0;
}

.homepage-last-report-ar,
.homepage-last-report-sr {
	width: 100%;
	height: 600px;
}

.homepage-last-report-ar img,
.homepage-last-report-sr img {
	width: 80%;
}

.start-60 {
	left: 50%;
}

.last-report-line {
	background-color: #D1D5DB;
	height: 741px;
}

.last-report-ar-text,
.last-report-sr-text {
	font-family: var(--font-family-henju-bold);
    font-size: 26px;
	color: var(--tango);
    letter-spacing: 0.15px;
    line-height: 36px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.btn-view-all-ar-report,
.btn-view-all-sr-report {
	align-items: center;
	background-color: var(--tango);
	border-radius: 30px;
	height: 60px;
	display: flex;
	gap: 10px;
	justify-content: center;
	width: 300px;
	letter-spacing: 0.9px;
	line-height: 16px;
	text-align: center;
	font-family: var(--font-family-henju-medium);
	font-size: 15px;
	color: var(--lightsystem-backgroundprimary);
	position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
	text-transform: uppercase;
}

.btn-view-all-ar-report:hover,
.btn-view-all-sr-report:hover,
.btn-view-all-ar-report:focus,
.btn-view-all-sr-report:focus {
	background-color: var(--lightsystem-backgroundprimary)!important;
	border: 1px solid var(--tango)!important;
	color: var(--tango)!important;
}

/*	Homepage - Latest Report Section End */

/*	Homepage - ESG Section	*/

#homepage-esg {
	background-color: #f2f2f2;
	padding-top: 100px;
	max-height: 100%;
	/* height: 750px; */
}

.homepage-esg-wrapper {
	width: 100%;
}

.homepage-esg-title {
	color: #1c1c1c;
	font-family: var(--font-family-henju-bold);
	font-size: 40px;
	letter-spacing: 0px;
	line-height: 45px;
	padding: 0 20px;
}

.homepage-accordion-esg-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	margin-bottom: 100px;
}

.homepage-accordion-esg {
	display: flex;
	width: 100%;
	height: 500px;
	flex-direction: row;
	gap: 10px;
}

.homepage-accordion-esg-item {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 100%;
	position: relative;
	flex: 1 1 0%;
	overflow: hidden;
	/* transition: flex .4s; */
	border-radius: 50px;
	cursor: pointer;
}

.esg-item-expanded {
	flex: 3 1 0%;
}

.homepage-accordion-esg-content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 20px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	/* transition: background-color .4s; */
	z-index: 1;
	visibility: hidden;
}

.homepage-accordion-esg-content .homepage-accordion-esg-title {
	visibility: visible;
	opacity: 1;
	transform-style: preserve-3d;
	font-size: 25px;
	transform: translate3d(0, -60px, 0);
	line-height: 1;
	color: var(--lightsystem-backgroundprimary);
	font-family: var(--font-family-henju-bold);
	position: relative;
    bottom: 10%;
}

.esg-item-expanded .homepage-accordion-esg-content .homepage-accordion-esg-title {
	visibility: visible;
    opacity: 1;
    transform: none;
    /* transition: all .3s; */
    display: block;
    position: relative;
    top: -30%;
    bottom: 0;
    text-align: left;
    letter-spacing: 0.15px;
    line-height: 36.0px;
    padding: 0 20px;
}

.homepage-accordion-esg-content .homepage-accordion-esg-summary {
	visibility: hidden;
	opacity: 0;
	position: absolute;
}

.esg-item-expanded .homepage-accordion-esg-content .homepage-accordion-esg-summary {
	visibility: visible;
    opacity: 1;
    transform: none;
    /* transition: all .3s; */
    position: absolute;
    z-index: 1;
    font-family: var(--font-family-henju-regular);
    font-size: 18px;
    color: var(--lightsystem-backgroundprimary);
    letter-spacing: 0.54px;
    line-height: 24.8px;
    text-align: left;
    padding: 0 40px;
    width: 75%;
    left: 0;
}

.homepage-accordion-esg-content .homepage-accordion-esg-btn {
	visibility: hidden;
	opacity: 0;
	position: absolute;
}

.esg-item-expanded .homepage-accordion-esg-content .homepage-accordion-esg-btn {
	visibility: visible;
    opacity: 1;
    transform: none;
    /* transition: all .3s; */
    position: absolute;
    z-index: 1;
	letter-spacing: 0.90px;
	line-height: 16px;
	text-align: center;
	white-space: nowrap;
	font-family: var(--font-family-henju-medium);
	color: var(--lightsystem-backgroundprimary);
    border: 1px solid #e5e7eb;
	border-radius: 30px;
	height: 60px;
	padding: 22px 64px;
	left: 7%;
    bottom: 7%;
	text-transform: uppercase;
}

.homepage-accordion-esg-content .homepage-accordion-esg-btn:hover,
.homepage-accordion-esg-content .homepage-accordion-esg-btn:focus {
	border: none !important;
    background-color: #e5e7eb !important;
    color: var(--tango) !important;
}

.homepage-accordion-esg-content .accordion-esg-expand-button {
	visibility: visible;
    opacity: 1;
    transform: none;
    /* transition: all .3s; */
	background-color: var(--lightsystem-backgroundprimary);
	border: none;
    border-radius: 50%;
    border: none;
    padding: 20px;
	position: absolute;
	bottom: 5%;
	width: 79px;
    height: 79px;
}

.homepage-accordion-esg-content .accordion-esg-expand-button:hover {
	background-color: var(--tango);
}

.homepage-accordion-esg-content .accordion-esg-expand-button i {
	font-size: 30px;
	color: var(--tango);
}

.homepage-accordion-esg-content .accordion-esg-expand-button:hover i {
	color: var(--lightsystem-backgroundprimary);
}

.esg-item-expanded .homepage-accordion-esg-content .accordion-esg-expand-button {
	visibility: hidden;
    opacity: 0;
    position: absolute;
}

/*	Homepage - ESG Section End	*/

/*	Homepage - Microsite Section  */

#homepage-microsite {
	background-color: var(--lightsystem-backgroundprimary);
	padding: 20px 0;
	margin: 100px 0;
}

#micrositeCarousel {
	width: 100%;
}

.swiper-microsite-button-next,
.swiper-microsite-button-prev {
	position: absolute;
	top: 50%;
	z-index: 10;
}

.swiper-microsite-slide img {
	border-radius: 30px;
	/* cursor: pointer; */
}

.swiper-microsite-pagination {
	position: relative;
}

.swiper-microsite-pagination-outside {
	text-align: center;
	margin-top: 20px;
}

.swiper-pagination-bullet {
	background-color: #545454 !important;
	border-radius: 6.5px !important;
    height: 10px !important;
	width: 33px !important;
}

.swiper-pagination-bullet-active {
	background-color: #f26f21 !important;
    border-radius: 6.5px !important;
    height: 10px !important;
    width: 85px !important;
}

/*	Homepage - Microsite Section End  */

/*	Homepage - Stock Section */

#homepage-stock {
	background-color: transparent;
    background-image: url("../assets/component/bg-stock.png");
    background-size: cover;
	background-position: center;
	padding: 20px 0;
	border-radius: 150px 150px 0 0;
	max-height: 100%;
	/* height: 1400px; */
}

.homepage-stock-container {
	padding: 0 60px;
}

.homepage-stock-wrapper {
	width: 100%;
	margin-top: 80px;
	padding-bottom: 200px;
}

.stock-text {
	font-family: var(--font-family-henju-semibold);
    font-size: 55px;
	/* font-weight: 600; */
	color: var(--lightsystem-backgroundprimary);
    letter-spacing: 0px;
    line-height: 45px;
}

.tradingview-widget-container {
	height: 600px!important;
	margin: 100px 0;
}

.tradingview-widget-container iframe {
	border-radius: 15px!important;
}

/*	Homepage - Stock Section End  */

/*	Homepage - News Section */

#homepage-news {
	background-color: transparent;
    background-image: url("../assets/component/bg-homepage-news.png");
    background-size: cover;
	background-position: center;
	padding: 20px 0;
	position: relative;
	margin: -15% auto 0;
	border-radius: 150px 150px 0 0;
	max-height: 100%;
	/* height: 1100px; */
}

.homepage-news-header-wrapper {
	margin-top: 80px;
}

.homepage-news-header-text {
	font-family: var(--font-family-henju-semibold);
    font-size: 55px;
	/* font-weight: 600; */
	color: var(--black);
    letter-spacing: 0px;
    line-height: 45px;
	white-space: nowrap;
}

.homepage-news-card-wrapper {
	margin: 60px;
}

.homepage-news-card-content-wrapper {
	padding: 0 15px;
}

.homepage-news-card {
	border: 0px none;
	padding-bottom: 20px;
}

.homepage-news-card img {
	width: 300px;
	height: 230px;
	object-fit: cover;
	border-radius: 20px;
}

.homepage-card-news-category {
	font-family: var(--font-family-henju-regular);
	font-size: 14px;
	color: var(--pale-sky);
	letter-spacing: 0px;
	line-height: 14px;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.homepage-card-news-title {
	font-family: var(--font-family-henju-bold);
	font-size: 18px;
	color: var(--black);
	letter-spacing: 0px;
	line-height: 22px;
	text-align: left;
	margin-bottom: 30px;
}

.homepage-card-news-button {
	align-items: center;
    background-color: var(--tango);
    border-radius: 30px;
    justify-content: center;
    height: 60px;
    display: flex;
    gap: 10px;
    padding: 22px 64px;
	font-family: var(--font-family-henju-medium);
	color: var(--lightsystem-backgroundprimary);
	font-size: 15px;
	letter-spacing: 0.90px;
	line-height: 16px;
	text-align: center;
	white-space: nowrap;
	text-transform: uppercase;
}

.homepage-visit-newsroom-button-wrapper {
	margin-bottom: 200px;
}

.homepage-visit-newsroom-button {
	align-items: center;
    background-color: var(--tango);
    border-radius: 30px;
    justify-content: center;
    height: 60px;
    display: flex;
    gap: 10px;
    padding: 22px 64px;
	font-family: var(--font-family-henju-medium);
	color: var(--lightsystem-backgroundprimary);
	font-size: 15px;
	letter-spacing: 0.90px;
	line-height: 16px;
	text-align: center;
	white-space: nowrap;
	margin-bottom: 100px;
	text-transform: uppercase;
}

.homepage-card-news-button:hover,
.homepage-visit-newsroom-button:hover,
.homepage-card-news-button:focus,
.homepage-visit-newsroom-button:focus {
	background-color: var(--lightsystem-backgroundprimary)!important;
	border: 1px solid var(--tango)!important;
	color: var(--tango)!important;
}

/*	Homepage - News Section End  */

/*	About Us - Header Section	*/

#aboutus-header {
	background-color: transparent;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	height: 800px;
}

.aboutus-container {
	margin: 0 70px;
}

.aboutus-content-wrapper {
	position: relative;
	display: flex;
    flex-direction: row;
}

.aboutus-description-wrapper {
	position: absolute;
	margin-top: 200px;
	width: 60%;
	padding: 0 10px;
	z-index: 4;
}

.aboutus-description-title {
	font-family: var(--font-family-henju-semibold);
	color: var(--lightsystem-backgroundprimary);
	font-size: 80px;
	/* font-weight: 700; */
	letter-spacing: 0px;
	line-height: 50px;
	text-align: left;
	padding: 0 30px;
	/* position: absolute;
	top: 250px; */
}

.aboutus-description-summary {
	font-family: var(--font-family-henju-medium);
	color: var(--lightsystem-backgroundprimary);
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0px;
	line-height: 30px;
	text-align: left;
	padding: 10px 30px;
	/* position: absolute;
	top: 300px; */
}

.btn-read-more-aboutus-wrapper {
	padding: 10px 30px;
}

.btn-read-more-aboutus {
	/* position: absolute;
	top: 450px; */
	transition: all .3s;
	letter-spacing: 0.90px;
	line-height: 16px;
	text-align: center;
	white-space: nowrap;
	font-family: var(--font-family-henju-medium);
	color: var(--lightsystem-backgroundprimary);
	border: 1px solid #e5e7eb;
    border-radius: 30px;
    height: 60px;
    padding: 22px 64px;
}

.btn-read-more-aboutus:hover,
.btn-read-more-aboutus:focus {
	border: none!important;
    background-color: #e5e7eb!important;
    color: var(--tango)!important;
}

.aboutus-image-wrapper {
	background-color: transparent;
}

.aboutus-image-wrapper img {
	position: absolute;
	right: -100px;
	height: 100%;
	width: auto;
	top: 0;
}

/*	About Us - Header Section End	*/

/*	About Us - Sub Menu Section  */

#aboutus-submenu {
	position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    background-color: #111827;
    box-shadow: 0px 4px 6px #0000001a, 0px 2px 4px #0000001a;
    z-index: 1032;
    opacity: 0.65;
	transition-property: height, background-color, top;
    transition-duration: .2s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
}

.aboutus-submenu-wrapper {
	transition-property: height, background-color, top;
    transition-duration: .2s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
}

.aboutus-submenu {
	height: 60px;
	left: 0px;
	display: flex;
    justify-content: flex-start;
    align-items: center;
	padding: 0;
}

.aboutus-submenu-list {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-left: 1rem;
}

.aboutus-submenu-item {
	list-style: none;
    display: inline-block;
	padding: 0 10px;
}

.aboutus-submenu-link {
	font-family: var(--font-family-henju-bold);
	font-size: 12px;
	color: var(--lightsystem-backgroundprimary);
	/* font-weight: 600; */
	padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
	text-decoration: none;
	background: 0 0;
	border: 0;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.aboutus-submenu-link:hover,
.aboutus-submenu-link:active {
	/* font-weight: 700; */
	color: var(--tango);
}

/*	About Us - Sub Menu Section End  */

/*  About us - Milestone Section  */

#aboutus-milestone {
	background-color: transparent;
}

.aboutus-milestone-wrapper {
	display: flex;
	flex-direction: row;
}

.aboutus-milestone-image-wrapper {
	background-color: #1c6042;
	width: 50%;
}

.multiple-image {
	display: flex!important;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: center;
    align-items: center;
}

.multiple-image img {
	width: 50%;
    object-fit: cover;
}

.aboutus-milestone-description-wrapper {
	background-color: #003399;
	width: 50%;
	padding: 50px 50px 0 50px;
}

.aboutus-milestone-title {
	font-family: var(--font-family-henju-bold);
	color: var(--tango);
	font-size: 35px;
	/* font-weight: 700; */
	letter-spacing: 0px;
	text-align: left;
	padding: 0 0 30px 0;
}

.aboutus-milestone-year-wrapper {
	background-color: transparent;
	padding: 0 0 30px 0;
}

.aboutus-milestone-year-wrapper .slick-prev {
	color: #fff;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 10%;
    padding: 0;
	z-index: 1000;
}

.aboutus-milestone-year-wrapper .slick-next {
	color: #fff;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 10%;
    padding: 0;
	z-index: 1000;
}

.aboutus-milestone-year-wrapper .slick-prev:focus,
.aboutus-milestone-year-wrapper .slick-next:focus {
	border: none!important;
	outline: none!important;
}

.aboutus-milestone-year-item {
	padding: .8rem 0;
	color: var(--lightsystem-backgroundprimary);
	font-family: var(--font-family-henju-regular);
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0.72px;
	line-height: normal;
	text-align: center;
	transition: all ease-in-out .25s;
}

.aboutus-milestone-year-item:hover {
	cursor: pointer;
}

.aboutus-milestone-year-item.slick-current {
	font-family: var(--font-family-henju-bold);
    /* font-weight: 700; */
}

.aboutus-milestone-content-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	/* padding: 1.5rem 0; */
}

.aboutus-milestone-content {
	text-align: center;
}

.aboutus-milestone-content h5 {
	font-family: var(--font-family-henju-semibold);
    color: #fff;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 36.4px;
    text-align: left;
}

.aboutus-milestone-content p {
	font-family: var(--font-family-henju-regular);
	color: var(--lightsystem-backgroundprimary);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 36.4px;
	text-align: justify;
	margin-bottom: 2rem;
}

.aboutus-milestone-content.bigger h5 {
	font-family: var(--font-family-henju-semibold);
    color: #fff;
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 36.4px;
    text-align: left;
}

.aboutus-milestone-content.bigger p {
	font-family: var(--font-family-henju-regular);
	color: var(--lightsystem-backgroundprimary);
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 36.4px;
	text-align: justify;
	margin-bottom: 2rem;
}

/*  About Us - Milestone Section End  */

/*	About us - Vision & mission Section	 */

#aboutus-vision-mission {
	background-color: transparent;
}

.aboutus-vision-mission-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
}

.aboutus-vision-mission-content {
	position: absolute;
	top: 60%;
	display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
	height: auto;
}

.aboutus-mission-card {
	background-color: #003399e6;
    border-radius: 0 10px 10px 0;
    border: 0;
	max-width: 45%;
	padding: 35px;
}

.aboutus-vision-card {
	background-color: #f26f21e6;
    border-radius: 10px 0 0 10px;
    border: 0;
	max-width: 45%;
	padding: 35px;
}

.aboutus-mission-title,
.aboutus-vision-title {
	font-family: var(--font-family-henju-semibold);
    font-size: 35px;
    color: var(--lightsystem-backgroundprimary);
    /* font-weight: 600; */
    letter-spacing: 0px;
    line-height: 42px;
    text-align: left;
}

.aboutus-mission-description {
	font-family: var(--font-family-henju-regular);
    color: var(--lightsystem-backgroundprimary);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 30px;
    text-align: left;
}

.aboutus-vision-description {
	font-family: var(--font-family-henju-semibold);
	color: var(--lightsystem-backgroundprimary);
	font-size: 26px;
	/* font-weight: 600; */
	letter-spacing: 0px;
	line-height: 37px;
	text-align: left;
}


/*	About us - Vision & mission Section	End  */

/*	About us - Credo Section  */

#aboutus-credo {
	background-color: #f5f5f5;
}

.aboutus-credo-wrapper {
	display: flex;
	flex-direction: row;
	margin: 100px 0;
	padding: 0 50px;
}

.aboutus-credo {
	margin-right: 50px;
	flex: 0 0 50%;
}

.aboutus-credo-title {
	font-family: var(--font-family-henju-semibold);
    color: var(--tango);
    font-size: 55px;
    /* font-weight: 600; */
    letter-spacing: 0px;
    line-height: 20px;
	margin-bottom: 20px;
}

.aboutus-credo-description {
	font-family: var(--font-family-henju-regular);
    font-size: 19px;
    color: var(--eerie-black);
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 31px;
    margin-bottom: 30px;
}

.aboutus-credo-values {
	margin-bottom: 20px;
}

.aboutus-credo-values-title {
	font-family: var(--font-family-henju-bold);
    color: var(--black);
    font-size: 20px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: normal;
	padding: 20px 20px 0 20px;
    margin-bottom: 0;
}

.aboutus-credo-values-description {
	color: #4b5563;
    font-family: var(--font-family-henju-regular);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 20px;
	padding: 20px;
}

.aboutus-credo-belief {
	display: flex;
	flex-direction: column;
	margin-bottom: 100px;
	padding: 0 50px;
}

.aboutus-credo-belief-title {
	font-family: var(--font-family-henju-semibold);
    color: var(--eerie-black);
    font-size: 55px;
    /* font-weight: 600; */
    letter-spacing: 0px;
    line-height: 20px;
	margin-bottom: 60px;
	text-align: center;
}

/*	About us - Credo Section End  */

/*	About us - Our Leaders Section  */

#aboutus-our-leaders {
	background-color: transparent;
}

.aboutus-our-leaders-title {
	font-family: var(--font-family-henju-semibold);
    color: var(--black);
    font-size: 55px;
    /* font-weight: 600; */
    letter-spacing: 0px;
    line-height: 30px;
	margin: 100px 0 60px 0;
	text-align: center;
}

.aboutus-leaders-wrapper {
	text-align: center;
}

.aboutus-leaders-boc-wrapper,
.aboutus-leaders-bod-wrapper {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 50px 100px;
	margin-bottom: 100px;
}

.aboutus-leaders-boc-image-wrapper,
.aboutus-leaders-bod-image-wrapper {
	cursor: pointer;
}

.aboutus-leaders-boc-title,
.aboutus-leaders-bod-title {
	font-family: var(--font-family-henju-bold);
	color: var(--tango);
	font-size: 25px;
	/* font-weight: 700; */
	letter-spacing: 0px;
	line-height: 30px;
	margin-bottom: 40px;
}

.aboutus-leaders-boc-image-wrapper,
.aboutus-leaders-bod-image-wrapper {
	background-color: transparent;
}

.aboutus-leaders-boc-image,
.aboutus-leaders-bod-image {
	max-height: 300px;
    border-radius: 17px;
	margin-bottom: 30px;
}

.aboutus-leaders-boc-image-name,
.aboutus-leaders-bod-image-name {
	font-family: var(--font-family-henju-bold);
    color: var(--black);
    font-size: 20px;
	/* font-weight: 700; */
	letter-spacing: 0px;
	line-height: 20px;
	text-align: left;
    margin: 0 auto 10px auto;
    max-width: 290px;
}

.aboutus-leaders-boc-image-title,
.aboutus-leaders-bod-image-title {
	font-family: var(--font-family-henju-regular);
    color: #525252;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 16px;
    text-align: left;
    margin: auto;
    max-width: 290px;
}

#leaders-modal.show {
	overflow: hidden !important;
}

.our-leaders-modal-wrapper {
	/* max-width: 1000px; */
	margin: auto;
}

.our-leaders-modal-wrapper .modal-content {
	overflow: auto!important;
}

.our-leaders-modal-container {
	background-color: #d9d9d9;
	border-radius: 30px;
	max-height: 100%;
	/* max-height: 600px; */
}

.our-leaders-modal-header-wrapper {
	border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background-image: url("../assets/component/leader-header-modal.png");
	background-size: cover;
	background-position: center;
}

.our-leaders-modal-header {
	display: flex;
    flex-direction: column;
	padding: 30px 100px;
}

.our-leaders-modal-close-button {
	background-color: transparent;
    background-image: url("../assets/component/close-modal.png");
    background-size: cover;
	background-position: center;
	border: none;
	cursor: pointer;
	--bs-btn-close-opacity: 1;
	--bs-btn-close-focus-shadow: 0;
	width: 35px;
    height: 35px;
	position: absolute;
	top: 25px;
}

.our-leaders-modal-header-name {
	font-family: var(--font-family-henju-bold);
    color: var(--lightsystem-backgroundprimary);
    font-size: 50px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 20px;
    margin-bottom: 20px;
}

.our-leaders-modal-header-title {
    color: var(--lightsystem-backgroundprimary);
    font-family: var(--font-family-henju-semibold);
    font-size: 30px;
    /* font-weight: 600; */
    letter-spacing: 0px;
    line-height: 16px;
	margin-bottom: 0;
}

.our-leaders-modal-body-wrapper {
	background-color: transparent;
	overflow-y: visible !important;
}

.our-leaders-modal-body {
	display: flex;
	flex-direction: row;
	padding: 0 30px 0 100px;
}

.our-leaders-modal-body-description {
    font-family: var(--font-family-henju-regular);
    color: var(--black);
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 30px;
    text-align: justify;
	margin-top: 10px;
    margin-right: 30px;
}

.our-leaders-modal-body-image {
	position: relative;
    /* top: -150px; */
	top: 0;
    max-height: 500px;
}

/*	About us - Our Leaders Section End  */

/*	About us - Ownership Group Organization Section  */

#aboutus-ownership-group-organization {
	background: transparent;
	overflow-x: clip;
	margin-bottom: 200px;
}

.aboutus-accordion-wrapper {
	padding-right: 0;
}

.aboutus-accordion-item {
	align-items: center;
    background-color: #fafafa;
    border: 0px none;
}

.aboutus-accordion-button {
	height: 150px;
    padding: 47px 70px;
	color: var(--black);
    font-family: var(--font-family-henju-bold);
    font-size: 30px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 30px;
}

.aboutus-accordion-button:hover {
	background-color: var(--tango);
	color: var(--lightsystem-backgroundprimary);
	transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-radius 0.3s ease;
}

.aboutus-accordion-button::after {
	background-image: url("../assets/component/aboutus-accordion-down.png");
	background-size: cover;
	background-position: center;
	height: 25px;
    width: 43px;
}

.aboutus-accordion-button:hover::after {
	background-image: url("../assets/component/aboutus-accordion-down-active.png");
}

.aboutus-accordion-button:not(.collapsed) {
	background-color: var(--tango);
	color: var(--lightsystem-backgroundprimary);
}

.aboutus-accordion-button:not(.collapsed)::after {
	background-image: url("../assets/component/aboutus-accordion-up-active.png");
	height: 25px;
    width: 43px;
	transform: none;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-radius 0.3s ease;
}

.aboutus-accordion-body {
	text-align: center;
}

.aboutus-accordion-body-image {
	background: transparent;
}

/*	About us - Ownership Group Organization Section End  */

/*	Our business - Unit Section  */

#ourbusiness-hero {
	background-color: transparent;
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 20px 0;
	position: relative;
	border-radius: 150px 150px 0 0;
	/* height: 100vw; */
	max-height: 100%;
    top: 100px;
}

.ourbusiness-header-wrapper {
	margin: 60px 0 40px 0;
}

.ourbusiness-header-title {
	font-family: var(--font-family-henju-bold);
    color: var(--lightsystem-backgroundprimary);
    font-size: 85px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 85px;
    text-align: center;
    margin-bottom: 50px;
}

.ourbusiness-header-text {
	color: var(--lightsystem-backgroundprimary);
    font-family: var(--font-family-henju-regular);
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 35px;
    text-align: center;
}

.ourbusiness-unit-wrapper {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px 30px;
	align-items: stretch;
	margin-bottom: 250px;
}

.ourbusiness-unit-card {
	background-color: rgba(255, 255, 255, 0.16);
	border: 0;
    border-radius: 25px;
    max-width: 30%;
	padding: 10px;
	position: relative;
}

.ourbusiness-unit-card:hover,
.ourbusiness-unit-button-image-wrapper:hover {
	transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-radius 0.3s ease;
}

.ourbusiness-unit-body {
	display: flex;
	flex-direction: column;
}

.ourbusiness-unit-title {
	color: var(--lightsystem-backgroundprimary);
    font-family: var(--font-family-henju-semibold);
    font-size: 20px;
    /* font-weight: 600; */
    letter-spacing: -0.81px;
    line-height: 33px;
    text-align: left;
	padding: 0 10px 0 10px;
	max-width: 90%;
}

.ourbusiness-unit-button {
	text-align: right;
	position: absolute;
	top: 0;
	top: 25px;
    right: 0;
    margin-right: 20px;
}

.ourbusiness-unit-button-image-wrapper {
	background-color: var(--lightsystem-backgroundprimary);
    border-radius: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
	width: 60px;
    height: 60px;
    justify-content: center;
    overflow: hidden;
}

.ourbusiness-unit-button-image {
	background: transparent;
    height: 15px;
    width: 15px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.ourbusiness-unit-description {
	color: var(--lightsystem-backgroundprimary);
    font-family: var(--font-family-henju-regular);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.00px;
    line-height: 22px;
    text-align: left;
	padding: 0 10px 0 10px;
	margin-top: 40px;
}

.ourbusiness-unit-image-wrapper {
	margin-top: auto;
}

.ourbusiness-unit-image {
	border-radius: 25px;
}

/*	Our business - unit Section End  */

/*	Our Business - network Setion  */

#ourbusiness-network {
	background-color: transparent;
    background-image: url("../assets/component/our-network-bg.png");
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 20px 0;
	border-radius: 150px 150px 0 0;
	position: relative;
    margin: -50px auto 0;
	max-height: 100%;
	/* height: 800px; */
}

.ourbusiness-network-title {
	font-family: var(--font-family-henju-semibold);
	color: var(--eerie-black);
	font-size: 55px;
	/* font-weight: 600; */
	letter-spacing: 0px;
	line-height: 20px;
	text-align: center;
	margin: 100px 0;
}

.ourbusiness-network-wrapper {
	background: transparent;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 40px;
}

.ourbusiness-network-item {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.ourbusiness-network-image {
	width: 100px;
	height: 100px;
}

.ourbusiness-network-description-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: auto;
	margin-bottom: auto;
}

.ourbusiness-network-total {
	font-family: var(--font-family-henju-medium);
    color: var(--eerie-black);
    font-size: 30px;
    letter-spacing: 0px;
    line-height: 20px;
    text-align: left;
    white-space: nowrap;
}

.ourbusiness-network-location {
	font-family: var(--font-family-henju-regular);
    color: var(--eerie-black);
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 24px;
    text-align: left;
    white-space: nowrap;
	text-transform: uppercase;
}

.network-update {
	font-family: var(--font-family-henju-regular);
    color: var(--eerie-black);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    margin-left: 10px;
	margin-bottom: 350px;
	padding-left: 10px;
}

/*	Our Business - network Section End  */

/*	Awards Section  */

#awards {
	background-color: transparent;
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 20px 0;
	position: relative;
	border-radius: 150px 150px 0 0;
	/* height: 2000px; */
	max-height: 100%;
    top: 100px;
}

.awards-header-wrapper {
	margin: 60px 0 100px 0;
	z-index: 1;
}

.awards-header-title {
	font-family: var(--font-family-henju-bold);
    color: var(--lightsystem-backgroundprimary);
    font-size: 85px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 85px;
    text-align: center;
    margin-bottom: 50px;
}

.awards-header-text {
	color: var(--lightsystem-backgroundprimary);
    font-family: var(--font-family-henju-regular);
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 35px;
    text-align: center;
}

.awards-wrapper {
	margin-bottom: 300px;
	position: relative;
	z-index: 1;
}

.awards-select-wrapper {
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
}

.awards-select-wrapper .select2-container {
    width: 100% !important;
}

/* Select2 container inherits style from select */
.awards-select-wrapper .select2-container--default .select2-selection--single {
    background-color: var(--lightsystem-backgroundprimary);
    border: 1.5px solid #e1e1e1;
    border-radius: 100px;
    height: 55px;
    width: 100%!important;
    font-family: var(--font-family-inter);
    font-size: 20px;
    font-weight: 600;
    color: #414042;
    padding: 0 25px;
    display: flex;
    align-items: center;
    background-image: url("../assets/component/awards-arrow-down.png");
    background-size: 23px 13px;
    background-position: right 25px center;
    background-repeat: no-repeat;
    cursor: pointer;
	outline: none!important;
	box-shadow: none!important;
}

/* Keep select box style the same when open */
.awards-select-wrapper .select2-container--open .select2-selection--single {
    border-radius: 100px !important;
    border: 1.5px solid #e1e1e1 !important;
    background-color: var(--lightsystem-backgroundprimary) !important;
    background-image: url("../assets/component/awards-arrow-down.png");
    background-size: 23px 13px;
    background-position: right 25px center;
    background-repeat: no-repeat;
    padding: 0 25px;
    display: flex;
    align-items: center;
}

.awards-select-wrapper .select2-container--open .select2-dropdown {
    z-index: 1032 !important;
}

/* Hide default arrow */
.awards-select-wrapper .select2-selection__arrow {
    display: none;
}

/* Dropdown style */
.awards-select-wrapper .select2-container--default .select2-dropdown {
    border-radius: 12px;
    border: 1px solid #ccc;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    margin-top: 10px !important;
	top: 100% !important;
    left: 0 !important;
    background-color: #fff;
    z-index: 9999 !important;
	box-sizing: border-box;
}

.awards-select-wrapper .select2-container--default .select2-dropdown:focus {
    outline: none !important;
}

/* Options list */
.awards-select-wrapper .select2-results__option {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
	box-sizing: border-box;
}

.awards-select-wrapper .select2-container--default .select2-results__option:focus {
    outline: none !important;
}

.awards-select-wrapper .select2-results__option:first-child {
    margin-top: 10px; /* adjust for desired whitespace */
}

.awards-select-wrapper .select2-results__option:last-child {
    margin-bottom: 10px; /* adjust for desired whitespace */
}

/* Hovered */
.awards-select-wrapper .select2-results__option--highlighted {
    background-color: var(--tango)!important;
	transition: background-color 0.2s ease!important;
    color: #000;
	margin: 0;
}

/* Webkit scrollbar styling */
.awards-select-wrapper .select2-results__options::-webkit-scrollbar {
    width: 10px;
}

.awards-select-wrapper .select2-results__options::-webkit-scrollbar-thumb {
    background-color: #aaa; /* Customize thumb color */
    border-radius: 4px!important;
	border-right: 4px solid transparent; /* fake margin */
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
    background-clip: padding-box;
}

.awards-select-wrapper .select2-results__options::-webkit-scrollbar-track {
    background: transparent;
}

.awards-select-wrapper .select2-results__options::-webkit-scrollbar-button {
    height: 0;
    display: none;
}

.awards-card-wrapper {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px 30px;
	margin: 40px 0;
}

.awards-not-found-text {
	color: var(--lightsystem-backgroundprimary);
    font-family: var(--font-family-henju-regular);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 35px;
    text-align: center;
}

.awards-card {
	flex: 0 0 33.3333%;
	max-width: 350px;
	background-color: var(--lightsystem-backgroundprimary);
    border: 0px none;
    border-radius: 10px;
    box-shadow: 0px 4px 6px #0000001a, 0px 2px 4px #0000001a;
	-webkit-transition: all 1s cubic-bezier(0.2, 1, 0.22, 1);
    transition: all 1s cubic-bezier(0.2, 1, 0.22, 1);
}

.awards-card-image {
	height: 350px;
	object-fit: cover;
}

/* .awards-card:hover {
	cursor: pointer;
} */

/* .awards-card:hover .awards-card-title {
	color: var(--tango);
}

.awards-card:hover img {
	transform: scale(1.025);
} */

.awards-card-title {
	color: var(--black);
    font-family: var(--font-family-inter);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.00px;
    line-height: 27px;
    text-align: center;
}

.awards-load-more-wrapper {
	text-align: center;
	padding-bottom: 100px;
}

.awards-load-more-button {
	background-color: transparent;
    border-color: #e5e7eb;
    border-radius: 30px;
	height: 60px;
    padding: 22px 64px;
	font-family: var(--font-family-henju-medium);
    color: var(--lightsystem-backgroundprimary);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.90px;
    line-height: 16px;
    text-align: center;
	text-transform: uppercase;
}

.awards-load-more-button:hover {
	border: none !important;
    background-color: var(--lightsystem-backgroundprimary) !important;
    color: var(--tango) !important;
}

/*	Awards Section End	*/

/*	ESG Overview Hero Section  */

#esgoverview-hero {
	background-color: transparent;
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 20px 0;
	position: relative;
	border-radius: 150px 150px 0 0;
    top: 100px;
	max-height: 100%;
	/* height: 600px; */
}

.esgoverview-header-wrapper {
	margin: 100px 0 100px 0;
	padding: 0 80px;
}

.esgoverview-header-title {
	font-family: var(--font-family-henju-bold);
    color: var(--lightsystem-backgroundprimary);
    font-size: 85px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 48px;
    text-align: center;
    margin-bottom: 50px;
}

.esgoverview-header-text {
	color: var(--lightsystem-backgroundprimary);
    font-family: var(--font-family-henju-regular);
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 35px;
    text-align: center;
	padding-bottom: 150px;
}

/*	ESG Overview Hero Section End  */

/*	ESG Strategy Section  */

#esgstrategy {
	background-color: var(--lightsystem-backgroundprimary);
	padding: 20px 0;
	position: relative;
	margin: -5% auto 0;
	border-radius: 150px 150px 0 0;
	max-height: 100%;
	/* max-height: 1400px; */
}

.esgstrategy-header-wrapper {
	margin-top: 80px;
}

.esgstrategy-header-text {
	font-family: var(--font-family-henju-semibold);
    font-size: 55px;
	/* font-weight: 600; */
	color: var(--black);
    letter-spacing: 0px;
    line-height: 45px;
	text-align: center;
}

.esgstrategy-image-wrapper {
	background: transparent;
	margin-top: 40px;
	padding-bottom: 200px;
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
	/* margin: 40px 0 200px 0; */
}

.esgstrategy-image {
	width: 100%;
    height: 820px;
    /* object-fit: cover; */
	border-radius: 30px;
}

/*	ESG Strategy Section End  */

/*	ESG Performance Section  */

#esgperformance {
	background-color: transparent;
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 20px 0;
	position: relative;
	margin: -5% auto 0;
	border-radius: 150px 150px 0 0;
	/* max-height: 2000px; */
	max-height: 100%;
}

.esgperformance-header-wrapper {
	margin-top: 80px;
}

.esgperformance-header-text {
	font-family: var(--font-family-henju-semibold);
    font-size: 55px;
	/* font-weight: 600; */
	color: var(--lightsystem-backgroundprimary);
    letter-spacing: 0px;
    line-height: 45px;
	text-align: center;
}

.esgperformance-description-wrapper {
	background: transparent;
	margin-top: 60px;
	padding-bottom: 200px;
	/* margin: 60px 0 250px 0; */
}

.esgperformance-description {
	margin-bottom: 60px;
}

.esgperformance-category-header {
	display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
	margin-bottom: 20px;
}

.esgperformance-category-icon {
	width: 60px;
}

.esgperformance-category-title {
	font-family: var(--font-family-henju-medium);
	font-size: 30px;
	color: var(--lightsystem-backgroundprimary);
	letter-spacing: 0.10px;
	line-height: 24px;
	text-align: left;
	margin-bottom: 0;
}

.esgperformance-category-description {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: stretch;
}

.esgperformance-category-description-card {
	background-color: rgba(0, 0, 0, 0.53);
	border: 0;
    border-radius: 25px;
    width: 30%;
	padding: 20px 10px;
	position: relative;
}

.esgperformance-category-description-body {
	display: flex;
	flex-direction: column;
}

.esgperformance-category-description-title {
	font-family: var(--font-family-henju-regular);
    color: var(--lightsystem-backgroundprimary);
    font-size: 20px;
    letter-spacing: 0.10px;
    line-height: 24px;
    text-align: left;
	margin-top: auto !important;
    margin-bottom: auto !important;
}

.esgperformance-category-description-value {
	display: flex;
    flex-direction: row;
	align-items: self-end;
    justify-content: space-between;
}

.esgperformance-category-description-value-text {
	font-family: var(--font-family-eastman-bold);
    color: var(--lightsystem-backgroundprimary);
    font-size: 35px;
    letter-spacing: 0.20px;
    line-height: 48px;
    text-align: left;
    margin-bottom: 0;
}

.esgperformance-category-description-value-icon {
	width: 55px;
}

.esgperformance-category-description-summary {
	font-family: var(--font-family-henju-regular);
    color: var(--lightsystem-backgroundprimary);
    font-size: 16px;
    letter-spacing: 0.08px;
    line-height: 19.2px;
    text-align: left;
}

/*	ESG Performance Section End  */

/*	ESG Report Overview Section  */

#esgreport-overview {
	background-color: var(--lightsystem-backgroundprimary);
	padding: 20px 0;
	position: relative;
	margin: -10% auto 0;
	border-radius: 150px 150px 0 0;
	max-height: 100%;
	/* max-height: 1400px; */
}

.esgreport-overview-header-wrapper {
	margin-top: 80px;
	padding: 0 100px;
}

.esgreport-overview-header-text {
	font-family: var(--font-family-henju-semibold);
    font-size: 55px;
	/* font-weight: 600; */
	color: var(--black);
    letter-spacing: 0px;
    line-height: 45px;
	text-align: center;
	margin-bottom: 30px;
}

.esgreport-overview-header-summary {
	font-family: var(--font-family-henju-regular);
    color: var(--eerie-black);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 35px;
    text-align: center;
}

.esgreport-overview-detail-wrapper {
	background: transparent;
	/* margin-bottom: 400px; */
}

.esgreport-overview-card-wrapper {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px 60px;
	margin: 40px 0 80px;
}

.esgreport-overview-card-pdf {
	text-decoration: none;
}

.esgreport-overview-card {
	flex: 0 0 33.3333%;
	max-width: 320px;
	background-color: var(--lightsystem-backgroundprimary);
    border: 1px solid;
	border-color: var(--shady-lady);
    border-radius: 20px;
}

.esgreport-overview-card-image {
	border-bottom: 1px solid;
    border-bottom-color: var(--shady-lady);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.esgreport-overview-card-body {
	padding: 40px 0 30px;
}

.esgreport-overview-card-title {
	color: var(--black);
    font-family: var(--font-family-henju-bold);
    font-size: 22px;
    /* font-weight: 700; */
    letter-spacing: 0.00px;
    line-height: 35px;
    text-align: left;
	padding: 0 30px;
}

.esgreport-overview-see-more-wrapper {
	text-align: center;
	padding-bottom: 200px;
}

.esgreport-overview-see-more-button {
	background-color: transparent;
    border: 1px solid;
    border-color: var(--tango);
    border-radius: 30px;
    height: 60px;
    padding: 22px 64px;
    font-family: var(--font-family-henju-medium);
    color: var(--tango);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.90px;
    line-height: 16px;
    text-align: center;
	margin-bottom: 100px;
	text-transform: uppercase;
}

.esgreport-overview-see-more-button:hover {
    background-color: var(--tango) !important;
    color: var(--lightsystem-backgroundprimary) !important;
}

/*	ESG Report Overview Section End  */

/*	ESG Program Section  */

#esgprogram-hero {
	background-color: transparent;
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 20px 0;
	position: relative;
	border-radius: 150px 150px 0 0;
    top: 100px;
	max-height: 100%;
	/* height: 600px; */
}

.esgprogram-header-wrapper {
	margin: 100px 0 100px 0;
	padding: 0 80px;
}

.esgprogram-header-title {
	font-family: var(--font-family-henju-bold);
    color: var(--lightsystem-backgroundprimary);
    font-size: 85px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 85px;
    text-align: center;
    margin-bottom: 50px;
}

.esgprogram-header-text {
	color: var(--lightsystem-backgroundprimary);
    font-family: var(--font-family-henju-regular);
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 35px;
    text-align: center;
	padding-bottom: 150px;
}

#esgprogram {
	background-color: #f5f5f5;
	padding: 20px 0;
	position: relative;
	margin: -5% auto 0;
	border-radius: 150px 150px 0 0;
	max-height: 100%;
}

.esgprogram-category-wrapper {
	margin-top: 80px;
    text-align: center;
}

.esgprogram-category-btn {
	padding: 15px 64px;
    background-color: var(--lightsystem-backgroundprimary);
    border: 1px solid;
    border-color: #e1e1e1;
	font-family: var(--font-family-henju-bold);
    color: var(--black);
    font-size: 18px;
    letter-spacing: 0.20px;
    line-height: 37.5px;
    text-align: center;
}

.esgprogram-category-btn:hover,
.esgprogram-category-btn:focus,
.esgprogram-category-btn:active,
.esgprogram-category-btn.active {
	background-color: var(--tango)!important;
	border-color: var(--tango)!important;
	color: var(--lightsystem-backgroundprimary)!important;
}

.esgprogram-category-btn-group {
	width: 100%;
}

.esgprogram-category-btn-group button:first-child {
	border-top-left-radius:	50px;
	border-bottom-left-radius: 50px;
}

.esgprogram-category-btn-group button:last-child {
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
}

.esgprogram-detail-wrapper {
	background: transparent;
    margin: 80px 0 200px 0;
}

.esgprogram-card-wrapper {
	display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
	padding: 0;
	padding-bottom: 100px;
}

.esgprogram-card {
    width: 350px;
    background-color: var(--lightsystem-backgroundprimary);
    border: 0;
	border-radius: 15px;
	align-items: stretch;
}

.esgprogram-card-body {
	display: flex;
	flex-direction: column;
}

.esgprogram-not-found-text {
	color: var(--black);
    font-family: var(--font-family-henju-regular);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 35px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.esgprogram-card-image {
	border-radius: 0px;
	height: 350px;
	object-fit: cover;
	border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.esgprogram-card-title {
	font-family: var(--font-family-eastman-bold);
    font-size: 20px;
    /* font-weight: 700; */
    letter-spacing: 0.11px;
    color: #11142d;
    line-height: 26.4px;
    text-align: left;
	margin-bottom: 0!important;
}

.esgprogram-card-subtitle-wrapper {
	display: flex;
	flex-direction: row;
	gap: 10px;
	align-items: baseline;
	margin-bottom: 20px;
}

.esgprogram-card-subtitle-dot {
	background-color: #d4d4dd;
    height: 3px;
    width: 3px;
    border-radius: 2px;
    border: 2px solid;
    border-color: #d4d4dd;
}

.esgprogram-card-subtitle-date,
.esgprogram-card-subtitle-type {
	font-family: var(--font-family-dmsans);
    color: #d4d4dd;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.07px;
    line-height: 16.8px;
    text-align: left;
}

.esgprogram-card-summary {
	font-family: var(--font-family-dmsans);
    color: #414042;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.08px;
    line-height: 22.4px;
    text-align: left;
	margin-bottom: 0!important;
}

.esgprogram-card-footer {
	background-color: var(--lightsystem-backgroundprimary)!important;
	border-top: 0!important;
}

.esgprogram-card-btn-wrapper {
	margin-bottom: 10px;
}

.esgprogram-card-btn {
	font-family: var(--font-family-dmsans);
    color: var(--tango);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08px;
    line-height: 19.2px;
    text-align: left;
    text-decoration: none;
	cursor: pointer;
}

.esgprogram-modal-container {
	background: transparent;
    border-radius: 40px;
	border: 0;
	max-height: 100%;
}

.esgprogram-modal-header-wrapper {
	background-color: var(--tango);
    padding: 40px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    border: 0;
}

.esgprogram-modal-header {
	background: transparent;
	margin-bottom: 30px;
}

.esgprogram-modal-header-description {
	font-family: var(--font-family-henju-regular);
    color: var(--lightsystem-backgroundprimary);
    font-size: 20px;
    /* font-weight: 700; */
    letter-spacing: 0.11px;
    line-height: 35.5px;
    text-align: left;
}

.esgprogram-modal-close-button {
	position: absolute;
    top: 20px;
    right: 30px;
    font-size: 20px;
}

.esgprogram-modal-achievement-wrapper {
	background-color: #1c6042;
    border-radius: 40px;
    margin: -5% 0 auto;
	padding-left: 0;
    padding-bottom: 0;
}

.esgprogram-modal-achievement {
	display: flex;
	flex-direction: row;
}

.esgprogram-modal-achievement-image {
	max-height: 450px;
	position: relative;
	left: -3%;
	top: 20px;
    /* left: -5%;
    top: 50px; */
}

.esgprogram-modal-achievement-detail-wrapper {
	display: flex;
	flex-direction: column;
	padding: 55px 60px 20px 0;
}

.esgprogram-modal-achievement-detail-title {
	font-family: var(--font-family-eastman-bold);
    color: var(--lightsystem-backgroundprimary);
    font-size: 35px;
    /* font-weight: 700; */
    letter-spacing: 0.18px;
    line-height: 42.4px;
    text-align: left;
	margin-bottom: 40px;
}

.esgprogram-modal-achievement-detail-card {
	background-color: var(--lightsystem-backgroundprimary);
    border-radius: 25px;
}

.esgprogram-modal-achievement-detail-card-body {
	padding-left: 30px;
}

.esgprogram-modal-achievement-detail-summary-value {
	font-family: var(--font-family-eastman-bold);
    color: var(--tango);
    font-size: 45px;
    /* font-weight: 700; */
    letter-spacing: 0.17px;
    line-height: 67.4px;
    text-align: left;
}

.esgprogram-modal-achievement-detail-summary-text {
	font-family: var(--font-family-eastman-regular);
	color: var(--black);
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0.10px;
	line-height: 29.8px;
	text-align: left;
}

.modal-backdrop {
    z-index: 999999 !important;
	--bs-backdrop-opacity: 0.8!important;
}

.modal {
    z-index: 9999999 !important;
}

/*	ESG Program Section End  */

/*	ESG Report Section  */

#esgreport-hero {
	background-color: transparent;
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 20px 0;
	position: relative;
	border-radius: 150px 150px 0 0;
    top: 100px;
	max-height: 100%;
}

.esgreport-header-wrapper {
	margin: 100px 0 100px 0;
	padding: 0 80px;
}

.esgreport-header-title {
	font-family: var(--font-family-henju-bold);
    color: var(--lightsystem-backgroundprimary);
    font-size: 85px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 85px;
    text-align: center;
    margin-bottom: 50px;
}

.esgreport-header-text {
	color: var(--lightsystem-backgroundprimary);
    font-family: var(--font-family-henju-regular);
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 35px;
    text-align: center;
	padding-bottom: 150px;
}

#esgreport {
	background-color: var(--lightsystem-backgroundprimary);
	padding: 20px 0;
	position: relative;
	margin: -5% auto 0;
	border-radius: 150px 150px 0 0;
	max-height: 100%;
}

.esgreport-detail-wrapper {
	background: transparent;
	margin-top: 80px;
	padding: 0 80px;
	/* margin-bottom: 400px; */
}

.esgreport-card-wrapper {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 70px 40px;
	margin: 40px 0 80px;
	padding-bottom: 200px;
}

.esgreport-card {
	flex: 0 0 33.3333%;
	max-width: 300px;
	background-color: var(--lightsystem-backgroundprimary);
    border: 1px solid;
	border-color: var(--shady-lady);
    border-radius: 20px;
}

.esgreport-card-image {
	border-bottom: 1px solid;
    border-bottom-color: var(--shady-lady);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.esgreport-card-body {
	padding: 40px 0 30px;
}

.esgreport-card-title {
	color: var(--black);
    font-family: var(--font-family-henju-bold);
    font-size: 22px;
    /* font-weight: 700; */
    letter-spacing: 0.00px;
    line-height: 35px;
    text-align: left;
	padding: 0 30px;
}

/*	ESG Report Section End  */

/*	ESG Gallery Section  */

#esggallery-hero {
	background-color: transparent;
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 20px 0;
	position: relative;
	border-radius: 150px 150px 0 0;
    top: 100px;
	max-height: 100%;
}

.esggallery-header-wrapper {
	margin: 100px 0 100px 0;
	padding: 0 80px;
}

.esggallery-header-title {
	font-family: var(--font-family-henju-bold);
    color: var(--lightsystem-backgroundprimary);
    font-size: 85px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 85px;
    text-align: center;
    margin-bottom: 50px;
}

.esggallery-header-text {
	color: var(--lightsystem-backgroundprimary);
    font-family: var(--font-family-henju-regular);
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 35px;
    text-align: center;
	padding-bottom: 150px;
}

#esggallery {
	background-color: var(--lightsystem-backgroundprimary);
	padding: 20px 0;
	position: relative;
	margin: -5% auto 0;
	border-radius: 150px 150px 0 0;
	max-height: 100%;
}

.esggallery-category-wrapper {
	margin-top: 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.esggallery-category-btn-divider {
	display: flex;
	align-items: center;
}
  
.esggallery-category-btn-divider::before {
	flex: 1;
	content: '';
	padding: 1px 5px;
	background-color: #414042;
	margin-right: 20px;
	margin-bottom: 5px;
}

.esggallery-category-btn-divider.no-divider::before {
    content: none;
    padding: 0;
    margin: 0;
    background: none;
}

.esggallery-category-btn {
	font-family: var(--font-family-henju-medium);
    font-size: 16px;
    font-weight: 500;
    color: #414042;
    letter-spacing: 0.08px;
    line-height: 19.2px;
    text-align: center;
    text-decoration: none;
	text-transform:	capitalize;
	cursor: pointer;
}

.esggallery-category-btn:hover,
.esggallery-category-btn:focus,
.esggallery-category-btn:active {
	color: var(--tango);
}

.esggallery-detail-wrapper {
	background: transparent;
    margin: 80px 0 200px 0;
	padding-bottom: 100px;
}

.esggallery-content {
	display: flex;
    flex-direction: row;
	flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.esggallery-content li {
	min-width: 0!important;
	list-style: none;
	width: 255px;
    height: 255px;
}

.esggallery-image {
	/* max-width: 250px; */
	/* max-width: 300px; */
	width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 40px;
	transition: transform 1s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.esggallery-image:hover {
	filter: brightness(0.5);
	transition: all ease-in-out .25s;
}

.esggallery-content-wrapper .easyPaginateNav {
	padding: 20px 20px 20px 0;
    margin: 10px 0px;
	width: 100%!important;
}

.esggallery-content-wrapper .easyPaginateNav a {
	font-family: var(--font-family-dmsans);
	color: #414042;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.08px;
	line-height: 19.2px;
	text-align: center;
	white-space: nowrap;
	text-decoration: none;
	padding: 0 10px;
}

.esggallery-content-wrapper .easyPaginateNav a.prev,
.esggallery-content-wrapper .easyPaginateNav a.next {
	color: var(--tango);
}

.esggallery-content-wrapper .easyPaginateNav a.current {
	background-color: var(--tango);
    border-radius: 4px;
    font-family: var(--font-family-dmsans);
    color: var(--lightsystem-backgroundprimary);
}

.esggallery-filter-search {
	margin-bottom: 20px;
}

.esggallery-filter-search-input {
	border: 1px solid;
    border-color: #e1e1e1;
	border-radius: 8px!important;
    color: #414042;
    font-family: var(--font-family-dmsans);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.08px;
    line-height: 22.4px;
    text-align: left;
}

.esggallery-filter-search-input:focus {
	box-shadow: none!important;
	border-color: #e1e1e1!important;
}

.esggallery-filter-search .input-group-btn.input-space {
	padding-left: 10px;
}

.esggallery-filter-search-btn {
	height: 55px;
	background-color: var(--tango);
    border-radius: 8px;
    font-family: var(--font-family-dmsans);
    color: var(--lightsystem-backgroundprimary);
    font-weight: 700;
    letter-spacing: 0.08px;
    line-height: 19.2px;
    text-align: center;
}

.esggallery-filter-search-btn:hover,
.esggallery-filter-search-btn:focus {
	background-color: var(--tango)!important;
	color: var(--lightsystem-backgroundprimary)!important;
}

.esggallery-filter-category,
.esggallery-filter-year {
	margin-bottom: 20px;	
}

.esggallery-filter-category-btn,
.esggallery-filter-year-btn {
	font-family: var(--font-family-henju-regular);
    color: #11142d!important;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.08px;
    line-height: 19.2px;
    text-align: left;
	padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.esggallery-filter-category-btn:focus,
.esggallery-filter-year-btn:focus {
	box-shadow: none!important;
	border-color: #e1e1e1!important;
}

.esggallery-filter-category-btn:not(.collapsed),
.esggallery-filter-year-btn:not(.collapsed) {
	background-color: var(--lightsystem-backgroundprimary);
	box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color) !important;
}

.esggallery-filter-category-body,
.esggallery-filter-year-body {
	padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.esggallery-filter-category-body li,
.esggallery-filter-year-body li {
	margin: 5px 0;
	list-style: none;
}

.esggallery-filter-category-item-value,
.esggallery-filter-year-item-value {
	font-family: var(--font-family-henju-medium);
    color: #414042;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08px;
    line-height: 19.2px;
    text-align: left;
    text-decoration: none;
	cursor: pointer;
}

.esggallery-filter-category-item-value:hover,
.esggallery-filter-year-item-value:hover {
	color: var(--tango);
}

/*	ESG Gallery Section End  */

/*	Investor Relation Section  */

#investorrelation-hero {
	background-color: transparent;
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 20px 0;
	position: relative;
	border-radius: 150px 150px 0 0;
    top: 100px;
	max-height: 100%;
}

.investorrelation-header-wrapper {
	margin: 100px 0 100px 0;
	padding: 0 80px;
}

.investorrelation-header-title {
	font-family: var(--font-family-henju-bold);
    color: var(--lightsystem-backgroundprimary);
    font-size: 85px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 85px;
    text-align: center;
    margin-bottom: 50px;
}

.investorrelation-header-text {
	color: var(--lightsystem-backgroundprimary);
    font-family: var(--font-family-henju-regular);
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 35px;
    text-align: center;
	padding-bottom: 150px;
}

#investorrelation {
    background-color: var(--lightsystem-backgroundprimary);
    position: relative;
    max-height: 100%;
    padding: 0;
    margin: -5% auto 0px;
    border-radius: 45px 45px 0px 0px;
}

.investorrelation-wrapper {
	margin-bottom: 200px;
}

.investorrelation-tab-wrapper {
	padding-bottom: 100px;
	border-right: 1px solid;
    border-right-color: #d1d5db;
    padding-right: 40px;
	padding-top: 20px;
}

.investorrelation-tab {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-left: 20px;
}

.investorrelation-tab-link {
	border: none;
    outline: none;
    background-color: transparent;
    width: 100%;
    height: 74px;
    padding: 22px 16px 22px 0px;
    font-family: var(--font-family-henju-regular);
    color: var(--eerie-black);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 16px;
    text-align: left;
	white-space: pre-line;
	border-bottom: 1px solid;
    border-bottom-color: #d1d5db;
    transition-property: all;
    transition-duration: .12s;
    transition-timing-function: cubic-bezier(0,0,.2,1);
}

.investorrelation-tab-link:hover,
.investorrelation-tab-link.active {
	font-family: var(--font-family-henju-semibold)!important;
	color: var(--tango)!important;
	padding-left: 25px!important;
    border-left: 5px solid!important;
    border-left-color: var(--tango)!important;
}

.investorrelation-dropdown {
	display: none;
}

.investorrelation-dropdown-content {
	/* display: none; */
	background-color: rgba(18, 18, 18, 1);
	opacity: 0;
	visibility: hidden;
	transition-property: opacity;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
    transition-duration: .5s;
	z-index: 99;
    position: absolute;
	height: 100vh;
    width: 100vw;
	display: flex;
    flex-direction: column;
	padding-top: 15px;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
}

.transform {
	transform: translateX(0) translateY(0) rotate(0deg) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.investorrelation-dropdown-toggle svg {
	-moz-transition: rotate(0deg);
	-webkit-transition: rotate(0deg);
	transition: rotate(0deg);
	transform: translateX(0) translateY(0) rotate(0deg) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.investorrelation-content-wrapper {
	z-index: 1;
}

.investorrelation-tab-content-header {
	padding: 30px;
}

.investorrelation-tab-content-header#financial-presentation-header {
	padding: 30px;
	padding-bottom: 0;
}

.investorrelation-tab-content-header-title {
	font-family: var(--font-family-henju-bold);
    font-size: 25px;
    /* font-weight: 700; */
    color: var(--eerie-black);
    letter-spacing: 0px;
    line-height: normal;
    text-align: left;
	margin-bottom: 0;
}

.investorrelation-tab-content-header-line {
	margin: 0 30px;
    color: #a3a3a3;
    opacity: 1;
}

.investorrelation-tab-content-body {
	padding: 0 30px;
    margin: 50px 0 100px;
}

.investorrelation-tab-content-body#financial-presentation-body {
	padding: 0 30px;
    margin: 50px 0 100px;
}

.investorrelation-tab-content-body#key-financial-highlights-body {
	padding-bottom: 50px;
}

.investorrelation-tab-content-stock {
	padding-bottom: 50px;
}

.investorrelation-tab-content-stock .tradingview-widget-container {
	margin: 0;
}

.tradingview-widget-container iframe {
	border: 1px solid!important;
	border-color: #f5f5f5!important;
}

.investorrelation-tab-content-shareholder {
	margin-bottom: 60px;
}

.investorrelation-tab-content-shareholder-chart-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 40px;
}

.investorrelation-tab-content-shareholder-chart {
	transform: scaleX(-1) translateX(20px);
	/* padding: 0 15px; */
}

.investorrelation-tab-content-shareholder-detail {
	display: flex;
    flex-direction: column;
    flex-wrap: wrap;
	max-height: 250px;
	max-width: 300px;
	gap: 0 30px;
}

.investorrelation-tab-content-shareholder-investor {
	margin-bottom: 16px;
	border-left: 6px solid;
    padding-left: 16px;
}

.investorrelation-tab-content-shareholder-investor-value {
	font-family: var(--font-family-henju-bold);
    color: var(--black);
    font-size: 25px;
    /* font-weight: 700; */
}

.investorrelation-tab-content-shareholder-investor-name {
	font-family: var(--font-family-henju-semibold);
    color: var(--black);
    font-size: 14px;
    /* font-weight: 700; */
    margin-bottom: 0;
}

.investorrelation-tab-content-shareholder-info-wrapper {
	padding: 0 40px;
    max-width: 85%;
}

.investorrelation-tab-content-shareholder-info-text {
	font-size: 16px;
}

.investorrelation-tab-content-ownership {
	padding-bottom: 50px;
}

.investorrelation-tab-content-file-link {
	text-decoration: none;
}

.investorrelation-tab-content-file-link-item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding-top: 16px;
	padding-bottom: 16px;
}

.investorrelation-tab-content-file-link-pdf {
	display: flex;
    height: 100%;
    width: 27px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
	margin-right: 30px;
}

.investorrelation-tab-content-file-link-title {
	flex: 1 1 0%;
}

.investorrelation-tab-content-file-link-title-text {
	font-family: var(--font-family-henju-medium);
    color: var(--black);
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 34px;
    text-align: left;
}

.investorrelation-tab-content-file-link-download {
	display: flex;
    height: 100%;
    width: 26px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
	margin-right: 20px;
}

.gms-tab,
.disclosure-tab,
.financial-presentation-tab {
	display: flex;
    flex-direction: row;
    gap: 40px;
	overflow-x: scroll;
	scrollbar-width: none;
  	-ms-overflow-style: none;
}

.gms-tab::-webkit-scrollbar, 
.disclosure-tab::-webkit-scrollbar,
.financial-presentation-tab::-webkit-scrollbar {
	display: none;
}

.investorrelation-tab-content-header-tab-line {
	margin: 0;
    color: #a3a3a3;
    opacity: 1;
	padding-bottom: 30px;
}

.investorrelation-tab-content-header-tab-line#financial-presentation-line {
	margin: 0;
    color: #a3a3a3;
    opacity: 1;
	padding-bottom: 0;
}

.gms-tab-link,
.disclosure-tab-link {
	border: none;
    outline: none;
    background-color: transparent;
    height: 54px;
    padding: 10px 20px 20px;
    font-family: var(--font-family-henju-regular);
    color: var(--eerie-black);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 16px;
    text-align: left;
}

.financial-presentation-tab-link {
	border: none;
    outline: none;
	background: transparent;
    height: 62px;
	padding: 10px 25px 20px;
    font-family: var(--font-family-henju-bold);
    color: #666666;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 16px;
    text-align: left;
}

.gms-tab-link:hover,
.gms-tab-link.active,
.disclosure-tab-link:hover,
.disclosure-tab-link.active {
	font-family: var(--font-family-henju-semibold)!important;
	color: var(--tango)!important;
	border-bottom: 2px solid!important;
	border-bottom-color: var(--tango)!important;
}

.financial-presentation-tab-link:hover,
.financial-presentation-tab-link.active {
	color: var(--tango)!important;
	border-bottom: 2px solid!important;
	border-bottom-color: var(--tango)!important;
}

.investorrelation-tab-content-investor-contact-image {
	border-radius: 40px;
    max-width: 490px;
    margin-bottom: 30px;
}

.investorrelation-tab-content-investor-contact-text {
	font-family: var(--font-family-henju-bold);
    color: var(--eerie-black);
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: normal;
    text-align: left;
    margin-bottom: 20px;
}

.investorrelation-tab-content-investor-contact-btn-wrapper {
	margin: 40px 0;
}

.investorrelation-tab-content-investor-contact-btn {
	background-color: var(--tango);
    padding: 22px 120px;
    border-radius: 40px;
    font-family: var(--font-family-henju-bold);
    color: var(--lightsystem-backgroundprimary);
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: normal;
    text-align: left;
    text-decoration: none;
}

.investorrelation-annual-report-card-wrapper {
	display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0 80px;
}

.investorrelation-annual-report-card-pdf {
	text-decoration: none!important;
}

.investorrelation-annual-report-card {
	flex: 0 0 33.3333%;
    width: 230px;
    background-color: var(--lightsystem-backgroundprimary);
    border: 1px solid;
    border-color: var(--shady-lady);
    border-radius: 20px;
}

.investorrelation-annual-report-card:hover {
	border: 2px solid var(--tango);
	background-color: var(--tango);
}

.investorrelation-annual-report-card:hover .investorrelation-annual-report-card-image {
	border-bottom-color: var(--tango);
}
	
.investorrelation-annual-report-card:hover .investorrelation-annual-report-card-title {
	color: var(--lightsystem-backgroundprimary);
}	

.investorrelation-annual-report-card-image-wrapper {
	width: 100%;
    height: 330px;
}

.investorrelation-annual-report-card-image {
	width: 100%;
    height: 100%;
    object-fit: cover;
	border-bottom: 1px solid;
    border-bottom-color: var(--shady-lady);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.investorrelation-annual-report-card-body {
	padding: 30px 0;
}

.investorrelation-annual-report-card-title {
	color: var(--black);
    font-family: var(--font-family-henju-bold);
    font-size: 20px;
    /* font-weight: 700; */
    letter-spacing: 0.00px;
    line-height: 29.5px;
    text-align: left;
    padding: 0 30px;
}

.investorrelation-annual-report-btn-wrapper {
	text-align: center;
	padding-bottom: 50px;
}

.investorrelation-annual-report-btn {
	background-color: transparent;
    border: 1px solid;
    border-color: var(--tango);
    border-radius: 30px;
    height: 60px;
    padding: 22px 64px;
    font-family: var(--font-family-henju-medium);
    color: var(--tango);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.90px;
    line-height: 16px;
    text-align: center;
	text-decoration: none;
    margin-bottom: 100px;
	text-transform: uppercase;
	cursor: pointer;
}

.investorrelation-annual-report-btn:hover {
	background-color: var(--tango) !important;
    color: var(--lightsystem-backgroundprimary) !important;
}

.investorrelation-tab-content-financial-presentation-detail {
	padding-bottom: 50px;
}

.investorrelation-tab-content-financial-presentation-detail-periode-header {
	display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 8px;
    padding-bottom: 8px;
}

.financial-presentation-detail-quarter-title {
	font-family: var(--font-family-henju-semibold);
    color: var(--eerie-black);
    font-size: 40px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 20px;
    text-align: center;
}

.financial-presentation-detail-title {
	font-family: var(--font-family-henju-bold);
    color: var(--black);
    font-size: 20px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 20px;
    text-align: center;
	text-transform: uppercase;
}

.investorrelation-tab-content-financial-presentation-detail-periode {
	margin-bottom: 40px;
}

.investorrelation-tab-content-financial-presentation-detail-periode-content {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding-left: 100px;
	gap: 0 30px;
}

.financial-presentation-file-wrapper {
	flex: calc(50%);
	flex-grow: 0;
	max-width: 310px;
}

.investorrelation-tab-content-key-financial-highlights {
	background-color: #f5f3f2;
}

.investorrelation-kfh-table {
	--bs-table-bg: #f5f3f2 !important;
	font-size: 13px;
}

.investorrelation-kfh-table td,
.investorrelation-kfh-table th {
	text-align: right!important;
	padding: 0.45rem!important;
}

.investorrelation-kfh-table th {
	font-family: var(--font-family-henju-bold)!important;
	font-weight: 500;
}

.investorrelation-kfh-table tbody tr {
	border-bottom: 1px solid #dee2e6!important;
}

.investorrelation-kfh-table td:first-child {
	text-align: left!important;
}

.text-orange {
	color: var(--tango)!important;
	font-family: var(--font-family-henju-bold)!important;
}

/*	Investor Relation Section End  */

/*	Corporate Governance Section  */

#corporategovernance-hero {
	background-color: transparent;
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 20px 0;
	position: relative;
	border-radius: 150px 150px 0 0;
    top: 100px;
	max-height: 100%;
}

.corporategovernance-header-wrapper {
	margin: 100px 0 100px 0;
	padding: 0 80px;
}

.corporategovernance-header-title {
	font-family: var(--font-family-henju-bold);
    color: var(--lightsystem-backgroundprimary);
    font-size: 85px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 85px;
    text-align: center;
    margin-bottom: 50px;
}

.corporategovernance-header-text {
	color: var(--lightsystem-backgroundprimary);
    font-family: var(--font-family-henju-regular);
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 35px;
    text-align: center;
	padding-bottom: 150px;
}

#corporategovernance {
    background-color: var(--lightsystem-backgroundprimary);
    position: relative;
    max-height: 100%;
    padding: 0;
    margin: -5% auto 0px;
    border-radius: 45px 45px 0px 0px;
}

.corporategovernance-wrapper {
	margin-bottom: 200px;
}

.corporategovernance-tab-wrapper {
	padding-bottom: 100px;
	border-right: 1px solid;
    border-right-color: #d1d5db;
    padding-right: 40px;
	padding-top: 20px;
}

.corporategovernance-tab {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-left: 20px;
}

.corporategovernance-tab-link {
	border: none;
    outline: none;
    background-color: transparent;
    width: 100%;
    height: 74px;
    padding: 22px 16px 22px 0px;
    font-family: var(--font-family-henju-regular);
    color: var(--eerie-black);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 16px;
    text-align: left;
	white-space: pre-line;
	border-bottom: 1px solid;
    border-bottom-color: #d1d5db;
    transition-property: all;
    transition-duration: .12s;
    transition-timing-function: cubic-bezier(0,0,.2,1);
}

.corporategovernance-tab-link:hover,
.corporategovernance-tab-link.active {
	font-family: var(--font-family-henju-semibold)!important;
	color: var(--tango)!important;
	padding-left: 25px!important;
    border-left: 5px solid!important;
    border-left-color: var(--tango)!important;
}

.corporategovernance-dropdown {
	display: none;
}

.corporategovernance-dropdown-content {
	/* display: none; */
	background-color: rgba(18, 18, 18, 1);
	opacity: 0;
	visibility: hidden;
	transition-property: opacity;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
    transition-duration: .5s;
	z-index: 99;
    position: absolute;
	height: 100vh;
    width: 100vw;
	display: flex;
    flex-direction: column;
	padding-top: 15px;
}

.corporategovernance-dropdown-toggle svg {
	-moz-transition: rotate(0deg);
	-webkit-transition: rotate(0deg);
	transition: rotate(0deg);
	transform: translateX(0) translateY(0) rotate(0deg) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.corporategovernance-content-wrapper {
	z-index: 1;
}

.corporategovernance-tab-content-header {
	padding: 30px;
}

.corporategovernance-tab-content-header-title {
	font-family: var(--font-family-henju-bold);
    font-size: 25px;
    /* font-weight: 700; */
    color: var(--eerie-black);
    letter-spacing: 0px;
    line-height: normal;
    text-align: left;
	margin-bottom: 0;
}

.corporategovernance-tab-content-header-line {
	margin: 0 30px;
    color: #a3a3a3;
    opacity: 1;
}

.corporategovernance-tab-content-body {
	padding: 0 30px;
    margin: 30px 0 100px;
}

.corporategovernance-tab-content-document-header {
	padding: 30px 0px;
}

.corporategovernance-tab-content-document-header-title {
	font-family: var(--font-family-henju-bold);
    font-size: 25px;
    /* font-weight: 700; */
    color: var(--eerie-black);
    letter-spacing: 0px;
    line-height: normal;
    text-align: left;
}

.corporategovernance-tab-content-document-header-line {
	margin: 0;
    color: #a3a3a3;
    opacity: 1;
}

.corporategovernance-tab-content-document-value {
	padding: 0;
    margin: 30px 0 100px;
}

.corporategovernance-tab-content-file-link {
	text-decoration: none;
}

.corporategovernance-tab-content-file-link-item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding-top: 16px;
	padding-bottom: 16px;
}

.corporategovernance-tab-content-file-link-pdf {
	display: flex;
    height: 100%;
    width: 27px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
	margin-right: 30px;
}

.corporategovernance-tab-content-file-link-title {
	flex: 1 1 0%;
}

.corporategovernance-tab-content-file-link-title-text {
	font-family: var(--font-family-henju-medium);
    color: var(--black);
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 34px;
    text-align: left;
}

.corporategovernance-tab-content-file-link-download {
	display: flex;
    height: 100%;
    width: 26px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
	margin-right: 20px;
}

.corporategovernance-tab-content-wrapper {
	display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.corporategovernance-tab-content-card {
	background-color: #f5f5f5;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    width: 350px;
    padding: 40px;
}

.corporategovernance-tab-content-card-header {
	font-family: var(--font-family-henju-bold);
    color: var(--black);
    font-size: 23px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 20px;
	text-align: left;
    margin-bottom: 40px;
}

.corporategovernance-tab-content-card-summary {
	font-family: var(--font-family-henju-regular);
    color: var(--black);
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 35px;
    text-align: left;
}

.corporategovernance-tab-content-summary {
	margin-bottom: 50px;
}

.corporategovernance-tab-content-summary-value {
	font-family: var(--font-family-henju-regular);
    color: var(--eerie-black);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 27px;
}

.corporategovernance-tab-content-summary-value img {
	max-width: 100%;
	height: auto;
}

.corporategovernance-tab-content-member {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 50px;
	margin-bottom: 80px;
}

.corporategovernance-tab-content-image-wrapper {
	background-color: transparent;
	cursor: pointer;
	text-align: center;
}

.corporategovernance-tab-content-image {
	width: 200px!important;
    height: 210px!important;
    object-fit: cover!important;
    object-position: center top!important;
    margin-bottom: 30px;
    border-radius: 17px;
	border: none;
	background-color: #9699AC;
}

.corporategovernance-tab-content-image-name {
	font-family: var(--font-family-henju-bold);
    color: var(--black);
    font-size: 20px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 20px;
    text-align: left;
    max-width: 290px;
    margin: 0px auto 10px;
}

.corporategovernance-tab-content-image-job {
	font-family: var(--font-family-henju-semibold);
    color: rgb(82, 82, 82);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 16px;
    text-align: left;
    max-width: 290px;
    margin: auto;
}

.corporategovernance-tab-content-image-wrapper:hover 
.corporategovernance-tab-content-image {
    border: 2px solid var(--tango);
}

.corporategovernance-tab-content-image-wrapper:hover 
.corporategovernance-tab-content-image-name {
    color: var(--tango);
}

/*	Corporate Governance Section End  */

/*	News Section  */

#news-hero {
	background-color: transparent;
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 20px 0;
	position: relative;
	border-radius: 150px 150px 0 0;
    top: 100px;
	max-height: 100%;
}

.news-header-wrapper {
	margin: 100px 0 100px 0;
	padding: 0 80px;
}

.news-header-title {
	font-family: var(--font-family-henju-bold);
    color: var(--lightsystem-backgroundprimary);
    font-size: 85px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 85px;
    text-align: center;
    margin-bottom: 50px;
}

.news-header-text {
	color: var(--lightsystem-backgroundprimary);
    font-family: var(--font-family-henju-regular);
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 35px;
    text-align: center;
	padding-bottom: 150px;
}

#news {
	background-color: var(--lightsystem-backgroundprimary);
	padding: 20px 0;
	position: relative;
	margin: -5% auto 0;
	border-radius: 150px 150px 0 0;
	max-height: 100%;
}

.news-container-wrapper {
	background: transparent;
	margin-top: 40px;
	padding: 0 30px;
	/* margin-bottom: 400px; */
}

.news-category-wrapper {
	display: flex;
	flex-direction: row;
	gap: 30px;
}

.news-category-link {
	background-color: transparent;
    align-items: center;
    border-radius: 30px;
    display: flex;
    gap: 10px;
    height: 60px;
    justify-content: center;
    padding: 22px 64px;
    border: none;
    font-family: var(--font-family-henju-medium);
    color: var(--eerie-black);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.90px;
    line-height: 16px;
    text-align: center;
    white-space: nowrap;
	text-transform: uppercase;
}

.news-category-link:hover,
.news-category-link.active {
	background-color: #a3a3a326!important;
	font-family: var(--font-family-henju-bold)!important;
	color: var(--tango)!important;
}

.news-detail-wrapper {
	background: transparent;
    margin-top: 100px;
    margin-bottom: 200px;
}

.news-press-release-feature-link,
.news-press-release-link {
	text-decoration: none;
	cursor: pointer;
}

.news-press-release-feature-wrapper {
	display: flex;
	flex-direction: row;
	gap: 25px;
	margin-bottom: 60px;
}

.news-press-release-feature-link:hover .news-press-release-feature-title {
    color: var(--tango);
}

.news-press-release-feature-link:hover .news-press-release-feature-image {
    transform: scale(1.025);
    transition: transform 0.3s ease; /* Smooth animation */
}

/* Optional: reset transition so it's not abrupt */
.news-press-release-feature-image {
    transition: transform 0.3s ease;
}

.news-press-release-feature-title {
    transition: color 0.3s ease;
}

.news-press-release-feature-image {
	background-color: transparent;
    height: 300px;
	width: 550px;
    object-fit: cover;
    border-radius: 20px;
	-webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}

.news-press-release-feature-description {
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.news-press-release-feature-subtitle {
	font-family: var(--font-family-inter);
    font-size: 18px;
    color: var(--tango);
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 14px;
    text-align: left;
	text-transform: uppercase;
}

.news-press-release-feature-title {
	font-family: var(--font-family-inter);
    color: var(--black);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 41px;
	margin-top: 20px;
	transition: color 0.3s ease-in-out;
}

.news-press-release-card-wrapper {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 60px 30px;
	/* margin-top: 60px; */
    margin-bottom: 70px;
}

.news-press-release-card {
	flex: 0 0 33.3333%;
	width: 335px;
	background-color: var(--lightsystem-backgroundprimary);
    border: 0px none;
    border-radius: 8px;
    box-shadow: 0px 4px 6px #0000001a, 0px 2px 4px #0000001a;
	cursor: pointer;
	min-height: 100%;
}

.news-press-release-card-body {
	padding: 25px 25px 40px 25px;
}

.news-press-release-card-subtitle {
	color: var(--tango);
    font-family: var(--font-family-inter);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.00px;
    line-height: 14px;
    text-align: left;
	text-transform: uppercase;
}

.news-press-release-card-title {
	color: var(--black);
    font-family: var(--font-family-inter);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.00px;
    line-height: 23px;
    text-align: left;
}

.news-press-release-card:hover .news-press-release-card-image {
    transform: scale(1.025);
}

/* Smooth animation */
.news-press-release-card-image {
	height: 180px;
	object-fit: cover;
    transition: transform 0.3s ease;
}


.news-press-release-load-more-wrapper {
	text-align: center;
	padding-bottom: 100px;
}

.news-magazine-press-release-load-more-wrapper {
	text-align: center;
}

.news-press-release-load-more-button {
	background-color: transparent;
    border-color: var(--tango);
    border-radius: 30px;
	height: 60px;
    padding: 22px 64px;
	font-family: var(--font-family-henju-medium);
    color: var(--tango);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.90px;
    line-height: 16px;
    text-align: center;
	text-transform: uppercase;
}

.news-press-release-load-more-button:hover {
	border: none !important;
    background-color: var(--tango) !important;
    color: var(--lightsystem-backgroundprimary) !important;
}

.news-magazine-recent-wrapper,
.news-magazine-all-wrapper {
	display: flex;
    flex-direction: row;
    gap: 80px;
}

.news-magazine-recent-card-image {
	height: 170px;
	object-fit: cover;
}

.news-magazine-recent-text,
.news-magazine-all-text {
	font-family: var(--font-family-henju-semibold);
    color: var(--eerie-black);
    font-size: 55px;
    /* font-weight: 600; */
    letter-spacing: 0px;
    line-height: 55px;
    text-align: left;
}

.news-magazine-recent-text-line,
.news-magazine-all-text-line {
	margin: 0;
    opacity: 1;
    border-top: 5px solid var(--tango);
    width: 90px;
}

.news-magazine-recent-card-wrapper {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 150px;
}

.news-magazine-recent-card {
	/* flex: 0 0 30%;
	max-width: 300px; */
	flex: 1 1 calc(33.33% - 20px); /* auto width with spacing considered */
    max-width: calc(33.33% - 20px);
    min-width: 230px; /* prevent too small */
	background-color: transparent;
    border: 0px none;
}

.news-magazine-recent-card-image {
	border-radius: 15px;
	transition: transform 0.3s ease-in-out;
}

.news-magazine-recent-card-body {
	padding-left: 0;
	padding-right: 0;
}

.news-magazine-recent-card-subtitle {
	font-family: var(--font-family-inter);
    color: #6b7280;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 13px;
    text-align: left;
}

.news-magazine-recent-card-title {
	font-family: var(--font-family-henju-bold);
    color: var(--black);
    font-size: 22px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 24px;
    text-align: left;
	margin-bottom: 10px;
	transition: color 0.3s ease-in-out;
}

.news-magazine-recent-card-footer {
	border: none!important;
    padding: 0!important;
    background-color: transparent!important;
}

.news-magazine-recent-card-button {
	background-color: var(--tango);
    border: none;
    border-radius: 25px;
    height: 50px;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
	gap: 10px;
    font-family: var(--font-family-henju-bold);
    color: var(--lightsystem-backgroundprimary);
    font-size: 15px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: normal;
    text-align: center;
}

.news-magazine-recent-card-button:hover,
.news-magazine-recent-card-button:focus {
	background-color: var(--tango)!important;
	color: var(--lightsystem-backgroundprimary)!important;
}

.news-magazine-archive-wrapper {
	margin-top: 120px;
}

.news-magazine-archive-detail-card:hover .news-magazine-archive-detail-card-image {
    transform: scale(1.025);
}

/* Animasi halus */
.news-magazine-archive-detail-card-image {
    transition: transform 0.3s ease;
}


.news-magazine-archive-text {
	font-family: var(--font-family-henju-medium);
    color: #a3a3a3;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 20px;
    text-align: left;
}

.news-magazine-archive-list {
	list-style: none;
	margin-left: 0;
    padding-left: 0;
	margin-bottom: 200px;
}

.news-magazine-archive-list-item {
	font-family: var(--font-family-henju-medium);
    color: #a3a3a3;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 20px;
    text-align: left;
	padding: 10px 0;
	cursor: pointer;
}

.news-magazine-archive-list-item-link {
	text-decoration: none;
	color: #a3a3a3;
}

.news-magazine-archive-list-item:hover,
.news-magazine-archive-list-item-link:hover {
	color: var(--tango)!important;
}

.news-magazine-archive-detail-wrapper {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 200px;
	height: 100%;
}

.news-magazine-archive-detail-card {
	/* flex: 0 0 33.3333%; */
	width: 230px;
	height: 230px;
	background-color: transparent;
    border: 0px none;
}

.news-magazine-recent-card:hover .news-magazine-recent-card-subtitle {
    font-weight: 700;
}

.news-magazine-recent-card:hover .news-magazine-recent-card-title {
    color: var(--tango);
}

.news-magazine-recent-card:hover .news-magazine-recent-card-image {
    transform: scale(1.025);
}

/* Tambahkan transition agar animasinya halus */
.news-magazine-recent-card-subtitle {
    transition: font-weight 0.3s ease;
}

.news-magazine-recent-card-title {
    transition: color 0.3s ease;
}

.news-magazine-recent-card-image {
    transition: transform 0.3s ease;
}

.news-magazine-archive-detail-card-image,
.magazine-other-detail-card-image {
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	background-color: #d9d9d9;
	transition: transform 0.3s ease-in-out;
}

.news-magazine-archive-detail-card-title-wrapper,
.magazine-other-detail-card-title-wrapper {
	top: auto!important;
}

.news-magazine-archive-detail-card-subtitle {
	font-family: var(--font-family-henju-medium);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 22px;
    text-align: left;
    margin-bottom: 0;
    color: var(--lightsystem-backgroundprimary);
}

.news-magazine-archive-detail-card-title {
	font-family: var(--font-family-henju-bold);
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 25px;
    text-align: left;
    margin-bottom: 0;
    color: var(--lightsystem-backgroundprimary);
}

#news-content {
	background: transparent;
    position: relative;
    top: 100px;
	max-height: 100%;
	overflow-x: hidden;
}

.news-content-image {
	width: 100%;
	height: 600px;
	object-fit: cover;
	border-radius: 150px;
}

.news-content-wrapper {
	margin-top: 80px;
    margin-bottom: 70px;
}

.news-content-detail-other-card:hover .news-content-detail-other-card-subtitle {
    font-weight: 700;
}

.news-content-detail-other-card:hover .news-content-detail-other-card-title {
    color: var(--tango);
}

.news-content-detail-other-card:hover .news-content-detail-other-card-image {
    transform: scale(1.025);
}

/* Smooth Transition Effects */
.news-content-detail-other-card-subtitle {
    transition: font-weight 0.3s ease;
}

.news-content-detail-other-card-title {
    transition: color 0.3s ease;
}

.news-content-detail-other-card-image {
    transition: transform 0.3s ease;
}


.news-content-detail-wrapper {
	padding: 0 120px;
	margin-bottom: 200px;
}

.news-content-detail-back-button {
	background-color: var(--lightsystem-backgroundprimary);
    border: 1px solid;
    border-color: var(--tango);
    border-radius: 100px;
    height: 60px;
    width: 325px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-family: var(--font-family-henju-medium);
    color: var(--tango);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 17px;
    text-align: center;
    white-space: nowrap;
	margin-bottom: 50px;
}

.news-content-detail-back-button:hover,
.news-content-detail-back-button:focus {
	border-color: var(--tango)!important;
	color: var(--tango)!important;
}

.news-content-detail-title {
	font-family: var(--font-family-henju-bold);
    color: var(--eerie-black);
    font-size: 55px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 55px;
    text-align: left;
}

.news-content-detail-date-share {
	display: flex;
    justify-content: space-between;
    align-items: center;
	margin-bottom: 20px;
}

.news-content-detail-date,
.news-content-detail-share-text {
	font-family: var(--font-family-henju-regular);
    color: #525252;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 35px;
    text-align: left;
    white-space: nowrap;
}

.news-content-detail-share-wrapper {
	display: flex;
	gap: 20px;
}

.news-content-detail-share-socmed {
	display: flex;
    gap: 20px;
    align-items: flex-start;
}

.news-content-detail-share-socmed-whatsapp,
.news-content-detail-share-socmed-email,
.news-content-detail-share-socmed-facebook,
.news-content-detail-share-socmed-linkedin {
	color: var(--eerie-black);
    font-size: 32px;
}

.news-content-detail-share-socmed-whatsapp:hover,
.news-content-detail-share-socmed-email:hover,
.news-content-detail-share-socmed-facebook:hover,
.news-content-detail-share-socmed-linkedin:hover,
.news-content-detail-share-socmed-whatsapp:focus,
.news-content-detail-share-socmed-email:focus,
.news-content-detail-share-socmed-facebook:focus,
.news-content-detail-share-socmed-linkedin:focus {
	color: var(--tango)!important;
}

.news-content-detail-value-wrapper {
	margin-bottom: 120px;
}

.news-content-detail-value {
	font-family: var(--font-family-henju-regular);
    color: var(--eerie-black);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 30px;
    text-align: left;
}

.news-content-detail-line {
	opacity: 1;
}

.news-content-detail-other-wrapper {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 200px;
}

.news-content-detail-other-title {
	font-family: var(--font-family-henju-semibold);
    color: var(--eerie-black);
    font-size: 40px;
    /* font-weight: 600; */
    letter-spacing: 0px;
    line-height: 55px;
    text-align: left;
    margin: 30px 0;
}

.news-content-detail-other-card-wrapper {
	flex: 1 1 33.3333%;
    max-width: calc(33.3% - 20px);
    min-width: 250px;
	/* padding-bottom: 150px; */
}

.news-content-detail-other-card {
	background-color: transparent;
    border: 0px none;
	min-height: 100%;
}

.news-content-detail-other-card-image {
	height: 230px;
	object-fit: cover;
	border-radius: 15px;
	transition: transform 0.3s ease-in-out;
}

.news-content-detail-other-card-body {
	padding-left: 0;
	padding-right: 0;
}

.news-content-detail-other-card-subtitle {
	font-family: var(--font-family-inter);
    color: #6b7280;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 13px;
    text-align: left;
}

.news-content-detail-other-card-title {
	font-family: var(--font-family-henju-bold);
    color: var(--black);
    font-size: 22px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 24px;
    text-align: left;
	margin-bottom: 10px;
	transition: color 0.3s ease-in-out;
}

.news-content-detail-other-card-footer {
	border: none!important;
    padding: 0!important;
    background-color: transparent!important;
}

.news-content-detail-other-card-button {
	background-color: var(--tango);
    border: none;
    border-radius: 25px;
    height: 50px;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
	gap: 10px;
    font-family: var(--font-family-henju-bold);
    color: var(--lightsystem-backgroundprimary);
    font-size: 15px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: normal;
    text-align: center;
}

.news-content-detail-other-card-button:hover,
.news-content-detail-other-card-button:focus {
	background-color: var(--tango)!important;
	color: var(--lightsystem-backgroundprimary)!important;
}

#magazine-other {
	background-color: #f5f5f5;
	padding: 20px 0;
	position: relative;
	margin: -5% auto 0;
	border-radius: 150px 150px 0 0;
	max-height: 100%;
}

.magazine-container-wrapper {
	background: transparent;
}

.magazine-header-wrapper {
	background: transparent;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 60px 0 80px 0;
	padding: 0 30px;
	/* margin-bottom: 400px; */
}

.news-magazine-other-wrapper {
	background: transparent;
    margin-top: 100px;
    margin-bottom: 200px;
}

.magazine-other-detail-card:hover .magazine-other-detail-card-image {
    transform: scale(1.025);
}

/* Tambahkan transisi agar efek lebih halus */
.magazine-other-detail-card-image {
    transition: transform 0.3s ease;
}

.magazine-carousel-button-wrapper {
	display: flex;
	gap: 20px;
	margin-right: 40px;
}
  
.magazine-carousel-button {
	width: 79px;
	height: 79px;
	border-radius: 50%;
	background-color: var(--tango); /* Tailwind's orange-500 */
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	transition: background-color 0.3s ease;
}
  
.magazine-carousel-button-arrow {
	width: 17px;
	height: 30px;
	object-fit: contain;
}

.magazine-other-detail-card {
    /* flex: 0 0 33.3333%; */
    width: 280px;
	height: 280px;
    background-color: transparent;
    border: 0px none;
}

.magazine-other-detail-card-subtitle {
	font-family: var(--font-family-henju-medium);
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 22px;
    text-align: left;
    margin-bottom: 0;
    color: var(--lightsystem-backgroundprimary);
}

.magazine-other-detail-card-title {
	font-family: var(--font-family-henju-bold);
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 34px;
    text-align: left;
    margin-bottom: 0;
    color: var(--lightsystem-backgroundprimary);
}

.magazine-swiper-wrapper {
	margin-bottom: 400px;
}

/*	News Section End  */

/*	Career Section  */

#career-hero {
	background-color: transparent;
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 20px 0;
	position: relative;
	border-radius: 150px 150px 0 0;
    top: 100px;
	max-height: 100%;
}

.career-header-wrapper {
	margin: 100px 0 100px 0;
	padding: 0 80px;
}

.career-header-title {
	font-family: var(--font-family-henju-bold);
    color: var(--lightsystem-backgroundprimary);
    font-size: 85px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 85px;
    text-align: center;
    margin-bottom: 50px;
}

.career-header-text {
	color: var(--lightsystem-backgroundprimary);
    font-family: var(--font-family-henju-regular);
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 35px;
    text-align: center;
	padding-bottom: 200px;
}

#career {
	background-color: transparent;
	background-image: url("../assets/component/career-program-bg.png");
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 20px 0;
	position: relative;
	margin: -5% auto 0;
	border-radius: 150px 150px 0 0;
	max-height: 100%;
}

.career-container-wrapper {
	background-color: transparent;
}

.career-program-wrapper {
	display: flex;
    flex-direction: row;
    gap: 10px;
}

.career-program-image-wrapper {
	background: transparent;
    position: relative;
    margin: -8% auto 0;
}

.career-program-image {
	width: 540px;
	height: 720px;
	object-fit: cover;
    border-radius: 30px;
}

.career-program-detail-wrapper {
	padding: 30px 40px;
}

.career-program-title {
	font-family: var(--font-family-henju-bold);
    color: var(--eerie-black);
    font-size: 35px;
	/* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 41px;
    text-align: left;
	margin-bottom: 35px;
}

.career-program-description {
	font-family: var(--font-family-henju-regular);
    color: var(--eerie-black);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 35px;
    text-align: left;
}

.career-step-wrapper {
	padding: 0 40px;
	margin-top: 80px;
}

.career-step-text {
	font-family: var(--font-family-henju-bold);
    color: var(--eerie-black);
    font-size: 35px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 41px;
    text-align: left;
	margin-bottom: 50px;
}

.career-step-card-wrapper {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 40px;
}

.career-step-card {
	max-width: 400px;
    flex: 0 0 30%;
    background-color: var(--lightsystem-backgroundprimary);
    border: 1.2px solid;
    border-color: #d4d4d4;
    border-radius: 8px;
}

.career-step-card-body {
	padding: 40px;
}

.career-step-circle-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}

.career-step-circle-outer {
	background-color: #f26f2140;
    border-radius: 50px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
}

.career-step-circle-inner {
	background-color: var(--tango);
    border-radius: 35px;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
}

.career-step-circle-text {
	font-family: var(--font-family-inter);
    color: var(--lightsystem-backgroundprimary);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 20px;
    text-align: center;
	margin-bottom: 0;
}

.career-step-title {
	font-family: var(--font-family-henju-bold);
    color: var(--black);
    font-size: 20px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 20px;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
	margin-bottom: 15px;
}

.career-step-name {
	font-family: var(--font-family-henju-regular);
    color: #525252;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 20px;
    text-align: center;
	margin-bottom: 25px;
}

.career-step-line {
	opacity: .15 !important;
    margin: 1.5rem 5rem !important;
}

.career-step-summary {
	font-family: var(--font-family-henju-regular);
    color: #525252;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 27px;
    text-align: left;
}

#career-apply {
	background-color: #e5e7eb;
	position: relative;
    margin: -19% auto 0;
	padding: 20px 0;
    border-radius: 150px 150px 0 0;
    max-height: 100%;
	z-index: 1;
}

.career-apply-wrapper {
	background: transparent;
}

.career-apply-qualification {
	display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: 25%;
	margin-bottom: 80px;
}

.career-apply-qualification-image-wrapper {
	background: transparent;
}

.career-apply-qualification-detail-wrapper {
	margin-top: 100px;
    margin-right: 50px;
}

.career-apply-qualification-image {
	width: 585px;
	height: 555px;
    object-fit: cover;
}

.career-apply-qualification-title {
	font-family: var(--font-family-henju-bold);
    color: var(--eerie-black);
    font-size: 35px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 41px;
    text-align: left;
	margin-bottom: 50px;
}

.career-apply-qualification-description-wrapper {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.career-apply-qualification-description-detail {
	display: flex;
    flex-direction: row;
    gap: 25px;
}

.career-apply-qualification-description-image {
	max-height: 30px;
}

.career-apply-qualification-text {
	font-family: var(--font-family-henju-regular);
    color: var(--eerie-black);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 35px;
    text-align: left;
	margin-bottom: 0;
}

.career-apply-submit {
	background: transparent;
	padding: 0 100px;
	margin-bottom: 300px;
	/* padding-bottom: 200px; */
}

.career-apply-submit-detail-wrapper {
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 290px;
	border-radius: 15px;
}

.career-apply-submit-detail-overlay {
	padding: 30px 80px;
    display: flex;
    flex-direction: row;
	align-items: center;
    gap: 90px;
}

.career-apply-submit-detail-text-wrapper {
	width: 50%;
}

.career-apply-submit-detail-title {
	font-family: var(--font-family-henju-bold);
    color: var(--lightsystem-backgroundprimary);
    font-size: 35px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 41px;
    text-align: left;
	margin-bottom: 20px;
}

.career-apply-submit-detail-summary {
	font-family: var(--font-family-henju-regular);
    color: var(--lightsystem-backgroundprimary);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 25px;
    text-align: left;
}

.career-apply-submit-detail-button-wrapper {
	margin-top: auto;
	margin-bottom: auto;
}

.career-apply-submit-detail-button {
	background-color: var(--lightsystem-backgroundprimary);
	border-color: var(--lightsystem-backgroundprimary);
    border-radius: 100px;
	height: 60px;
    padding: 12px 64px;
	font-family: var(--font-family-henju-bold);
    color: var(--tango);
    font-size: 18px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 35px;
    text-align: center;
	white-space: nowrap;
	text-transform: uppercase;
}

.career-apply-submit-detail-button:hover,
.career-apply-submit-detail-button:focus {
	background-color: var(--lightsystem-backgroundprimary)!important;
	border-color: var(--lightsystem-backgroundprimary)!important;
	color: var(--tango)!important;
}

/*	Career Section End  */

/*	Other  */

.fancybox__container {
	z-index: 999999!important;
}

/*	Other End  */

/*	Footer Section */

#footer {
	background-color: transparent;
    background-size: cover;
	background-position: center;
	padding: 20px 0;
	position: relative;
	margin: -15% auto 0;
	border-radius: 150px 150px 0 0;
}

.footer-wrapper {
	margin-top: 80px;
	padding: 0 40px;
}

.footer-left-wrapper {
	padding-right: 50px;
	padding-left: 30px;
}

.footer-text-title {
	font-family: var(--font-family-henju-semibold);
	color: var(--lightsystem-backgroundprimary);
	font-size: 45px;
	/* font-weight: 600; */
	letter-spacing: 0px;
	line-height: 52px;
	text-align: left;
	margin-bottom: 3rem;
}

.footer-text-summary {
	font-family: var(--font-family-henju-regular);
	color: var(--lightsystem-backgroundprimary);
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 40px;
	text-align: left;
	margin-bottom: 2rem;
}

.footer-text-contact {
	font-family: var(--font-family-henju-bold);
	color: var(--lightsystem-backgroundprimary);
	font-size: 18px;
	letter-spacing: 0px;
	line-height: 18px;
	text-align: left;
	margin-bottom: 1rem;
}

.footer-contact-wrapper {
	display: flex;
	gap: 100px;
}

.footer-contact-number {
	font-family: var(--font-family-henju-regular);
	color: var(--lightsystem-backgroundprimary);
	font-size: 16px;
	letter-spacing: 0px;
	line-height: normal;
	text-align: left;
	white-space: nowrap;
}

.footer-contact-phone,
.footer-contact-fax {
	margin-bottom: .5rem;
}

.footer-contact-address {
	font-family: var(--font-family-inter);
	color: var(--lightsystem-backgroundprimary);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 23px;
	text-align: left;
}

.footer-right-wrapper {
	padding-left: 80px;
}

.footer-right-wrapper img {
	margin-bottom: 60px;
}

.footer-logo {
	width: 140px;
}

.footer-text-quick-link {
	font-family: var(--font-family-henju-bold);
	color: var(--lightsystem-backgroundprimary);
	font-size: 18px;
	letter-spacing: 0px;
	line-height: 18px;
	text-align: left;
	margin-bottom: 1rem;
}

.footer-link-wrapper li a {
	font-family: var(--font-family-henju-regular);
	color: var(--lightsystem-backgroundprimary);
	font-size: 16px;
	letter-spacing: 0px;
	line-height: normal;
	text-align: left;
}

.footer-horizontal-line {
	color: var(--lightsystem-backgroundprimary);
	opacity: 1;
	margin-top: 3rem;
	margin-bottom: 2rem;
	margin-left: 60px;
}

.footer-end-wrapper {
	margin-top: 3rem;
	margin-bottom: 1rem;
}

.footer-end-left-wrapper {
	padding-left: 70px;
}

.footer-copyright {
	font-family: var(--font-family-henju-regular);
    color: var(--lightsystem-backgroundprimary);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 24px;
    text-align: left;
}

.footer-end-right-wrapper {
	display: flex;
    flex: 1;
    flex-direction: row;
    gap: 30px;
	align-items: center;
}

.footer-text-followus {
	font-family: var(--font-family-henju-bold);
	color: var(--lightsystem-backgroundprimary);
	font-size: 18px;
	letter-spacing: 0px;
	line-height: 18px;
	text-align: left;
	white-space: nowrap;
}

.footer-social-media-icon a {
	font-size: 24px;
	color: var(--lightsystem-backgroundprimary);
	transition: color 0.3s ease;
	margin: 0 20px;
}

.footer-social-media-icon a:hover {
	color: var(--tango);
}

/*	Footer Section End	*/

/*	Whistleblower Button  */

.whistleblower-wrapper {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 99999;
	padding: 10px;
}

.whistleblower-button {
	align-items: center;
    background-color: var(--tango);
    border-radius: 20px;
    justify-content: center;
    height: 25px;
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    font-family: var(--font-family-henju-extralight);
    color: var(--lightsystem-backgroundprimary);
    font-size: 10px;
    letter-spacing: 5px;
    line-height: 16px;
    text-align: center;
    white-space: nowrap;
	text-transform: uppercase;
}

.whistleblower-button:hover,
.whistleblower-button:focus {
	background-color: var(--tango)!important;
	color: var(--lightsystem-backgroundprimary)!important;
}

.whistleblower-button img {
	margin: 0 5px;
}

/*	Whistleblower Button End  */

/*	404 Not Found Page	*/

.error-content-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.error-content-text-wrapper {
	position: absolute;
    bottom: 20%;
    left: 12%;
	width: 700px;
}

.error-content-text-code {
	font-family: var(--font-family-henju-bold);
    color: var(--eerie-black);
    font-size: 100px;
    letter-spacing: 0px;
    line-height: 27px;
    text-align: left;
	margin-bottom: 30px;
}

.error-content-text-sorry {
	font-family: var(--font-family-henju-bold);
    color: var(--eerie-black);
    font-size: 45px;
    letter-spacing: 0px;
    line-height: 45px;
    text-align: left;
}

.error-content-text-no-worries {
	font-family: var(--font-family-henju-regular);
    color: var(--eerie-black);
    font-size: 22px;
    letter-spacing: 0px;
    line-height: 27px;
    text-align: left;
}

.error-content-button-wrapper {
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 22px 64px;
    background-color: var(--tango);
    border-radius: 30px;
    height: 60px;
    width: 325px;
}

.error-content-back-button {
	font-family: var(--font-family-henju-medium);
    color: var(--lightsystem-backgroundprimary);
    font-size: 15px;
    letter-spacing: 0.90px;
    line-height: 16px;
    text-align: center;
    white-space: nowrap;
	border: none;
	outline: none;
}

.error-content-back-button:hover,
.error-content-back-button:focus {
	color: var(--lightsystem-backgroundprimary)!important;
	border: none!important;
	outline: none!important;
}

.error-content-object-wrapper {
	position: absolute;
    bottom: 0;
    right: 50px;
}

.error-content-object-image {
	height: 500px;
}

/*	404 Not Found Page End	*/

/*	Contact Us Section Page	*/

/*	Career Section  */

#contactus-hero {
	background-color: transparent;
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 20px 0;
	position: relative;
	border-radius: 150px 150px 0 0;
    top: 100px;
	max-height: 100%;
}

.contactus-header-wrapper {
	margin: 100px 0 100px 0;
	padding: 0 80px;
}

.contactus-header-title {
	font-family: var(--font-family-henju-bold);
    color: var(--lightsystem-backgroundprimary);
    font-size: 85px;
    /* font-weight: 700; */
    letter-spacing: 0px;
    line-height: 85px;
    text-align: center;
    margin-bottom: 50px;
}

.contactus-header-text {
	color: var(--lightsystem-backgroundprimary);
    font-family: var(--font-family-henju-regular);
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 35px;
    text-align: center;
	padding-bottom: 150px;
}

#contactus {
	background-color: var(--lightsystem-backgroundprimary);
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 20px 0;
	position: relative;
	margin: -5% auto 0;
	border-radius: 45px 45px 0 0;
	max-height: 100%;
}

.contactus-container-wrapper {
	background-color: transparent;
	margin-top: 60px;
    margin-bottom: 100px;
}

.contactus-form-wrapper {
	display: flex;
    flex-direction: row;
    gap: 50px;
	padding: 0 90px;
	margin-bottom: 100px;
}

.contactus-form-card-wrapper {
	margin-bottom: 100px;
}

.contactus-card {
    background: url('/assets/component/contactus-card.png') no-repeat center center;
    background-size: cover;
    border-radius: 26px;
    color: var(--lightsystem-backgroundprimary);
	width: 440px;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.contactus-card .card-body {
    position: relative;
    z-index: 1;
	padding: 50px 80px 140px 50px;
}

.contactus-card-info-title {
	font-family: var(--font-family-henju-bold);
    font-size: 35px;
    color: var(--lightsystem-backgroundprimary);
    letter-spacing: 0px;
    line-height: 27px;
    text-align: left;
	margin-bottom: 50px;
}

.contactus-card-address-title,
.contactus-card-phone-title {
	font-family: var(--font-family-henju-bold);
    font-size: 28px;
    color: var(--lightsystem-backgroundprimary);
    letter-spacing: 0px;
    line-height: 27px;
    text-align: left;
	margin-bottom: 25px;
}

.contactus-card-address-text {
	font-family: var(--font-family-henju-regular);
	font-size: 20px;
	color: var(--lightsystem-backgroundprimary);
	letter-spacing: 0px;
	line-height: 27px;
	text-align: left;
	margin-bottom: 50px;
}

.contactus-card-phone-text {
	font-family: var(--font-family-henju-regular);
	font-size: 20px;
	color: var(--lightsystem-backgroundprimary);
	letter-spacing: 0px;
	line-height: 27px;
	text-align: left;
	margin-bottom: 0;
}

.contactus-card-fax-text {
	font-family: var(--font-family-henju-regular);
	font-size: 20px;
	color: var(--lightsystem-backgroundprimary);
	letter-spacing: 0px;
	line-height: 27px;
	text-align: left;
}

.contactus-form-title {
	font-family: var(--font-family-henju-bold);
    font-size: 30px;
    color: var(--eerie-black);
    letter-spacing: 0px;
    line-height: normal;
    text-align: left;
}

.contactus-form-summary {
	font-family: var(--font-family-henju-regular);
	font-size: 20px;
	color: var(--eerie-black);
	letter-spacing: 0px;
	line-height: 27px;
	text-align: left;
	margin-bottom: 40px;
}

.contactus-form-input-text {
	background-color: var(--lightsystem-backgroundprimary);
    height: 51px;
    margin-bottom: 15px;
}

.contactus-form-input-textarea {
	background-color: var(--lightsystem-backgroundprimary);
    margin-bottom: 40px;
}

.contactus-form-control {
	border: 0.8px solid!important;
    border-color: #d1d5db!important;
    border-radius: 13.71px!important;
	font-family: var(--font-family-henju-regular)!important;
    color: #4b5563!important;
    font-size: 18px!important;
}

.contactus-submit-btn {
	background-color: transparent;
    border: 1px solid;
    border-color: var(--tango);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 60px;
    padding: 22px 64px;
    width: 225px;
    text-transform: uppercase;
    font-family: var(--font-family-henju-medium);
    color: var(--tango);
    font-size: 15px;
    letter-spacing: 0.90px;
    line-height: 16px;
    text-align: center;
    white-space: nowrap;
	/* margin-bottom: 100px; */
}

.contactus-submit-btn:hover,
.contactus-submit-btn:focus {
	border-color: var(--tango);
	color: var(--tango);
}

/*	Contact Us Section Page	*/

/*	Search News Results Section Page  */

#searchnews-hero {
	background-color: var(--tango);
	padding: 20px 0;
	position: relative;
	border-radius: 150px 150px 0 0;
    top: 100px;
	max-height: 100%;
}

.searchnews-header-wrapper {
	margin: 100px 0 100px 0;
	padding: 0 80px;
}

.searchnews-header-title {
	font-family: var(--font-family-henju-regular);
    color: var(--lightsystem-backgroundprimary);
    font-size: 50px;
    letter-spacing: 0px;
    line-height: 50px;
    text-align: left;
	margin-bottom: 100px;
	padding-bottom: 50px;
}

#searchnewsresults {
	background-color: var(--lightsystem-backgroundprimary);
	padding: 20px 0;
	position: relative;
	margin: -5% auto 0;
	border-radius: 150px 150px 0 0;
	max-height: 100%;
}

.searchnews-detail-wrapper {
	background: transparent;
    margin-top: 50px;
    margin-bottom: 200px;
}

.news-empty-wrapper {
	padding: 0 60px;
}

.news-empty-title {
	font-family: var(--font-family-henju-bold);
    font-size: 100px;
    color: var(--eerie-black);
    letter-spacing: 0px;
    line-height: 27px;
    text-align: left;
	margin-bottom: 50px;
}

.news-empty-summary {
	font-family: var(--font-family-henju-regular);
    font-size: 24px;
    color: var(--eerie-black);
    letter-spacing: 0px;
    line-height: 27px;
    text-align: left;
}

.news-search-input {
	background-color: var(--lightsystem-backgroundprimary);
    height: 56px;
    width: 325px;
    border: 1px solid;
    border-color: #e1e1e1;
    border-radius: 8px;
    font-family: var(--font-family-dmsans);
    font-size: 16px;
	font-weight: 400;
    color: #414042;
    letter-spacing: 0.08px;
    line-height: 22px;
    text-align: left;
	margin-right: 10px;
}

.news-search-btn {
	background-color: var(--tango);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 56px;
    width: 95px;
    padding: 18px 24px;
    font-family: var(--font-family-dmsans);
    color: var(--lightsystem-backgroundprimary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08px;
    line-height: 19px;
    text-align: center;
    white-space: nowrap;
	margin-bottom: 100px;
}

.news-search-btn:hover,
.news-search-btn:focus {
	background-color: var(--tango)!important;
	color: var(--lightsystem-backgroundprimary)!important;
}

/*	Search News Results Section Page End  */