@charset "UTF-8";
/*
Theme Name: RINS by Scud for WORQ 2025
Author: Scud
Author URI: https://scud.my/
Version: 29.03.25
*/

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

ol,
ul {
	font-family: 'PT Sans Caption', Helvetica, Arial, sans-serif;
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

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 {
	width: 100%;
	min-height: 100%;
	font-size: 10px;
	font-size: 62.5%;
	overflow-x: hidden;
}

body {
	height: 100%;
	min-height: 100vh;
	/*	background: var(--bg-white);*/
	background: var(--white);
	line-height: 1;
	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;
}

body,
button,
input,
select,
textarea {
	color: var(--worq-navy);
	font-family: 'PT Sans Caption', Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 2.1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: 0;
	outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 2.4rem;
	font-weight: 900;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "zero";
	line-height: 1.2;
	text-decoration: none;
}

b {
	font-weight: bold;
}

ul,
ol {
	width: 100%;
	margin: 0;
	margin-bottom: 5rem;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}

li {
	list-style: none;
	padding-bottom: 0;
	padding-left: 0;
	position: relative;
}

button {
	border: 0;
	cursor: pointer;
}

label {
	display: initial;
	font-weight: normal;
	margin: 0;
}

input[type='radio'] {
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto;
}

.section-container,
.narrow-section-container {
	width: 100%;
	max-width: 192rem;
	left: 0;
	margin: auto;
	padding: 0 2rem;
	position: relative;
	right: 0;
}

.narrow-section-container {
	max-width: 128rem;
	padding: 0;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.section-container {
		padding: 0 3rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	body,
	button,
	input,
	select,
	textarea {
		font-size: 14px;
		font-size: 1.4rem;
	}

	.section-container {
		padding: 0 4rem;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	body,
	button,
	input,
	select,
	textarea {
		font-size: 14px;
		font-size: 1.4rem;
	}

	.section-container {
		padding: 0 5rem;
	}

	.container.narrow-container {
		padding-left: 15rem;
		padding-right: 15rem;
	}
}

/* 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 {
	display: -ms-grid;
	display: grid;
	-ms-grid-template-columns: 100%;
	grid-template-columns: 100%;
}


/* Colors */
:root {
	--worq-red: #D95827;
	--worq-orange: #EB8902;
	--worq-peach: #FAAE7B;
	--worq-yellow: #F0EBD8;
	--worq-grey: #42606E;
	--worq-black: #0E1318;
	--worq-navy: #1D2D44;
	--worq-blue: #0039A9;

	--orange: #FB8B24;
	--orange-rgb: 235, 137, 2;
	--dark-black: #222222;
	--black-rgb: 34, 34, 34;
	--black: #444444;
	--grey: #828282;
	--grey-rgb: 130, 130, 130;
	--off-white: #FAFAF6;
	--white: #FFFFFF;
	--white-rgb: 255, 255, 255;
	--bg-white: #F0EEE2;
	--border-grey: #D5D4CB;
	--maroon: #820021;
	--pink: #f1d8d9;
	--yellow: #ffd301;
}


/* Header */
.header-container {
	max-width: 192rem;
	height: 4rem;
	margin: auto;
	/*	overflow-x: hidden;*/
}

/* Header : Logo */
.logo-container {
	position: relative;
}

.logo-container>a {
	width: 5rem;
	display: block;
	line-height: 0;
	margin-left: 2rem;
	padding-top: 2rem;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.header-container {
		height: 5rem;
	}

	.logo-container>a {
		width: 6rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.header-container {
		height: 6rem;
	}

	.logo-container>a {
		width: 7.5rem;
		margin-left: 3rem;
		padding-top: 3rem;
	}
}

/* Header : Festive Decor */

/* Header : Call & Contact Button */
.call-button-container {
	margin-left: auto;
	padding-bottom: 1rem;
	position: relative;
}

.call-button,
.whatsapp-button,
.contact-button {
	height: 2.4rem;
	background: var(--worq-orange);
	border-radius: 1.2rem;
	display: block;
	margin-left: 5px;
	margin-top: 1.7rem;
	padding: .7rem 1rem;
}

.call-button {
	background-color: rgba(var(--grey-rgb), 0.6);
	z-index: 11;
}

.call-button-text,
.whatsapp-button-text,
.contact-button-text {
	color: var(--white);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1rem;
}

.whatsapp-button {
	height: 2.6rem;
	background: var(--white);
	border: 1px solid var(--border-grey);
	bottom: 0;
	margin: 0;
	margin-top: 5px;
	opacity: 0;
	padding: 0.4rem 1.5rem;
	position: absolute;
	right: 0;
	-webkit-transform: translateY(80%);
	transform: translateY(80%);
	-webkit-transition: -webkit-transform .2s ease;
	transition: -webkit-transform .2s ease;
	transition: transform .2s ease;
	z-index: -1;
}

.whatsapp-button.slide-down {
	bottom: 7px;
	opacity: 1;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	z-index: 1;
}

.whatsapp-button img {
	width: 1.6rem;
	height: 1.6rem;
	display: inline-block;
	margin-right: 2px;
	position: relative;
	vertical-align: middle;
}

.whatsapp-button-text {
	color: #39AE41;
}

@media screen and (min-width: 22.5em) {

	/* 360px */
	.call-button,
	.contact-button {
		padding: .7rem 1.4rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.call-button,
	.contact-button {
		height: 2.8rem;
		border-radius: 1.4rem;
		margin-left: 1rem;
		margin-top: 1.6rem;
		padding: .9rem 1.8rem;
	}

	.whatsapp-button {
		height: 3rem;
		border-radius: 1.5rem;
		padding: 0.55rem 1.9rem;
	}

	.whatsapp-button.slide-down {
		bottom: 6px;
		opacity: 1;
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
		z-index: 1;
	}

	.whatsapp-button img {
		width: 1.6rem;
		height: 1.6rem;
		display: inline-block;
		margin-right: 2px;
		position: relative;
		vertical-align: middle;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.call-button,
	.contact-button {
		height: 4rem;
		border-radius: 2rem;
		margin-left: 1.5rem;
		margin-top: 2.6rem;
		padding: 1.4rem 2.4rem;
	}

	.call-button-text,
	.whatsapp-button-text,
	.contact-button-text {
		font-size: 1.4rem;
		font-weight: 600;
		line-height: 1rem;
	}

	.whatsapp-button {
		height: 4.2rem;
		border-radius: 2.1rem;
		padding: 0.9rem 2.7rem;
	}

	.whatsapp-button img {
		width: 2rem;
		height: 2rem;
	}

	.whatsapp-button.slide-down {
		bottom: 4px;
	}
}

/* Header : Burger Menu */
.burger-menu-container {
	margin-left: 1.5rem;
	z-index: 13;
}

.burger-menu-container.opened {
	position: fixed;
	right: 0;
}

.contact-button-container.opened {
	margin-right: 5.7rem;
}

.burger-menu {
	width: 2.2rem;
	height: 1.6rem;
	cursor: pointer;
	margin-right: 2rem;
	margin-top: 2.2rem;
}

.burger-menu .bar {
	width: 2.2rem;
	height: 2.5px;
	background: var(--worq-black);
	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;
	-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-top: -6px;
	-webkit-transform: rotate(-225deg);
	transform: rotate(-225deg);
}

@media screen and (min-width: 48em) {

	/* 768px */
	.burger-menu-container {
		margin-left: 3rem;
	}

	.contact-button-container.opened {
		margin-right: 7.2rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.burger-menu-container {
		margin-left: 4rem;
	}

	.contact-button-container.opened {
		margin-right: 9.2rem;
	}

	.burger-menu {
		margin-right: 3rem;
		margin-top: 3.6rem;
	}

	.burger-menu .bar {
		width: 2.6rem;
		height: 3px;
		border-radius: 1.5px;
		margin-bottom: 5px;
	}

	.burger-menu .bar:nth-child(2) {
		width: 1.6rem;
	}

	.burger-menu .bar:nth-child(3) {
		width: 2.1rem;
	}

	.opened .burger-menu {
		padding-top: 0.7rem;
	}

	.opened .burger-menu .bar:nth-child(1) {
		margin-bottom: -3px;
	}

	.opened .burger-menu .bar:nth-child(3) {
		width: 2.6rem;
		margin-top: -8px;
	}
}


/* Footer */
.footer-container {
	background: var(--white);
	overflow: hidden;
	padding-bottom: 1rem;
	padding-top: 1rem;
}

/* Footer : Column */
.footer-column {
	width: 100%;
	margin-bottom: 5rem;
}

.footer-column-title {
	width: 100%;
	font-family: 'PT Sans Caption', Helvetica, Arial, sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 2.4rem;
}

.footer-social .footer-column-title {
	font-size: 1.3rem;
	font-weight: 500;
}

.footer-column ul {
	margin-bottom: 0;
}

.footer-column li {
	font-size: 1.4rem;
	line-height: 1.2;
	margin-bottom: 1.8rem;
}

.footer-column li a {
	position: relative;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.footer-column li:hover a {
	color: var(--worq-orange);
}

.footer-column li a:before {
	width: 0;
	height: 1px;
	background: var(--worq-orange);
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	position: absolute;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.footer-column li:hover a:before {
	width: 100%;
}

.footer-social-item a:not(:last-child) {
	display: inline-block;
	margin-right: 2rem;
}

.footer-social-item img {
	width: 2.4rem;
	height: 2.4rem;
	object-fit: contain;
}

.footer-downloads {
	margin-top: 5rem;
}

@media screen and (min-width: 30em) {

	/* 480px */
	.footer-column {
		width: 50%;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.footer-column-title {
		font-size: 1.6rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.footer-column {
		width: 25%;
	}
}

/* Footer : Newsletter */
.footer-newsletter-left,
.footer-newsletter-right {
	width: 100%;
}

.footer-newsletter-right {
	max-width: 36rem;
}

.footer-newsletter-title {
	width: 100%;
	font-family: 'PT Sans Caption', Helvetica, Arial, sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.footer-newsletter-text {
	color: var(--grey);
	font-size: 1.3rem;
	margin-bottom: 2rem;
}

.footer-newsletter-right form,
.footer-newsletter-right .hbspt-form,
.footer-newsletter-right .hbspt-form form,
.footer-newsletter-right .hbspt-form form .hs-email,
.footer-newsletter-right .hbspt-form form .hs-email input,
.footer-newsletter-right .hbspt-form form .hs-submit {
	width: 100%;
}

#label-email-b10f065c-ba46-4323-9a5d-ac88d98ae331 {
	display: none;
}

#newsletter-email,
.footer-newsletter-right .hbspt-form form .hs-email input {
	width: 100%;
	height: 4rem;
	background: var(--white);
	border: 1px solid #707070;
	border-radius: 2rem;
	display: inline-block;
	font-size: 1.3rem;
	margin-bottom: 8px;
	padding: 0 2rem;
	outline: none;
}

.footer-newsletter-right .hbspt-form form .hs-submit {
	display: inline-block;
}

#newsletter-submit,
.hs-submit .hs-button {
	width: 100%;
	height: 4rem;
	background: var(--orange);
	border: 1px solid var(--orange);
	border-radius: 2rem;
	color: var(--white);
	cursor: pointer;
	font-size: 1.4rem;
	font-weight: bold;
	outline: none;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.footer-newsletter-left,
	.footer-newsletter-right {
		width: 50%;
	}

	.footer-newsletter-right {
		max-width: none;
	}

	.footer-newsletter-title {
		font-size: 1.6rem;
	}

	#newsletter-email,
	.footer-newsletter-right .hbspt-form form .hs-email,
	.footer-newsletter-right .hbspt-form form .hs-email input {
		width: calc(100% - 14.9rem);
		height: 5rem;
		border-radius: 2.5rem;
		padding: 0 2rem;
		margin: 0;
		margin-right: 5px;
	}

	.footer-newsletter-right .hbspt-form form .hs-email {
		width: calc(100% - 14.6rem);
		padding: 0;
	}

	.footer-newsletter-right .hbspt-form form .hs-email input {
		width: 100%;
	}

	#newsletter-submit,
	.footer-newsletter-right .hbspt-form form .hs-submit,
	.footer-newsletter-right .hbspt-form form .hs-submit .hs-button {
		width: 14rem;
		height: 5rem;
		border-radius: 2.5rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.footer-newsletter-container {
		margin-top: 3rem;
	}

	.footer-newsletter-left,
	.footer-newsletter-right {
		width: 39%;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.footer-newsletter-left,
	.footer-newsletter-right {
		width: 33.33%;
	}

	#newsletter-email,
	.footer-newsletter-right .hbspt-form form .hs-email {
		width: calc(100% - 15.8rem);
		margin-right: 3px;
	}

	#newsletter-submit,
	.footer-newsletter-right .hbspt-form form .hs-submit .hs-button {
		width: 15rem;
	}

	.footer-newsletter-right .hbspt-form form .hs-submit .hs-button {
		margin-left: 5px;
	}

}

/* Footer : Newsletter */
.footer-copyright-container {
	/* margin-top: 6rem; */
	max-width: 60rem;
}

.footer-copyright-left,
.footer-copyright-right {
	width: 100%;
}

.footer-copyright-title {
	font-family: 'PT Sans Caption', Helvetica, Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: 400;
	margin-bottom: 2rem;
}

.footer-copyright-right ul {
	margin-bottom: 0;
}

.footer-copyright-right li {
	color: var(--grey);
	font-size: 1.2rem;
	line-height: 1.2;
	margin-bottom: 1.2rem;
}

.footer-copyright-right li a {
	position: relative;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.footer-copyright-right li:hover a {
	color: var(--worq-orange);
}

.footer-copyright-right li a:before {
	width: 0;
	height: 1px;
	background: var(--worq-orange);
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	position: absolute;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.footer-copyright-right li:hover a:before {
	width: 100%;
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.footer-copyright-left,
	.footer-copyright-right {
		width: 50%;
	}

	.footer-copyright-title {
		margin-bottom: 0;
	}

	.footer-copyright-right ul {
		line-height: 1;
	}

	.footer-copyright-right li {
		display: inline-block;
		margin-bottom: 0;
		margin-right: 2.5rem;
	}
}

/* Footer : Floating W */
.worq-logo-w svg {
	width: 15rem;
	bottom: 4rem;
	position: absolute;
	right: -2.5rem;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.worq-logo-w svg {
		width: 18rem;
		bottom: 5rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.worq-logo-w svg {
		width: 24rem;
	}
}


/* Hero */
.hero-title-container {
	margin-bottom: 3.5rem;
	margin-top: 3.5rem;
}

.hero-title {
	width: 100%;
	font-size: 3.6rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-align: center;
}

.hero-subtitle {
	width: 100%;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
}
.merdeka-event-space .hero-tag {
	background: rgb(255, 237, 213);
	color: rgb(249, 115, 22);
	border-radius: 999px;
	padding: 0.4rem 1.6rem;
	display: inline-block;
	font-weight: 600;
	margin-bottom: 1rem;

}


@media screen and (min-width: 30em) {

	/* 480px */
	.hero-title-container {
		margin-bottom: 4rem;
		margin-top: 5rem;
	}

	.hero-title {
		font-size: 3.8rem;
	}

	.hero-subtitle {
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.hero-title {
		font-size: 5.2rem;
	}

	.hero-subtitle {
		font-size: 1.5rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.hero-title-container {
		margin-bottom: 5rem;
		margin-top: 6rem;
	}

	.hero-title {
		font-size: 6rem;
	}

	.hero-subtitle {
		font-size: 1.6rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.hero-title {
		font-size: 7rem;
		margin-bottom: 1.5rem;
	}
}

/* Hero : Product Bar */
.hero-product-bar-container {
	z-index: 2;
}

.hero-product-bar {
	width: fit-content;
	height: 6rem;
	background: var(--worq-yellow);
	background: #E5E3D8;
	border-radius: 3rem;
	-webkit-box-shadow: 0 3px 6px 0 rgba(34, 34, 34, .25);
	-moz-box-shadow: 0 3px 6px 0 rgba(34, 34, 34, .25);
	box-shadow: 0 3px 6px 0 rgba(34, 34, 34, .25);
	margin: auto;
	padding: 5px;
	position: relative;
}

.hero-product-item-bg {
	width: 5rem;
	height: 5rem;
	background: var(--worq-orange);
	border-radius: 2.5rem;
	display: block;
	left: 5px;
	opacity: 0;
	position: absolute;
	top: 5px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 0;
}

.hero-product-item-bg.show {
	opacity: 1;
}

.hero-product-item {
	width: 5rem;
	height: 5rem;
	border-radius: 2.5rem;
	cursor: pointer;
	padding: 1.1rem .3rem;
	text-align: center;
	z-index: 1;
}

.hero-product-item:first-child {
	animation: pulse-once 3s forwards;
	animation-delay: 1s;
}

.hero-product-item.highlight {
	width: 5rem;
}

@keyframes pulse-once {
	0% {
		box-shadow: 0 0 0 0 rgba(var(--grey-rgb), 0.2);
	}

	33.33% {
		box-shadow: 0 0 0 1.5rem rgba(var(--grey-rgb), 0);
	}

	66.6% {
		box-shadow: 0 0 0 0 rgba(var(--grey-rgb), 0);
	}

	66.66% {
		box-shadow: 0 0 0 0 rgba(var(--grey-rgb), 0.2);
	}

	100% {
		box-shadow: 0 0 0 1.5rem rgba(var(--grey-rgb), 0);
	}
}

.hero-product-item svg {
	width: 2.8rem;
	height: 2.8rem;
	display: inline-block;
	object-fit: contain;
	text-align: center;
	vertical-align: middle;
}

.hero-product-item svg .st0,
.hero-product-item svg .st1,
.hero-product-item svg .st2,
.hero-product-item svg .st3 {
	fill: var(--white);
	stroke: var(--worq-black);
	-webkit-transition: all .2s ease .1s;
	transition: all .2s ease .1s;
}

.hero-product-item.highlight svg path,
.hero-product-item.highlight svg line,
.hero-product-item.highlight svg circle,
.hero-product-item.highlight svg polyline {
	stroke: var(--white);
}

.hero-product-item-text {
	width: auto;
	display: none;
	font-size: 1rem;
	font-weight: 600;
	margin-left: 5px;
	text-align: center;
	-webkit-transition: all .2s ease .1s;
	transition: all .2s ease .1s;
	vertical-align: middle;
}

@media screen and (min-width: 22.5em) {

	/* 360px */
	.hero-product-item-bg,
	.hero-product-item,
	.hero-product-item.highlight {
		width: 6rem;
	}
}

@media screen and (min-width: 24.375em) {

	/* 390px */
	.hero-product-item {
		width: 6rem;
	}

	.hero-product-item-bg,
	.hero-product-item.highlight {
		width: 10rem;
	}

	.hero-product-item.highlight .hero-product-item-text {
		color: var(--white);
		display: inline-block;
	}
}

@media screen and (min-width: 36.25em) {

	/* 580px */
	.hero-product-item {
		padding: 1.1rem;
	}

	.hero-product-item {
		width: 8rem;
	}

	.hero-product-item.highlight,
	.hero-product-item-bg {
		width: 13rem;
	}

	.hero-product-item-text {
		font-size: 1.2rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.hero-product-item,
	.hero-product-item.highlight,
	.hero-product-item-bg {
		width: 13rem;
	}

	.hero-product-item-text {
		display: inline-block;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.hero-product-item,
	.hero-product-item.highlight,
	.hero-product-item-bg {
		width: 15rem;
	}

	.hero-product-item-text {
		font-size: 1.4rem;
		margin-left: 1rem;
	}
}

/* Hero : Product Finder */
.hero-product-finder-container {
	width: 100%;
	border-radius: 1.5rem;
	margin-bottom: 5rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: -2.5rem;
	position: relative;
	z-index: 0;
}

.hero-product-finder-container:before {
	width: 100%;
	height: 10rem;
	background: var(--worq-navy);
	border-radius: 1.5rem;
	content: "";
	display: block;
	left: 0;
	opacity: .5;
	position: absolute;
	top: -1rem;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
}

.hero-product-finder-container.show:before {
	opacity: .9;
}

.hero-product-finder {
	width: 100%;
	height: 0;
	min-height: 0;
	background: transparent;
	border-radius: 1.5rem;
	opacity: 0;
	padding: 0 2rem;
	position: relative;
	-webkit-transition: opacity .25s ease;
	transition: opacity .25s ease;
	visibility: hidden;
	z-index: 0;
}

.hero-product-finder.selected {
	min-height: 40rem;
	opacity: 1;
	visibility: visible;
}

.show .hero-product-finder.selected {
	height: fit-content;
	min-height: 40rem;
	background: var(--worq-yellow);
	z-index: 2;
}

.hero-product-finder-container>img {
	width: 100%;
	height: 40rem;
	border-radius: 1.5rem;
	left: 0;
	object-fit: cover;
	overflow: hidden;
	position: absolute;
	top: 0;
	z-index: 1;
}

/* Hero : Product Finder Top */
.hero-product-finder-top {
	width: 100%;
	display: none;
	margin: 5.5rem 0 0;
	padding-bottom: 1.5rem;
}

.show .hero-product-finder-top {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.hero-product-finder-top-column {
	width: 100%;
}

.hero-product-finder-top-column-category-title {
	width: 100%;
	color: var(--worq-grey);
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 2rem;
	text-transform: uppercase;
}

.hero-product-finder-top-column-title {
	width: 100%;
	color: rgba(var(--grey-rgb), 0.75);
	font-family: 'PT Sans Caption', Helvetica, Arial, sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.hero-product-finder-top-column:not(:last-child) {
	margin-bottom: 3rem;
}

.hero-product-finder-top-column ul {
	-moz-column-count: 2;
	-moz-column-gap: 1rem;
	-webkit-column-count: 2;
	-webkit-column-gap: 1rem;
	column-count: 2;
	column-gap: 1rem;
	margin-bottom: 0;
}

.hero-product-finder-top-column li {
	font-size: 1.3rem;
	line-height: 1.2;
	margin-bottom: 1.8rem;
}

.hero-product-finder-top-column li a {
	display: inline-block;
	position: relative;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.hero-product-finder-top-column li:hover a,
.hero-product-finder-top-column li.highlight {
	color: var(--worq-orange);
}

.hero-product-finder-top-column li a:before {
	width: 0;
	height: 1px;
	background: var(--worq-orange);
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	position: absolute;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.hero-product-finder-top-column li:hover a:before,
.hero-product-finder-top-column li.highlight a:before {
	width: 100%;
}

@media screen and (min-width: 36.25em) {

	/* 580px */
	.hero-product-finder-top-column-category-title {
		display: none;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.hero-product-finder-container {
		margin-bottom: 8rem;
	}

	.hero-product-finder-top-column {
		width: 50%;
	}

	.hero-product-finder-top-column:last-child ul {
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.hero-product-finder-top-column ul {
		-moz-column-count: 3;
		-webkit-column-count: 3;
		column-count: 3;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.hero-product-finder-container {
		margin-bottom: 10rem;
	}
}

/* Hero : Product Finder Bottom */
.hero-product-finder-bottom {
	height: 0;
	border-top: 1px solid rgba(var(--grey-rgb), 0.4);
	margin-bottom: 4rem;
	padding-top: 3.5rem;
	pointer-events: none;
	opacity: 0;
	-webkit-transform: translateY(-10%);
	transform: translateY(-10%);
	visibility: hidden;
	z-index: -1;
}

.hero-product-finder-bottom.show {
	height: auto;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all .1s ease;
	transition: all .1s ease;
	visibility: visible;
	z-index: 2;
}

.hero-product-finder-bottom-left {
	width: 100%;
	order: 2;
}

.hero-product-finder-bottom-right {
	width: 100%;
	order: 1;
	margin-bottom: 1rem;
}

.hero-product-finder-bottom-right img {
	width: 100%;
	height: 16rem;
	border: 7px solid var(--white);
	display: block;
	object-fit: cover;
	margin-bottom: 1rem;
}

.hero-product-finder-subcategory {
	margin-bottom: 0;
}

.hero-product-finder-subcategory li {
	height: 2.4rem;
	background: rgba(var(--white-rgb), 0.5);
	border-radius: 1.2rem;
	color: var(--grey);
	cursor: pointer;
	font-size: 1.2rem;
	margin-bottom: 8px;
	margin-right: 8px;
	padding: 0 1.2rem;
}

.hero-product-finder-subcategory li:hover {
	background: rgba(var(--white-rgb), 0.8);
}

.hero-product-finder-subcategory li.highlight {
	background: var(--worq-peach);
	color: var(--worq-navy);
	font-weight: 600;
}

.hero-product-finder-title {
	display: inline-block;
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 8px;
	margin-top: 1rem;
}

.hero-product-finder-status {
	display: inline-block;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	vertical-align: top;
	margin-top: 15px;
	margin-left: 0.5rem;
	padding: 2px 8px;
	text-transform: uppercase;
	border: #faae7b solid 1px;
	border-radius: 20px;
}

.hero-product-finder-status:empty {
	display: none;
}

.hero-product-finder-location {
	font-family: 'PT Sans Caption', Helvetica, Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: 400;
	margin-bottom: 2.5rem;
}

.hero-product-finder-price {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.hero-product-finder-price-slash {
	display: inline-block;
	font-size: 1.3rem;
	margin-bottom: 0;
	margin-left: 5px;
	text-decoration: line-through;
}

.hero-product-finder-sales {
	background: var(--yellow);
	color: var(--worq-navy);
	display: inline-block;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 4px;
	padding: 2px 8px;
	text-transform: uppercase;
	vertical-align: middle;
}

.hero-product-finder-notice {
	font-size: 1.3rem;
	font-weight: 400;
	margin-bottom: 3.5rem;
}

.hero-product-finder-button {
	height: 3.4rem;
	background: var(--worq-orange);
	border-radius: 2rem;
	color: var(--white);
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 3.4rem;
	margin-bottom: 1rem;
	margin-right: 1rem;
	padding: 0 1.6rem;
}

.hero-product-finder-link {
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.2rem;
	font-weight: 500;
	opacity: .5;
	overflow: hidden;
	padding-right: 2.4rem;
	position: relative;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	vertical-align: middle;
}

.hero-product-finder-link:hover {
	color: var(--worq-orange);
	opacity: 1;
}

.hero-product-finder-link .finder-link-arrow {
	width: 4.6rem;
	height: 1.8rem;
	display: inline-block;
	position: absolute;
	right: -1.4rem;
	top: 0;
	-webkit-transform: rotate(-45deg) translateX(-25%);
	transform: rotate(-45deg) translateX(-25%);
	-webkit-transition: -webkit-transform .2s ease;
	transition: -webkit-transform .2s ease;
	transition: transform .2s ease;
	vertical-align: middle;
}

.hero-product-finder-link:hover .finder-link-arrow {
	-webkit-transform: rotate(-45deg) translateX(35%);
	transform: rotate(-45deg) translateX(35%);
}

.hero-product-finder-link svg {
	width: 1.8rem;
	height: 1.8rem;
	display: inline-block;
	fill: var(--worq-orange);
	margin-right: 1rem;
}

.hero-product-finder-link svg:last-child {
	fill: var(--worq-black);
	margin-right: 0;
}

@media screen and (min-width: 22.5em) {

	/* 360px */
	.hero-product-finder-bottom-right img {
		height: 20rem;
	}
}

@media screen and (min-width: 30em) {

	/* 480px */
	.hero-product-finder-bottom-right img {
		height: 24rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.hero-product-finder-bottom-left,
	.hero-product-finder-bottom-right {
		width: 50%;
	}

	.hero-product-finder-bottom-left {
		order: 1;
		padding-right: 1.5rem;
	}

	.hero-product-finder-location {
		margin-bottom: 5rem;
	}

	.hero-product-finder-bottom-right {
		order: 2;
	}

	.hero-product-finder-bottom-right img {
		height: 28rem;
	}
}

@media screen and (min-width: 52.5em) {

	/* 840px */
	.hero-product-finder-bottom-left {
		width: 45%;
	}

	.hero-product-finder-bottom-right {
		width: 55%;
	}
}

@media screen and (min-width: 60em) {

	/* 960px */
	.hero-product-finder {
		padding: 0 5rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.hero-product-finder {
		padding: 0 8rem;
	}

	.hero-product-finder-top-column-title {
		font-size: 1.5rem;
		margin-bottom: 2rem;
	}

	.hero-product-finder-top-column li {
		font-size: 1.4rem;
	}

	.hero-product-finder-bottom-left {
		width: 40%;
	}

	.hero-product-finder-bottom-right {
		width: 60%;
	}

	.hero-product-finder-subcategory li {
		height: 3rem;
		border-radius: 1.5rem;
		font-size: 1.3rem;
		line-height: 3rem;
		margin-bottom: 1rem;
		margin-right: 1rem;
		padding: 0 1.8rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.hero-product-finder-top,
	.hero-product-finder-bottom {
		padding-left: 5rem;
		padding-right: 5rem;
	}

	.hero-product-finder-top {
		margin-top: 6.5rem;
	}

	.hero-product-finder-title {
		font-size: 3.2rem;
		margin-bottom: 1.2rem;
	}

	.hero-product-finder-location {
		font-size: 1.5rem;
	}

	.hero-product-finder-price {
		font-size: 1.8rem;
	}

	.hero-product-finder-notice {
		font-size: 1.4rem;
	}

	.hero-product-finder-button {
		height: 4.2rem;
		border-radius: 2.1rem;
		font-size: 1.4rem;
		line-height: 4.2rem;
		margin-right: 2.5rem;
		padding: 0 2.4rem;
	}

	.hero-product-finder-link {
		font-size: 1.3rem;
	}

	.hero-product-finder-bottom-right img {
		height: 32rem;
	}
}


/* Section Title */
.section-title-container {
	max-width: 112rem;
	padding: 0 2rem;
}

.section-container-tag {
	color: var(--worq-navy);
	font-family: 'PT Sans Caption', Helvetica, Arial, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	opacity: .8;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.section-container-title {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 3rem;
}

.section-container-title p {
	font-size: 1.5rem;
}

.section-container-title span {
	width: 100%;
	display: inline-block;
}

.section-container-title span:first-child {
	color: var(--worq-orange);
}

@media screen and (min-width: 22.5em) {

	/* 360px */
	.section-container-tag {
		font-size: 1.2rem;
	}

	.section-container-title {
		font-size: 2.4rem;
	}

	.section-container-title p {
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.section-title-container {
		padding: 0 3rem;
	}

	.section-container-title {
		font-size: 3.6rem;
	}

	.section-container-title p {
		font-size: 2rem;
	}

	.merdeka-event-space .section-container-title p {
		font-size: 1.8rem;
	}
}


/* Homepage : Solutions */
.solutions-container {
	max-width: 112rem;
	margin-bottom: 8rem;
	padding: 0 2rem;
}

.solutions-container-left,
.solutions-container-right,
.solutions-product,
.solutions-product-top,
.solutions-product-bottom {
	width: 100%;
}

.solutions-product {
	border-radius: 1rem;
	padding: 2rem 2rem 1rem;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.solutions-product:hover {
	background: rgba(var(--grey-rgb), .05);
}

.solutions-product.highlight {
	background: rgba(var(--grey-rgb), .1);
}

.solutions-product.highlight .solutions-product-top {
	padding-bottom: 2rem;
}

.solutions-product-left {
	width: 2.4rem;
	cursor: pointer;
	opacity: .5;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.solutions-product-left img {
	width: 100%;
	height: 2.4rem;
	object-fit: contain;
}

.solutions-product-right {
	width: calc(100% - 2.4rem);
	padding-left: 1.5rem;
}

.solutions-product-title {
	width: 100%;
	cursor: pointer;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 2.4rem;
	margin-bottom: 5px;
	opacity: .5;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.solutions-product:hover .solutions-product-left,
.solutions-product:hover .solutions-product-title,
.solutions-product.highlight .solutions-product-left,
.solutions-product.highlight .solutions-product-title {
	opacity: 1;
}

.solutions-product-description {
	height: 0;
	color: var(--worq-navy);
	line-height: 1.8;
	opacity: 0;
	-webkit-transform: translateY(7%);
	transform: translateY(7%);
	-webkit-transition: -webkit-transform .2s ease;
	transition: -webkit-transform .2s ease;
	transition: transform .2s ease;
	visibility: hidden;
	z-index: -10;
}

.solutions-product.highlight .solutions-product-description {
	height: auto;
	opacity: .8;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	visibility: visible;
	z-index: 0;
}

.solutions-product-bottom {
	height: 0;
	opacity: 0;
	visibility: hidden;
	z-index: -10;
}

.solutions-product.highlight .solutions-product-bottom {
	height: auto;
	opacity: 1;
	visibility: visible;
	z-index: 0;
}

.solutions-product-bottom img {
	width: 100%;
	height: 18rem;
	border-radius: 8px;
	display: block;
	object-fit: cover;
}

.solutions-image-button-container {
	position: relative;
}

.solutions-product-link {
	height: 3rem;
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	background: rgba(var(--white-rgb), 0.3);
	border-radius: 1.5rem;
	bottom: 1.5rem;
	color: var(--white);
	display: block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	padding: 2px;
	padding-left: 1rem;
	position: absolute;
	right: 5px;
}

.solutions-product-type,
.solutions-product-white-dot {
	display: inline-block;
	vertical-align: middle;
}

.solutions-product-white-dot {
	width: 2.6rem;
	height: 2.6rem;
	background: var(--white);
	border-radius: 1.3rem;
	margin-left: 5px;
	overflow: hidden;
	position: relative;
	vertical-align: middle;
}

.solutions-product-arrow {
	width: 3.4rem;
	height: 1.2rem;
	display: inline-block;
	position: absolute;
	right: -2px;
	top: 9px;
	-webkit-transform: rotate(-45deg) translateX(-25%);
	transform: rotate(-45deg) translateX(-25%);
	-webkit-transition: -webkit-transform .2s ease;
	transition: -webkit-transform .2s ease;
	transition: transform .2s ease;
	vertical-align: middle;
}

.solutions-product-arrow svg {
	width: 1.2rem;
	height: 1.2rem;
	display: inline-block;
	fill: var(--worq-orange);
}

.solutions-product-link:hover .solutions-product-arrow {
	-webkit-transform: rotate(-45deg) translateX(40%);
	transform: rotate(-45deg) translateX(40%);
}

.solutions-product-arrow svg:last-child {
	fill: var(--worq-black);
	margin-left: 1rem;
}

.solutions-container-right {
	display: none;
}

.solutions-container-right img {
	width: 100%;
	height: 24rem;
	border-radius: 8px;
	display: block;
	object-fit: cover;
}

@media screen and (min-width: 22.5em) {

	/* 360px */
	.solutions-product-link {
		height: 3.2rem;
		border-radius: 1.6rem;
		font-size: 1.1rem;
		padding: 3px;
		padding-left: 1rem;
	}
}

@media screen and (min-width: 30em) {

	/* 480px */
	.solutions-product-link {
		height: 3.4rem;
		border-radius: 1.7rem;
		font-size: 1.2rem;
		padding: 3px;
		padding-left: 1.5rem;
	}

	.solutions-product-white-dot {
		width: 2.8rem;
		height: 2.8rem;
		border-radius: 1.4rem;
	}

	.solutions-product-arrow {
		width: 3.8rem;
		height: 1.4rem;
		right: -3px;
	}

	.solutions-product-link:hover .solutions-product-arrow {
		-webkit-transform: rotate(-45deg) translateX(38%);
		transform: rotate(-45deg) translateX(38%);
	}

	.solutions-product-arrow svg {
		width: 1.4rem;
		height: 1.4rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.solutions-container {
		margin-bottom: 15rem;
		padding: 0 3rem;
	}

	.solutions-product-bottom {
		display: none;
	}

	.solutions-container-right {
		-webkit-align-self: start;
		align-self: start;
		display: block;
		position: sticky;
		top: 5rem;
	}

	.solutions-container-left {
		width: 60%;
		padding-right: 1.5rem;
	}

	.solutions-product {
		padding: 3rem 3rem 2rem;
	}

	.solutions-container-right {
		width: 40%;
	}

	.solutions-product-description {
		-webkit-transform: translateY(3%);
		transform: translateY(3%);
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.solutions-container-left {
		width: 55%;
	}

	.solutions-product-left {
		width: 3rem;
	}

	.solutions-product-left img {
		height: 3rem;
	}

	.solutions-product-right {
		width: calc(100% - 3rem);
	}

	.solutions-product-title {
		line-height: 3rem;
	}

	.solutions-container-right {
		width: 45%;
	}

	.solutions-product-title {
		font-size: 1.5rem;
	}

	.solutions-container-right img {
		height: 30rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.solutions-container {
		margin-bottom: 18rem;
	}

	.solutions-container-left {
		width: 50%;
	}

	.solutions-container-right {
		width: 50%;
	}

	.solutions-container-right img {
		height: 36rem;
	}

	.solutions-product-link {
		height: 4.2rem;
		border-radius: 2.1rem;
		font-size: 1.4rem;
		padding-left: 2rem;
	}

	.solutions-product-white-dot {
		width: 3.4rem;
		height: 3.4rem;
		border-radius: 1.8rem;
		margin-left: 1rem;
		margin-right: 1px;
		margin-top: 1px;
	}

	.solutions-product-arrow {
		width: 4.6rem;
		height: 1.8rem;
		right: -4px;
		top: 10px;
	}

	.solutions-product-link:hover .solutions-product-arrow {
		-webkit-transform: rotate(-45deg) translateX(36%);
		transform: rotate(-45deg) translateX(36%);
	}

	.solutions-product-arrow svg {
		width: 1.8rem;
		height: 1.8rem;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.solutions-container {
		margin-bottom: 20rem;
	}

	.solutions-product-title {
		font-size: 1.6rem;
	}
}


/* Homepage : Scrolltext */
.outer-section-scrolltext-container {
	width: 100%;
	overflow: hidden;
}

.section-scrolltext-container {
	width: 100%;
	max-width: 250rem;
	margin: auto;
	margin-bottom: 10rem;
}

.scrolltext {
	color: var(--worq-navy);
	font-size: 4rem;
	font-weight: 500;
	line-height: 5rem;
	white-space: nowrap;
}

.scrolltext-top {
	margin-left: -15vw;
	-webkit-transform: translate3d(-15vw, 0, 0);
	transform: translate3d(-15vw, 0, 0);
}

.scrolltext-bottom {
	margin-left: -125vw;
	-webkit-transform: translate3d(15vw, 0, 0);
	transform: translate3d(15vw, 0, 0);
}

@media screen and (min-width: 30em) {

	/* 480px */
	.scrolltext {
		font-size: 5rem;
		line-height: 6rem;
	}

	.scrolltext-bottom {
		margin-left: -60vw;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.section-scrolltext-container {
		margin-bottom: 15rem;
	}

	.scrolltext {
		font-size: 5.5rem;
		line-height: 7rem;
	}

	.scrolltext-bottom {
		margin-left: -10vw;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.scrolltext {
		font-size: 6rem;
		line-height: 8rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.section-scrolltext-container {
		margin-bottom: 18rem;
	}

	.scrolltext {
		font-size: 8rem;
		line-height: 10rem;
	}

	.scrolltext-bottom {
		margin-left: -15vw;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.section-scrolltext-container {
		margin-bottom: 20rem;
	}
}

@media screen and (min-width: 100em) {

	/* 1600px */
	.scrolltext-top {
		margin-left: -5vw;
	}

	.scrolltext-bottom {
		margin-left: 10vw;
	}
}


/* Homepage: Workspaces */
.outer-swiper-workspace-container {
	width: 100%;
	/* overflow: hidden; */
}

.swiper-workspace-container {
	max-width: 106rem;
	padding: 1rem 0 1rem;
}

.workspace-slide-link {
	display: block;
	font-size: 1.1rem;
	margin-bottom: 2.5rem;
}

.workspace-slide {
	background: var(--worq-yellow);
	border-radius: 6px;
	-webkit-box-shadow: 0 3px 6px 0 rgba(29, 45, 68, .25);
	-moz-box-shadow: 0 3px 6px 0 rgba(29, 45, 68, .25);
	box-shadow: 0 3px 6px 0 rgba(29, 45, 68, .25);
	padding: 8px;
	padding-top: 1.5rem;
	text-align: center;
}

.workspace-slide:hover {
	-webkit-box-shadow: 0 5px 12px 0 rgba(29, 45, 68, .35);
	-moz-box-shadow: 0 5px 12px 0 rgba(29, 45, 68, .35);
	box-shadow: 0 5px 12px 0 rgba(29, 45, 68, .35);
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.workspace-slide-title {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	margin-top: 1rem;
	overflow-x: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.workspace-slide-link {
	font-size: 1.2rem;
	opacity: .5;
}

.workspace-slide-link span {
	display: inline-block;
	margin-right: 3px;
	vertical-align: middle;
}

.workspace-slide-link img {
	width: 1.2rem !important;
	height: 1.2rem !important;
	display: inline-block;
	line-height: 1.2rem;
	object-fit: contain;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
	vertical-align: middle;
}

.workspace-slide:hover .workspace-slide-link img {
	-webkit-transform: translateX(3px);
	transform: translateX(3px);
}

.workspace-slide-img-container {
	overflow: hidden;
	position: relative;
}

.workspace-slide-img-container .all-locations-box-place-recognition {
	right: 0;
}

.workspace-slide-img-container img {
	width: 100%;
	height: 24rem;
	border-radius: 6px;
	display: block;
	object-fit: cover;
}

.swiper-workspace-container .swiper-button-next,
.swiper-workspace-container .swiper-button-prev {
	width: 5rem;
	height: 5rem;
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	background: rgba(var(--white-rgb), 0.3);
	border-radius: 2.5rem;
	display: none;
	margin-top: -2rem;
}

.swiper-workspace-container .swiper-button-next:after,
.swiper-workspace-container .swiper-button-prev:after {
	color: var(--worq-blue);
	font-size: 3rem;
}

.swiper-workspace-container .swiper-button-next.swiper-button-disabled,
.swiper-workspace-container .swiper-button-prev.swiper-button-disabled {
	opacity: 0;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.workspace-slide-img-container img {
		height: 30rem;
	}

	.swiper-workspace-container .swiper-button-next,
	.swiper-workspace-container .swiper-button-prev {
		display: flex;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.swiper-workspace-container .swiper-button-next,
	.swiper-workspace-container .swiper-button-prev {
		width: 6rem;
		height: 6rem;
		border-radius: 3rem;
		margin-top: -3.5rem;
	}

	.swiper-workspace-container .swiper-button-next:after,
	.swiper-workspace-container .swiper-button-prev:after {
		font-size: 3.2rem;
	}
}


/* Reviews */
.review-container {
	padding-bottom: 6rem;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.review-container {
		padding-bottom: 8rem;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.review-container {
		padding-bottom: 10rem;
	}
}



/* Awards */
.award-container {
	padding-bottom: 6rem;
}

.award-container .grid {
	width: 100%;
	max-width: 28rem;
	gap: 2.2rem;
	-ms-grid-template-columns: 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr;
	-webkit-justify-items: center;
	justify-items: center;
	margin: auto;
}

.award-container .grid img {
	width: 8rem;
	height: 8rem;
	object-fit: contain;
}

@media screen and (min-width: 22.5em) {

	/* 360px */
	.award-container .grid {
		max-width: 32rem;
		gap: 2.5rem;
	}

	.award-container .grid img {
		width: 9rem;
		height: 9rem;
	}
}

@media screen and (min-width: 30em) {

	/* 480px */
	.award-container .grid {
		max-width: 36rem;
		gap: 3rem;
	}

	.award-container .grid img {
		width: 10rem;
		height: 10rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.award-container {
		padding-bottom: 8rem;
		padding-top: 2rem;
	}

	.award-container .grid {
		max-width: 48rem;
		gap: 4rem;
	}

	.award-container .grid img {
		width: 12rem;
		height: 12rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.award-container .grid {
		max-width: 90rem;
		-ms-grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.award-container .grid {
		max-width: 100rem;
	}

	.award-container .grid img {
		width: 12.5rem;
		height: 12.5rem;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.award-container {
		padding-bottom: 10rem;
	}

	.award-container .grid img {
		width: 13rem;
		height: 13rem;
	}
}


/* Partners */
.partner-container {
	background: var(--worq-yellow);
	padding-bottom: 6rem;
	padding-top: 6rem;
}

.partner-container .grid {
	width: 100%;
	max-width: 28rem;
	gap: 2.2rem;
	-ms-grid-template-columns: 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr;
	-webkit-justify-items: center;
	justify-items: center;
	margin: auto;
}

.partner-container .narrow-section-container:first-child {
	margin-bottom: 3rem;
}

.partner-container-title {
	width: 100%;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 2rem;
	opacity: .35;
	text-align: center;
}

.partner-container .grid img {
	width: 6rem;
	height: 6rem;
	object-fit: contain;
	opacity: .35;
}

@media screen and (min-width: 22.5em) {

	/* 360px */
	.partner-container .grid {
		max-width: 30rem;
		gap: 2.5rem;
	}

	.partner-container .grid img {
		width: 7rem;
		height: 7rem;
	}
}

@media screen and (min-width: 30em) {

	/* 480px */
	.partner-container .grid {
		max-width: 36rem;
		gap: 3rem;
	}

	.partner-container .grid img {
		width: 8rem;
		height: 8rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.partner-container {
		padding-bottom: 8rem;
		padding-top: 8rem;
	}

	.partner-container .grid {
		max-width: 48rem;
		gap: 4rem;
	}

	.partner-container-title {
		font-size: 1.3rem;
		line-height: 1.3;
	}

	.partner-container .grid img {
		width: 9rem;
		height: 9rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.partner-container .grid {
		gap: 5.5rem;
	}

	.partner-container .grid img {
		width: 10rem;
		height: 10rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.partner-container-title {
		font-size: 1.4rem;
		line-height: 1.4;
	}

	.partner-container .narrow-section-container:first-child {
		margin-bottom: 5rem;
	}

	.partner-container .narrow-section-container:last-child .grid {
		max-width: 120rem;
		-ms-grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.partner-container {
		padding-bottom: 10rem;
		padding-top: 10rem;
	}
}


/* Location : Title */
.location-title-container {
	margin-top: 3.5rem;
	padding-bottom: 3.5rem;
}

.location-title {
	font-size: 3.6rem;
	font-weight: 600;
	margin-bottom: 1rem;
	flex: 0 0 auto;
}

.location-status {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	padding: 2px 8px;
	text-transform: uppercase;
	border: #faae7b solid 1px;
	border-radius: 20px;
	margin-top: 10px;
	margin-left: 0.5rem;
	align-self: self-start;
	flex: 0 0 auto;
}

.location-status:empty {
	display: none;
}

.location-subtitle {
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.5;
	flex: 1 0 100%;
}

@media screen and (min-width: 30em) {

	/* 480px */
	.location-title-container {
		margin-top: 5rem;
		padding-bottom: 4rem;
	}

	.location-title {
		font-size: 3.8rem;
	}

	.location-subtitle {
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.location-title-container {
		align-items: baseline;
		padding-bottom: 2rem;
	}

	.location-title {
		/*	width: 75%;  */
		font-size: 4.2rem;
	}

	.location-subtitle {
		flex: 1 0 25%;
		font-size: 1.5rem;
		text-align: right;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.location-title-container {
		margin-top: 6rem;
		padding-bottom: 2.5rem;
	}

	.location-title {
		font-size: 4.8rem;
	}

	.location-subtitle {
		font-size: 1.6rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.location-title {
		font-size: 5.2rem;
		margin-bottom: 1.5rem;
	}
}

/* Location : Hero Image */
.location-hero-img-container {
	width: 100%;
	border-radius: 1.5rem;
	margin-bottom: 5rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.location-hero-img-container>img {
	width: 100%;
	height: 25rem;
	border-radius: 1.5rem;
	left: 0;
	object-fit: cover;
	top: 0;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.location-hero-img-container>img {
		height: 46rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.location-hero-img-container>img {
		height: 50rem;
	}
}

/* Location : Hero Image Buttons */
.location-hero-gallery-buttons-container {
	bottom: 1.5rem;
	position: absolute;
	right: 5px;
}

.location-hero-gallery-buttons-container>a:last-child {
	margin-left: 5px;
}

.location-hero-gallery-link,
.location-hero-3d-link {
	height: 8rem;
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	background: rgba(var(--white-rgb), 0.3);
	border: 2px solid var(--white);
	border-radius: 1rem;
	color: var(--white);
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: 500;
	padding: 1.5rem;
	padding-right: 6.5rem;
	position: relative;
}

.location-hero-gallery-link {
	background: var(--white);
	color: var(--worq-black);
}

.location-hero-gallery-black-dot,
.location-hero-3d-white-dot {
	display: inline-block;
	vertical-align: middle;
}

.location-hero-gallery-black-dot,
.location-hero-3d-white-dot {
	width: 2.6rem;
	height: 2.6rem;
	background: var(--white);
	border-radius: 1.3rem;
	bottom: 1.4rem;
	margin-left: 5px;
	overflow: hidden;
	position: absolute;
	right: 1.5rem;
	vertical-align: middle;
}

.location-hero-gallery-black-dot {
	background: var(--worq-navy);
}

.location-hero-gallery-arrow,
.location-hero-3d-arrow {
	width: 3.4rem;
	height: 1.2rem;
	display: inline-block;
	position: absolute;
	right: -2px;
	top: 9px;
	-webkit-transform: rotate(-45deg) translateX(-25%);
	transform: rotate(-45deg) translateX(-25%);
	-webkit-transition: -webkit-transform .2s ease;
	transition: -webkit-transform .2s ease;
	transition: transform .2s ease;
	vertical-align: middle;
}

.location-hero-gallery-arrow svg,
.location-hero-3d-arrow svg {
	width: 1.2rem;
	height: 1.2rem;
	display: inline-block;
	fill: var(--worq-orange);
}

.location-hero-gallery-link:hover .location-hero-gallery-arrow .location-hero-3d-link:hover .location-hero-3d-arrow {
	-webkit-transform: rotate(-45deg) translateX(40%);
	transform: rotate(-45deg) translateX(40%);
}

.location-hero-gallery-arrow svg:last-child {
	fill: var(--white);
	margin-left: 1rem;
}

.location-hero-3d-arrow svg:last-child {
	fill: var(--worq-black);
	margin-left: 1rem;
}

@media screen and (min-width: 30em) {

	/* 480px */
	.location-hero-gallery-buttons-container {
		right: 1rem;
	}

	.location-hero-gallery-link,
	.location-hero-3d-link {
		height: 9rem;
		font-size: 1.4rem;
		padding-right: 7rem;
	}

	.location-hero-gallery-black-dot,
	.location-hero-3d-white-dot {
		width: 2.8rem;
		height: 2.8rem;
		border-radius: 1.4rem;
	}

	.location-hero-gallery-arrow,
	.location-hero-3d-arrow {
		width: 3.8rem;
		height: 1.4rem;
		right: -3px;
	}

	.location-hero-gallery-link:hover .location-hero-gallery-arrow,
	.location-hero-3d-link:hover .location-hero-3d-arrow {
		-webkit-transform: rotate(-45deg) translateX(38%);
		transform: rotate(-45deg) translateX(38%);
	}

	.location-hero-gallery-arrow svg,
	.location-hero-3d-arrow svg {
		width: 1.4rem;
		height: 1.4rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.location-hero-gallery-buttons-container {
		right: 2rem;
	}

	.location-hero-gallery-link,
	.location-hero-3d-link {
		height: 9rem;
		font-size: 1.6rem;
		padding: 1.8rem;
		padding-right: 10rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.location-hero-gallery-link,
	.location-hero-3d-link {
		height: 10rem;
		font-size: 1.8rem;
	}

	.location-hero-gallery-black-dot,
	.location-hero-3d-white-dot {
		width: 3.4rem;
		height: 3.4rem;
		border-radius: 1.8rem;
		margin-left: 1rem;
		margin-right: 1px;
		margin-top: 1px;
	}

	.location-hero-gallery-arrow,
	.location-hero-3d-arrow {
		width: 4.6rem;
		height: 1.8rem;
		right: -4px;
		top: 10px;
	}

	.location-hero-gallery-link:hover .location-hero-gallery-arrow,
	.location-hero-3d-link:hover .location-hero-3d-arrow {
		-webkit-transform: rotate(-45deg) translateX(36%);
		transform: rotate(-45deg) translateX(36%);
	}

	.location-hero-gallery-arrow svg,
	.location-hero-3d-arrow svg {
		width: 1.8rem;
		height: 1.8rem;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.location-hero-gallery-link,
	.location-hero-3d-link {
		font-size: 2rem;
	}
}
/* Landing page : Enquiry Section */
.merdeka-event-space #enquire .narrow-section-container {
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
	overflow: hidden;
	border-radius: 16px;
}

.merdeka-event-space #enquire .narrow-section-container .grid > div:nth-child(1) {
	background: rgb(0, 30, 97);
	align-self: stretch;
	justify-self: stretch;
}

/* Location : 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 .3s ease;
	transition: all .3s ease;
	z-index: 1;
}

.popup-gallery-container.show {
	opacity: 1;
	visibility: visible;
	z-index: 15;
}

.gallery-box-container-close-container {
	width: 100%;
	height: 5.5rem;
	background: var(--white);
	left: 0;
	position: fixed;
	top: 0;
	z-index: 12;
}

.gallery-box-container-close {
	width: 5.5rem;
	height: 5.5rem;
	cursor: pointer;
	left: 1rem;
	position: absolute;
	top: 0;
}

.gallery-box-container-close .bar {
	width: 2rem;
	height: 2px;
	background: var(--worq-black);
	border-radius: 1px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	top: 0;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-transition: -webkit-transform .2s ease;
	transition: -webkit-transform .2s ease;
	transition: transform .2s ease;
}

.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: 5rem;
	-webkit-transform: translateY(125%);
	transform: translateY(125%);
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

.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;
	object-fit: contain;
	order: 2;
}

.popup-gallery-container .wp-block-image>figcaption,
.popup-gallery-container #gallery-1 .gallery-item .gallery-caption {
	width: 100%;
	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: 60%;
		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;
		display: block;
		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;
	}
}


/* Location : Popup 3D Tour */
.popup-three-d-tour-container {
	width: 100%;
	height: 100%;
	background: var(--white);
	left: 0;
	opacity: 0.2;
	overflow: hidden;
	padding: 2rem;
	padding-top: 0;
	position: fixed;
	top: 0;
	-webkit-transform: translateY(125%);
	transform: translateY(125%);
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	visibility: hidden;
	z-index: 1;
}

.popup-three-d-tour-container iframe {
	display: none;
	opacity: 0;
	visibility: hidden;
}

.popup-three-d-tour-container.show {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	visibility: visible;
	z-index: 15;
}

.popup-three-d-tour-container.show iframe {
	display: block;
	opacity: 1;
	visibility: visible;
}

.three-d-tour-box-container-close-container {
	width: 100%;
	height: 5.5rem;
	background: var(--white);
	left: 0;
	position: fixed;
	top: 0;
	z-index: 12;
}

.three-d-tour-box-container-close {
	width: 5.5rem;
	height: 5.5rem;
	cursor: pointer;
	left: 1rem;
	position: absolute;
	top: 0;
}

.three-d-tour-box-container-close .bar {
	width: 2rem;
	height: 2px;
	background: var(--worq-black);
	border-radius: 1px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	top: 0;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-transition: -webkit-transform .2s ease;
	transition: -webkit-transform .2s ease;
	transition: transform .2s ease;
}

.three-d-tour-box-container-close .bar:first-child {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.popup-three-d-tour-container iframe {
	width: 100%;
	max-width: 112rem;
	height: calc(100% - 5rem);
	background: var(--white);
	border-radius: 1rem;
	margin: auto;
	overflow: scroll;
	padding: 2rem;
	padding-top: 6rem;
}


/* Location : Overview */
.location-overview-container {
	max-width: 112rem;
	margin-bottom: 8rem;
	padding: 0 2rem;
}

.location-overview-left-container,
.location-overview-right-container {
	width: 100%;
}

.location-overview-left-container {
	order: 2;
}

.location-overview-right-container {
	order: 1;
}

.location-overview-title {
	width: 100%;
	font-size: 2.4rem;
	font-weight: 500;
	margin-bottom: 5px;
}

.location-overview-subtitle {
	width: 100%;
	font-size: 1.3rem;
	line-height: 1.5;
	margin-bottom: 5rem;
}

.location-overview-address {
	width: 100%;
	max-width: 35rem;
	color: var(--worq-grey);
	font-size: 1.2rem;
	line-height: 1.5;
	margin-bottom: 3.5rem;
}

.location-overview-transport-container {
	margin-bottom: 3.5rem;
}

.location-overview-transport {
	width: 100%;
	font-size: 1.2rem;
	line-height: 1.5;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.location-overview-transport img {
	width: 2rem;
	height: 2rem;
	display: inline-block;
	object-fit: contain;
	margin-left: 1rem;
	vertical-align: middle;
}

.location-overview-button,
.location-outlet-quote-button {
	height: 3.4rem;
	background: var(--worq-orange);
	border-radius: 2rem;
	color: var(--white);
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 3.4rem;
	margin-bottom: 1rem;
	margin-right: 1rem;
	padding: 0 2.4rem;
}

.location-outlet-info-box {
	width: 100%;
	max-width: 48rem;
	background: var(--worq-yellow);
	border-radius: 1.5rem;
	margin: auto;
	margin-bottom: 3.5rem;
	padding: 3rem 2rem;
}

.location-outlet-info-box p {
	line-height: 1.5;
}

.location-outlet-sales-number,
.location-outlet-sales-email {
	color: var(--worq-grey);
	display: block;
	font-family: 'PT Mono', Helvetica, Arial, sans-serif;
	padding: 2rem 0;
}

.location-outlet-sales-email {
	margin-top: -5px;
	padding-top: 0;
}

.location-outlet-quote-button {
	width: 100%;
	text-align: center;
}

.location-outlet-manager-container {
	border-bottom: 1px solid rgba(var(--grey-rgb), .2);
	border-top: 1px solid rgba(var(--grey-rgb), .2);
	margin: 2rem 0 3rem;
	padding: 3rem 0 2.5rem;
}

.location-outlet-site-support {
	font-size: 1.4rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.location-outlet-site-hours,
.location-outlet-manager-title {
	color: var(--worq-grey);
	font-family: 'PT Mono', Helvetica, Arial, sans-serif;
	font-size: 1.3rem;
}

.location-outlet-manager.flex {
	align-items: center;
	margin: 2rem 0 1rem;
}

.location-outlet-manager-left {
	width: 40%;
	max-width: 12.5rem;
	padding-right: 5%;
}

.location-outlet-manager-right {
	width: 60%;
}

.location-outlet-manager-left img {
	width: 8rem;
	height: 8rem;
	border-radius: 5rem;
	margin-right: auto;
	object-fit: cover;
}

.location-outlet-manager-title {
	font-size: 1.2rem;
	font-weight: 400;
	margin-bottom: 1rem;
}

.location-outlet-manager-name {
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 5px;
}

.location-outlet-manager-phone {
	color: var(--worq-grey);
	display: block;
	font-size: 1.2rem;
	font-weight: 500;
}

.location-outlet-accessibility-title {
	color: var(--worq-grey);
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.location-outlet-accessibility-list {
	color: var(--worq-grey);
	margin-bottom: 1rem;
}

.location-outlet-accessibility-list a {
	font-weight: bold;
}

.location-outlet-accessibility-list img {
	width: 2.5rem;
	height: 2.5rem;
	margin-right: 5px;
	object-fit: contain;
	opacity: .5;
	vertical-align: middle;
}

.info-tooltip {
	width: 2rem;
	height: 2rem;
	border: 1px solid var(--worq-grey);
	border-radius: 1rem;
	cursor: pointer;
	display: inline-block;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 2rem;
	margin-left: 5px;
	opacity: .75;
	position: relative;
	text-align: center;
}

.info-tooltip .info-tooltip-bubble {
	width: 15rem;
	background-color: var(--worq-grey);
	border-radius: 6px;
	bottom: 150%;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 400;
	left: 50%;
	margin-left: -13.5rem;
	padding: 1rem 0;
	position: absolute;
	text-align: center;
	visibility: hidden;
	z-index: 1;
}

.info-tooltip .info-tooltip-bubble::after {
	border-width: 5px;
	border-style: solid;
	border-color: var(--worq-grey) transparent transparent transparent;
	content: "";
	left: 90%;
	margin-left: -5px;
	top: 100%;
	position: absolute;
}

.info-tooltip:hover .info-tooltip-bubble {
	visibility: visible;
}

@media screen and (min-width: 22.5em) {

	/* 360px */
	.location-outlet-manager-left {
		width: 40%;
		padding-right: 5%;
	}

	.location-outlet-manager-right {
		width: 60%;
	}

	.location-outlet-manager-left img {
		width: 9rem;
		height: 9rem;
	}
}

@media screen and (min-width: 30em) {

	/* 480px */
	.location-overview-title {
		font-size: 2.6rem;
	}

	.location-overview-subtitle {
		font-size: 1.4rem;
	}

	.location-overview-address {
		font-size: 1.3rem;
	}

	.location-overview-transport {
		font-size: 1.3rem;
		margin-bottom: 1.5rem;
	}

	.info-tooltip .info-tooltip-bubble {
		margin-left: -7.5rem;
	}

	.info-tooltip .info-tooltip-bubble::after {
		left: 50%;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.location-overview-container {
		padding: 0 3rem;
	}

	.location-overview-left-container {
		width: 50%;
		-webkit-align-self: start;
		align-self: start;
		display: block;
		margin-right: 2%;
		order: 1;
		position: sticky;
		top: 0;
	}

	.location-overview-right-container {
		width: 48%;
		order: 2;
	}

	.location-overview-title {
		font-size: 2.8rem;
		margin-top: 3rem;
	}

	.location-overview-subtitle {
		font-size: 1.5rem;
		margin-bottom: 7rem;
	}

	.location-outlet-info-box {
		margin-bottom: 0;
		margin-left: auto;
		margin-right: 0;
		padding: 3rem;
	}

	.location-overview-button {
		margin-bottom: 5rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.location-overview-title {
		font-size: 3.2rem;
		margin-bottom: 1rem;
		margin-top: 4rem;
	}

	.location-overview-subtitle {
		font-size: 1.5rem;
	}

	.location-overview-address,
	.location-overview-transport {
		font-size: 1.4rem;
	}

	.location-outlet-info-box {
		padding: 4rem 3rem;
	}

	.location-outlet-sales-number {
		padding: 2.5rem 0;
	}

	.location-outlet-manager-left img {
		width: 10rem;
		height: 10rem;
	}

	.location-outlet-manager-name {
		font-size: 1.8rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.location-overview-button,
	.location-outlet-quote-button {
		height: 4.2rem;
		border-radius: 2.1rem;
		font-size: 1.4rem;
		line-height: 4.2rem;
		margin-right: 2.5rem;
		padding: 0 3.6rem;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.location-overview-container {
		margin-bottom: 12rem;
	}
}


/* Location : Impressions */
.outer-impressions-container {
	width: 100%;
	background: var(--worq-grey);
	overflow: hidden;
	margin-bottom: 8rem;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.impressions-worq-logo {
	line-height: 0;
	margin-bottom: 2.5rem;
	text-align: center;
}

.impressions-worq-logo svg {
	width: 5rem;
	height: 5rem;
	object-fit: contain;
}

.outer-impressions-description {
	width: 100%;
	max-width: 100rem;
	color: var(--white);
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.5;
	margin: auto;
	padding: 0 2.5rem;
	text-align: justify;
	-moz-text-align-last: center;
	text-align-last: center;
}

.swiper-impressions-container {
	margin-bottom: 2.5rem;
	margin-top: 5rem;
}

.impressions-slide-img-container img {
	width: 100%;
	height: 24rem;
	border-radius: 1rem;
	display: block;
	object-fit: cover;
}

.swiper-impressions-container .swiper-button-next,
.swiper-impressions-container .swiper-button-prev {
	width: 5rem;
	height: 5rem;
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	background: rgba(var(--white-rgb), 0.3);
	border-radius: 2.5rem;
	display: none;
}

.swiper-impressions-container .swiper-button-next:after,
.swiper-impressions-container .swiper-button-prev:after {
	color: var(--worq-peach);
	font-size: 2.8rem;
}

.swiper-impressions-container .swiper-button-next.swiper-button-disabled,
.swiper-impressions-container .swiper-button-prev.swiper-button-disabled {
	opacity: 0;
}

.swiper-impressions-pagination.swiper-pagination-fraction {
	bottom: -5px;
	color: var(--white);
	padding-right: 3.5rem;
	position: relative;
	text-align: right;
}

.impressions-certifications-container {
	width: 100%;
	max-width: 100rem;
	gap: 7px;
	justify-content: center;
	margin: auto;
	margin-bottom: 1rem;
	padding: 5px 1rem 2rem;
}

.impressions-certifications {
	width: calc(33.33% - 5px);
	max-width: 20rem;
	min-height: 12rem;
	align-items: center;
	background: rgba(var(--grey-rgb), .2);
	border-radius: 8px;
	padding: 2rem 1rem;
	text-align: center;
}

.impressions-certifications-img {
	width: 100%;
	max-height: 4.5rem;
	margin-bottom: 1rem;
	object-fit: contain;
	opacity: .35;
}

.impressions-certifications-title {
	width: 100%;
	color: var(--white);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0;
	opacity: .35;
}

@media screen and (min-width: 22.5em) {

	/* 360px */
	.impressions-certifications-img {
		height: 7rem;
	}
}

@media screen and (min-width: 30em) {

	/* 480px */
	.impressions-worq-logo svg {
		width: 6rem;
		height: 6rem;
	}

	.outer-impressions-description {
		padding: 0 5rem;
	}

	.swiper-impressions-pagination.swiper-pagination-fraction {
		padding-right: 5.5rem;
	}

	.impressions-certifications-container {
		padding: 1rem 2rem 2rem;
	}

	.impressions-certifications-img {
		height: 8rem;
	}

	.impressions-certifications-title {
		font-size: 1.2rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.outer-impressions-container {
		padding-bottom: 6rem;
		padding-top: 6rem;
	}

	.impressions-worq-logo {
		margin-bottom: 3rem;
	}

	.impressions-worq-logo svg {
		width: 7rem;
		height: 7rem;
	}

	.outer-impressions-description {
		padding: 0 9rem;
	}

	.swiper-impressions-container {
		margin-bottom: 3rem;
	}

	.impressions-slide-img-container img {
		height: 36rem;
	}

	.swiper-impressions-container .swiper-button-next,
	.swiper-impressions-container .swiper-button-prev {
		display: flex;
	}

	.swiper-impressions-pagination.swiper-pagination-fraction {
		padding-right: 7rem;
	}

	.impressions-certifications-container {
		gap: 1rem;
	}

	.impressions-certifications {
		width: calc(20% - 8px);
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.outer-impressions-description {
		font-size: 1.8rem;
	}

	.impressions-worq-logo svg {
		width: 9rem;
		height: 9rem;
	}

	.swiper-impressions-container {
		margin-top: 6rem;
	}

	.impressions-slide-img-container img {
		height: 42rem;
	}

	.swiper-impressions-pagination.swiper-pagination-fraction {
		padding-right: 9.5rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.impressions-slide-img-container img {
		height: 48rem;
	}

	.swiper-impressions-pagination.swiper-pagination-fraction {
		padding-right: 12rem;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.outer-impressions-container {
		margin-bottom: 10rem;
		padding-bottom: 8rem;
		padding-top: 8rem;
	}

	.impressions-worq-logo {
		margin-bottom: 3.5rem;
	}

	.impressions-worq-logo svg {
		width: 10rem;
		height: 10rem;
	}

	.swiper-impressions-container {
		margin-bottom: 4rem;
		margin-top: 7rem;
	}

	.impressions-slide-img-container img {
		height: 52rem;
	}

	.swiper-impressions-container .swiper-button-next,
	.swiper-impressions-container .swiper-button-prev {
		width: 6rem;
		height: 6rem;
		border-radius: 3rem;
	}

	.swiper-impressions-container .swiper-button-next:after,
	.swiper-impressions-container .swiper-button-prev:after {
		font-size: 3.2rem;
	}
}


/* Location : Products Hero Bar */
.location .hero-product-bar-container {
	margin-bottom: 3.5rem;
}

/*.location .hero-product-item {
	width: 5rem;
}
.location .hero-product-item.highlight .hero-product-item-text {
	display: none;
}*/
@media screen and (min-width: 22.5em) {
	/* 360px */
	/*	.location .hero-product-item {
		width: 6rem;
	}*/
}

@media screen and (min-width: 36.25em) {
	/* 580px */
	/*	.location .hero-product-item .hero-product-item-text {
		display: none;
	}*/
}

@media screen and (min-width: 48em) {
	/* 768px */
	/*	.location .hero-product-item {
		width: 13rem;
	}
	.location .hero-product-item.highlight .hero-product-item-text,
	.location .hero-product-item .hero-product-item-text {
		display: inline-block;
	}*/
}

@media screen and (min-width: 80em) {
	/* 1280px */
	/*	.location .hero-product-item {
		width: 15rem;
	}*/
}

/* Location : Products Details */
.location-product-container {
	max-width: 112rem;
	margin-bottom: 8rem;
}

.location-product {
	width: 100%;
	height: 0;
	min-height: 0;
	background: transparent;
	border-radius: 1.5rem;
	opacity: 0;
	padding: 0 2rem;
	position: relative;
	-webkit-transition: opacity .25s ease;
	transition: opacity .25s ease;
	visibility: hidden;
	z-index: 0;
}

.location-product.selected {
	min-height: 28rem;
	height: fit-content;
	/*	background: var(--worq-yellow);*/
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.location-product-left,
.location-product-right {
	width: 100%;
}

.location-product-left img {
	width: 100%;
	height: 28rem;
	border-radius: 1.2rem;
	object-fit: cover;
}

.location-product .hero-product-finder-subcategory {
	margin-top: 3.5rem;
}

.location-product .hero-product-finder-subcategory li {
	background: rgba(var(--grey-rgb), 0.15);
}

.location-product .hero-product-finder-subcategory li:hover {
	background: rgba(var(--grey-rgb), 0.3);
}

.location-product .hero-product-finder-subcategory li.highlight {
	background: var(--worq-peach);
	color: var(--worq-navy);
}

.location-product-subcategory {
	display: none;
	margin-left: auto;
	margin-right: auto;
}

.hero-product-finder-subcategory-bottom-container {
	align-items: center;
	margin-top: 5px;
}

.add-ons-text {
	width: 7rem;
	color: var(--worq-grey);
	display: inline-block;
}

.hero-product-finder-subcategory.add-ons {
	width: 20rem;
	display: inline-block;
	margin: 0;
}

.hero-product-finder-subcategory.add-ons li {
	display: inline-block;
	margin-bottom: 0;
}

.location-product-subcategory.show {
	display: block;
}

.location-product-description {
	color: var(--worq-grey);
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.5;
	margin: 2.5rem 0;
}

.location-product-list-container {
	margin-bottom: 0;
}

.location-product-list-container li {
	color: var(--worq-grey);
	line-height: 1.5;
	margin-bottom: 2rem;
	padding-left: 3.8rem;
}

.location-product-list-container li:before {
	width: 2.4rem;
	height: 2.4rem;
	background: url('worq-icons/chevron-right-round.svg');
	content: '';
	display: block;
	left: 0;
	opacity: .8;
	position: absolute;
	vertical-align: middle;
	top: -3px;
}

.location-product-link-container {
	width: 100%;
	border-bottom: 1px solid rgba(var(--grey-rgb), .2);
	margin-top: 1rem;
	padding-bottom: 3rem;
}

.location-product-link {
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.2rem;
	font-weight: 500;
	opacity: .5;
	overflow: hidden;
	padding-right: 2.4rem;
	position: relative;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	vertical-align: middle;
}

.location-product-link:hover {
	color: var(--worq-orange);
	opacity: 1;
}

.location-product-link .view-all-link-arrow {
	width: 4.6rem;
	height: 1.8rem;
	display: inline-block;
	position: absolute;
	right: -1.4rem;
	top: 0;
	-webkit-transform: rotate(-45deg) translateX(-25%);
	transform: rotate(-45deg) translateX(-25%);
	-webkit-transition: -webkit-transform .2s ease;
	transition: -webkit-transform .2s ease;
	transition: transform .2s ease;
	vertical-align: middle;
}

.location-product-link:hover .view-all-link-arrow {
	-webkit-transform: rotate(-45deg) translateX(35%);
	transform: rotate(-45deg) translateX(35%);
}

.location-product-link svg {
	width: 1.8rem;
	height: 1.8rem;
	display: inline-block;
	fill: var(--worq-orange);
	margin-right: 1rem;
}

.location-product-link svg:last-child {
	fill: var(--worq-black);
	margin-right: 0;
}

.location-product-price-container {
	padding-top: 3rem;
}

.location-product-price-left {
	width: 50%;
}

.location-product-price-right {
	width: 50%;
	align-items: center;
	justify-content: end;
}

.location-product-price-from {
	color: var(--worq-grey);
	font-size: 1rem;
	line-height: 1;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.location-product-price-per-month {
	font-size: 2rem;
	vertical-align: middle;
}

.location-product-price-button {
	width: auto;
	height: 3.4rem;
	background: var(--worq-orange);
	border-radius: 2rem;
	color: var(--white);
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 3.4rem;
	padding: 0 1.5rem;
	text-align: center;
}

.regular-price.slash-price {
	font-size: 1.4rem;
	text-decoration: line-through;
}

.location-product-sales {
	background: var(--yellow);
	color: var(--worq-navy);
	display: inline-block;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 1rem;
	padding: 2px 8px;
	text-transform: uppercase;
	vertical-align: middle;
}

.location-product-limited {
	background: var(--pink);
	color: var(--maroon);
	font-size: 1.2rem;
	font-weight: 600;
	padding: 2px 8px;
	text-transform: uppercase;
	vertical-align: middle;
}

@media screen and (min-width: 30em) {

	/* 480px */
	.location-product .hero-product-finder-subcategory {
		margin-top: 4rem;
	}

	.add-ons-text {
		width: 7.5rem;
	}

	.hero-product-finder-subcategory.add-ons {
		width: 24rem;
		margin-top: 0;
	}

	.location-product-description {
		font-size: 2rem;
		margin: 3rem 0;
	}

	.location-product-list-container li {
		font-size: 1.3rem;
		margin-bottom: 2.2rem;
		padding-left: 4.2rem;
	}

	.location-product-list-container li:before {
		width: 2.8rem;
		height: 2.8rem;
		top: -4px;
	}

	.location-product-link {
		font-size: 1.3rem;
	}

	.location-product-price-button {
		padding: 0 2.4rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.location-product {
		padding: 0 3rem;
	}

	.location-product-left {
		width: 50%;
		padding-right: 5%;
	}

	.location-product-right {
		width: 50%;
	}

	.location-product-left img {
		height: 48rem;
	}

	.location-product .hero-product-finder-subcategory {
		margin-top: 0;
	}

	.location-product-description {
		font-size: 2.4rem;
		margin-bottom: 4rem;
		margin-top: 2rem;
	}

	.location-product-list-container li {
		font-size: 1.4rem;
		margin-bottom: 2.5rem;
		padding-left: 4.8rem;
	}

	.location-product-list-container li:before {
		width: 3.2rem;
		height: 3.2rem;
		top: -6px;
	}

	.location-product-link-container {
		margin-top: 3rem;
	}

	.location-product-link {
		font-size: 1.4rem;
	}

	.location-product-price-from {
		font-size: 1.1rem;
	}

	.location-product-price-per-month {
		font-size: 2.2rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.location-product-price-left {
		width: 58%;
	}

	.location-product-price-right {
		width: 42%;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.location-product-price-from {
		font-size: 1.2rem;
	}

	.location-product-price-per-month {
		font-size: 2.6rem;
	}

	.location-product-price-button {
		height: 4.2rem;
		border-radius: 2.1rem;
		font-size: 1.4rem;
		line-height: 4.2rem;
		padding: 0 3.6rem;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.location-product-container {
		margin-bottom: 10rem;
	}
}

/* Location : Amenities */
.section-amenities-container {
	max-width: 112rem;
	padding: 0 2rem;
}

.amenities-box-container {
	gap: 1rem;
	justify-content: space-between;
}

.amenities-box {
	width: 100%;
	background: var(--worq-yellow);
	border-radius: 8px;
	padding: 1.5rem;
}

.amenities-box-img {
	width: 3.5rem;
	height: 3.5rem;
	margin-bottom: 5px;
	object-fit: contain;
	opacity: .7;
}

.amenities-box-description {
	width: 100%;
	color: var(--worq-grey);
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.8;
}

.amenities-box-description-long {
	width: 100%;
	color: var(--worq-grey);
	font-size: 1.2rem;
	line-height: 1.5;
	margin-bottom: 1rem;
}

.amenities-view-all-container {
	width: 100%;
	margin-top: 3rem;
	text-align: center;
}

.amenities-view-all-link {
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	opacity: .5;
	overflow: hidden;
	padding-right: 2.4rem;
	position: relative;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	vertical-align: middle;
}

.amenities-view-all-link:hover {
	color: var(--worq-orange);
	opacity: 1;
}

.amenities-view-all-link .view-all-link-arrow {
	width: 4.6rem;
	height: 1.8rem;
	display: inline-block;
	position: absolute;
	right: -1.4rem;
	top: 0;
	-webkit-transform: rotate(-45deg) translateX(-25%);
	transform: rotate(-45deg) translateX(-25%);
	-webkit-transition: -webkit-transform .2s ease;
	transition: -webkit-transform .2s ease;
	transition: transform .2s ease;
	vertical-align: middle;
}

.amenities-view-all-link:hover .view-all-link-arrow {
	-webkit-transform: rotate(-45deg) translateX(35%);
	transform: rotate(-45deg) translateX(35%);
}

.amenities-view-all-link svg {
	width: 1.8rem;
	height: 1.8rem;
	display: inline-block;
	fill: var(--worq-orange);
	margin-right: 1rem;
}

.amenities-view-all-link svg:last-child {
	fill: var(--worq-black);
	margin-right: 0;
}

@media screen and (min-width: 30em) {

	/* 480px */
	.amenities-box {
		width: calc(50% - 5px);
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.section-amenities-container {
		padding: 0 3rem;
	}

	.amenities-box {
		width: calc(33% - 8px);
		padding: 2rem;
	}

	.merdeka-event-space .amenities-box {
		width: calc(50% - 8px);
		padding: 2rem;
	}

}

@media screen and (min-width: 64em) {

	/* 1024px */
	.amenities-box-container {
		gap: 1.5rem;
	}

	.amenities-box {
		width: calc(33% - 12px);
	}
	
	.event-space-promo-RM175 .amenities-box {
		width: calc(25% - 12px);
	}
	
	.amenities-box-img {
		width: 4.2rem;
		height: 4.2rem;
	}

	.merdeka-event-space .amenities-box {
		width: calc(24% - 8px);
		padding: 2rem;
	}
}

/* Location : Popup Amenities */
.popup-amenities-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 .3s ease;
	transition: all .3s ease;
	z-index: 1;
}

.popup-amenities-container.show {
	opacity: 1;
	visibility: visible;
	z-index: 11;
}

.popup-amenities-container .amenities-box-container {
	height: 100%;
	background: var(--white);
	border-radius: 1rem;
	overflow: scroll;
	padding: 2rem;
	padding-top: 5rem;
	-webkit-transform: translateY(125%);
	transform: translateY(125%);
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	transition: transform .4s ease;
}

.popup-amenities-container.show .amenities-box-container {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.popup-amenities-container .amenities-box {
	width: 100%;
	background: var(--white);
	border-bottom: 1px solid rgba(var(--grey-rgb), .2);
	padding: 1.5rem 0;
}

.popup-amenities-container .amenities-box-img {
	width: 20%;
	max-width: 5rem;
	margin-right: auto;
	text-align: left;
}

.popup-amenities-container .amenities-box-description {
	width: 80%;
	padding-left: 1.5rem;
}

.amenities-box-container-close-container {
	width: 100%;
	height: 5.5rem;
	background: var(--white);
	left: 0;
	position: fixed;
	top: 0;
	z-index: 12;
}

.amenities-box-container-close-container.mobile-only {
	opacity: 0;
}

.show .amenities-box-container-close-container.mobile-only {
	opacity: 1;
}

.amenities-box-container-close {
	width: 5.5rem;
	height: 5.5rem;
	cursor: pointer;
	left: 1rem;
	position: absolute;
	top: 0;
}

.amenities-box-container-close .bar {
	width: 2rem;
	height: 2px;
	background: var(--worq-black);
	border-radius: 1px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	top: 0;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-transition: -webkit-transform .2s ease;
	transition: -webkit-transform .2s ease;
	transition: transform .2s ease;
}

.amenities-box-container-close .bar:first-child {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

@media screen and (min-width: 30em) {

	/* 480px */
	.popup-amenities-container .amenities-box-img {
		width: 15%;
	}

	.popup-amenities-container .amenities-box-description {
		width: 85%;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.popup-amenities-container {
		background: rgba(0, 0, 0, .5);
		padding: 8rem;
	}

	.popup-amenities-container .amenities-box-container {
		max-width: 52rem;
		margin: auto;
		padding: 3rem;
		padding-top: 0;
		position: relative;
	}

	.amenities-box-container-close-container {
		height: 6rem;
		position: sticky;
	}

	.amenities-box-container-close {
		width: 6rem;
		height: 6rem;
		left: -2.5rem;
	}
}


/* Location : Map */
.location-map-container {
	max-width: 112rem;
	margin-bottom: 10rem;
	padding: 0 2rem;
}

.location-map-left-container {
	width: 100%;
	position: relative;
}

.location-map-right-container {
	width: 100%;
	height: auto;
}

#scud-map {
	width: 100%;
	height: 40rem;
	border-radius: 1rem;
	overflow: hidden;
}

@media screen and (min-width: 22.5em) {

	/* 360px */
	#scud-map {
		height: 42rem;
	}
}

@media screen and (min-width: 30em) {

	/* 480px */
	#scud-map {
		height: 45rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.location-map-container {
		padding: 0 3rem;
	}

	.location-map-left-container {
		width: 55%;
		order: 1;
		padding-right: 5%;
	}

	.location-map-right-container {
		width: 45%;
		order: 2;
	}

	#scud-map {
		height: 48rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	#scud-map {
		height: 50rem;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.location-map-container {
		margin-bottom: 12rem;
	}
}

/* Location : Map - Property */
.property {
	width: 4.2rem;
	height: 4.2rem;
	align-items: center;
	background-color: var(--worq-yellow);
	border-radius: 50%;
	-webkit-box-shadow: 0 -2px 10px 0 rgba(34, 34, 34, .25);
	-moz-box-shadow: 0 -2px 10px 0 rgba(34, 34, 34, .25);
	box-shadow: 0 -2px 10px 0 rgba(34, 34, 34, .25);
	color: var(--worq-navy);
	display: flex;
	font-size: 1.4rem;
	gap: 1.5rem;
	justify-content: center;
	padding: 1.5rem;
	position: relative;
	transition: all 0.25s ease-out;
}

.property::after {
	width: 0;
	height: 0;
	border-left: 1.3rem solid transparent;
	border-right: 1.3rem solid transparent;
	border-top: 1.3rem solid var(--worq-yellow);
	content: "";
	left: 50%;
	position: absolute;
	top: 89%;
	transform: translate(-50%, 0);
	transition: all 0.25s ease-out;
	z-index: 1;
}

.property:has(.map-icon-WORQ) {
	width: 5.2rem;
	height: 5.2rem;
}

.all-locations-map-right .property:has(.map-icon-WORQ) {
	width: 3.6rem;
	height: 3.6rem;
}

.property:has(.map-icon-WORQ)::after {
	border-left: 2rem solid transparent;
	border-right: 2rem solid transparent;
	border-top: 2rem solid var(--worq-yellow);
	top: 83.5%;
}

.all-locations-map-right .property:has(.map-icon-WORQ)::after {
	border-left: 1.4rem solid transparent;
	border-right: 1.4rem solid transparent;
	border-top: 1.4rem solid var(--worq-yellow);
}

.property .icon {
	align-items: center;
	display: flex;
	justify-content: center;
	color: #FFFFFF;
}

.property .icon svg,
.property .map-icon-img {
	width: 2.2rem;
	height: 2.2rem;
	object-fit: contain;
	vertical-align: middle;
}

.property:has(.map-icon-WORQ) .map-icon-img {
	width: 2.8rem;
	height: 2.8rem;
}

.all-locations-map-right .property:has(.map-icon-WORQ) .map-icon-img {
	width: 2.2rem;
	height: 2.2rem;
}

.property .details {
	display: none;
	flex-direction: column;
	flex: 1;
}

.property .address {
	max-width: 15rem;
	color: #9E9E9E;
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 0;
	margin-top: 5px;
}

.scud-map-icon-placeholder {
	width: 1px;
	height: 1px;
	border-width: 0;
	clip: rect(0, 0, 0, 0);
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
}

.property.highlight,
.all-locations-map-right .property.highlight {
	height: 100%;
	background-color: #FFFFFF;
	border-radius: 8px;
	-webkit-box-shadow: 5px 5px 6px 0 rgba(34, 34, 34, .25);
	-moz-box-shadow: 5px 5px 6px 0 rgba(34, 34, 34, .25);
	box-shadow: 5px 5px 6px 0 rgba(34, 34, 34, .25);
	padding: 2rem 1.6rem;
	width: auto;
}

.property.highlight::after,
.all-locations-map-right .property.highlight::after {
	border-top: 9px solid #FFFFFF;
	top: 97.5%;
}

.property.highlight .details {
	display: flex;
}

.property.highlight .property-building {
	display: inline-block;
	margin-bottom: 5px;
}

.property.highlight:has(.map-icon-WORQ) .icon {
	color: var(--worq-grey);
}

.property:not(.highlight):has(.map-icon-WORQ) {
	background-color: var(--worq-grey);
}

.property:not(.highlight):has(.map-icon-WORQ)::after {
	border-top: 1.5rem solid var(--worq-grey);
}

/* Location : Map - Mode Selector */
.location-map-toggles-container {
	width: 8.2rem;
	position: absolute;
	left: 0;
	top: -7rem;
}

.location-map-toggles-container input {
	width: 0;
	height: 0;
	display: none;
	visibility: hidden;
}

.map-toggle-slider-for-transit,
.map-toggle-slider-for-traffic {
	width: 2.6rem;
	height: 4.5rem;
	background: rgba(var(--grey-rgb), 0.45);
	border-radius: 1.3rem;
	cursor: pointer;
	margin-left: 1.5rem;
	position: relative;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
}

.map-toggle-slider-for-transit:before,
.map-toggle-slider-for-traffic:before {
	width: 2.8rem;
	height: 2.8rem;
	background: var(--white);
	border-radius: 1.5rem;
	bottom: -1px;
	-webkit-box-shadow: 0 3px 6px 0 rgba(34, 34, 34, .25);
	-moz-box-shadow: 0 3px 6px 0 rgba(34, 34, 34, .25);
	box-shadow: 0 3px 6px 0 rgba(34, 34, 34, .25);
	content: '';
	display: block;
	left: -1px;
	position: absolute;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
}

.map-toggle-slider-for-transit.selected,
.map-toggle-slider-for-traffic.selected {
	background: var(--worq-blue);
}

.map-toggle-slider-for-transit.selected:before,
.map-toggle-slider-for-traffic.selected:before {
	background: var(--worq-orange);
	bottom: 18px;
}

.map-toggle-slider-for-transit svg,
.map-toggle-slider-for-traffic svg {
	width: 2rem;
	height: 2.5rem;
	margin-left: 3px;
	margin-top: 2rem;
	opacity: .5;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
}

.map-toggle-slider-for-transit.selected svg,
.map-toggle-slider-for-traffic.selected svg {
	margin-top: 1px;
}

@media screen and (min-width: 30em) {

	/* 480px */
	.location-map-toggles-container {
		left: auto;
		right: 0;
		top: 1.5rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.location-map-toggles-container {
		bottom: 2rem;
		right: 1.5rem;
		top: auto;
	}
}

@media screen and (min-width: 60em) {

	/* 960px */
	.location-map-toggles-container {
		bottom: auto;
		right: 1.5rem;
		top: 1.5rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.location-map-toggles-container {
		width: auto;
		right: 2rem;
	}

	.map-toggle-slider-for-transit svg,
	.map-toggle-slider-for-traffic svg {
		width: 3rem;
		height: 3rem;
		margin-left: -1px;
		margin-top: 5.2rem;
		opacity: .25;
		-webkit-transition: all .25s ease;
		transition: all .25s ease;
	}

	.map-toggle-slider-for-transit.selected svg,
	.map-toggle-slider-for-traffic.selected svg {
		margin-top: 5.2rem;
	}
}


/* Location : Map - Mode Selector */
.location-map-mode-container {
	width: 100%;
	margin-top: 2rem;
}

.location-map-mode-container input {
	display: none;
}

.location-map-mode-option-container {
	width: 100%;
	height: 4rem;
	display: block;
	overflow: hidden;
}

.location-map-mode-option {
	height: 3.6rem;
	background-color: rgba(var(--grey-rgb), 0.125);
	border-radius: 2rem;
	color: var(--worq-navy);
	cursor: pointer;
	display: inline-block;
	font-weight: 600;
	line-height: 3.6rem;
	margin-right: 1rem;
	outline: red;
	padding: 0 3rem;
	vertical-align: middle;
}

.location-map-mode-option.selected {
	background-color: var(--worq-blue);
	box-shadow: 0 0 10px 100px var(--worq-blue) inset;
	color: var(--white);
	-webkit-text-fill-color: var(--white);
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.location-map-mode-container {
		margin-top: 3.5rem;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.location-map-mode-option {
		height: 4rem;
		line-height: 4rem;
	}
}

/* Location : Map - Place Selector */
.location-map-place-container {
	width: 100%;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin-bottom: 3rem;
	margin-top: 2rem;
	position: relative;
}

.location-map-place-container p,
.location-map-place-container select {
	font-size: 1.4rem;
	line-height: 4rem;
	vertical-align: middle;
}

.location-map-place-container select {
	border-bottom: 1px solid var(--worq-black);
	border-radius: 0;
	padding-right: 5rem;
	position: relative;
}

.location-map-place-arrow {
	width: 1.5rem;
	height: 1.5rem;
	position: absolute;
	right: 0;
	top: 1.2rem;
}

.location-map-place-arrow {
	width: 1.5rem;
	height: 1.5rem;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.location-map-place-container {
		margin-bottom: 8rem;
		margin-top: 5rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.location-map-place-container {
		margin-bottom: 10rem;
		margin-top: 8rem;
	}

	.location-map-place-container p,
	.location-map-place-container select {
		font-size: 1.6rem;
	}

	.location-map-place-container select {
		padding-right: 7rem;
	}

	.location-map-place-arrow,
	.location-map-place-arrow {
		width: 1.6rem;
		height: 1.6rem;
	}
}

/* Location : Map - Place Selector */
.location-map-travel-details-box {
	background-color: rgba(var(--grey-rgb), 0.125);
	border-radius: 1rem;
	margin-bottom: 1.5rem;
	margin-right: 1.5rem;
	padding: 3rem 3.5rem 3rem 2rem;
}

#travel-distance,
#travel-time {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.travel-distance-info,
.travel-time-info {
	color: var(--worq-grey);
	font-size: 1.2rem;
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.location-map-travel-details-box {
		padding-right: 5rem;
	}

	#travel-distance,
	#travel-time {
		font-size: 2.2rem;
		margin-bottom: 1.2rem;
	}

	.travel-distance-info,
	.travel-time-info {
		font-size: 1.3rem;
	}
}


/* Location : FAQs */
section#tnc {
	background: #fbfbfc;
}

.location-faqs-container {
	max-width: 112rem;
	padding: 0 2rem;
}

.location-faqs-right-container {
	width: 100%;
	height: auto;
}

.location-faqs-box {
	width: 100%;
	background-color: rgba(var(--grey-rgb), 0.125);
	border-radius: 1rem;
	cursor: pointer;
	margin-bottom: 1rem;
	padding: 3rem 8rem 3rem 3rem;
	position: relative;
}

.location-faqs-question,
.location-faqs-answer {
	font-size: 1.3rem;
}

.location-faqs-question {
	color: var(--worq-black);
}

.location-faqs-answer {
	height: 0;
	color: var(--worq-grey);
	opacity: 0;
	overflow: hidden;
	-webkit-transform: translateY(-5%);
	transform: translateY(-5%);
	-webkit-transition: -webkit-transform .25s ease;
	transition: -webkit-transform .25s ease;
	transition: transform .25s ease;
	visibility: hidden;
	z-index: -1;
}

.location-faqs-answer a {
	color: var(--worq-red);
	text-decoration: underline;
}

.location-faqs-answer div {
	margin-bottom: 2rem;
}

.location-faqs-answer li {
	list-style: inherit;
}

.location-faqs-box.show .location-faqs-answer {
	height: auto;
	opacity: 1;
	overflow: visible;
	padding-top: 2rem;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: -webkit-transform .25s ease, opacity .25s ease;
	transition: -webkit-transform .25s ease, opacity .25s ease;
	transition: transform .25s ease, opacity .25s ease;
	visibility: visible;
}

.location-faqs-button {
	width: 4rem;
	height: 4rem;
	background: var(--white);
	border-radius: 50%;
	display: block;
	position: absolute;
	right: 2rem;
	top: 2rem;
}

.location-faqs-table {
	min-width: 22rem;
	overflow: scroll;
}

.location-faqs-button .bar {
	width: 2rem;
	height: 2px;
	background: var(--worq-black);
	border-radius: 1px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	top: 0;
	-webkit-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.location-faqs-button .bar:first-child {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.location-faqs-box.show .bar:first-child {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.location-faqs-box.show .bar:nth-child(2) {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.location-faqs-view-all-container {
	width: 100%;
	margin-top: 2rem;
	text-align: center;
}

.location-faqs-view-all-link {
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	opacity: .5;
	overflow: hidden;
	padding-right: 2.4rem;
	position: relative;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	vertical-align: middle;
}

.location-faqs-view-all-link:hover {
	color: var(--worq-orange);
	opacity: 1;
}

.location-faqs-view-all-link .view-all-link-arrow {
	width: 4.6rem;
	height: 1.8rem;
	display: inline-block;
	position: absolute;
	right: -1.4rem;
	top: 0;
	-webkit-transform: rotate(-45deg) translateX(-25%);
	transform: rotate(-45deg) translateX(-25%);
	-webkit-transition: -webkit-transform .2s ease;
	transition: -webkit-transform .2s ease;
	transition: transform .2s ease;
	vertical-align: middle;
}

.location-faqs-view-all-link:hover .view-all-link-arrow {
	-webkit-transform: rotate(-45deg) translateX(35%);
	transform: rotate(-45deg) translateX(35%);
}

.location-faqs-view-all-link svg {
	width: 1.8rem;
	height: 1.8rem;
	display: inline-block;
	fill: var(--worq-orange);
	margin-right: 1rem;
}

.location-faqs-view-all-link svg:last-child {
	fill: var(--worq-black);
	margin-right: 0;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.location-faqs-container {
		padding: 0 3rem;
	}

	.location-faqs-box {
		padding: 4rem 8rem 4rem 3rem;
	}

	.location-faqs-question,
	.location-faqs-answer {
		font-size: 1.4rem;
	}

	.location-faqs-button {
		top: 3rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.location-faqs-question,
	.location-faqs-answer {
		font-size: 1.5rem;
	}

	.location-faqs-view-all-link {
		font-size: 1.6rem;
	}

	.location-faqs-view-all-link .view-all-link-arrow {
		top: 2px;
	}
}



/* Location : Testimonials */
.outer-testimonials-container {
	width: 100%;
	background: var(--worq-yellow);
	overflow: hidden;
	padding-bottom: 8rem;
	padding-top: 8rem;
}

.homepage .outer-testimonials-container {
	background: transparent;
	padding-top: 5rem;
}

.testimonials-container {
	max-width: 112rem;
	padding: 0 2rem;
}

.testimonials-container-left,
.testimonials-container-right {
	width: 100%;
	position: relative;
}

.testimonials-title {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 2rem;
}

.testimonials-quote {
	width: 5rem;
	height: 5rem;
	left: 0;
	position: absolute;
	top: 0;
}

.testimonials-quote svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: .25;
}

.testimonials-content {
	color: var(--worq-grey);
	font-size: 1.5rem;
	line-height: 1.75;
	margin-bottom: 3rem;
	padding-top: 6rem;
}

.testimonials-container-right-bottom {
	align-items: center;
}

.testimonials-reviewer-img {
	width: 10rem;
	height: 10rem;
	border-radius: 5rem;
	margin-right: 2rem;
	object-fit: cover;
}

.testimonials-reviewer-name {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.testimonials-reviewer-company {
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.testimonials-container {
		padding: 0 3rem;
	}

	.testimonials-container-left,
	.testimonials-container-right {
		width: 50%;
	}

	.testimonials-title {
		padding-right: 5rem;
		padding-top: 6rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.testimonials-title {
		padding-right: 12rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.testimonials-title {
		font-size: 2.8rem;
		padding-top: 7rem;
	}

	.testimonials-quote {
		width: 6rem;
		height: 6rem;
	}

	.testimonials-content {
		font-size: 1.8rem;
		padding-top: 7rem;
	}

	.testimonials-reviewer-name {
		font-size: 1.6rem;
	}

	.testimonials-reviewer-company {
		font-size: 1.5rem;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.outer-testimonials-container {
		padding-bottom: 10rem;
		padding-top: 10rem;
	}

	.home .outer-testimonials-container {
		padding-bottom: 12rem;
	}
}


/* All Locations : Title */
.all-locations-title-container {
	overflow-x: hidden;
	padding-bottom: 3.5rem;
	padding-top: 3.5rem;
	position: relative;
}

.all-locations-subtitle {
	width: 100%;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.5;
}

.all-locations-title {
	width: 100%;
	font-size: 3.6rem;
	font-weight: 700;
	margin-bottom: 3rem;
}

.all-locations-description {
	max-width: 36rem;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.75;
}

.all-locations-img {
	width: 70rem;
	height: calc(100% - 6rem);
	display: none;
	border-radius: 15rem;
	object-fit: cover;
	position: absolute;
	right: 0;
	-webkit-transform: translateX(46%);
	transform: translateX(46%);
	top: 3rem;
	z-index: -1;
}

@media screen and (min-width: 30em) {

	/* 480px */
	.all-locations-title-container {
		padding-bottom: 5rem;
		padding-top: 5rem;
	}

	.all-locations-subtitle {
		font-size: 1.4rem;
	}

	.all-locations-title {
		font-size: 3.8rem;
	}

	.all-locations-description {
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.all-locations-title-container {
		padding-bottom: 8rem;
		padding-top: 8rem;
	}

	.all-locations-subtitle {
		width: 25%;
		font-size: 1.5rem;
	}

	.all-locations-title {
		font-size: 4.2rem;
	}

	.all-locations-img {
		display: block;
	}
}

@media screen and (min-width: 52.5em) {

	/* 840px */
	.all-locations-description {
		max-width: 48rem;
	}

	.all-locations-img {
		-webkit-transform: translateX(55%);
		transform: translateX(55%);
	}
}

@media screen and (min-width: 60em) {

	/* 960px */
	.all-locations-img {
		-webkit-transform: translateX(35%);
		transform: translateX(35%);
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.all-locations-title-container {
		overflow-x: visible;
	}

	.all-locations-subtitle {
		font-size: 1.6rem;
	}

	.all-locations-title {
		font-size: 4.8rem;
	}

	.all-locations-img {
		width: 80rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.all-locations-title {
		font-size: 5.2rem;
		margin-bottom: 3.5rem;
	}

	.all-locations-img {
		width: 90rem;
		-webkit-transform: translateX(40%);
		transform: translateX(40%);
	}
}

/* All Locations : Buttons */
.all-locations-buttons-container {
	max-width: 112rem;
	margin-bottom: 5rem;
	padding: 0 2rem;
}

.all-locations-buttons {
	height: 2.8rem;
	background: rgba(var(--grey-rgb), 0.15);
	border-radius: 1.4rem;
	cursor: pointer;
	display: inline-block;
	margin-bottom: 8px;
	margin-right: 8px;
	padding: 0 1.5rem;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.all-locations-buttons .all-locations-buttons-title {
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 2.8rem;
}

.all-locations-buttons:hover {
	background: var(--worq-peach);
	color: var(--worq-navy);
	font-weight: 600;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.all-locations-buttons-container {
		margin-top: 2.5rem;
		padding: 0 3rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.all-locations-buttons {
		height: 3.2rem;
		border-radius: 1.6rem;
		padding: 0 2rem;
	}

	.all-locations-buttons .all-locations-buttons-title {
		font-size: 1.3rem;
		line-height: 3.2rem;
	}
}

/* All Locations : Map */
.outer-all-locations-map-container {
	width: 100%;
	background: var(--worq-grey);
	margin-bottom: 0;
	padding-bottom: 5rem;
	padding-top: 5rem;
	text-align: center;
}

.all-locations-map-button {
	height: 3.8rem;
	background: var(--worq-orange);
	border-radius: 2rem;
	color: var(--white);
	cursor: pointer;
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 3.8rem;
	margin: auto;
	padding: 0 2.4rem;
}

.inner-all-locations-map-container {
	max-width: 144rem;
	margin: auto;
	padding: 0 2rem;
}

.all-locations-map-left,
.all-locations-map-right {
	width: 100%;
}

.all-locations-map-left {
	grid-template-columns: 100%;
	grid-gap: 1.4rem;
	gap: 1.4rem;
	order: 2;
	padding-bottom: 4rem;
}

.all-locations-box {
	border-radius: 8px;
	display: block;
	overflow: hidden;
	position: relative;
}

.swiper-all-locations-container {
	margin-bottom: 0;
	margin-top: 0;
	overflow: hidden;
	position: relative;
}

.all-locations-slide-img-container img {
	width: 100%;
	height: 24rem;
	display: block;
	object-fit: cover;
}

.swiper-all-locations-pagination .swiper-pagination-bullet {
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	background: rgba(var(--white-rgb), 0.7);
	opacity: 1;
}

.swiper-all-locations-pagination .swiper-pagination-bullet-active {
	background: var(--worq-blue);
}

.swiper-all-locations-container .swiper-button-next,
.swiper-all-locations-container .swiper-button-prev {
	width: 3rem;
	height: 3rem;
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	background: rgba(var(--white-rgb), 0.55);
	border-radius: 1.5rem;
	margin-top: -1.5rem;
	opacity: 0;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.swiper-all-locations-container:hover .swiper-button-next,
.swiper-all-locations-container:hover .swiper-button-prev {
	opacity: 1;
}

.swiper-all-locations-container .swiper-button-next:after,
.swiper-all-locations-container .swiper-button-prev:after {
	color: var(--worq-blue);
	font-size: 1.6rem;
	font-weight: 900;
}

.swiper-all-locations-container .swiper-button-next.swiper-button-disabled,
.swiper-all-locations-container .swiper-button-prev.swiper-button-disabled {
	opacity: 0;
}

.all-locations-box-info {
	height: 100%;
	background: var(--white);
	padding: 2rem 2rem 3rem;
	text-align: left;
}

.all-locations-box-place-title {
	width: auto;
	height: 3rem;
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	background: rgba(var(--white-rgb), 0.3);
	border-radius: 1.5rem;
	color: var(--worq-navy);
	font-size: 1.1rem;
	font-weight: 600;
	left: 1rem;
	line-height: 3rem;
	padding: 0 1.5rem;
	position: absolute;
	top: 1rem;
	z-index: 2;
}

.all-locations-box-place-recognition {
	width: auto;
	height: 6rem;
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	background: rgba(var(--grey-rgb), 0.3);
	border-radius: 3rem 0 0 3rem;
	color: var(--worq-navy);
	font-size: 1.1rem;
	font-weight: 600;
	right: -1rem;
	padding: 1rem 2rem 1rem 1.5rem;
	position: absolute;
	top: 1rem;
	z-index: 2;
}

.all-locations-box-place-recognition img {
	width: 3.5rem;
	height: 4rem;
	object-fit: contain;
	opacity: .9;
}

.all-locations-box-info-title {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.all-locations-box-info-address,
.all-locations-box-info .location-overview-transport {
	color: rgba(var(--grey-rgb), 0.9);
	font-size: 8px;
	line-height: 1.4;
	margin-bottom: 1rem;
}

.all-locations-box-info-address {
	font-size: 1rem;
	margin-bottom: 1.5rem;
}

.all-locations-box-info-price {
	width: 100%;
}

.all-locations-box-info-price-title {
	color: rgba(var(--grey-rgb), 0.9);
	font-size: 8px;
	line-height: 1.4;
	margin-bottom: 5px;
	margin-top: 2rem;
	text-transform: uppercase;
}

.all-locations-box-info-price-list {
	width: 100%;
	border-bottom: 1px solid rgba(var(--grey-rgb), 0.2);
	font-size: 1.2rem;
	justify-content: space-between;
	line-height: 2.8rem;
}

.all-locations-box-info-price-list .regular-price.slash-price {
	font-size: 1.2rem;
	margin-left: 2px;
	opacity: .6;
}

.all-locations-box-info .location-overview-transport-container {
	margin-bottom: 0;
}

.all-locations-box-info .location-overview-transport img {
	width: 1.4rem;
	height: 1.4rem;
	margin-left: 5px;
}

.all-locations-map-right {
	height: 0;
	order: 1;
	padding-bottom: 2rem;
	-webkit-transition: height .7s ease;
	transition: height .7s ease;
}

.all-locations-map-right.show {
	height: 100vh;
}

.all-locations-map-right #scud-map {
	height: 0;
	margin: auto;
	margin-top: 2rem;
	-webkit-transition: all .7s ease;
	transition: all .7s ease;
}

.all-locations-map-right.show #scud-map {
	height: calc(100vh - 4rem);
	overflow: hidden;
}

@media screen and (min-width: 36.25em) {

	/* 580px */
	.all-locations-map-left {
		grid-template-columns: calc(50% - 7px) calc(50% - 7px);
	}

	.all-locations-box-info-title {
		font-size: 1.6rem;
	}

	.all-locations-box-info .location-overview-transport img {
		width: 1.6rem;
		height: 1.6rem;
	}

	.all-locations-box-info-address,
	.all-locations-box-info .location-overview-transport,
	.all-locations-box-info-price-title {
		font-size: 9px;
	}

	.all-locations-box-info-price-title {
		margin-top: 2.5rem;
	}

	.all-locations-box-info-address {
		font-size: 1.1rem;
	}

	.all-locations-box-info-price-list {
		font-size: 1.3rem;
		line-height: 3.2rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.all-locations-map-button {
		display: none;
	}

	.outer-all-locations-map-container {
		padding-bottom: 5rem;
		padding-top: 7rem;
	}

	.inner-all-locations-map-container {
		padding: 0 3rem;
	}

	.all-locations-map-left {
		width: 50%;
		order: 1;
	}

	.all-locations-box-info-price-title:first-child {
		margin-top: 3.5rem;
	}

	.all-locations-map-right {
		height: 100vh;
		width: 50%;
		-webkit-align-self: start;
		align-self: start;
		display: block;
		order: 2;
		padding-bottom: 0;
		position: sticky;
		top: 2rem;
	}

	.all-locations-map-right #scud-map {
		height: calc(100vh - 4rem);
		margin-top: 0;
	}

	.all-locations-map-left {
		grid-template-columns: calc(100% - 1.4rem);
	}
}

@media screen and (min-width: 60em) {

	/* 960px */
	.all-locations-map-left {
		width: 40%
	}

	.all-locations-map-right {
		width: 60%;
	}

	.all-locations-box-info-title {
		font-size: 1.8rem;
		margin-bottom: 1.2rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.all-locations-map-left {
		grid-template-columns: calc(100% - 2.8rem);
	}

	.all-locations-slide-img-container img {
		height: 20rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.all-locations-map-left {
		width: 60%;
		grid-template-columns: calc(50% - 2.1rem) calc(50% - 2.1rem);
	}

	.all-locations-map-right {
		width: 40%;
	}
}


/* Floating Menu - All Products */
.floating-menu-container {
	width: 100%;
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	background: rgba(var(--grey-rgb), 0.2);
	bottom: 0;
	color: var(--white);
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	overflow-x: scroll;
	overflow-y: hidden;
	padding: 0 1rem;
	position: fixed;
	-webkit-transform: translateY(120%);
	transform: translateY(120%);
	-webkit-transition: -webkit-transform .25s ease;
	transition: -webkit-transform .25s ease;
	transition: transform .25s ease;
	z-index: 5;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.floating-menu-container::-webkit-scrollbar {
	display: none;
}

.floating-menu-container.show {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.floating-menu-scroll-container {
	width: fit-content;
	flex-wrap: nowrap;
	margin: auto;
	overflow: hidden;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.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-item-top {
	width: max-content;
	height: max-content;
	margin: auto;
	margin-bottom: 2px;
}

.floating-menu-item-top svg {
	width: 2.4rem;
	height: 2.4rem;
	display: block;
	object-fit: contain;
}

.floating-menu-item-bottom {
	color: var(--worq-navy);
	font-size: 1rem;
	font-weight: 500;
	line-height: 2rem;
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.floating-menu-container {
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
		background: transparent;
		overflow-x: hidden;
		overflow-y: hidden;
	}

	.floating-menu-scroll-container {
		-webkit-backdrop-filter: blur(1rem);
		backdrop-filter: blur(1rem);
		background: rgba(var(--grey-rgb), 0.1);
		border-radius: 1rem;
		justify-content: center;
		margin-bottom: 3.5rem;
		padding: 0 2rem;
	}

	.floating-menu-item-top {
		margin-bottom: 8px;
	}

	.floating-menu-item-top svg {
		width: 2.8rem;
		height: 2.8rem;
	}

	.floating-menu-item-bottom {
		font-size: 1.1rem;
	}
}


/* Floating Menu - Location Only */
.menu-for-location {
	width: 100%;
	max-width: 106rem;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	overflow: hidden;
	padding: 1rem;
}

.menu-for-location-select-container {
	display: none;
}

.menu-for-location-select {
	position: relative;
}

.menu-for-location-mobile-select select,
.menu-for-location-select select {
	border-radius: 8px;
	color: var(--worq-navy);
	cursor: pointer;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 4rem;
	padding-left: 2rem;
	padding-right: 3rem;
	z-index: 2;
}

.menu-for-location-mobile-select {
	width: 100%;
	margin-bottom: 1rem;
	position: relative;
}

.menu-for-location-mobile-select select {
	width: calc(100vw - 2.5rem);
	padding: 0 1.5rem;
}

.menu-for-location-mobile-select option {
	width: 100%;
}

.menu-for-location-select-arrow {
	width: 1.5rem;
	height: 4rem;
	display: inline-block;
	line-height: 4rem;
	position: absolute;
	right: 1rem;
	top: 0;
	z-index: 1;
}

.menu-for-location-select-arrow svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.menu-for-location-item-container {
	width: max-content;
	display: none;
	margin-left: auto;
	margin-right: 2rem;
	overflow-x: scroll;
	overflow-y: hidden;
	padding: 0 2rem;
}

.menu-for-location-item-scroll-container {
	width: max-content;
	overflow: hidden;
}

.menu-for-location-item {
	width: max-content;
	height: 4rem;
	color: var(--worq-navy);
	cursor: pointer;
	font-size: 1.3rem;
	line-height: 4rem;
	margin: 0 1rem;
	overflow: hidden;
	position: relative;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.menu-for-location-item::-webkit-scrollbar {
	display: none;
}

.menu-for-location-item:before {
	width: 0;
	height: 6px;
	background: var(--worq-navy);
	border-radius: 3px;
	content: '';
	display: inline-block;
	left: -1rem;
	margin-left: 1rem;
	position: relative;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	vertical-align: middle;
}

.menu-for-location-item.highlight:before {
	width: 6px;
}

.floating-menu-button {
	min-width: 100%;
	height: 4rem;
	background: var(--worq-orange);
	border-radius: 8px;
	color: var(--white);
	cursor: pointer;
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 4rem;
	padding: 0 2.4rem;
	text-align: center;
}

@media screen and (min-width: 36.25em) {

	/* 580px */
	.menu-for-location {
		flex-wrap: nowrap;
	}

	.menu-for-location-mobile-select {
		display: none;
	}

	.menu-for-location-select-container,
	.menu-for-location-item-container {
		display: block;
	}

	.menu-for-location-item-container {
		padding: 0 1rem;
	}

	.floating-menu-button {
		min-width: 13rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.menu-for-location-item-container {
		overflow-x: hidden;
	}
}


/* Slide In Menu */
.slide-in-menu-container {
	width: 100vw;
	height: 100vh;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	visibility: hidden;
	z-index: -11;
}

.slide-in-menu-container.show {
	position: fixed;
	visibility: visible;
	z-index: 12;
}

.slide-in-menu {
	width: 28rem;
	height: calc(100vh - 1rem);
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	background: rgba(var(--white-rgb), 0.8);
	border: 2px solid var(--white);
	border-radius: 2rem 0 0 2rem;
	color: var(--worq-black);
	display: block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	overflow: scroll;
	padding: 5rem 2rem;
	position: absolute;
	right: -2px;
	top: 5px;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	visibility: hidden;
	z-index: 12;
}

.slide-in-menu.show {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: -webkit-transform .3s ease;
	transition: -webkit-transform .3s ease;
	transition: transform .3s ease;
	visibility: visible;
	z-index: 12;
}

.slide-in-menu .nav-slide-in-menu,
.slide-in-menu .menu-item .sub-menu {
	margin-bottom: 0;
}

.slide-in-menu-container-bg {
	width: 0;
	height: 0;
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	background: rgba(var(--black-rgb), 0.2);
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	-webkit-transition: opacity .2s ease;
	transition: opacity .2s ease;
	visibility: hidden;
	z-index: -11;
}

.slide-in-menu-container-bg.show {
	width: 100vw;
	height: 100vh;
	display: block;
	opacity: 1;
	position: fixed;
	visibility: visible;
	z-index: 11;
}

.slide-in-menu .menu-item a {
	width: 100%;
	height: 4rem;
	border-radius: 2rem;
	display: block;
	line-height: 4rem;
	overflow: hidden;
	padding: 0 1.4rem;
	position: relative;
	text-overflow: ellipsis;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	white-space: nowrap;
}

.slide-in-menu .menu-item a:hover {
	background: var(--white);
	color: var(--worq-black);
}

.slide-in-menu .current-menu-item>a {
	background: var(--worq-black);
	color: var(--white);
}

.slide-in-menu .menu-item .sub-menu {
	width: 100%;
	height: 0;
	margin: 0;
	opacity: 0;
	padding-left: 2.5rem;
	position: relative;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	visibility: hidden;
	z-index: -1;
}

.slide-in-menu .menu-item .sub-menu.show {
	height: 100%;
	margin: 5px 0;
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.icon-membership.menu-item .sub-menu.show,
.icon-location.menu-item .sub-menu.show {
	height: 40rem;
}

.slide-in-menu .menu-item .sub-menu li {
	border-left: 1px solid var(--worq-navy);
}

.slide-in-menu .menu-item .sub-menu li a {
	margin-left: 1rem;
}

.slide-in-menu.show .menu-item li.menu-subheader {
	border-left: none;
}

.slide-in-menu .menu-item li.menu-subheader>a {
	color: rgba(var(--grey-rgb), .7);
	font-size: 1.4rem;
	font-weight: 600;
	margin-left: 0;
	padding-left: 0;
	pointer-events: none;
}

.slide-in-menu li.menu-subheader>a:before {
	display: none;
}

@media screen and (min-width: 30em) {

	/* 480px */
	.slide-in-menu {
		width: 32rem;
	}
}

@media screen and (min-width: 36.25em) {

	/* 580px */
	.slide-in-menu {
		width: 36rem;
		padding: 5rem 3rem;
	}

	.slide-in-menu .menu-item a {
		height: 5rem;
		border-radius: 2.5rem;
		line-height: 5rem;
	}

	.icon-membership.menu-item .sub-menu.show,
	.icon-location.menu-item .sub-menu.show {
		height: 50rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.slide-in-menu {
		padding: 8rem 2rem;
	}
}

/* Slide In Menu : Icons */
.slide-in-menu .icon-home a:before,
.slide-in-menu .icon-home a:hover::before,
.slide-in-menu .icon-location a:before,
.slide-in-menu .icon-membership a:before,
.slide-in-menu .icon-event a:before,
.slide-in-menu .icon-enterprise a:before,
.slide-in-menu .icon-community a:before {
	width: 2.4rem;
	height: 2.4rem;
	background-image: url('worq-icons/menu-home.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 65%;
	content: '';
	display: inline-block;
	margin-right: 1rem;
	position: relative;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	vertical-align: middle;
}

.current-menu-item.icon-home a:before {
	background-image: url('worq-icons/menu-home-white.svg');
}

.slide-in-menu .icon-location a:before,
.slide-in-menu .menu-item-has-children.icon-location a:hover::before {
	background-image: url('worq-icons/menu-location.svg');
}

.current-menu-item.menu-item-has-children.icon-location>a:before,
.slide-in-menu .icon-location .current-menu-item>a:before {
	background-image: url('worq-icons/menu-location-white.svg');
}

.slide-in-menu .icon-membership a:before,
.slide-in-menu .menu-item-has-children.icon-membership a:hover::before {
	background-image: url('worq-icons/menu-membership.svg');
}

.current-menu-item.menu-item-has-children.icon-membership>a:before,
.slide-in-menu .icon-membership .current-menu-item>a:before {
	background-image: url('worq-icons/menu-membership-white.svg');
}

.slide-in-menu .icon-event a:before,
.slide-in-menu .icon-event a:hover::before {
	background-image: url('worq-icons/menu-event.svg');
}

.current-menu-item.icon-event>a:before,
.slide-in-menu .icon-event .current-menu-item>a:before {
	background-image: url('worq-icons/menu-event-white.svg');
}

.slide-in-menu .icon-enterprise a:before,
.slide-in-menu .menu-item-has-children.icon-enterprise a:hover::before {
	background-image: url('worq-icons/menu-enterprise.svg');
}

.current-menu-item.menu-item-has-children.icon-enterprise>a:before,
.slide-in-menu .icon-enterprise .current-menu-item>a:before {
	background-image: url('worq-icons/menu-enterprise-white.svg');
}

.slide-in-menu .icon-community a:before,
.slide-in-menu .menu-item-has-children.icon-community a:hover::before {
	background-image: url('worq-icons/menu-community.svg');
}

.current-menu-item.menu-item-has-children.icon-community>a:before,
.slide-in-menu .icon-community .current-menu-item>a:before {
	background-image: url('worq-icons/menu-community-white.svg');
}

.menu-item-has-children>span {
	width: 4.5rem;
	height: 4rem;
	cursor: pointer;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
}

.menu-item-has-children>span:after,
.current-menu-item.menu-item-has-children a:hover+span:after {
	width: 2.4rem;
	height: 2.4rem;
	background-image: url('worq-icons/menu-plus.svg');
	background-repeat: no-repeat;
	background-position: center right;
	background-size: 30%;
	bottom: 0;
	content: '';
	display: block;
	left: auto;
	margin: auto;
	padding: 1rem;
	position: absolute;
	right: 1.5rem;
	top: 0;
	z-index: 11;
}

.current-menu-item.menu-item-has-children>span:after {
	background-image: url('worq-icons/menu-plus-white.svg');
}

.dropdown.show:after,
.current-menu-item.menu-item-has-children a:hover+.dropdown.show:after {
	background-image: url('worq-icons/menu-minus.svg');
}

.current-menu-item .dropdown.show:after {
	background-image: url('worq-icons/menu-minus-white.svg');
}

.menu-item-has-children .sub-menu .dropdown {
	display: none;
}

@media screen and (min-width: 36.25em) {

	/* 580px */
	.menu-item-has-children>span {
		width: 5rem;
		height: 5rem;
	}
}


/* Product : Title */
.outer-product-title-container {
	background: var(--worq-grey);
}

.product-title-container {
	margin-bottom: 5rem;
	margin-top: 2rem;
	padding: 0;
}

.product-hero-title-container {
	padding-bottom: 5rem;
	padding-top: 3.5rem;
}

.product-title {
	width: 100%;
	color: var(--worq-yellow);
	font-size: 3.6rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.product-subtitle {
	width: 100%;
	max-width: 30rem;
	color: var(--worq-yellow);
	font-family: 'PT Sans Caption', Helvetica, Arial, sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
}

@media screen and (min-width: 30em) {

	/* 480px */
	.product-hero-title-container {
		padding-bottom: 7rem;
		padding-top: 5.5rem;
	}

	.product-title {
		font-size: 3.8rem;
	}

	.product-subtitle {
		font-size: 1.7rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.product-hero-title-container {
		padding-bottom: 8rem;
		padding-top: 6.5rem;
	}

	.product-title-container {
		margin-top: 1.2rem;
	}

	.product-title {
		font-size: 4.2rem;
	}

	.product-subtitle {
		font-size: 1.8rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.product-hero-title-container {
		width: 50%;
		align-items: center;
		align-content: center;
		justify-content: center;
		flex-flow: column;
		padding: 0;
		position: relative;
	}

	.product-hero-title {
		width: 80%;
		left: 50%;
		margin: 0;
		position: absolute;
		top: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}

	.product-title-container {
		margin-top: 3.4rem;
	}

	.product-title {
		width: auto;
		font-size: 5.8rem;
		margin-bottom: 2rem;
	}

	.product-subtitle {
		width: auto;
		max-width: none;
		font-size: 2.4rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.product-hero-title {
		width: 75%;
	}

	.product-title {
		font-size: 6.8rem;
	}

	.product-subtitle {
		font-size: 2.6rem;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.product-hero-title {
		width: 70%;
	}
}

/* Product : Hero Image */
.product-hero-img-container {
	width: 100%;
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.product-hero-img-container>img {
	width: 100%;
	height: 30rem;
	left: 0;
	object-fit: cover;
	top: 0;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.product-hero-img-container>img {
		height: 36rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.product-hero-img-container {
		width: 50%;
	}

	.product-hero-img-container>img {
		height: 70rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.product-hero-img-container>img {
		height: 80rem;
	}
}


/* Product : Overview */
.product-overview-container {
	max-width: 112rem;
	margin-bottom: 8rem;
	padding: 0 2rem;
}

.product-overview-left-container,
.product-overview-right-container {
	width: 100%;
}

.product-overview-left-container {
	order: 2;
}

.product-overview-right-container {
	order: 1;
}

.product-overview-title {
	width: 100%;
	max-width: 38rem;
	font-size: 2.4rem;
	font-weight: 500;
	margin-bottom: 2rem;
}

.product-overview-content {
	width: 100%;
	max-width: 38rem;
	color: var(--worq-grey);
	font-size: 1.3rem;
	line-height: 1.5;
	margin-bottom: 3.5rem;
}

.product-list-container {
	margin-bottom: 0;
}

.product-list-container li {
	color: var(--worq-grey);
	line-height: 1.5;
	margin-bottom: 2rem;
	padding-left: 3.8rem;
}

.product-list-container li:before {
	width: 2.4rem;
	height: 2.4rem;
	background: url('worq-icons/chevron-right-round.svg');
	content: '';
	display: block;
	left: 0;
	opacity: .8;
	position: absolute;
	vertical-align: middle;
	top: -3px;
}

.product-info-box-title {
	font-family: 'PT Sans Caption', Helvetica, Arial, sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
}

.product-info-quote-button,
.product-info-location-button {
	width: 100%;
	height: 3.4rem;
	background: var(--worq-orange);
	border-radius: 2rem;
	color: var(--white);
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 3.4rem;
	margin-bottom: 1rem;
	margin-right: 1rem;
	padding: 0 2.4rem;
	text-align: center;
}

.product-info-location-button {
	background: transparent;
	border: 2px solid var(--grey);
	color: var(--grey);
	line-height: 3.2rem;
}

@media screen and (min-width: 30em) {

	/* 480px */
	.product-list-container li {
		font-size: 1.3rem;
		margin-bottom: 2.2rem;
		padding-left: 4.2rem;
	}

	.product-list-container li:before {
		width: 2.8rem;
		height: 2.8rem;
		top: -4px;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.product-overview-container {
		padding: 0 3rem;
	}

	.product-overview-left-container {
		width: 50%;
		-webkit-align-self: start;
		align-self: start;
		display: block;
		margin-right: 2%;
		order: 1;
		position: sticky;
		top: 0;
	}

	.product-overview-right-container {
		width: 48%;
		order: 2;
	}

	.product-overview-title {
		font-size: 2.8rem;
		margin-bottom: 3rem;
		margin-top: 3rem;
	}

	.product-overview-content {
		font-size: 1.5rem;
	}

	.product-list-container li {
		font-size: 1.4rem;
		margin-bottom: 2.5rem;
		padding-left: 4.8rem;
	}

	.product-list-container li:before {
		width: 3.2rem;
		height: 3.2rem;
		top: -6px;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.product-info-box-title {
		font-size: 1.8rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.product-info-box-title {
		font-size: 2rem;
	}

	.product-info-quote-button,
	.product-info-location-button {
		height: 4.2rem;
		border-radius: 2.1rem;
		font-size: 1.4rem;
		line-height: 4.2rem;
		margin-right: 2.5rem;
		padding: 0 3.6rem;
	}

	.product-info-location-button {
		line-height: 4rem;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.product-overview-container {
		margin-bottom: 12rem;
	}
}


/* Product : Why */
.product-why-container {
	max-width: 112rem;
	margin-bottom: 8rem;
	padding: 0 2rem;
}

.product-why-box-container {
	width: 100%;
}

.product-why-box {
	width: 100%;
	margin-bottom: 5rem;
}

.product-why-box-img {
	width: 100%;
	height: 32rem;
	border-radius: 6px;
	object-fit: cover;
}

.product-why-box-title {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.4;
	margin: 1.5rem 0;
}

.product-why-box-content {
	color: var(--worq-grey);
	font-size: 1.3rem;
	line-height: 1.5;
}

.product-why-button {
	height: 3.4rem;
	background: transparent;
	border: 2px solid var(--grey);
	border-radius: 2rem;
	color: var(--grey);
	cursor: pointer;
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 3.2rem;
	margin: auto;
	margin-top: 5rem;
	padding: 0 4rem;
	text-align: center;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.product-why-container {
		margin-bottom: 10rem;
		padding: 0 3rem;
	}

	.product-why-box-container {
		gap: 1.5rem;
		justify-content: space-between;
	}

	.product-why-box {
		width: calc(33.33% - 1rem);
		max-width: 33rem;
		margin-bottom: 0;
	}

	.product-why-box:first-child {
		margin-top: 8rem;
	}

	.product-why-box:nth-child(2) {
		margin-top: 16rem;
	}

	.product-why-box-img {
		height: 36rem;
	}

	.product-why-button {
		margin-top: 6rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.product-why-box-title {
		font-size: 2.4rem;
		margin: 2rem 0;
	}

	.product-why-box-content {
		font-size: 1.4rem;
	}

	.product-why-box-img {
		height: 42rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.product-why-button {
		height: 4.2rem;
		border-radius: 2.1rem;
		font-size: 1.4rem;
		line-height: 4rem;
		padding: 0 4.8rem;
	}
}

/* Product : Popup Details */
.popup-details-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 .3s ease;
	transition: all .3s ease;
	z-index: 1;
}

.popup-details-container.show {
	opacity: 1;
	visibility: visible;
	z-index: 11;
}

.popup-details-container .details-box-container {
	height: 100%;
	background: var(--white);
	border-radius: 1rem;
	overflow: scroll;
	padding: 2rem;
	padding-top: 5rem;
	-webkit-transform: translateY(125%);
	transform: translateY(125%);
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	transition: transform .4s ease;
}

.popup-details-container.show .details-box-container {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.popup-details-container .details-box {
	width: 100%;
	background: var(--white);
	border-bottom: 1px solid rgba(var(--grey-rgb), .2);
	padding: 4rem 0;
}

.details-box-container-close-container {
	width: 100%;
	height: 5.5rem;
	background: var(--white);
	left: 0;
	position: fixed;
	top: 0;
	z-index: 12;
}

.details-box-container-close-container.mobile-only {
	opacity: 0;
}

.show .details-box-container-close-container.mobile-only {
	opacity: 1;
}

.details-box-container-close {
	width: 5.5rem;
	height: 5.5rem;
	cursor: pointer;
	left: 1rem;
	position: absolute;
	top: 0;
}

.details-box-container-close .bar {
	width: 2rem;
	height: 2px;
	background: var(--worq-black);
	border-radius: 1px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	top: 0;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-transition: -webkit-transform .2s ease;
	transition: -webkit-transform .2s ease;
	transition: transform .2s ease;
}

.details-box-container-close .bar:first-child {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.details-box-title {
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
}

.details-box-description {
	font-size: 1.2rem;
	line-height: 1.5;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.popup-details-container {
		background: rgba(0, 0, 0, .5);
		padding: 8rem;
	}

	.popup-details-container .details-box-container {
		max-width: 52rem;
		margin: auto;
		padding: 3rem;
		padding-top: 0;
		position: relative;
	}

	.details-box-container-close-container {
		height: 6rem;
		position: sticky;
	}

	.details-box-container-close {
		width: 6rem;
		height: 6rem;
		left: -2.5rem;
	}

	.details-box-title {
		font-size: 2rem;
	}

	.details-box-description {
		font-size: 1.3rem;
	}
}


/* Product : Recommendation */
.product-recommendation-container {
	width: calc(100% - 4rem);
	max-width: 106rem;
	background: var(--worq-yellow);
	border-radius: 1.2rem;
	margin: 0 2rem;
	margin-bottom: 8rem;
	padding: 3rem 2rem;
}

.product-recommendation-left,
.product-recommendation-right,
.product-recommendation-left-top,
.product-recommendation-left-bottom {
	width: 100%;
}

.product-recommendation-title {
	font-size: 2.8rem;
	font-weight: 500;
	margin-bottom: 3.5rem;
}

.product-recommendation-content {
	font-size: 1.3rem;
	line-height: 1.5;
	margin-bottom: 2.5rem;
}

.product-recommendation-button {
	width: 100%;
	height: 3.4rem;
	background: var(--worq-orange);
	border-radius: 2rem;
	color: var(--white);
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 3.4rem;
	margin-bottom: 3rem;
	padding: 0 4rem;
	text-align: center;
}

.product-recommendation-img {
	width: 100%;
	height: 36rem;
	border-radius: 8px;
	object-fit: cover;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.product-recommendation-container {
		width: calc(100% - 6rem);
		gap: 4rem;
		margin: 0 3rem;
		margin-bottom: 10rem;
		padding: 3rem;
	}

	.product-recommendation-left,
	.product-recommendation-right {
		width: calc(50% - 2rem);
	}

	.product-recommendation-left-top {
		max-width: 40rem;
	}

	.product-recommendation-left-bottom {
		align-items: flex-end;
		align-content: flex-end;
	}

	.product-recommendation-question {
		margin-top: 3rem;
	}

	.product-recommendation-title {
		margin-bottom: 0;
	}

	.product-recommendation-content {
		font-size: 1.4rem;
	}

	.product-recommendation-img {
		margin-bottom: -5px;
	}

	.product-recommendation-button {
		width: auto;
		margin-bottom: 3.5rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.product-recommendation-container {
		width: calc(100% - 8rem);
		margin: 0 auto;
		margin-bottom: 10rem;
	}

	.product-recommendation-left {
		padding-left: 2rem;
	}

	.product-recommendation-title {
		font-size: 3.2rem;
	}

	.product-recommendation-img {
		height: 42rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.product-recommendation-button {
		height: 4.2rem;
		border-radius: 2.1rem;
		font-size: 1.4rem;
		line-height: 4.2rem;
		padding: 0 5rem;
	}
}


/* Product : Steps */
.product-steps-container {
	max-width: 112rem;
	margin-bottom: 8rem;
	padding: 0 2rem;
}

.product-steps-button {
	height: 3.4rem;
	background: var(--worq-orange);
	border-radius: 2rem;
	color: var(--white);
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 3.4rem;
	margin-bottom: 1rem;
	margin-right: 1rem;
	padding: 0 4rem;
	text-align: center;
}

.product-steps-box-container {
	width: 100%;
	border-top: 1px solid rgba(var(--grey-rgb), .2);
	margin-top: 3.5rem;
	padding-top: 3.5rem;
}

.product-steps-box {
	width: 100%;
	margin-bottom: 5rem;
}

.product-steps-box-number {
	font-size: 4.2rem;
	font-weight: 600;
}

.product-steps-box-title {
	font-size: 2rem;
	font-weight: 500;
	margin: 1.5rem 0;
}

.product-steps-box-content {
	color: var(--worq-grey);
	font-size: 1.3rem;
	line-height: 1.5;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.product-steps-container {
		margin-bottom: 12rem;
		padding: 0 3rem;
	}

	.product-steps-box-container {
		gap: 1.5rem;
		justify-content: space-between;
		margin-top: 5rem;
		padding-top: 5rem;
	}

	.product-steps-box {
		width: calc(33.33% - 1rem);
		max-width: 32rem;
		margin-bottom: 0;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.product-steps-box-number {
		font-size: 4.8rem;
	}

	.product-steps-box-content {
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.product-steps-button {
		height: 4.2rem;
		border-radius: 2.1rem;
		font-size: 1.4rem;
		line-height: 4.2rem;
		margin-right: 2.5rem;
		padding: 0 5rem;
	}
}


/* Product : Featured Locations */
.featured-location-title {
	color: var(--white);
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 2rem;
	margin-top: 5rem;
	padding: 0 2rem;
}

.swiper-featured-location-container {
	margin-bottom: 2rem;
}

.featured-location-slide {
	background: var(--worq-yellow);
	border-radius: 6px;
	overflow: hidden;
	padding: 0;
}

.featured-location-slide:before {
	width: 100%;
	height: 100%;
	background: rgba(var(--black-rgb), 0.25);
	content: '';
	display: block;
	left: 0;
	position: absolute;
	top: 0;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
	z-index: 0;
}

.featured-location-slide:hover::before {
	background: rgba(var(--black-rgb), 0.4);
}

.featured-location-slide-info-container {
	bottom: 0;
	left: 0;
	padding: 2.5rem;
	position: absolute;
	z-index: 1;
}

.featured-location-slide-name {
	color: var(--white);
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.featured-location-slide-address {
	color: var(--white);
	font-size: 1.4rem;
	line-height: 1.4;
	margin-bottom: 1rem;
}

.featured-location-slide-img-container img {
	width: 100%;
	height: 40rem;
	display: block;
	object-fit: cover;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.featured-location-title {
		padding: 0 3rem;
	}

	.featured-location-slide-img-container img {
		height: 48rem
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.featured-location-title {
		margin-bottom: 2.5rem;
		margin-top: 6.5rem;
	}

	.featured-location-slide-img-container img {
		height: 54rem
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.swiper-featured-location-container {
		margin-bottom: 3rem;
	}
}


/* Product : Membership */
.product-membership-container {
	max-width: 112rem;
	margin-bottom: 8rem;
	padding: 0 2rem;
}

.product-membership-box-container {
	width: 100%;
}

.product-membership-box {
	width: 100%;
	background: var(--worq-yellow);
	border-radius: 1rem;
	margin-bottom: 2rem;
	padding: 3.5rem 1.5rem;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.product-membership-box:hover {
	background: var(--worq-peach);
}

.product-membership-box-title {
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 1.5rem;
}

.product-membership-box-img {
	width: 100%;
	height: 20rem;
	border-radius: 6px;
	object-fit: cover;
}

.product-membership-box-content {
	color: var(--worq-grey);
	font-size: 1.2rem;
	line-height: 1.5;
	margin-bottom: 3rem;
	margin-top: 2rem;
}

.product-membership-box-from {
	color: var(--worq-grey);
	font-size: 1.1rem;
	margin-bottom: 2px;
	text-transform: uppercase;
}

.product-membership-box-price {
	font-size: 2rem;
	font-weight: 600;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.product-membership-container {
		margin-bottom: 10rem;
		padding: 0 3rem;
	}

	.product-membership-box-container {
		gap: 1.5rem;
		justify-content: space-between;
	}

	.product-membership-box {
		width: calc(33.33% - 1rem);
		max-width: 33.5rem;
		margin-bottom: 0;
	}

	.product-membership-box-from {
		font-size: 1.2rem;
	}

	.product-membership-box-price {
		font-size: 2.2rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.product-membership-container {
		margin-bottom: 12rem;
	}

	.product-membership-box {
		padding: 4rem 2rem;
	}

	.product-membership-box-title {
		font-size: 2.4rem;
		margin-bottom: 2rem;
	}

	.product-membership-box-content {
		font-size: 1.3rem;
	}
}


/* Product : Blog */
.product-blog-container {
	max-width: 112rem;
	margin-bottom: 5rem;
	margin-top: 3.5rem;
	padding: 0 2rem;
}

.latest-blog-post {
	width: 100%;
	margin-bottom: 5rem;
}

.latest-blog-post-img {
	width: 100%;
	height: 24rem;
	border-radius: 6px;
	object-fit: cover;
}

.latest-blog-post-title {
	font-size: 2rem;
	font-weight: 500;
	margin: 2rem 0 1.5rem;
}

.latest-blog-post-content {
	color: var(--worq-grey);
	font-size: 1.3rem;
	line-height: 1.5;
}

.product-blog-button {
	height: 3.4rem;
	background: transparent;
	border: 2px solid var(--grey);
	border-radius: 2rem;
	color: var(--grey);
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 3.2rem;
	margin: auto;
	margin-top: 5rem;
	padding: 0 4.5rem;
	text-align: center;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.product-blog-container {
		margin-bottom: 8rem;
		padding: 0 3rem;
	}

	.product-blog-post-container {
		gap: 1.5rem;
		justify-content: space-between;
	}

	.latest-blog-post {
		width: calc(33.33% - 1rem);
		max-width: 33.5rem;
		margin-bottom: 0;
	}

	.product-blog-button {
		margin-top: 6rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.latest-blog-post-content {
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.product-blog-button {
		height: 4.2rem;
		border-radius: 2.1rem;
		font-size: 1.4rem;
		line-height: 4rem;
		padding: 0 6rem;
	}
}


/* All Memberships : Title */
.outer-all-memberships-title-container {
	width: 100%;
	background: var(--worq-yellow);
	overflow: hidden;
	margin-bottom: 8rem;
	margin-top: 2rem;
}

.outer-all-memberships-title-container .product-why-container {
	margin-bottom: 5rem;
}

.all-memberships-title {
	width: 100%;
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 3rem;
	margin-top: 3.5rem;
}

.all-memberships-subtitle {
	width: 100%;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 8rem;
}

@media screen and (min-width: 30em) {

	/* 480px */
	.all-memberships-title {
		max-width: 48rem;
		font-size: 3.6rem;
		margin-top: 8rem;
	}

	.all-memberships-subtitle {
		max-width: 48rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.outer-all-memberships-title-container {
		margin-bottom: 10rem;
		margin-top: 1.2rem;
	}

	.outer-all-memberships-title-container .product-why-container {
		margin-bottom: 12rem;
	}

	.all-memberships-title {
		max-width: 58rem;
		font-size: 4.8rem;
		margin-top: 10rem;
	}

	.all-memberships-subtitle {
		max-width: 58rem;
		font-size: 1.6rem;
		margin-bottom: 12rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.outer-all-memberships-title-container {
		margin-top: 3.4rem;
	}

	.all-memberships-title {
		margin-top: 12rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.all-memberships-title {
		max-width: 68rem;
		font-size: 5.6rem;
	}

	.all-memberships-subtitle {
		max-width: 68rem;
		font-size: 1.8rem;
	}
}


/* Product : Recommendation */
.all-membership-recommendation-container {
	width: calc(100% - 4rem);
	max-width: 106rem;
	background: var(--worq-yellow);
	border-radius: 1.2rem;
	margin: 0 2rem;
	margin-bottom: 2rem;
	padding: 3rem 2rem;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.all-membership-recommendation-container:hover {
	background: var(--worq-peach);
}

.all-membership-recommendation-left,
.all-membership-recommendation-right,
.all-membership-recommendation-left-top,
.all-membership-recommendation-left-bottom {
	width: 100%;
}

.all-membership-recommendation-left-bottom {
	display: none;
}

.all-membership-recommendation-title {
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 1.5rem;
}

.all-membership-recommendation-content {
	color: var(--worq-grey);
	font-size: 1.2rem;
	line-height: 1.5;
	margin-bottom: 3rem;
	margin-top: 2rem;
}

.all-membership-recommendation-img {
	width: 100%;
	height: 36rem;
	border-radius: 8px;
	object-fit: cover;
}

.all-membership-recommendation-from {
	color: var(--worq-grey);
	font-size: 1.1rem;
	margin-bottom: 2px;
	text-transform: uppercase;
}

.all-membership-recommendation-price {
	font-size: 2rem;
	font-weight: 600;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.all-membership-recommendation-container {
		width: calc(100% - 6rem);
		gap: 4rem;
		margin: 0 3rem;
		margin-bottom: 2rem;
		padding: 3rem;
	}

	.all-membership-recommendation-left,
	.all-membership-recommendation-right {
		width: calc(50% - 2rem);
	}

	.all-membership-recommendation-left-top {
		max-width: 40rem;
	}

	.all-membership-recommendation-left-bottom {
		align-items: flex-end;
		align-content: flex-end;
		display: block;
		margin-bottom: 3rem;
	}

	.all-membership-recommendation-right .all-membership-recommendation-content,
	.all-membership-recommendation-right .all-membership-recommendation-price-container {
		display: none;
	}

	.all-membership-recommendation-title {
		font-size: 2.8rem;
		margin-bottom: 0;
		margin-top: 2rem;
	}

	.all-membership-recommendation-content {
		font-size: 1.4rem;
	}

	.all-membership-recommendation-img {
		margin-bottom: -5px;
	}

	.all-membership-recommendation-from {
		font-size: 1.2rem;
	}

	.all-membership-recommendation-price {
		font-size: 2.2rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.all-membership-recommendation-container {
		width: calc(100% - 8rem);
		margin: 0 auto;
		margin-bottom: 3rem;
	}

	.all-membership-recommendation-left {
		padding-left: 2rem;
	}

	.all-membership-recommendation-title {
		font-size: 3.2rem;
	}

	.all-membership-recommendation-content {
		font-size: 1.3rem;
	}

	.all-membership-recommendation-img {
		height: 42rem;
	}
}


/*  Product : Finder */
.membership-product-finder-container {
	width: 100%;
	border-radius: 1.5rem;
	margin-bottom: 5rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: -2.5rem;
	position: relative;
	z-index: 0;
}

.membership-product-finder-container:before {
	width: 100%;
	height: 10rem;
	background: var(--worq-navy);
	border-radius: 1.5rem;
	content: '';
	display: block;
	left: 0;
	opacity: .9;
	position: absolute;
	top: -1rem;
}

.membership-product-finder-container-title {
	font-size: 2.8rem;
	font-weight: 600;
	margin-top: 5rem;
	text-align: center;
}

.membership-product-finder {
	width: 100%;
	height: fit-content;
	min-height: 40rem;
	background: var(--worq-yellow);
	border-radius: 1.5rem;
	padding: 0 2rem;
	position: relative;
}

@media screen and (min-width: 22.5em) {

	/* 360px */
	.membership-product-finder-container-title {
		font-size: 3.2rem;
	}
}

@media screen and (min-width: 30em) {

	/* 480px */
	.membership-product-finder-container-title {
		font-size: 3.5rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.membership-product-finder-container-title {
		font-size: 3.8rem;
		margin-bottom: 6rem;
		margin-top: 6rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.membership-product-finder-container-title {
		font-size: 4.8rem;
		margin-bottom: 8rem;
		margin-top: 8rem;
	}
}

/* Product : Finder Top */
.membership-product-finder-top {
	width: 100%;
	margin: 5.5rem 0 0;
	padding-bottom: 1.5rem;
}

.membership-product-finder-top-column {
	width: 100%;
}

.membership-product-finder-top-column-category-title {
	width: 100%;
	color: var(--worq-grey);
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 2rem;
	text-transform: uppercase;
}

.membership-product-finder-top-column-title {
	width: 100%;
	color: rgba(var(--grey-rgb), 0.75);
	font-family: 'PT Sans Caption', Helvetica, Arial, sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.membership-product-finder-top-column:not(:last-child) {
	margin-bottom: 3rem;
}

.membership-product-finder-top-column ul {
	-moz-column-count: 2;
	-moz-column-gap: 1rem;
	-webkit-column-count: 2;
	-webkit-column-gap: 1rem;
	column-count: 2;
	column-gap: 1rem;
	margin-bottom: 0;
}

.membership-product-finder-top-column li {
	font-size: 1.3rem;
	line-height: 1.2;
	margin-bottom: 1.8rem;
}

.membership-product-finder-top-column li a {
	display: inline-block;
	position: relative;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.membership-product-finder-top-column li:hover a,
.membership-product-finder-top-column li.highlight {
	color: var(--worq-orange);
}

.membership-product-finder-top-column li a:before {
	width: 0;
	height: 1px;
	background: var(--worq-orange);
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	position: absolute;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.membership-product-finder-top-column li:hover a:before,
.membership-product-finder-top-column li.highlight a:before {
	width: 100%;
}

@media screen and (min-width: 36.25em) {

	/* 580px */
	.membership-product-finder-top-column-category-title {
		display: none;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.membership-product-finder-container {
		margin-bottom: 8rem;
	}

	.membership-product-finder-top-column {
		width: 50%;
	}

	.membership-product-finder-top-column:last-child ul {
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.membership-product-finder-top-column ul {
		-moz-column-count: 3;
		-webkit-column-count: 3;
		column-count: 3;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.membership-product-finder-container {
		margin-bottom: 10rem;
	}
}

/* Product : Finder Bottom */
.membership-product-finder-bottom {
	height: auto;
	border-top: 1px solid rgba(var(--grey-rgb), 0.4);
	margin-bottom: 4rem;
	padding-top: 3.5rem;
}

.membership-product-finder-bottom-left {
	width: 100%;
	order: 2;
}

.membership-product-finder-bottom-right {
	width: 100%;
	order: 1;
	margin-bottom: 1rem;
}

.membership-product-finder-bottom-right img {
	width: 100%;
	height: 16rem;
	border: 7px solid var(--white);
	display: block;
	object-fit: cover;
	margin-bottom: 1rem;
}

.membership-product-finder-subcategory {
	margin-bottom: 0;
}

.membership-product-finder-subcategory li {
	height: 2.4rem;
	background: rgba(var(--white-rgb), 0.5);
	border-radius: 1.2rem;
	color: var(--grey);
	cursor: pointer;
	font-size: 1.2rem;
	margin-bottom: 8px;
	margin-right: 8px;
	padding: 0 1.2rem;
}

.membership-product-finder-subcategory li:hover {
	background: rgba(var(--white-rgb), 0.8);
}

.membership-product-finder-subcategory li.highlight {
	background: var(--worq-peach);
	color: var(--worq-navy);
	font-weight: 600;
}

.membership-product-finder-title {
	display: inline-block;
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 8px;
	margin-top: 1rem;
}

.membership-product-finder-location {
	font-family: 'PT Sans Caption', Helvetica, Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: 400;
	margin-bottom: 2.5rem;
}

.membership-product-finder-status {
	display: inline-block;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	vertical-align: top;
	margin-top: 15px;
	margin-left: 0.5rem;
	padding: 2px 8px;
	text-transform: uppercase;
	border: #faae7b solid 1px;
	border-radius: 20px;
}

.membership-product-finder-status:empty {
	display: none;
}

.for-event i {
	width: 100%;
	display: block;
	font-size: 1.1rem;
	font-weight: 100;
	margin-bottom: 0;
}

.membership-product-finder-event-info {
	width: 100%;
	border-bottom: 1px solid rgba(var(--grey-rgb), .2);
	margin-bottom: 1.5rem;
}

.membership-product-finder-cluster,
.membership-product-finder-classroom,
.membership-product-finder-theatre {
	width: 33.33%;
}

.membership-product-finder-cluster,
.membership-product-finder-classroom,
.membership-product-finder-theatre,
.membership-product-finder-price {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.membership-product-finder-button {
	height: 3.4rem;
	background: var(--worq-orange);
	border-radius: 2rem;
	color: var(--white);
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 3.4rem;
	margin-bottom: 1rem;
	margin-right: 1rem;
	margin-top: 2rem;
	padding: 0 1.6rem;
}

.membership-product-finder-link {
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.2rem;
	font-weight: 500;
	opacity: .5;
	overflow: hidden;
	padding-right: 2.4rem;
	position: relative;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	vertical-align: middle;
}

.membership-product-finder-link:hover {
	color: var(--worq-orange);
	opacity: 1;
}

.membership-product-finder-link .finder-link-arrow {
	width: 4.6rem;
	height: 1.8rem;
	display: inline-block;
	position: absolute;
	right: -1.4rem;
	top: 0;
	-webkit-transform: rotate(-45deg) translateX(-25%);
	transform: rotate(-45deg) translateX(-25%);
	-webkit-transition: -webkit-transform .2s ease;
	transition: -webkit-transform .2s ease;
	transition: transform .2s ease;
	vertical-align: middle;
}

.membership-product-finder-link:hover .finder-link-arrow {
	-webkit-transform: rotate(-45deg) translateX(35%);
	transform: rotate(-45deg) translateX(35%);
}

.membership-product-finder-link svg {
	width: 1.8rem;
	height: 1.8rem;
	display: inline-block;
	fill: var(--worq-orange);
	margin-right: 1rem;
}

.membership-product-finder-link svg:last-child {
	fill: var(--worq-black);
	margin-right: 0;
}

@media screen and (min-width: 22.5em) {

	/* 360px */
	.membership-product-finder-bottom-right img {
		height: 20rem;
	}
}

@media screen and (min-width: 30em) {

	/* 480px */
	.membership-product-finder-bottom-right img {
		height: 24rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.membership-product-finder-bottom-left,
	.membership-product-finder-bottom-right {
		width: 50%;
	}

	.membership-product-finder-bottom-left {
		order: 1;
		padding-right: 1.5rem;
	}

	.membership-product-finder-location {
		margin-bottom: 5rem;
	}

	.membership-product-finder-price {
		margin-bottom: 2rem;
	}

	.membership-product-finder-bottom-right {
		order: 2;
	}

	.membership-product-finder-bottom-right img {
		height: 32rem;
		margin-bottom: 0;
	}
}

@media screen and (min-width: 52.5em) {

	/* 840px */
	.membership-product-finder-bottom-left {
		width: 45%;
	}

	.membership-product-finder-bottom-right {
		width: 55%;
	}
}

@media screen and (min-width: 60em) {

	/* 960px */
	.membership-product-finder {
		padding: 0 5rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.membership-product-finder {
		padding: 0 8rem;
	}

	.membership-product-finder-top-column-title {
		font-size: 1.5rem;
		margin-bottom: 2rem;
	}

	.membership-product-finder-top-column li {
		font-size: 1.4rem;
	}

	.membership-product-finder-bottom-left {
		width: 40%;
	}

	.membership-product-finder-bottom-right {
		width: 60%;
	}

	.membership-product-finder-subcategory li {
		height: 3rem;
		border-radius: 1.5rem;
		font-size: 1.3rem;
		line-height: 3rem;
		margin-bottom: 1rem;
		margin-right: 1rem;
		padding: 0 1.8rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.membership-product-finder-top,
	.membership-product-finder-bottom {
		padding-left: 5rem;
		padding-right: 5rem;
	}

	.membership-product-finder-top {
		margin-top: 6.5rem;
	}

	.membership-product-finder-title {
		font-size: 3.2rem;
		margin-bottom: 1.2rem;
	}

	.membership-product-finder-location {
		font-size: 1.5rem;
	}

	.membership-product-finder-price {
		font-size: 1.8rem;
	}

	.membership-product-finder-button {
		height: 4.2rem;
		border-radius: 2.1rem;
		font-size: 1.4rem;
		line-height: 4.2rem;
		margin-right: 2.5rem;
		padding: 0 2.4rem;
	}

	.membership-product-finder-link {
		font-size: 1.3rem;
	}

	.membership-product-finder-bottom-right img {
		height: 36rem;
	}
}


/* All Memberships : Products */
.product-membership-box-stats-container {
	justify-content: space-between;
}

.product-membership-box-pax-container {
	text-align: right;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.all-memberships-products-in-two {
		max-width: 51.5rem;
		width: calc(50% - .75rem);
	}

	.all-memberships-products-in-two .product-membership-box-img {
		height: 28rem;
	}
}


/* All Memberships : All Locations */
.outer-all-locations-container {
	width: 100%;
	background: var(--worq-grey);
	overflow: hidden;
	padding-bottom: 5rem;
	padding-top: 1rem;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.outer-all-locations-container {
		padding-bottom: 6rem;
		padding-top: 2rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.outer-all-locations-container {
		padding-bottom: 8rem;
	}
}


/* All FAQs : Title */
.all-faqs-title-container {
	overflow-x: hidden;
	padding-bottom: 3.5rem;
	padding-top: 3.5rem;
	position: relative;
}

.all-faqs-subtitle {
	width: 100%;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.5;
}

.all-faqs-title {
	width: 100%;
	font-size: 3.6rem;
	font-weight: 700;
	margin-bottom: 3rem;
}

.all-faqs-description {
	max-width: 36rem;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.75;
}

.all-faqs-img {
	width: 70rem;
	height: calc(100% - 6rem);
	display: none;
	border-radius: 18rem;
	object-fit: cover;
	position: absolute;
	right: 0;
	-webkit-transform: translateX(46%);
	transform: translateX(46%);
	top: 3rem;
	z-index: -1;
}

.all-faqs-search-box-container {
	width: 100%;
	padding-top: 2.5rem;
}

.all-faqs-search-box {
	width: 100%;
	height: 5rem;
	max-width: 36rem;
	border: 2px solid var(--worq-orange);
	border-radius: 1rem;
	font-size: 1.3rem;
	padding: 1rem;
}

@media screen and (min-width: 30em) {

	/* 480px */
	.all-faqs-title-container {
		padding-bottom: 5rem;
		padding-top: 5rem;
	}

	.all-faqs-subtitle {
		font-size: 1.4rem;
	}

	.all-faqs-title {
		font-size: 3.8rem;
	}

	.all-faqs-description {
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.all-faqs-title-container {
		padding-bottom: 8rem;
		padding-top: 8rem;
	}

	.all-faqs-subtitle {
		width: 25%;
		font-size: 1.5rem;
	}

	.all-faqs-title {
		font-size: 4.2rem;
	}

	.all-faqs-img {
		display: block;
	}
}

@media screen and (min-width: 52.5em) {

	/* 840px */
	.all-faqs-description {
		max-width: 48rem;
	}

	.all-faqs-img {
		-webkit-transform: translateX(55%);
		transform: translateX(55%);
	}
}

@media screen and (min-width: 60em) {

	/* 960px */
	.all-faqs-img {
		-webkit-transform: translateX(35%);
		transform: translateX(35%);
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.all-faqs-title-container {
		overflow-x: visible;
	}

	.all-faqs-subtitle {
		font-size: 1.6rem;
	}

	.all-faqs-title {
		font-size: 4.8rem;
	}

	.all-faqs-img {
		width: 80rem;
	}

	.all-faqs-search-box {
		max-width: 40rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.all-faqs-title {
		font-size: 5.2rem;
		margin-bottom: 3.5rem;
	}

	.all-faqs-img {
		width: 90rem;
		-webkit-transform: translateX(40%);
		transform: translateX(40%);
	}
}

/* All FAQs : Content */
.outer-all-faqs-title-container {
	width: 100%;
	background: var(--worq-yellow);
	overflow: hidden;
	margin-bottom: 8rem;
	margin-top: 2rem;
	padding-bottom: 8rem;
	padding-top: 5px;
}

.outer-all-faqs-title-container .section-container-title span:first-child {
	color: var(--worq-navy);
	margin-top: 5rem;
}

.all-faqs-container {
	max-width: 112rem;
	padding: 0 2rem;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.outer-all-faqs-title-container {
		margin-bottom: 10rem;
		margin-top: 1.2rem;
		padding-bottom: 10rem;
		padding-top: 2rem;
	}

	.all-faqs-container {
		padding: 0 3rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.outer-all-faqs-title-container {
		margin-top: 3.4rem;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.outer-all-faqs-title-container .section-container-title span:first-child {
		margin-top: 8rem;
	}
}


/* All Access : Steps */
.all-access-steps-container {
	max-width: 112rem;
	margin-bottom: 8rem;
	margin-top: 2.5rem;
	padding: 0 2rem;
	position: relative;
}

.all-access-steps-number {
	width: 100%;
	justify-content: space-around;
	margin-bottom: 1.5rem;
}

.all-access-steps-one,
.all-access-steps-two,
.all-access-steps-three,
.all-access-steps-four {
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background: var(--worq-yellow);
	position: relative;
}

.all-access-steps-one span,
.all-access-steps-two span,
.all-access-steps-three span,
.all-access-steps-four span {
	width: 5rem;
	height: 5rem;
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 2rem;
	font-weight: 500;
	line-height: 5rem;
	position: relative;
	text-align: center;
	z-index: 3;
}

.all-access-steps-one-content,
.all-access-steps-two-content,
.all-access-steps-three-content,
.all-access-steps-four-content {
	width: 25%;
	padding: 0 1rem;
}

.all-access-steps-content sub {
	display: inline-block;
	font-size: 90%;
	font-weight: 600;
	padding-top: 1.5rem;
}

.all-access-steps-one-line,
.all-access-steps-two-line,
.all-access-steps-three-line {
	width: 22%;
	height: 2px;
	background: var(--worq-yellow);
	left: 15%;
	position: absolute;
	top: 2.5rem;
	z-index: -1;
}

.all-access-steps-two-line {
	left: 40%;
}

.all-access-steps-three-line {
	left: 62%;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.all-access-steps-container {
		margin-bottom: 12rem;
		margin-top: 5rem;
		padding: 0 3rem;
	}

	.all-access-steps-number {
		margin-bottom: 2rem;
	}

	.all-access-steps-one,
	.all-access-steps-two,
	.all-access-steps-three,
	.all-access-steps-four {
		width: 6rem;
		height: 6rem;
	}

	.all-access-steps-one span,
	.all-access-steps-two span,
	.all-access-steps-three span,
	.all-access-steps-four span {
		width: 6rem;
		height: 6rem;
		font-size: 2.2rem;
		line-height: 6rem;
	}

	.all-access-steps-one-content,
	.all-access-steps-two-content,
	.all-access-steps-three-content,
	.all-access-steps-four-content {
		padding: 0 2rem;
		padding-left: 4rem;
	}

	.all-access-steps-one-line,
	.all-access-steps-two-line,
	.all-access-steps-three-line {
		top: 3rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.all-access-steps-number {
		margin-bottom: 2.5rem;
	}

	.all-access-steps-one,
	.all-access-steps-two,
	.all-access-steps-three,
	.all-access-steps-four {
		width: 7rem;
		height: 7rem;
	}

	.all-access-steps-one span,
	.all-access-steps-two span,
	.all-access-steps-three span,
	.all-access-steps-four span {
		width: 7rem;
		height: 7rem;
		font-size: 2.4rem;
		line-height: 7rem;
	}

	.all-access-steps-one-line,
	.all-access-steps-two-line,
	.all-access-steps-three-line {
		top: 3.5rem;
	}
}

/* All Access : Steps Animation */
.all-access-steps-one:before,
.all-access-steps-two:before,
.all-access-steps-three:before,
.all-access-steps-four:before {
	width: 0;
	height: 0;
	animation: step-one 5s infinite;
	background: var(--worq-peach);
	border-radius: 50%;
	content: '';
	display: block;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	position: absolute;
	z-index: 1;
}

@keyframes step-one {
	0% {
		width: 0;
		height: 0;
	}

	20% {
		width: 100%;
		height: 100%;
	}

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

.all-access-steps-two:before {
	animation: step-two 5s infinite;
}

@keyframes step-two {
	0% {
		width: 0;
		height: 0;
	}

	20% {
		width: 0;
		height: 0;
	}

	40% {
		width: 100%;
		height: 100%;
	}

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

.all-access-steps-three:before {
	animation: step-three 5s infinite;
}

@keyframes step-three {
	40% {
		width: 0;
		height: 0;
	}

	60% {
		width: 100%;
		height: 100%;
	}

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

.all-access-steps-four:before {
	animation: step-four 5s infinite;
}

@keyframes step-four {
	60% {
		width: 0;
		height: 0;
	}

	80% {
		width: 100%;
		height: 100%;
	}

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

.all-access-steps-one-line:before,
.all-access-steps-two-line:before,
.all-access-steps-three-line:before {
	width: 1rem;
	height: 2px;
	animation: step-line-one 5s infinite;
	background: var(--worq-peach);
	content: '';
	display: block;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	position: absolute;
	z-index: 1;
}

@keyframes step-line-one {
	5% {
		width: 0;
		height: 0;
	}

	25% {
		width: 100%;
		height: 100%;
	}

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

.all-access-steps-two-line:before {
	animation: step-line-two 5s infinite;
}

@keyframes step-line-two {
	25% {
		width: 0;
		height: 0;
	}

	45% {
		width: 100%;
		height: 100%;
	}

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

.all-access-steps-three-line:before {
	animation: step-line-three 5s infinite;
}

@keyframes step-line-three {
	45% {
		width: 0;
		height: 0;
	}

	65% {
		width: 100%;
		height: 100%;
	}

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

/* All Access : Comparison Table */
.all-access-comparison-table-container {
	max-width: 112rem;
	margin-bottom: 8rem;
	margin-top: 2.5rem;
	padding: 0 2rem;
	position: relative;
}

.all-access-comparison-table {
	width: 100%;
	background: var(--off-white);
	border-radius: 1.2rem;
	margin-bottom: 1rem;
	padding: 4rem 2rem;
	position: relative;
}

.comparison-table-two {
	background: rgba(var(--orange-rgb), 0.9);
}

.comparison-table-title {
	width: 10rem;
	height: 3.6rem;
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	background: rgba(var(--grey-rgb), 0.2);
	border-radius: 1.8rem;
	color: var(--worq-navy);
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 3.6rem;
	text-align: center;
}

.comparison-table-two .comparison-table-title {
	width: 12rem;
	background: var(--worq-red);
	color: var(--white);
}

.comparison-table-price {
	font-size: 4.2rem;
	vertical-align: middle;
}

.comparison-table-two .comparison-table-price {
	color: var(--white);
}

.comparison-table-price span {
	font-size: 1.4rem;
	vertical-align: baseline;
}

.comparison-table-button {
	width: 100%;
	height: 3.4rem;
	background: var(--worq-orange);
	border-radius: 2rem;
	color: var(--white);
	display: inline-block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 3.4rem;
	margin-bottom: 1rem;
	margin-right: 1rem;
	margin-top: 3rem;
	padding: 0 2.4rem;
	text-align: center;
}

.comparison-table-two .comparison-table-button {
	background: var(--worq-red);
}

.worq-email-copy-img {
	width: 1.8rem;
	height: 1.8rem;
	margin-left: 1rem;
	vertical-align: middle;
}

.comparison-table-list {
	margin-bottom: 0;
	margin-top: 2rem;
}

.comparison-table-list li {
	margin-bottom: 1.5rem;
	margin-left: 3.5rem;
}

.comparison-table-list li:before {
	width: 2.4rem;
	height: 2.4rem;
	background: url('worq-icons/tick.svg');
	background-color: var(--worq-yellow);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 1.1rem;
	border-radius: 1.2rem;
	content: '';
	display: block;
	left: -3.5rem;
	position: absolute;
	top: 0;
	vertical-align: middle;
}

.comparison-table-two .comparison-table-list li:before {
	background: url('worq-icons/tick-white.svg');
	background-color: var(--worq-red);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 1.1rem;
	border-radius: 1.2rem;
}

.comparison-table-asterisk {
	display: inline-block;
	font-size: 90%;
	line-height: 1.6;
	margin-top: 1.5rem;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.all-access-comparison-table-container {
		gap: 1rem;
		margin-bottom: 12rem;
		margin-top: 5rem;
		padding: 0 3rem;
	}

	.all-access-comparison-table {
		width: calc(50% - 5px);
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.all-access-comparison-table {
		padding: 5rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.comparison-table-button {
		height: 4.2rem;
		border-radius: 2.1rem;
		font-size: 1.4rem;
		line-height: 4.2rem;
		margin-right: 2.5rem;
		padding: 0 3.6rem;
	}
}


/* Flex Desk : Key Benefits */
.flex-desk-key-benefits-container {
	max-width: 112rem;
	margin-bottom: 8rem;
	padding: 0 2rem;
}

.key-benefits-box-container {
	gap: 1rem;
}

.key-benefits-box {
	width: 100%;
	align-content: flex-start;
	background: var(--worq-yellow);
	border-radius: 8px;
	padding: 1.5rem;
}

.key-benefits-box svg {
	width: 6rem;
	height: 6rem;
	margin-bottom: 1.5rem;
	object-fit: contain;
	opacity: .7;
}

.key-benefits-box-title {
	width: 100%;
	color: var(--worq-grey);
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 2rem;
}

.key-benefits-box-description {
	width: 100%;
	color: var(--worq-navy);
	font-size: 1.2rem;
	line-height: 1.5;
	margin-bottom: 1rem;
}

@media screen and (min-width: 30em) {

	/* 480px */
	.key-benefits-box {
		padding: 2.5rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.flex-desk-key-benefits-container {
		margin-bottom: 12rem;
		padding: 0 3rem;
	}

	.key-benefits-box {
		width: calc(33.33% - 7px);
		padding: 3rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.key-benefits-box svg {
		width: 7rem;
		height: 7rem;
		margin-bottom: 2.5rem;
	}

	.key-benefits-box-title {
		font-size: 1.8rem;
	}

	.key-benefits-box-description {
		font-size: 1.3rem;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.key-benefits-box-title {
		font-size: 2rem;
	}

	.key-benefits-box-description {
		font-size: 1.4rem;
	}
}


/* Flex Desk : Table */
.flex-desk-comparison-table-container {
	max-width: 144rem;
	margin-bottom: 8rem;
	padding: 0 2rem;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.flex-desk-comparison-table {
		width: 100%;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.flex-desk-comparison-table {
		width: calc(33.33% - 7px);
	}
}


/* Flex Desk : Scenarion Illustrations */
.flex-desk-scenario-container {
	max-width: 112rem;
	margin-bottom: 8rem;
	padding: 0 2rem;
}

.flex-desk-scenario:not(:last-child) {
	margin-bottom: 5rem;
}

.flex-desk-scenario-left,
.flex-desk-scenario-right {
	width: 100%;
}

.flex-desk-scenario-left {
	margin-bottom: 2rem;
}

.flex-desk-scenario-title {
	font-size: 1.4rem;
	font-weight: 800;
	margin-bottom: 1rem;
}

.flex-desk-scenario-content {
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 1rem;
}

.flex-desk-scenario-content .highlight {
	color: var(--worq-orange);
}

.flex-desk-scenario-calculation {
	color: var(--worq-grey);
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.flex-desk-scenario-asterisk {
	color: var(--worq-grey);
	font-size: 1.1rem;
}

.flex-desk-scenario-right img {
	width: 100%;
	object-fit: contain;
}

@media screen and (min-width: 36.25em) {

	/* 580px */
	.flex-desk-scenario-left,
	.flex-desk-scenario-right {
		width: 50%;
	}

	.flex-desk-scenario-left {
		align-self: center;
		padding-right: 5rem;
	}
}

@media screen and (min-width: 48em) {

	/* 768px */
	.flex-desk-scenario-container {
		margin-bottom: 12rem;
		padding: 0 3rem;
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.flex-desk-scenario-title {
		font-size: 1.6rem;
		margin-bottom: 2rem;
	}

	.flex-desk-scenario-content {
		font-size: 3.2rem;
		margin-bottom: 2rem;
	}

	.flex-desk-scenario-calculation {
		font-size: 2rem;
	}

	.flex-desk-scenario-asterisk {
		font-size: 1.2rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.flex-desk-scenario:not(:last-child) {
		margin-bottom: 8rem;
	}

	.flex-desk-scenario-title {
		font-size: 1.8rem;
		margin-bottom: 2.5rem;
	}

	.flex-desk-scenario-content {
		font-size: 3.6rem;
		margin-bottom: 2.5rem;
	}

	.flex-desk-scenario-calculation {
		font-size: 2.2rem;
		margin-bottom: 1.5rem;
	}

	.flex-desk-scenario-asterisk {
		font-size: 1.3rem;
	}
}


/* Contact : Book A Tour, Steps */
.swiper-steps-container {
	margin-bottom: 5rem;
	margin-top: 0;
	padding-bottom: 3rem;
}

.contact-steps-slide.swiper-slide {
	height: 15rem;
	background: var(--worq-yellow);
	border-radius: 8px;
	opacity: .5;
	padding: 3rem 4rem;
}

.contact-steps-slide.swiper-slide-active {
	opacity: 1;
}

.contact-steps-slide-title {
	color: var(--worq-blue);
	font-size: 4rem;
	margin-bottom: 5px;
}

.contact-steps-slide-content {
	color: var(--worq-orange);
}

.contact-steps-slide.swiper-slide-active .contact-steps-slide-content {
	color: var(--worq-navy);
}

.contact-us .swiper-steps-pagination.swiper-pagination-bullets {
	bottom: 0;
	z-index: 2;
}

.swiper-steps-container .swiper-pagination-bullet {
	width: 10%;
	max-width: 4rem;
	min-width: 3rem;
	height: 3px;
	background-color: var(--worq-navy);
	border-radius: 0;
	cursor: pointer;
	opacity: 1;
	position: relative;
	z-index: 1;
}

.swiper-steps-container .swiper-pagination-bullet-active:before {
	width: 100%;
	height: 100%;
	animation-name: stepsProgress;
	animation-duration: 2.9s;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	animation-direction: alternate;
	animation-fill-mode: forwards;
	background-color: var(--worq-orange);
	content: '';
	left: 0;
	position: absolute;
	top: 0;
	z-index: 2;
}

@keyframes stepsProgress {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
	}
}

.swiper-steps-container .swiper-button-next,
.swiper-steps-container .swiper-button-prev {
	width: 5rem;
	height: 5rem;
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	background: rgba(var(--white-rgb), 0.3);
	border-radius: 2.5rem;
	display: none;
	margin-top: -2rem;
}

.swiper-steps-container .swiper-button-next:after,
.swiper-steps-container .swiper-button-prev:after {
	color: var(--worq-blue);
	font-size: 3rem;
}

.swiper-steps-container .swiper-button-next.swiper-button-disabled,
.swiper-steps-container .swiper-button-prev.swiper-button-disabled {
	opacity: 0;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.swiper-steps-container {
		margin-top: 1rem;
	}

	.swiper-steps-container .swiper-button-next,
	.swiper-steps-container .swiper-button-prev {
		display: flex;
	}
}

@media screen and (min-width: 90em) {

	/* 1440px */
	.swiper-steps-container .swiper-button-next,
	.swiper-steps-container .swiper-button-prev {
		width: 6rem;
		height: 6rem;
		border-radius: 3rem;
		margin-top: -3.5rem;
	}

	.swiper-steps-container .swiper-button-next:after,
	.swiper-steps-container .swiper-button-prev:after {
		font-size: 3.2rem;
	}
}


/* Contact : Book A Tour, Form */
.contact-forms-container {
	max-width: 112rem;
	padding: 4rem;
	color: rgb(75 85 99);
	background: white;
	border-radius: 1rem;

}

.contact-forms-container form {
	flex-flow: column;
}

.contact-forms-container form,
.contact-forms-container fieldset,
.contact-forms-container .hs-form-field {
	width: 100%;
	max-width: none;
	margin-bottom: 1rem;
}

.contact-forms-container .hs-form-field label {
	font-size: 1.4rem;
	font-weight: 600;
}

.contact-forms-container .hs-form-field .input input,
.contact-forms-container .hs-form-field .input select {
	width: 100%;
	border: 0;
	border-bottom: 1px dashed rgba(var(--grey-rgb), .5);
	font-size: 1.4rem;
	outline: none;
	padding: 2px 1rem;
	background: none;
}

.contact-forms-container .hs-form-field .input .hs-input {
	width: 100%;
}

.contact-forms-container .hs-form-field .input .hs-fieldtype-intl-phone {
	width: 100%;
	padding-left: 1rem;
}

.contact-forms-container .hs-form-field .input .hs-fieldtype-intl-phone select {
	border-bottom: 0;
	padding: 0;
}

.contact-forms-container .from-columns-3 {
	display: none;
}

.contact-forms-container form fieldset ul,
.contact-forms-container form .hs-error-msgs,
.contact-forms-container form .hs-error-msgs li {
	margin-bottom: 0;
}

.contact-forms-container form fieldset ul li {
	line-height: 1.8;
	margin-bottom: 1rem;
}

.contact-forms-container form fieldset ul.inputs-list input {
	width: 2rem !important;
	height: 2rem;
	left: 0;
	position: absolute;
	top: -2px;
}

.contact-forms-container form fieldset ul span {
	display: inline-block;
	font-size: 1.3rem;
	font-weight: 400;
	margin-left: 3.2rem;
	position: relative;
}

form .hs-submit input {
	height: 4rem;
	background: rgb(234 88 12);
	border-radius: 2rem;
	display: block;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-weight: 600;
	margin-top: 1.5rem;
	padding: .5rem 2.5rem;
	text-transform: capitalize;
	color: white;
}

form .hs-submit input:hover {
	background: var(--worq-peach);
	color: var(--worq-black);
	cursor: pointer;
}

form .hs-error-msg,
form .hs-error-msgs label {
	color: var(--worq-red);
	font-size: 1.1rem;
	font-weight: 400;
	text-decoration: underline;
}

.hs-more_info {
	display: none;
}

.hs_no__of_pax,
.hs_expected_move_in_date,
.hs_contact_tenure,
.hs_contact_remark,
.book-a-meeting-room .hs-dependent-field .hs-form-field:nth-child(2),
.book-a-meeting-room .hs-dependent-field .hs-form-field:nth-child(3),
.book-a-meeting-room .hs-dependent-field .hs-form-field:nth-child(4),
.book-a-meeting-room .hs-dependent-field .hs-form-field:nth-child(5),
.book-a-meeting-room .hs-dependent-field .hs-form-field:nth-child(6),
.book-a-meeting-room .hs-dependent-field .hs-form-field:nth-child(7),
.hs_number_of_guest,
.hs_event_preferred_date,
.hs_event_preferred_time,
.hs_seating_arrangement,
.hs_event_arrangement_add_on {
	margin-bottom: 2rem;
}

.contact-us .form-columns-1 .hs_contact_remark .hs-fieldtype-textarea {
	width: 100%;
	height: 100%;
	max-height: 40rem;
	min-height: 10rem;
	border-radius: 5px;
	border: 1px dashed rgba(var(--grey-rgb), .5);
	padding: 1rem 1.5rem;
}

.hs_error_rollup {
	width: 100%;
	display: block;
	margin-top: 1rem;
}

@media screen and (min-width: 48em) {
	/* 768px */
	/* .contact-forms-container {
		margin-bottom: 12rem;
		padding: 0 3rem;
	} */
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.contact-us .contact-forms-container form {
		gap: 1.6rem;
	}

	.contact-us .contact-forms-container fieldset {
		width: calc(50% - 8px);
	}

	.contact-us .contact-forms-container fieldset.form-columns-3 {
		display: none;
	}

	.contact-forms-container form fieldset:nth-child(6),
	.contact-forms-container form fieldset:nth-child(7),
	.contact-forms-container form fieldset:nth-child(8) {
		width: 100%;
	}

	.hs-dependent-field {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-flow: row wrap;
		flex-flow: row wrap;
		gap: 1.6rem;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;
	}

	.contact-us .contact-forms-container .hs-form-field.hs_company,
	.contact-us .contact-forms-container .hs-form-field.hs_no__of_pax,
	.get-a-business-address .hs_contact_remark,
	.book-a-meeting-room .hs-dependent-field .hs-form-field:nth-child(2),
	.book-a-meeting-room .hs-dependent-field .hs-form-field:nth-child(3),
	.host-an-event .hs-form-field.hs_number_of_guest {
		margin-top: 3rem;
	}

	.contact-us .contact-forms-container .hs-form-field.hs_company,
	.contact-us .contact-forms-container .hs-form-field.hs_no__of_pax,
	.contact-us .contact-forms-container .hs-form-field.hs_expected_move_in_date,
	.contact-us .contact-forms-container .hs-form-field.hs_contact_tenure,
	.contact-us .contact-forms-container .hs-form-field.hs_contact_remark,
	.book-a-meeting-room .hs-dependent-field .hs-form-field:nth-child(2),
	.book-a-meeting-room .hs-dependent-field .hs-form-field:nth-child(3),
	.book-a-meeting-room .hs-dependent-field .hs-form-field:nth-child(4),
	.book-a-meeting-room .hs-dependent-field .hs-form-field:nth-child(5),
	.book-a-meeting-room .hs-dependent-field .hs-form-field:nth-child(6),
	.book-a-meeting-room .hs-dependent-field .hs-form-field:nth-child(7),
	.host-an-event .hs-form-field.hs_number_of_guest,
	.host-an-event .hs-form-field.hs_event_preferred_date,
	.host-an-event .hs-form-field.hs_event_preferred_time,
	.host-an-event .hs-form-field.hs_seating_arrangement,
	.host-an-event .hs-form-field.hs_event_arrangement_add_on {
		width: calc(50% - 8px);
	}

	.contact-us form .hs-submit input {
		height: 5rem;
		border-radius: 2.5rem;
		margin-top: 2rem;
		padding: .5rem 4.5rem;
	}
}


/* Contact : Direct Info */
.contact-us-directly-container {
	max-width: 112rem;
	margin-bottom: 8rem;
	padding: 0 2rem;
}

.contact-us-directly-box {
	background-color: rgba(var(--grey-rgb), 0.125);
	border-radius: 1rem;
	margin-bottom: 1.5rem;
	margin-right: 1.5rem;
	padding: 3rem 3.5rem 3rem 2rem;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
}

.contact-us-directly-info {
	display: block;
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.contact-us-directly-info-title {
	color: var(--worq-grey);
	font-size: 1.2rem;
}

.contact-us-directly-box:hover {
	background-color: var(--worq-blue);
	box-shadow: 0 0 10px 100px var(--worq-blue) inset;
	color: var(--white);
	-webkit-text-fill-color: var(--white);
}

.contact-us-directly-address-box {
	width: 100%;
	margin-top: 2rem;
}

.contact-us-directly-address-box .company-name {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 5px;
}

.contact-us-directly-address-box .company-address {
	font-size: 1.3rem;
	line-height: 1.8;
	margin-top: 1.5rem;
}

.contact-us-directly-address-box {
	margin-top: 2rem;
}

@media screen and (min-width: 48em) {

	/* 768px */
	.contact-us-directly-container {
		margin-bottom: 10rem;
		padding: 0 3rem;
	}
}

@media screen and (min-width: 80em) {

	/* 1280px */
	.contact-us-directly-box {
		padding-right: 5rem;
	}
}


/* Marquee */
.announcement-marquee {
	width: 100%;
	height: 2.2rem;
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	background: #fff;
	background: rgba(var(--grey-rgb), 0.2);
	bottom: 0;
	color: var(--worq-blue);
	line-height: 2.2rem;
	left: 0;
	overflow: hidden;
	padding-bottom: 5px;
	position: fixed;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
	white-space: nowrap;
	z-index: 15;
}

.announcement-marquee.show {
	bottom: 6.6rem;
}

.announcement-marquee p {
	animation: marquee 15s linear infinite;
	display: inline-block;
	font-size: 1.1rem;
	font-weight: 600;
	padding-left: 100%;
	vertical-align: middle;
}

.announcement-marquee p a {
	text-decoration: underline;
}

@keyframes marquee {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(-100%, 0);
	}
}

@media screen and (min-width: 64em) {

	/* 1024px */
	.announcement-marquee {
		height: 3rem;
		line-height: 3rem;
	}

	.announcement-marquee.show {
		bottom: 0;
	}

	.announcement-marquee p {
		animation: marquee 25s linear infinite;
	}
}
















/* Media Queries */
.desktop-only {
	display: none;
}

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

}

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

}

@media screen and (min-width: 36.25em) {
	/* 580px */

}

@media screen and (min-width: 48em) {

	/* 768px */
	.mobile-only {
		display: none;
	}

	.desktop-only {
		display: block;
	}
}

@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 */

}
/* Evergreen promo */
.private-office-evergreen-promo .location li,
.private-office-evergreen-promo #consultation li {
	list-style: disc;
}

.private-office-evergreen-promo .swiper-slide {
	height: auto;
	max-height: 500px;
}

.private-office-evergreen-promo .photo-slide-container .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.swiper-button-next svg, .swiper-button-prev svg {
    display: none;
}
