@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
	--primary: #2c2c2c;
	--white: #fff;
	--grey: #3d3d3d;
	--purple: #b63593;
	--green: #415e33;
	--lightGreen: #bad576;
	--lightGrey: #fafafa;
	--lightGreyBg: #f7f7f7;
	--orange: #f9a129;
	--orangeHover: #ffbc5e;
	--orangeBg: #f3b055;
	--blue: #3857a7;
	--lightBlue: #5cc9e8;
	--black: #000000;
	--yellow: #f7eb1b;
	--cap: uppercase;
	--letterSpace: 6px;
	--fontSize12: 12px;
	--fontSize13: 13px;
	--fontSize14: 14px;
	--fontSize16: 16px;
	--fontSize18: 18px;
	--fontSize19: 19px;
	--fontSize20: 20px;
	--fontSize21: 21px;
	--fontSize22: 22px;
	--fontSize24: 24px;
	--fontSize26: 26px;
	--fontSize27: 27px;
	--fontSize28: 28px;
	--fontSize30: 30px;
	--fontSize32: 32px;
	--fontSize34: 34px;
	--fontSize36: 36px;
	--fontSize40: 40px;
	--fontSize44: 44px;
	--fontSize50: 50px;
	--fontSize54: 54px;
	--fontSize60: 60px;
	--fontSize70: 70px;
	--fontSize80: 80px;
	--padding100: 100px 0;
	--font100: 100;
	--font200: 200;
	--font300: 300;
	--font400: 400;
	--font500: 500;
	--font600: 600;
	--font700: 700;
	--font800: 800;
	--font900: 900;
}
html,
body {
	height: 100%;
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	padding: 0;
	font-size: 16px;
	width: 100%;
	font-weight: 400;
	color: var(--primary);
}
body {
	overflow-x: hidden;
}
.overlay {
	content: "";
	background: rgba(243, 176, 85, 0.7);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 900;
	opacity: 0;
	right: 0;
	bottom: 0;
	transition: opacity 1s ease-in-out;
	height: 0;
}
.overlay.hover {
	opacity: 1;
	height: 100vh;
	padding-top: 100px;
}
a {
	color: var(--green);
	font-size: var(--fontSize16);
}
a:hover {
	color: var(--lightGreen);
}
header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	/* background: rgba(255, 255, 255, 0.7); */
	background: var(--white);
}
header.header-fixed {
	min-height: auto;
	animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0px);
	}
}
.logo {
	padding: 4px 0;
}
.navbar {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}
.main-nav {
	position: relative;
}
.menu-container {
	max-width: 100%;
	margin: 0 auto;
}
.menu-container .menu {
	max-width: 1200px;
	margin: 0 auto;
}
.menu-mobile {
	display: none;
	padding: 20px;
}
.menu-mobile:after {
	content: "\f394";
	font-family: "Ionicons";
	font-size: 2.5rem;
	padding: 0;
	float: right;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-25%);
	-ms-transform: translateY(-25%);
	transform: translateY(-25%);
}
.menu-mobile.hamburger:after {
	content: "\2715";
}
.menu-dropdown-icon:before {
	content: "\f489";
	font-family: "Ionicons";
	display: none;
	cursor: pointer;
	float: right;
	padding: 0.88em 1.5em;
	background: #fff;
	color: #333;
	font-size: var(--fontSize22);
}
/* .menu-dropdown-icon.active:before {
	content: "\2212";
} */
.menu > ul {
	margin: 0 auto;
	width: 100%;
	list-style: none;
	padding: 0;
	position: relative;
	/* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
	box-sizing: border-box;
}
.menu > ul:before,
.menu > ul:after {
	content: "";
	display: table;
}
.menu > ul:after {
	clear: both;
}
.menu > ul > li {
	float: left;
	padding: 0;
	margin: 0;
}
.menu li a {
	color: #2d3035;
}
.menu li ul.normal-sub li:hover {
	background: #f4f7ff;
}
.menu li ul.normal-sub li > a {
	padding: 10px 20px !important;
}
.menu li ul.normal-sub li > a:hover {
	color: #3764eb;
}
.menu > ul > li:hover > a {
	color: var(--lightGreen);
}
.menu > ul > li a {
	text-decoration: none;
	padding: 1em 3.0em;
	display: block;
}
.menu > ul > li:hover {
	background: #f0f0f0;
}
.menu ul li a.active {
	color: var(--lightGreen);
	background: #f0f0f0;
}
.menu > ul > li > ul {
	display: none;
	width: 100%;
	background: #f0f0f0;
	padding: 20px;
	position: absolute;
	z-index: 99;
	left: 0;
	margin: 0;
	list-style: none;
	box-sizing: border-box;
}
.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
	content: "";
	display: table;
}
.menu > ul > li > ul:after {
	clear: both;
}
.menu > ul > li > ul > li {
	margin: 0;
	padding-bottom: 0;
	list-style: none;
	width: 25%;
	background: none;
	float: left;
}
.menu.investment > ul > li > ul > li {
	margin: 0;
	padding-bottom: 0;
	list-style: none;
	width: 25%;
	background: none;
	float: left;
}
.menu > ul > li > ul > li a {
	color: #777;
	padding: 10px 15px;
	width: 95%;
	display: block;
	border-bottom: 1px solid #ccc;
}
.menu ul li ul li.second > a {
	font-weight: var(--font600);
}
.menu ul li ul a.active {
	background: #f4f7ff;
	color: #3764eb;
	width: 100%;
}
.menu ul li ul li ul li:hover > a {
	background: #f4f7ff;
	color: #3764eb;
}
.menu > ul > li > ul > li a.transport,
.menu > ul > li > ul > li ul.last li a {
	width: 100%;
}
.menu > ul > li > ul > li > ul {
	display: block;
	padding: 0;
	margin: 10px 0 0;
	list-style: none;
	box-sizing: border-box;
}
.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
	content: "";
	display: table;
}
.menu > ul > li > ul > li > ul:after {
	clear: both;
}
.menu > ul > li > ul > li > ul > li {
	float: left;
	width: 95%;
	padding: 5px 0;
	margin: 0;
	font-size: .8em;
}
.menu > ul > li > ul > li > ul > li a {
	border: 0;
}
.menu > ul > li > ul.normal-sub {
	width: 300px;
	left: auto;
	padding: 0;
}
.menu > ul > li > ul.normal-sub > li {
	width: 100%;
}
.menu > ul > li > ul.normal-sub > li a {
	border: 0;
	padding: 1em 0;
}
.menu li ul li ul li a,
.menu li ul li ul li a.active {
	width: 100%;
}
.search-light {
	background: var(--white);
}
.search-light .close {
	background: var(--black);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	margin: 15px 10px;
}
.search-light .close:hover {
	background: var(--lightGreen);
}
.search-light .close svg {
	fill: var(--white);
}
.search-light .close:hover svg {
	fill: var(--black);
}
.search-light .modal-content {
	border: 0;
}
.search-light .col-3 {
	float: left;
	width: 27.33%;
	margin: 40px 3%;
	position: relative;
}
.search-light input[type="text"] {
	color: #333;
	width: 100%;
	box-sizing: border-box;
	letter-spacing: 1px;
	font-size: var(--fontSize50);
}
.search-light #gs_tti50 .gsc-input {
	border: 0;
	padding: 7px 0;
	border-bottom: 1px solid #ccc !important;
}
.gsc-input ~ .focus-border {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--lightGreen);
	transition: 0.4s;
}
.gsc-input:focus ~ .focus-border {
	width: 100%;
	transition: 0.4s;
}

/* Home */
.main-slider {
	padding-top: 131px;
}
.slider,
.slide {
	min-height: 591px;
	height: auto;
}
.slide {
	position: relative;
}
.banner1 {
	background: url('../images/banner-slide-1.jpg') no-repeat center center;
	height: 100vh;
}
.banner2 {
	background: url('../images/banner-slide-2.jpg') no-repeat center center;
	height: 100vh;
}
.banner3 {
	background: url('../images/banner-slide-3.jpg') no-repeat center center;
	height: 100vh;
}
.banner4 {
	background: url('../images/banner-slide-4.jpg') no-repeat center center;
	height: 100vh;
}
.banner5 {
	background: url('../images/banner-slide-5.jpg') no-repeat center center;
	height: 100vh;
}
.slide .slide__img {
	width: 100%;
	height: auto;
	overflow: hidden;
}
@media (min-width: 992px) {
	.slide .slide__img {
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
}
.slide .slide__img > div {
	max-width: 100%;
	height: 591px;
	opacity: 1 !important;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	transition: all 1s ease;
}
.slide .slide__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.slide .slide__content--headings {
	text-align: center;
	color: #fff;
}
.slide .slide__content--headings h2 {
	font-size: 3.8rem;
	margin: 10px 0;
	font-weight: 700;
}
.slide .slide__content--headings .animated {
	transition: all 0.5s ease;
}
.slider [data-animation-in] {
	opacity: 0;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	transition: opacity 0.5s ease 0.3s;
}
.slick-dotted .slick-slider {
	margin-bottom: 30px;
}
.slick-dots {
	position: absolute;
	bottom: 25px;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	margin: 0;
	width: 100%;
}
.slick-dots li {
	position: relative;
	display: inline-block;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}
.slick-dots li button {
	border: 0;
	display: block;
	outline: none;
	line-height: 0px;
	font-size: 0px;
	color: transparent;
	padding: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
	outline: none;
}
.simple-dots .slick-dots li {
	width: 20px;
	height: 20px;
}
.simple-dots .slick-dots li button {
	border-radius: 50%;
	background-color: white;
	opacity: 0.25;
	width: 20px;
	height: 20px;
}
.simple-dots .slick-dots li button:hover,
.simple-dots .slick-dots li button:focus {
	opacity: 1;
}
.simple-dots .slick-dots li.slick-active button {
	color: white;
	opacity: 0.75;
}
.stick-dots .slick-dots li {
	height: 3px;
	width: 50px;
}
.stick-dots .slick-dots li button {
	position: relative;
	background-color: white;
	opacity: 0.25;
	width: 50px;
	height: 3px;
	padding: 0;
}
.stick-dots .slick-dots li button:hover,
.stick-dots .slick-dots li button:focus {
	opacity: 1;
}
.stick-dots .slick-dots li.slick-active button {
	color: white;
	opacity: 0.75;
}
.stick-dots .slick-dots li.slick-active button:hover,
.stick-dots .slick-dots li.slick-active button:focus {
	opacity: 1;
}
.slick-nav {
	background: rgba(0, 0, 0, 0.5);
	width: 44px;
	height: 44px;
	position: absolute;
	cursor: pointer;
	top: calc(50% - 44px);
	border-radius: 50%;
}
.slick-nav:hover {
	background: rgba(0, 0, 0, 1);
	transition: all 0.3s ease;
}
.slick-nav.prev-arrow {
	left: 3%;
	transform: scaleX(-1);
	z-index: 999;
}
.slick-nav.next-arrow {
	left: auto;
	right: 3%;
}
.slick-nav i {
	display: block;
	position: absolute;
	margin: -10px 0 0 -10px;
	width: 20px;
	height: 20px;
	left: 50%;
	top: 50%;
}
.slick-nav i:before,
.slick-nav i:after {
	content: "";
	width: 10px;
	height: 2px;
	border-radius: 1px;
	position: absolute;
	left: 50%;
	top: 50%;
	background: var(--white);
	margin: -1px 0 0 -5px;
	display: block;
	transform-origin: 9px 50%;
}
.slick-nav i:before {
	transform: rotate(-40deg);
}
.slick-nav i:after {
	transform: rotate(40deg);
}
.slick-nav:before,
.slick-nav:after {
	content: "";
	display: block;
	position: absolute;
	left: 1px;
	right: 1px;
	top: 1px;
	bottom: 1px;
	border-radius: 50%;
	border: 2px solid var(--border);
}
.slick-nav svg {
	width: 44px;
	height: 44px;
	display: block;
	position: relative;
	z-index: 1;
	color: var(--active);
	stroke-width: 2px;
	stroke-dashoffset: 126;
	stroke-dasharray: 126 126 0;
	transform: rotate(0deg);
}
.slick-nav.animate svg {
	-webkit-animation: stroke 1s ease forwards 0.3s;
	animation: stroke 1s ease forwards 0.3s;
}
.slick-nav.animate i {
	-webkit-animation: arrow 1.6s ease forwards;
	animation: arrow 1.6s ease forwards;
}
.slick-nav.animate i:before {
	-webkit-animation: arrowUp 1.6s ease forwards;
	animation: arrowUp 1.6s ease forwards;
}
.slick-nav.animate i:after {
	-webkit-animation: arrowDown 1.6s ease forwards;
	animation: arrowDown 1.6s ease forwards;
}
.slide__content_list {
	text-align: left;
	max-width: 450px;
	margin: 0 auto;
}
.slide__content_list li {
	list-style: none;
}
.slide__content_list li svg {
	font-weight: var(--font500);
}
.slide__content_list li a {
	color: var(--white);
	font-size: var(--fontSize22);
	font-weight: var(--font500);
}
.slide__content_list li a:hover {
	color: var(--lightGreen);
}
.secondText {
	font-size: 30px;
	font-weight: var(--font300);
}
.btn-slide a {
	background: var(--white);
	border-radius: 50px;
	padding: 10px 30px;
	margin-top: 15px;
	display: inline-block;
	color: var(--lightGreen);
}
.btn-slide a:hover {
	background: var(--lightGreen);
	color: var(--white);
}
.slick-dotted.slick-slider {
	margin: 0;
}
/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
	from {
		transform: scale3d(1, 1, 1);
	}
	to {
		transform: scale3d(1.1, 1.1, 1.1);
	}
}
@keyframes zoomInImage {
	from {
		transform: scale3d(1, 1, 1);
	}
	to {
		transform: scale3d(1.1, 1.1, 1.1);
	}
}
.zoomInImage {
	-webkit-animation-name: zoomInImage;
	animation-name: zoomInImage;
}
@-webkit-keyframes zoomOutImage {
	from {
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		transform: scale3d(1, 1, 1);
	}
}
@keyframes zoomOutImage {
	from {
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		transform: scale3d(1, 1, 1);
	}
}
.zoomOutImage {
	-webkit-animation-name: zoomOutImage;
	animation-name: zoomOutImage;
}
.home-business-content {
	background: url('../images/watermark-15-500.png') no-repeat center center;
}
.home-business-content .col-md-4 {
	padding: 0 50px;
}
.home-business-content .fa {
	color: var(--lightGreen);
	font-size: 60px;
}
.home-business-content h2 {
	color: var(--green);
	font-size: var(--fontSize28);
	font-weight: var(--font300);
}
.home-business-content a {
	border-bottom: 1px solid transparent;
}
.home-business-content a:hover {
	border-bottom: 1px solid var(--lightGreen);
}
.home-business-content p {
	padding-top: 20px;
}
.home-what-we-do {
	background: rgba(243, 176, 85, 0.3);
}
.home-what-we-do h1 {
	color: var(--green);
	font-size: var(--fontSize30);
	font-weight: var(--font500);
}
.home-what-we-do .bg-white {
	background: var(--white);
}
.home-wwd-list {
	display: flex;
	width: 100%;
	align-items: center;
	align-items: center;
}
.home-wwd-list .left {
	width: 25%;
	align-items: center;
	align-items: center;
}
.home-wwd-list .right {
	width: 75%;
	font-size: var(--fontSize22);
	color: #06163a;
}
.home-what-we-do a:hover .right {
	color: #a9d639;
}
.divider {
	border-top: 1px solid #ccc;
	padding-top: 35px;
	margin-top: 35px;
}
.home-contact {
	background: #f2b86d;
}
.home-contact h2 {
	color: var(--green);
	font-weight: var(--font500);
	font-size: var(--fontSize21);
}
.home-office-content {
	background: #8baf3b;
	color: var(--white);
	font-size: var(--fontSize15);
}
.home-office-content .office {
	background: url('../images/bg-map.svg') no-repeat center center;
}
.home-office-content .drop-line {
	background: url('../images/bg-quote.svg') no-repeat center center;
}
.home-office-content .fa {
	font-size: var(--fontSize60);
}
.home-office-content h2 {
	font-size: var(--fontSize28);
	font-weight: var(--font300);
}
.home-office-content a {
	border-bottom: 2px solid var(--white);
	line-height: 25px;
	display: inline-block;
	color: var(--white);
}

/* content & Banner */
.sub-banner {
	margin-top: 131px;
	position: relative;
}
.sub-banner .row {
	margin: 0;
}
.sub-banner.banner-about {
	background: url('../images/banner-corporate-profile.jpg') no-repeat top center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}
.sub-banner.banner-bod {
	background: url('../images/banner-bod.jpg') no-repeat top center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}
.sub-banner.banner-key {
	background: url('../images/key-management-team.jpg') no-repeat top center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}
.sub-banner.banner-hse,
.sub-banner.banner-corp-info,
.sub-banner.banner-whistle-blowing-policy {
	background: url('../images/hse.jpg') no-repeat top center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}

.sub-banner.banner-engineering-services {
	background: url('../images/Sembcorp-Karish-and-Tarish-KT.jpg') no-repeat top center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}
.sub-banner.banner-scaffolding-services {
	background: url('../images/banner-scaffolding-services.jpg') no-repeat top center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}
.sub-banner.banner-design-and-installation-of-hvac-and-refrigeration-systems {
	background: url('../images/HVAC-4-1.jpg') no-repeat top center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}
.sub-banner.banner-insulation-passive-fire-protection-services {
	background: url('../images/insulation.jpg') no-repeat top center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}
.sub-banner.banner-electrical-engineering-services {
	background: url('../images/HVAC-banner.jpg') no-repeat top center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}
.sub-banner.banner-design-and-installation-of-solar-photovoltaic-pv-systems {
	background: url('../images/banner-design-installation-of-solar-photovoltaic-systems.jpg') no-repeat top center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}
.sub-banner.banner-ev-charging-services {
	background: url('../images/subbanner-ev-charging.jpg') no-repeat top center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}
.sub-banner.banner-security-and-manpower-services {
	background: url('../images/services.png') no-repeat top center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}
.sub-banner.banner-security-services {
	background: url('../images/security.jpg') no-repeat top center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}
.sub-banner.banner-cleaning-services {
	background: url('../images/cleaning11.jpg') no-repeat top center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}
.sub-banner.banner-manpower-services {
	background: url('../images/manpower2-2.jpg') no-repeat top center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}
.sub-banner.banner-transport-services,
.sub-banner.banner-premium-bus-services {
	background: url('../images/aedge-scaled.jpg') no-repeat top center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}
.sub-banner.banner-ir {
	background: url('../images/investor-relations.jpg') no-repeat top center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}
.sub-banner.banner-contact {
	background: url('../images/contact.jpg') no-repeat top center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}

.sub-banner.banner-amethyst-house {
	background: url('../images/banner-amethyst-house.jpg') no-repeat center center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}
.sub-banner.banner-beryl-house {
	background: url('../images/banner-beryl-house.jpg') no-repeat bottom center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}
.sub-banner.banner-investment-properties {
	background: url('../images/banner-investment-properties.jpg') no-repeat center center;
	max-width: 100%;
	background-size: cover;
	background-attachment: scroll;
}

.table-property {
	border: 1px solid #f0f0f0;
}
.table-property tr td {
	border: 1px solid #f0f0f0;
}
.table-property tr td:nth-child(1) {
	background: #d3d3d2;
}

.sub-banner .container {
	padding: 40px 0;
}
.sub-banner .title {
	display: flex;
	align-items: center;
	height: 50vh;
	max-height: 460px;
}
.sub-banner h1 {
	font-size: var(--fontSize50);
	font-weight: var(--font600);
	color: var(--white);
	text-align: center;
}
.page-header {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
}
.page-header.layout-centered {
	flex-direction: column;
}
.sub-banner .text-shadow {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	opacity: .3;
	position: absolute;
	top: 0;
	left: 0;
}
h1.title {
	font-size: var(--fontSize22);
	font-weight: var(--font400);
}
h1.title2 {
	font-size: var(--fontSize40);
	font-weight: var(--font600);
}
h1.title3 {
	font-size: var(--fontSize22);
	font-weight: var(--font500);
	color: var(--green);
}

.container-memberships {
	padding-bottom: 15px;
}
.container-memberships .content {
	position: relative;
	width: 90%;
	max-width: 400px;
	margin: auto;
	overflow: hidden;
}
.container-memberships .content .content-overlay {
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	height: 99%;
	width: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}
.container-memberships .content:hover .content-overlay {
	opacity: 1;
}
.content-image {
	width: 100%;
}
.content-details {
	position: absolute;
	text-align: center;
	padding-left: 1em;
	padding-right: 1em;
	width: 100%;
	top: 50%;
	left: 50%;
	opacity: 0;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.container-memberships .content:hover .content-details {
	top: 50%;
	left: 50%;
	opacity: 1;
}
.content-details h3 {
	color: #fff;
	letter-spacing: 0.15em;
	margin-bottom: 0.5em;
	text-transform: uppercase;
	font-size: var(--fontSize12);
	font-weight: var(--font400);
}
.content-details p {
	color: #fff;
	font-size: 0.8em;
}
.fadeIn-bottom {
	top: 80%;
}
.fadeIn-top {
	top: 20%;
}
.fadeIn-left {
	left: 20%;
}
.fadeIn-right {
	left: 80%;
}
.lum-lightbox.lum-open {
	z-index: 1000;
}
.awards .col-md-4 {
	padding-bottom: 25px;
}

/* HSE */
.hse-policy-content {
	background: var(--lightGreyBg);
}

/* corporate-information */
.corp-list {
	padding: 0 0 25px 15px;
	margin: 0;
}

/* Engineering Services */
.engineering.container {
	padding-bottom: 50px;
}
.engineering .row {
	padding-top: 50px;
}
.engineering .col-md-6 {
	margin-bottom: 35px;
}
.image-text-overlay {
	width: 100%;
	height: 340px;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	border-radius: 20px;
}
.image-text-overlay.text-white {
	color: white;
}
.image-text-overlay .overlay-subtext {
	font-size: 20px;
}
.image-text-overlay .overlay-white,
.image-text-overlay .overlay-black {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	opacity: 0.4;
	border-radius: 20px;
}
.image-text-overlay .overlay-black {
	background: #000;
}
.image-text-overlay .overlay-white {
	background: #fff;
}
.text-top-left,
.text-top-center,
.text-top-right,
.text-middle-left,
.text-middle-center,
.text-middle-right,
.text-bottom-left,
.text-bottom-right,
.text-bottom-center {
	display: table;
}
.text-top-left p,
.text-top-center p,
.text-top-right p,
.text-middle-left p,
.text-middle-center p,
.text-middle-right p,
.text-bottom-left p,
.text-bottom-right p,
.text-bottom-center p {
	display: table-cell;
	position: relative;
	z-index: 2;
	padding: 15px 20px 15px 20px;
}
.text-top-left p {
	vertical-align: top;
	text-align: left;
}
.text-top-center p {
	vertical-align: top;
	text-align: center;
}
.text-top-right p {
	vertical-align: top;
	text-align: right;
}
.text-middle-left p {
	vertical-align: middle;
	text-align: left;
}
.text-middle-center p {
	vertical-align: middle;
	text-align: center;
}
.text-middle-right p {
	vertical-align: middle;
	text-align: right;
}
.text-bottom-left p {
	vertical-align: bottom;
	text-align: left;
}
.text-bottom-center p {
	vertical-align: bottom;
	text-align: center;
}
.text-bottom-right p {
	vertical-align: bottom;
	text-align: right;
}
.engineering a {
	font-size: var(--fontSize28);
	font-weight: var(--font600);
	color: var(--white);
	border-bottom: 1px solid transparent;
}
.engineering a:hover {
	border-bottom: 1px solid var(--lightGreen);
}

/* What We Do */
.container-what-we-do {
	width: 100%;
}
.container-what-we-do .inner {
	margin: 0 auto;
	max-width: 1140px;
}
.container-what-we-do .content-what-we-do {
	float: right;
	width: 75%;
}
.container-what-we-do .menu-what-we-do {
	float: left;
	width: 25%;
}
.content-what-we-do h1.title,
.green-title {
	color: var(--green);
}
.site-menu {
	padding-right: 20px;
}
.site-menu h1 {
	font-size: var(--fontSize28);
	font-weight: var(--font500);
}
.sub-menu {
	margin: 10px 0 0 0;
	padding: 0;
}
.sub-menu li {
	list-style: none;
	border-bottom: 1px solid #f0efef;
}
.sub-menu li a {
	display: block;
	font-size: var(--fontSize15);
	font-weight: var(--font300);
	color: #06163e;
	padding: 10px 0;
}
.sub-menu li a:hover,
.sub-menu li a.active {
	color: var(--lightGreen);
}

.main-scroll {
	position: relative;
}
.main-scroll .main-scroll-left {
	background: url('../images/watermark-15-500.png') no-repeat center center;
	background-size: cover;
	min-height: 200px;
}
.main-scroll .main-scroll-left h1,
.main-scroll .main-scroll-right h1 {
	font-size: var(--fontSize21);
	font-weight: var(--font500);
	color: var(--green);
}
.main-scroll .main-scroll-left h1.protection {
	padding: 60px 0;
}
.main-scroll .main-scroll-left.fixed {
	position: sticky;
	left: 0;
	top: 131px;
	z-index: 999;
}
.main-scroll .main-scroll-left h2,
.main-scroll .main-scroll-right h2 {
	font-size: var(--fontSize22);
	font-weight: var(--font500);
	color: var(--lightGreen);
}
.main-scroll .main-scroll-right p {
	font-size: var(--fontSize15);
	font-weight: var(--font300);
}
.main-scroll-right {
	border-left: 1px solid #ededed;
	padding-left: 25px;
}
.main-scroll-right .line {
	border-bottom: 1px solid #ededed;
	padding-bottom: 25px;
	margin-bottom: 35px;
}
.main-scroll .main-scroll-right h3 {
	font-size: var(--fontSize70);
	font-weight: var(--font600);
	color: var(--grey);
}
.scaffolding-supply .icon {
	background: #ecf4fe;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	margin: 0 auto;
	padding: 30px 0;
}
.scaffolding-supply .icon img {
	width: 46px;
	height: 46px;
}
.scaffolding-supply h1 {
	padding: 25px 0;
}

.wrapper {
	margin: 0 auto;
	max-width: 60rem;
	padding: 2rem;
	text-align: center;
}
.wrapper p {
	color: #eaf2ef;
}
.wrapper .gallery-container {
	background: #ffcc00;
	border-radius: 0.5rem;
	padding: 1rem;
	margin: 2rem 0;
}
.wrapper .gallery-container h2 {
	color: #333;
}
.wrapper .gallery-container ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.wrapper .gallery-container ul li img {
	display: block;
	height: auto;
	max-width: 100%;
}
.gallery-container ul.mosaic-gallery {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -0.5rem;
	padding: 0;
}
.gallery-container ul.mosaic-gallery li {
	background-position: center center;
	background-size: cover;
	flex: auto;
	height: 45vw;
	margin: 0 0.5rem 1rem;
	max-height: 20rem;
	list-style: none;
}
.gallery-container ul.mosaic-gallery li img {
	height: 100%;
	opacity: 0;
	width: 100%;
}

.electrical-content {
	background: #eff4f5;
	padding: 15px 0 10px 0;
}

.integration-grey {
	background: #f0f0f0;
}
.integration-grey .side-top {
	-webkit-transform: rotate(-5deg);
	-moz-transform: rotate(-5deg);
	-o-transform: rotate(-5deg);
	-ms-transform: rotate(-5deg);
	background: var(--white);
	width: 940px;
	height: 100px;
	position: relative;
	z-index: 0;
	top: -39px;
	left: -7px;
}

.accordion-container {
	position: relative;
	max-width: 500px;
	height: auto;
	margin: 10px auto;
}
.accordion-container a span {
	width: 95%;
	display: flex;
}
.accordion-container > h2 {
	text-align: center;
	color: #fff;
	padding-bottom: 5px;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #ddd;
}
.accordion-container .set {
	position: relative;
	width: 100%;
	height: auto;
	background-color: #f5f5f5;
}
.accordion-container .set > a {
	display: flex;
	padding: 10px 15px;
	text-decoration: none;
	color: #555;
	font-weight: 600;
	border-bottom: 1px solid #ddd;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.accordion-container .set > a i {
	display: flex;
	align-items: center;
}
.accordion-container .set > a.active {
	background-color: var(--green);
	color: #fff;
	display: flex;
}
.accordion-container .content {
	background-color: #fff;
	border-bottom: 1px solid #ddd;
	display: none;
}
.accordion-container .content p {
	padding: 10px 15px;
	margin: 0;
	color: #333;
}
.cleaning-services-list {
	clear: both;
}
.cleaning-services-list > div {
	width: 20%;
	float: left;
	padding: 10px;
}

.cleaning-blue {
	background: #f3f8fc;
	padding: 20px;
}
.cleaning-blue h1 {
	font-size: var(--fontSize22);
	font-weight: var(--font500);
	color: var(--lightGreen);
}
.cleaning-grey {
	background: #f0f0f0;
	padding: 20px;
}
.cleaning-grey h1 {
	font-size: var(--fontSize22);
	font-weight: var(--font500);
	color: var(--lightGreen);
}
.carousel {
	width: 90%;
	margin: 0 auto;
}
.carousel .slick-slide {
	margin: 10px;
}
.slick-slide img {
	width: 100%;
	border: 2px solid #fff;
	height: 100%;
}
.bus-content {
	margin: 0 auto;
	max-width: 532px;
}
.bus-content h1 {
	color: var(--orangeBg);
	display: flex;
	align-items: center;
	align-content: center;
	/*  */
	padding: 10px;
	margin-bottom: 0;
}
.bus-content a.first {
	border-top: 1px solid #c9c9c9;
}
.bus-content h1 .num {
	width: 150px;
	float: left;
	font-size: var(--fontSize80);
	font-weight: var(--font600);
}
.bus-content h1 .title {
	width: auto;
	float: left;
	font-size: var(--fontSize30);
	font-weight: var(--font500);
}
.bus-content h1 span {
	float: left;
}
.accordion-container.accordion-bus {
	margin: 0;
}
.accordion-container.accordion-bus .set {
	background: transparent;
}
.accordion-container.accordion-bus .set > a {
	font-weight: 400;
	font-size: var(--fontSize20);
	display: flex;
}
.lightBG {
	background: #f3f1ec;
}

.premium-content {
	background: #002aff;
	padding: 25px 0 10px 0;
	color: var(--white);
}
.premium-bus h1 {
	background: var(--lightGreen);
	font-size: var(--fontSize18);
	font-weight: var(--font300);
	padding: 10px;
}
.premium-bus .col-md-4 {
	padding-bottom: 25px;
}

/* IR  */
.investor a {
	font-size: var(--fontSize22);
}
.latest-report .report-inner {
	background: #f7f7f7;
	padding: 20px;
	position: relative;
	border-radius: 10px;
}
.latest-report .report-inner .icon {
	margin-top: -70px;
	text-align: center;
}
.latest-report .report-inner .title-ar {
	font-size: var(--fontSize21);
	font-weight: var(--font500);
	margin-top: 20px;
}
.latest-report .report-inner,
.latest-news-ir .inner {
	min-height: 200px;
}
.latest-news-ir {
	background: #f7f7f7;
	padding: 20px;
	position: relative;
	border-radius: 10px;
}
.latest-news-ir .inner .icon {
	margin-top: -70px;
	text-align: center;
}
.home-news {
	margin: 0;
	padding: 0;
}
.home-news li {
	list-style: none;
	margin: 10px 0 0 0;
	padding: 0;
}
.home-news li .left {
	height: auto;
	color: var(--green);
	font-size: var(--fontSize21);
	font-weight: var(--font600);
}
.home-news li .left span {
	font-size: var(--fontSize36);
	display: block;
}
.home-news li .right a {
	color: var(--primary);
}

.latest-news h2 {
	font-size: var(--fontSize24);

	color: var(--grey);
}
.latest-news h2 span {
	font-size: var(--fontSize16);
	float: right;
}

/* Email */
.email .listed {
	max-width: 800px;
	margin: 0 auto;
}

/* Content */
.content {
	width: 100%;
}

.home-email {
	background: var(--lightGrey);
	padding: 100px 0;
}
.home-email h1 .line-left {
	width: 70px;
	height: 1px;
	background: rgb(243, 243, 245);
	background: linear-gradient(90deg, rgba(243, 243, 245, 1) 0%, rgba(2, 0, 36, 1) 100%, rgba(40, 62, 116, 1) 100%);
	display: inline-block;
	position: relative;
	vertical-align: middle;
	top: 0px;
}
.home-email h1 .line-right {
	width: 70px;
	height: 1px;
	background: rgb(35, 57, 113);
	background: linear-gradient(90deg, rgba(35, 57, 113, 1) 0%, rgba(2, 0, 36, 1) 0%, rgba(241, 242, 244, 1) 100%);
	display: inline-block;
	position: relative;
	vertical-align: middle;
	top: 0px;
}
.home-email h1 .text {
	padding-left: 10px;
	font-size: var(--fontSize18);
	font-family: var(--latobold);
	color: var(--blue);
}
.home-email .sign {
	font-size: var(--fontSize18);
	font-family: var(--latolight);
	padding: 20px 0;
}
.home-email form {
	position: relative;
	margin-top: 40px;
}
.home-email button {
	position: absolute;
	right: 0;
	top: 0;
	border-radius: 0;
	border: 0;
	background: #1e4d8a;
	width: 35%;
	height: 48px;
	line-height: 22px;
	padding: 0;
	color: var(--white);
}
.home-email button:hover {
	transition: 0.5s;
	background: #2f6cbb;
}
.home-email .form-group {
	margin: 0 auto;
	max-width: 630px;
}
.home-email input {
	border-radius: 0;
	border: 0;
	background: #fff;
	padding: 10px;
	height: 48px;
	width: 65%;
	border-top: 1px solid #c9c9c9;
	border-left: 1px solid #c9c9c9;
	border-bottom: 1px solid #c9c9c9;
}
.home-email .invalid-feedback {
	text-align: left;
}
.home-email .home-email-input {
	width: 70%;
	float: left;
}
.home-email .btn-primary:not(:disabled):not(.disabled):active,
.home-email .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
	color: #fff;
	background-color: #b6862d;
	border-color: #ca9635;
}
.home-email .btn-primary:not(:disabled):not(.disabled):active:focus,
.home-email .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(212, 188, 143, 0.5);
}
.home-email .form-control:focus {
	color: #000;
	background-color: #fff;
	border-color: #2f6cbb;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(30, 77, 138, 0.5);
}

footer {
	width: 100%;
	background: var(--white);
	padding: 20px 0 0 0;
	font-size: var(--fontSize15);
	border-top: 1px solid #dfdfdf;
}
footer a {
	font-size: var(--fontSize15);
}
footer h2 {
	font-size: var(--fontSize22);
	font-weight: var(--font300);
	padding-bottom: 30px;
}
.site-list {
	padding-top: 75px;
}
.sitemap li {
	list-style: none;
	padding: 10px 0;
}
.sitemap li a {
	color: var(--black);
	font-weight: var(--font600);
}
.footer {
	background: #fafafa;
	padding: 13px 0;
	font-size: 12px;
}

/* 
Cookies */
.wrapper-cookies {
	width: 100%;
	background-color: var(--blue);
}
.wrapper-cookies .cookiealert {
	color: #fff;
	padding: 10px;
	max-width: 1400px;
	margin: 0 auto;
}
.wrapper-cookies .cookiealert a.closecookiewarning {
	display: block;
	text-decoration: none;
	color: #fff;
	background: var(--orange);
	padding: 10px;
	margin-top: 10px;
	border-radius: 10px;
}
.wrapper-cookies .cookiealert a.closecookiewarning:hover {
	background: var(--orangeHover);
}
.wrapper-cookiesp {
	float: left;
	width: 98%;
	display: block;
}
.wrapper-cookies p {
	margin: 0;
}

button {
	background: var(--orange);
	color: var(--white);
	border: 0;
	padding: 8px 30px;
	font-size: var(--fontSize18);
}
button:hover {
	background: var(--orangeHover);
}
button.lum-previous-button:hover,
.lum-next-button:hover {
	background: transparent;
}
.lum-close-button {
	background: var(--black);
	padding: 20px;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	opacity: 1;
	cursor: pointer;
	right: 10px;
	top: 10px;
}
.lum-close-button:hover {
	background: var(--lightGreen);
}
.lum-close-button:before,
.lum-close-button:after {
	background: var(--white);
	left: 24px;
	top: 10px;
}
/* Login */
.login header {
	display: none;
}
.login footer {
	margin-top: 100px;
}

/* content & Banner */
table {
	width: 100%;
}
table tbody:nth-child(even) {
	background-color: var(--white);
}
table tbody:nth-child(even) tr:nth-child(even) {
	background-color: #f9f9f9;
}
table tr th {
	border-bottom: 1px solid #b6bdd3;
}
table tr th,
table tr td {
	padding: 8px;
}
table tr td .fa {
	color: var(--orange);
}

.scroll-content {
	display: flex;
	align-items: center;
	align-content: center;
}
.scroll-icon {
	border: 2px solid #ff863c;
	width: 53px;
	height: 53px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	font-size: 24px;
	color: var(--black);
	margin-left: 20px;
}
@-webkit-keyframes arrow-jump {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(10px);
		-moz-transform: translateY(10px);
		-0-transform: translateY(10px);
		transform: translateY(10px);
	}
}
#arrow {
	-webkit-animation: arrow-jump 2s infinite; /* Safari 4+ */
	-moz-animation: arrow-jump 2s infinite; /* Fx 5+ */
	-o-animation: arrow-jump 2s infinite; /* Opera 12+ */
	animation: arrow-jump 2s infinite; /* IE 10+, Fx 29+ */
}
/* BOD */
.bod-img {
	float: left;
	margin: 0 15px 15px 0;
}
.bod-inner {
	padding-left: 200px;
}
.director h3 {
	font-size: var(--fontSize18);
	font-weight: var(--font300);
	letter-spacing: 3px;
}
.director .bod-inner .appointment {
	font-size: var(--fontSize12);
	letter-spacing: 0;
	border-top: 1px dashed #8e8e8e;
	padding: 15px 0;
}
.director .bod-inner .appointment strong {
	font-weight: var(--font600);
}
.director .bod-inner > div {
	font-size: var(--fontSize13);
	font-weight: var(--font300);
	letter-spacing: 3px;
	color: #8e8e8e;
	padding-bottom: 20px;
}
.director-bg-grey {
	background: #f7f7f7;
}
.key.bod .bod-inner {
	padding-left: 0;
}

/* Contact Us */
#login-form {
	margin-top: 40px;
}
#login-form textarea {
	height: 200px;
}
#login-form label {
	display: none;
}
#login-form .field-contactinfoform-message label {
	display: block;
}
.main-contact {
	width: 100%;
}
.main-contact .left {
	width: 60%;
	float: left;
}
.main-contact .right {
	width: 40%;
	float: right;
	background: url('../images/contact-info-bg.png') no-repeat;
	padding: 50px;
	background-size: cover;
}
#map {
	height: 430px;
	z-index: 1;
}
.leaflet-control-attribution a {
	font-size: var(--fontSize12);
}
.contact h2.title {
	font-size: var(--fontSize22);
	font-weight: var(--font400);
}
.table-contact {
	color: var(--white);
}
.table-contact tr td:first-child {
	width: 20%;
	text-align: right;
}
.table-contact tr td img {
	width: 16px;
}
.table-contact tr td {
	vertical-align: top;
}
.table-contact tr td span {
	font-size: var(--fontSize18);
}

.company-logo .col-md-2 {
	padding-bottom: 15px;
}
.bottom-affiliation {
	background: url('../images/bottom-affiliation-bg.jpg');
	background-size: cover;
	color: var(--white);
}

/* Prospectus */
.prospectus {
	padding: 20px 0;
}
.prospectus .date {
	margin-bottom: 0;
	padding-top: 5px;
	color: var(--blue);
}
.prospectus a {
	color: var(--grey);
}
.prospectus a:hover {
	color: var(--orange);
}

/* Newsroom */
.dropdown-year {
	display: none;
	position: absolute;
	left: 0;
	top: 43px;
	background: var(--blue);
	z-index: 100;
	max-width: 100%;
	width: 173px;
	margin: 0;
	padding: 0;
}
.dropdown-year li {
	list-style: none;
}
.dropdown-year li a {
	display: block;
	padding: 10px;
}
.dropdown-year li a:hover {
	color: var(--white);
	background: #4b6fc9;
}
.dropdown {
	position: relative;
}
.newsroom-inner {
	margin-top: 40px;
}
.new-year {
	padding-top: 50px;

	font-size: var(--fontSize34);
	letter-spacing: var(--letterSpace);
}
.new-year span {
	color: var(--green);
}
.newsroom {
	padding: 20px 0;
}
.newsroom .date {
	margin-bottom: 0;
	padding-top: 5px;
	color: var(--blue);
}
.newsroom a {
	color: var(--grey);
}
.newsroom a:hover {
	color: var(--orange);
}
.search-content h3 {
	font-size: var(--fontSize19);
	color: var(--grey);
}
#search-form label {
	display: none;
}
#search-form .form-group {
	margin: 0;
}
#search-form input {
	width: 45%;
	float: left;
	border: 1px solid #ccc;
	padding: 3px;
	height: 43px;
}
#search-form button {
	float: left;
}
.newsroom-inner .newsroom {
	border-bottom: 1px solid #f0efef;
}
.newsroom-inner .date {
	color: var(--green);
	font-weight: var(--font500);
}
.dropdown button {
	background: var(--green);
}
.dropdown .dropdown-year {
	background: var(--green);
}
.dropdown .dropdown-year a {
	color: var(--white);
}
.dropdown .dropdown-year a:hover {
	background: var(--lightGreen);
}
.financial-list {
	padding: 0;
	margin: 0;
}
.financial-list li {
	list-style: none;
}
.size {
	font-size: var(--fontSize14);
}
/* Email Alerts */
.email-content {
	max-width: 600px;
	margin: 0 auto;
	font-size: var(--fontSize24);
	line-height: 30px;
}
.invalid-feedback {
	font-size: var(--fontSize12);
}
.email-title {
	font-size: var(--fontSize19);
	color: var(--grey);
	margin-bottom: 40px;
}
/* Annual Report  */
.latest-ar {
	max-width: 800px;
	margin: 0 auto;
}
.latest-ar h2 {
	font-size: var(--fontSize24);
	color: var(--grey);
}
.latest-ar h2 span {
	color: var(--lightGreen);
}
.latest-ar .title-ar {
	margin-top: 90px;
}

.bottom-ar .col-md-4 {
	margin: 20px 0;
}
.bottom-ar h2 {
	font-size: var(--fontSize20);
	color: var(--grey);
}
.bottom-ar h2 span {
	color: var(--lightGreen);
}
.bottom-ar .title-ar {
	margin-top: 25px;
}

/* Financial Highlights */
.bottom-pie-chart-title {
	color: var(--blue);
	font-size: var(--fontSize30);
}
.financials-grouping {
	margin-bottom: 20px;
}
.financials-title {
	width: 100%;
	background: #f7f7f7;
	cursor: pointer;
	padding: 20px;
	margin-bottom: 2px;
	font-size: 20px;
}
.financials-title::before {
	color: #628aae;
	font-size: 1rem;
	content: "\F107";
	font-family: fontAwesome;
	float: right;
}
.financials-title.active::before {
	color: #b6b6b6;
	font-size: 1rem;
	content: "\F106";
	font-family: fontAwesome;
}
.financials-content {
	width: 100%;
	background: #fff;
	padding: 20px;
}
.financials-content ul {
	margin: 0;
	padding: 0;
}
.financials-content ul li {
	list-style: none;
}
.title-archive {
	font-size: var(--fontSize24);
}
.file-pdf a::before {
	content: "\f1c1";
	font-family: fontawesome;
	font-size: 26px;
	line-height: 35px;
	vertical-align: baseline;
	color: var(--green);
	padding-right: 5px;
}
.financial-archive {
	padding: 10px 0;
	display: block;
}
.financial-left {
	width: 50%;
	float: left;
}
.financial-right {
	width: 50%;
	float: left;
}
.financial-right .fa {
	font-size: 18px;
	color: var(--green);
}
.financial-right a {
	font-size: 16px;
	color: var(--green);
}
.financial-right a:hover,
.financial-right:hover .fa {
	color: var(--lightGreen);
}
.fiancials-archive h1 {
	font-size: 18px;
}
.title-archive {
	padding: 20px;
}
.divider-results {
	border-top: 1px solid grey;
	margin: 40px 0 0 0;
	clear: both;
}
/* IR Home */
.latest-news-ir {
	padding-right: 50px;
}
.latest-news-ir h2 {
	font-size: var(--fontSize24);

	color: var(--grey);
}
.latest-news-ir h2 span {
	font-size: var(--fontSize16);
	float: right;
}

h2.news-date {
	font-size: var(--fontSize18);
	color: var(--lightBlue);
}
h3.news-title {
	font-size: var(--fontSize18);
	color: var(--grey);
}
.news-content {
	padding: 20px 0;
}
.newroom-pagination {
	overflow-x: scroll;
}
.pagination li {
	padding: 10px;
}
.pagination li.active a {
	color: var(--blue);
}
.btn-newsroom {
	position: absolute;
	right: 15px;
}

/* Site Error */
.site-error {
	max-width: 1380px;
	margin: 200px auto 100px;
	padding: 0 0 50px 0;
}
.news-content .attachment::before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.news-content .attachment::before {
	vertical-align: -10%;
	font-size: 28px;
	display: inline-block;
	width: 1.07142857em;
	text-align: center;
	margin-right: 5px;
	font-weight: 900;
	content: "\f1c1";
	color: var(--green);
}

#preloader {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1005;
	position: fixed;
	overflow: visible;
	background: #ffffff url("../images/preloader.svg") no-repeat center center;
}

/* Left contact */
.left-content {
	background: #f3b055;
	padding: 15px 20px 10px 20px;
	margin-top: 100px;
	color: var(--white);
	border-radius: 2px;
	position: relative;
	z-index: 100;
}
.left-content h1 {
	font-size: var(--fontSize28);
	font-weight: var(--font500);
}
.left-content p {
	font-size: var(--fontSize14);
}
.left-content a {
	color: var(--white);
	font-size: var(--fontSize14);
}

.investment-contact {
	background: #f3b055;
	padding: 15px 20px 10px 20px;
	color: var(--white);
	border-radius: 2px;
	position: relative;
	z-index: 100;
}
.investment-contact h1 {
	font-size: var(--fontSize28);
	font-weight: var(--font500);
}
.investment-contact p {
	font-size: var(--fontSize14);
}
.investment-contact a {
	color: var(--white);
	font-size: var(--fontSize14);
}
/* Back to Top */
#button-back-to-top {
	display: inline-block;
	background-color: var(--orange);
	width: 40px;
	height: 40px;
	text-align: center;
	border-radius: 100%;
	position: fixed;
	bottom: 30px;
	right: 30px;
	transition: background-color .3s, opacity .5s, visibility .5s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
	cursor: pointer;
}
#button-back-to-top:hover {
	color: #fff;
	background: #fed01a;
}
#button-back-to-top svg {
	padding-top: 6px;
}
#button-back-to-top.show {
	opacity: 1;
	visibility: visible;
}
#___gcse_0 {
}
.gsc-input-box {
	border: 0 !important;
}
#___gcse_0 input {
	/* background: url('../images/search-bg.png') no-repeat !important; */
}
.gsc-search-button {
	display: none;
}
/* AGM */
.table-agm tr:nth-child(odd) th {
	background: var(--white);
}
.table-agm tr:nth-child(odd) {
	background: #f7f7f7;
}
.profile-ul {
	text-align: center;
	list-style-position: inside;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width: 1200px) {
}
@media (max-width: 1199px) {
	.menu > ul > li a {
		padding: 1em 2.0em;
	}
	.slide .slide__content {
		width: 80%;
	}
}

@media (max-width: 1024px) {
}

@media (max-width: 991px) {
	.menu > ul > li a {
		padding: 1em 0.9em;
	}
	.home-wwd-list {
		padding: 15px 0;
	}
	.home-wwd-list .left {
		width: 15%;
	}
	.home-wwd-list .right {
		width: 85%;
	}
	.sitemap {
		padding: 0;
		padding: 0;
	}
	.site-list {
		padding-top: 0;
	}
	.container-what-we-do .content-what-we-do {
		float: left;
		width: 100%;
	}
	.container-what-we-do .menu-what-we-do {
		float: right;
		width: 100%;
	}
	.site-menu {
		padding: 0 15px;
	}
	.latest-news-ir {
		margin-top: 100px;
	}
	.menu > ul > li a {
		padding: 1em 2.5em;
	}
	.integration-grey .side-top {
		width: auto;
	}
	.menu-what-we-do {
		padding-top: 50px;
	}
}

@media only screen and (max-width: 959px) {
	.menu-container {
		width: 100%;
	}
	.menu-mobile {
		display: block;
	}
	.menu-dropdown-icon:before {
		display: block;
	}
	.menu > ul {
		display: none;
	}
	.menu > ul > li {
		width: 100%;
		float: none;
		display: block;
	}
	.menu > ul > li a {
		padding: 1.5em;
		width: 100%;
		display: block;
	}
	.menu > ul > li > ul {
		position: relative;
	}
	.menu > ul > li > ul.normal-sub {
		width: 100%;
	}
	.menu > ul > li > ul > li {
		float: none;
		width: 100%;
		margin-top: 20px;
	}
	.menu > ul > li > ul > li:first-child {
		margin: 0;
	}
	.menu > ul > li > ul > li > ul {
		position: relative;
	}
	.menu > ul > li > ul > li > ul > li {
		float: none;
	}
	.menu .show-on-mobile {
		display: block;
	}
	.menu ul li a svg {
		display: none;
	}
	.main-slider {
		padding-top: 155px;
	}
	.menu > ul > li > ul > li a,
	.menu > ul > li > ul > li > ul > li,
	.menu ul li ul a.active {
		width: 100%;
	}
	header {
		position: absolute;
	}
}

@media (max-width: 767px) {
	.slide .slide__content--headings h2 {
		font-size: 2.8rem;
	}
	.secondText {
		font-size: var(--fontSize20);
	}
	.slide__content_list li a {
		font-size: var(--fontSize16);
	}
	.slide__content_list ul {
		margin: 0;
		padding: 0;
	}
	.bod-inner {
		padding-left: 0;
		display: block;
	}
	.director span {
		text-align: center;
		display: block;
		padding-bottom: 35px;
	}
	.bod-img {
		float: none;
		margin: 0;
	}
	.main-scroll-right {
		padding-left: 0;
		border-left: 0;
	}
	.cleaning-services-list > div {
		width: 50%;
	}
	.cleaning-services-list {
		clear: both;
	}
}

@media (max-width: 425px) {
	.sub-banner h1 {
		font-size: var(--fontSize40);
	}
}

@media (max-width: 400px) {
	.slide .slide__content--headings h2 {
		font-size: 2.0rem;
	}
	.slick-nav.prev-arrow,
	.slick-nav.next-arrow {
		display: none !important;
	}
	.home-wwd-list .left {
		width: 20%;
	}
	.home-wwd-list .right {
		width: 80%;
	}
}

@media (max-width: 375px) {
}
