:root {
    --primary-color: #F69329;
    --primary-rgb: rgb(246, 147, 41);
    --secondary-color: #FBBF06; 
    --secondary-rgb: rgb(251, 191, 6);
    --third-color: #155580;
    --third-rgb: rgb(21, 85, 128);
    --forth-color: #7B1C1B;
    --forth-rgb: rgb(123, 28, 27);
}

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

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

.highlight_font {
	font-family: 'Ortisan Signature', sans-serif!important;
} 

.navigation_menu {
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
	background-color: rgba(0, 0, 0, 0.75);
}

.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: 0;
	border-bottom: 1px solid #fff;
	font-size: 12px;
	line-height: 18px;
	padding: 10px 15px;
	border-radius: 0;
	height: 40px!important;
    background-color: transparent;!important;
    color: #fff;
}

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

.form-control:focus {
	box-shadow: none;
	color: #fff;
	background: transparent;
	border-color: #F69329;
}

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

.form-button button {
	border: 1px solid #F69329;
	border-radius: 8px;
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
	color: #FFF;
	font-size: 14px;
	line-height: 20px;
	padding: 8px 35px;
}

.form-button button i {
	margin-left: 5px;
}

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

.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: 5px;
    top: 0px;
    width: 10px;
    height: 17px;
	border: solid white;
	border-width: 0 4px 4px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

a:hover {
	color: #155580;
}

.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: #F69329;
    border: 1px solid #F69329;
    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: 1s 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: #fff;
}

.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: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
    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: #FBBF06!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: #FBBF06!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: 65px;
	font-weight: bold;
	margin-bottom: 0;
}

.primary_title span:not(.no_small), .general_stair .primary_title {
	font-size: 35px;
	line-height: 50px;
}

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

.third_title {
	font-size: 35px;
	line-height: 40px;
}

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

.line_title {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.line_title:before {
	content: '';
	background-color: #F28F29;
	height: 1px;
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.line_title .line_title_background {
	background-color: #000;
	padding: 5px 35px;
	position: relative;
	z-index: 1;
}

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

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

#scrollUp {
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
}

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

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

.general_button a:hover, .general_button button:hover {
	background-color: #000;
	color: #F69329;
}

.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 a {
	/*text-decoration: underline;*/
	color: #F69329;
}

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

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

.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;
}

.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;
}

.hidden_seo_image {
    opacity: 0.01;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.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;
}

.desktop_top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding-top: 15px;
    padding-bottom: 15px;
}

.desktop_top .desktop_logo {
	width: 100px;
	display: block;
}

.desktop_top .desktop_logo video {
	width: 100%;
}

.desktop_top .desktop_menu {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.desktop_top .desktop_menu a {
	font-size: 14px;
	line-height: 20px;
	padding: 8px 15px;
	margin: 0 5px;
	color: #fff;
}

.desktop_top .desktop_menu a:hover {
	color: #F69329;
}

.desktop_top .desktop_menu a.highlight {
	border: 1px solid #F69329;
	background-color: #F69329;
    border-radius: 25px;
    color: #000;
}

.desktop_top .desktop_menu a.highlight:hover {
	background-color: transparent;
	color: #F69329;
}

.desktop_dropdown {
	float: left;
	overflow: hidden;
    border-radius: 15px 15px 0px 0px;
}

.desktop_dropdown .desktop_dropdown_button {
	font-size: 16px;  
	border: none;
	outline: none;
	color: white;
	padding: 8px 15px;
	margin: 0 5px;
	background-color: inherit;
	font: inherit;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
}

.desktop_dropdown .desktop_dropdown_button i {
	margin-left: 3px;
}

.desktop_dropdown:hover {
	background-color: #fff;
}

.desktop_dropdown:hover .desktop_dropdown_button {
	color: #F69329;
}

.desktop_dropdown_content {
	display: none;
	position: absolute;
	background-color: #fff;
	width: 100%;
	left: 0;
	z-index: 1;
	border-radius: 15px 15px 15px 15px;
	overflow: hidden;
}

.desktop_dropdown_content .col_line {
	position: relative;
}

.desktop_top .desktop_menu .desktop_dropdown_content a, .desktop_top .desktop_menu .desktop_dropdown_content h3 {
	font-size: 14px;
	line-height: 20px;
	color: #000;
	padding: 10px 0;
	margin-bottom: 0;
}

.desktop_top .desktop_menu .desktop_dropdown_content h3 a {
	margin: 0;
}

.desktop_top .desktop_menu .desktop_dropdown_content a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.desktop_top .desktop_menu .desktop_dropdown_content a[href=""] {
	pointer-events: none;
}

.desktop_top .desktop_menu .desktop_dropdown_content a:hover {
	color: #F69329;
}

.desktop_top .desktop_menu .desktop_dropdown_content a img {
	width: 15px;
    margin-right: 10px;
}

.desktop_dropdown:hover .desktop_dropdown_content {
	display: block;
}

.desktop_dropdown .desktop_dropdown_main {
	padding: 30px 30px;
}

.desktop_dropdown .desktop_dropdown_main .col_line {
	position: relative;
	padding-left: 50px;
	padding-right: 50px;
}

.desktop_dropdown .desktop_dropdown_main .col_line:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 1px;
	background-color: #D1D3D4;
	margin: auto;
}

.desktop_dropdown .desktop_dropdown_main .col_line:last-child:after {
	display: none;
}

.desktop_dropdown .desktop_dropdown_contact {
	background-color: #F69329;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 15px;
}

.desktop_top .desktop_menu .desktop_dropdown .desktop_dropdown_contact a {
	color: #fff;
}

.desktop_top .desktop_menu .desktop_dropdown .desktop_dropdown_contact a:hover {
	color: #000;
}

.desktop_top .desktop_menu .desktop_dropdown .desktop_dropdown_contact a i {
	margin-left: 3px;
}

.footer_section1_inner {
	padding: 50px 100px;
	background-color: #fff;
	border-radius: 50px 0 50px 0;
	text-align: center;
	color: #000;
	margin-top: 30px;
}

.footer_section1_inner .secondary_title {
	font-weight: normal;
}

.footer_section1_inner .primary_description {
	font-weight: bold;
}

.footer_section1_inner .secondary_description {
	margin-top: 30px;
	margin-bottom: 30px;
}

.footer_section1_inner a {
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
	border-color: #F69329;
	color: #000;
	transition: initial;
}

.footer_section1_inner a:hover {
	background: transparent;
	color: #F69329;
}

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

.footer_section2 .footer_section2_logo {
	text-align: center;
}

.footer_section2 .footer_section2_logo img {
	width: 100px;
}

.footer_section2 .footer_section2_logo .primary_description {
	margin-top: 15px;
	margin-bottom: 20px;
	color: #F69329;
}

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

.footer_section2 .footer_socials a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	border: 1px solid #fff;
	margin: 0 8px;
	transition-duration: .5s;
}

.footer_section2 .footer_socials a i {
	font-size: 14px;
	color: #fff;
}

.footer_section2 .footer_socials a img {
	width: 15px;
}

.footer_section2 .footer_socials a:hover {
	background-color: #F69329;
	border-color: #F69329;
    transform: rotate(1turn)
}

.footer_address {
	margin-top: 40px;
}

.footer_address .footer_address_inner {
	display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer_address .footer_address_inner .footer_address_content {
	margin-left: 8px;
}

.footer_address .footer_address_inner .primary_title {
	font-size: 60px;
	line-height: 55px;
	color: #58595B;
}

.footer_address .footer_address_inner .footer_address_content .secondary_description b {
	color: #F69329;
	font-weight: bold;
}

.highlight_color {
    background-image: linear-gradient(135deg, #F69329, #FBBF06);
    color: transparent;
    background-clip: text;
}

.general_title {
	text-align: center;
}

.general_title h2 {
	color: #F69329;
}

.general_title h2 span {
	color: #fff;
}

.footer_link .secondary_description {
	color: #F69329;
	margin-bottom: 10px;
}

.footer_link .footer_link_content a {
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	display: block;
	margin: 5px 0;
}

.footer_link .footer_link_content a:hover {
	color: #F69329;
}

.footer_section3 .general_title {
	margin-bottom: 20px;
}

.footer_section3 .footer_link_inner {
	position: relative;
	padding-left: 15px;
}

.footer_section3 .footer_link_inner:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	height: 100%;
	width: 1px;
	background-color: #F69329;
	margin: auto;
}

.footer_section4 {
	border-top: 1px solid #F69329;
	margin-top: 30px;
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;
}

.footer_section4 .footer_sub_page a:not(:last-child) {
	border-right: 1px solid #fff;
	padding-right: 10px;
    margin-right: 5px;
}

.footer_section4 .footer_sub_page a {
	color: #fff;
}

.footer_section4 .footer_sub_page a:hover {
	color: #F69329;
}

.custom_select {
	appearance: none; /* Remove default browser arrow */
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: transparent;
	border: 1px solid orange;
	padding: 10px 30px 10px 10px; /* right padding for arrow */
	color: orange;
	max-width: 150px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	background-image: url('data:image/svg+xml;utf8,<svg fill="orange" height="12" viewBox="0 0 24 24" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 25px;
	cursor: pointer;
}

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

.sub_pages .general_editor {
	margin-top: 30px;
}

.general_right_title {
	position: relative;
}

.general_right_title:before {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 75%;
    height: 1px;
    margin: auto;
    background-color: #F69329;
}

.general_right_title .general_title {
	display: flex;
    justify-content: flex-end;
    align-items: center;
}

.general_right_title .general_title h2 {
	background-color: #000;
	padding-left: 15px;
	position: relative;
    z-index: 1;
}

.general_left_title {
	position: relative;
}

.general_left_title:before {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 75%;
    height: 1px;
    margin: auto;
    background-color: #F69329;
}

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

.general_left_title .general_title h2 {
	background-color: #000;
	padding-right: 15px;
	position: relative;
    z-index: 1;
}

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

.dashboard_video video {
    width: 100%;
}

.dashboard_about {
	margin-top: 50px;
	margin-bottom: 50px;
	background-color: #fff;
	color: #000;
}

.dashboard_about .dashboard_about_left {
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
	position: relative;
    border-radius: 0 0 50px 50px;
    padding: 20px 30px 25px 30px;
    margin-top: -30px;
    max-width: 300px;
}

.dashboard_about .dashboard_about_left .dashboard_about_title {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 25px;
    padding: 5px 25px;
    margin-left: -60px;
    margin-right: 60px;
}

.dashboard_about .dashboard_about_content {
	display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    color: #fff;
}

.dashboard_about .dashboard_about_content .secondary_title {
	font-size: 35px;
	line-height: 40px;
}

.dashboard_about .dashboard_about_content .secondary_title span {
	color: #000;
}

.dashboard_about .dashboard_about_description {
	padding-top: 70px;
	padding-bottom: 70px;
}

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

.dashboard_purpose:before {
	content: '';
	position: absolute;
	top: 80px;
	left: 0;
	width: 50%;
	margin: auto;
	height: 1px;
	background-color: #F69329;
}

.dashboard_purpose:after {
	content: '';
	position: absolute;
	bottom: 60px;
	right: 0;
	width: 50%;
	margin: auto;
	height: 1px;
	background-color: #F69329;
}

.dashboard_purpose .dashboard_purpose_description {
	width: 70%;
	margin: 20px 0 0 auto;
}

.dashboard_purpose .dashboard_purpose_description .primary_description {
	text-align: right;
}

.dashboard_purpose .dashboard_purpose_inner {
	background-color: #000;
	padding-left: 15px;
	padding-right: 15px;
	position: relative;
	z-index: 1;
}

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

.dashboard_vision .dashboard_vision_title_outer {
	position: relative;
	z-index: 2;
}

/*.dashboard_vision .dashboard_vision_title_outer:before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #fff;
	height: 100%;
	width: 40%;
}*/

.dashboard_vision .dashboard_vision_title {
	display: flex;
    justify-content: flex-end;
    align-items: center;
/*    background-color: #000;*/
    position: relative;
    z-index: 1;
}

.dashboard_vision .dashboard_vision_title_background {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #fff;
	border-radius: 0 0 0 75px;
}

.dashboard_vision .dashboard_vision_title .dashboard_vision_title_inner {
/*	background-color: #fff;*/
    padding: 30px 0px 30px 50px;
    border-radius: 0 0 0 50px;
}

.dashboard_vision .dashboard_vision_title .primary_title {
	color: #F69329;
}

.dashboard_vision .dashboard_vision_description {
	width: 70%;
	margin: 0 auto 0 0;
/*    background-color: #000;*/
    position: relative;
    z-index: 1;
}

.dashboard_vision .dashboard_vision_description_outer {
	position: relative;
	margin-top: -50px;
}

.dashboard_vision .dashboard_vision_description_background {
	position: absolute;
	top: 0;
	left: 0;
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
	border-radius: 0 0 100px 0;
}

/*
.dashboard_vision .dashboard_vision_description_outer:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: #F69329;
	height: 100%;
	width: 50%;
}*/

.dashboard_vision .dashboard_vision_description_inner {
	/*background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);*/
    padding: 80px 0px 60px 0px;
    border-radius: 0 0 50px 0;
    color: #000;
}

.dashboard_vision .general_button, .dashboard_clients .general_button, .dashboard_ourwork .general_button, .dashboard_credentials .general_button, .project_back_button .general_button {
	margin-top: 30px;
	margin-bottom: 30px;
}

.dashboard_vision .general_button a, .dashboard_clients .general_button a, .dashboard_ourwork .general_button a, .dashboard_credentials .general_button a, .project_back_button .general_button a {
	border-color: #fff;
	color: #fff;
}

.dashboard_vision .general_button a:hover, .dashboard_clients .general_button a:hover, .dashboard_ourwork .general_button a:hover, .dashboard_credentials .general_button a:hover, .project_back_button .general_button a:hover {
	border-color: #F69329;
	color: #F69329;
}

.dashboard_services {
	padding-top: 15px;
	padding-bottom: 80px;
}

.dashboard_services .dashboard_service_inner {
	margin-top: 30px;
}

.services_box {
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
	padding: 1px;
	height: 100%;
	color: #000;
	text-align: center;
	border-radius: 10px;
	position: relative;
	display: block;
}

.services_box .services_box_border {
	background-color: #000;
	padding: 2px;
	border-radius: 10px;
	height: 100%;
}

.services_box .services_box_border .services_box_inner {
	background-color: #fff;
	border-radius: 10px;
	height: 100%;
	padding: 30px 10px;
}

.services_box .services_box_image {
	width: 60px;
	height: 60px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin: auto;
	position: relative;
	transition: transform .5s; /* Animation */
}

.services_box:hover .services_box_image {
	transform: scale(1.15);
}

.services_box .secondary_description {
	margin-top: 10px;
	color: #000;
}

.dashboard_clients {
	padding-bottom: 80px;
}

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

.dashboard_clients .dashboard_client_header {
	position: relative;
}

.dashboard_clients .dashboard_client_header:before {
	content: '';
	position: absolute;
	bottom: 20px;
	right: 0;
	width: 75%;
	height: 1px;
	margin: auto;
	background-color: #F69329;
}

.dashboard_clients .general_title h2 {
	text-align: left;
    font-size: 50px;
    line-height: 55px;
    background-color: #000;
    position: relative;
    z-index: 1;
    padding-right: 15px;
}

.dashboard_clients .general_title h2 span {
	font-size: 35px;
	line-height: 40px;
}

.dashboard_clients .client_box {
	padding: 20px 20px;
}

.dashboard_clients .client_box_image {
	width: 100px;
	height: 100px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin: auto;
	position: relative;
}

.dashboard_clients .dashboard_clients_outer {
	background-color: #fff;
    margin-top: 15px;
    border-radius: 25px;
    overflow: hidden;
}

.dashboard_clients .dashboard_clients_inner {	
	width: 100%;
	overflow: hidden;
}

.dashboard_clients .dashboard_clients_flex {
	display: flex;
	align-items: center;
} 

.dashboard_clients .dashboard_clients_flex .col_services {
	flex-shrink: 0;
}

.dashboard_works {
	position: relative;
}

.dashboard_work_col {
	z-index: 1;
}

.dashboard_works .dashboard_work_title {
	padding: 30px 50px 100px 50px;
	position: relative;
	z-index: 1;
	color: #000;
}

.dashboard_works .dashboard_work_title .primary_description {
	color: #fff;
}

.dashboard_works .dashboard_work_title .secondary_title {
	margin-top: 5px;
	margin-bottom: 10px;
	font-size: 35px;
	line-height: 40px;
}

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

.dashboard_works .dashboard_works_background {
	position: absolute;
	top: 0;
	left: 0;
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
	border-radius: 0 0 100px 0;
}

.work_box {
	padding: 30px;
	background: #FBBF06;
	background: -webkit-linear-gradient(0deg, rgba(251, 191, 6, 1) 0%, rgba(251, 191, 6, 0) 40%, rgba(251, 191, 6, 0) 100%);
	background: -moz-linear-gradient(0deg, rgba(251, 191, 6, 1) 0%, rgba(251, 191, 6, 0) 40%, rgba(251, 191, 6, 0) 100%);
	background: linear-gradient(0deg, rgba(251, 191, 6, 1) 0%, rgba(251, 191, 6, 0) 40%, rgba(251, 191, 6, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FBBF06", endColorstr="#FBBF0600", GradientType=0);
	border: 1px solid #fff;
	margin-bottom: 30px;
}

.work_box .work_box_logo {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 80%;
	margin: auto auto 15px auto;
	position: relative;
}

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

.work_box .work_box_image {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
}

.dashboard_credentials {
	padding-top: 80px;
	padding-bottom: 80px;
}

.dashboard_credentials .dashboard_credentials_inner {
	margin-top: 30px;
	width: 100%;
	overflow: hidden;
}

.dashboard_credentials .dashboard_credentials_flex {
	display: flex;
	align-items: center;
} 

.dashboard_credentials .dashboard_credentials_flex .col_credentials {
	flex-shrink: 0;
}

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

.dashboard_ourwork_box {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0,0,0,0.75);
	transition: transform 0.3s ease, opacity 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	width: 100%;
	position: relative;
}

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

.dashboard_ourwork_box .dashboard_ourwork_logo {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 100%;
	margin: auto auto;
}

.dashboard_ourwork_box .secondary_description {
	color: #000;
	padding: 0 15px 15px 15px;
	text-align: center;
}

.ourwork_carousel .owl-stage {
	display: flex;
	align-items: stretch;
	padding-top: 50px;
	padding-bottom: 50px;
}

.ourwork_carousel .owl-item {
	display: flex;
	align-items: stretch;
	justify-content: center;
	opacity: 0.95;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.ourwork_carousel .owl-item.center {
	transform: scale(1.3); /* ← center item is larger */
	z-index: 4;
	opacity: 1;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ourwork_carousel .owl-item.active.prev_center, .ourwork_carousel .owl-item.active.next_center {
	transform: scale(1.15);
	opacity: 1;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	z-index: 3;
}

.ourwork_carousel .owl-item.active.prev_center .dashboard_ourwork_box::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 70%;
	height: 100%;
	background: linear-gradient(to left, rgba(0,0,0,1), transparent);
	pointer-events: none; /* allows clicks to pass through */
}

.ourwork_carousel .owl-item.active.prev2_center .dashboard_ourwork_box::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 70%;
	height: 100%;
	background: linear-gradient(to left, rgba(0,0,0,1), transparent);
	pointer-events: none; /* allows clicks to pass through */
}

.ourwork_carousel .owl-item.active.next_center .dashboard_ourwork_box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 70%;
	height: 100%;
	background: linear-gradient(to right, rgba(0,0,0,1), transparent);
	z-index: 5;
	pointer-events: none; /* allows clicks to pass through */
}

.ourwork_carousel .owl-item.active.next2_center .dashboard_ourwork_box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(0,0,0,1), transparent);
	z-index: 5;
	pointer-events: none; /* allows clicks to pass through */
}

.credential_box {
	padding: 15px 15px;
    background-color: #fff;
    border-radius: 25px;
}

.credential_box .client_box_image {
	width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: auto;
    position: relative;
}

.about_banner {
	padding-top: 50px;
	padding-bottom: 50px;
	text-align: center;
}

.about_banner img {
	margin-top: 30px;
	margin-bottom: 50px;
}

.about_banner .about_banner_top .primary_title {
	margin-bottom: 15px;
}

.about_banner .about_banner_bottom .secondary_title {
	font-size: 40px;
	line-height: 100px;
	margin-bottom: 25px;
}

/*.about_vision.dashboard_vision .dashboard_vision_title {
	justify-content: flex-start;
}

.about_vision.dashboard_vision .dashboard_vision_title_background {
	left: 0;
}*/

.about_vision.dashboard_vision .dashboard_vision_description_background {
	border-radius: 0 0 75px 0;
}

.about_vision.dashboard_vision .dashboard_vision_description {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.about_vision.dashboard_vision .dashboard_vision_description_outer {
	margin-top: 0;
	z-index: 3;
}

.about_vision.dashboard_vision .dashboard_vision_description .dashboard_vision_description_inner {
	padding: 30px 0px 30px 50px;
}

.about_vision.dashboard_vision .dashboard_vision_title .dashboard_vision_title_inner {
	padding: 80px 0px 60px 200px;
}

.about_vision.dashboard_vision .dashboard_vision_title_background {
	border-radius: 0 0 0 100px;
	background-color: transparent;
	border: 2px solid #F69329;
	border-right: 0;
}

.about_vision .dashboard_vision_title_outer {
	margin-top: -50px;
}

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

.about_core .general_title {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: -25px;
}

.about_core .general_title .secondary_title {
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
	padding: 10px 35px;
    border-radius: 50px;
}

.about_core .about_core_inner {
	background-color: #fff;
	border-radius: 15px;
	padding: 30px 0;
}

.about_core .about_core_box {
	padding: 30px 30px;
}

.about_core_box .about_core_image {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: relative;
	width: 150px;
	height: 150px;
	margin: auto;
	transition: transform .3s;
}

.about_core_box:hover .about_core_image {
	transform: scale(1.3);
}

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

.about_team .general_title {
	margin-bottom: 30px;
}

.about_team .about_team_inner {	
	width: 100%;
	overflow: hidden;
}

.about_team .about_team_flex {
	display: flex;
	align-items: center;
} 

.about_team .about_team_flex .col_teams {
	flex-shrink: 0;
}

.about_team .about_team_flex .col_teams {
	flex-shrink: 0;
}

.about_team_image {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	position: relative;
	/*width: 400px;*/
	/*height: 225px;*/
	margin: auto;
	height: 225px;
	width: auto;
}

.about_team_image img {
	max-height: 100%;
}

.about_roadmap {
	padding-top: 50px;
	padding-bottom: 100px;
	overflow: hidden;
}

.about_roadmap .about_roadmap_outer {
	position: relative;
  	overflow: hidden;
}


.about_roadmap .about_roadmap_inner {
	display: flex;
	width: max-content;
	margin-top: 50px;
}
.about_roadmap_box {
	padding: 0 50px;
}

.about_roadmap_box .about_roadmap_title {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.about_roadmap_box .about_roadmap_title .primary_title {
	margin-left: 5px;
	color: #FBBF06;
	line-height: 40px;
}

.about_roadmap_box .about_roadmap_dot {
	width: 15px;
    height: 15px;
    border: 1px solid #F69329;
    border-radius: 50%;
    margin: 50px auto;
}

.about_roadmap_box.active .about_roadmap_dot {
    background-color: #F69329;
}

.about_roadmap_box .about_roadmap_description {
	width: 300px;
}

.about_roadmap .about_roadmap_progress {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	overflow: hidden;
}

.about_roadmap .about_roadmap_progress .about_roadmap_bar {
	display: block;
	height: 100%;
	width: 0;
	background: #FFF;
}

.coming_soon {
	padding-top: 250px;
	padding-bottom: 250px;
}

.coming_soon .primary_description {
	margin-top: 50px;
}

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

.layer_crousel {
	width: 100%;
	max-width: 400px;
	position: relative;
	height: 260px;
	cursor: grab;
}

.carousel_container {
	position: relative;
	width: 100%;
	height: 100%;
}

.layered_item {
	position: absolute;
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease, opacity 0.5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card_layer {
	width: 100%;
	height: 100%;
}

.layer_carousel {
	padding-right: 120px;
}

.project_event.card_layer {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
	border-radius: 25px;
	border: 1px solid #fff;
	overflow: hidden;
	display: block;
	color: #fff;
	box-shadow: 0px 0px 10px 3px rgba(246,147,41,0.75);
	-webkit-box-shadow: 0px 0px 10px 3px rgba(246,147,41,0.75);
	-moz-box-shadow: 0px 0px 10px 3px rgba(246,147,41,0.75);
}

.project_event .project_banner_item {
	display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 100%;
}

.project_event .project_banner_item_content {
	padding: 0;
	text-align: center;
	width: 100%;
}

.project_event .project_banner_item_logo {
	width: 100%;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-bottom: 15px;
    position: relative;
}

.project_event .project_banner_item_content .secondary_description {
	background: #000;
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FBBF06", endColorstr="#FBBF0600", GradientType=0);
    padding: 30px 15px 15px 15px;
}

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

.project_banner_title .project_banner_title_cloud {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
    z-index: 1;
}

.project_banner_title .project_banner_title_cloud .project_banner_title_cloud_inner {
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	background-image: url('/assets/img/icon-cloud.png');
	padding: 10px 40px 10px 50px;
}

.project_banner_title .project_banner_title_cloud .project_banner_title_cloud_inner span {
	display: block;
	color: #000;
}

.project_banner_title .project_banner_description {
	display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 50px;
    background: #F69329;
    background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
    padding: 90px 25px 50px 25px;
    border-radius: 25px;
    margin-top: -50px;
    color: #000;
}

.project_banner_title .project_banner_description .secondary_description {
    background: #F69329;
    background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
    position: relative;
    border-radius: 20px;
    padding: 100px 20px 50px 20px;
    margin-top: -50px;
}

.project_banner, .project_content {
	padding-top: 50px;
	padding-bottom: 50px;
}

.project_content .third_title span {
	display: block;
	margin-top: 5px;
}

.project_content_filter {
	display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.project_content_filter .project_content_filter_content {
	border-top: 2px solid #F69329;
    border-bottom: 2px solid #F69329;
    padding: 5px 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project_content_filter .project_content_filter_content a {
	display: block;
    padding: 0 10px;
    color: #fff;
    cursor: pointer;
}

.project_content_filter .project_content_filter_content select {
	background-color: transparent;
    border: 0;
    color: #fff;
    margin-left: 30px;
    cursor: pointer;
}

.project_content_filter .project_content_filter_content a:hover, .project_content_filter .project_content_filter_content select:hover {
	color: #F69329;
}

.project_dropdown .desktop_dropdown_content {
	width: 400px;
	left: 0;
	right: 0;
	margin: auto;
}

.project_dropdown .desktop_dropdown_content .secondary_description {
	color: #000;
	padding-top: 5px;
	padding-bottom: 5px;
}

.project_dropdown .desktop_dropdown_content .secondary_description.active {
	color: #F69329;
}

.project_content_data .project_event .project_banner_item_content {
	padding: 150px 0px 0px 0px;
	width: 100%;
}

.project_content_data .project_event .project_banner_item_logo {
	height: 75px;
}

.project_event:hover .project_banner_item_content .secondary_description {
	background: #000;
    background: -webkit-linear-gradient(0deg, rgba(251, 191, 6, 1) 0%, rgba(251, 191, 6, 0.5) 40%, rgba(0, 0, 0, 0.85) 70%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(0deg, rgba(251, 191, 6, 1) 0%, rgba(251, 191, 6, 0.5) 40%, rgba(0, 0, 0, 0.85) 70%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(251, 191, 6, 1) 0%, rgba(251, 191, 6, 0.5) 40%, rgba(0, 0, 0, 0.85) 70%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FBBF06", endColorstr="#FBBF0600", GradientType=0);
}

.project_content_data {
	margin-top: 50px;
}

.project_content .project_content_col {
	margin-bottom: 30px;
	margin-top: 30px;
}

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

.sustainability_banner_title {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: -200px;
	margin-bottom: 25px;
}

.sustainability_banner_title .highlight_color {
	margin-left: 15px;
	font-size: 65px;
	line-height: 70px;
}

.sustainability_banner_title[attr-id="2"] {
	padding-left: 300px;
}

.sustainability_banner_content {
	padding-top: 150px;
	padding-bottom: 150px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}

.sustainability_banner_content:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	background: #000;
	background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 1) 100%);
	background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 1) 100%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

.sustainability_banner_content_inner {
	/*max-width: 750px;*/
	margin: auto;
	position: relative;
}

.sustainability_banner_content_inner .primary_description {
	text-align: center;
	max-width: 750px;
	margin: 50px auto 0 auto;
}

.sustainability_section1 {
	padding-top: 0px;
	padding-bottom: 50px;
}

.sustainability_section1 .general_title {
	margin-bottom: 30px;
}

.sustainability_section1 .general_title .primary_title {
	color: #fff;
}

.sustainability_section1_grid {
	/*column-count: 2;*/
  	/*column-gap: 30px;*/
  	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.sustainability_section1_grid .sustainability_section1_grid_item {
	background-color: rgba(255, 255, 255, 0.1);	
	padding: 25px;
	border-radius: 15px;
	margin-bottom: 30px;
	break-inside: avoid;
}

.sustainability_section1_grid .primary_description {
	margin-bottom: 25px;
}

.sustainability_section1_grid .secondary_description {
	border-left: 2px solid #000;
    padding: 5px 0 5px 10px;
    display: none;
}

.sustainability_section1_grid .sustainability_sdg_title {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 25px;
}

.sustainability_section1_grid_item:hover {
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
}

.sustainability_section1_grid_item:hover .primary_description {
	color: #000;
}

.sustainability_section1_grid_item:hover .primary_title {
	background-image: initial;
    color: #000;
}

.sustainability_section2 {
	background: #F69329;
	background: -webkit-linear-gradient(180deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(180deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(180deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
	padding-top: 50px;
	padding-bottom: 50px;
}

.sustainability_section2 .general_title {
	margin-bottom: 50px;
}

.sustainability_section2 .general_title .primary_title {
	color: #000;
	margin-left: -150px;
}

.sustainability_section2 .general_title .primary_title span {
	display: block;
	margin-left: 200px;
}

.sustainability_section2 .sustainability_section2_image {
	background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    margin: auto auto 15px auto;
}

.sustainability_section2 .sustainability_section2_item {
	cursor: pointer;
	margin-bottom: 30px;
}

.sustainability_section2 .sustainability_section2_item .secondary_description {
	text-align: center;
}

.sustainability_section2 .sustainability_section2_tooltip {
	background-color: #fff;
	border-radius: 10px;
	padding: 15px 15px;
	position: relative;
	display: none;
	box-shadow: 2px 1px 11px 3px rgba(0,0,0,0.25);
	-webkit-box-shadow: 2px 1px 11px 3px rgba(0,0,0,0.25);
	-moz-box-shadow: 2px 1px 11px 3px rgba(0,0,0,0.25);
}

.sustainability_section2 .sustainability_section2_tooltip_title {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 15px;
}

.sustainability_section2 .sustainability_section2_tooltip_title .sustainability_section2_image {
	margin: 0;
}

.sustainability_section2 .sustainability_section2_tooltip_title .secondary_description {
	color: #000;
	margin-left: 15px;
}

.sustainability_section2 .sustainability_section2_tooltip_item {
	background: #F28F29;
	background: -webkit-linear-gradient(0deg, rgba(242, 143, 41, 1) 0%, rgba(247, 187, 6, 1) 100%);
	background: -moz-linear-gradient(0deg, rgba(242, 143, 41, 1) 0%, rgba(247, 187, 6, 1) 100%);
	background: linear-gradient(0deg, rgba(242, 143, 41, 1) 0%, rgba(247, 187, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F28F29", endColorstr="#F7BB06", GradientType=0);
	padding: 15px;
	border-radius: 10px;
	color: #000;
	height: 100%;
}

.sustainability_section2 .sustainability_section2_tooltip_item ul {
	list-style: disc;
	padding-left: 20px;
}

.sustainability_section2 .sustainability_section2_tooltip_item .secondary_description b {
	margin-bottom: 15px;
	display: block;
}

.sustainability_section2 .tooltip_arrow {
	position: absolute;
	top: -16px;                 /* your original position */
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	overflow: hidden;
}

/*.sustainability_section2 .tooltip_arrow:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 2px;
	height: 5px;
}*/

.sustainability_section2 .tooltip_arrow[attr-id="0"]  {
	left: 12.5%;
}

.sustainability_section2 .tooltip_arrow[attr-id="1"]  {
	left: 37.5%;
}

.sustainability_section2 .tooltip_arrow[attr-id="2"]  {
	left: 62.5%;
}

.sustainability_section2 .tooltip_arrow[attr-id="3"]  {
	left: 87.5%;
}

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

.sustainability_section3 .general_title {
	margin-bottom: 50px;
}

.sustainability_section3 .general_title .secondary_title {
	color: #fff;
}

.sustainability_section3 .sustainability_section3_item {
	margin-bottom: 30px;
}

.sustainability_section3 .sustainability_section3_item .secondary_description {
	border-left: 2px solid #F69329;
	padding: 2px 0 2px 10px;
	margin-top: 10px;
	color: #fff;
}

.sustainability_section3 .sustainability_news {
	margin-top: 50px;
}

.sustainability_section3 .sustainability_news_box {
	display: flex;
    justify-content: center;
    align-items: flex-end;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.sustainability_section3 .sustainability_news_box .sustainability_news_box_inner {
	padding: 15px;
	background: #000;
	background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
	background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#0000001A", GradientType=0);
}

.sustainability_section3 .sustainability_news_box:hover .secondary_description {
	color: #F69329;
}

.page_project .project_back_button {
	margin-top: 15px;
}

.page_project .project_back_button .general_button {
	justify-content: flex-start;
}

.page_project .proejct_more_button {
	display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 50px;
}

.page_project .proejct_more_button .general_button:not(:first-child) {
	margin-left: 15px;
}

.page_project .page_project_title {
	margin-top: 50px;
	margin-bottom: 85px;
}

.page_project .page_project_flex {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 15px;
	text-align: center;
}

.page_project .page_project_flex a {
	display: block;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 25px;
	padding: 2px 35px;
	margin-left: 5px;
	margin-right: 5px;
}

.page_project .page_project_flex a:hover {
	color: #F69329;
	border-color: #F69329;
}

.page_project_content {
	background-color: #fff;
	padding-top: 150px;
	padding-bottom: 50px;
}

.page_project_header {
	margin-bottom: -100px;
    z-index: 1;
    position: relative;
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
	border-radius: 0 50px 0 50px;
	padding: 5px;
	box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.75);
	-webkit-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.75);
}

.page_project_header .page_project_header_inner {
	padding: 50px 0px;
	background-color: #fff;
	border-radius: 0 50px 0 50px;
}

.page_project_header .secondary_description {
	text-align: center;
	color: #000;
}

.page_project_header .secondary_description b {
	margin-bottom: 5px;
	display: block;
}

.page_project_content .general_editor {
	color: #000;
	padding-left: 100px;
	position: relative;
}

.page_project_content .general_editor .page_project_social {
	position: absolute;
	top: 0;
	left: 25px;
}

.page_project_content .general_editor .page_project_social a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid #000;
	color: #000;
	font-size: 15px;
	margin-bottom: 8px;
}

.page_credential_title {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 50px;
	padding-bottom: 50px;
}

.page_credential_title:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 1px;
	background-color: #F69329;
}

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

.page_credential_title .primary_title {
	position: relative;
	z-index: 1;
	background-color: #000;
	padding: 0 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.page_credential_title .no_fill {
	color: transparent;
	-webkit-text-stroke: 1.5px #F69329; /* gold outline */
	text-stroke: 1.5px #F69329; /* fallback for other engines */
}

.page_credential_title .filled {
	padding-top: 50px;
}

.page_credential .dashboard_credentials {
	padding-top: 15px;
	padding-bottom: 15px;
	margin-top: 30px;
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
}

.page_credential .dashboard_credentials:before {
	content: '';
    position: absolute;
    top: 15px;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100% - 30px);
    background: #F69329;
    background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
    transform: rotate(-1deg);
}

.page_credential .dashboard_credentials .dashboard_credentials_inner {
	margin-top: 0;
	background-color: #fff;
	position: relative;
	z-index: 1;
}

.page_credential .dashboard_credentials .credential_box {
	background-color: transparent;
}

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

.credential_video .credential_video_col {
	margin-bottom: 30px;
}

.credential_video .credential_video_inner {
	height: 100%;
    background-color: #fff;
    border-radius: 15px;
    border: 1px solid #F69329;
    box-shadow: 0px 0px 15px 3px rgba(246, 147, 41, 0.75);
    -webkit-box-shadow: 0px 0px 15px 3px rgba(246, 147, 41, 0.75);
    -moz-box-shadow: 0px 0px 15px 3px rgba(246,147,41,0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.credential_video .credential_video_logo {
	width: 200px;
	height: 100px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin: auto;
}

.credential_video .primary_description {
	font-weight: bold;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 15px;
}

.credential_video ul {
	list-style: disc;
    color: #000;
    padding-left: 40px;
}

.credential_video .credential_video_title {
	margin-bottom: 30px;
}

.credential_video .credential_box_frame {
	border-radius: 15px;
	overflow: hidden;
	width: 100%;
}

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

.credential_video .credential_box_bg {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 100%;
}

.page_credential .about_team_inner:not(:first-child) {
	margin-top: 15px;
}

.page_credential .services_col {
	-ms-flex: 0 0 calc(100% / 7);
    -webkit-box-flex: 0;
    flex: 0 0 calc(100% / 7);
    max-width: calc(100% / 7);
}

.page_credential .services_box {
	background: transparent;
}

.page_credential .services_box .services_box_border {
	background: transparent;
}

.page_credential .services_box .services_box_border .services_box_inner {
	border-radius: 50%;
	height: 120px;
	width: 120px;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
}

.page_credential .services_box .services_box_border .services_box_inner .services_box_image {
	width: 95px;
	height: 95px;
}

.as_seen .as_seen_inner[attr-id="1"] {
	background: #F69329;
    background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
    padding: 1px;
    color: #000;
    border-radius: 25px;
    margin-top: 15px;
}

.as_seen .as_seen_inner[attr-id="2"] {
	background-color: #000;
    padding: 2px;
    border-radius: 25px;
}

.as_seen .as_seen_inner[attr-id="3"] {
	background-color: #fff;
    border-radius: 25px;
    padding: 30px 30px 0 30px;
}

.as_seen .as_seen_inner .as_seen_col {
	margin-bottom: 30px;
	/*-ms-flex: 0 0 calc(100% / 8);
    -webkit-box-flex: 0;
    flex: 0 0 calc(100% / 8);
    max-width: calc(100% / 8);*/
}

.as_seen .as_seen_inner .as_seen_col {
	flex: 0 0 calc(100% / 8);
	max-width: calc(100% / 8);
}

/* First 6 logos: force 6 per row using nth-child */
.as_seen .as_seen_inner .as_seen_col:nth-child(-n+6) {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}

.as_seen .as_seen_inner .as_seen_col:nth-child(-n+6) .as_seen_image {
	width: 125px;
}

.as_seen .as_seen_inner .as_seen_image {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 75px;
    height: 75px;
    margin: auto;
}

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

.trusted_by .trusted_by_box {
	background-color: #fff;
	border-radius: 15px;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.trusted_by .trusted_by_box .trusted_by_image {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 100%;
	height: 100%;
	margin: auto;
}

.trusted_by .trusted_by_col {
	margin-top: 15px;
	margin-bottom: 15px;
}

.page_esg_policy {
	padding-bottom: 50px;
}

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

.page_esg_policy_lines .general_left_title {
	margin-top: -10px;
}

.page_esg_policy_lines .general_right_title:before, .page_esg_policy_lines .general_left_title:before {
	width: 25%;
}

.page_esg_policy_lines .general_right_title .general_title {
	justify-content: flex-start;
	margin-left: 30px;
}

.page_esg_policy_lines[attr-id="1"] .general_right_title .general_title h2 {
	color: transparent;
    -webkit-text-stroke: 1.5px #F69329;
    text-stroke: 1.5px #F69329;
}

.page_esg_policy_lines[attr-id="1"] .general_left_title .general_title h2 {
	line-height: 1;
}

.page_esg_policy_lines .general_left_title .general_title {
	justify-content: flex-end;
	margin-right: 30px;
	margin-top: 10px;
}

.page_esg_policy_content[attr-id="1"] {
	background: #F69329;
    background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
    padding: 30px 30px;
}

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

.page_esg_policy_content[attr-id="2"] .page_esg_policy_content_header {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative;
}

.page_esg_policy_content[attr-id="2"] .page_esg_policy_content_header:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	background: #000;
	background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
	background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
}

.page_esg_policy_content[attr-id="2"] .page_esg_policy_content_header .page_esg_policy_content_box {
	position: relative;
	z-index: 1;
}

.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines {
	padding-top: 0;
	padding-bottom: 15px;
}

.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title {
	display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 100px;
    position: relative;
}

/*.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="1"]:before {
	content: '';
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 85px;
	background-color: #F69329;
	height: 1px;
	position: absolute;
}*/

.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="2"] {
    padding-left: 200px;
}

.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="2"] h2 {
	color: #fff;
	text-align: right;
}

/*.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="2"]:before {
	content: '';
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 50%;
	background-color: #F69329;
	height: 1px;
	position: absolute;
}*/

.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .container {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
	position: relative;
	z-index: 2;
}

/* LEFT title with line */
.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="1"] {
	position: relative;
	padding-left: 30px;
}

.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="1"]::before {
	content: '';
	position: absolute;
	left: -9999px;
	right: 100%;
	top: 50%;
	height: 1px;
	background-color: #F69329;
	z-index: 1;
}

/* RIGHT title with line */
.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="2"] {
	position: relative;
	padding-right: 30px;
}

.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="2"]::after {
	content: '';
	position: absolute;
	left: 100%;
	right: -9999px;
	top: 50%;
	height: 1px;
	background-color: #F69329;
	z-index: 1;
}

.page_esg_policy_content[attr-id="2"] .page_esg_policy_inner {
	width: 50%;
    margin-right: 0;
    margin-left: auto;
    text-align: left;
}

.page_esg_policy_content[attr-id="2"] .esg_policy_col {
	margin-bottom: 30px;
}

.page_esg_policy_content[attr-id="2"] .page_esg_policy_description {
	padding-top: 30px;
	padding-bottom: 20px;
}

.page_esg_policy_content[attr-id="2"] .esg_policy_box {
	height: 100%;
	background: #F69329;
    background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
    padding: 1px;
    border-radius: 25px;
}

.page_esg_policy_content[attr-id="2"] .esg_policy_box .esg_policy_box_inner {
	background-color: #000;
	padding: 30px 20px;
    border-radius: 25px;
    height: 100%;
}

.page_esg_policy_content[attr-id="2"] .esg_policy_box .esg_policy_box_inner .primary_description {
	font-weight: bold;
	text-align: center;
	margin-bottom: 15px;
}

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

.page_ungc .general_right_title:before, .page_ungc .general_left_title:before {
	width: 45%;
}

.page_ungc .general_right_title .general_title {
	justify-content: center;
	margin-left: -100px;
}

.page_ungc .general_left_title .general_title {
	justify-content: center;
	margin-left: 200px;
	margin-right: 0;
}

.page_ungc_header {
	padding-bottom: 50px;
}

.page_ungc_header .page_ungc_header_image {
	width: 125px;
    margin: auto;
}

.page_ungc_header .secondary_description {
	margin-top: 25px;
    margin-bottom: 25px;
    text-align: center;
}

.page_ungc_header .page_ungc_header_button {
	display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: auto;
}

.page_ungc_header .page_ungc_header_button .general_button {
	width: calc(50% - 15px);
}

.page_ungc_header .page_ungc_header_button .general_button a {
	width: 100%;
	text-align: center;
}

.page_ungc_header .page_ungc_header_button .general_button[attr-id="1"] a {
    color: #fff;
    border: 1px solid #F69329;
    background: transparent;
}

.page_ungc_header .page_ungc_header_button .general_button[attr-id="1"] a:hover {
	background: #F69329;
    background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
    color: #000;
}

.page_ungc_header .page_ungc_header_button .general_button[attr-id="2"] a {
	background: #F69329;
    background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
    color: #000;
}

.page_ungc_header .page_ungc_header_button .general_button[attr-id="2"] a:hover {
    color: #fff;
    border: 1px solid #F69329;
    background: transparent;
}

.page_ungc .page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="2"]:before {
	width: 40%;
}

.page_ungc .page_esg_policy_content[attr-id="2"] .page_esg_policy_inner {
	width: 90%;
    text-align: center;
    margin: 30px auto auto auto;
}

.page_ungc_principle {
	padding-top: 50px;
	padding-bottom: 20px;
}

.page_ungc_principle .page_ungc_principle_header {
	text-align: center;
	margin-bottom: 50px;
}

.page_ungc_principle .page_ungc_principle_header {
	text-align: center;
}

.page_ungc_principle .page_ungc_principle_title {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
	margin-bottom: 30px;
}

.page_ungc_principle .page_ungc_principle_title h2 {
	background: #F69329;
    background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
    padding: 2px 50px;
    border-radius: 25px;
    font-weight: bold;
}

.page_ungc_principle .ungc_principle_box {
	padding: 0 30px;
	text-align: center;
	margin-bottom: 30px;
}

.page_ungc_principle .ungc_principle_box .ungc_principle_image {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 75px;
	height: 75px;
	margin: auto;
}

.page_ungc_principle .ungc_principle_box .primary_description {
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 15px;
}

.page_ungc .page_esg_policy_content[attr-id="1"] .secondary_description {
	text-align: left;
}

.clientele_section1_box {
	background: #FFF;
	background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
	background: -moz-linear-gradient(0deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#FFFFFF", GradientType=0);
	text-align: center;
	padding: 35px 25px 45px 25px;
	position: relative;
	border: 1px solid rgba(255,255,255,.08);
	height: 100%;
}

.clientele_section1_box:before {
	content: '';
	position: absolute;
	right: -1px;
	top: -1px;
	width: 100%;
	height: 100%;
	background: #000;
	background: -webkit-linear-gradient(35deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	background: -moz-linear-gradient(35deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	background: linear-gradient(35deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
}

.clientele_section1_box:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 10px;
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
	border-color: #F69329;
	width: 100%;
}

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

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

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

.clientele_logo .owl-item.active {
    transform: scale(1.8);
    z-index: 4;
    opacity: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin-right: 90px!important;
}

.clientele_logo .owl-item.active.prev_center {
	transform: scale(1.2);
	margin-right: -15px!important;
	z-index: 3;
}

.clientele_logo .owl-item.active.next_center {
	transform: scale(1.2);
	margin-left: -105px!important;
	margin-right: -0!important;
	z-index: 3;
}

.clientele_logo .owl-item.active.prev2_center {
	transform: scale(1);
	margin-right: -35px!important;
	z-index: 2;
}

.clientele_logo .owl-item.active.next2_center {
	transform: scale(1);
	margin-left: -35px!important;
	margin-right: -0!important;
	z-index: 2;
}

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

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

.clientele_testimony {
	height: 500px;
	width: 100%;
	overflow: hidden;
	position: relative;
}

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

.clientele_testimony .clientele_testimony_flex {
	display: flex;
	align-items: center;
	height: 100%;
	width: 100%;
}

.clientele_testimony img {
	width: auto;
	height: 100%;
	display: inline-block;
	max-width: initial;
}

.general_lines_titles {
	position: relative;
}

.general_lines_titles:before {
	content: '';
	position: absolute;
	top: 33px;
	left: 0;
	width: 50%;
	background-color: #FFFFFF;
	height: 2px;
}

.general_lines_titles:after {
	content: '';
	position: absolute;
	bottom: 18px;
	right: 0;
	width: 50%;
	background-color: #F69329;
	height: 2px;
}

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

.general_lines_titles .primary_title {
	background-color: #000;
	padding: 0 30px;
	z-index: 1;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.general_lines_titles span:not(:first-child) {
	padding-top: 30px;
    padding-left: 15px;
}

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

.layer_carousel_buttons {
	display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.layer_carousel_buttons a {
	border: 1px solid #fff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: #fff;
}

.layer_carousel_buttons a[attr-id="1"] {
	padding: 0 3px 0 0;
}

.layer_carousel_buttons a[attr-id="2"] {
	padding: 0 0 0 3px;
}

.layer_carousel_buttons a:hover {
	color: #F69329;
	border-color: #F69329;
}

.clientele_section4 .layer_carousel {
	margin-top: 50px;
}

.clientele_section5 {
	padding-top: 250px;
	padding-bottom: 250px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	margin-bottom: 50px;
	margin-top: 50px;
}

.clientele_section5:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
	background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
}

.clientele_section5 .clientele_section5_inner {
	position: relative;
	z-index: 1;
}

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

.clientele_section5 a {
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
	border-color: #F69329;
	color: #fff;
	transition: initial;
	border-radius: 8px;
	text-transform: uppercase;
}

.clientele_section5 a:hover {
	background: transparent;
	color: #F69329;
}

.page_event_section1_inner {
	max-width: 700px;
	margin: auto;
}

.page_event_section1_inner .highlight_color {
	text-align: right;
}

.page_event_section1_inner .secondary_description {
	margin-top: 30px;
	margin-bottom: 50px;
	text-align: center;
}

.page_event_section2 {
	overflow-x: hidden;
}

.page_event_section2 .event_type_box {
	position: relative;
	padding-left: 150px;
}

.page_event_section2 .event_type_box:nth-child(even) {
	padding-left: 0px;
	padding-right: 150px;
}

.page_event_section2 .event_type_background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.page_event_section2 .event_type_box:before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 60%;
	height: 100%;
	background: inherit;        /* same color as parent */
	transform: skewX(-12deg);   /* slant */
	background-color: #fff;
	z-index: 1;
}

.page_event_section2 .event_type_box:nth-child(even):before {
	content: '';
	position: absolute;
	top: 0;
	left: -10%;
	width: 60%;
	height: 100%;
	background: inherit;        /* same color as parent */
	transform: skewX(-12deg);   /* slant */
	background-color: #fff;
	z-index: 1;
}

.page_event_section2 .primary_title {
	margin-bottom: 20px;
}

.page_event_section2 .event_type_box_content {
	padding-top: 100px;
	padding-bottom: 100px;
	z-index: 2;
	position: relative;
	color: #000;
}

.page_event_section2 .event_type_box_content a {
	color: #F69329;
}

.page_event_section2 .general_button {
	justify-content: flex-start;
	margin-top: 20px;
}

.page_event_section2 .general_button a {
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
	border-color: #F69329;
	color: #fff;
	transition: initial;
	border-radius: 8px;
	height: 30px;
}

.page_event_section2 .general_button a:hover {
	background: transparent;
	color: #F69329;
	text-decoration: initial;
}

.page_event_section2 .event_type_box:nth-child(even) .row {
	flex-direction: row-reverse;
}

.page_event_section2 .event_type_box:hover:before {
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
}

.page_event_section2 .event_type_box:hover .highlight_color {
	background-image: initial;
    color: #fff;
}

.page_event_section2 .event_type_box:hover a {
    color: #fff;
}

.page_event_section2 .event_type_box:hover .general_button a {
	background: #000;
	color: #F69329;
}

.page_event_section2 .event_type_box:hover .general_button a:hover {
	background: transparent;
	border-color: #000;
	color: #000;
}

.page_event_section3.page_esg_policy_content[attr-id="2"] .page_esg_policy_inner {
	margin-top: 30px;
	margin-left: 0;
	margin-right: auto;
	margin-bottom: 5px;
}

.page_event_section3.page_esg_policy_content[attr-id="2"] .page_esg_policy_inner .general_button a {
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
	border-color: #F69329;
	color: #fff;
	transition: initial;
	border-radius: 25px;
	height: 30px;
}

.page_event_section3.page_esg_policy_content[attr-id="2"] .page_esg_policy_inner .general_button a:hover {
	background: transparent;
	color: #F69329;
	text-decoration: initial;
}

.page_event_section3 .page_esg_policy_inner[attr-id="2"] {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.page_event_section3 .page_esg_policy_inner[attr-id="2"] .secondary_description {
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
	padding: 2px 15px;
	border-radius: 15px;
}

.page_event_section3.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="1"] .secondary_title {
	color: #fff;
}

.page_event_section3.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="2"] h2 {
	color: #F69329;
}

.page_event_section3 .page_esg_policy_content_box .about_roadmap_box_inner {
	width: 300px;
}

.page_event_section3 .page_esg_policy_content_box .about_roadmap_box .about_roadmap_description {
	width: 100%;
}

.page_esg_policy_content_box .about_roadmap .about_roadmap_inner {
	margin-left: -25px;
	margin-right: -25px;
}

.page_esg_policy_content_box .about_roadmap_box {
	padding-left: 25px;
	padding-right: 25px;
}

.page_esg_policy_content_box .about_roadmap_box_inner {
	background-color: #fff;
	padding: 25px 25px;
	height: 100%;
}

.page_esg_policy_content_box .about_roadmap_icon {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 50px;
	height: 50px;
	margin: auto;
}

.page_esg_policy_content_box .about_roadmap_box .about_roadmap_title .secondary_title {
	margin-top: 15px;
	margin-bottom: 15px;
}

.page_esg_policy_content_box .about_roadmap_box .about_roadmap_description {
	width: 250px;
}

.page_esg_policy_content_box .about_roadmap_box .about_roadmap_description .secondary_description {
	color: #000;
}

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

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

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

.page_event_section4_title .primary_description {
	margin-top: 10px;
}

.event_highlight {
	display: block;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	color: #fff!important;
	border-radius: 15px;
	padding: 25px 15px 350px 15px;
	overflow: hidden;
	position: relative;
}

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

.event_highlight > .secondary_description {
	text-align: center;
	margin-top: 15px;
	position: relative;
	z-index: 1;
}

.event_highlight .event_highlight_category {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
}

.event_highlight .event_highlight_category .secondary_title {
	border: 1px solid #fff;
	border-radius: 25px;
	padding: 5px 15px;
}

.event_highlight:hover {
	box-shadow: 0px 0px 10px 3px rgba(246,147,41,0.75);
	-webkit-box-shadow: 0px 0px 10px 3px rgba(246,147,41,0.75);
	-moz-box-shadow: 0px 0px 10px 3px rgba(246,147,41,0.75);
}

.event_highlight:hover .event_highlight_category .secondary_title {
	border-color: transparent;
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
}

.event_carousel {
	padding-top: 30px;
	padding-bottom: 30px;
}

.event_carousel .center .event_carousel_box {
	transform: scale(1.1);
}

.event_carousel .event_carousel_box {
	padding-top: 30px;
	padding-bottom: 30px;
	transition: transform .2s;
}

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

.page_event_section4 .general_button a, .page_event_section5 .general_button a {
	background-color: #fff;
	border-color: #fff;
	color: #000;
}

.page_event_section4 .general_button a:hover, .page_event_section5 .general_button a:hover {
	background-color: #000;
	color: #fff;
}

.page_event_section5 {
	position: relative;
	overflow: hidden;
	padding-top: 50px;
	padding-bottom: 50px;
}

.page_event_section5.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="1"]::before {
	background-color: #fff;
}

.page_event_section5.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="1"] .primary_title {
	color: #fff;
}

.page_event_section5.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="2"]::after {
	background-color: #000;
}

.page_event_section5.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="2"] .primary_title {
	color: #000;
}

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

.page_event_section5.page_esg_policy_content[attr-id="2"] .page_esg_policy_content_header {
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
	z-index: 1;
	position: relative;
	padding-top: 15px;
	padding-bottom: 15px;
}

.page_event_section5.page_esg_policy_content[attr-id="2"]:before {
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    /*transform: rotate(-0.7deg);*/
    /*clip-path: polygon(0% 0%, 100% 20%, 100% 100%, 0 80%);*/
    clip-path: polygon(0% 20%, 100% 0%, 100% 80%, 0% 100%);
    -webkit-clip-path: polygon(0% 20%, 100% 0%, 100% 80%, 0% 100%);
}

.page_event_section5.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .container {
	justify-content: center;
}

.page_event_section5.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="1"] {
	padding-right: 300px;
}

.page_event_section5.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .container {
	justify-content: center;
}

.page_event_section5.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="2"] {
	padding-left: 500px;
}

.page_event_section6 {
	padding-top: 70px;
	padding-bottom: 50px;
}

.page_event_section6 .page_event_section6_inner {
	position: relative;
}

.page_event_section6 .page_event_section6_inner:before {
	content: '';
	position: absolute;
	top: 23px;
	width: 50%;
	right: 0;
	background-color: #F69329;
	height: 2px;
}

.page_event_section6 .page_event_section6_inner:after {
	content: '';
	position: absolute;
	bottom: 22px;
	width: 50%;
	left: 0;
	background-color: #F69329;
	height: 2px;
}

.page_event_section6 .page_event_section6_title {
	max-width: 700px;
	margin: auto;
}

.page_event_section6 .page_event_section6_line {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

.page_event_section6 .page_event_section6_line:nth-child(even) {
	justify-content: flex-end;
}

.page_event_section6 .page_event_section6_line img {
	width: 25px;
    margin-top: -15px;
}

.page_event_section6 .page_event_section6_line .secondary_title {
	background-color: #000;
	padding-left: 15px;
	padding-right: 15px;
	position: relative;
	z-index: 1;
}

.page_conference .sustainability_banner_content:before {
	background: rgba(0, 0, 0, 0.75);
}

.page_conference .sustainability_banner_title {
	margin-left: 0;
}

.page_conference .sustainability_section1_grid {
	grid-template-columns: repeat(3, 1fr);
	margin-top: -25px;
	z-index: 1;
	position: relative;
}

.page_conference .sustainability_section1_grid_item {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 8px;
	background-color: rgba(0, 0, 0, 0.75);
}

.page_conference .sustainability_section1_grid_item:hover {
	background-color: rgba(246, 147, 41, 0.85);
}

.page_conference .sustainability_section1_grid_item:hover .primary_description {
	color: #fff;
}

.page_conference .sustainability_section1_grid .secondary_description {
	border-color: #fff;
}

.page_conference .sustainability_banner_content .primary_description span {
	color: #F69329;
}

.page_conference_section1 {
	background-color: #fff;
	padding-bottom: 30px;
}

.page_conference_section1 .page_conference_section1_inner {
	text-align: center;
	margin-top: 30px;
	margin-bottom: 15px;
}

.page_conference_section1 .general_button a {
	background-color: #000;
	color: #fff;
	border-color: #000;
}

.page_conference_section1 .general_button a:hover {
	background-color: #ffffff;
	color: #000;
}

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

.page_conference_section2_title {
	position: relative;
}

/*.page_conference_section2_title:before {
	content: '';
	position: absolute;
	top: 27px;
	width: 75%;
	right: 0;
	background-color: #F69329;
	height: 2px;
}*/

.conference_section2_title {
	display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.conference_section2_title .conference_section2_title_inner {
	display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    background-color: #000;
    padding-right: 15px;
    position: relative;
}

.conference_section2_title .conference_section2_title_inner:before {
	content: '';
    position: absolute;
    right: -9999px;
    top: 27px;
    left: 100%;
    height: 1px;
    background-color: #F69329;
    z-index: 1;
}

.conference_section2_title .conference_section2_title_inner .primary_title {
	margin-left: 7px;
    margin-bottom: -4px;
}

.page_conference_section2_item {
	margin-top: 50px;
}

.conference_section2_box {
	background-color: #fff;
	border-radius: 25px;
	overflow: hidden;
	color: #000;
	/*height: 100%;*/
} 

.conference_section2_box .conference_section2_header {
	background-color: #E1E1E1;
	border-radius: 25px;
    padding: 15px 0;
    text-align: center;
}

.conference_section2_box .conference_section2_content {
	padding: 25px 25px 5px 25px;
	display: none;
}

.conference_section2_each {
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: stretch;
	margin-bottom: 20px;
}

.conference_section2_each .conference_section2_image {
	width: 35px;
}

.conference_section2_each .conference_section2_image .conference_section2_child {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center top;
	height: 100%;
	width: 100%;
}

.conference_section2_each .conference_section2_image .conference_section2_child[attr-id="2"] {
	display: none;
}

.conference_section2_each .conference_section2_writes {
	width: calc(100% - 35px);
	padding-left: 15px;
}

.conference_section2_box:hover {
	background-color: #F69329;
	color: #F69329;
}

.conference_section2_box:hover .conference_section2_header {
	background-color: #fff;
}

.conference_section2_box:hover .conference_section2_each .conference_section2_image .conference_section2_child[attr-id="1"] {
	display: none;
}

.conference_section2_box:hover .conference_section2_each .conference_section2_image .conference_section2_child[attr-id="2"] {
	display: block;
}

.conference_section2_box:hover .conference_section2_writes .secondary_description {
	color: #ffffff;
	background-image: initial;
}

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

.page_conference_section3 .conference_section2_each {
	justify-content: center;
}

.page_conference_section3 .secondary_title {
	margin-bottom: 10px;
}

.page_conference_section3 .conference_section2_content {
	margin-top: 25px;
}

.page_conference_section3 .conference_section2_image .conference_section2_child {
	background-position: center center;
}

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

.page_conference_section3 a, .page_conference_section4 a, .page_conference_section5 a, .page_conference_section6 a, .coming_soon a {
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
	border-color: #F69329;
	color: #fff;
	transition: initial;
}

.page_conference_section3 a:hover, .page_conference_section4 a:hover, .page_conference_section5 a:hover, .page_conference_section6 a:hover, .coming_soon a:hover {
	background: transparent;
	color: #F69329;
}

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

.page_conference_section4 .conference_section2_content {
	padding-top: 40px;
	padding-bottom: 20px;
}

.page_conference_section4 .page_conference_section3_title {
	max-width: 700px;
	margin: auto;
	text-align: center;
}

.page_conference_section4 .page_conference_section3_title .secondary_description {
	margin-top: 15px;
}

.page_conference_section4 .conference_section2_each {
	display: block;
}

.page_conference_section4 .conference_section2_image {
	width: 100%;
	height: 50px;
}

.page_conference_section4 .conference_section2_image .conference_section2_child {
	background-position: left center;
}

.page_conference_section4 .conference_section2_writes {
	padding-left: 0;
	width: 100%;
}

.page_conference_section4 .conference_section2_writes .highlight_color {
	margin-top: 15px;
	margin-bottom: 15px;
}

.conference_project_box {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-top: 250px;
	padding-bottom: 150px;
	position: relative;
}

.conference_project_box .conference_project_box_inner {
	position: relative;
	z-index: 1;
	max-width: 700px;
	padding-bottom: 150px;
}

.conference_project_box:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #000;
	background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.8) 100%);
	background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.8) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.8) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
}

.conference_project_box .general_button {
	margin-top: 150px;
	justify-content: flex-start;
}

.page_conference_section5 {
	position: relative;
}

.page_conference_section5 .project_information {
	position: absolute;
	top: 120px;
	width: 100%;
	z-index: 1;
}

.page_conference_section5 .project_information .project_information_inner {
	max-width: 700px;
}

.page_conference_section5 .project_information .project_information_inner .general_button {
	justify-content: flex-start;
	padding-top: 200px;
}

.general_carousel .owl-dots, .secondary_carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 40px;
    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: #F69329;
}

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

.page_conference_section6 .page_conference_section3_title {
	text-align: center;
}

.page_conference_section6 .page_conference_section6_image {
	background-repeat: no-repeat;	
	background-size: contain;
	background-position: center;
	border-radius: 50%;
}

.page_conference_section6 .page_conference_section6_logos {
	margin-top: 30px;
}

.testimony_carousel .owl-dots {
	bottom: -25px;
}

.testimony_carousel .owl-item.center .testimony_carousel_box {
	opacity: 1;
	transform: scale(1.15);
}

.testimony_carousel .owl-item .testimony_carousel_box {
	opacity: 0.7;
	transform: scale(0.85);
}

.testimony_carousel .testimony_carousel_box {
	border-radius: 10px;
	overflow: hidden;
	padding-top: 30px;
	padding-bottom: 30px;
}

.page_conference_section6 .testimony_carousel {
	margin-top: 50px;
	margin-bottom: 80px;
}

.page_services_section1_inner {
	position: relative;
	background: #000;
	background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.91) 0%, rgba(0, 0, 0, 0.2) 70%);
	background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.91) 0%, rgba(0, 0, 0, 0.2) 70%);
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.91) 0%, rgba(0, 0, 0, 0.2) 70%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
	margin-top: 70px;
	margin-bottom: 70px;
	padding-top: 50px;
	padding-bottom: 50px;
	display: block;
	border: 3px solid transparent;
	margin-left: -25px;
    width: calc(100% + 50px);
	transform: rotate(3deg);
	/*clip-path: polygon(0% -20%, 100% 20%, 100% 120%, 0 80%);*/
	position: relative;
	overflow: hidden;
}

.page_services_section1_inner:hover {
	box-shadow: 0px 0px 15px 5px rgba(246,147,41,0.75);
	-webkit-box-shadow: 0px 0px 15px 5px rgba(246,147,41,0.75);
	-moz-box-shadow: 0px 0px 15px rgba(246,147,41,0.75);
	border-color: #F69329;
}

.page_services_section1_inner .page_services_section1_background {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	top: -25%;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 150%;
	transform: rotate(-3deg);
}

.page_services_section1_inner .page_services_section1_content {
	position: relative;
	z-index: 1;
	transform: rotate(-3deg);
}

.page_services_section1_inner .page_services_section1_content .primary_title {
	margin-bottom: 30px;
}

.page_services_section1_inner .page_services_section1_content .secondary_description {
	color: #fff;
	margin-bottom: 30px;
}

.page_services_section1 .general_button {
	justify-content: flex-start;
	margin-top: 0;
    margin-top: 15px;
}

.page_services_section1 .general_button a {
	border: 0;
    color: #fff;
    padding: 0;
    font-weight: bold;
}

.page_services_section1 .general_button a:hover {
	text-decoration: underline;
}

.contact_content_title {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 50px;
}

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

.contact_content_title .highlight_color {
	margin-left: 5px;
}

.contact_checkbox {
	border-radius: 15px;
	margin-top: 30px;
	margin-bottom: 40px;
	padding: 15px 30px 0 30px;
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
}

.contact_checkbox_item .form-checkbox {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 20px;
}

.contact_checkbox_item .form-checkbox .form-image {
	width: 15px;
	height: 15px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin-right: 10px;
}

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

.contact_content2_title, .contact_content2_title_inner, .contact_content3_title {
	display: flex;
    justify-content: flex-start;
    align-items: center;
}

.contact_content2_title_inner {
	position: relative;
	z-index: 1;
	background-color: #000;
	padding-right: 15px;
	text-transform: uppercase;
}

.contact_content2_title_inner:before {
	content: '';
	position: absolute;
	/*right: 0;*/
	top: 0;
	bottom: 0;
	height: 1px;
	right: -9999px;
    left: 100%;
	/*width: 75%;*/
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
	margin: auto;
}

.contact_content2_title_inner img {
	width: 45px;
	margin-right: 10px;
}

.contact_content3_body .secondary_description b {
	margin-top: 10px;
	margin-bottom: 10px;
	display: block;
}

.contact_content4 {
	margin-top: 50px;
}

.contact_content4 .contact_content3_title img {
	width: 30px;
	margin-right: 15px;
}

.contact_content4 .contact_content3_body .secondary_description b {
	margin-top: 30px;
	margin-bottom: 5px;
}

.contact_content4 .contact_content3_body a:hover {
	color: #F69329;
}

.contact_content5 .contact_content3_body {
	display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 5px;
}

.contact_content5 .contact_content3_body .secondary_description b {
	margin-top: 0;
	margin-bottom: 0;
}

.contact_content5 .contact_content3_body a {
	margin-left: 15px;
}

.contact_content6 {
	padding-top: 100px;
	margin-bottom: 20px;
}

.contact_content6 .contact_iframe iframe {
	height: 400px;
	width: 100%;
	border: 0;
	margin: 0;
	margin-bottom: 30px;
}

.contact_checkbox_item .form-control:focus {
	border-color: #fff;
}

.contact_others {
	display: none;
}

.sub_page_editor li::marker {
	content: "○  ";
	color: #F69329;
}

.page_conference_section1_item {
	margin-top: -50px;
}

.page_conference_section1_col {
	padding-top: 15px;
	padding-bottom: 15px;
	margin-bottom: 15x;
}

.page_conference_section1_box {
	background-color: #000;
	padding: 30px;
	text-align: center;
	height: 100%;
	position: relative;
	box-shadow: 0px 0px 10px 3px rgba(246,147,41,0.75);
	-webkit-box-shadow: 0px 0px 10px 3px rgba(246,147,41,0.75);
	-moz-box-shadow: 0px 0px 10px 3px rgba(246,147,41,0.75);
	position: relative;
}

.page_conference_section1_box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 1;
}

.page_conference_section1_box:hover:before {
	background-color: rgba(0, 0, 0, 0.4);
}

.page_conference_section1_box .page_conference_section1_content {
	position: relative;
	z-index: 1;
}

.page_conference_section1_box .primary_description {
	margin-bottom: 20px;
}

.page_conference_section1_image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.page_conference_flip .image_flip_background {
	overflow: hidden;
	z-index: 1;
}

.page_conference_flip[attr-id="1"] {
	position: relative;
	padding: 0 0 20px 20px;
}

.page_conference_flip[attr-id="1"] .page_conference_background {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 80%;
	width: 50%;
	background-color: #47290d;
	border-radius: 15px;
}

.page_conference_flip[attr-id="1"] .image_flip {
	width: 100%;
	height: 300px;
}

.page_conference_flip[attr-id="2"] {
	position: relative;
	padding: 20px 20px 0 0;
}

.page_conference_flip[attr-id="2"] .page_conference_background {
	position: absolute;
	top: 0;
	right: 0;
	height: 75%;
	width: 75%;
	background-color: #47290d;
	border-radius: 15px;
}

.page_conference_flip[attr-id="2"] .image_flip {
	width: 100%;
	height: 230px;
}

.page_conference_flip[attr-id="3"] {
	position: relative;
	padding: 0 0 20px 20px;
	margin-top: -50px;
}

.page_conference_flip[attr-id="3"] .page_conference_background {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 80%;
	width: 25%;
	background-color: #47290d;
	border-radius: 15px;
}

.page_conference_flip[attr-id="3"] .image_flip {
	width: 100%;
	height: 250px;
}

.image_flip {
	perspective: 1000px;
}

.image_flip_card {
	width: 100%;
	height: 100%;
	position: relative;
	transition: transform 0.6s;
	transform-style: preserve-3d;
}

.image_flip:hover .image_flip_card {
	transform: rotateY(180deg);
}

.image_flip_background {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden; /* hide backside */
	border-radius: 15px;
	background-position: center;
	background-position: center;
	background-size: cover;
}

.image_flip_background[attr-id="2"] {
	transform: rotateY(180deg);
}

.page_esg_policy_lines[attr-id="3"] .primary_title {
	text-align: center;
	color: #F69329;
	display: block;
	padding: 0 20px;
	background-color: #000;
	z-index: 1;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.page_esg_policy_lines[attr-id="3"] .primary_title span {
	color: transparent;
    -webkit-text-stroke: 1.5px #F69329;
    text-stroke: 1.5px #F69329;
    display: block;
    margin-top: -50px;
    margin-right: 15px;
}

.page_esg_policy_lines[attr-id="3"] .general_center_line {
	position: relative;
	z-index: 1;
}

.page_esg_policy_lines[attr-id="3"] .general_center_line_inner {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.page_esg_policy_lines[attr-id="3"] .general_center_line:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 45%;
    height: 1px;
    margin: auto;
    background-color: #F69329;
}

.page_esg_policy_lines[attr-id="3"] .general_center_line:after {
    content: '';
    position: absolute;
    bottom: 30px;
    right: 0;
    width: 45%;
    height: 1px;
    margin: auto;
    background-color: #F69329;
}

/* Smoothly interpolate when the classes change */
.clientele_logo .owl-item {
  transition:
    transform 420ms cubic-bezier(.22,.61,.36,1),
    opacity   420ms cubic-bezier(.22,.61,.36,1),
    margin    420ms cubic-bezier(.22,.61,.36,1); /* you use margin-left/right jumps */
  will-change: transform, opacity, margin;
}
.clientele_logo.no-anim .owl-item {
  transition: none !important;
}
/* Optional: if you see lag while actively dragging, you can pause transitions on drag
.clientele_logo.dragging .owl-item { transition: none !important; }
*/
/* Smooth interpolation when classes change */
.ourwork_carousel .owl-item {
  transition:
    transform 420ms cubic-bezier(.22,.61,.36,1),
    opacity   420ms cubic-bezier(.22,.61,.36,1);
  will-change: transform, opacity;
}

/* When we detect a big leap, we disable transition for a frame to avoid “swimming” */
.ourwork_carousel.no-anim .owl-item {
  transition: none !important;
}

.corporate_section1 .secondary_title {
	margin-bottom: 30px;
	position: relative;
}

.corporate_section1 .secondary_title:before {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 20%;
	height: 2px;
	background-color: #fff;
}

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

.corporate_section2 .conference_section2_title {
	margin-bottom: 50px;
}

.corporate_section2 .corporate_section2_image {
	width: 100px;
	height: 75px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: auto;
}

.corporate_section2 .corporate_section2_box {
	background-color: #1c1c1c;
	border-radius: 10px;
	text-align: center;
	padding: 15px 15px;
}

.corporate_section2 .corporate_section2_box .highlight_color {
	padding-top: 10px;
	padding-bottom: 8px;
}

.corporate_section2 .col_specialize {
	margin-bottom: 30px;
}

.corporate_section3_title {
	text-align: center;
	max-width: 75%;
	margin: 0 auto 50px auto;
}

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

.corporate_section3_title .secondary_title span {
    background-image: linear-gradient(135deg, #F69329, #FBBF06);
    color: transparent;
    background-clip: text;
}

.corporate_partner_box {
	border: 1px solid #E28029;
    border-radius: 10px;
    padding: 15px 15px 50px 15px;
    height: 100%;
    opacity: 0.5;
}

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

.corporate_section4 .active .corporate_partner_box {
	opacity: 1;
}

.corporate_section4 .active.center .corporate_partner_box {
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
}

.corporate_section4 {
	padding-bottom: 50px;
}

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

.content_section1 .content_section1_title {
	text-align: center;
}

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

.content_section1_title .secondary_title span, .content_section1_title .primary_title span {
    background-image: linear-gradient(135deg, #F69329, #FBBF06);
    color: transparent;
    background-clip: text;
}

.content_section2 {
	padding-top: 200px;
	padding-bottom: 200px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

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

.content_section2 .content_section1_title {
	text-align: center;
	position: relative;
	z-index: 1;
} 

.content_section2 .content_section1_title .primary_title {
	text-transform: uppercase;
	margin-bottom: 15px;
} 

.content_section2 .content_section1_title .secondary_description {
	max-width: 65%;
	margin: auto;
}

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

.content_section3_box {
	background: #E28029;
	background: -webkit-linear-gradient(0deg, rgba(226, 128, 41, 1) 0%, rgba(20, 20, 20, 1) 30%);
	background: -moz-linear-gradient(0deg, rgba(226, 128, 41, 1) 0%, rgba(20, 20, 20, 1) 30%);
	background: linear-gradient(0deg, rgba(226, 128, 41, 1) 0%, rgba(20, 20, 20, 1) 30%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E28029", endColorstr="#141414", GradientType=0);
	border-radius: 10px;
	padding: 30px 30px;
	margin-bottom: 30px;
	text-align: center;
}

.content_section3-offset {
	padding-top: 100px;
}

.content_section3-offset .content_section3_box {
	background: -webkit-linear-gradient(180deg, rgba(226, 128, 41, 1) 0%, rgba(20, 20, 20, 1) 30%);
	background: -moz-linear-gradient(180deg, rgba(226, 128, 41, 1) 0%, rgba(20, 20, 20, 1) 30%);
	background: linear-gradient(180deg, rgba(226, 128, 41, 1) 0%, rgba(20, 20, 20, 1) 30%);
}

.content_section3_box .content_section3_box_image {
	width: 75px;
	height: 75px;	
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin: auto;
}

.content_section3_box .secondary_description b {
	margin-top: 10px;
	margin-bottom: 15px;
	display: block;
}

.highlight_button.general_button {
	margin-top: 30px;
	justify-content: center;
}

.highlight_button.general_button a {
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
	border-color: #F69329;
	color: #fff;
	transition: initial;
	text-transform: uppercase;
}

.highlight_button.general_button a:hover {
	background: transparent;
	color: #F69329;
}

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

.content_section4:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
    /* transform: rotate(-0.7deg); */
    -webkit-clip-path: polygon(0% 0%, 100% 20%, 100% 90%, 0% 70%);
    clip-path: polygon(0% 0%, 100% 20%, 100% 90%, 0% 70%);
}

.content_section4_inner {
	background-color: #ffffff;
	padding-top: 50px;
	padding-bottom: 50px;
	margin-bottom: 50px;
	position: relative;
	z-index: 1;
}

.content_section4 .content_section1_title {
	text-align: center;
	margin-bottom: 100px;
	color: #000;
}

.content_section4 .content_section4_image {
	width: 50px;
	height: 50px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin: auto;
}

.content_section4 .secondary_description {
	margin-top: 10px;
	color: #000;
	text-align: center;
}

.content_section4 .col_content {
    -ms-flex: 0 0 calc(100% /  5);
    -webkit-box-flex: 0;
    flex: 0 0 calc(100% /  5);
    max-width: calc(100% /  5);
    margin-bottom: 30px;
}

.team_building_content1 .page_conference_section1_image {
	width: 50px;
	height: 50px;
	background-size: contain;
	position: relative;
}

.team_building_content1 .page_conference_section1_box:before {
	content: none;
}

.team_building_content1 .page_conference_section1_box {
	background-color: #ffffff;
	box-shadow: initial;
	color: #000;
	border-radius: 10px;
	padding-left: 5px;
	padding-right: 5px;
}

.team_building_content1 {
	background-color: transparent;
}

.team_building_content1 .page_conference_section1_content .secondary_description {
	margin-top: 10px;
	font-weight: bold;
}

.team_focus {
  position: relative;
}

/* --------------------- DESKTOP --------------------- */
#team_focus_list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

#team_focus_list > li {
  flex: 1 1 0;
  text-align: center;
  position: relative;
  padding-top: 45px;
}

#team_focus_list > li.team_focus_down {
	padding-top: 90px;
}

#team_focus_list .primary_description {
  margin: 8px 0 6px;
  color: #fff;
}

#team_focus_list .secondary_description {
  opacity: 0.85;
  margin: 0 auto;
  max-width: 17em;
  color: #fff;
}

/* Dots */
.team_focus_dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #000;
  transition: 0.25s;
  z-index: 2;
}

.team_focus_up .team_focus_dot { top: 20px; }
.team_focus_down .team_focus_dot { top: 70px; }

#team_focus_list li:hover .team_focus_dot,
#team_focus_list li.team_focus_active .team_focus_dot {
  background: #F69329;
  border-color: #F69329;
  transform: translateX(-50%) scale(1.05);
}

/* SVG connectors */
#team_focus_svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
#team_focus_svg path,
#team_focus_svg line {
  vector-effect: non-scaling-stroke;
  stroke-width: 2;
  stroke-linecap: round;
}
#team_focus_base path { stroke: #fff; fill: none; }
#team_focus_hi line { stroke: #F69329; }

.team_building_content2 {
	padding-top: 100px;
}

.team_content2_col {
	margin-bottom: 30px;
}

.team_building_content2_inner {
	border: 1px solid #F69329;
	padding: 30px;
	text-align: center;
	height: 100%;
	border-radius: 8px;
}

.team_building_content2_inner:hover {
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
}

.team_building_content2_inner .primary_description {
	margin-bottom: 10px;
}

.team_building_content3_inner {
	padding-top: 30px;
	text-align: center;
}

.team_building_content3 .content_section4_box {
	box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.75);
	-webkit-box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.75);
	padding: 15px;
	height: 100%;
}

.team_building_content3 .content_section4_box small {
	display: block;
}

.general_stair_wrap{
	margin: 0px auto;
	background-color: #000;
	position: relative;
	padding: 0 60px 0 30px;
	z-index: 1;
}
.general_stair{
	position: relative;
	width: max-content;
}

.general_stair_line{
	white-space: nowrap;
	margin: 0;
}

.team_building_content4 {
	padding-bottom: 50px;
}

.team_building_content4_title {
	position: relative;
}

.team_building_content4_title:before {
	content: '';
	position: absolute;
	top: 25px;
	left: 0;
	width: 50%;
	height: 1px;
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
}

.team_building_content4_title:after {
	content: '';
	position: absolute;
	bottom: 25px;
	right: 0;
	width: 50%;
	height: 1px;
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
}

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

.team_building_content5_inner .team_building_content5_image {
	width: 75px;
	height: 75px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin: auto;
} 

.team_building_content5_inner .secondary_description {
	margin-top: 10px;
	text-align: center;
}

.launch_content1 .sustainability_banner_content {
	padding-top: 50px;
	padding-bottom: 350px;
}

.launch_content1 .sustainability_banner_title {
	justify-content: center;
	margin: auto;
}

.launch_content1 .sustainability_banner_content_inner .primary_description {
	margin-top: 0;
}

.launch_content1 .project_content_data {
	margin-top: -100px;
	padding-bottom: 100px;
}

.launch_content1 .project_content_data .project_event .project_banner_item_content {
	padding-top: 250px;
} 

.launch_content1 .project_event.card_layer {
	border-radius: 0;
}

.launch_content1 .project_content_col:nth-child(even) .project_event {
	transform: scale(1.2);
    z-index: 1;
    position: relative;
}

.launch_content2 .corporate_partner_box {
	background: initial!important;
	border: 0;
	padding: 30px;
}

.launch_content2_inner {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 2px solid #FBBF06;
	padding: 3px;
	margin: auto;
}

.launch_content2_inner .launch_content2_item {
	border: 4px solid #F69329;
	border-radius: 50%;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.launch_content2 .corporate_partner_image {
	width: calc(100% - 50px);
	height: calc(100% - 50px);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin: auto;
}

.launch_content2 .secondary_description {
	text-align: center;
	margin-top: 15px;
}

.launch_content2 .active.center .launch_content2_inner .launch_content2_item {
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
	box-shadow: 0px 0px 50px 5px rgba(251,191,6,0.75);
	-webkit-box-shadow: 0px 0px 50px 5px rgba(251,191,6,0.75);
	-moz-box-shadow: 0px 0px 50px 5px rgba(251,191,6,0.75);
}

.launch_content3 {
	padding-bottom: 50px;
}

.launch_content3 .general_lines_titles:before {
	background-color: #F69329;
}

.launch_content3 .general_lines_titles {
	margin-bottom: 50px;
}

.launch_content3_inner {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 30px;
}

.launch_content3_inner .launch_content3_image {
	width: 60px;
	height: 50px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.launch_content3_inner .secondary_description {
	width: calc(100% - 75px);
	padding-left: 30px;
}

.corporate_dinner_content1 .content_section1_title {
	max-width: 700px;
    margin: auto;
}

.corporate_dinner_content1 .secondary_title:first-child {
	text-align: left;
}

.corporate_dinner_content1 .secondary_title:last-child {
	text-align: right;
}

.corporate_dinner_content1_data {
	padding-top: 50px;
	padding-bottom: 150px;
}

.corporate_dinner_content1_image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.corporate_dinner_content1_inner {
	padding-bottom: 50px;
}

.corporate_dinner_content1_inner .primary_title {
	font-size: 100px;
	line-height: 1;
	opacity: 0.5;
}

.corporate_dinner_content1_side {
	margin-top: -40px;
    margin-left: 30px;
    z-index: 1;
    position: relative;
}

.corporate_dinner_content1_side .secondary_title {
	margin-bottom: 20px;
	text-align: left;
}

.corporate_dinner_content2_data {
	position: relative;
	padding-top: 10px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.corporate_dinner_content2_data:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 2px;
	border-radius: 0 25px 25px 0;
	background-color: #fff;
}

.corporate_dinner_content2_data:hover {
    background-image: linear-gradient(135deg, #F69329, #FBBF06);
    color: transparent;
    background-clip: text;
}

.corporate_dinner_content2_data:hover:before {
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
}

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

.corporate_dinner_content3_inner {
    color: #fff;
}

.corporate_dinner_content3_inner .secondary_description {
	color: #fff;
	margin-top: 15px;
}

.corporate_dinner_content3_inner:before {
	content: initial;
}

.corporate_dinner_content3_box {
	border: 1px solid #ffffff;
	height: 100%;
	padding: 20px 5px;
}

.corporate_dinner_content3_box:hover {
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
}

.corporate_dinner_content3_box:hover .content_section4_image{
	filter: brightness(0) invert(1) contrast(100%);
}

.corporate_dinner_content3 .primary_description {
	padding-left: 150px;
	position: relative;
}

.corporate_dinner_content3 .primary_description:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 140px;
	height: 2px;
	background-color: #fff;
	margin: auto;
}

.exhibition_content1 {
	padding-bottom: 50px;
}

.exhibition_content1_box {
	height: 100%;
	padding: 15px;
	border-radius: 15px;
	position: relative;
}

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

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

.exhibition_content1_box .secondary_description {
	margin-top: 15px;
	display: none;
}

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

.exhibition_content1_data {
	margin-top: 100px;
}

.col_exhibition_content1:hover {
	-ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
}

.col_exhibition_content1:hover .secondary_description {
	display: block;
}

.exhibition_content2 .conference_section2_content {
	position: relative;
	margin-top: 50px;
}

.exhibition_content2 .conference_section2_content:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	height: 100%;
	background: #F69329;
	background: -webkit-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: -moz-linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	background: linear-gradient(135deg, rgba(246, 147, 41, 1) 0%, rgba(251, 191, 6, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F69329", endColorstr="#FBBF06", GradientType=0);
}

.exhibition_content2 .conference_section2_each {
	margin-bottom: 30px;
}

.exhibition_content2 .conference_section2_each:last-child {
	margin-bottom: 0;
}

.exhibition_content3 {
	margin-bottom: 50px;
	padding-top: 100px;
	padding-bottom: 100px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

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

.exhibition_content3 .exhibition_content3_inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

.exhibition_content3 .secondary_title span {
    background-image: linear-gradient(135deg, #F69329, #FBBF06);
    color: transparent;
    background-clip: text;
}

@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: 50px;
		display: block;
	}

	.mobile_header_inner button {
		background-color: transparent;
		color: #F69329;
		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: #fff;
		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 .sidebar_header a {
		display: block;
		width: 75px;
	}

	#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;
	    font-size: 12px;
	    line-height: 18px;
	    font-weight: 600;
	    color: #000;
	    text-transform: uppercase;
	    display: flex;
	    justify-content: flex-start;
	    align-items: center;
	}

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

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

	#mobile_sidebar .components li.highlight a {
		background-color: #F69329;
		color: #000;
	}

	#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: #F69329;;
	}

	.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 {
	    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;
	}

	.mobile_nav_dropdown_inner a img {
		width: 15px;
	    margin-right: 10px;
	}

	.primary_title {
		font-size: 30px;
		line-height: 40px;
	}

	.secondary_title {
		font-size: 19px;
		line-height: 26px;
	}

	.third_title {
		font-size: 30px;
		line-height: 35px;
	}

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

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

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

	.page_event_section5.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="2"] {
		padding-left: 200px;
	}

	.page_services_section1_inner {
		padding-left: 25px;
		padding-right: 25px;
	}

	.page_conference .sustainability_banner_title {
		display: block;
		text-align: center;
	}

	.page_conference .sustainability_banner_title .primary_title {
		margin-left: 0;
	}

	.clientele_logo .owl-item.active.center {
	    transform: scale(1.3);
	    margin-right: 5px!important;
	    z-index: 4!important;
	}

	.clientele_logo .owl-item.active {
	    transform: scale(1);
	    margin-right: 5px!important;
	    z-index: 3!important;
	}

	.dashboard_services .services_col {
		margin-bottom: 30px;
	}

	.page_esg_policy_lines .general_right_title:before, .page_esg_policy_lines .general_left_title:before {
		bottom: 15px;
	}

	.page_esg_policy_lines .general_left_title  {
		margin-top: 0;
	}

	.about_core .about_core_box {
		padding: 15px;
	}

	.about_core_box .about_core_image {
		width: 100%;
	}

	.page_credential .services_col {
		-ms-flex: 0 0 calc(100% / 4);
	    -webkit-box-flex: 0;
	    flex: 0 0 calc(100% / 4);
	    max-width: calc(100% / 4);
	}

	.as_seen .as_seen_inner .as_seen_col:nth-child(-n+6) .as_seen_image {
		width: 100px;
	}

	.as_seen .as_seen_inner .as_seen_image {
		width: 60px;
		height: 60px;
	}
}

@media only screen and (min-width: 767px) {
	.sustainability_section2_content1 .sustainability_section2_tooltip {
		display: none!important;
	}
}

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

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

	.third_title {
		font-size: 35px;
		line-height: 40px;
	}

	.third_title span {
		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;
	}

	.footer_section1_inner {
		padding: 50px 50px;
	}

	.footer_section1_inner .secondary_description {
		max-width: 300px;
	}

	.footer_section2 .footer_socials a {
		width: 30px;
		height: 30px;
	}

	.footer_address .footer_address_inner {
		justify-content: space-between;
		margin-bottom: 15px;
	}

	.footer_address .footer_address_inner .footer_address_content {
		width: calc(100% - 120px);
	}

	.footer_section3 .footer_link_inner {
		margin-bottom: 30px;
		padding-top: 15px;
        padding-bottom: 15px;
	}

	.footer_section4 {
		margin-top: 0;
	}

	.footer_section4 .footer_sub_page {
		margin-top: 15px;
	}

	.footer_section4 .footer_sub_page a {
		display: block;
	}

	.footer_section4 .footer_sub_page a:not(:last-child) {
		border-right: 0;
		margin-right: 0;
		padding-right: 0;
	}

	.dashboard_about .dashboard_about_description {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.dashboard_vision .dashboard_vision_description_outer {
		margin-top: -30px;
	}

	.dashboard_purpose .dashboard_purpose_description {
		width: 90%;
	}

	.dashboard_vision .dashboard_vision_description {
		width: 80%;
	}

	.dashboard_vision .dashboard_vision_description_inner {
		padding: 50px 50px 50px 0;
	}

	.dashboard_clients .client_box {
		padding: 10px 10px;
	}

	.dashboard_works .dashboard_work_title {
		margin-bottom: 25px;
	}

	.dashboard_works .work_box_frame {
		height: initial!important;
	}

	.dashboard_ourwork_box .secondary_description {
		padding: 0 10px 10px 10px;
	}

	.ourwork_carousel .owl-item.active.prev_center, .ourwork_carousel .owl-item.active.next_center {
		transform: scale(1.0);
	}

	.credential_box {
		padding: 10px 10px;
	}

	.work_box .work_box_banner {
		margin-top: 30px;
	}

	.about_core .about_core_box {
		padding: 15px 15px;
	}

	.about_team_image {
		height: 180px;
	}

	.about_roadmap_box {
		padding: 0 25px;
	}

	.about_roadmap_box .about_roadmap_title .primary_title {
		line-height: 25px;
	}

	.about_roadmap_box .about_roadmap_description {
		width: 200px;
	}

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

	.project_banner_title {
		padding-top: 0;
	}

	.layer_carousel {
		padding-right: 50px;
	}

	.sustainability_banner_title {
		margin-left: -50px;
		margin-bottom: 10px;
	}

	.sustainability_banner_title .highlight_color {
		font-size: 35px;
		line-height: 40px;
	}

	.sustainability_banner_title[attr-id="2"] {
		padding-left: 100px;
	}

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

	.sustainability_banner_content {
		padding-top: 75px;
		padding-bottom: 75px;
	}

	.sustainability_section2 .general_title .secondary_title {
		margin-left: -100px;
	}

	.sustainability_section2 .general_title .secondary_title span {
		margin-left: 150px;
	}

	.sustainability_section2 .general_title {
		margin-bottom: 20px;
	}

	.sustainability_section2 .tooltip_arrow {
		left: 50%!important;
	}

	.sustainability_section2_content2 .sustainability_section2_tooltip {
		display: none!important;
	}

	.sustainability_section2 .sustainability_section2_item {
		margin-top: 30px;
	}

	.sustainability_section2 .sustainability_section2_tooltip_item {
		margin-bottom: 15px;
		height: auto;
	}

	.sustainability_section2 .sustainability_section2_tooltip {
		padding-bottom: 0;
	}

	.sustainability_section3 .sustainability_news_box {
		margin-bottom: 15px;
	}

	.page_project_header .secondary_description b {
		margin-top: 20px;
	}

	.page_project_header .page_project_header_inner {
		padding: 10px 0 30px 0;
	}

	.page_project_content .general_editor {
		padding-left: 70px;
	}

	.page_project_content .general_editor .page_project_social a {
		width: 25px;
		height: 25px;
		font-size: 12px;
	}

	.page_credential .services_col {
		-ms-flex: 0 0 calc(100% / 2);
	    -webkit-box-flex: 0;
	    flex: 0 0 calc(100% / 2);
	    max-width: calc(100% / 2);
	}

	.as_seen .as_seen_inner .as_seen_col {
		-ms-flex: 0 0 calc(100% / 3)!important;
	    -webkit-box-flex: 0!important;
	    flex: 0 0 calc(100% / 3)!important;
	    max-width: calc(100% / 3)!important;
	}

	.as_seen .as_seen_inner .as_seen_col:nth-child(-n+6) .as_seen_image {
		width: 75px;
	}

	.trusted_by .general_title {
		margin-bottom: 30px;
	}

	.page_esg_policy_lines[attr-id="1"] .general_right_title .general_title h2 {
		text-align: left;
	}

	.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title {
		padding-left: 15px;
	}

	.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="2"] {
		padding-left: 100px;
		padding-right: 20px;
	}

	.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="2"]:before, .page_ungc .page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="2"]:before {
		width: 40px;
	}

	.page_esg_policy_content[attr-id="2"] .page_esg_policy_inner {
		width: 85%;
	    margin: auto;
	    text-align: center;
	}

	.page_ungc_principle .page_ungc_principle_header {
		margin-bottom: 0;
	}

	.page_ungc .page_esg_policy_content[attr-id="1"] .secondary_description {
		margin-top: 15px;
	}

	.page_ungc .general_left_title .general_title {
		margin-left: 0;
	}

	.credential_video .credential_video_logo {
		width: 150px;
	}

	.clientele_col {
		margin-bottom: 30px;
	}

	.clientele_logo .owl-item.active.center {
	    transform: scale(1.3);
	    margin-right: 5px!important;
	    z-index: 4!important;
	}

	.clientele_logo .owl-item.active {
	    transform: scale(1);
	    margin-right: 5px!important;
	    z-index: 3!important;
	}

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

	.page_event_section2 .event_type_box {
		padding-left: 0;
	}

	.page_event_section2 .event_type_box:nth-child(even) {
		padding-right: 0;
	}

	.page_event_section2 .event_type_box:before {
		left: 0;
		right: 0;
		width: 100%;
		transform: skewX(0);
    	background-color: rgba(255, 255, 255, 0.5);
	}

	.page_event_section2 .event_type_box:nth-child(even):before {
		left: 0;
		right: 0;
		width: 100%;
		transform: skewX(0);
    	background-color: rgba(246, 147, 41, 0.5);
	}

	.page_esg_policy_content_box .about_roadmap_box .about_roadmap_description {
		width: 150px;
	}

	.page_event_section4_col {
		margin-bottom: 30px;
	}

	.event_highlight {
		padding-bottom: 250px;
	}

	.page_conference .sustainability_section1_grid {
		grid-template-columns: 1fr;
	}

	.page_conference_section2_col {
		margin-bottom: 30px;
	} 

	.page_conference_section3_title {
		margin-top: 50px;
	}

	.conference_project_box .general_button {
		margin-top: 100px;
	}

	.page_conference_section6_image {
		margin-bottom: 30px;
	}

	.contact_content2 {
		margin-bottom: 20px;
	}

	.contact_content3_title {
		margin-top: 30px;
	}

	.event_carousel .center .event_carousel_box {
		transform: initial;
	}

	.page_event_section5.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="1"] {
		padding-right: 50px;
	}

	.page_event_section5.page_esg_policy_content[attr-id="2"] .page_esg_policy_lines .general_title[attr-id="2"] {
		padding-left: 0px;
	}

	.page_conference_flip {
		margin-top: 0!important;
		margin-bottom: 30px;
	}

	.page_conference_flip .image_flip {
		height: 300px!important;
	}

	.page_esg_policy_lines .general_left_title  {
		margin-left: 50px;
	}

	.page_esg_policy_lines[attr-id="3"] .primary_title span {
		margin-top: -35px;
		margin-right: 8px;
	}

	.page_esg_policy_lines[attr-id="3"] .general_center_line:before {
		top: 2px;
	}

	.page_esg_policy_lines[attr-id="3"] .general_center_line:after {
		bottom: 17px;
	}	

	.page_conference_section6 .testimony_carousel {
		margin-top: 0;
	}

	.page_event_section1_inner .secondary_title {
		max-width: 320px;
	}

	.page_event_section1_inner .secondary_title.highlight_color {
		margin-right: 0;
		margin-left: auto;
	}

	.page_event_section3 .page_esg_policy_inner .secondary_description {
		text-align: left;
	}

	.page_event_section6 .page_event_section6_line:not(:first-child) {
		padding-left: 25px;
		justify-content: flex-start;
	}

	.about_vision.dashboard_vision .dashboard_vision_title .dashboard_vision_title_inner {
		padding-left: 100px;
	}

	.clientele_section1_box {
		padding-left: 15px;
		padding-right: 15px;
	}

	.project_content_filter .project_content_filter_content {
		padding-left: 50px;
		padding-right: 50px;
	}

	.page_ungc .general_right_title:before, .page_ungc .general_left_title:before {
		bottom: 15px;
	}

	.page_project .page_project_flex {
		display: block;
	}

	.page_project .page_project_flex a {
		margin: 5px 0;
	}

	.corporate_section1 .secondary_title {
		margin-top: 30px;
	}

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

	.content_section3-offset {
		padding-top: 0;
	}

	.content_section4 .col_content {
	    -ms-flex: 0 0 calc(100% /  2);
	    -webkit-box-flex: 0;
	    flex: 0 0 calc(100% /  2);
	    max-width: calc(100% /  2);
	    margin-bottom: 30px;
	}

	/* Hide SVG (desktop only) */
	#team_focus_svg { display: none; }

	.team_focus {
	  position: relative;
	}

	/* Vertical layout */
	#team_focus_list {
	  position: relative;
	  display: flex;
	  flex-direction: column;
	  gap: 40px;
	  margin: 0;
	  padding: 0 0 0 36px; /* space for dots & line */
	}

	/* Vertical connecting line */
	#team_focus_list::before {
	  content: "";
	  position: absolute;
	  left: 44px;          /* perfectly centered with dot */
	  top: 7px;
	  bottom: 0;
	  width: 2px;
	  background: #fff;
	  opacity: 0.6;
	}

	/* Each list item */
	#team_focus_list > li {
	  position: relative;
	  text-align: left;
	  width: 100%;
	  padding-top: 0!important;
	}

	/* Dot — exactly on the line */
	.team_focus_dot {
	  position: absolute;
	  left: 16px;
	  top: 0.5em;           /* aligns dot center with heading text line */
	  transform: translateY(-25%);
	  width: 16px;
	  height: 16px;
	  border-radius: 50%;
	  border: 2px solid #fff;
	  background: #000;
	  z-index: 2;
	  transition: 0.25s ease;
	}

	/* Hover / active */
	#team_focus_list li:hover .team_focus_dot,
	#team_focus_list li.team_focus_active .team_focus_dot {
	  background: #F69329;
	  border-color: #F69329;
	  transform: translateY(-25%) scale(1.1);
	}

	/* Heading — start exactly beside the dot */
	#team_focus_list .primary_description {
	  margin: 0 0 4px 32px;   /* 32px aligns perfectly beside the dot */
	  color: #fff;
	  line-height: 1.3;
	  display: inline-block;
	  vertical-align: middle;
	}

	/* Paragraph text — aligned under heading */
	#team_focus_list .secondary_description {
	  margin: 0 0 0 32px;
	  line-height: 1.5;
	  color: #fff;
	  opacity: 0.85;
	  max-width: none;
	  word-break: normal;
	  white-space: normal;
	}

	/* Neutralize desktop dot positioning */
	.team_focus_up .team_focus_dot,
	.team_focus_down .team_focus_dot { top: 7px; left:0 }

	.launch_content1 .sustainability_banner_title .primary_title {
		text-align: center;
	}

	.launch_content1 .sustainability_banner_title .primary_title span {
		display: block;
		margin-bottom: 15px;
	}

	.launch_content1 .project_content_col {
		margin-top: 30px;
	}

	.launch_content1 .project_content_data {
		margin-top: -200px;
	}

	.launch_content1 .project_content_col:nth-child(even) .project_event {
		transform: initial;
	}

	.launch_content3 .primary_title, .team_building_content3 .primary_title {
		display: block;
	}

	.launch_content3 .general_lines_titles span, .team_building_content3 .general_lines_titles span {
		display: block;
		text-align: center;
	}

	.launch_content3 .general_lines_titles span:not(:first-child), .team_building_content3 .general_lines_titles span:not(:first-child) {
		padding-top: 0;
	}

	.launch_content3_inner {
		display: block;
	}

	.launch_content3_inner .launch_content3_image {
		margin: auto;
	}

	.launch_content3_inner .secondary_description {
		width: 100%;
		padding-left: 0;
		padding-top: 15px;
		text-align: center;
	}	

	.general_stair_wrap, .general_stair {
		transform: initial!important;
		width: 100%!important;
		padding: 0!important;
	}

	.general_stair_wrap .primary_title {
		margin-left: 0!important;
		text-align: center;
	}

	.team_building_content4 .project_content_col {
		margin-bottom: 30px;
	}

	.col_exhibition_content1 {
		-ms-flex: 0 0 100%!important;
	    -webkit-box-flex: 0;
	    flex: 0 0 100%!important;
	    max-width: 100%!important;
	    margin-bottom: 30px;
	}

	.exhibition_content1_box .secondary_description {
		display: block;
	}

	.corporate_dinner_content1 .content_section1_title .secondary_title {
		text-align: center;
	}

	.corporate_dinner_content1_image {
		height: 250px;
	}

	.corporate_dinner_content1_data {
		padding-bottom: 50px;
	}

	.corporate_dinner_content2_data {
		margin-bottom: 30px;
	}
}