@charset "UTF-8";
/*
Theme Name: RINS by Scud for Ray Goh 2026
Author: Scud
Author URI: https://scud.my/
Version: 2026.04.10
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
blockquote, q {
	font-size: 105%;
	margin: 1rem 1.5rem 3.5rem 1.5rem;
	padding: 0;
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '"';
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: inherit;
}
@-ms-viewport{
	width: device-width;
}
html {
	min-height: 100%;
	font-size: 10px;
	font-size: 62.5%;
}
body {
	height: 100%;
	min-height: 100vh;
	background: var(--beige);
	border: 3px solid var(--red);
	border-top: none;
	margin: 0;
	overflow-x: hidden;
	overflow-y: scroll;
	padding: constant(safe-area-inset-top)
			constant(safe-area-inset-right)
			constant(safe-area-inset-bottom)
			constant(safe-area-inset-left);
	padding: env(safe-area-inset-top)
			env(safe-area-inset-right)
			env(safe-area-inset-bottom)
			env(safe-area-inset-left);
	position: relative;
}
@media screen and (min-width: 48em) { /* 768px */
	body {
		border: 4px solid var(--red);
		border-top: none;
	}
}
body,
button,
input,
select,
textarea {
	color: var(--red);
	font-family: 'DM Sans', Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: 'DM Sans', Helvetica, Arial, sans-serif;
	font-weight: normal;
	line-height: 1.2;
	margin: 0 0 2rem;
}
h1 {
	font-size: 50px;
	font-size: 5rem;
}
h2 {
	font-size: 30px;
	font-size: 3rem;
}
h3 {
	font-size: 24px;
	font-size: 2.4rem;
}
h4 {
	font-size: 20px;
	font-size: 2rem;
}
h5 {
	font-size: 18px;
	font-size: 1.8rem;
}
h6 {
	font-size: 16px;
	font-size: 1.6rem;
}
p {
	margin: 0 0 2.5rem;
	padding: 0;
}
a {
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
}
a:hover {
	color: #aaa;
}
small {
	font-size: 13px;
	font-size: 1.3rem;
}
sub {
	font-size: 70%;
	vertical-align: bottom;
}
sup {
	font-size: 70%;
	vertical-align: super;
}
q {
	quotes: '"' '"' "'" "'";
}
ul, ol {
	width: 100%;
	list-style: none;
	margin: 0;
	margin-bottom: 5rem;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	padding-left: 2.5rem;
}
li {
	padding-bottom: 1rem;
	padding-left: 5px;
	position: relative;
}
button {
	height: 4rem;
	background: transparent;
	border: 2px solid var(--white);
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	font-size: 1.3rem;
	font-weight: 600;
	letter-spacing: .5px;
	padding: 5px 25px;
	text-transform: uppercase;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
}
button:hover {
	background: var(--red);
	color: var(--white);
}
button.ghost {
	background: transparent;
	border: 2px solid #888;
	color: #333;
}
button.ghost:hover {
	border: 2px solid #333;
	color: #333;
}
label {
	display: initial;
	font-weight: normal;
	margin: 0;
}
input[type='radio'] {
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto;
}
figure {
	margin: 0;
	margin-bottom: 6rem;
}
figure img,
figure video,
iframe {
	width: 100%;
}
figcaption {
	font-size: 1.2rem;
	margin-top: -5px;
}
.frame + figcaption {
	margin-top: 3px;
}
figcaption a {
	text-decoration: underline;
}
hr {
	width: 100%;
	height: 1px;
	background: rgba(var(--red-rgb),0.25);
	border: 0;
}
.container {
	width: 100%;
	max-width: 192rem;
	left: 0;
	margin: auto;
	padding: 0 1.5rem;
	position: relative;
	right: 0;
}
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-underline { text-decoration: underline; }
.hide-this { display: none; }
::-moz-selection {
	color: var(--white);
	background: rgba(var(--black-rgb),.5);
}
::selection {
	color: var(--white);
	background: rgba(var(--black-rgb),.5);
}
@media screen and (min-width: 48em) { /* 768px */
	.container {
		padding: 0 2rem;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.container {
		padding: 0 3rem;
	}
}


/* Colors */
:root {
	--black: #09050b;
	--black-rgb: 9, 5, 11;
	--red: #800020;
	--red-rgb: 128, 0, 32;
	--white: #fff;
	--white-rgb: 255, 255, 255;
	--beige: #F4EDE3;
	--blue: #2F80ED;
	--yellow: #F5C065;
	--light-red: #ff0016;
	--whatsapp: #24d366;
}


/* Display Flex */
.flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}
.column {
	-webkit-flex-flow: column wrap;
	flex-flow: column wrap;
}
/* Display Grid */
.grid-container {
	display: -ms-grid;
	display: grid;
	grid-template-columns: 100%;
}


/* Header */
.header-container {
	width: 100%;
	height: 5.6rem;
	background: var(--beige);
	border-bottom: 2px solid var(--red);
	border-top: 3px solid var(--red);
	justify-content: space-between;
	margin: auto;
	position: relative;
	z-index: 1;
}
/* Header : Logo */
.logo-container {
	width: 13.5rem;
	height: 100%;
	border-right: 2px solid var(--red);
	position: relative;
}
.logo-container a {
	text-decoration: none;
}
.logo-container .logo-icon,
.logo-icon-img {
	width: 3rem;
	height: 4.5rem;
	display: inline-block;
	line-height: 0;
	margin-left: 1.5rem;
	padding-top: 1rem;
	text-decoration: none;
	vertical-align: middle;
}
.logo-icon-img {
	object-fit: contain;
	padding-top: 5px;
}
.logo-container .logo-text {
	width: 6.2rem;
	height: max-content;
	bottom: 0;
	display: inline-block;
	font-size: 1.4rem;
	line-height: 1.4rem;
	font-weight: 500;
	left: 0;
	margin: auto;
	margin-left: 3px;
	padding-top: 6px;
	position: relative;
	right: 0;
	top: 0;
	vertical-align: middle;
}
@media screen and (min-width: 48em) { /* 768px */
	.header-container {
		border-top: 4px solid var(--red);
	}
	.logo-container {
		width: 14.2rem;
	}
	.logo-container .logo-icon,
	.logo-icon-img {
		margin-left: 2rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.header-container {
		height: 7.2rem;
	}
	.logo-container {
		width: 18.5rem;
	}
	.logo-container .logo-icon,
	.logo-icon-img {
		width: 4rem;
		height: 6rem;
		display: inline-block;
		margin-left: 3rem;
		padding-top: 1.2rem;
		vertical-align: middle;
	}
	.logo-icon-img {
		padding-top: 6px;
	}
	.logo-container .logo-text {
		font-size: 1.6rem;
		line-height: 1.6rem;
		margin-left: 5px;
	}

}
@media screen and (min-width: 90em) { /* 1440px */
	.header-container {
		height: 9rem;
	}
	.logo-container .logo-icon,
	.logo-icon-img {
		padding-top: 2.2rem;
	}
	.logo-container .logo-text {
		padding-top: 2.5rem;
	}
}

/* Header : Burger Menu */
.burger-menu-container {
	position: relative;
	right: 0;
	z-index: 13;
}
.contact-button-container.opened {
	margin-right: 5.7rem;
}
.burger-menu {
	width: 2.2rem;
	height: 1.6rem;
	cursor: pointer;
	margin-right: 2rem;
	margin-top: 1.8rem;
}
.burger-menu .bar {
	width: 2.2rem;
	height: 2.5px;
	background: var(--red);
	border-radius: 1.25px;
	margin-bottom: 4px;
	-webkit-transition: -webkit-transform .15s ease;
	transition: -webkit-transform .15s ease;
	transition: transform .15s ease;
}
.burger-menu .bar:nth-child(2) {
	width: 1.4rem;
}
.burger-menu .bar:nth-child(3) {
	width: 1.8rem;
}
.opened .burger-menu {
	padding-top: 0.6rem;
}
.opened .burger-menu .bar:nth-child(1) {
	margin-bottom: -3px;
	margin-left: -1px;
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
}
.opened .burger-menu .bar:nth-child(2) {
	width: 0;
	margin-left: 1rem;
}
.opened .burger-menu .bar:nth-child(3) {
	width: 2.2rem;
	margin-left: -1px;
	margin-top: -6px;
	-webkit-transform: rotate(-225deg);
	transform: rotate(-225deg);
}
@media screen and (min-width: 48em) { /* 768px */
	.burger-menu {
		margin-right: 2.5rem;
	}
	.contact-button-container.opened {
		margin-right: 7.2rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.burger-menu {
		margin-top: 2.6rem;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.burger-menu-container {
		display: none;
	}
}


/* Main Menu */
.header-menu-container,
.header-slide-menu-container {
	height: 100%;
	display: none;
}
.header-menu,
.header-contact,
.header-slide-menu {
	height: 100%;
	margin-bottom: 0;
}
.header-menu {
	padding-left: 0;
}
.header-menu li {
	width: auto;
	height: auto;
	align-self: center;
	cursor: pointer;
	display: inline-block;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.6rem;
	margin-left: 2.6rem;
	margin-right: 2.6rem;
	padding-bottom: 0;
	padding-left: 0;
	vertical-align: middle;
}
.header-menu li a {
	text-decoration: none;
	text-transform: uppercase;
}
.header-menu li a.highlight {
	border-bottom: 1px solid var(--blue);
	color: var(--black);
	display: inline-block;
	font-weight: 900;
}
.header-contact {
	padding-left: 0;
}
.header-contact-number,
.header-contact-button {
	width: auto;
	height: auto;
	align-self: center;
	background: var(--red);
	border-radius: 5px;
	color: var(--white);
	cursor: pointer;
	display: inline-block;
	padding: 3px 1rem;
	vertical-align: middle;
}
.header-contact-number {
	border-radius: 5px 0 0 5px;
}
.header-contact-whatsapp {
	width: auto;
	height: auto;
	align-self: center;
	background: var(--whatsapp);
	border-radius: 0 5px 5px 0;
	color: var(--white);
	cursor: pointer;
	display: inline-block;
	padding: 3px 9px;
	vertical-align: middle;
}
.header-contact-call-number,
.header-contact-button {
	display: none;
}
.header-contact li a {
	font-size: 1.4rem;
	font-weight: 500;
	text-decoration: none;
	text-transform: uppercase;
}
.header-contact li.header-contact-number {
	background: rgba(var(--red-rgb), 0.1);
	color: var(--red);
	margin-right: 0;
}
.header-contact-number-icon {
	height: 1.8rem;
	margin-left: 1rem;
	padding-bottom: 2px;
	vertical-align: middle;
}
.header-contact-whatsapp-icon {
	height: 2rem;
	padding-bottom: 2px;
	vertical-align: middle;
}
@media screen and (min-width: 30em) { /* 480px */
	.header-contact-button {
		display: inline-block;
	}
	.header-contact-whatsapp {
		margin-right: 1rem;
	}
}

@media screen and (min-width: 40em) { /* 640px */
	.header-contact-container {
		margin-left: auto;
		padding-right: 3rem;
	}
	.header-contact-call-number {
		display: inline-block;
	}
	.header-contact-call-text {
		display: none;
	}
}
@media screen and (min-width: 48em) { /* 768px */
	.header-contact li {
		padding: 5px 1.5rem;
	}
	.header-contact .header-contact-whatsapp {
		padding: 5px 1rem;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.header-menu-container {
		display: block;
	}
	.header-contact-container {
		border-left: 2px solid var(--red);
		margin-left: 0;
		padding-left: 3rem;
	}
	.header-contact .header-contact-whatsapp {
		padding: 5px 1.2rem;
	}
	.header-contact-call-number {
		display: none;
	}
	.header-contact-call-text {
		display: inline-block;
	}
}
@media screen and (min-width: 90em) { /* 1440px */
	.header-menu li {
		font-size: 1.4rem;
		line-height: 1.8rem;
		margin-left: 3.6rem;
		margin-right: 3.6rem;
	}
	.header-contact .header-contact-whatsapp {
		padding: 5px 1.5rem;
	}
	.header-contact-call-number {
		display: inline-block;
	}
	.header-contact-call-text {
		display: none;
	}
}
@media screen and (min-width: 100em) { /* 1800px */
	.header-menu li {
		margin-left: 4.2rem;
		margin-right: 4.2rem;
	}
}


/* Main Menu : Slide In Menu */
.header-slide-menu-container {
	width: 100%;
	height: 0;
	background: var(--beige);
	border-bottom: 0 solid var(--red);
	display: block;
	padding: 0;
	position: relative;
	transform: translate(0, -110%);
	visibility: hidden;
	z-index: 0;
}
.header-slide-menu-container.show {
	height: 100%;
	border-bottom: 2px solid var(--red);
	padding: 2.5rem 0 2rem;
	transform: translate(0, 0);
	transition: all .5s ease;
	visibility: visible;
}
.header-slide-menu {
	padding-left: 5rem;
}
.header-slide-menu li {
	height: 0;
	opacity: 0;
	visibility: hidden;
}
.show .header-slide-menu li {
	height: auto;
	opacity: 1;
	visibility: visible;
}
.header-slide-menu li:not(:last-child) {
	padding-bottom: 1.5rem;
}
.header-slide-menu li a {
	font-weight: 600;
	line-height: 1.5;
	text-decoration: none;
}
.header-slide-menu li a.highlight {
	border-bottom: 1px solid var(--blue);
	color: var(--black);
	display: inline-block;
	font-weight: 900;
}
@media screen and (min-width: 80em) { /* 1280px */
	.header-slide-menu-container {
		display: none;
	}
}


/* Footer */
footer {
	position: relative;
	z-index: 1;
}
.footer-container {
	background: rgba(var(--black-rgb), 0.05);
	margin-bottom: 2rem;
	padding: 1.5rem 0;
}
.copyright-container p {
	width: 100%;
	font-size: 1.3rem;
	line-height: 1.8;
}
.footer-container .logo-container {
	width: 13.5rem;
	border-right: 0;
	margin-bottom: 3rem;
}
.footer-container .logo-container .logo-icon {
	height: auto;
	margin-left: 0;
	padding-top: 5px;
}
.footer-container .logo-container .logo-text {
 	padding-top: 7px;
}
.footer-menu-container {
	margin-bottom: 2rem;
	padding-left: 0;
}
.footer-menu-container li {
	width: 100%;
	display: block;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.5;
	padding-bottom: 2rem;
	padding-left: 0;
}
.footer-menu-container li a {
	text-decoration: none;
	text-transform: uppercase;
}
.footer-menu-container li a.highlight {
	border-bottom: 1px solid var(--blue);
	color: var(--black);
	display: inline-block;
	font-weight: 900;
}
.footer-address-container h6 {
	width: 100%;
	/*color: rgba(var(--red-rgb), 0.35);*/
	font-size: 1.3rem;
	/*font-weight: 600;*/
	margin-bottom: 1.5rem;
	text-transform: uppercase;
}
.footer-address-container p {
	width: 100%;
	font-size: 1.3rem;
	margin-bottom: 2rem;
	text-transform: uppercase;
}
.footer-address-container p:nth-child(2) {
	max-width: 28rem;
}
.footer-address-contacts a {
	width: 100%;
	display: inline-block;
	margin-bottom: 1rem;
	text-decoration: none;
	text-transform: none;
}
.footer-address-icon {
	height: 2rem;
	margin-right: 8px;
	padding-bottom: 2px;
	vertical-align: middle;
}
.footer-social-container {
	margin-bottom: 0;
	padding-left: 0;
}
.footer-social-container li {
	display: inline-block;
	padding-bottom: 1.5rem;
	padding-left: 0;
}
.footer-social-icon {
	height: 3rem;
	margin-right: 1.8rem;
	vertical-align: middle;
}
@media screen and (min-width: 40em) { /* 640px */
	.footer-menu-container {
		grid-template-columns: 1fr 1fr;
	}
}
@media screen and (min-width: 48em) { /* 768px */
	.footer-menu-container {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.copyright-container p {
		font-size: 1.5rem;
	}
	.copyright-container span {
		display: none;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.footer-container {
		padding: 2rem 0;
	}
	.footer-container .logo-container {
		width: 16%;
	}
	.footer-menu-container {
		width: 60%;
		grid-auto-rows: max-content;
		margin-top: 5px;
	}
	.footer-address-container {
		width: 24%;
		margin-top: 5px;
	}

}
@media screen and (min-width: 80em) { /* 1280px */
	.footer-container {
		padding: 2.5rem 0;
	}
	.footer-container .logo-container {
		width: 18%;
	}
	.footer-menu-container {
		width: 52%;
		grid-auto-rows: max-content;
		margin-top: 5px;
	}
	.footer-address-container {
		width: 30%;
		margin-top: 5px;
	}
	.footer-address-contacts a {
		width: auto;
		display: inline-block;
		margin-right: 1.5rem;
	}
	.footer-address-container p:last-child {
		margin-bottom: 0;
	}
}


/* Homepage : Hero */
.hero-container {
	padding-bottom: 5rem;
	padding-top: 5rem;
}
.hero-text-container,
.hero-img-container {
	width: 100%;
}
.hero-text-container {
	background-image: url('img/hero-img-03.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 1rem;
	padding: 5rem 3.5rem;
}
.hero-title {
	font-size: 2.4rem;
	line-height: 1.25;
	margin-bottom: 2.5rem;
	text-transform: capitalize;
	text-shadow: -1px -1px 0 var(--white), 1px -1px 0 var(--white),
				 -1px 1px 0 var(--white), 1px 1px 0 var(--white);
}
.hero-title span {
	display: block;
	font-size: 3rem;
	font-family: 'PT Serif', Helvetica, Arial, sans-serif;
	font-style: italic;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 5px;
}
.hero-description {
	width: 100%;
	max-width: 30rem;
	color: var(--white);
	font-size: 1.4rem;
	margin-bottom: 3.5rem;
}
.hero-button {
	background: rgba(var(--red-rgb), 0.8);
	border-radius: 5px;
	color: var(--white);
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 5rem;
	padding: 1.5rem 4rem;
	text-decoration: none;
	text-transform: uppercase;
}
.hero-img-container {
	width: 100%;
	height: 24rem;
	overflow: hidden;
}
.hero-img-container img {
	width: 100%;
	height: 100%;
	border-radius: 1rem;
	object-fit: contain;
}
@media screen and (min-width: 40em) { /* 640px */
	/*.hero-container {
		gap: 5%;
		grid-template-columns: 50% 45%;
	}*/
	.hero-text-container {
		justify-content: center;
	}
	.hero-button {
		margin-bottom: 0;
	}
	.hero-img-container {
		height: 36rem;
	}
}
@media screen and (min-width: 48em) { /* 768px */
	/*.hero-container {
		gap: 4%;
		grid-template-columns: 48% 48%;
		margin-bottom: 2rem;
	}*/
	.hero-title {
		font-size: 3rem;
	}
	.hero-title span {
		font-size: 3.6rem;
	}
	.hero-description {
		max-width: 35rem;
		font-size: 1.6rem;
	}
	.hero-img-container {
		height: 40rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	/*.hero-container {
		gap: 0;
		grid-template-columns: 50% 50%;
	}*/
	.hero-title {
		font-size: 3.6rem;
	}
	.hero-title span {
		font-size: 4.2rem;
	}
	.hero-button {
		font-size: 1.6rem;
		margin-bottom: 1.5rem;
		padding: 1.5rem 4.5rem;
	}
	.hero-img-container {
		height: 46rem;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.hero-container {
		margin-bottom: 5rem;
	}
	.hero-text-container {
		padding: 7.5rem;
		padding-top: 7rem;
	}
	.hero-title {
		font-size: 3.8rem;
		margin-bottom: 3.5rem;
	}
	.hero-title span {
		font-size: 4.6rem;
	}
	.hero-description {
		max-width: 40rem;
		font-size: 1.8rem;
		margin-bottom: 4rem;
	}
	.hero-img-container {
		height: 50rem;
	}
}


/* Homepage : Highlight */
.highlight-container {
	margin-bottom: 5rem;
}
.highlight-item {
	align-content: space-between;
	border-top: 2px solid var(--red);
	margin-bottom: 5rem;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 2rem;
	text-decoration: none;
}
.highlight-title {
	width: 80%;
	font-family: 'PT Serif', Helvetica, Arial, sans-serif;
	font-size: 3rem;
	font-style: italic;
	font-weight: bold;
	margin-bottom: 3rem;
	position: relative;
	text-transform: capitalize;
	z-index: 1;
}
.highlight-content {
	width: 100%;
}
.highlight-description {
	width: 62%;
	color: var(--black);
	font-size: 1.4rem;
	line-height: 1.5;
	margin-bottom: 0;
	text-transform: uppercase;
}
.long-arrow {
	width: 38%;
	align-content: flex-end;
	justify-content: center;
	overflow: hidden;
	position: relative;
}
.long-arrow-one,
.long-arrow-two {
	width: 100%;
	height: 0;
	position: relative;
}
.long-arrow-one {
	transform: translate(-105%, 0);
}
.highlight-item:hover .long-arrow-one {
	transform: translate(0, 0);
	transition: all .5s;
}
.highlight-item:hover .long-arrow-two {
	transform: translate(105%, 0);
	transition: all .5s;
}
.long-arrow .long-arrow-line {
	width: 6rem;
	height: 1.5px;
	background-color: var(--black);
	position: absolute;
	right: 5px;
	vertical-align: middle;
}
.long-arrow .long-arrow-triangle {
	background-color: var(--black);
	position: absolute;
	right: 3px;
	top: -2px;
	vertical-align: middle;
}
.long-arrow .long-arrow-triangle:before,
.long-arrow .long-arrow-triangle:after {
	content: '';
	position: absolute;
	background-color: inherit;
}
.long-arrow .long-arrow-triangle,
.long-arrow .long-arrow-triangle:before,
.long-arrow .long-arrow-triangle:after {
	width: 5px;
	height: 5px;
	border-top-right-radius: 45%;
}
.long-arrow .long-arrow-triangle {
	transform: rotate(30deg) skewX(-30deg) scale(1,.866);
}
.long-arrow .long-arrow-triangle:before {
	transform: rotate(-135deg) skewX(-45deg) scale(1.414,.707) translate(0,-50%);
}
.long-arrow .long-arrow-triangle:after {
	transform: rotate(135deg) skewY(-45deg) scale(.707,1.414) translate(50%);
}
@media screen and (min-width: 48em) { /* 768px */
	.highlight-container {
		gap: 1.5rem;
		grid-template-columns: 1fr 1fr 1fr;
	}
	.highlight-item {
		border-bottom: 2px solid var(--red);
		padding-bottom: 3.5rem;
		padding-top: 3rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.highlight-container {
		gap: 2rem;
	}
	.highlight-title {
		width: 70%;
		font-size: 3.6rem;
	}
	.highlight-description {
		width: 45%;
		font-size: 1.5rem;
	}
	.long-arrow {
		width: 35%;
		margin-left: auto;
	}
}
@media screen and (min-width: 80em) { /* 1280px */

}


/* Homepage : Map */
.malaysia-map-container {
	margin-bottom: 5rem;
}
.malaysia-map {
	max-width: 48rem;
	background: rgba(var(--black-rgb), 0.05);
	border-radius: 1rem;
	overflow: hidden;
	padding: 0 1rem;
	padding-bottom: 5rem;
}
.malaysia-map-container svg {
	width: 320%;
}
#Malaysia {
	cursor: pointer;
}
#East_Malaysia,
.selangor_active,
.selangor_zoom {
	display: none;
	opacity: 0;
}
.malaysia-map-container svg:hover .selangor_active {
	display: block;
	opacity: 1;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.zoomed #West_Malaysia {
	display: none;
	opacity: 0;
}
.selangor_zoom {
	-webkit-transform: scale(0.9, 0.9);
	transform: scale(0.9, 0.9);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.zoomed .selangor_zoom {
	display: block;
	opacity: 1;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}
.region-dot {
	cursor: pointer;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.region-dot:hover {
	opacity: .75;
}
.region-dot.highlight .st11 {
	fill: var(--blue);
}
.region-dot.highlight .st12 {
	stroke: var(--blue);
}
.malaysia-map-zoom-text-container {
	margin-left: 5px;
}
.zoomed .malaysia-map-zoom-text-container {
	display: none;
}
.malaysia-map-zoom-text {
	color: var(--black);
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 0;
	text-transform: uppercase;
}
.malaysia-map-zoom-back-container {
	cursor: pointer;
	display: none;
	position: relative;
}
.zoomed .malaysia-map-zoom-back-container {
	display: block;
}
.malaysia-map-zoom-back-arrow-container {
	width: 8rem;
	display: inline-block;
	margin-left: 1rem;
	overflow: hidden;
	position: relative;
	vertical-align: middle;
}
.malaysia-map-zoom-back-arrow {
	width: 0;
	display: inline-block;
	overflow: visible;
	position: relative;
	vertical-align: middle;
}
.malaysia-map-back-text {
	color: var(--black);
	left: 10rem;
	position: absolute;
	top: 2px;
}
.malaysia-map-zoom-back-arrow-container .long-arrow-one,
.malaysia-map-zoom-back-arrow-container .long-arrow-two {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}
.malaysia-map-zoom-back-container .long-arrow-one {
	transform: translate(0, 0) scaleX(-1);
}
.malaysia-map-zoom-back-container .long-arrow-two {
	transform: translate(8rem, 0) scaleX(-1);
}
.malaysia-map-zoom-back-container:hover .long-arrow-one {
	transform: translate(-8rem, 0) scaleX(-1);
	transition: all .25s;
}
.malaysia-map-zoom-back-container:hover .long-arrow-two {
	transform: translate(0, 0) scaleX(-1);
	transition: all .25s;
}
@media screen and (min-width: 22.5em) { /* 360px */
	.malaysia-map-zoom-text-container {
		margin-left: 1rem;
	}
}
@media screen and (min-width: 48em) { /* 768px */
	#East_Malaysia {
		display: block;
		opacity: 1;
	}
	.zoomed #East_Malaysia {
		display: none;
		opacity: 0;
	}
	.malaysia-map {
		max-width: 100%;
		padding: 2rem;
		padding-bottom: 5rem;
	}
	.malaysia-map-container svg {
		width: 100%;
		transition: all .45s;
	}
	.malaysia-map-container .zoomed svg {
		width: 125%;
		padding-top: 5rem;
		transform: translate(42.5%, 0);
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.malaysia-map {
		padding: 5rem 3rem;
	}
	.malaysia-map-zoom-text {
		font-size: 2.4rem;
	}
	.malaysia-map-container .zoomed svg {
		width: 100%;
		padding-top: 2.5rem;
		transform: translate(48%, 0);
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.malaysia-map {
		padding: 5rem 3rem 7.5rem;
	}
	.malaysia-map-zoom-text {
		font-size: 2.8rem;
	}
}


/* Homepage : Map Region */
.malaysia-map-region-container {
	margin-left: 5px;
	margin-top: 2.5rem;
}
.malaysia-map-region-title {
	background: rgba(var(--red-rgb),.1);
	border-radius: 5px;
	color: var(--black);
	cursor: pointer;
	margin-bottom: 1rem;
	padding: 1rem 2rem;
	transition: all .35s;
}
.malaysia-map-region-title:hover {
	background: rgba(var(--red-rgb),.25);
}
.malaysia-map-region.active .malaysia-map-region-title {
	color: var(--white);
	background: var(--red);
}
.malaysia-map-region-city-container {
	height: 0;
	background: var(--beige);
	border-radius: 5px;
	margin-bottom: 0;
	padding: 0 2rem;
	opacity: 0;
	visibility: hidden;
}
.malaysia-map-region-city-container.show {
	height: auto;
	margin-bottom: 2rem;
	padding: 1rem 2rem;
	opacity: 1;
	transition: all .2s;
	visibility: visible;
}
.malaysia-map-region-city {
	color: var(--black);
	padding-left: 0;
	padding-top: 5px;
}
.malaysia-map-region-city a {
	text-decoration: none;
}
.malaysia-map-region-city a:hover {
	color: var(--blue);
	text-decoration: underline;
}
.malaysia-map-region-city:first-child {
	padding-top: 1rem;
}
@media screen and (min-width: 48em) { /* 768px */
	.malaysia-map-region-container {
		width: 30rem;
		left: 3rem;
		margin: 0;
		opacity: 0;
		position: absolute;
		top: 3rem;
		transform: translate(-50%, 0);
		visibility: hidden;
	}
	.zoomed .malaysia-map-region-container {
		opacity: 1;
		transform: translate(0, 0);
		transition: all .35s;
		transition-delay: .2s;
		visibility: visible;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.malaysia-map-region-container {
		top: 5rem;
	}
	.malaysia-map-region-title,
	.malaysia-map-region-city {
		font-size: 1.8rem;
	}
}


/* Homepage : District Info */
.district-select-container {
	margin-bottom: 5rem;
}
.district-menu-container {
	overflow: scroll;
}
.district-menu-container::-webkit-scrollbar {
	display: none;
}
.district-menu-container .flex {
	width: max-content;
}
.district-menu {
	background: rgba(var(--red-rgb),.1);
	border-radius: 5px;
	cursor: pointer;
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 500;
	margin-bottom: 1rem;
	margin-right: 1rem;
	padding: 1rem 2rem;
	text-transform: uppercase;
	transition: all .35s;
}
.district-menu:last-child {
	margin-right: 0;
}
.district-menu:hover {
	background: rgba(var(--red-rgb),.25);
}
.district-menu.active {
	color: var(--white);
	background: var(--red);
}
.district-select-menu-container {
	width: 100%;
	/*align-content: center;*/
	background: rgba(var(--black-rgb), 0.05);
	border-radius: 1rem;
	padding: 2rem 1rem;
}
.district-select-menu {
	display: none;
	margin-bottom: 0;
	padding-left: 1rem;
}
.district-select-menu.show {
	display: block;
}
.district-select {
	color: rgba(var(--black-rgb), 0.5);
	cursor: pointer;
	padding-bottom: 5px;
	padding-left: 2.5rem;
	padding-top: 5px;
	position: relative;
	text-transform: uppercase;
}
.district-select.selected {
	color: rgba(var(--black-rgb), 1);
	font-weight: 500;
}
.district-select.selected:before {
	width: 1.5rem;
	height: 1.5rem;
	background: var(--yellow);
	border-radius: 50%;
	content: '';
	display: block;
	left: 0;
	position: absolute;
	top: 1.1rem;
}
.district-select-title {
	width: 20rem;
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 3.5rem;
	margin-top: 3.5rem;
	text-transform: uppercase;
}
.district-info-box {
	height: 0;
	border-top: 2px solid var(--red);
	margin-bottom: 0;
	opacity: 0;
	padding-top: 0;
	transition: all .5s;
	visibility: hidden;
}
.district-info-box.show {
	height: auto;
	margin-bottom: 5rem;
	opacity: 1;
	padding-top: 1.5rem;
	visibility: visible;
}
.district-info-box-title-container {
	width: 42%;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.2;
	padding-right: 2rem;
	text-transform: uppercase;
}
.district-info-box-spec-container {
	width: 58%;
}
.district-info-box-img-container {
	width: 100%;
	line-height: 1;
}
.district-info-box-title {
	font-weight: 900;
}
.district-info-box-spec-key {
	font-family: 'PT Serif', Helvetica, Arial, sans-serif;
	font-style: italic;
	font-weight: bold;
	line-height: 1.3;
	margin-bottom: 5px;
}
.district-info-box-spec-value {
	margin-bottom: 1.5rem;
	line-height: 1.4;
}
.district-info-box-img img {
	width: 100%;
	display: block;
	margin-bottom: 1rem;
}
.district-info-box-button {
	width: 100%;
	background: rgba(var(--red-rgb),.1);
	border-radius: 5px;
	display: block;
	font-weight: 600;
	padding: 2rem 1rem;
	text-align: center;
	text-transform: uppercase;
}
@media screen and (min-width: 40em) { /* 640px */
	.district-select-container {
		gap: 2rem;
		grid-template-columns: 1fr 1fr;
	}
	.district-select-title-container {
		order: 1;
	}
	.district-select-menu-container {
		order: 2;
	}
	.info-semi-d {
		order: 3;
	}
	.info-detached {
		order: 4;
	}
	.info-land {
		order: 5;
	}
	.info-terrace {
		order: 6;
	}
	.district-info-box {
		margin-bottom: 1.5rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.district-select-container {
		grid-template-columns: 2fr 1fr;
	}
	.district-menu {
		font-size: 1.6rem;
		padding: 1.5rem 3.5rem;
	}
	.district-info-box-title-container {
		width: 20%;
	}
	.district-select-title {
		margin-bottom: 5rem;
		margin-top: 5rem;
	}
	.district-info-box-spec-container {
		width: 35%;
		padding-right: 2rem;
	}
	.district-info-box-spec-key {
		font-size: 1.5rem;
	}
	.district-info-box-spec-value {
		font-size: 1.3rem;
	}
	.district-info-box-img-container {
		width: 45%;
	}
	.district-info-box-img img {
		height: 28rem;
		object-fit: cover;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.district-select-container {
		margin-bottom: 8.5rem;
	}
	.district-info-box-title-container {
		font-size: 1.6rem;
	}
	.district-info-box-spec-key {
		font-size: 1.6rem;
	}
	.district-info-box-spec-value {
		font-size: 1.5rem;
	}
	.district-info-box-img img {
		height: 36rem;
	}
}


/* Homepage : District Selector */
.district-selector-region-container {
	width: 100%;
	margin-left: 5px;
}
.district-selector-region:last-child .district-selector-region-title {
	margin-bottom: 0;
}
.district-selector-region-title {
	background: rgba(var(--red-rgb),.1);
	border-radius: 5px;
	color: var(--black);
	cursor: pointer;
	margin-bottom: 1rem;
	padding: 1rem 2rem;
	transition: all .35s;
}
.district-selector-region-title:hover {
	background: rgba(var(--red-rgb),.25);
}
.district-selector-region.active .district-selector-region-title {
	color: var(--white);
	background: var(--red);
}
.district-selector-region-city-container {
	height: 0;
	background: var(--beige);
	border-radius: 5px;
	margin-bottom: 0;
	padding: 0 2rem;
	opacity: 0;
	visibility: hidden;
}
.district-selector-region-city-container.show {
	height: auto;
	margin-bottom: 2rem;
	padding: 1rem 2rem;
	opacity: 1;
	transition: all .2s;
	visibility: visible;
}
.district-selector-region-city {
	align-items: center;
	color: var(--black);
	flex-wrap: nowrap;
	padding-left: 0;
	padding-top: 5px;
}
.district-selector-region a {
	display: inline-block;
	margin-left: auto;
	text-decoration: none;
}
.district-selector-region button {
	border-color: var(--red);
	color: var(--red);
}
.district-selector-region button:hover {
	color: var(--white);
}
.district-inquiry-button-request-text {
	display: none;
}
.district-selector-region-city:first-child {
	padding-top: 1rem;
}
@media screen and (min-width: 64em) { /* 1024px */
	.district-inquiry-button-request-text {
		/*display: initial;*/
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.district-selector-region-title,
	.district-selector-region-city {
		font-size: 1.8rem;
	}
}


/* Homepage : Chokepoints */
.chokepoints-title-container {
	max-width: 128rem;
}
.chokepoints-title {
	width: 40rem;
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 3.5rem;
	text-transform: uppercase;
}
.chokepoints-swiper-container {
	margin-bottom: 10rem;
	overflow-x: hidden;
}
.chokepoints-slide img {
	width: 100%;
	margin-bottom: -1rem;
}
.chokepoints-slide-top-container {
	background: var(--red);
	border-radius: 1rem 1rem 0 0;
	color: var(--white);
	padding: 2rem;
}
.chokepoints-slide-title {
	font-size: 2.2rem;
	font-weight: 700;
}
.chokepoints-slide-subtitle {
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 0;
}
.chokepoints-slide-bottom-container {
	background: var(--red);
	border-radius: 0 0 1rem 1rem;
	color: var(--white);
	padding: 2rem;
}
.chokepoints-slide-description {
	font-size: 1.4rem;
	margin-bottom: 1rem;
}
.chokepoints-slide-description sup {
	display: inline-block;
}
.chokepoints-slide-description sub {
	width: 100%;
	display: inline-block;
	text-align: right;
}
@media screen and (min-width: 48em) { /* 768px */
	.chokepoints-swiper-container {
		margin-bottom: 15rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.chokepoints-slide-top-container,
	.chokepoints-slide-bottom-container {
		padding: 3rem;
	}
	.chokepoints-slide-title {
		font-size: 2.4rem;
	}
	.chokepoints-slide-subtitle {
		font-size: 1.8rem;
	}
	.chokepoints-slide-description {
		font-size: 1.5rem;
	}
}
@media screen and (min-width: 80em) { /* 1280px */

}


/* Homepage : Featured Listings */
.featured-listings-title {
	width: 20rem;
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 3.5rem;
	text-transform: uppercase;
}
.featured-listings-item-container {
	overflow: scroll;
}
.featured-listings-item-container::-webkit-scrollbar {
	display: none;
}
.featured-listings-item-container > .flex {
	width: max-content;
	gap: 1.5rem;
}
.featured-listings-item {
	width: 50vw;
}
.district-info-item-img {
	width: 100%;
	margin-bottom: 1rem;
}
.district-info-item-img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.district-info-item-content,
.district-info-item-title-container,
.district-info-item-location-container,
.district-info-item-button-container {
	width: 100%;
}
.district-info-item-tag {
	height: 2.8rem;
	background: var(--red);
	border-radius: 5px;
	color: var(--white);
	display: inline-block;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 5px;
	padding: 8px 1.2rem;
	text-transform: uppercase;
}
.district-info-item-title {
	width: 65%;
	font-family: 'PT Serif', Helvetica, Arial, sans-serif;
	font-style: italic;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 1rem;
}
.district-info-item-location {
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 3.5rem;
	text-transform: uppercase;
}
.district-info-item-button-container {
	border-top: 2px solid var(--red);
	padding-bottom: 5px;
	padding-top: 5px;
}
.district-info-item-button {
	font-size: 1.2rem;
	font-weight: 600;
	text-transform: uppercase;
}
.featured-listings-item {
	text-decoration: none;
}
.featured-listings-item .long-arrow {
	margin-left: auto;
	margin-right: 1rem;
}
.featured-listings-item:hover .long-arrow-one {
	transform: translate(0, 0);
	transition: all .5s;
}
.featured-listings-item:hover .long-arrow-two {
	transform: translate(105%, 0);
	transition: all .5s;
}
.featured-listings-button-container {
	width: 100%;
	margin-bottom: 10rem;
	margin-top: 2.5rem;
	text-align: center;
}
.featured-listings-button {
	background: rgba(var(--red-rgb),.1);
	border-radius: 5px;
	display: block;
	font-weight: 600;
	margin: auto;
	padding: 1.5rem 3rem;
	text-decoration: none;
	text-transform: uppercase;
}
.featured-listings-view-all-item .district-info-item-button-container {
	border: 3px solid var(--red);
}
.featured-listings-view-all-item .district-info-item-button {
	align-self: center;
	padding-left: 2rem;
}
.featured-listings-view-all-item .long-arrow {
	width: 25%;
}
.featured-listings-view-all-item:hover .long-arrow-two {
	transform: translate(150%, 0);
}
@media screen and (min-width: 40em) { /* 640px */
	.featured-listings-item-container > .flex {
		gap: 3rem;
	}
	.featured-listings-item {
		width: 60vw;
		gap: 1.4rem;
	}
	.district-info-item-img,
	.district-info-item-content {
		width: calc(50% - 7px);
		margin-bottom: 0;
	}
	.district-info-item-tag {
		margin-left: auto;
	}
	.district-info-item-title {
		margin-bottom: 2rem;
	}
	.district-info-item-location {
		margin-bottom: 6rem;
	}
	.featured-listings-button-container {
		margin-top: 5rem;
	}
}
@media screen and (min-width: 60em) { /* 960px */
	.featured-listings-item-container > .flex {
		gap: 5rem;
	}
	.featured-listings-item {
		gap: 2rem;
	}
	.district-info-item-img,
	.district-info-item-content {
		width: calc(50% - 1rem);
	}
	.district-info-item-title {
		font-size: 2.4rem;
	}
	.district-info-item-location {
		font-size: 1.4rem;
		margin-bottom: 7rem;
	}
	.district-info-item-button-container {
		padding-bottom: 1rem;
		padding-top: 1rem;
	}
	.district-info-item-button {
		font-size: 1.4rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.featured-listings-item {
		width: 50vw;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.featured-listings-item {
		width: 45vw;
	}
	.district-info-item-location {
		margin-bottom: 12rem;
	}
}


/* Homepage : Why Invest */
.why-invest-container {
	max-width: 128rem;
}
.why-invest-title {
	width: 26rem;
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 3.5rem;
	text-transform: uppercase;
}
.why-invest-item-container {
	margin-bottom: 10rem;
}
.why-invest-item {
	border-top: 2px solid var(--red);
	margin-bottom: 5rem;
	padding-top: 1.5rem;
}
.why-invest-item:last-child {
	margin-bottom: 0;
}
.why-invest-item-title {
	font-size: 2.4rem;
	font-family: 'PT Serif', Helvetica, Arial, sans-serif;
	font-style: italic;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 3.5rem;	
}
.why-invest-item-description {
	font-size: 1.4rem;
	line-height: 1.5;
	margin-bottom: 0;
	text-transform: uppercase;
}
.why-invest-item-description b {
	font-weight: 600;
}
@media screen and (min-width: 48em) { /* 768px */
	.why-invest-title-container,
	.why-invest-item-container {
		width: 50%;
	}
	.why-invest-title-container {
		display: block;
	}
	.why-invest-title {
		margin-bottom: 9.5rem;
		position: sticky;
		top: 5rem;
	}
	.why-invest-item {
		padding-top: 2rem;
	}
	.why-invest-item-title {
		font-size: 2.8rem;
		margin-bottom: 5rem;
	}
}


/* Homepage : Solutions */
.solutions-expertise-title-container {
	max-width: 128rem;
}
.solutions-expertise-title {
	width: 30rem;
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 3.5rem;
	text-transform: uppercase;
}
.solutions-button-container {
	width: 8.5rem;
	height: 3rem;
	bottom: 2.5rem;
	display: none;
	position: absolute;
	right: 1.5rem;
}
.swiper-button-next .long-arrow-triangle,
.swiper-button-prev .long-arrow-triangle {
	top: 1rem;
}
.swiper-button-next .long-arrow-triangle,
.swiper-button-prev .long-arrow-triangle,
.solutions-button-container .long-arrow-triangle:before,
.solutions-button-container .long-arrow-triangle:after {
	width: 1.2rem;
	height: 1.2rem;
}
.solutions-button-container .swiper-button-next,
.solutions-button-container .swiper-button-prev {
	width: 2rem;
	height: 3.1rem;
	color: transparent;
}
.solutions-button-container .swiper-button-prev {
	top: 1.6rem;
	transform: rotate(180deg);
}
.solutions-expertise-swiper-container {
	margin-bottom: 10rem;
	overflow: hidden;
}
.solutions-expertise-swiper-line {
	border-top: 1px solid var(--blue);
	margin-top: 5rem;
}
.solutions-expertise-slide.swiper-slide {
	width: max-content;
	padding: 4.5rem 8rem 0 0;
	position: relative;
}
.solutions-expertise-slide.swiper-slide:last-child {
	width: calc(100% - 1.4rem);
}
.solutions-expertise-slide:before {
	width: 1.7rem;
	height: 1.7rem;
	background: var(--blue);
	border-radius: 50%;
	content: '';
	display: block;
	left: 9.5px;
	position: absolute;
	top: -8.5px;
}
.solutions-expertise-slide:after {
	width: 2.4rem;
	height: 2.4rem;
	border: 1.5px solid var(--yellow);
	border-radius: 50%;
	content: '';
	left: 4.5px;
	opacity: 0;
	position: absolute;
	top: -13.5px;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
	transition-delay: .25s;
}
.solutions-expertise-slide.swiper-slide-active:before {
	background: var(--yellow);
}
.solutions-expertise-slide.swiper-slide-active:after {
	opacity: 1;
}
.solutions-expertise-slide-title {
	width: 20rem;
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1.4;
	text-transform: uppercase;
}
.solutions-expertise-slide-description {
	width: 24rem;
	font-size: 1.4rem;
	line-height: 1.4;
	margin-bottom: 0;
	opacity: 0;
}
.solutions-expertise-slide-description b {
	font-weight: 600;
}
.solutions-expertise-slide-subtitle {
	font-weight: 600;
}
.solutions-expertise-slide-list {
	list-style: disc;
	margin-bottom: 2rem;
}
.swiper-slide-active .solutions-expertise-slide-description {
	opacity: 1;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
	transition-delay: .15s;
}
@media screen and (min-width: 30em) { /* 480px */
	.solutions-button-container {
		display: block;
	}
}
@media screen and (min-width: 48em) { /* 768px */
	.solutions-expertise-title {
		margin-top: 5rem;
	}
	/*.solutions-expertise-swiper-container {
		margin-bottom: 15rem;
	}*/
	.solutions-expertise-slide.swiper-slide:last-child {
		width: calc(100% - 2rem);
	}
	.solutions-button-container {
		right: 2rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.solutions-expertise-slide-title {
		font-size: 1.6rem;
	}
	.solutions-expertise-slide-description {
		width: 26rem;
		font-size: 1.5rem;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.solutions-expertise-slide.swiper-slide:last-child {
		width: calc(100% - 3rem);
	}
	.solutions-button-container {
		right: 3rem;
	}
}
@media screen and (min-width: 1281px) { /* 1281px */
	.solutions-expertise-slide.swiper-slide:last-child {
		width: auto
	}
}


/* Contact Form : Right Column */
.contact-form-container {
	margin-bottom: 5rem;
}
.contact-form-container > .flex {
	background: var(--red);
	border-radius: 1rem;
	color: var(--beige);
	padding: 5rem 2rem;	
}
.contact-form-left-column,
.contact-form-right-column {
	width: 100%;
	max-width: 64rem;
}
.contact-form-left-column {
	margin-left: auto;
	margin-right: auto;
}
.contact-form-left-column .wpcf7 {
	width: 100%;
}
.contact-form-right-column {
	margin-bottom: 5rem;
	/*margin-left: auto;*/
	margin-right: auto;
}
.contact-form-right-top,
.contact-form-right-middle,
.contact-form-right-bottom {
	width: 100%;
}
.contact-form-right-title {
	width: 100%;
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 3rem;
	text-transform: uppercase;
}
.contact-form-container p.contact-form-right-phone,
.contact-form-container p.contact-form-right-email {
	margin-bottom: 2rem;
}
.contact-form-right-phone .contact-form-whatsapp img {
	width: 3.5rem;
	height: 3.5rem;
	background: var(--whatsapp);
	border-radius: 5px;
	object-fit: contain;
	margin-left: 1rem;
	margin-right: 0;
	padding: 5px;
}
.contact-form-whatsapp img {
	margin-right: 0;
}
.contact-form-container p.contact-form-right-email {
	margin-bottom: 3.5rem;
}
.contact-form-right-phone,
.contact-form-right-email,
.contact-form-right-name,
.contact-form-right-position,
.contact-form-right-code,
.contact-form-right-url {
	width: 100%;
}
.contact-form-right-phone a,
.contact-form-right-email a {
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 600;
	text-decoration: none;
	vertical-align: middle;
}
.contact-form-right-phone img,
.contact-form-right-email img {
	width: 3.2rem;
	height: 3.2rem;
	margin-right: 1rem;
	object-fit: contain;
	vertical-align: middle;
}
.contact-form-right-img {
	width: 100%;
	height: 36rem;
	border-radius: 8px;
	display: block;
	margin-bottom: 1.5rem;
	margin-top: 0;
	object-fit: cover;
	object-position: top center;
}
.contact-form-right-name {
	font-family: 'PT Serif', Helvetica, Arial, sans-serif;
	font-style: italic;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 5px;
}
.contact-form-right-position,
.contact-form-right-code {
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 2px;
	text-transform: uppercase;
}
.contact-form-right-url {
	display: inline-block;
	font-size: 1.3rem;
	margin-top: 5px;
	text-decoration-style: dotted;
}
.contact-form-right-bottom-left {
	width: 55%;
}
.contact-form-right-bottom-right {
	width: 45%;
	align-items: center;
	justify-content: right;
}
.contact-form-right-bottom-right-logo {
	max-width: 90%;
	max-height: 8rem;
	object-fit: contain;
}
.contact-form-right-bottom-award-container {
	width: 100%;
	margin-top: 2.5rem;
	overflow-y: scroll;
	padding: 0;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.contact-form-right-bottom-award-container::-webkit-scrollbar {
	display: none;
}
.contact-form-right-bottom-award-container > .flex {
	width: max-content;
	gap: 1.5rem;
}
.contact-form-right-bottom-award-img {
	height: 10rem;
	display: inline-block;
	object-fit: contain;
	vertical-align: middle;
}
.contact-form-right-bottom-award-title {
	display: inline-block;
	padding-left: 3px;
	vertical-align: middle;
}
.contact-form-right-bottom-award-title p {
	width: 10rem;
	align-self: center;
	display: -webkit-box;
	font-size: 1.1rem;
	font-weight: 900;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
@media screen and (min-width: 22.5em) { /* 360px */
	.contact-form-right-img {
		height: 42rem;
	}
}
@media screen and (min-width: 30em) { /* 480px */
	.contact-form-right-img {
		height: 54rem;
	}
}
@media screen and (min-width: 40em) { /* 640px */
	.contact-form-right-column {
		grid-template-columns: 52% 48%;
	}
	.contact-form-right-top {
		align-content: center;
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}
	.contact-form-right-middle {
		grid-column: 1 / 2;
		grid-row: 1 / 3;
		padding-right: 2rem;
	}
	.contact-form-right-bottom {
		align-content: center;
		grid-column: 2 / 3;
		grid-row: 2 / 3;
	}
	.contact-form-right-img {
		height: auto;
		min-height: 40rem;
		max-height: 80rem;
		margin-bottom: 0;
	}
	.contact-form-right-name {
		font-size: 3.2rem;
		margin-bottom: 8px;
	}
	.contact-form-right-position,
	.contact-form-right-code {
		font-size: 1.5rem;
	}
	.contact-form-right-bottom-award-container {
		grid-column: 1/3;
	}
}
@media screen and (min-width: 48em) { /* 768px */
	.contact-form-container > .flex {
		padding: 5rem 2.5rem;
	}
	.contact-form-left-column {
		width: 50%;
		order: 1;
		padding-right: 1.5rem;
	}
	.contact-form-right-column {
		width: 50%;
		align-content: flex-start;
		grid-template-columns: 100%;
		order: 2;
		padding-left: 1.5rem;
	}
	.contact-form-right-top {
		align-content: flex-start;
		grid-column: auto;
		grid-row: auto;
	}
	.contact-form-right-middle {
		grid-column: auto;
		grid-row: auto;
		padding-right: 0;
	}
	.contact-form-right-bottom {
		align-content: flex-start;
		grid-column: auto;
		grid-row: auto;
	}
	.contact-form-right-img {
		margin-bottom: 2rem;
		object-position: center;
	}
	.contact-form-right-bottom-award-container {
		grid-column: 1/2;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.contact-form-container > .flex {
		padding: 7.5rem 3.5rem;
	}
	.contact-form-left-column {
		padding-right: 2.5rem;
	}
	.contact-form-right-column {
		padding-left: 2.5rem;
	}
}
@media screen and (min-width: 90em) { /* 1440px */
	.contact-form-container > .flex {
		padding: 9.5rem;
	}
}


/* Contact Form : Left Column */
.screen-reader-response {
	display: none;
}
.contact-form-container form {
	display: -ms-grid;
	display: grid;
	gap: 2rem 1rem;
	grid-template-columns: 100%;
}
.contact-form-container p {
	margin-bottom: 0;
}
.contact-form-container span {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 5px;
	text-transform: uppercase;
}
.contact-field {
	margin-bottom: 2.5rem;
	position: relative;
}
.contact-form-container label {
	width: 100%;
	display: block;
}
.contact-form-container input,
.form-field-price-range .wpcf7-form-control-wrap,
.contact-form-container textarea {
	width: 100%;
	background: transparent;
	border: 2px solid var(--beige);
	border-radius: 5px;
	color: var(--white);
	font-size: 1.5rem;
	font-weight: 500;
	outline: 0;
	padding: 1rem 1.5rem;
	-webkit-transition: border .25s ease;
	transition: border .25s ease;
}
.contact-form-container input {
	margin-bottom: 1rem;
}
.form-field-price-range .wpcf7-form-control-wrap {
	width: 100%;
	display: block;
}
.form-field-price-range .wpcf7-form-control-wrap select {
	width: 100%;
	background: transparent;
	border: none;
	color: var(--white);
	font-weight: 600;
	outline: none;
}
.wpcf7-form input::-webkit-input-placeholder,
.wpcf7-form textarea::-webkit-input-placeholder {
	color: rgba(var(--white-rgb),.5);
}
.wpcf7-form input::-moz-placeholder,
.wpcf7-form textarea::-moz-placeholder {
	color: rgba(var(--white-rgb),.5);
}
.wpcf7-form input:-ms-input-placeholder,
.wpcf7-form textarea:-ms-input-placeholder {
	color: rgba(var(--white-rgb),.5);
}
.wpcf7-form input:-moz-placeholder,
.wpcf7-form textarea:-moz-placeholder {
	color: rgba(var(--white-rgb),.5);
}
.contact-form-container .wpcf7-radio label {
	width: 25%;
	display: inline-block;
	position: relative;
}
.contact-form-container .wpcf7-radio input {
	width: auto;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
}
.contact-buy-sell input:hover + span,
.contact-buy-sell input:checked:hover + span,
.contact-buy-sell input:checked + span,
.contact-buy-sell input:focus + span {
	background: var(--white);
}
.contact-buy-sell input:hover + span {
	background: rgba(var(--white-rgb),.55);
}
.contact-buy-sell input:checked + span {
	color: var(--red);
}
.contact-buy-sell input:focus + span {
	font-size: var(--blue);
}
[class^="form-field"] input:focus,
[class^="form-field"] textarea:focus {
	background: rgba(var(--white-rgb),.1);
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
.form-field-comment textarea {
	height: 15rem;
	min-width: 100%;
	max-width: 100%;
	min-height: 10rem;
	max-height: 20rem;
	display: block;
}
.form-field-want-to {
	margin-bottom: 2px;
}
.form-field-property-type {
	margin-bottom: 1.2rem;
}
.form-field-want-to .wpcf7-form-control-wrap,
.form-field-want-to .contact-buy-sell,
.contact-buy-sell .wpcf7-list-item-label,
.contact-form-container .wpcf7-radio.contact-buy-sell label {
	width: 100%;
	text-align: center;
}
.contact-form-container .wpcf7-radio.contact-buy-sell {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin-bottom: 0;
}
.contact-buy-sell span {
	width: 49%;
	background: rgba(var(--white-rgb),.25);
	cursor: pointer;
	display: block;
	margin-bottom: 0;
	-webkit-transition: all .15s ease;
	transition: all .15s ease;
}
.contact-buy-sell .wpcf7-list-item {
	background: transparent;
}
.form-field-want-to .wpcf7-list-item-label {
	width: 100%;
	border-radius: 5px;
	margin-bottom: 8px;
	padding: 1rem;
}
.contact-form-container .wpcf7-radio input {
	gap: 1rem;
	margin-bottom: 10rem;
}
.contact-property-type {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin-bottom: 0;
}
.contact-property-type .wpcf7-list-item {
	width: 49%;
	background: rgba(var(--white-rgb),.25);
	border-radius: 5px;
	cursor: pointer;
	display: block;
	/*margin-bottom: 1.65rem;*/
	padding: 1rem;
	position: relative;
	text-align: center;
	-webkit-transition: all .15s ease;
	transition: all .15s ease;
}
.contact-property-type .wpcf7-list-item:nth-child(1),
.contact-property-type .wpcf7-list-item:nth-child(2) {
	margin-bottom: 2.8rem;
}
.contact-property-type .wpcf7-list-item > label {
	bottom: -2.5rem;
	left: 0;
	position: absolute;
}
.contact-property-type .wpcf7-list-item > label .wpcf7-list-item-label {
	font-size: 1.2rem;
	font-weight: 500;
}
.contact-property-type .wpcf7-list-item:before {
	width: 5rem;
	height: 5rem;
	background-image: url('img/factory-beige.png');
	background-size: 100%;
	content: '';
	display: block;
	margin: auto;
	position: relative;
}
.contact-property-type .wpcf7-list-item:nth-child(2):before {
	background-image: url('img/factory-semi-d-beige.png');
}
.contact-property-type .wpcf7-list-item:nth-child(3):before {
	background-image: url('img/warehouse-beige.png');
}
.contact-property-type .wpcf7-list-item:nth-child(4):before {
	background-image: url('img/land-beige.png');
}
.contact-property-type .wpcf7-list-item.selected:nth-child(1):before {
	background-image: url('img/factory-red.png');
}
.contact-property-type .wpcf7-list-item.selected:nth-child(2):before {
	background-image: url('img/factory-semi-d-red.png');
}
.contact-property-type .wpcf7-list-item.selected:nth-child(3):before {
	background-image: url('img/warehouse-red.png');
}
.contact-property-type .wpcf7-list-item.selected:nth-child(4):before {
	background-image: url('img/land-red.png');
}
.contact-property-type .wpcf7-list-item.selected,
.contact-property-type .wpcf7-list-item.selected.hover {
	background: var(--white);
}
.contact-property-type .wpcf7-list-item.hover {
	background: rgba(var(--white-rgb),.55);
}
.form-field-land-area,
.form-field-build-up,
.form-field-power,
.form-field-ceiling,
.form-field-floor-loading {
	position: relative;
}
.form-field-land-area select,
.form-field-build-up select,
.contact-form-container span.form-field-power-amp,
.form-field-ceiling select,
.form-field-floor-loading select {
	height: 4.8rem;
	background: transparent;
	border: none;
	color: var(--white);
	font-weight: 600;
	outline: none;
	position: absolute;
	right: 1rem;
	text-transform: none;
	top: 3rem;
}
.contact-form-container span.form-field-power-amp {
	line-height: 4.8rem;
	right: 1.5rem;
}
.form-field-upload input[type=file]::file-selector-button {
	background: var(--beige);
	border: 2px solid var(--yellow);
	border-radius: 5px;
	color: var(--black);
	cursor: pointer;
	font-weight: 500;
	margin-bottom: 2rem;
	margin-right: 1.5rem;
	margin-top: 2rem;
	padding: 1rem 2rem;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
}
.form-field-upload input[type=file]::file-selector-button:hover {
	background: var(--yellow);
	border: 2px solid var(--beige);
	color: var(--white);
}
.form-field-submit input {
	background: var(--beige);
	color: var(--red);
	cursor: pointer;
	font-weight: 600;
	margin-bottom: -1rem;
	text-transform: uppercase;
}
.form-field-submit input:focus {
	background: var(--yellow);
	color: var(--white);
}
.contact-form-container span.wpcf7-not-valid-tip,
.wpcf7-response-output {
	color: var(--yellow);
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: underline;
	text-transform: none;
}
.form-field-name .wpcf7-not-valid-tip,
.form-field-phone .wpcf7-not-valid-tip {
	position: relative;
	top: -8px;
}
@media screen and (min-width: 30em) { /* 480px */
	.contact-form-container form {
		grid-template-columns: calc(50% - 5px) calc(50% - 5px);
	}
	.form-field-want-to,
	.form-field-property-type,
	.form-field-comment,
	.form-field-upload,
	.form-field-submit,
	.wpcf7-response-output {
		grid-column: 1/3;
	}
	.form-field-want-to,
	.form-field-property-type {
		margin-bottom: 1rem;
	}
	.contact-buy-sell span,
	.contact-property-type .wpcf7-list-item {
		width: 24%;
	}
	.form-field-want-to .wpcf7-list-item-label {
		margin-bottom: 0;
	}
	.contact-property-type .wpcf7-list-item,
	.contact-property-type .wpcf7-list-item:nth-child(1),
	.contact-property-type .wpcf7-list-item:nth-child(2) {
		margin-bottom: 1.65rem;
	}
	.contact-property-type .wpcf7-list-item > label .wpcf7-list-item-label {
		font-size: 1.3rem;
	}
}


/* 404  */
.error-404 {
	padding-bottom: 10rem;
	padding-top: 10rem;
}
.error-404-title {
	font-family: 'PT Serif', Helvetica, Arial, sans-serif;
	font-style: italic;
	font-weight: bold;
}
.error-404-subtitle {
	font-weight: 500;
}


/* Pages - Malaysia Economy - Headers */
.page-container {
	max-width: 128rem;
	margin-bottom: 6rem;
	margin-top: 5rem;
}
.page-title-container {
	border-bottom: 2px solid var(--red);
	padding-bottom: 8rem;
	margin-top: 8rem;	
}
.page-title {
	max-width: 128rem;
	font-size: 4.2rem;
	font-weight: 600;
}
.narrower-container {
	max-width: 100rem;
}
.page-container h2 {
	display: block;
	font-size: 2.8rem;
	font-family: 'PT Serif', Helvetica, Arial, sans-serif;
	font-style: italic;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 2.5rem;
}
.page-container h3 {
	display: block;
	font-size: 2.4rem;
	font-weight: 500;
	margin-bottom: 5rem;
}
.page-container h4 {
	font-weight: 700;
}
.page-container p {
	font-size: 1.5rem;
}
.page-container p b,
.page-container ul b,
.page-container ol b {
	font-weight: 700;
}
.page-container .figure-title,
.page-container figure {
	max-width: 110rem;
	margin: auto;
	margin-bottom: 5rem;
}
.page-container .figure-title {
	font-weight: 900;
	margin-bottom: 1.5rem;
	margin-top: 2rem;
	text-transform: uppercase;
}
.page-container figure {
	background: var(--white);
	padding: 2rem;
}
.page-container ol {
	list-style-type: number;
}
.page-container.container ul,
.page-container.container ol {
	margin-bottom: 2.5rem;
}
.page-container.container ul > ul {
	list-style: circle;
	margin-bottom: 0;
}
.page-container.container ul li,
.page-container.container ol li {
	margin-bottom: 0;
}
.page-container .margin-list li:not(:last-child) {
	margin-bottom: 2.5rem;
}
.page-container ul {
	list-style-type: disc;
}
@media screen and (min-width: 40em) { /* 640px */
	.page-container h2 {
		font-size: 3rem;
	}
}
@media screen and (min-width: 48em) { /* 768px */
	.page-title {
		font-size: 4.8rem;
	}
	.page-container h2 {
		font-size: 3.2rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.page-container h2 {
		font-size: 3.6rem;
	}
	.page-container p {
		font-size: 1.6rem;
	}
	.page-container .small-figure {
		text-align: center;
	}
	.page-container .small-figure img {
		width: 50%;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.page-title {
		font-size: 5rem;
	}
	.page-container h2 {
		font-size: 3.8rem;
	}
}


/* Pages - Malaysia Economy - Opportunities */
.opportunities-icon-grid {
	background: rgba(var(--black-rgb), 0.05);
	border-radius: 1rem;
	gap: 2rem;
	grid-template-columns: calc(50% - 1rem) calc(50% - 1rem);
	margin: auto;
	margin-bottom: 5rem;
	padding: 2rem 1rem 2.5rem;
}
.opportunities-icon-item {
	text-align: center;
}
.opportunities-icon-item-img {
	width: 100%;
	max-width: 8rem;
	background: var(--red);
	border-radius: 1rem;
	margin: auto;
	padding: 1.5rem 1rem;
}
.opportunities-icon-item-img img {
	width: 100%;
	max-height: 4.2rem;
	object-fit: contain;
	vertical-align: middle;
}
.opportunities-icon-item-text {
	max-width: 24rem;
	font-size: 1.2rem;
	margin: auto;
	margin-top: 5px;
}
@media screen and (min-width: 48em) { /* 768px */
	.opportunities-icon-grid {
		grid-template-columns: calc(25% - 1.5rem) calc(25% - 1.5rem)  calc(25% - 1.5rem)  calc(25% - 1.5rem);
		padding: 3rem 2rem 3.5rem;
	}
}


/* Pages - Malaysia Economy - Floating Menu */
.floating-menu-container {
	width: 100%;
	height: 8.4rem;
	background: var(--beige);
	border-bottom: 2px solid var(--red);
	border-top: 2px solid var(--red);
	margin-bottom: 10rem;
}
.floating-menu-container.show {
	border-bottom: 0 solid var(--red);
	border-top: 0 solid var(--red);
}
.floating-menu-container::-webkit-scrollbar {
	display: none;
}
.floating-menu-scroll-container {
	width: 100%;
	height: 8rem;
	max-width: 124rem;
	/*flex-wrap: nowrap;*/
	align-content: center;
	background: rgba(var(--red-rgb), 0);
	-webkit-backdrop-filter: blur(0);
	backdrop-filter: blur(0);
	bottom: 0;
	font-size: 1.3rem;
	font-weight: 600;
	margin: auto;
	overflow: hidden;
	padding: 0;
	position: relative;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
	z-index: 5;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.show .floating-menu-scroll-container {
	width: 92%;
	height: 6rem;
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	background: rgba(130, 130, 130, 0.2);
	bottom: 1.5rem;
	border-radius: 1rem;
	left: 0;
	margin: auto;
	padding: 8px 0;
	position: fixed;
	right: 0;
}
.floating-menu-scroll-container::-webkit-scrollbar {
	display: none;
}
.floating-menu-item {
	width: max-content;
	cursor: pointer;
	overflow: hidden;
	padding: 1.2rem 1rem 8px;
	text-align: center;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.floating-menu-item::-webkit-scrollbar {
	display: none;
}
.floating-menu-select-container {
	width: 30%;
	height: 100%;
	min-width: 13rem;
	position: relative;
}
.floating-menu-select {
	width: 100%;
	height: 100%;
	appearance: none;
	background: transparent;
	border: none;
	border-right: 2px solid var(--red);
	color: var(--red);
	cursor: pointer;
	font-size: 1.3rem;
	font-weight: 600;
	outline: none;
	padding-left: 2rem;
	padding-right: 4rem;
}
.floating-menu-select-chevron {
	width: 1.25rem;
	height: 1.25rem;
	bottom: 0;
	margin: auto;
	position: absolute;
	right: 1.8rem;
	top: 0;
}
.floating-menu-select-chevron .bar {
	width: 8px;
	height: 2.5px;
	background: var(--red);
	border-radius: 1.25px;
	bottom: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.floating-menu-select-chevron .bar:first-child {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.floating-menu-select-chevron .bar:last-child {
	left: 0;
	right: auto;
}
.floating-menu-arrows-container {
	width: auto;
	height: 100%;
	min-width: 14rem;
	align-items: center;
	flex-wrap: nowrap;
	margin: auto;
}
.floating-menu-arrow {
	width: 100%;
	display: inline-block;
	position: relative;
	text-decoration: none;
}
.prev-arrow {
	color: rgba(var(--black-rgb), 0.35);
	padding-left: 2.8rem;
}
.next-arrow {
	padding-right: 2.8rem;
	text-align: right;
}
.next-arrow:hover {
	color: var(--red);
}
.prev-arrow .floating-menu-select-chevron {
	left: 8px;
	right: auto;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
}
.next-arrow .floating-menu-select-chevron {
	right: 8px;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
}
.prev-arrow .floating-menu-select-chevron .bar {
	background: rgba(var(--black-rgb), 0.3);
}
.prev-arrow:hover .floating-menu-select-chevron {
	-webkit-transform: rotate(90deg) translate(0, 1rem);
	transform: rotate(90deg) translate(0, 1rem);
}
.next-arrow:hover .floating-menu-select-chevron {
	-webkit-transform: rotate(-90deg) translate(0, 1rem);
	transform: rotate(-90deg) translate(0, 1rem);
}
@media screen and (min-width: 30em) { /* 480px */
	.floating-menu-arrows-container {
		width: 50%;
		max-width: 30rem;
	}
}


/* Pages - Industrial Segment - Table */
.table-container {
	width: 100%;
	overflow: scroll;
}
.property-highlights {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 8rem;
}
.inner-table {
	font-size: 85%;
	margin-bottom: 1rem;
	margin-top: 1rem;
}
.property-highlights th,
.property-highlights td {
	border: 1px solid var(--blue);
	line-height: 1.4;
	padding: 1.5rem;
	/*vertical-align: middle;*/
}
.property-highlights th {
	background: var(--yellow);
	color: var(--black);
	font-weight: 500;
}
.property-highlights b {
	font-weight: 600;
}
.property-highlights th:first-child,
.property-highlights td:first-child {
	width: 4%;
	min-width: 4rem;
}
.property-highlights th:nth-child(2),
.property-highlights td:nth-child(2) {
	width: 18%;
	min-width: 15rem;
}
.property-highlights th:nth-child(3),
.property-highlights td:nth-child(3) {
	width: 60%;
	min-width: 40rem;
}
.property-highlights th:nth-child(4),
.property-highlights td:nth-child(4) {
	width: 18%;
	min-width: 20rem;
}
.state-policy.central th:first-child,
.state-policy.central td:first-child {
	width: 20%;
	min-width: 10rem;
}
.state-policy.central th:nth-child(2),
.state-policy.central td:nth-child(2) {
	width: 80%;
	min-width: 60rem;
}
.page-container table ul,
.page-container table ol {
	margin-bottom: 0;
}
.page-container table ul li:not(:last-child) {
	margin-bottom: 0;
	padding-bottom: 5px;
}
.page-container table ul > ul {
	list-style: circle;
}
.page-container table ul ul ul {
	list-style: square;
}
.table-container .inner-table th:first-child,
.table-container .inner-table td:first-child,
.table-container .inner-table th:nth-child(2),
.table-container .inner-table td:nth-child(2),
.table-container .inner-table th:nth-child(3),
.table-container .inner-table td:nth-child(3),
.table-container .inner-table th:nth-child(4),
.table-container .inner-table td:nth-child(4),
.table-container .inner-table th:nth-child(5),
.table-container .inner-table td:nth-child(5) {
	width: auto;
	min-width: auto;
}
.property-highlights figure {
	margin-bottom: 0;
}


/* Flagship Projects Menu */
.flagship-projects-menu {
	margin-bottom: 0;
	padding-top: 2rem;
}
.flagship-projects-menu li {
	height: 0;
	opacity: 0;
	visibility: hidden;
}
.show .flagship-projects-menu li {
	height: auto;
	opacity: 1;
	visibility: visible;
}
.flagship-projects-menu li a {
	color: var(--black);
	font-weight: 400;
	text-decoration: none;
	transition: all 0s ease;
}
.flagship-projects-menu .current-menu-item a {
	border-bottom: 1px solid var(--yellow);
}
.flagship-projects-menu a:hover {
	border-bottom: 1px solid var(--blue);
}
.flagship-projects-menu-chevron {
	width: 1.25rem;
	height: 1.25rem;
	margin: auto;
	position: absolute;
	left: 15.5rem;
	top: 9px;
}
.desktop-flagship-menu-chevron {
	left: auto;
	right: -2.2rem;
}
.flagship-projects-menu-chevron .bar {
	width: 8px;
	height: 2px;
	background: var(--red);
	border-radius: 1.25px;
	bottom: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.flagship-projects-menu-chevron .bar:first-child {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.flagship-projects-menu-chevron .bar:last-child {
	left: 0;
	right: auto;
}
@media screen and (min-width: 80em) { /* 1280px */
	.flagship-projects-menu {
		padding-bottom: 1.5rem;
		padding-top: 1.5rem;
	}
}

/* Flagship Projects Menu : Desktop Dropdown */
.flagship-projects-menu-container {
	width: 100%;
	height: 0;
	background: var(--beige);
	border-bottom: 0 solid var(--red);
	display: block;
	padding: 0;
	position: relative;
	transform: translate(0, -110%);
	visibility: hidden;
	z-index: 0;
}
.flagship-projects-menu-container.show {
	height: 100%;
	border-bottom: 2px solid var(--red);
	padding: 2.5rem 0 2rem;
	transform: translate(0, 0);
	transition: all .5s ease;
	visibility: visible;
}

/* Flagship Project Single Page */
.flagship-title-container {
	border-bottom: 0;
	text-align: right;	
}
.flagship-title-container .page-subtitle {
	max-width: 128rem;
	font-size: 1.8rem;
	font-weight: 400;
	margin-top: 1rem;
}
.flagship-title-container .page-subtitle img {
	width: 2rem;
	margin-right: .5rem;
	padding-bottom: 2px;
	vertical-align: middle;
}
.flagship-page-container {
	margin-top: 0;
}
.flagship-page-container figure {
	background: transparent;
	padding: 0;
}
.flagship-product-type-subtitle,
.flagship-product-spec-subtitle,
.flagship-key-points-subtitle,
.flagship-location-subtitle {
	color: var(--black);
	opacity: .5;
}
.flagship-page-container .flagship-product-type-title,
.flagship-page-container .flagship-product-spec-title,
.flagship-page-container .flagship-key-points-title,
.flagship-page-container .flagship-location-title {
	font-weight: 600;
}
.flagship-product-spec:not(:last-child) {
	margin-bottom: 8rem;
}
.flagship-product-spec:last-child {
	margin-bottom: 2rem;
}
.flagship-product-spec-description {
	margin-bottom: 5rem;
}
.flagship-product-spec-details-container {
	gap: 2rem;
	grid-template-columns: 1fr 1fr;
}
.flagship-product-spec-details-box {
	border-top: 1px solid var(--red);
}
.flagship-product-spec-details-box-value {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 5px;
	margin-top: 1.5rem;
}
.flagship-product-spec-details-box-key {
	color: var(--black);
	font-size: 1.2rem;
	font-weight: 400;
	margin-bottom: 1rem;
	opacity: .5;
}
.flagship-product-price {
	grid-column: span 2;
}
.flagship-key-points-details-box {
	border-top: 1px solid var(--red);
	padding-bottom: 5rem;
	padding-top: 2.5rem;	
}
.flagship-key-points-details-box:last-child {
	border-bottom: 1px solid var(--red);
	margin-bottom: 5rem;
}
.flagship-key-points-details-box-left,
.flagship-key-points-details-box-right {
	width: 100%;
}
.flagship-key-points-details-box-left {
	font-size: 2rem;
	font-weight: 500;
}
.flagship-key-points-details-box-right {
	color: var(--black);
	font-size: 1.4rem;
	font-weight: 400;
	opacity: .75;
	margin-top: 1rem;
}
.flagship-key-points-details-box-right b {
	font-weight: 900;
}
.flagship-location {
	margin-bottom: 5rem;
	margin-top: 8rem;
}
@media screen and (min-width: 22.5em) { /* 360px */
	.flagship-product-spec-details-box-value {
		font-size: 2.8rem;
	}
}
@media screen and (min-width: 30em) { /* 480px */
	.flagship-product-spec-details-box-value {
		font-size: 3.2rem;
		margin-bottom: 1rem;
	}
	.flagship-product-spec-details-box-key {
		font-size: 1.4rem;
		line-height: 1.2;
		margin-bottom: 2rem;
	}
}
@media screen and (min-width: 40em) { /* 640px */
	.flagship-key-points-details-box-left,
	.flagship-key-points-details-box-right {
		width: 50%;
	}
	.flagship-key-points-details-box-right {
		margin-top: 5px;
	}
}
@media screen and (min-width: 48em) { /* 768px */
	.flagship-page-container .flagship-product-type-title,
	.flagship-page-container .flagship-product-spec-title,
	.flagship-page-container .flagship-key-points-title,
	.flagship-page-container .flagship-location-title {
		font-size: 2.8rem;
	}
	.flagship-product-spec-description {
		margin-bottom: 8rem;
	}
	.flagship-product-spec-details-container {
		gap: 3rem;
	}
	.flagship-product-spec-details-box-value {
		font-size: 3.6rem;
	}
	.flagship-product-spec-details-box-key {
		font-size: 1.5rem;
		line-height: 1;
		margin-bottom: 2.5rem;
	}
	.flagship-page-container .flagship-key-points-title {
		margin-bottom: 7.5rem;
	}
	.flagship-key-points-details-box-right {
		font-size: 1.5rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.flagship-product-type,
	.flagship-product-spec,
	.flagship-key-points,
	.flagship-location {
		grid-template-columns: 1fr 2fr;
	}
	.flagship-product-spec:last-child {
		margin-bottom: 5rem;
	}
	.flagship-product-type {
		margin-top: 5rem;
	}
	.flagship-product-type-title-container {
		padding-right: 5rem;
	}
	.flagship-product-spec-details-box-value {
		font-size: 4rem;
	}
	.flagship-key-points-details-box:last-child {
		margin-bottom: 10rem;
	}
	.flagship-key-points-details-box {
		padding-bottom: 7rem;
		padding-top: 3rem;	
	}
	.flagship-location iframe {
		grid-column: span 2;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.flagship-page-container .flagship-product-spec-title,
	.flagship-page-container .flagship-key-points-title,
	.flagship-page-container .flagship-location-title {
		font-size: 3.2rem;
	}
}

/* Flagship Projects : Archive */
.flagship-projects-archive-single {
	width: 100%;
}
.flagship-projects-archive-image img {
	width: 100%;
	height: 20rem;
	object-fit: cover;
}
.flagship-projects-archive-single {
	margin-bottom: 5rem;
}
.flagship-projects-archive-single a {
	text-decoration: none;
}
.page-container .flagship-projects-archive-location {
	color: var(--black);
	font-size: 1.3rem;
	font-weight: 400;
	opacity: .5;
	margin-bottom: 2px;
}
.page-container .flagship-projects-archive-title {
	font-size: 2.2rem;
	margin-bottom: 0;
}
@media screen and (min-width: 40em) { /* 640px */
	.flagship-projects-archive {
		gap: 2rem;
		grid-template-columns: 1fr 1fr;
	}
	.flagship-projects-archive-image img {
		height: 22rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.flagship-projects-archive {
		gap: 3.6rem;
		grid-template-columns: 1fr 1fr 1fr;
	}
	.flagship-projects-archive-single {
		margin-bottom: 4rem;
	}
	.flagship-projects-archive-image img {
		height: 28rem;
	}
}


/* Listings : Hero Gallery Button */
.listing-gallery-link {
	height: 5rem;
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	background: rgba(var(--white-rgb), 0.8);
	border: 1px solid var(--red);
	border-radius: 6px;
	bottom: 1rem;
	display: inline-block;
	padding: 0 2rem;
	position: absolute;
	right: 1rem;
}
.listing-gallery-link:hover {
	background: rgba(var(--white-rgb), 0.9);	
}
.listing-gallery-link,
.listing-gallery {
	color: var(--red);
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 5rem;
	text-decoration: none;
}
@media screen and (min-width: 48em) { /* 768px */
	.listing-gallery-link {
		bottom: 2rem;
		right: 2rem;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.listing-gallery-link {
		bottom: 2.5rem;
		right: 3rem;
	}
}

/* Listings : Popup Gallery */
.popup-gallery-container {
	width: 100%;
	height: 100%;
	background: var(--white);
	left: 0;
	opacity: 0.2;
	overflow: hidden;
	padding: 2rem;
	padding-top: 0;
	position: fixed;
	top: 0;
	visibility: hidden;
	-webkit-transition: all .125s ease;
	transition: all .125s ease;
	z-index: 1;
}
.popup-gallery-container.show {
	opacity: 1;
	visibility: visible;
	z-index: 15;
}
.gallery-box-container-close-container {
	width: 100%;
	height: 6rem;
	background: transparent;
	left: 0;
	position: fixed;
	top: 0;
	z-index: 12;
}
.gallery-box-container-close {
	width: 5rem;
	height: 5rem;
	background: var(--yellow);
	border-radius: 50%;
	cursor: pointer;
	right: 1rem;
	position: absolute;
	top: 1rem;
}
.gallery-box-container-close .bar {
	width: 2rem;
	height: 2px;
	background: var(--black);
	border-radius: 1px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	top: 0;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.gallery-box-container-close .bar:first-child {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.popup-gallery-container .wp-block-gallery,
.popup-gallery-container .gallery {
	max-width: 112rem;
	height: 100%;
	background: var(--white);
	border-radius: 1rem;
	margin: auto;
	overflow: scroll;
	padding: 2rem;
	padding-top: 7rem;
	-webkit-transform: translateY(125%);
	transform: translateY(125%);
}
.popup-gallery-container .wp-block-gallery::-webkit-scrollbar {
	display: none;
}
.popup-gallery-container .wp-block-gallery {
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.popup-gallery-container .wp-block-gallery figure {
	margin-bottom: 1rem;
	margin-top: 1rem;
}
.popup-gallery-container.show .wp-block-gallery,
.popup-gallery-container.show #gallery-1.gallery {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.popup-gallery-container #gallery-1 .gallery-item,
.popup-gallery-container #gallery-1 .gallery-item .gallery-icon {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}
.popup-gallery-container .wp-block-image,
.popup-gallery-container #gallery-1 .gallery-item {
	width: 100%;
	margin-top: 5rem;
}
.popup-gallery-container .wp-block-image > img,
.popup-gallery-container #gallery-1 .gallery-item .gallery-icon,
.popup-gallery-container #gallery-1 .gallery-item .gallery-icon img {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 8px;
	object-fit: contain;
	order: 2;
}
.popup-gallery-container .wp-block-image > figcaption,
.popup-gallery-container #gallery-1 .gallery-item .gallery-caption {
	width: 100%;
	display: none; /* to hide caption */
	font-size: 1.4rem;
	line-height: 1.5;
	margin-bottom: 1rem;
	order: 1;
	text-align: left;
}
@media screen and (min-width: 48em) { /* 768px */
	.popup-gallery-container .wp-block-image > img,
	.popup-gallery-container #gallery-1 .gallery-item .gallery-icon {
		width: 100%;
		margin-left: auto;
		order: 2;
	}
	.popup-gallery-container .wp-block-image > figcaption,
	.popup-gallery-container #gallery-1 .gallery-item .gallery-caption {
		width: 40%;
		-webkit-align-self: start;
		align-self: start;
		order: 1;
		position: sticky;
		top: 2rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.popup-gallery-container .wp-block-image > figcaption,
	.popup-gallery-container #gallery-1 .gallery-item .gallery-caption {
		font-size: 1.5rem;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.popup-gallery-container .wp-block-image > figcaption,
	.popup-gallery-container #gallery-1 .gallery-item .gallery-caption {
		font-size: 1.6rem;
	}
}

/* Listings : Price */
.listing-price-container {
	align-items: center;
	border-bottom: 2px solid var(--red);
	margin-bottom: 5px;
	padding-bottom: 3.5rem;
}
.listing-price,
.listing-type {
	line-height: 1;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	vertical-align: middle;
}
.listing-price {
	min-width: 50%;
	max-width: 55%;
	font-size: 2.4rem;
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.listing-type {
	min-width: 20%;
	position: relative;
}
.listing-type-tag {
	height: 3rem;
	background: var(--red);
	border-radius: 5px;
	color: var(--white);
	display: inline-block;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 2px;
	padding: 8px 1.3rem;
	text-transform: uppercase;
}
.listing-type:before {
	width: 2px;
	height: 200%;
	background: var(--red);
	content: "";
	display: block;
	left: 0;
	margin-left: -2.5rem;
	position: absolute;
	top: -50%;
}
@media screen and (min-width: 48em) { /* 768px */
	.listing-price {
		font-size: 2.8rem;
	}
	.listing-type:before {
		margin-left: -5.5rem;
	}
	.listing-type-tag {
		height: 3.6rem;
		font-size: 1.5rem;
		padding: 1.1rem 2rem;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.listing-price {
		font-size: 3rem;
	}
	.listing-type:before {
		margin-left: -9rem;
	}
	.listing-type-tag {
		height: 4rem;
		font-size: 1.6rem;
		padding: 1.2rem 2.8rem;
	}
}

/* Listings : Content */
.listing-page-container {
	margin-bottom: 0;
}
.listing-page-container figure {
	width: 100%;
	background: transparent;
	padding: 0;
	position: relative;
}
.listing-page-container figure img {
	margin-bottom: -1rem;
}
.listing-title-container {
	background: var(--red);
	border-bottom: 0;
	border-radius: 1rem;
	color: var(--white);
	margin-bottom: 3.5rem;
	margin-top: 0;
	padding-bottom: 5rem;
	padding-top: 5rem;
}
.listing-title-container .page-title {
	font-size: 2.4rem;
	padding: 0 2.4rem;
}
.listing-title-location {
	margin-top: 1rem;
	padding: 0 2.4rem;
}
.listing-container h2 {
	font-family: 'DM Sans', Helvetica, Arial, sans-serif;
	font-style: normal;
	margin-bottom: 3.5rem;
}
.listing-container h3 {
	margin-bottom: 3rem;
}
.listing-more-properties-container {
	margin-bottom: 10rem;
}
.listing-content-left,
.listing-content-right {
	width: 100%;
}
.listing-content-left {
	margin-top: -8rem;
	order: 2;
	z-index: 1;
}
.listing-content-right {
	height: 5rem;
	margin-bottom: 8rem;
	order: 1;
	position: sticky;
	text-align: right;
	top: 0;
	-webkit-transition: all .125s ease;
	transition: all .125s ease;
	z-index: 2;
}
.is-sticky .listing-content-right {
}
.listing-content-whatsapp-button,
.listing-content-call-button {
	display: inline-block;
	margin-top: 5px;
}
.listing-content-whatsapp-button button {
	background: var(--whatsapp);
	border-color: var(--whatsapp);
}
.listing-content-call-button button {
	background: var(--blue);
	border-color: var(--blue);
}
.listing-content-whatsapp-button:hover button {
	border-color: var(--blue);
}
.listing-content-call-button:hover button {
	border-color: var(--red);
}
.listing-content-call-button {
	background: var(--red);
}
@media screen and (min-width: 48em) { /* 768px */
	.listing-title-container .page-title {
		font-size: 2.8rem;
		padding: 0 3.2rem;
	}
	.listing-title-location {
		padding: 0 3.2rem;
	}
	.listing-more-properties-container {
		margin-bottom: 12rem;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.listing-title-container .page-title {
		font-size: 3.2rem;
		padding: 0 4rem;
	}
	.listing-title-location {
		padding: 0 4rem;
	}
	.listing-more-properties-container {
		margin-bottom: 15rem;
	}
}


/* All Listings : Archive */
.all-listings-archive-single {
	width: 100%;
	background: rgba(var(--white-rgb),0.5);
	margin-bottom: 5rem;
}
.all-listings-archive-single a {
	text-decoration: none;
}
.all-listings-archive-image {
	position: relative;
}
.all-listings-archive-image img {
	width: 100%;
	height: 20rem;
	object-fit: cover;
	margin-bottom: -1rem;
}
.all-listings-archive-content {
	padding: 1.5rem;
}
.page-container .all-listings-archive-price {
	font-size: 2.2rem;
	font-weight: 600;
	margin-bottom: 1rem;
}
.page-container .all-listings-archive-title {
	font-size: 2rem;
	margin-bottom: 5px;
}
.page-container .all-listings-archive-location {
	font-size: 1.4rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
}
.page-container .all-listings-archive-type {
	color: var(--black);
	font-size: 1.3rem;
	font-weight: 400;
	opacity: .5;
	margin-bottom: 5px;
}
.all-listings-item-tag {
	height: 3rem;
	background: rgba(var(--red-rgb),0.8);
	border-radius: 5px;
	color: var(--white);
	display: inline-block;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 5px;
	padding: 8px 1.2rem;
	position: absolute;
	right: 1.5rem;
	top: 1.5rem;
	text-transform: uppercase;
}
@media screen and (min-width: 40em) { /* 640px */
	.all-listings-archive {
		gap: 2rem;
		grid-template-columns: 1fr 1fr;
	}
	.all-listings-archive-image img {
		height: 22rem;
	}
	.all-listings-archive-content {
		padding: 2rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.all-listings-archive {
		gap: 3.6rem;
		grid-template-columns: 1fr 1fr 1fr;
	}
	.all-listings-archive-single {
		margin-bottom: 4rem;
	}
	.all-listings-archive-image img {
		height: 28rem;
	}
}


/* Archive Pagination */
.archive-pagination-container {
	margin-bottom: 8rem;
	margin-top: -6rem;
	padding: 2rem 0;
	text-align: center;
}
.page-numbers {
	font-size: 2rem;
	font-weight: 600;
	opacity: .6;
	padding: 5px;
}
.page-numbers.current,
.page-numbers.dots,
.page-numbers:hover {
	color: var(--red);
	opacity: 1;
}


/* Youtube Popup */
.youtube-popup-container {
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,.7);
	bottom: 0;
	left: 0;
	margin: auto;
	opacity: 1;
	overflow: hidden;
	padding: 4rem 2rem;
	position: fixed;
	right: 0;
	top: 0;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	text-align: center;
	-webkit-transition: opacity .25s ease;
	transition: opacity .25s ease;
	visibility: visible;
	z-index: 9;
}
.youtube-popup-container.hide {
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}
.youtube-popup-close {
	width: 24px;
	height: 24px;
	cursor: pointer;
	position: absolute;
	right: 2rem;
	top: 2rem;
	z-index: 1;
}
.youtube-popup {
	width: 100%;
	max-width: 90vw;
	left: 50%;
	padding: 0 15px;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.youtube-iframe-container {
	height: 0;
	padding-bottom: 56.25%;
	padding-top: 0;
	position: relative;
}
.youtube-iframe {
	width: 100%;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
}
.youtube-popup-close-container {
	width: 100%;
	height: 6rem;
	background: transparent;
	left: 0;
	position: fixed;
	top: 0;
	z-index: 12;
}
.youtube-popup-close {
	width: 5rem;
	height: 5rem;
	background: var(--yellow);
	border-radius: 50%;
	cursor: pointer;
	right: 1rem;
	position: absolute;
	top: 1rem;
}
.youtube-popup-close .bar {
	width: 2rem;
	height: 2px;
	background: var(--black);
	border-radius: 1px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	top: 0;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.youtube-popup-close .bar:first-child {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}


/* Verification */
.verification-container {
	width: 100%;
	padding: 10rem;
	margin: 0 auto;
}
.verification-form {
	width: 100%;
	max-width: 50rem;
	background: rgba(var(--white-rgb), 0.75);
	border-radius: 8px;
	box-shadow: 0 0 1rem rgba(var(--black-rgb), 0.1);
	margin: 0 auto;
	padding: 5rem 3rem;
	text-align: center;
}
.otp-error-msg {
	color: var(--black);
	font-size: 1.4rem;
	font-weight: 600;
	text-decoration: underline;
}
.verification-form h1 {
	font-family: 'PT Serif', Helvetica, Arial, sans-serif;
	font-size: 3.6rem;
	font-weight: 600;
	margin-bottom: 2rem;
}
.verification-form p {
	line-height: 1.4;
	margin-bottom: 3rem;
}
.verification-form .otp-input {
	height: 5rem;
	background: var(--white);
	border: 1px solid rgba(var(--black-rgb), 0.3);
	border-radius: 5px;
	font-size: 1.8rem;
	font-weight: 500;
	margin-right: 5px;
	text-align: center;
	vertical-align: middle;
}
.verification-form .otp-button {
	height: 5rem;
	background: var(--red);
	border: 1px solid rgba(var(--black-rgb), 0.3);
	border-radius: 5px;
	color: var(--white);
	cursor: pointer;
	font-weight: 600;
	padding: 0 2rem;
	vertical-align: middle;
}


/* Landing Page : Header */
.landing-page .header-container {
	background: var(--beige);
	left: 0;
	position: sticky;
	top: 0;
	z-index: 8;
}
.landing-page .header-menu-container {
	width: calc(100% - 24rem);
	align-content: center;
	display: block;
}
.landing-page .header-menu-container h6 {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 0;
	text-align: center;
}
.landing-page .header-contact-container {
	border-left: 2px solid var(--red);
	margin-left: 0;
	padding: 0 1rem;
}
.landing-page .header-contact-number {
	display: none;
}
.landing-page .header-contact-whatsapp {
	border-radius: 5px;
}
@media screen and (min-width: 30em) { /* 480px */
	.landing-page .header-contact-container {
		padding-right: 0;
	}

}
@media screen and (min-width: 40em) { /* 640px */
	.landing-page .header-menu-container h6 {
		font-size: 1.6rem;
	}
	.landing-page .header-contact-container {
		padding-left: 2rem;
		padding-right: 1rem;
	}

}
@media screen and (min-width: 48em) { /* 768px */
	.landing-page .header-menu-container {
		width: auto;
	}

}
@media screen and (min-width: 80em) { /* 1280px */
	.landing-page .header-contact-container {
		padding-left: 3rem;
		padding-right: 2rem;
	}
	.landing-page .header-contact-number {
		display: inline-block;
	}
	.landing-page .header-contact-whatsapp {
		border-radius: 0 5px 5px 0;
	}
}

/* Landing Page : Hero */
.landing-page .hero-text-container {
	max-width: 144rem;
	background-image: none;
	border-radius: 0;
	margin: auto;
}
.landing-page .hero-subtitle {
	font-size: 1.4rem;
	font-weight: 600;
}
.landing-page .hero-title {
	max-width: 56rem;
}
.landing-page .hero-title span {
	line-height: 1.25;
}
.landing-page .hero-description {
	color: var(--black);
	margin-bottom: 5rem;
}
.landing-page .hero-landing-button {
	background: rgba(var(--red-rgb), 1);
	border-radius: 5px;
	color: var(--white);
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 5rem;
	padding: 1.5rem 4rem;
	text-decoration: none;
	text-transform: uppercase;
}
.landing-page .hero-landing-button:hover {
	background: rgba(var(--red-rgb), 0.8);
}
.hero-img.play-youtube {
	cursor: pointer;
	position: relative;
}
.play-youtube-overlay {
	width: 100%;
	height: 100%;
	background: rgba(var(--black-rgb), .25);
	border-radius: 1rem;
	display: block;
	left: 0;
	position: absolute;
	top: 0;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
	z-index: 1;
}
.play-youtube-overlay:before {
	width: 6rem;
	height: 6rem;
	background: rgba(var(--red-rgb), .9);
	border-radius: 50%;
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
	z-index: 1;
}
.play-youtube-overlay:after {
	width: 0;
	height: 0;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	border-left: 20px solid var(--white);
	bottom: 0;
	content: "";
	display: block;
	left: 5px;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
	z-index: 2;
}
.play-youtube:hover .play-youtube-overlay {
	background: rgba(var(--black-rgb), .15);
}
.play-youtube:hover .play-youtube-overlay:before {
	background: rgba(var(--red-rgb), 1);
	transform: scale(1.1);
}
.play-youtube:hover .play-youtube-overlay:after {
	transform: scale(1.05);
}
.landing-page .hero-img img {
	width: 100%;
	height: 100%;
	max-height: 42rem;
	border-radius: 8px;
	margin-bottom: -2px;
	object-fit: cover;
}
@media screen and (min-width: 40em) { /* 640px */
	.landing-page .hero-subtitle {
		font-size: 1.6rem;
	}
}
@media screen and (min-width: 48em) { /* 768px */
	.landing-page .hero-text-container {
		gap: 5rem;
		grid-template-columns: 1fr 1fr;
	}
	.landing-page .hero-subtitle {
		margin-top: 3rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.hero-landing-button {
		font-size: 1.6rem;
		margin-bottom: 1.5rem;
		padding: 1.5rem 4.5rem;
	}
}

/* Landing Page : Brands */
.brands-container {
	width: 100%;
	max-width: 144rem;
	margin-bottom: 8rem;
	overflow: scroll;
}
.brands-container .flex {
	width: max-content;
	align-items: center;
}
.brands-container::-webkit-scrollbar {
	display: none;
}
.brands-title {
	color: var(--black);
	line-height: 1.4;
	margin-bottom: 0;
}
.brands-container img {
	width: max-content;
	height: 3rem;
	object-fit: contain;
}
.brands-title,
.brands-container img {
	display: inline-flex;
	margin-right: 3rem;
}
@media screen and (min-width: 48em) { /* 768px */
	.brands-container {
		margin-bottom: 12rem;
		margin-top: 1rem;
	}
}
@media screen and (min-width: 54em) { /* 864px */
	.brands-container .flex {
		width: 100%;
		justify-content: space-between;
		padding: 0 1.5rem;
	}
	.brands-title {
		margin-right: 0;
	}
	.brands-container img {
		height: 2.5rem;
		margin-right: 0;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.brands-container img {
		height: 3rem;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.brands-container {
		margin-bottom: 15rem;
	}
	.brands-container .flex {
		padding: 0 4.5rem;
	}
	.brands-container img {
		height: 3.6rem;
	}
}
@media screen and (min-width: 90em) { /* 1440px */
	.brands-container img {
		height: 4.2rem;
	}
}
@media screen and (min-width: 100em) { /* 1600px */
	.brands-container img {
		height: 5rem;
	}
}

/* Landing Page : Intro */
.intro-container {
	margin-bottom: 10rem;
}
.intro-text-container {
	width: 100%;
}
.intro-title {
	max-width: 50rem;
	display: block;
	font-size: 3rem;
	font-family: 'PT Serif', Helvetica, Arial, sans-serif;
	font-style: italic;
	font-weight: bold;
	line-height: 1.5;
	margin: auto;
	margin-bottom: 2rem;
	text-align: center;
	text-transform: capitalize;
	text-shadow: -1px -1px 0 var(--white), 1px -1px 0 var(--white),
				 -1px 1px 0 var(--white), 1px 1px 0 var(--white);
}
.intro-description {
	width: 100%;
	color: var(--black);
	font-size: 1.4rem;
	margin-bottom: 3.5rem;
	text-align: center;
}
.intro-grid-container {
	width: 100%;
	max-width: 118rem;
	gap: 8px;
	grid-template-columns: 1fr 1fr;
	margin: auto;
	margin-bottom: 4rem;
}
.intro-item {
	background: var(--white);
	border-radius: 6px;
	color: var(--black);
	padding: 2.5rem 1.5rem;
	place-content: center;
}
.intro-item-one,
.intro-item-ten {
	grid-column: span 2;
}
.intro-item-two,
.intro-item-six {
	grid-row: span 2;
}
.intro-item-img {
	width: 50%;
	max-width: 7rem;
	margin: auto;
	margin-bottom: 2rem;
}
.intro-item-img img {
	width: 100%;
	object-fit: contain;
}
.intro-item-title {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 1rem;
}
.intro-item-description {
	font-size: 1.2rem;
	line-height: 1.4;
	margin-bottom: 5px;
}
.intro-button-container {
	width: 100%;
	justify-content: space-around;
}
.intro-button {
	background: rgba(var(--red-rgb), 1);
	border-radius: 5px;
	color: var(--white);
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 0;
	padding: 1.5rem 4rem;
	text-decoration: none;
	text-transform: uppercase;
}
.intro-button:hover {
	background: rgba(var(--red-rgb), 0.8);
	color: var(--white);
}
@media screen and (min-width: 48em) { /* 768px */
	.intro-container {
		margin-bottom: 12rem;
	}
	.intro-title {
		max-width: 56rem;
		font-size: 3.6rem;
	}
	.intro-description {
		font-size: 1.6rem;
	}
	.intro-grid-container {
		gap: 1rem;
		grid-template-columns: 1fr 1fr 1fr;
	}
	.intro-item-three {
		grid-column: span 1;
	}
	.intro-item-six {
		grid-column: span 2;
		grid-row: span 1;
	}
	.intro-item-nine {
		grid-row: span 2;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.intro-title {
		max-width: 64rem;
		font-size: 4.2rem;
	}
	.intro-grid-container {
		gap: 1.5rem;
	}
	.intro-item {
		padding: 3.5rem 2.5rem;
	}
	.intro-item-img {
		margin-bottom: 2.5rem;
	}
	.intro-item-title {
		font-size: 1.8rem;
		margin-bottom: 8px;
	}
	.intro-item-description {
		font-size: 1.4rem;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.intro-container {
		margin-bottom: 15rem;
	}
	.intro-title {
		max-width: 72rem;
		font-size: 4.6rem;
	}
	.intro-description {
		font-size: 1.8rem;
		margin-bottom: 4rem;
	}
	.intro-grid-container {
		margin-bottom: 4.5rem;
	}
	.intro-item {
		padding: 4.5rem 3rem;
	}
}

/* Landing Page : Spec */
.spec-container {
	margin-bottom: 10rem;
}
.spec-details-container {
	max-width: 118rem;
	margin: auto;
}
.spec-details-container,
.spec-text-container {
	width: 100%;
}
.spec-text-title {
	max-width: 36rem;
	display: block;
	font-size: 3rem;
	font-family: 'PT Serif', Helvetica, Arial, sans-serif;
	font-style: italic;
	font-weight: bold;
	line-height: 1.5;
	margin: auto;
	margin-bottom: 2.5rem;
	text-align: center;
	text-transform: capitalize;
	text-shadow: -1px -1px 0 var(--white), 1px -1px 0 var(--white),
				 -1px 1px 0 var(--white), 1px 1px 0 var(--white);
}
.spec-details-type {
	max-height: 24rem;
	border-radius: 1rem;
	cursor: pointer;
	margin-bottom: 1rem;
	overflow: hidden;
	position: relative;
}
.spec-details-type img {
	width: 100%;
	height: 100%;
	margin-bottom: -1rem;
	object-fit: cover;
}
.spec-details-type-title {
	bottom: 2rem;
	color: var(--white);
	font-size: 1.4rem;
	font-weight: 600;
	left: 2rem;
	line-height: 1.4;
	margin-bottom: 0;
	padding-right: 1rem;
	position: absolute;
	z-index: 2;
}
.spec-details-type-overlay {
	width: 100%;
	height: 100%;
	background: rgba(var(--black-rgb), .5);
	border-radius: 1rem;
	display: block;
	left: 0;
	position: absolute;
	top: 0;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
	z-index: 1;
}
.spec-details-type.selected .spec-details-type-overlay {
	background: rgba(var(--black-rgb), 0);
	border: 3px solid var(--red);
}
.spec-details-type:hover .spec-details-type-overlay {
	background: rgba(var(--black-rgb), 0.25);
	border: 5px solid var(--red);
}
.spec-description {
	width: 100%;
	color: var(--black);
	font-size: 1.4rem;
	margin-bottom: 3.5rem;
	text-align: center;
}
.spec-button-container {
	width: 100%;
	justify-content: space-around;
}
.spec-button {
	width: 100%;
	background: rgba(var(--red-rgb), 1);
	border-radius: 5px;
	color: var(--white);
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 0;
	padding: 1.5rem 4rem;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}
.spec-button:hover {
	background: rgba(var(--red-rgb), 0.8);
	color: var(--white);
}
.spec-details-right {
	padding: 2rem;
}
.spec-details-title {
	color: var(--black);
	font-size: 1.8rem;
	font-weight: 800;
}
.spec-details-right p {
	color: var(--black);
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 0;
}
.spec-details-table {
	color: var(--black);
	font-size: 1.4rem;
	gap: 1rem;
	margin-bottom: 5rem;
	margin-top: 3rem;
}
.spec-details-table-specs {
	line-height: 2.4;
}
@media screen and (min-width: 30em) { /* 480px */
	.spec-details-left {
		gap: 1rem;
	}
	.spec-details-type {
		width: calc(50% - 5px);
	}
	.spec-details-table {
		gap: 5rem;
	}
}
@media screen and (min-width: 40em) { /* 640px */
	.spec-container {
		padding: 0 3.5rem;
	}
	.spec-text-title {
		margin-bottom: 3rem;
	}
}
@media screen and (min-width: 48em) { /* 768px */
	.spec-container {
		margin-bottom: 12rem;
	}
	.spec-details-type {
		width: 100%;
		margin-bottom: 0;
	}
	.spec-text-title {
		max-width: 42rem;
		font-size: 3.6rem;
		margin-bottom: 3.5rem;
	}
	.spec-details-type-title {
		bottom: 1.5rem;
		font-size: 1.4rem;
		left: 1.5rem;
		line-height: 1.4;
	}
	.spec-description {
		font-size: 1.6rem;
	}
	.spec-details-container {
		grid-template-columns: 40% 60%;
	}
	.spec-details-right {
		padding: 2rem 3rem;
		padding-right: 0;
	}
	.spec-details-title {
		font-size: 2rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.spec-details-right {
		padding: 3rem 4.5rem;
		padding-right: 0;
	}
	.spec-text-title {
		max-width: 48rem;
		font-size: 4.2rem;
		margin-bottom: 4rem;
	}
	.spec-details-title {
		font-size: 2.4rem;
		margin-bottom: 2.5rem;
	}
	.spec-details-right p {
		font-size: 1.6rem;
	}
	.spec-details-table {
		font-size: 1.5rem;
		margin-top: 3.5rem;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.spec-container {
		margin-bottom: 15rem;
		padding: 0 7.5rem;
	}
	.spec-text-title {
		max-width: 52rem;
		font-size: 4.6rem;
		margin-bottom: 5rem;
	}
	.spec-details-type-title {
		font-size: 1.8rem;
	}
	.spec-description {
		font-size: 1.8rem;
		margin-bottom: 4rem;
	}
	.spec-details-title {
		font-size: 2.6rem;
		margin-bottom: 3rem;
	}
	.spec-details-right p {
		font-size: 1.8rem;
	}
	.spec-details-table {
		font-size: 1.6rem;
		margin-top: 4rem;
	}
}

/* Landing Page : Black Block */
.black-block-container {
	width: 100%;
}
.black-block-flex {
	background: var(--black);
	border-radius: 1rem;
	color: var(--white);
	padding: 5rem 2.5rem;
	margin-bottom: 10rem;
}
.black-block-text-container {
	width: 100%;
}
.black-block-title {
	max-width: 50rem;
	display: block;
	font-size: 3rem;
	font-family: 'PT Serif', Helvetica, Arial, sans-serif;
	font-style: italic;
	font-weight: bold;
	line-height: 1.5;
	margin: auto;
	margin-bottom: 2rem;
	text-align: center;
	text-transform: capitalize;
}
.black-block-description {
	width: 100%;
	font-size: 1.4rem;
	margin-bottom: 3.5rem;
	text-align: center;
}
.black-block-button-container {
	width: 100%;
	justify-content: space-around;
}
.black-block-button {
	background: rgba(var(--white-rgb), 1);
	border-radius: 5px;
	color: var(--red);
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 4.5rem;
	padding: 1.5rem 4rem;
	text-decoration: none;
	text-transform: uppercase;
}
.black-block-button:hover {
	background: rgba(var(--red-rgb), 1);
	color: var(--white);
}
.black-block-grid-container {
	width: 100%;
	max-width: 118rem;
	margin: auto;
}
.black-block-item {
	width: 100%;
	height: 100%;
	max-height: 20rem;
	border-radius: 1rem;
	margin-bottom: 1rem;
	overflow: hidden;
	position: relative;
}
.black-block-item img {
	width: 100%;
	height: 100%;
	margin-bottom: -1rem;
	object-fit: cover;
}
.black-block-item-title {
	bottom: 2rem;
	color: var(--white);
	font-size: 1.4rem;
	font-weight: 600;
	left: 2rem;
	line-height: 1.25;
	margin-bottom: 0;
	margin-right: 1rem;
	position: absolute;
	z-index: 2;
}
.black-block-item-overlay {
	width: 100%;
	height: 100%;
	background: rgba(var(--black-rgb), .25);
	border-radius: 1rem;
	display: block;
	left: 0;
	position: absolute;
	top: 0;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
	z-index: 1;
}
.black-block-item:hover .black-block-item-overlay {
	background: rgba(var(--black-rgb), .1);
}
@media screen and (min-width: 40em) { /* 640px */
	.black-block-grid-container {
		gap: 8px;
		grid-template-columns: 1fr 1fr 1fr;
	}
	.black-block-item {
		max-height: 36rem;
	}
}
@media screen and (min-width: 48em) { /* 768px */
	.black-block-container {
		margin-bottom: 12rem;
	}
	.black-block-flex {
		padding: 7rem 5rem;
	}
	.black-block-title {
		max-width: 56rem;
		font-size: 3.6rem;
	}
	.black-block-description {
		font-size: 1.6rem;
	}
	.black-block-button {
		margin-bottom: 5rem;
	}
	.black-block-item-title {
		bottom: 1.5rem;
		left: 1.5rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.black-block-flex {
		padding: 9rem 5rem 11rem;
	}
	.black-block-title {
		max-width: 64rem;
		font-size: 4.2rem;
	}
	.black-block-grid-container {
		gap: 1rem;
	}
	.black-block-item-title {
		bottom: 2rem;
		left: 2rem;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.black-block-container {
		margin-bottom: 15rem;
	}
	.black-block-flex {
		padding: 11rem 5rem 13rem;
	}
	.black-block-title {
		max-width: 72rem;
		font-size: 4.6rem;
	}
	.black-block-description {
		font-size: 1.8rem;
		margin-bottom: 4rem;
	}
	.black-block-grid-container {
		gap: 1.5rem;
	}
	.black-block-item {
		height: 50rem;
		max-height: 50rem;
	}
	.black-block-item-title {
		bottom: 2.5rem;
		font-size: 1.6rem;
		left: 2.5rem;
	}
}

/* Landing Page : Logistics & Connectivity */
.logistics-connectivity-container {
	width: 100%;
	max-width: 120rem;
	margin: auto;
}
.logistics-connectivity-flex {
	background: rgba(var(--black-rgb), .1);
	border-radius: 1rem;
	color: var(--black);
	padding: 5rem 2.5rem 7rem;
	margin-bottom: 10rem;
}
.logistics-connectivity-text-container {
	width: 100%;
}
.logistics-connectivity-title {
	width: 100%;
	font-size: 2.8rem;
	font-weight: 800;
	line-height: 1.4;
	margin-bottom: 2.5rem;
}
.logistics-connectivity-subtitle {
	width: 100%;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 5rem;
}
.logistics-connectivity-description {
	width: 100%;
	font-size: 1.5rem;
	margin-bottom: 3rem;
}
.logistics-connectivity-description b {
	font-weight: 700;
}
.logistics-connectivity-map-container {
	width: 100%;
	height: 100%;
}
.logistics-connectivity-item {
	width: 100%;
	height: 100%;
	background: var(--white);
	border-radius: 1rem;
	margin-bottom: 1rem;
	overflow: hidden;
	padding: 5px;
	position: relative;
}
.logistics-connectivity-item img {
	width: 100%;
	height: 100%;
	margin-bottom: -1rem;
	object-fit: contain;
}
.logistics-connectivity-button-container {
	width: 100%;
	justify-content: space-around;
}
.logistics-connectivity-button {
	width: 100%;
	height: 5.52rem;
	background: rgba(var(--red-rgb), 1);
	border-radius: 5px;
	color: var(--white);
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 600;
	margin-top: 2.5rem;
	margin-bottom: 0;
	padding: 1.5rem 4rem;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}
.logistics-connectivity-button:hover {
	background: rgba(var(--red-rgb), 0.8);
	color: var(--white);
}
@media screen and (min-width: 48em) { /* 768px */
	.logistics-connectivity-container {
		margin-bottom: 12rem;
	}
	.logistics-connectivity-flex {
		padding: 7rem 5rem;
	}
	.logistics-connectivity-title {
		font-size: 3rem;
	}
	.logistics-connectivity-subtitle {
		font-size: 2.2rem;
	}
	.logistics-connectivity-description {
		font-size: 1.6rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px */
	.logistics-connectivity-flex {
		padding: 9rem 5rem 11rem;
	}
	.logistics-connectivity-title {
		font-size: 3.8rem;
	}
	.logistics-connectivity-subtitle {
		font-size: 2.4rem;
	}
}
@media screen and (min-width: 80em) { /* 1280px */
	.logistics-connectivity-flex {
		padding: 11rem 5rem 7.5rem;
	}
	.logistics-connectivity-text-container,
	.logistics-connectivity-map-container {
		width: 50%;
		height: auto;
	}
	.logistics-connectivity-map-container {
		padding-left: 3rem;
	}
	.logistics-connectivity-title {
		font-size: 3.2rem;
	}
	.logistics-connectivity-subtitle {
		font-size: 2.2rem;
	}
	.logistics-connectivity-item {
		height: 50rem;
		max-height: 50rem;
	}
	.logistics-connectivity-button-container {
		align-items: self-end;
	}
	.logistics-connectivity-button {
		margin-bottom: 3.5rem;
}






/* Media Queries */
@media screen and (min-width: 22.5em) { /* 360px */

}
@media screen and (min-width: 30em) { /* 480px */

}
@media screen and (min-width: 40em) { /* 640px */

}
@media screen and (min-width: 48em) { /* 768px */

}
@media screen and (min-width: 60em) { /* 960px */

}
@media screen and (min-width: 64em) { /* 1024px */

}
@media screen and (min-width: 80em) { /* 1280px */

}
@media screen and (min-width: 90em) { /* 1440px */

}






