:root {
    --primary-color: #1832A4;
    --primary-rgb: rgb(24, 50, 164);
    --secondary-color: #0078C0; 
    --secondary-rgb: rgb(0, 120, 192);
    --third-color: #5EDCCD;
    --third-rgb: rgb(94, 220, 205);
    --forth-color: #00331D;
    --forth-rgb: rgb(0, 51, 29);
}

body, html {
	background-color: #fff;
    color: #000;
}

body, html, input, select, textarea, h1, h2, h3, h4 ,h5, p, span, button {
	font-family: 'Muller', sans-serif!important;
}

.desktop_nav {
	display: block;
}

.mobile_nav {
	display: none;
}

.hidden {
	display: none!important;
	visibility: hidden;
	opacity: 0;
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 5px;
}

.form-group label span {
	color: #dc3545;
}

.form-group .form-checkbox {
	margin-bottom: 10px;
}

.form-group p {
	color: #808080;
	font-size: 10px;
	line-height: 18px;
	margin-top: 3px;
	margin-bottom: 0;
}

.form-group input, .form-group select {
	border: 1px solid #BDBDBD;
	font-size: 12px;
	line-height: 18px;
	padding: 10px 15px;
	border-radius: 10px;
	height: 40px!important;
    background-color: #fff;!important;
    color: #000;
}

.form-group textarea {
	border: 1px solid #BDBDBD;
	font-size: 12px;
	line-height: 18px;
	padding: 10px 15px;
	border-radius: 10px;
    background-color: #fff;!important;
    color: #000;
}

.form-control:focus {
	box-shadow: none;
	color: #000;
	border-color: #1832A4;
}

.form-button {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
}

.form-button button {
	border: 1px solid #1832A4;
	border-radius: 8px;
	background: rgb(11,47,71);
	background: -moz-linear-gradient(90deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%);
	background: linear-gradient(90deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1832A4",endColorstr="#5EDCCD",GradientType=1);
	color: #FFF;
	font-size: 14px;
	line-height: 20px;
	padding: 8px 35px;
}

.form-button button:hover {
	background: transparent;
	color: #1832A4;
}

.form-checkbox {
	display: block;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	font-size: 14px;
	line-height: 24px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.form-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 25px;
	width: 25px;
	left: 0;
	top: 0;
}

input[disabled], input[disabled=true], .form-control:disabled {
	background-color: #c5c5c5!important;
}

.form-checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: transparent;
	border: 2px solid #fff;
}

.form-checkbox:hover input ~ .form-checkmark {
	background-color: transparent;
}

.form-checkbox input:checked ~ .form-checkmark {
	background-color: transparent;
}

.form-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

.form-checkbox input:checked ~ .form-checkmark:after {
	display: block;
}

.form-checkbox .form-checkmark:after {
	left: 8px;
    top: 3px;
    width: 6px;
    height: 13px;
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

a:hover {
	color: #0078C0;
}

.iti.iti--allow-dropdown {
	display: block;
	width: 100%;
	height: 40px!important;
}

.iti__arrow {
	border-top-color: #42E8E0!important;
}

.iti__arrow--up {
	border-bottom-color: #42E8E0!important;
}

.iti__country-list {
	background-color: #000!important;
}

.iti__country.iti__highlight, .iti__country.iti__active {
	background-color: rgba(130, 71, 229, 0.5)!important; 
}

.sweet_account .popup_close {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #1832A4;
    border: 1px solid #1832A4;
    z-index: 2;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    border-radius: 0 0 0 5px;
    animation: 0s popup_fade;
    animation-fill-mode: forwards;
    visibility: hidden;
}

@keyframes popup_fade {
    99% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}

.sweet_account .popup_close:hover {
    background-color: transparent;
    color: #1832A4;
}

.swal2-container.swal2-backdrop-show {
    background-color: rgba(0, 0, 0, 0.6)!important;
}

.sweet_account.success.swal2-popup {
	box-shadow: 0px 0px 15px 0px rgba(255,255,255,0.5);
	-webkit-box-shadow: 0px 0px 15px 0px rgba(255,255,255,0.5);
	-moz-box-shadow: 0px 0px 15px 0px rgba(255,255,255,0.5);
	background: rgb(11,47,71)!important;
	background: -moz-linear-gradient(180deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%)!important;
	background: -webkit-linear-gradient(180deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%)!important;
	background: linear-gradient(180deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%)!important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1832A4",endColorstr="#5EDCCD",GradientType=1)!important;
    border-radius: 25px!important;
    overflow: hidden;
}

.sweet_account.success .swal2-html-container {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}

.sweet_account.success .swal2-confirm {
    background-color: #0078C0!important;
    border: 1px solid #fff!important;
    border-radius: 25px!important;
    padding: 5px 50px!important;
    font-size: 14px!important;
    line-height: 20px!important;
}

.sweet_account.success .swal2-confirm:hover {
    background-color: transparent!important;
    color: #0078C0!important;
}

.marquee {
	overflow: hidden;
	opacity: 0;
}

.marquee_ready {
	background-color: #404040;
}

.marquee_ready p {
	font-size: 20px;
	line-height: 26px;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #fff;
}

.primary_title {
	font-size: 50px;
	line-height: 55px;
	font-weight: bold;
	margin-bottom: 0;
}

.secondary_title {
	font-size: 25px;
	line-height: 30px;
	font-weight: bold;
	margin-bottom: 0;
}

.primary_description {
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 0;
}

.secondary_description {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 0;
}

#scrollUp {
	background: -webkit-linear-gradient(90deg, #1832A4 0%, #0078C0 100%);
	background: -moz-linear-gradient(90deg, #1832A4 0%, #0078C0 100%);
	background: -o-linear-gradient(90deg, #1832A4 0%, #0078C0 100%);
	background: linear-gradient(90deg, #1832A4 0%, #0078C0 100%);
}

.general_button {
	display: flex;
	justify-content: center;
	align-items: center;
}

.general_button a, .general_button button, .general_button p {
	background-color: #1832A4;
	border: 1px solid #1832A4;
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	padding: 5px 25px;
	display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.general_button a:hover, .general_button button:hover {
	background: transparent;
	color: #1832A4;
}

.general_button a[disabled][href=""] {
	pointer-events: none;
	background-color: #E2E4E8;
	color: #808080;
}

.general_editor p {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 0;
}

.general_editor p a {
	text-decoration: underline;
}

.general_editor p a:hover {
	color: #0078C0;
}

.secondard_button {
	display: flex;
	justify-content: center;
	align-items: center;
}

.secondard_button a {
	background-color: #fff;
	border: 1px solid #fff;
	color: #000;
	font-size: 14px;
	line-height: 20px;
	padding: 3px 25px;
}

.secondard_button a:hover {
	background-color: #000;
	color: #fff;
}

 .white_button {
	display: flex;
	justify-content: center;
	align-items: center;
}

.white_button a, .white_button button {
	background-color: #fff;
	border: 1px solid #fff;
	color: #1832A4;
	font-size: 14px;
	line-height: 20px;
	padding: 5px 25px;
	display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.white_button a:hover, .white_button button:hover {
	background: transparent;
	color: #fff;
}

.general_image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.general_image img {
	width: 100%;
}

.general_background {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.secondary_section {
	padding-top: 50px;
	padding-bottom: 50px;
}

.secondary_section .secondary_description {
	text-align: right;
	font-weight: bold;
	padding-right: 65px;
	position: relative;
}

.secondary_section .secondary_description:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 50px;
	height: 1px;
	background-color: #fff;
}

.general_section {
	padding-top: 50px;
	padding-bottom: 50px;
}

.sweet_vendor {
	background-color: transparent!important;
	border: 2px solid #1832A4!important;
	border-radius: 10px!important;
	overflow: hidden;
	padding: 50px!important;
	background: rgb(11,47,71)!important;
	background: -moz-linear-gradient(0deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%)!important;
	background: -webkit-linear-gradient(0deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%)!important;
	background: linear-gradient(0deg, rgba(11,47,71,1) 0%, rgba(21,85,128,1) 100%)!important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1832A4",endColorstr="#5EDCCD",GradientType=1)!important;
	width: 750px!important;
	max-width: initial!important;
}

.sweet_vendor .swal2-content {
	text-align: left;
}

.sweet_vendor .sweet_vendor_form {
	position: relative;
}

.sweet_vendor .sweet_vendor_form .sweet_vendor_title {
	margin-bottom: 30px;
	color: #fff;
}

.sweet_vendor .sweet_vendor_form .secondary_description {
	font-weight: 100;
	color: #C5C5C5;
	margin-top: 30px;
}

.sweet_vendor .sweet_vendor_form .sweet_vendor_content[attr-id="2"] {
	display: none;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	margin: auto;
}

.sweet_vendor .sweet_vendor_form .sweet_vendor_content .sweet_vendor_content_inner {
	width: 75%;
	margin: auto;
	text-align: center;
	color: #fff;
}

.sweet_vendor .sweet_vendor_form .sweet_vendor_content .sweet_vendor_content_inner .secondary_description {
	font-weight: 100;
	margin-top: 25px;
}

.sweet_vendor .sweet_vendor_form.active .sweet_vendor_content[attr-id="1"] {
	opacity: 0;
}

.sweet_vendor .sweet_vendor_form.active .sweet_vendor_content[attr-id="2"] {
	display: flex;
}

.sweet_vendor .swal2-close {
	color: #fff!important;
}

.sweet_vendor .swal2-close:hover {
	color: #dc3545!important;
}

.sweet_vendor .form-button button {
	background: rgb(225,51,50);
	background: -moz-linear-gradient(0deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	background: linear-gradient(0deg, rgba(225,51,50,1) 0%, rgba(123,28,27,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0078C0",endColorstr="##00331D",GradientType=1);
	border-color: ##00331D;
}

.sweet_vendor .form-button button:hover {
	background: transparent;
	color: #fff;
	border-color: #fff;
}

.sweet_vendor .form-group input, .sweet_vendor .form-group select, .sweet_vendor .form-group textarea {
	color: #000;
}

.sweet_vendor .form-group input[type="file"] {
	background-color: transparent !important;
    border: 0;
    color: #fff;
    padding-left: 0;
    padding-top: 0;
}

.sweet_account.sweet_video_play {
    padding: 0!important;
    background-color: transparent!important;
    width: 750px!important;
    max-width: 100%!important;
}

.sweet_account.sweet_video_play .video_play_frame {
    position: relative;
    overflow: hidden;
}

.sweet_account.sweet_video_play .video_play_loading {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    line-height: 1;
    color: #1832A4;
}

.sweet_account.sweet_video_play iframe {
    position: relative;
    z-index: 1;
    width: 100%;
}

.sweet_account.sweet_video_play .video_play_frame img {
    position: relative;
    z-index: 1;
    width: 100%;
}

.sweet_account.sweet_video_play .video_play_frame img.fixed_height {
    width: auto;
}

.sweet_account .popup_close {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #1832A4;
    border: 1px solid #1832A4;
    z-index: 2;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    border-radius: 0 0 0 5px;
    animation: 0.5s popup_fade;
    animation-fill-mode: forwards;
    visibility: hidden;
}

.bg_outer {
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow-x: hidden;
}

.owl-carousel .owl-prev {
	position: absolute;
    left: 15px;
    /*top: 0;*/
    bottom: -50px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #000;
}

.owl-carousel .owl-next {
	position: absolute;
    right: 15px;
    /*top: 0;*/
    bottom: -50px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #000;
}

.owl-carousel .owl-prev:hover, .owl-carousel .owl-next:hover {
	color: #1832A4;
}

.desktop_nav {
	padding-top: 15px;
	padding-bottom: 15px;
}

.desktop_nav_inner {
	display: flex;
	justify-content: center;
	align-items: center;
}

.desktop_nav_inner .desktop_nav_left {
	width: 200px;
}

.desktop_nav_inner .desktop_nav_right {
	width: 200px;
}

.desktop_nav_inner .desktop_nav_left a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.desktop_nav_inner .desktop_nav_left img {
	width: 85px;
	padding-left: 5px;
}

.desktop_nav_inner .desktop_nav_left img[attr-id="1"] {
	width: 70px;
	/*animation: globing 10s linear infinite;
	transform-style: preserve-3d;
	display: inline-block;*/
	padding-left: 0;
}

/*@keyframes globing {
	0% {
		transform: rotateX(0deg) rotateY(0deg);
	}
	100% {
		transform: rotateX(360deg) rotateY(360deg);
	}
}*/

.desktop_nav_inner .desktop_nav_center {
	width: calc(100% - 200px);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 40px;
	padding-right: 40px;
}

.desktop_nav_inner .desktop_nav_center a {
	color: #00331D;
}

.desktop_nav_inner .desktop_nav_center a:hover {
	color: #1832A4;
}

.desktop_nav_inner .desktop_nav_right .general_button {
	justify-content: flex-end;
}

.desktop_nav_inner .desktop_nav_right .general_button a {
	width: 100%;
	padding-top: 8px;
	padding-bottom: 8px;
	border-radius: 25px;
	font-size: 12px;
}

.footer_connect {
	padding-top: 50px;
	padding-bottom: 50px;
	/*background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-image: url('/assets/img/footer-connect.png');*/;
	background: #5EDCCD;
	background: -webkit-linear-gradient(90deg, rgba(94, 220, 205, 1) 0%, rgba(0, 120, 192, 1) 100%);
	background: -moz-linear-gradient(90deg, rgba(94, 220, 205, 1) 0%, rgba(0, 120, 192, 1) 100%);
	background: linear-gradient(90deg, rgba(94, 220, 205, 1) 0%, rgba(0, 120, 192, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5EDCCD", endColorstr="#0078C0", GradientType=1);
	position: relative;
}

/*.footer_connect:before {
	content: '';
	background-color: #e5e5e5;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	opacity: 0.85;
}*/

.footer_connect .footer_connect_inner {
	padding: 50px;
	position: relative;
	z-index: 1;
	background-color: #FFFFFF;
	border-radius: 10px;
}

.footer_connect .general_image {
	max-width: 250px;
	justify-content: flex-start;
}

.footer_connect .secondary_title {
	color: #1832A4;
	margin-bottom: 30px;
}

.footer_connect .footer_connect_each {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.footer_connect .footer_connect_each img {
	height: 45px;
	width: auto;
}

.footer_connect .footer_connect_each .secondary_description {
	width: calc(100% - 50px);
	padding-left: 15px;
	font-weight: bold;
}

.footer_hub {
	padding-top: 50px;
	padding-bottom: 50px;
}

.footer_hub .footer_hub_left {
	width: 100%;
}

.footer_hub_item {
	background: rgb(0,120,192); /* Fallback solid color */
	background: -moz-linear-gradient(275.35deg, rgba(0, 120, 192, 0.3) 1.2%, rgba(94, 220, 205, 0.3) 98.8%);
	background: -webkit-linear-gradient(275.35deg, rgba(0, 120, 192, 0.3) 1.2%, rgba(94, 220, 205, 0.3) 98.8%);
	background: linear-gradient(275.35deg, rgba(0, 120, 192, 0.3) 1.2%, rgba(94, 220, 205, 0.3) 98.8%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4D0078C0", endColorstr="#4D5EDCCD", GradientType=1);
	padding: 25px 25px;
	border-radius: 10px;
	overflow: hidden;
}

.footer_hub_item .general_button {
	margin-top: 50px;
}

.footer_hub_item .general_button a {
	width: 100%;
}

.footer_hub_item[attr-id="2"] {
	margin-top: 30px;
	background: rgb(14,146,89); /* Fallback solid color */
	background: -moz-linear-gradient(275.35deg, rgba(14, 146, 89, 0.2) 1.2%, rgba(255, 202, 55, 0.2) 98.8%);
	background: -webkit-linear-gradient(275.35deg, rgba(14, 146, 89, 0.2) 1.2%, rgba(255, 202, 55, 0.2) 98.8%);
	background: linear-gradient(275.35deg, rgba(14, 146, 89, 0.2) 1.2%, rgba(255, 202, 55, 0.2) 98.8%);
	filter: progid:DXImageTransform.Microsoft.gradient(
	  startColorstr="#331E9259", 
	  endColorstr="#33FFCA37", 
	  GradientType=1
	);

}

.footer_hub_right {
	max-width: 100%;
	width: 100%;
}

.footer_hub_right a {
	display: block;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	padding: 25px;
	color: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.footer_hub_right a:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.15);
}

.footer_hub_right a .footer_hub_title {
	position: relative;
	z-index: 1;
}

.footer_hub_right a .footer_hub_title .general_button {
	justify-content: flex-start;
	margin-top: 15px;
}

.footer_hub_right a .footer_hub_lines {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 15px;
}

.footer_hub_right a .footer_hub_lines .secondary_description {
	border: 1px solid #fff;
	border-radius: 25px;
	padding: 2px 15px;
	display: block;
}

.footer_hub_carousel, .footer_hub_carousel .owl-stage-outer, .footer_hub_carousel .owl-stage, .footer_hub_carousel .owl-item {
	height: 100%;
}

.general_carousel .owl-dots, .secondary_carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}

.general_carousel .owl-dots .owl-dot, .secondary_carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background-color: #C2C2C2;
    border-radius: 50%;
    margin-left: 5px;
    margin-right: 5px;
}

.general_carousel .owl-dots .owl-dot.active, .secondary_carousel .owl-dots .owl-dot.active {
    background-color: #1832A4;
}

.footer_nav {
	color: #1832A4;
	position: relative;
	overflow: hidden;
}

.rotating_star {
	width: 300px;
	right: 15px;
	bottom: 15px;
	position: absolute;
	opacity: 0.25;
	animation: enlarging 10s linear infinite;
}

@keyframes enlarging {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.25); /* slight zoom */
	}
	100% {
		transform: scale(1);
	}
}

.footer_nav .footer_logo {
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.footer_nav .footer_logo:before {
	content: '';
	position: absolute;
	bottom: 0;
	height: 2px;
	width: 100%;
	left: 0;
	right: 0;
	background: #1832A4; /* Fallback solid color */
	background: -moz-linear-gradient(90deg, #1832A4 0%, #00FF11 100%);
	background: -webkit-linear-gradient(90deg, #1832A4 0%, #00FF11 100%);
	background: linear-gradient(90deg, #1832A4 0%, #00FF11 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1832A4", endColorstr="#00FF11", GradientType=1);
}

.footer_nav .general_image {
	max-width: 200px;
}

.footer_nav .primary_description {
	margin-top: 5px;
	margin-bottom: 5px;
}

.footer_nav .secondary_description[attr-id="1"] {
	margin-bottom: 15px;
}

.footer_nav .secondary_description[attr-id="2"] {
	margin-top: 15px;
}

.footer_nav_button[attr-id="2"] {
	margin-top: 30px;
}

.footer_nav_button a {
	display: block;
}

.footer_nav_button a, .footer_nav_button p {
	margin-bottom: 8px;
}

.footer_line {
	padding-top: 75px;
	padding-bottom: 15px;
}

.footer_line .secondary_description {
	color: #1832A4;
	text-align: center;
	font-size: 12px;
}

.background_fixed {
	background-attachment: fixed
}

.general_content {
	padding-top: 50px;
	padding-bottom: 50px;
}

.section_logo_background {
	position: relative;
}

.general_logo_background {
	position: absolute;
	top: 50%;
	width: 400px;
	transform: translate(-50%, -50%);
	opacity: 0.08;
	pointer-events: none;
	will-change: transform;
	z-index: 0;
}

.general_logo_background img {
	width: 100%;
	height: auto;
	display: block;
}

.custom_dots {
	text-align: center;
}

.custom_dot {
	border: 1px solid #fff;
	padding: 3px 10px;
	margin: 0 5px;
	border-radius: 25px;
	cursor: pointer;
	transition: background 0.3s;
	background-color: transparent;
	color: #fff;
	opacity: 0.5;
}

.custom_dot.active {
	opacity: 1;
}

.general_scroll_float_y, .general_scroll_float_x {
	transition: transform 0.3s ease-out;
	will-change: transform;
}

.dashboard_banner_stock {
	margin-top: 15px;
	margin-bottom: 30px;
}

.dashboard_banner_stock a {
	display: block;
	text-align: right;
}

.dashboard_banner_stock .secondary_description {
	font-weight: bold;
}

.dashboard_banner_video {
	position: relative;
	overflow: hidden;
}

.dashboard_banner_video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.mute-toggle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: opacity .3s ease, background .2s ease;
  opacity: 0;
}
.dashboard_banner_video:hover .mute-toggle,
.dashboard_banner_video.show-button .mute-toggle {
  opacity: 1;
}
.mute-toggle:hover { background: rgba(0,0,0,0.8); }
.mute-toggle svg { width: 22px; height: 22px; fill: #fff; }
.icon-unmuted { display: none; }

.dashboard_banner_carousel .owl-dots {
	bottom: 0;
    top: 0;
    left: initial;
    right: 15px;
    vertical-align: middle;
    flex-direction: column;
}

.dashboard_banner_carousel .owl-dots .owl-dot {
	margin-top: 10px;
	margin-bottom: 10px;
}

.general_carousel .owl-dots .owl-dot.active, .secondary_carousel .owl-dots .owl-dot.active {
	background-color: #00FF11;
}

.dashboard_content1 .general_logo_background {
	right: 0;
	filter: grayscale(100%);
}

.dashboard_content1 .dashboard_content1_header {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.dashboard_content1 .dashboard_content1_header .secondary_description {
	border: 1px solid #000;
	border-radius: 25px;
	padding: 3px 25px;
	color: #1832A4;
	margin-bottom: 30px;
}

.dashboard_content1 .primary_title span {
	color: #A6A6A6;
}

.dashboard_content1_item {
	margin-top: 30px;
}

.dashboard_content1_item .dashboard_content1_content {
	display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}

.dashboard_content1_item .dashboard_content1_col {
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;
}

.dashboard_content1_item .dashboard_content1_col:not(:last-child) {
	border-right: 1px solid #A6A6A6;
}

.dashboard_content1_item .primary_title {
	padding-top: 30px;
}

.dashboard_banner2 {
	position: relative;
}

.dashboard_banner2 .custom_dots_outer {
	position: absolute;
    bottom: 15px;
    z-index: 1;
    left: 0;
    right: 0;
    margin: auto;
}

.dashboard_banner_image {
	height: 500px;
	padding-bottom: 70px;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.dashboard_banner_image:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	background: #0078C0; /* fallback for older browsers */
	background: -moz-linear-gradient(60.89deg, #0078C0 -6.73%, #5EDCCD 113.93%); /* Firefox */
	background: -webkit-linear-gradient(60.89deg, #0078C0 -6.73%, #5EDCCD 113.93%); /* Chrome, Safari */
	background: linear-gradient(60.89deg, #0078C0 -6.73%, #5EDCCD 113.93%); /* Standard */
	opacity: 0.75;
}

.dashboard_banner_image .primary_title, .dashboard_banner_image .primary_description {
	max-width: 500px;
	margin: 0;
	position: relative;
	z-index: 1;
	color: #fff;
}

.dashboard_banner_image .primary_description {
	margin-top: 15px;
} 

.dashboard_content2 .dashboard_content2_image {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
	overflow: hidden;
}

.dashboard_content2_left {
	position: relative;
	padding-top: 100px;
	padding-bottom: 150px;
}

.dashboard_content2_left:before {
	content: '';
	position: absolute;
	bottom: 0;
	height: 2px;
	width: 100%;
	left: 0;
	right: 0;
	background: #1832A4; /* Fallback solid color */
	background: -moz-linear-gradient(90deg, #1832A4 0%, #00FF11 100%);
	background: -webkit-linear-gradient(90deg, #1832A4 0%, #00FF11 100%);
	background: linear-gradient(90deg, #1832A4 0%, #00FF11 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1832A4", endColorstr="#00FF11", GradientType=1);
}

.dashboard_content2_left .secondary_description[attr-id="2"] {
	margin-top: 100px;
}

.dashboard_content2_right {
	position: relative;
	padding-top: 30px;
	padding-bottom: 50px;
}

.dashboard_content2_right:before {
	content: '';
	position: absolute;
	top: 0;
	height: 2px;
	width: 100%;
	left: 0;
	right: 0;
	background: #1832A4; /* Fallback solid color */
	background: -moz-linear-gradient(90deg, #1832A4 0%, #00FF11 100%);
	background: -webkit-linear-gradient(90deg, #1832A4 0%, #00FF11 100%);
	background: linear-gradient(90deg, #1832A4 0%, #00FF11 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1832A4", endColorstr="#00FF11", GradientType=1);
}

.dashboard_content2_right .secondary_title {
	font-weight: 500;
	margin-bottom: 70px;
	text-align: right;
}

.dashboard_content2_right .secondary_description {
	text-align: right;
}

.dashboard_content2 .general_logo_background {
	left: 10%;
	filter: grayscale(100%);
}

.dashboard_content3 .primary_title {
	margin-top: 15px;
	margin-bottom: 50px;
}

.dashboard_content3 .dashboard_content3_image {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
	overflow: hidden;
}

.dashboard_content3 .dashboard_content3_content {
	display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    position: relative;
    padding-bottom: 50px;
}

.dashboard_content3 .dashboard_content3_content:before {
	content: '';
	position: absolute;
	bottom: 0;
	height: 2px;
	width: 100%;
	left: 0;
	right: 0;
	background: #1832A4; /* Fallback solid color */
	background: -moz-linear-gradient(90deg, #1832A4 0%, #00FF11 100%);
	background: -webkit-linear-gradient(90deg, #1832A4 0%, #00FF11 100%);
	background: linear-gradient(90deg, #1832A4 0%, #00FF11 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1832A4", endColorstr="#00FF11", GradientType=1);
}

.dashboard_milestones {
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url('/assets/img/milestone-background.png');
	color: #fff;
}

.dashboard_milestones:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background: 
	  -webkit-linear-gradient(180deg, #1832A4 56.39%, #0078C0 100%),
	  -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
	background: 
	  -moz-linear-gradient(180deg, #1832A4 56.39%, #0078C0 100%),
	  -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
	background: 
	  -o-linear-gradient(180deg, #1832A4 56.39%, #0078C0 100%),
	  -o-linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
	background: 
	  linear-gradient(180deg, #1832A4 56.39%, #0078C0 100%),
	  linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
	  opacity: 0.85;
}

.dashboard_milestones_title {
	margin-bottom: 50px;
}

.dashboard_milestones_title .secondary_description {
	max-width: 600px;
	margin: 15px 0 0 auto;
}

.dashboard_milestones_title .secondary_description span {
	color: #4CDC0C;
}

.dashboard_milestones_inner {
	position: relative;
	z-index: 1;
}

.dashboard_milestones_container {
	/*height: 35vh;*/
	position: relative;
	overflow: hidden;
	margin: 100px 0;
}

.dashboard_milestone_background {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	/*background-image: url('/assets/img/milestone-line.png');*/
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 0;
	opacity: 0.2;
}

.dashboard_milestones_wrapper {
	height: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	position: relative;
	cursor: grab;
	padding-left: 50px;
	box-sizing: content-box;  /* make sure padding extends scroll area */
}

.dashboard_milestones_wrapper.active {
	cursor: grabbing;
	user-select: none;
}

.dashboard_milestones_content {
	display: flex;
	position: relative;
	height: 100%;
	width: auto;              /* content width grows with groups */
	gap: 140px;               /* space between years */
	align-items: flex-start;
}

.dashboard_milestones_item {
	/* no more absolute layout */
	position: static;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 14px;
}

/* one block per year (2025, 2024, 2023...) */
.dashboard_milestones_group {
	flex: 0 0 auto;
	min-width: 420px;       /* width of each year column */
	padding-right: 50px;
}

/* year label */
.dashboard_milestones_year {
	font-size: 40px;
	font-weight: 400;
	margin-bottom: 50px;
	transition: font-size .25s ease, font-weight .25s ease,
	            transform .25s ease, opacity .25s ease;
	opacity: 1;
	line-height: 80px;
	border-bottom: 1px solid #fff;
	padding-bottom: 30px;
}

/* left-most visible year = bold & big */
.dashboard_milestones_group.is-active .dashboard_milestones_year {
	font-size: 64px;
	font-weight: 700;
	opacity: 1;
	transform: translateY(-4px);
}

/* items stacked under each year */
.dashboard_milestones_items {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dashboard_milestones_item .dashboard_milestones_image {
	width: 100px;
	height: 75px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.dashboard_milestones_item .dashboard_milestones_description {
	background-color: rgba(255, 255, 255, 0.15);
	color: #fff;
	padding: 10px 15px;
	border-radius: 10px;
	min-width: 250px;
	max-width: 300px;
	white-space: normal;
}

.dashboard_milestones_item[attr-id="1"] .dashboard_milestones_description {
	background-color: transparent;
	/*margin-left: 10px;*/
}

.dashboard_gallery_title {
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 50px;
}

.dashboard_gallery_title:before {
	content: '';
	position: absolute;
	bottom: 0;
	height: 2px;
	width: 100%;
	left: 0;
	right: 0;
	background: #1832A4; /* Fallback solid color */
	background: -moz-linear-gradient(90deg, #1832A4 0%, #00FF11 100%);
	background: -webkit-linear-gradient(90deg, #1832A4 0%, #00FF11 100%);
	background: linear-gradient(90deg, #1832A4 0%, #00FF11 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1832A4", endColorstr="#00FF11", GradientType=1);
}

.dashboard_gallery_title .secondary_description {
	text-transform: uppercase;
}

.dashboard_gallery_title .secondary_description[attr-id="2"] {
	text-align: right;
}

.dashboard_gallery_content .secondary_description {
	margin-top: 50px;
}

.dashboard_gallery_content .general_button {
	margin-top: 30px;
}

.dashboard_gallery_content .general_button a {
	width: 100%;
} 

.dashboard_gallery_content .dashboard_gallery_image {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
	overflow: hidden;
}

.dashboard_gallery_content .dashboard_gallery_image[attr-id="1"] {
	width: 50%;
	margin: auto;
	height: 250px;
}

.dashboard_gallery_content .dashboard_gallery_image[attr-id="2"] {
	width: calc(50% - 15px);
	height: 250px;
}

.dashboard_gallery_content .dashboard_gallery_image[attr-id="3"] {
	width: calc(50% - 15px);
	height: 400px;
}

.dashboard_gallery_content .dashboard_gallery_flex {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 30px;
}

.dashboard_gallery .general_logo_background {
	right: 0;
}

.dashboard_gallery_content[attr-id="2"] .dashboard_gallery_image[attr-id="1"], .dashboard_gallery_content[attr-id="2"] .dashboard_gallery_inner {
	width: calc(50% - 15px);
}

.dashboard_gallery_content[attr-id="2"] .dashboard_gallery_inner .dashboard_gallery_image[attr-id="2"] {
	width: 100%;
}

.dashboard_gallery_content[attr-id="2"] .dashboard_gallery_inner .dashboard_gallery_image[attr-id="3"] {
	width: 70%;
}

.dashboard_content4 .general_logo_background {
	left: 30%;
}

.dashboard_content4_title .primary_title {
	margin-bottom: 100px;
}

.dashboard_content4_circle {
	width: 250px;
	height: 250px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.dashboard_content4_circle:before {
	content: '';
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.dashboard_content4_circle .dashboard_content4_circle_information {
	position: relative;
	z-index: 1;
}

.dashboard_content4_circle[attr-id="2"]:before {
	content: initial;
}

.dashboard_content4_circle[attr-id="2"] {
	border: 1px solid #000;
	color: #000;
	z-index: 1;
	position: absolute;
	top: 30%;
	right: 30%;
	width: 200px;
	height: 200px;
}

.dashboard_content4_circle[attr-id="2"] .dashboard_content4_circle_information {
	margin-top: 30px;
    margin-left: 30px;
}

.dashboard_content4_circle .secondary_description[attr-id="2"] {
	text-align: right;
}

.dashboard_content4 .secondary_description[attr-id="3"] {
	position: absolute;
	top: 0;
	right: 0;
}

.dashboard_content4_footer {
	margin-top: 50px;
}

.dashboard_content4_footer .secondary_title {
	text-align: right;
}

.dashboard_content4_footer .secondary_description {
	text-align: left;
}

.dashboard_strategic_item {
	padding: 25px 25px;
	background-color: #8b99d2;
	border-radius: 10px;
	overflow: hidden;
	color: #fff;
	height: 100%;
}

.dashboard_strategic_item .primary_title {
	text-align: right;
}

.dashboard_strategic_item .secondary_description {
	margin-top: 50px;
}

.strategic_carousel .center .dashboard_strategic_item {
	background: rgb(24, 50, 164); /* fallback solid color */
	background: -moz-linear-gradient(90deg, #1832A4 0%, #0078C0 100%);
	background: -webkit-linear-gradient(90deg, #1832A4 0%, #0078C0 100%);
	background: linear-gradient(90deg, #1832A4 0%, #0078C0 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1832A4", endColorstr="#0078C0", GradientType=1); /* IE6–9 */
}

.strategic_carousel .owl-prev, .projects_carousel .owl-prev {
	left: 25px;
	bottom: -30px;
	top: initial;
}

.strategic_carousel .owl-next, .projects_carousel .owl-next {
	right: 25px;
	bottom: -30px;
	top: initial;
}

.dashboard_projects .dashboard_projects_title .primary_title {
	margin-bottom: 15px;
}

.dashboard_projects_item {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	padding: 15px;
	border-radius: 10px;
	overflow: hidden;
	color: #fff;
	height: 300px;
	position: relative;
}

.dashboard_projects_item:before {
	content: '';
	background-color: rgba(0, 0, 0, 0.35);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.dashboard_projects_inner {
	position: relative;
	z-index: 1;
}

.dashboard_projects_inner .primary_description {
	text-align: right;
	font-size: 18px;
}

.dashboard_projects_item .secondary_description {
	margin-top: 5px;
	font-size: 11px;
	text-align: right;
}

.dashboard_projects_item a {
	display: block;
    width: 35px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.dashboard_projects .general_button {
	justify-content: flex-start;
	margin-top: 30px;
}

.dashboard_content5 {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-image: url('/assets/img/biogas-background.png');
	color: #1832A4;
}

.dashboard_content5:before {
	content: '';
	background-color: rgba(255, 255, 255, 0.5);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.dashboard_content5_title {
	position: relative;
	padding-top: 30px;
}

.dashboard_content5_title:before {
	content: '';
	width: 300px;
	height: 300px;
	border-radius: 50%;
	position: absolute;
	background: none;
	border: 1px solid rgba(0, 72, 255, 0.3); /* blue border with transparency */
	mask-image: conic-gradient(transparent 0deg, black 90deg, transparent 180deg);
	-webkit-mask-image: conic-gradient(transparent 0deg, black 90deg, transparent 180deg);
	top: 0;
	left: 0;
}

.dashboard_content5_title .secondary_description {
	margin-top: 50px;
}

.dashboard_content5_box {
	color: #fff;
	width: 100%;
	padding: 25px 15px;
	background: rgb(24, 50, 164); /* fallback solid color */
	background: -moz-linear-gradient(90deg, #1832A4 0%, #0078C0 100%);
	background: -webkit-linear-gradient(90deg, #1832A4 0%, #0078C0 100%);
	background: linear-gradient(90deg, #1832A4 0%, #0078C0 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1832A4", endColorstr="#0078C0", GradientType=1); /* IE6–9 */
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 30px;
}


.dashboard_content5_box .secondary_title {
	margin-top: 5px;
	margin-bottom: 5px;
}

.dashboard_content5_box .secondary_description[attr-id="2"] {
	text-align: right;
}

.dashboard_content6 {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-image: url('/assets/img/solar-background.png');
	color: #1832A4;
}

.dashboard_content6:before {
	content: '';
	background-color: rgba(255, 255, 255, 0.5);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.dashboard_content6_center {
	margin-top: 50px;
	margin-bottom: 50px;
}

.dashboard_content6_center .dashboard_content6_box {
	border-radius: 50%;
	border: 1px solid #1832A4;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.dashboard_content6_center .dashboard_content6_box .secondary_title {
	margin-top: 5px;
	margin-bottom: 5px;
}

.dashboard_content6_center .dashboard_content6_box[attr-id="2"] {
	border-radius: 150px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.dashboard_content6_center .dashboard_content6_box[attr-id="2"]:before {
	content: '';
	background-color: rgba(0, 0, 0, 0.25);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.dashboard_content6_center .dashboard_content6_box .dashboard_content6_box_inner {
	position: relative;
	z-index: 1;
}

.dashboard_content6_image {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 200px;
	border-radius: 10px;
	overflow: hidden;
}

.dashboard_content7 {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-image: url('/assets/img/hydroelectric-background.jpg');
	color: #fff;
}

.dashboard_content7:before {
	content: '';
	background-color: rgba(0, 0, 0, 0.75);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.dashboard_content7_title .secondary_description {
	margin-top: 15px;
}

.dashboard_content7_box {
	display: flex;
	justify-items: flex-end;
	align-items: center;
	margin-bottom: 30px;
}

.dashboard_content7_box .dashboard_content7_box_inner {
	margin-right: 0;
    margin-left: auto;
}

.dashboard_content7_box .secondary_description[attr-id="2"] {
	text-align: right;
}

.dashboard_content7_box[attr-id="2"] {
	justify-content: flex-start;
}

.dashboard_content7_box[attr-id="2"] .dashboard_content7_box_inner {
	margin-right: auto;
    margin-left: 0;
}

.dashboard_content7_blur {
	background: rgba(255, 255, 255, 0.25); /* semi-white */
	backdrop-filter: blur(10px);          /* blur effect */
	-webkit-backdrop-filter: blur(5px);  /* Safari support */
	border-radius: 10px;                  /* optional: rounded corners */
	padding: 30px;                        /* optional: spacing */
	border-radius: 10px;
	overflow: hidden;
}

.dashboard_content7_blur .dashboard_content7_box {
	justify-content: center;
}

.dashboard_content7_blur .dashboard_content7_box .dashboard_content7_box_inner {
	margin: auto;
}

.dashboard_content8 {
	margin-top: 50px;
}

.dashboard_content8 .general_image {
	max-width: 200px;
	margin-bottom: 15px;
}

.dashboard_content8 .dashboard_content8_links {
	display: flex;
	justify-content: center;
	align-items: center;
}

.dashboard_content8 .dashboard_content8_links a {
	display: block;
	text-decoration: underline;
	font-weight: bold;
	margin-bottom: 10px;
	margin-top: 10px;
}

.dashboard_content8 .dashboard_content8_links a:hover {
	color: #0078C0;
}

.about_content1 .secondary_description {
	margin-top: 30px;
}

.about_content1 .secondary_description b {
	color: #0E9259;
}

.about_content1 .about_content1_inner {
	margin-top: 50px;
}

.about_content1 .about_content1_inner .secondary_title {
	color: #1832A4;
}

.general_border_top {
	position: relative;
	padding-top: 15px;
}

.general_border_top:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 2px;
	margin: auto;
	background: #1832A4;
	background: -webkit-linear-gradient(110deg, rgba(24, 50, 164, 1) 0%, rgba(76, 220, 12, 1) 100%);
	background: -moz-linear-gradient(110deg, rgba(24, 50, 164, 1) 0%, rgba(76, 220, 12, 1) 100%);
	background: linear-gradient(110deg, rgba(24, 50, 164, 1) 0%, rgba(76, 220, 12, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1832A4", endColorstr="#4CDC0C", GradientType=0);
}

.about_content1 .about_content2 {
	position: relative;
}

.about_content1 .about_content2 .general_background {
	width: 100%;
    height: 100%;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}

.about_content1 .about_content2 .secondary_description {
	margin-top: 0;
}

.about_content1 .about_content2 {
	margin-top: 50px;
}

.about_content1 .about_content2 .general_border_top {
	text-align: right;
}

.about_content1 .about_content2 .about_content2_inner {
	padding-bottom: 100px;
}

.about_content1 .about_content2 .about_content2_inner .primary_title {
	margin-top: 100px;
	margin-bottom: 30px;
	font-weight: normal;
}

.about_content1 .about_content2 .about_content2_inner .secondary_description b {
	margin-top: 10px;
	margin-bottom: 5px;
	display: block;
}

.kinergy_background {
	position: relative;
}

.kinergy_background:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	height: 100%;
	margin: auto;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left top;
	background-image: url('/assets/img/kinergy-background.png');
	opacity: 0.5;
}

.about_content3 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.about_content3_directors .general_background {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	border-radius: 50%;
	width: 100%;
}

.about_content3_copyrights {
	padding-top: 50px;
}

.about_content3_copyrights .secondary_description {
	margin-top: 5px;
}

.about_content3_directors {
	margin-bottom: 30px;
}

.view_hidden_box .gradient_button {
	justify-content: flex-start;
}

.view_hidden_box .gradient_button, .view_hidden_box .dark_button {
	justify-content: flex-start;
	margin-top: 15px;
}

.view_hidden_content {
	display: none;
}

.gradient_button {
	display: flex;
	justify-content: center;
	align-items: center;
}

.gradient_button a, .gradient_button button {
	background: #0078C0;
	background: -webkit-linear-gradient(90deg, rgba(0, 120, 192, 1) 0%, rgba(24, 50, 164, 1) 100%);
	background: -moz-linear-gradient(90deg, rgba(0, 120, 192, 1) 0%, rgba(24, 50, 164, 1) 100%);
	background: linear-gradient(90deg, rgba(0, 120, 192, 1) 0%, rgba(24, 50, 164, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0078C0", endColorstr="#1832A4", GradientType=1);
	border: 1px solid #1832A4;
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	padding: 5px 25px;
	display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.gradient_button a:hover, .gradient_button button:hover {
	background: transparent;
	color: #1832A4;
}

.dark_button {
	display: flex;
	justify-content: center;
	align-items: center;
}

.dark_button a, .dark_button button {
	background-color: #000;
	border: 1px solid #000;
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	padding: 5px 25px;
	display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.dark_button a:hover, .dark_button button:hover {
	background: transparent;
	color: #000;
}

.about_content3 .secondary_title {
	padding-bottom: 20px;;
}

.about_content3 .about_content3_inner {
	padding-top: 40px;
}

/* ===== CSS ===== */
.vm {
	position: relative;
}

.vm-items {
	overflow: hidden;
	transition: height 0.3s ease;
}

.vm.is-collapsed .vm-fade {
	opacity: 1;
	pointer-events: none;
}

.vm-fade {
	position: absolute;
	left: 0; right: 0;
	height: 20%;
	bottom: 44px;               /* leave space for the button */
	background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
	transition: opacity 0.3s ease;
	opacity: 0;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	pointer-events: none;       /* <-- no blocking when hidden */
	z-index: 1;                 /* sits above .vm-items */
	user-select: none;
	-webkit-user-select: none;
	touch-action: none;
}

.vm .vm-toggle { position: relative; z-index: 2; }

.vm-toggle {
	display: flex;
	flex-direction: column;   /* text on top, icon below */
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: 100%;
	margin-top: 8px;
	text-decoration: none;    /* for <a> */
}

.vm-toggle svg {
	width: 30px;
	height: 30px;
	transition: transform 0.3s ease;
	color: #1832A4;
}

/* Rotate chevron when expanded (now points up, below the text) */
.vm:not(.is-collapsed) .vm-toggle svg {
	transform: rotate(180deg);
}

.overlay_background {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}

.overlay_background:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.4);
}

.overlay_background > div {
	position: relative;
	z-index: 1;
	color: #fff;
}

.about_content4 {
	padding-top: 50px;
	padding-bottom: 50px;
}

.about_content4 .primary_title {
	margin-top: 0px;
	margin-bottom: 50px;
}

.about_content4 .primary_description {
	margin-bottom: 0px;
}

.about_content4 .about_content4_buttons {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.about_content4 .about_content4_buttons .secondary_description[attr-id="1"] {
	position: relative;
	background-color: rgba(255, 255, 255, 0.5);
	border: 1px solid #ffffff;
	border-radius: 25px;
	padding: 5px 15px;
	margin-right: 45px;
}

.about_content4 .about_content4_buttons .secondary_description[attr-id="1"]:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -30px;
	margin: auto;
	width: 30px;
	height: 2px;
	background-color: #fff;
}

.about_content5 {
	padding-top: 50px;
	padding-bottom: 100px;
}

.about_content5_inner {
	border-radius: 15px;
	overflow: hidden;
	background: #0078C0;
	background: -webkit-linear-gradient(0deg, rgba(0, 120, 192, 1) 0%, rgba(24, 50, 164, 1) 100%);
	background: -moz-linear-gradient(0deg, rgba(0, 120, 192, 1) 0%, rgba(24, 50, 164, 1) 100%);
	background: linear-gradient(0deg, rgba(0, 120, 192, 1) 0%, rgba(24, 50, 164, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0078C0", endColorstr="#1832A4", GradientType=0);
}

.about_content5_inner .secondary_title {
	text-align: center;
	color: #fff;
	padding: 30px 30px;
}

.about_content5_button {
	display: flex;
	justify-content: center;
	align-items: center;
}

.about_content5_button a {
	background-color: #057DC1;
    color: #60C3FF;
    width: 50%;
    padding: 30px 30px;
    text-align: center;
}

.about_content5_button a.active {
	background-color: #1832A4;
	color: #fff;
}

.about_content5_box {
	padding: 30px 30px;
}

.general_accordion .card-header.card_accor button {
	height: initial;
	padding: 15px 30px 15px 0;
}

.general_accordion .card, .general_accordion .card-header, .general_accordion .btn-link {
	background: transparent!important;
}

.general_accordion .btn-link {
	color: #fff!important;
	text-align: left!important;
}

.general_accordion .card-header.card_accor button i {
	width: 35px;
    height: 35px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    color: #000;
}

.general_accordion .card-header.card_accor button.btn-link.collapsed i.fa-plus {
	display: flex;
}

.about_download_button {
	background-color: #0782CC;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    color: #fff;
    height: 100%;
}

.about_download_button .about_download_content {
	width: calc(100% - 75px);
	padding-right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
}

.about_download_button .about_download_content .secondary_description:first-child {
	margin-bottom: 15px;
}

.about_download_button a {
	width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_download_button a img {
	width: 100%;
}

.download_col {
	margin-bottom: 30px;
}

.about_milestones_list {
	height: 100%;
	/*display: flex;*/
	/*justify-content: space-between;*/
	/*align-items: flex-end;*/
	/*flex-direction: column;*/
	margin-top: 30px;
}

.about_milestones_list a {
	display: block;
	font-weight: 100;
	margin-bottom: 50px;
	text-align: right;
	color: #989898;
}

.about_milestones_list a.active {
	font-weight: bold;
	color: #000;
}

.about_milestones_list a:not(.active) {
	font-size: 20px;
}

.about_content6 {
	padding-bottom: 100px;
}

.about_content6 .about_content6_title {
	margin-bottom: 50px;
}

.about_content6 .about_content6_title .primary_description {
	margin-top: 30px;
	margin-bottom: 30px;
}

.about_content6 .about_content6_title .primary_title[attr-id="2"] {
	font-weight: 100;
	color: #00331D;
}

.about_content6 .general_background {
	width: 100%;
    height: 100%;
    border-radius: 10px;
}

.about_milestones_item {
	color: #00331D;
}

.about_milestones_title {
	padding-bottom: 15px;
}

.about_milestones_inner .primary_description {
	margin-top: 10px;
	font-weight: bold;
}

.about_milestones_item .view_hidden_box {
	padding-bottom: 50px;
}

.about_milestones_content:not(.active) {
	display: none;
}

.highlight_button {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.highlight_button .highlight_button_inner {
	background: #1832A4;
	background: -webkit-linear-gradient(110deg, rgba(24, 50, 164, 1) 0%, rgba(76, 220, 12, 1) 100%);
	background: -moz-linear-gradient(110deg, rgba(24, 50, 164, 1) 0%, rgba(76, 220, 12, 1) 100%);
	background: linear-gradient(110deg, rgba(24, 50, 164, 1) 0%, rgba(76, 220, 12, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1832A4", endColorstr="#4CDC0C", GradientType=0);
	padding: 1px;
	border-radius: 10px;
	overflow: hidden;
}

.highlight_button .highlight_button_inner .secondary_description {
	background-color: #fff;
	color: #000;
	border-radius: 10px;
	overflow: hidden;
	padding: 5px 35px;
}

.about_content7 {
	padding-top: 150px;
	padding-bottom: 150px;
}

.about_content7_title {
	text-align: center;
}

.about_content7_title img {
	max-width: 300px;
	margin: auto;
}

.about_content7_content {
	margin-top: 50px;
} 

.about_content7_content .secondary_title {
	text-align: center;
	margin-bottom: 30px;
}

.about_content7_content .secondary_description {
	text-align: center;
}

.about_content8 {
	padding-top: 50px;
	padding-bottom: 50px;
}

.about_content8 .about_content8_title {
	color: #000;
	padding-bottom: 30px;
}

.about_content8 .about_content8_title .primary_title {
	margin-bottom: 20px;
}

.about_content8 .general_editor {
	color: #fff;
}

.esg_content1 .overlay_background {
	padding: 150px 30px;
	border-radius: 10px;
	overflow: hidden;
}

.esg_content1 .secondary_description {
	margin-top: 50px;
}

.esg_content2 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.esg_content2 .secondary_description {
	margin-top: 50px;
}

.esg_content3 {
	padding-bottom: 100px;
}

.esg_content3 .esg_content3_title {
	padding-bottom: 30px;
}

.esg_content3 .general_border_top {
	padding-top: 30px;
}

.esg_content3 .esg_content3_box {
	height: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
}

.esg_content3 .esg_content3_col:not(:last-child):after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.15);
}

.esg_content3 .esg_content3_box_inner {
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: column;
	position: relative;
	max-width: 90%;
	margin: auto;
}

.esg_content3 .esg_content3_box .secondary_description {
	color: #1832A4;
	margin-top: 30px;
}

.esg_content3 .esg_content3_box img {
	width: 25%;
	filter: grayscale(100%);
	position: absolute;
	right: 0;
	top: 0;
	opacity: 0.15;
	z-index: -1;
}

.esg_content4 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.esg_content4_title {
	text-align: center;
	padding-bottom: 100px;
}

.esg_content4_title .primary_title {
	margin-bottom: 30px;
}

.esg_content4_content {
	text-align: center;
}

.esg_content4_content span {
	display: block;
	width: 50px;
	height: 1px;
	background-color: #fff;
	margin: 20px auto;
}

.esg_content4_item {
	margin-bottom: 100px;
	position: relative;
}

.esg_content4_item:not(:last-child):after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -75px;
	height: 50px;
	width: 2px;
	background-color: #fff;
	margin: auto;
}

.esg_content4_item .secondary_title {
	margin-bottom: 15px;
}

.esg_content4 .vm-fade {
	display: none!important;
}

.esg_content4 .vm-toggle span, .esg_content4 .vm-toggle svg {
	color: #fff;
}

.esg_content5 {
	padding-top: 100px;
}

.esg_content5_content {
	padding-top: 50px;
}

.esg_content5_content .esg_content5_circle {
	margin: auto;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	padding: 5px;
	background: #0E9259;
	background: -webkit-linear-gradient(270deg, rgba(14, 146, 89, 1) 0%, rgba(255, 202, 55, 1) 100%);
	background: -moz-linear-gradient(270deg, rgba(14, 146, 89, 1) 0%, rgba(255, 202, 55, 1) 100%);
	background: linear-gradient(270deg, rgba(14, 146, 89, 1) 0%, rgba(255, 202, 55, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0E9259", endColorstr="#FFCA37", GradientType=0);
	position: relative;
	margin-bottom: 50px;
}

.esg_content5_content .esg_content5_circle:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -50px;
	height: 50px;
	width: 1px;
	background: #0E9259;
	background: -webkit-linear-gradient(270deg, rgba(14, 146, 89, 1) 0%, rgba(255, 202, 55, 1) 100%);
	background: -moz-linear-gradient(270deg, rgba(14, 146, 89, 1) 0%, rgba(255, 202, 55, 1) 100%);
	background: linear-gradient(270deg, rgba(14, 146, 89, 1) 0%, rgba(255, 202, 55, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0E9259", endColorstr="#FFCA37", GradientType=0);
	margin: auto;
}

.esg_content5_content .esg_content5_circle .esg_content5_circle2 {
	background-color: #fff;
	padding: 20px;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.esg_content5_content .esg_content5_circle .esg_content5_circle3 {
	padding: 2px;
	background: #0E9259;
	background: -webkit-linear-gradient(270deg, rgba(14, 146, 89, 1) 0%, rgba(255, 202, 55, 1) 100%);
	background: -moz-linear-gradient(270deg, rgba(14, 146, 89, 1) 0%, rgba(255, 202, 55, 1) 100%);
	background: linear-gradient(270deg, rgba(14, 146, 89, 1) 0%, rgba(255, 202, 55, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0E9259", endColorstr="#FFCA37", GradientType=0);
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.esg_content5_content .esg_content5_circle .esg_content5_circle4 {
	background-color: #fff;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.esg_content5_content .esg_content5_circle .esg_content5_circle4 > img {
	width: 200px;
	opacity: 0.3;
}

.esg_content5_content .esg_content5_circle .esg_content5_circle4 img[attr-id="2"] {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 1;
	width: 250px;
}

.esg_content5_button {
	cursor: pointer;
	margin: auto;
	width: 80px;
	height: 80px;
	padding: 3px;
	border-radius: 50%;
	background: #0E9259;
	background: -webkit-linear-gradient(270deg, rgba(14, 146, 89, 1) 0%, rgba(255, 202, 55, 1) 100%);
	background: -moz-linear-gradient(270deg, rgba(14, 146, 89, 1) 0%, rgba(255, 202, 55, 1) 100%);
	background: linear-gradient(270deg, rgba(14, 146, 89, 1) 0%, rgba(255, 202, 55, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0E9259", endColorstr="#FFCA37", GradientType=0);
	overflow: hidden;
}

.esg_content5_button .esg_content5_button_inner {
	background-color: #fff;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.esg_content5_button .esg_content5_button_inner img {
	width: 30px;
	opacity: 0.5;
}

.esg_content5_button[attr-id="0"] {
	position: absolute;
    top: 5%;
    right: 10%;
    z-index: 1;
}

.esg_content5_button[attr-id="1"] {
	position: absolute;
    left: -6%;
    top: 50%;
    z-index: 1;
}

.esg_content5_button[attr-id="2"] {
	position: absolute;
    bottom: 16%;
    right: 0%;
    z-index: 1;
}

.esg_content5_button.active .esg_content5_button_inner img {
	opacity: 1;
	width: 50px;
}

.esg_content5_button.active {
	width: 120px;
	height: 120px;
	padding: 10px;
}

.esg_content5_button.active[attr-id="0"] {
	top: 0%;
}

.esg_content5_button.active[attr-id="1"] {
	left: -8%;
}

.esg_content5_button.active[attr-id="2"] {
    bottom: 10%;
}

.esg_content5_box:not(.active) {
	display: none;
}

.esg_content5_box {
	width: 500px;
	margin: auto;
}

.esg_content5_box .esg_content5_title {
	border-radius: 25px;
	color: #fff;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 30px;
	background: #0E9259;
	background: -webkit-linear-gradient(270deg, rgba(14, 146, 89, 1) 0%, rgba(255, 202, 55, 1) 100%);
	background: -moz-linear-gradient(270deg, rgba(14, 146, 89, 1) 0%, rgba(255, 202, 55, 1) 100%);
	background: linear-gradient(270deg, rgba(14, 146, 89, 1) 0%, rgba(255, 202, 55, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0E9259", endColorstr="#FFCA37", GradientType=0);
}

.esg_content5_box .esg_content5_title img {
	width: 30px;
	margin-right: 15px;
}

.esg_content5_box .esg_content5_title .secondary_description {
	width: calC(100% - 45px);
}

.esg_content5_frame {
	width: calc(100% - 50px);
	margin: auto;
	background: #0E9259;
	background: -webkit-linear-gradient(270deg, rgba(14, 146, 89, 1) 0%, rgba(255, 202, 55, 1) 100%);
	background: -moz-linear-gradient(270deg, rgba(14, 146, 89, 1) 0%, rgba(255, 202, 55, 1) 100%);
	background: linear-gradient(270deg, rgba(14, 146, 89, 1) 0%, rgba(255, 202, 55, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0E9259", endColorstr="#FFCA37", GradientType=0);
	padding: 0 1px 1px 1px;
	border-radius: 0 0 8px 8px;
}

.esg_content5_frame .esg_content5_frame_inner {
	background-color: #fff;
	color: #000;
	padding: 15px 0;
	border-radius: 0 0 8px 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.esg_content5_frame .esg_content5_frame_inner .secondary_description {
	padding-left: 15px;
	padding-right: 15px;
	text-align: center;
}

.esg_content6_conntent .secondary_description {
	margin-bottom: 30px;
	text-align: center;
}

.esg_content6_inner {
	padding-top: 30px;
}

.esg_content6_box {
	padding: 100px 30px 30px 30px;
	position: relative;
	text-align: center;
	color: #fff;
}

.esg_content6_box:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: calc(100% - 100px);
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('/assets/img/chip-background.png');
	background-size: cover;
	z-index: -1;
	border-radius: 15px;
	overflow: hidden;
}

.esg_content6_box img {
	width: 50px;
	margin-bottom: 30px;
	margin-top: 70px;
}

.esg_content6_box .esg_content6_background {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-top: -100px;
}

.esg_content7 {
	padding-top: 150px;
	padding-bottom: 150px;
}

.esg_content7 .primary_title {
	margin-top: 0;
}

.esg_content7 .gradient_button {
	justify-content: flex-start;
	margin-top: 50px;
}

.esg_content8 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.esg_content8 .esg_content8_inner {
	margin-bottom: 30px;
}

.esg_content8 .esg_content8_profile {
	text-align: center;
}

.esg_content8 .esg_content8_image {
	width: 250px;
	height: 250px;
	border-radius: 50%;
	margin: auto;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.esg_content8 .esg_content8_profile .secondary_description {
	margin-top: 2px;
}

.esg_content8 .esg_content8_profile .secondary_description b {
	margin-top: 15px;
	display: block;
}

.esg_content8_copyrights .primary_description {
	color: #0E9259;
}

.esg_content8_copyrights .secondary_title {
	font-weight: normal;
	margin-top: 20px;
	margin-bottom: 20px;
}

.esg_content8_banner, .esg_content8_banner .general_border_top {
	padding-top: 50px;
}

.esg_content8_banner .general_border_top .primary_title {
	margin-bottom: 30px;
}

.esg_content9_inner {
	padding: 50px 0 50px 150px;
}

.esg_content9_inner .general_editor strong {
	color: #0E9259;
}

.esg_content9_inner .general_editor strong em {
	margin-top: 8px;
	display: block;
	color: #000;
}

.esg_content9_inner .gradient_button {
	margin-top: 30px;
}

.esg_content9_inner .gradient_button a {
	width: 100%;
}

.esg_content9 {
	padding-bottom: 100px;
}

.esg_content9_top {
	position: relative;
}

.esg_content9_top .esg_content9_top_background {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: calc(50% + 100px);
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	border-radius: 0 10px 10px 0;
}

.esg_content9_bottom {
	position: relative;
}

.esg_content9_bottom .esg_content9_bottom_background {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: calc(50%);
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	border-radius: 10px 0 0 10px;
}

.esg_content9_inner[attr-id="1"] {
	padding: 50px 50px 0 0;
}

.esg_content9_inner[attr-id="1"] .primary_title {
	font-weight: normal;
}

.esg_content9_inner[attr-id="2"] {
	padding: 30px 50px 250px 0;
}

.esg_content9_inner[attr-id="2"] .secondary_description b {
	display: block;
	margin-top: 30px;
}

.innovation_content1 {
	padding-top: 50px;
	padding-bottom: 50px;
}

.innovation_content1 .innovation_content1_inner {
	padding-top: 50px;
	padding-bottom: 50px;
}

.innovation_content1 .secondary_description {
	margin-top: 50px;
	margin-bottom: 100px;
}

.innovation_content1 .innovation_content1_background {
	background-repeat: no-repeat;
	background-position: right center;
	background-size: contain;
	width: 100%;
	height: 100%;
}

.innovation_content1[attr-id="2"] .innovation_content1_background {
	background-position: left center;
}

.innovation_content1[attr-id="2"] .innovation_content1_inner {
	text-align: right;
}

.innovation_content1[attr-id="2"] .secondary_description {
	margin-bottom: 50px;
}

.innovation_content3 {
	padding-top: 50px;
	padding-bottom: 50px;
}

.innovation_content3:not(.active) {
	display: none;
}

.innovation_content3 .innovation_content4 .secondary_description {
	margin-top: 50px;
	margin-bottom: 30px;
}

.innovation_content4_background, .innovation_content6_background {
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	border-radius: 10px;
}

.innovation_content3.general_accordion .btn-link {
	color: #00331D!important;
	font-size: 35px!important;
	line-height: 50px!important;
}

.innovation_content3.general_accordion .card-header.card_accor button i {
	background: #0078C0;
	background: -webkit-linear-gradient(90deg, rgba(0, 120, 192, 1) 0%, rgba(24, 50, 164, 1) 100%);
	background: -moz-linear-gradient(90deg, rgba(0, 120, 192, 1) 0%, rgba(24, 50, 164, 1) 100%);
	background: linear-gradient(90deg, rgba(0, 120, 192, 1) 0%, rgba(24, 50, 164, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0078C0", endColorstr="#1832A4", GradientType=1);
	font-size: 15px;
	color: #fff;
}

.innovation_content3.general_accordion .card {
	border-bottom: 1px solid #0078C0;
    border-radius: 0;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.innovation_content3.general_accordion .card:last-child {
	border-bottom: 0;
}

.innovation_content3.general_accordion .card-header.card_accor button {
	padding: 20px 50px 20px 0;
}

.innovation_content3 .contact_content3 {
	display: none;
}

.innovation_content3 .contact_content3 .contact_content3_inner {
	padding-top: 30px;
	padding-left: 0;
}

.innovation_content5 {
	margin-top: 50px;
}

.innovation_content5 > .secondary_title {
	color: #00331D;
}

.innovation_content5 > .secondary_title {
	margin-bottom: 30px;
}

.innovation_content5 > .primary_description {
	margin-top: 15px;
	font-weight: bold;
	color: #00331D;
}

.innovation_content6 {
	margin-top: 20px;
	background-color: #5EDCCD;
	border-radius: 10px;
	padding: 30px;
}

.innovation_content6 .secondary_title {
	margin-bottom: 20px;
}

.innovation_content6 .innovation_content6_inner {
	margin-top: 30px;
}

.innovation_content6 .innovation_content6_inner .secondary_description b {
	display: block;
	margin-bottom: 20px;
}

.innovation_content6_image {
	margin-top: 30px;
}

.innovation_content6_image .general_carousel {
	padding-bottom: 30px;
}

.innovation_content6_image .owl-prev, .innovation_content6_image .owl-next {
	bottom: 0;
}

.innovation_content2 .gradient_button a {
	width: 100%;
}

.innovation_content2 .gradient_button a:not(.active) {
	background: transparent;
	border-color: #B0B0B0;
	color: #B0B0B0;
}

.esginsight_content1 .innovation_content3 {
	display: block;
}

.esginsight_content2 .secondary_title {
	font-weight: normal;
	margin-top: 50px;
	margin-bottom: 100px;
}

.esginsight_content1 .innovation_content3.general_accordion .btn-link {
	font-size: 20px!important;
	line-height: 30px!important;
	color: #000!important;
}

.esginsight_content1 .about_download_button {
	background: #0078C0;
	background: -webkit-linear-gradient(90deg, rgba(0, 120, 192, 1) 0%, rgba(24, 50, 164, 1) 100%);
	background: -moz-linear-gradient(90deg, rgba(0, 120, 192, 1) 0%, rgba(24, 50, 164, 1) 100%);
	background: linear-gradient(90deg, rgba(0, 120, 192, 1) 0%, rgba(24, 50, 164, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0078C0", endColorstr="#1832A4", GradientType=1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    color: #fff;
    height: 100%;
}

.esginsight_content1 .about_download_content {
	width: calc(100% - 75px);
	padding-right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
}

.esginsight_content1 .about_download_button a {
	width: 100%;
	color: #fff;
}

.esginsight_content1 .about_download_button a img {
	width: 35px;
	margin-left: 15px;
}

.esginsight_content3 {
	padding-top: 30px;
	border-left: 1px solid rgba(0, 0, 0, 0.1);
	padding-left: 30px;
}

.esginsight_content5_background {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 10px;
}

.owl-nav .owl-prev.disabled, .owl-nav .owl-next.disabled {
    border-color: transparent;
    opacity: 0.5;
    cursor: not-allowed;
}

.esginsight_content5 .card-body {
	padding-left: 0;
	padding-right: 0;
}

.esginsight_content5 .owl-nav {
	margin-bottom: 30px;
}

.esginsight_content4 {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 50px;
}

.esginsight_content4 a {
	display: block;
	flex: 0 0 100px; 
	font-weight: normal;
}

.esginsight_content4 a.active {
	font-weight: bold;
	color: #1832A4;
}

.esginsight_content5:not(.active) {
	display: none;
}

.newsroom_content1 {
	padding-top: 50px;
	padding-bottom: 50px;
}

.newsroom_content1 .newsroom_content1_flex {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 50px 0 50px 0;
	color: #00331D;
}

.newsroom_content1 .newsroom_content1_flex .general_border_top {
	padding-right: 50px;
}

.newsroom_content1_content .about_download_button {
	background-image: url('/assets/img/chip-background.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.newsroom_content1_content .about_download_button .about_download_content .secondary_description:first-child {
	margin-bottom: 0;
}

.newsroom_content1_content .about_download_button .about_download_content {
	height: initial;
}

.our_profile_language_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.our_profile_language_box .our_profile_language_box_outer {
    display: block;
    padding: 15px 30px;
    border-radius: 8px;
}

.our_profile_language_box .our_profile_language_box_outer .our_profile_language_select {
    background-color: #fff;
    border: 1px solid #1832A4;
    color: #1832A4;
    border-radius: 8px;
    padding: 2px 30px;
    margin: 0 15px;
    box-shadow: 0px 0px 37px 0px rgba(0,0,0,0.35);
    -webkit-box-shadow: 0px 0px 37px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 0px 37px 0px rgba(0,0,0,0.35);
}

.our_profile_language_box .our_profile_language_box_outer .our_profile_language_select:hover {
    background-color: #1832A4;
    color: #fff;
}

.our_profile_popup {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background-color: #fff;
}

.our_profile_popup .our_profile_content {
    max-width: 1170px;
}

.our_profile_popup .our_profile_download, .our_profile_popup .our_profile_completed_download {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    margin-bottom: 6px;
}

.our_profile_popup .our_profile_download a, .our_profile_popup .our_profile_completed_download a {
	background-color: #1832A4;
	border: 1px solid #1832A4;
    border-radius: 12px;
    padding: 5px 25px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    border: 1px solid #fff;
    display: block;
}

.our_profile_popup .our_profile_download a:hover, .our_profile_popup .our_profile_completed_download a:hover {
    background: transparent;
    border-color: #0B4422;
    color: #0B4422;
}

.our_profile_popup .our_profile_completed_download a.downloaded {
    color: #6c757d;
    border-color: #6c757d;
    background: transparent;
    pointer-events: none;
}

.our_profile_popup .our_profile_form, .our_profile_popup .our_profile_completed {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 350px;
    width: calc(100% - 30px);
    z-index: 1;
    display: none;
    justify-content: center;
    align-items: center;
    margin: auto;
}


.our_profile_popup .our_profile_form .primary_description, .our_profile_popup .our_profile_completed .primary_description {
    font-weight: bold;
    margin-bottom: 30px;
    color: #00331D;
}

.our_profile_popup .our_profile_form form, .our_profile_popup .our_profile_completed .our_profile_completed_inner {
    background-color: #5EDCCD;
    padding: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.our_profile_popup .our_profile_download_cancel, .our_profile_popup .our_profile_completed_close {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.our_profile_popup .our_profile_download_cancel a, .our_profile_popup .our_profile_completed_close a {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #dc3545;
}

.our_profile_popup .our_profile_download_cancel a:hover, .our_profile_popup .our_profile_completed_close a:hover {
    text-decoration: underline;
}

.sweet_account.sweet_video_play.sweet_our_profile {
	width: initial!important;
}

.sweet_account.sweet_video_play {
    padding: 0!important;
    background-color: transparent!important;
    width: 750px!important;
    max-width: 100%!important;
}

.newsroom_content2 {
	margin-bottom: 50px;
}

.newsroom_content2 .primary_title {
	font-weight: normal;
	color: #00331D;
}

.newsroom_content2_button {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.newsroom_content2_button a {
	display: block;
	flex: 0 0 70px; 
	font-weight: normal;
	border: 1px solid #1832A4;
	border-radius: 25px;
	text-align: center;
	padding: 5px 15px;
	color: #1832A4;
}

.newsroom_content2_button a:hover, .newsroom_content2_button a.active {
	background: #0078C0;
	background: -webkit-linear-gradient(90deg, rgba(0, 120, 192, 1) 0%, rgba(24, 50, 164, 1) 100%);
	background: -moz-linear-gradient(90deg, rgba(0, 120, 192, 1) 0%, rgba(24, 50, 164, 1) 100%);
	background: linear-gradient(90deg, rgba(0, 120, 192, 1) 0%, rgba(24, 50, 164, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0078C0", endColorstr="#1832A4", GradientType=1);
	color: #fff;
}

.newsroom_content3:not(.active) {
	display: none;
}

.newsroom_content3_col {
	margin-bottom: 30px;
}

.newsroom_content3_inner {
	height: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	position: relative; z-index: 1;
}

.newsroom_content3_inner.dropdown-layer { z-index: 200; }

.newsroom_content3_inner .secondary_description {
	margin-bottom: 8px;
}

.newsroom_content3_inner .gradient_button {
	justify-content: flex-start;
	margin-top: 8px;
}

.newsroom_content3_inner .gradient_button a {
	width: 100%;
}

.shop_toolbar {
	border: 0;
}

.shop_toolbar .page-item .page-link {
	border: 0;
	color: #00331D;
	background-color: transparent;
}

.shop_toolbar .page-item .page-link.current {
	font-weight: bold;
}

.newsroom_content1[attr-id="2"] {
	padding-top: 0;
}

.newsroom_content4 {
	margin-left: 10px;
	border-left: 1px solid rgba(0, 0, 0, 0.1);
	padding: 30px 0 10px 30px;
}

.newsroom_content3_inner[attr-id="2"] {
	align-items: center;
	flex-direction: initial;
}

.newsroom_content3_inner[attr-id="2"] .newsroom_content3_image {
	width: 150px;
}

.newsroom_content3_inner[attr-id="2"] .newsroom_content3_copyrights {
	width: calc(100% - 180px);
}

.newsroom_content3_image {
	backgrround-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.newsroom_content5_videos iframe {
	width: 100%;
	border: 0;
	margin: 0;
}

.newsroom_content5 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.newsroom_content5 .newsroom_content5_title {
	text-align: center;
	margin-bottom: 50px;
}

.newsroom_content5 .newsroom_content5_videos {
	margin-bottom: 50px;
}

.newsroom_content5 .newsroom_content5_videos .secondary_description {
	text-align: center;
}

.career_content1 {
	padding-top: 50px;
	padding-bottom: 50px;
}

.career_content1 .primary_title {
	margin-bottom: 30px;
}

.career_content1 .career_content1_inner {
	margin-top: 30px;
	text-align: center;
}

.career_content1_item .career_content1_image {
	border-radius: 10px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.career_content1_item .primary_description {
	margin-top: 10px;
	margin-bottom: 10px;
}

.career_content2 .innovation_content3.general_accordion .btn-link {
	font-size: 25px!important;
	line-height: 32px!important;
}

.career_content2 .innovation_content5 > .primary_description {
	margin-bottom: 15px;
}

.career_content2 ul {
    list-style-type: disc;
    padding-left: 20px;	
}

.career_content2 ul li {
	margin-bottom: 5px;
}

.career_content2 .innovation_content5 {
	margin-top: 0;
}

.career_content2 .general_button {
	justify-content: flex-start;
	margin-top: 30px;
}

.career_content2 .general_button a {
	width: 100%;
}

.contact_content1 .career_content1_title .primary_description {
	margin-top: 30px;
	margin-bottom: 30px;
	font-weight: normal;
}

.contact_content1_inner, .contact_content1_item {
	padding-top: 30px;
	padding-bottom: 30px;
}

.contact_content1_inner .secondary_description:not(:last-child) {
	margin-bottom: 30px;
}

.contact_content1_background {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 10px;
}

.contact_content2_image {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 10px 10px 0 0;
}

.contact_content2 {
	padding-bottom: 100px;
}

.contact_content2 iframe {
	width: 100%;
	border: 0;
	margin: 0;
	border-radius: 0 0 10px 10px;
	overflow: hidden;
}

.contact_content2 .secondary_description {
	margin-top: 15px;
}

.contact_content2 .contact_content2_title {
	margin-bottom: 50px;
}

.contact_content2 .contact_content2_image {
	margin-bottom: 10px;
}

.contact_content2 .primary_description {
	margin-top: 15px;
}

.contact_content3 {
	padding-bottom: 100px;
}

.contact_content3 .contact_content2_title .primary_description {
	margin-top: 30px;
	margin-bottom: 50px;
}

.contact_content3_inner {
	padding-left: 50px;
}

.contact_content3 .form-group {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact_content3 .form-group label {
	text-align: left;
    color: #00331D;
    width: 150px;
}

.contact_content3 .form-group input, .contact_content3 .form-group select, .contact_content3 .form-group textarea, .contact_content3 .form-group .gradient_button {
	width: calc(100% - 200px);
}

.contact_content3 .form-group input[type="file"] {
	border: 0;
	padding-left: 0;
}

.contact_content3 .form-group .gradient_button button {
	margin-top: 20px;
	width: 100%;
	text-align: left;
	justify-content: flex-start;
}

.cta-dropdown { position: relative; display: inline-block; z-index: 100; }

/* Your gradient button */
.dropdown_button {
  display: inline-flex; justify-content: center; align-items: center;
  background: #0078C0;
  background: -webkit-linear-gradient(90deg, rgba(0,120,192,1) 0%, rgba(24,50,164,1) 100%);
  background: -moz-linear-gradient(90deg, rgba(0,120,192,1) 0%, rgba(24,50,164,1) 100%);
  background: linear-gradient(90deg, rgba(0,120,192,1) 0%, rgba(24,50,164,1) 100%);
  border: 1px solid #1832A4; color: #fff; font-size: 14px; line-height: 20px;
  padding: 5px 25px; border-radius: 5px; cursor: pointer; text-decoration: none;
  width: 100%;
}
.dropdown_button:hover { background: transparent; color: #1832A4; }

/* Add a caret ONLY if there is a menu (JS adds .has-menu) */
.dropdown_button.has-menu::after {
  content: "▾"; margin-left: 8px; font-size: 12px; line-height: 1;
}

/* Dropdown panel */
.dropdown_menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  margin: 0; padding: 6px; list-style: none; background: #fff;
  border: 1px solid #dbe1f1; border-radius: 8px; box-shadow: 0 8px 18px rgba(0,0,0,.12);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s; z-index: 101;
}
.dropdown_menu a {
  display: block; padding: 10px 12px; border-radius: 6px; color: #fff; text-decoration: none; font-size: 14px; cursor: pointer;
}
.dropdown_menu a:hover, .dropdown_menu a:focus { 
	background: #f0f5ff; outline: none; color: #0078C0;
}

/* Open state */
.cta-dropdown.open .dropdown_menu {
  opacity: 1; visibility: visible; transform: translateY(0); z-index: 102; background-color: #0078C0; width: 100%;
}

.image_play {
	cursor: pointer;
}

.desktop_nav_dropdown {
    position: relative;
    z-index: 1;
}

.desktop_nav_dropdown .desktop_nav_dropdown_inner {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto 0;
    background-color: #1832A4;
    padding: 0;
    border-radius: 0 0 8px 8px;
}

.desktop_nav_dropdown .desktop_nav_dropdown_inner a {
	display: flex;
    justify-content: flex-start;
    color: #fff;
    padding: 10px 20px;
    border-top: 1px solid #1832A4;
}

.desktop_nav_dropdown .desktop_nav_dropdown_inner a:not(:last-child) {
	border-bottom: 1px solid #8b99d2;
}

.desktop_nav_dropdown .desktop_nav_dropdown_inner a:hover {
    color: #8b99d2;
}

.desktop_nav_dropdown:hover .desktop_nav_dropdown_inner {
    display: block;
}

.desktop_nav_dropdown:hover .general_button a {
	border-radius: 8px 8px 0 0!important;
}

.mobile_nav_dropdown_inner {
    max-height: 0;
    transition: max-height 0.35s ease-out;
    overflow: hidden;
    padding-left: 15px;
}

.mobile_buttons li:active .mobile_nav_dropdown_inner, .mobile_buttons li:hover .mobile_nav_dropdown_inner, .mobile_buttons li:focus .mobile_nav_dropdown_inner {
    max-height: initial;
    transition: max-height 0.35s ease-in;
}

#mobile_sidebar .components li a.mobile_nav_dropdown_button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: 20px;
}

#mobile_sidebar .components li a.mobile_nav_dropdown_button i {
	font-size: 12px;
	line-height: 18px;
}

@media only screen and (max-width: 991px) {  
	.desktop_nav {
		display: none;
	}

	.mobile_nav {
		display: block;
	}

	.mobile_header_outer {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.mobile_header_inner {
		display: flex;
	    justify-content: space-between;
	    align-items: center;
	}

	.mobile_header_inner a {
		width: 125px;
		display: flex;
	    justify-content: flex-start;
	    align-items: center;
	}

	.mobile_header_inner a img[attr-id="1"] {
		width: 50px;
	}

	.mobile_header_inner a img[attr-id="2"] {
		width: calc(100% - 35px);
    	padding-left: 5px;
	}

	.mobile_header_inner button {
		background-color: transparent;
		color: #1832A4;
		border: 0;
		font-size: 20px;
		line-height: 28px;
	}

	#mobile_sidebar {
	    width: 250px;
	    position: fixed;
	    top: 0;
	    right: -250px;
	    height: 100vh;
	    z-index: 999;
		background-color: rgba(24, 50, 164, 0.85);
		color: #fff;
	    transition: all 0.3s;
	    overflow-y: scroll;
	}

	#mobile_sidebar.active {
	    right: 0;
	}

	#mobile_sidebar .sidebar_header {
	    padding: 50px 50px 25px 50px;
	    display: flex;
	    justify-content: center;
	    align-items: center;
	}

	#mobile_sidebar ul.components {
	    padding: 15px 0;
	    border-bottom: 1px solid #fff;
	}

	#mobile_sidebar .components p {
	    color: #fff;
	    padding: 10px;
	}

	#mobile_sidebar .components li a {
	    padding: 10px;
	    display: block;
	    font-size: 12px;
	    line-height: 18px;
	    font-weight: 600;
	    color: #fff;
	    text-transform: uppercase;
	}

	#mobile_sidebar .components li.active>a, #mobile_sidebar a.collapse[aria-expanded="true"] {
		color: #0078C0;
	}

	#mobile_sidebar .components li a:hover {
	    color: #fff;
	}

	#mobile_sidebar a[data-toggle="collapse"] {
	    position: relative;
	}

	.sidebar_overlay {
	    display: none;
	    position: fixed;
	    width: 100vw;
	    height: 100vh;
	    background: rgba(0, 0, 0, 0.7);
	    z-index: 998;
	    opacity: 0;
	    transition: all 0.5s ease-in-out;
	    top: 0;
	    left: 0;
	    right: 0;
	    bottom: 0;
	    margin: auto;
	}
	.sidebar_overlay.active {
	    display: block;
	    opacity: 1;
	}

	#sidebar_dismiss {
	    width: 25px;
	    height: 25px;
	    line-height: 25px;
	    font-size: 15px;
	    text-align: center;
	    position: absolute;
	    top: 10px;
	    right: 10px;
	    cursor: pointer;
	    -webkit-transition: all 0.3s;
	    -o-transition: all 0.3s;
	    transition: all 0.3s;
	    border-radius: 15px;
	    color: #fff;;
	}

	.background_fixed {
		background-attachment: initial;
	}
}

@media only screen and (max-width: 767px) {
	.primary_title {
		font-size: 30px;
		line-height: 35px;
	}

	.secondary_title {
		font-size: 25px;
		line-height: 30px;
	}

	.primary_description {
		font-size: 16px;
		line-height: 20px;
	}

	.secondary_description {
		font-size: 12px;
		line-height: 16px;
	}

	.general_button a, .general_button button {
		font-size: 12px;
		line-height: 18px;
	}

	.general_section {
		padding-top: 25px;
		padding-bottom: 25px;
	}

	.footer_connect .footer_connect_each {
		margin-top: 30px;
	}

	.footer_connect .footer_connect_each img {
		height: 35px;
	}

	.footer_hub_item .general_button {
		margin-top: 30px;
	}

	.footer_hub_right {
		height: 300px;
		margin-top: 30px;
	}

	.footer_nav .general_image {
		max-width: 150px;
	}

	.footer_nav_button {
		margin-top: 30px;
	}

	.footer_line .secondary_description {
		font-size: 10px;
	}

	.dashboard_banner_stock .secondary_description {
		text-align: center;
	}

	.dashboard_content1_item .dashboard_content1_col:nth-child(even) {
		border: 0;
	}

	.dashboard_banner_image {
		height: 350px;
	}

	.dashboard_content2_left {
		padding-top: 0;
		padding-bottom: 30px;
	}

	.dashboard_content2_right:before {
		bottom: 0;
		top: initial;
	}

	.dashboard_content3 .dashboard_content3_content .secondary_description {
		margin-top: 15px;
	}

	/*.dashboard_milestones_container {
		height: 50vh;
	}*/

	.dashboard_gallery_content .general_button {
		margin-bottom: 30px;
	}

	.dashboard_gallery_content[attr-id="2"] .dashboard_gallery_inner .dashboard_gallery_image[attr-id="3"] {
		width: 100%;
	}

	.dashboard_content4_circle[attr-id="2"] {
		top: 55%;
		right: 15%;
	}

	.dashboard_content4_content {
		margin-top: 50px;
	    position: relative;
	    margin-bottom: 100px;
	}

	.dashboard_content4 .secondary_description[attr-id="3"] {
		top: 30px;
		right: 15px;
	}

	.dashboard_content4_footer .secondary_title {
		text-align: left;
		margin-bottom: 15px;
	}

	.dashboard_projects_title {
		margin-bottom: 30px;
	} 

	.dashboard_content5_title {
		margin-bottom: 50px;
	}

	.dashboard_content6_title .primary_title {
		margin-bottom: 15px;
	}

	.dashboard_content6_center > .row {
		justify-content: center;
	}

	.dashboard_content6_image {
		margin-bottom: 30px;
	}

	.dashboard_content7_box {
		justify-content: center!important;
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.dashboard_content7_box .dashboard_content7_box_inner {
		margin: auto!important;
	}

	.dashboard_content7_box .secondary_description[attr-id="2"] {
		text-align: center;
	}

	.dashboard_content8 .dashboard_content8_links {
		justify-content: flex-start;
		margin-top: 30px;
	}

	.dashboard_milestones_group.is-active .dashboard_milestones_year {
		font-size: 50px;
	}

	.dashboard_milestones_year {
		font-size: 30px;
	}

	.dashboard_milestones_item .dashboard_milestones_image {
		width: 75px;
		height: 55px;
	}

	.dashboard_milestones_item {
		gap: 5px;
	}

	.dashboard_milestones_wrapper {
		padding-left: 25px;
	}

	.dashboard_milestones_group {
		min-width: 150px;
		padding-right: 25px;
		/*max-width: 200px;*/
	}

	.dashboard_milestones_content {
		gap: 50px;
	}

	.dashboard_milestones_item .dashboard_milestones_description {
		min-width: 125px;
		max-width: 200px;
	}

	.about_content1_right {
		margin-top: 30px;
	}

	.about_content1 .about_content2 .general_background {
		height: 250px;
		margin-bottom: 15px;
	}

	.about_content3 {
		padding-top: 0;
	}

	.about_content3_directors .general_background {
		margin-bottom: 15px;
	}

	.about_content6 .general_background {
		height: 250px;
		margin-bottom: 15px;
	}

	.about_milestones_list {
	    flex-wrap: wrap;
	    gap: 20px;
	    flex-direction: initial;
	    height: initial;
	    margin-top: 0;
	}

	.about_milestones_list a {
		margin: 0;
	}

	.about_milestones_content {
		margin-top: 50px;
	}

	.innovation_content1 .innovation_content1_background {
		height: 250px;
	}

	.innovation_content1 .secondary_description {
		margin-bottom: 50px;
	}

	.innovation_content1 {
		padding-bottom: 0;
	}

	.innovation_content2 .gradient_button {
		margin-top: 5px;
		margin-bottom: 5px;
	}

	.innovation_content3.general_accordion .btn-link {
		font-size: 25px!important;
		line-height: 35px!important;
	}

	.esg_content3 .esg_content3_col:not(:last-child):after {
		bottom: 0;
		top: initial;
		width: 100%;
		height: 2px;
	}

	.esg_content5_content .esg_content5_circle {
		width: 250px;
		height: 250px;
	}

	.esg_content5_box {
		width: 100%;
	}

	.esg_content5_button.active .esg_content5_button_inner img {
		width: 40px;
	}

	.esg_content5_button .esg_content5_button_inner img {
		width: 20px;
	}

	.esg_content5_button {
		height: 60px;
		width: 60px;
	}

	.esg_content5_button.active {
		width: 80px;
		height: 80px;
		padding: 5px;
	}

	.esg_content6_box {
		padding-top: 50px;
		margin-bottom: 50px;
	}

	.esg_content6_box .esg_content6_background {
		margin-top: -50px;
	}

	.esg_content8_copyrights {
		margin-top: 20px;
		margin-bottom: 50px;
	}

	.esg_content9_top, .esg_content9_inner[attr-id="2"] {
		color: #fff;
	}

	.esg_content9_top .esg_content9_top_background, .esg_content9_bottom .esg_content9_bottom_background {
		transform: initial!important;
		width: 100%;
		border-radius: 0;
	}

	.esg_content9_top .esg_content9_top_background:before, .esg_content9_bottom .esg_content9_bottom_background:before {
		content: '';
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.5);
	}

	.newsroom_content2_button {
		margin-bottom: 30px;
	}


	.career_content1_item {
		margin-bottom: 50px;
	}

	.career_content2 .innovation_content3.general_accordion .btn-link {
		font-size: 20px !important;
    	line-height: 28px !important;
	}

	.contact_content1_background {
		height: 250px;
	}

	.contact_content2 .contact_content2_title {
		margin-bottom: 20px;
	}

	.contact_content2 .contact_content2_image {
		margin-top: 30px;
	}

	.contact_content3_inner {
		padding-left: 0;
	}

	.contact_content3 .form-group input, .contact_content3 .form-group select, .contact_content3 .form-group textarea, .contact_content3 .form-group .gradient_button {
		width: calc(100% - 150px);
	}

	.dashboard_banner_image .primary_title, .dashboard_banner_image .primary_description {
		max-width: 100%;
	}
}