
/*
Theme Name: [Nova6] QUBE
Author: Arvind Sardar
Description: Base Theme
License: GPLv2 License
License URI: https://wordpress.org/about/gpl/
Tags: scss, bootstrap, isotope, slickslide, git, blocks
Text Domain: nova
Version: 6
*/

/* » DEV CODE */
.debug {
	font-family: monospace;
	padding: 12px;
	border: solid gray 1px;
	border-radius: 5px;
	font-size: 12px;
	margin: 30px auto;
	background: #ecece1;
}

/* » Reset */

/* 1. Use a more-intuitive box-sizing model. */
*, *::before, *::after {
	box-sizing: border-box;
}

/* 2. Remove default margin */
* {
	margin: 0;
}

/* 3. Allow percentage-based heights in the application */
html, body {
	min-height: 100vh;
}

/* Typographic tweaks! 4. Add accessible line-height 5. Improve text rendering */
body {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
}

/* 7. Remove built-in form typography styles */
input, button, textarea, select {
	font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
}

/* 9. Create a root stacking context */
#root, #__next {
	isolation: isolate;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	transition: all .5s ease;
}

/*CLEARFIX*/
.clearfix:before, .clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

/* SECTION Layout Utilities */

/* » CSS Variables */
body {
	/* globals */
	
	/* --wp--style--global--content-size: 100%; */
	--site-margin: 50px;
	--header-block-height: 90px;
	--radius--none: 0;
	--radius--xs: 4px;
	--radius--sm: 8px;
	--radius--md: 12px;
	--radius--lg: 24px;
	--radius--lg: 48px;
	--space--xs: clamp(12px, 10.545px + .455vw, 16px);
	--space--sm: clamp(12px, 4.727px + 2.273vw, 32px);
	--space--md: clamp(24px, 9.455px + 4.545vw, 64px);
	--space--lg: clamp(36px, 14.182px + 6.818vw, 96px);
	--space--xl: clamp(36px, 2.545px + 10.455vw, 128px);
	--space--mega: clamp(36px, -20.727px + 17.727vw, 192px);
	--wp--preset--font-size--medium: 26px;
}

/* > 1300px */
@media only screen and (min-width: 1300px) {
	body {
		--wp--style--global--content-size: 1200px;
	}
}

/* < 1300px */
@media only screen and (max-width: 1299px) {
	body {
		--wp--style--global--content-size: 100%;
	}
}

/* small screens */
@media only screen and (max-width: 992px) {
	body {
		--wp--style--global--content-size: 100%;
		--site-margin: 20px;
	}
}

/* » remove margins & padding */
.mt0 {
	margin-top: 0 !important;
}

.mb0 {
	margin-bottom: 0 !important;
}

.pt0 {
	padding-top: 0 !important;
}

.pb0 {
	padding-bottom: 0 !important;
}

.mt5 {
	margin-top: 5px !important;
}

/* » hiders */
@media only screen and (min-width: 992px) {
	.hide-desktop {
		display: none !important;
	}
}

@media only screen and (max-width: 991px) {
	.hide-mobile {
		display: none !important;
	}
}

/* » Block Layouts */
body .entry-header > :where(:not(.alignleft):not(.alignright):not(.alignfull):not(.alignwide)), body .entry-content > :where(:not(.alignleft):not(.alignright):not(.alignfull):not(.alignwide)), body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	/* all root elements except full width elements */
	
	/* all inner elements within a constrain */
	
	/* 1200px max width */
	max-width: var(--wp--style--global--content-size);
	margin-left: auto !important;
	margin-right: auto !important;
}

.inset {
	padding-left: var(--site-margin);
	padding-right: var(--site-margin);
}

.alignfull, .alignwide {
	width: 100%;
}

.extend-left {
	margin-left: calc(100% - 50vw) !important;
}

.extend-right {
	margin-right: calc(100% - 50vw) !important;
}

:where(body .has-background) {
	padding-left: 20px;
	padding-right: 20px;
}

/* --> mobile */
@media only screen and (max-width: 992px) {
	.extend-left {
		margin-left: 0 !important;
	}
	
	.extend-right {
		margin-right: 0 !important;
	}
}

/* --> normal desktop */
@media only screen and (max-width: 1299px) {
	body .entry-content > :where(:not(.alignleft):not(.alignright):not(.alignfull):not(.alignwide)) {
		padding-left: var(--site-margin);
		padding-right: var(--site-margin);
	}
}

/* » Display Classes */
.display-flex {
	display: flex;
}

.display-flex.wrap {
	flex-wrap: wrap;
}

.display-grid {
	display: grid;
	grid-template-columns: repeat(1fr);
}

/* --> device views */
@media only screen and (max-width: 992px) {
	.display-flex .flex-item {
		width: 100%;
	}
}

/* » responsive video */
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.video-container :is(iframe, object, embed) {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* !SECTION */

/* » Animations
**************************************************/
@keyframes nova-fadeIn {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

@keyframes nova-slideDown {
	0% {
		top: -200px;
		opacity: 1;
	}
	
	100% {
		top: 0;
		opacity: 1;
	}
}

@keyframes nova-slideLeft {
	0% {
		display: block;
		left: 50%;
		opacity: 0;
	}
	
	100% {
		left: 0;
		opacity: 1;
	}
}

@keyframes nova-shuffleRight {
	0% {
		right: 2px;
	}
	
	100% {
		right: 12px;
	}
}

@keyframes nova-shuffleLeft {
	0% {
		left: -2px;
	}
	
	100% {
		left: 12px;
	}
}

@keyframes nova-titleUnderline {
	0% {
		width: 0;
	}
	
	100% {
		width: 160px;
	}
}

@keyframes nova-hoverZoom {
	0% {
		transform: scale(1);
		transform-origin: left bottom;
	}
	
	100% {
		transform: scale(1.5);
	}
}

/* » Colours
**************************************************/
body {
	--wp--preset--color--001: #4c5355;
	--wp--preset--color--002: #ffd200;
	--wp--preset--color--003: #ce7fb0;
	--wp--preset--color--004: #f37021;
	--wp--preset--color--005: #41ad49;
	--wp--preset--color--002-tint30: #fff2b3;
	--wp--preset--color--002-tint60: #ffe466;
	--wp--preset--color--001-tint50: #4c5355;
	--wp--preset--color--light-blue: #eff4fc;
	--wp--preset--color--neutral-dark: #333;
	--wp--preset--color--neutral-mid: #828282;
	--wp--preset--color--neutral-light: #e0e0e0;
	--gray05: hsl(0, 0%, 95%);
	--gray10: hsl(0, 0%, 90%);
	--gray20: hsl(0, 0%, 80%);
	--gray30: hsl(0, 0%, 70%);
	--gray40: hsl(0, 0%, 60%);
	--gray50: hsl(0, 0%, 50%);
	--gray60: hsl(0, 0%, 40%);
	--gray70: hsl(0, 0%, 30%);
	--gray80: hsl(0, 0%, 20%);
	--gray90: hsl(0, 0%, 10%);
	--checkerboard: repeating-conic-gradient(rgba(231, 231, 231, .2) 0% 25%, transparent 0% 50%) 50%/20px 20px;
}

.far, .fa-regular {
	font-family: "fontawesome-pro-regular";
}

.fa-light {
	font-family: "fontawesome-pro-light";
}

body {
	--font-default: "helvetica-now", sans-serif;
	--font-display: "helvetica-now", sans-serif;
}

/* » Typography
**************************************************/
html, body {
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--font-default);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--wp--preset--color--001);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	line-height: 1.2;
	font-weight: 600;
	margin-bottom: 16px;
}

h1 {
	/* font-size: clamp(36px, 20px + 5vw, 80px); */
	font-size: clamp(36px, 25px + 3.4vw, 66px);
	color: var(--wp--preset--color--001);
	position: relative;
	line-height: 1;
}

h1.banner-h1 {
	font-size: clamp(36px, 16.364px + 6.136vw, 95px);
}

em {
	font-style: italic;
}

h2 {
	font-size: clamp(30px, 20.909px + 2.841vw, 55px);
	position: relative;
}

h3 {
	font-size: clamp(30px, 26.364px + 1.136vw, 40px);
}

h4 {
	font-size: 30px;
}

h5 {
	font-size: 26px;
	font-weight: 400;
}

h6 {
	font-size: 19px;
}

p {
	margin-bottom: 12px;
}

:is(p, ul) + :is(h2, h3) {
	margin-top: 30px;
}

.wp-block-columns ul, .wp-block-columns ol {
	margin-bottom: 12px;
}

big {
	font-size: 125%;
}

small {
	font-size: 80%;
}

.uppercase {
	text-transform: uppercase;
}

/* » WP Core Blocks
**************************************************/
hr, hr.wp-block-separator {
	border: none;
	margin-top: 0;
	margin-bottom: 0;
	height: 1px;
	border-bottom: 1px solid var(--wp--preset--color--001);
	padding: 0;
}

body.page-components hr.wp-block-separator {
	margin-top: 80px;
	margin-bottom: 80px;
}

/* spacer block styles */
.wp-block-spacer.is-style-x-small {
	height: var(--space--xs) !important;
}

.wp-block-spacer.is-style-small {
	height: var(--space--sm) !important;
}

.wp-block-spacer.is-style-medium {
	height: var(--space--md) !important;
}

.wp-block-spacer.is-style-large {
	height: var(--space--lg) !important;
}

.wp-block-spacer.is-style-x-large {
	height: var(--space--xl) !important;
}

.wp-block-spacer.is-style-mega {
	height: var(--space--mega) !important;
}

/* » Links
**************************************************/
a {
	color: var(--wp--preset--color--001);
	transition: all .4s ease;
	font-weight: 400;
	text-decoration: none;
}

a:visited svg {
	fill: white;
}

#zone__content p a {
	text-decoration: underline;
}

#zone__content p a:hover {
	color: var(--wp--preset--color--002);
}

/* text links */
.links-animated-underline a:not([class]) {
	display: inline-block !important;
	position: relative;
}

.links-animated-underline a:not([class]):after {
	content: "";
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	border-radius: 5px;
	height: 2px;
	bottom: -3px;
	left: 0;
	background: currentColor;
	transform-origin: bottom right;
	transition: transform .25s ease-out;
}

.links-animated-underline a:hover:after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

/* too complex */
a:not(.wp-block-button__link):not(.fancybox-close):not(.overlay-link):not(.link--overlay):not(.link-with-icon):not(.roadsign) {}

a:not(.wp-block-button__link):not(.fancybox-close):not(.overlay-link):not(.link--overlay):not(.link-with-icon):not(.roadsign):hover {}

a:not(.wp-block-button__link):not(.fancybox-close):not(.overlay-link):not(.link--overlay):not(.link-with-icon):not(.roadsign):after {}

a:not(.wp-block-button__link):not(.fancybox-close):not(.overlay-link):not(.link--overlay):not(.link-with-icon):not(.roadsign):hover:after {}

/* » Buttons
**************************************************/
body a.wp-block-button__link, input[type="button"], input[type="reset"], input[type="submit"] {
	/* background-color: var(--wp--preset--color--001); */
	
	/* color: var(--wp--preset--color--002); */
	font-size: 20px;
	font-weight: 600;
	text-decoration: none;
	text-align: left;
	line-height: 1;
	display: inline-block;
	margin-bottom: 5px;
	cursor: pointer;
	transition: all .3s ease;
	border: none;
	padding: 12px 50px 12px 12px;
	border-radius: 0;
	position: relative;
}

.wp-block-button__link.button-secondary {
	background-color: var(--wp--preset--color--002);
	color: var(--wp--preset--color--001);
	display: inline-block;
	padding: 8px;
	width: 70%;
}

img.icon--arrow {
	display: inline-block;
	width: 30px;
}

/* --> mobile view */
@media only screen and (max-width: 768px) {
	.wp-block-buttons > .wp-block-button.wp-block-button__width-50 {
		width: 100%;
	}
}

a.link--overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100;
}

a.overlay-link {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	right: 12px;
	bottom: 0;
	left: 12px;
}

a.link-with-icon {
	display: block;
	padding: 8px 0;
	margin-bottom: 5px;
	border-bottom: 2px solid var(--wp--preset--color--002);
	font-weight: 600;
	font-size: 30px;
	position: relative;
}

a.wp-block-button__link:after, a.link-with-icon:after {
	content: "";
	font-family: "fontawesome-pro-regular";
	position: absolute;
	right: 18px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

/* animate button arrow */
body a.wp-block-button__link:hover:after, a.link-with-icon:hover:after {
	/* -webkit-transform: translateX(8px); */
	
	/* -moz-transform: translateX(8px); */
	
	/* -ms-transform: translateX(8px); */
	
	/* -o-transform: translateX(8px); */
	
	/* transform: translateX(8px); */
	right: 10px;
}

/* --> mobile view */
@media only screen and (max-width: 768px) {
	a.link-with-icon {
		font-size: 1rem;
	}
}

/* post-navigation links */
.nav-links a.button-secondary {
	width: 300px;
}

.nav-links a.wp-block-button__link.prev {
	text-align: right;
}

.nav-links a.wp-block-button__link.prev:after {
	right: unset;
	left: 8px;
	transform: rotate(180deg);
}

.nav-links a.wp-block-button__link.prev:hover:after {
	animation-name: nova-shuffleLeft;
	animation-duration: .8s;
}

figure.video-trigger {
	position: relative;
}

figure.video-trigger:after {
	content: "";
	width: 100px;
	height: 70px;
	height: 70px;
	position: absolute;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	top: calc(50% - 40px);
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/themes/qube/assets/images/icon-play-solid.png");
	background-size: 40px;
	background-repeat: no-repeat;
	background-color: rgba(255, 210, 0, .7);
	background-position: 53% 50%;
	background-position: 53% 50%;
	border-radius: 8px;
	border-radius: 8px;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, .5);
}

figure.video-trigger:hover:after {
	background-color: rgba(255, 210, 0, 1);
}

/* back button */
.backbtn a.wp-block-button__link:after {
	content: "";
	font-family: "fontawesome-pro-regular";
	position: absolute;
	left: 18px;
	-webkit-transition: transform .5s ease-out;
	-moz-transition: transform .5s ease-out;
	-ms-transition: transform .5s ease-out;
	-o-transition: transform .5s ease-out;
	transition: transform .5s ease-out;
}

.backbtn a.wp-block-button__link {
	padding: 12px 12px 12px 50px;
}

.backbtn a.wp-block-button__link:hover:after {
	-webkit-transform: translateX(-8px);
	-moz-transform: translateX(-8px);
	-ms-transform: translateX(-8px);
	-o-transform: translateX(-8px);
	transform: translateX(-8px);
}

/* » Forms
**************************************************/

/* default form elements on filters*/
input:not(.button):not([type="radio"]), textarea {
	border: none;
	border-bottom: 2px solid var(--wp--preset--color--001);
	background-color: transparent;
	padding: 8px;
	width: 100%;
	border-radius: 0;
	font-weight: 600;
}

/* remove & replace dropdown arrows */
.searchandfilter select.sf-input-select {
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/themes/qube/assets/images/icon--dropdown.webp");
	background-repeat: no-repeat;
	background-position: right 8px center;
	background-size: 13px;
}

/* default gravity */
.gform_wrapper {
	position: relative;
}

.gform_wrapper .gform_body {
	margin-bottom: 20px;
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
}

.gform_wrapper input:not(.button), textarea {
	border-bottom: 2px solid var(--wp--preset--color--002);
}

.gform_wrapper .gfield--type-text, .gform_wrapper .gfield--input-type-email {
	margin-bottom: var(--space--sm);
}

.gform_wrapper.gravity-theme .gfield input.large, .gform_wrapper.gravity-theme .gfield select.large {
	width: 100%;
	border: solid 2px var(--wp--preset--color--002);
	border-radius: 4px;
}

/* footer form */
#zone__footer .gform_wrapper .gform_body {
	max-width: 100%;
	margin-bottom: 0;
}

.searchandfilter select.sf-input-select.nitro-lazy {
	background-image: none !important;
}

#zone__footer .gform_wrapper .gform_footer {
	width: fit-content;
	margin: 0;
	padding: 0;
	position: relative;
}

#zone__footer .gform_wrapper .gform_footer:has(.gform_image_button) {
	position: absolute;
	right: 0;
	bottom: 5px;
	width: 30px;
	margin: 0 !important;
	padding: 0 !important;
}

#zone__footer .gform_wrapper .gform_footer input.gform_button {
	background-color: transparent;
	color: var(--wp--preset--color--002);
	margin: 0;
}

#zone__footer .gform_wrapper .gform_footer:after {}

#zone__footer .gform_wrapper .gform_footer:hover:after {
	animation-name: nova-shuffleRight;
	animation-duration: .8s;
}

/* default search form */
form.search-form-std {
	display: flex;
	max-width: 600px;
	margin: 30px 0;
}

form.search-form-std input.button {
	margin: 0;
}

/* » ------------------------------------------- */

/* » ZONE: Body Area
**************************************************/
.container {
	transition: all .4s ease;
	max-width: 100%;
}

/* » ZONE: Header Area
**************************************************/
#zone__header {
	position: sticky;
	top: 0;
	z-index: 300;
	transition: all 1s ease;
	padding: 0 var(--site-margin);
	margin-bottom: 50px;
}

#zone__header .wrap-inner {
	display: flex;
	justify-content: space-between;
	align-items: start;
	transition: all .4s ease;
}

#zone__header .block {
	display: flex;
	gap: 15px;
	align-items: end;
}

#zone__header #block__brand.block {
	height: calc(var(--header-block-height) + 40px);
	background-color: var(--wp--preset--color--001);
	padding: 20px 10px;
	transition: all .4s ease;
	position: relative;
	animation-name: nova-slideDown;
	animation-duration: 2s;
	animation-delay: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}

#zone__header #block__brand .site-logo {
	width: 130px;
}

/* Main Menu Button */
#zone__header #hamburger-button {
	cursor: pointer;
	transition: all .4s ease;
	position: relative;
	display: flex;
	align-items: end;
	z-index: 101;
	gap: 5px;
	padding: 20px 10px 20px 80px;
	font-weight: 600;
	background-color: var(--wp--preset--color--002);
	height: var(--header-block-height);
}

#zone__header #hamburger-button:hover {
	border-color: var(--wp--preset--color--002);
}

#zone__header #hamburger-button .label:before {
	content: "Menu";
}

#zone__header #hamburger-button.active .label:before {
	content: "Close";
}

#zone__header #hamburger-button .icon .dashicons {
	width: unset;
	height: unset;
	font-size: 24px;
	vertical-align: top;
	transition: all .4s ease;
}

#zone__header #hamburger-button.active .icon .dashicons {
	transform: rotate(45deg);
}

/*portal button*/
#zone__header .portal-menu-button {
	height: var(--header-block-height);
	background-color: var(--wp--preset--color--002);
	padding: 20px 10px;
	display: flex;
	align-items: end;
	cursor: pointer;
	position: relative;
}

#zone__header .portal-menu-button .icon {
	width: 30px;
}

/* sticky header */
body.scrolled #zone__header {
	background-color: var(--wp--preset--color--001);
}

body.shortscroll #zone__header #block__brand.block {
	height: var(--header-block-height);
}

body.scrolled #zone__header #block__widgets.block {
	background-color: var(--wp--preset--color--002);
}

/* overlay issue fix */
body #zone__header {
	pointer-events: none;
}

body #zone__header #block__brand.block {
	pointer-events: all;
}

body #zone__header #block__widgets.block {
	pointer-events: all;
}

/* mobile header */

/* --> mobile view */
@media only screen and (max-width: 768px) {
	#zone__header #block__brand.block {
		height: var(--header-block-height);
	}
	
	#zone__header .block {
		gap: 10px;
	}
	
	#zone__header #block__brand .site-logo {
		width: 75px;
	}
	
	#zone__header #hamburger-button {
		padding: 20px 10px 20px 40px;
	}
}

/* if logged-in */
body.admin-bar #zone__header {
	top: 32px;
}

/* --> mobile view */
@media only screen and (max-width: 768px) {
	body.admin-bar.scrolled #zone__header {
		top: 0;
	}
}

/* transparent header */
body.single-division #zone__header, body.header-transparent #zone__header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
}

body.header-transparent.admin-bar #zone__header {
	top: 32px;
}

/* --> mobile view */
@media only screen and (max-width: 768px) {
	body.header-transparent.admin-bar #zone__header {
		top: 0;
	}
}

/* » ZONE: Content
**************************************************/
#zone__content {
	padding-bottom: 150px;
}

/* --> mobile view */
@media only screen and (max-width: 768px) {
	#zone__content {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	
	.has-mobile-padding {
		padding-left: var(--site-margin);
		padding-right: var(--site-margin);
	}
}

body.header-transparent #zone__content {
	padding-top: 0;
}

:target {
	scroll-margin-top: 150px;
}

/* » ZONE: Footer
**************************************************/
#zone__footer {
	background-color: var(--wp--preset--color--001);
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/themes/qube/assets/images/footer-bg.png");
	background-position: top left;
	background-repeat: no-repeat;
	background-size: 500px;
	padding: 80px var(--site-margin) 80px;
	color: white;
}

#zone__footer.nitro-lazy {
	background-image: none !important;
}

#zone__footer .row.footer-row {
	margin-bottom: 50px;
}

#zone__footer h4 {
	color: var(--wp--preset--color--002);
}

#zone__footer a {
	color: white;
}

#zone__footer .content.country {
	font-weight: 600;
}

#zone__footer .content:is(.form, .country, .searchform, .legal) {
	padding-right: var(--space--lg);
}

#zone__footer .footer-menu ul {
	list-style-type: none;
	padding-left: 0;
}

#zone__footer .footer-menu ul.menu {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 30px;
}

#zone__footer .footer-menu ul#menu-footer-menu-02.menu {}

#zone__footer .footer-menu ul.menu > li > a {
	color: var(--wp--preset--color--002);
	font-weight: 600;
	font-size: 20px;
}

#zone__footer .footer-menu ul.sub-menu > li > a {
	font-size: 90%;
	padding: 3px 0;
	display: inline-block;
	font-weight: bold;
}

#zone__footer input {
	border-bottom-color: var(--wp--preset--color--002);
	color: white;
}

#zone__footer input::placeholder {
	color: white;
	opacity: .5;
}

#zone__footer .searchform {
	display: flex;
	align-items: end;
	height: 100%;
}

#zone__footer .searchform .sitesearch {
	position: relative;
	width: 100%;
}

#zone__footer .searchform input.searchbutton {
	border: none;
	padding: 0;
	margin: 0;
	border-radius: 0;
	position: absolute;
	right: 0;
	bottom: 5px;
	width: 30px;
	height: 30px;
}

#zone__footer a.backtotop {
	margin-right: 30px;
}

#zone__footer a.backtotop .icon--arrow {
	transform: rotate(270deg);
	vertical-align: bottom;
}

#zone__footer .legal {
	text-align: right;
}

#zone__footer .imprint {
	color: var(--wp--preset--color--002);
}

/* --> mobile view */
@media only screen and (max-width: 768px) {
	#zone__footer {
		background-size: contain;
		padding-top: 260px;
	}
	
	#zone__footer .legal {
		text-align: left;
	}
	
	#zone__footer .legal a {
		display: inline !important;
	}
}

/* » ------------------------------------------- */

/* » MODULE: Primary Menu
**************************************************/

/* changes to other elements */
body.offscreen-menu-active {
	/* Stop the page the scrolling */
	
	/* overflow-y: hidden; */
	position: relative;
}

body.scrolled.offscreen-menu-active #zone__header #block__widgets.block, body.scrolled.offscreen-menu-active #zone__header, body.offscreen-menu-active #zone__header .portal-menu-button, body.offscreen-menu-active #zone__header #hamburger-button {
	background-color: transparent;
}

body.offscreen-menu-active::before {
	content: "";
	position: absolute;
	z-index: 100;
	background-color: white;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* the menu */
nav#id-menu--mobile {
	display: none;
}

.offscreen-menu-wrapper :is(ul) {
	list-style-type: none;
}

.offscreen-menu-wrapper {
	position: fixed;
	top: -100%;
	bottom: var(--site-margin);
	right: var(--site-margin);
	left: var(--site-margin);
	background-color: var(--wp--preset--color--002-tint30);
	z-index: 200;
	opacity: 0;
	display: none;
	transition: opacity .5s ease;
	overflow-y: auto;
}

body.offscreen-menu-active .offscreen-menu-wrapper {
	opacity: 1;
	display: block;
	top: 0;
}

body.offscreen-menu-active .offscreen-menu-wrapper .container {
	position: relative;
}

ul.offscreen-menu {
	padding-right: var(--space--xl);
	transition: all .4s ease;
	margin-left: 0;
}

ul.offscreen-menu > li {
	font-size: 30px;
	line-height: 1.2;
}

ul.offscreen-menu  > li > a {
	width: fit-content;
}

ul.offscreen-menu  a {
	padding: 7px 0;
	display: block;
	font-weight: 600;
	color: var(--wp--preset--color--001);
}

/* submenu */
ul.offscreen-menu ul.sub-menu {
	display: none;
	opacity: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 44%;
	border-left: 2px solid var(--wp--preset--color--001);
	padding-left: var(--space--lg);
	padding-right: var(--space--lg);
	animation-name: nova-fadeIn;
	animation-duration: .8s;
}

body.offscreen-menu-active ul.offscreen-menu > li.open > ul.sub-menu {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 50px;
	opacity: 1;
	row-gap: 0;
	align-content: center;
}

ul.offscreen-menu > li > ul.sub-menu > li > a {
	font-size: 21px;
	display: block;
	padding: 5px 0;
}

ul.offscreen-menu > li > ul.sub-menu .back-button {
	margin-bottom: 50px;
	cursor: pointer;
	display: block;
	color: var(--wp--preset--color--001);
	font-weight: 600;
}

/* --> 992px & smaller views */
@media only screen and (max-width: 992px) {
	body.offscreen-menu-active .offscreen-menu-wrapper {
		opacity: 1;
		bottom: 0;
		right: 0;
		left: 0;
		top: 0;
		overflow-x: clip;
	}
	
	ul.offscreen-menu {
		padding-left: var(--space--md);
		padding-right: var(--space--md);
		overflow: auto;
		position: fixed;
		width: 100%;
		bottom: 0;
		top: 220px;
	}
	
	ul.offscreen-menu.child-open {
		margin-left: -100%;
		opacity: 1;
	}
	
	ul.offscreen-menu ul.sub-menu {
		display: block;
		opacity: 0;
		transform: translateX(100%);
		position: fixed;
		top: 220px;
		bottom: 0;
		right: 0;
		left: 0;
		border-left: 0;
		padding-left: var(--space--md);
		padding-right: var(--space--md);
		background-color: var(--wp--preset--color--002-tint30);
		overflow: auto;
		transition: all .8s ease;
	}
	
	body.offscreen-menu-active ul.offscreen-menu > li.open > ul.sub-menu {
		display: block;
		transform: translateX(0);
		opacity: 1;
		align-content: start;
	}
}

/* » MODULE: Portal Menu
**************************************************/
.portal-menu-wrapper {
	position: fixed;
	right: 0;
	width: 330px;
	background-color: var(--wp--preset--color--002);
	padding: 22px 59px 100px 20px;
	z-index: 400;
	font-weight: 600;
	display: none;
}

.portal-menu-wrapper .close-portal {
	display: flex;
	justify-content: end;
	align-items: end;
	column-gap: 30px;
	margin-bottom: 30px;
	cursor: pointer;
}

.portal-menu-wrapper .close-portal img {
	width: 30px;
}

.portal-menu-wrapper a {
	font-weight: 600;
}

.portal-menu-wrapper ul {
	list-style-type: none;
	padding-left: 0;
	line-height: 1.2rem;
}

.portal-menu-wrapper ul li {
	margin-bottom: 10px;
}

/* » MODULE: Site Search
**************************************************/

/* form */
#sitesearch {
	position: relative;
	width: 500px;
	margin: 0 auto 100px;
	padding-top: calc(var(--header-block-height) + 30px);
}

#sitesearch input.searchbutton {
	border: none;
	padding: 0;
	margin: 0;
	border-radius: 0;
	position: absolute;
	right: 0;
	bottom: 5px;
	width: 30px;
	height: 30px;
}

#sitesearch input[type="text"] {
	color: var(--wp--preset--color--001);
}

#sitesearch input[type="text"]:focus {
	outline: none;
}

/* --> mobile view */
@media only screen and (max-width: 992px) {
	#sitesearch {
		width: 80%;
		margin: 0 auto 50px;
	}
}

/* » MODULE: Nova Slider
**************************************************/
.nova-slider .slick-track {
	display: flex;
	align-items: center;
}

.nova-slider .item {}

.nova-slider .image {
	height: 30vh;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
}

.nova-slider .image:after {
	content: "";
	position: absolute;
	z-index: 2;
	background-color: rgba(0, 0, 0, .3);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* prevent flash-of-unstyled */
.nova-slider {
	visibility: hidden;
}

.nova-slider.slick-initialized {
	visibility: visible;
}

/* arrows */
.nova-slider .slick-prev, .nova-slider .slick-next {
	width: auto;
	height: auto;
	z-index: 3;
}

.nova-slider .slick-prev {
	left: 0;
}

.nova-slider .slick-next {
	right: 0;
}

.nova-slider .slick-prev:before, .nova-slider .slick-next::before {
	font-size: 50px;
	color: white;
}

/* » MODULE: Slider -- Posts
**************************************************/
.block--slider-posts-header .subhead {
	text-align: center;
	margin-bottom: 30px;
}

.slider--posts .slick-track {
	display: flex;
	gap: 15px;
}

.slider--posts .item {
	position: relative;
	height: 400px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.slider--posts .item::after {
	content: "";
	position: absolute;
	z-index: 1;
	background-color: rgba(0, 0, 0, .5);
	top: 8px;
	right: 8px;
	bottom: 8px;
	left: 8px;
	opacity: 0;
	transition: all 1s ease;
}

.slider--posts .item.slick-current {
	box-shadow: 0 0 0px 8px var(--wp--preset--color--002) inset;
}

.slider--posts .content {
	color: white;
	position: absolute;
	z-index: 10;
	width: 50%;
	bottom: -100%;
	left: 50px;
	opacity: 0;
	transition: all 1s ease;
}

.slider--posts .category-sticker {
	position: absolute;
	z-index: 10;
	top: 0;
	left: -15px;
}

/* --> tablet view */
@media only screen and (max-width: 992px) {
	.slider--posts .content {
		z-index: 10;
		width: unset;
		bottom: 0;
		left: 15px;
		right: 15px;
		opacity: 1;
	}
}

.slider--posts .counter {
	font-size: 130px;
	font-weight: 600;
	color: transparent;
	-webkit-text-stroke: 1px var(--wp--preset--color--002);
	line-height: 1;
	position: absolute;
	z-index: 20;
	right: 50px;
	bottom: 50px;
	transition: all 1s ease;
}

.slider--posts .item:hover .content {
	/*animate*/
	opacity: 1;
	bottom: 50px;
}

.slider--posts .item:hover .counter {
	-webkit-text-stroke: 1px white;
}

.slider--posts .item:hover::after {
	opacity: 1;
}

.slider--posts .slick-dots li {
	margin: 0 5px;
	width: unset;
	height: unset;
}

.slider--posts .slick-dots li button {
	display: block;
	width: 50px;
	height: 8px;
	padding: 0;
	background: var(--wp--preset--color--001);
}

.slider--posts .slick-dots li.slick-active button {
	background: var(--wp--preset--color--002);
}

.slider--posts .slick-dots li button::before {
	display: none;
}

/* --> tablet view & smaller */
@media only screen and (max-width: 992px) {
	.slider--posts .slick-dots li button {
		width: 20px;
	}
	
	.slider--posts .card-badge {
		width: 80%;
	}
	
	.slider--posts .item {
		height: 250px;
	}
	
	.slider--posts .counter {
		display: none;
	}
}

/* » MODULE: Page Banner Images
	**************************************************/
.banner-image {
	position: relative;
	height: 95vh;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}

/* » MODULE: Socials Block
**************************************************/
#zone__footer .socials-block {
	fill: white;
}

/* » MODULE: Pagination
**************************************************/
.pagination {
	padding: 30px 0;
	text-align: right;
}

.pagination .page-numbers {
	padding: 10px 16px;
	border-radius: 0;
	background-color: var(--wp--preset--color--001);
	color: white;
	display: inline-block;
}

.pagination .page-numbers:hover {
	background-color: var(--wp--preset--color--002);
}

.pagination .page-numbers.current {
	background-color: var(--wp--preset--color--002);
}

.pagination .page-numbers.dots {
	background-color: transparent;
	color: var(--wp--preset--color--001);
}

/* SECTION MODULE: Cards
**************************************************/
.layout--cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	row-gap: 60px;
	column-gap: 30px;
}

.layout--cards .item {
	position: relative;
	display: grid;
	background-size: cover;
	background-position: center;
	padding-bottom: 50px;
}

.layout--cards .item .post-title {
	margin-bottom: 10px;
}

.layout--cards .item .categories:empty {
	display: none;
}

.layout--cards .item .inner .post-link .wp-block-button__link {
	position: absolute;
	bottom: 0;
	height: auto;
}

.layout--cards .card-label {
	background-color: var(--wp--preset--color--002);
	padding: 10px 30px;
	min-width: 60%;
	color: var(--wp--preset--color--001);
	font-weight: 600;
	text-align: right;
	justify-self: end;
	align-self: start;
}

.layout--cards .card-label::before {
	content: "";
	font-family: "fontawesome-pro-regular";
	display: inline-block;
	margin-right: 10px;
}

.layout--cards .item.news .card-label::before {
	content: "";
}

.layout--cards .item.project .card-label::before {
	content: "";
}

.layout--cards .item.story .card-label::before {
	content: "";
}

.layout--cards .item.event .card-label::before {
	content: "";
}

.layout--cards .item.attachment .card-label::before {
	content: "";
}

.layout--cards .post-thumbnail {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	object-position: center;
	margin-bottom: 15px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.layout--cards .excerpt {
	margin-bottom: 10px;
}

.layout--cards .post-date {
	font-size: 80%;
}

.layout--cards a.read-more::after {
	content: "";
	font-family: "dashicons";
	display: inline-block;
	margin-left: 15px;
	vertical-align: bottom;
}

/* --> mobile view */
@media only screen and (max-width: 768px) {
	.layout--cards {
		grid-template-columns: 1fr !important;
		gap: 15px;
	}
	
	.layout--cards .item {
		aspect-ratio: 3/4;
	}
	
	.layout--cards .item .card-label {
		width: 90%;
	}
}

/* » Variation: Archives */
.layout--cards.default-archive {
	grid-template-columns: repeat(3, 1fr);
}

/* » Variation: News Cards */
.layout--cards.news {
	grid-template-columns: repeat(3, 1fr);
}

.layout--cards.news .card-label {
	text-align: left;
	padding: 10px;
}

.layout--cards.news a {
	font-weight: inherit;
}

/* » Variation: Events Cards */
.layout--cards.events {
	grid-template-columns: repeat(3, 1fr);
}

.layout--cards.events .post-date {
	display: none;
}

.layout--cards.events .card-label {
	text-align: left;
	padding: 10px;
}

.layout--cards.events a {
	font-weight: inherit;
}

/* » Variation: Division Cards */
.layout--cards.divisions .item {
	aspect-ratio: 1;
	overflow: hidden;
	background-color: var(--wp--preset--color--002);
}

.layout--cards.divisions .item a.link--overlay {
	transition: all .8s ease;
	background-size: cover;
	background-position: center;
}

.layout--cards.divisions .item a:hover.link--overlay {
	transform: scale(1.5);
	background-position: center;
}

.layout--cards.divisions .item .card-label {
	position: relative;
	z-index: 101;
}

/* FOCUS STATE ON DIVISIONS CARDS */
.layout--cards.divisions .item a.link--overlay:focus {
	border: 3px solid blue;
}

/* » Variation: Link Image Cards */
.layout--cards.link-cards .item {
	aspect-ratio: 1;
	overflow: hidden;
}

.layout--cards.link-cards .item .card-label {
	z-index: 101;
}

.layout--cards.link-cards .item a.link--overlay.hover-zoom {
	transition: all .8s ease;
	background-size: cover;
	background-position: center;
}

.layout--cards.link-cards .item a:hover.link--overlay.hover-zoom {
	transform: scale(1.5);
	background-position: center;
}

/* » Variation: Search Result Cards */
.layout--cards.search-results {
	grid-template-columns: repeat(2, 1fr);
	row-gap: 30px;
}

.layout--cards.search-results .item {
	border: solid 2px var(--wp--preset--color--002);
	padding-bottom: 0;
}

.layout--cards.search-results .item .inner {
	padding: var(--space--xs);
	padding-top: var(--space--md);
}

.layout--cards.search-results .card-label {
	min-width: fit-content;
}

.layout--cards.search-results .item:is(.service, .page, .division) .card-label {
	visibility: hidden;
}

@media only screen and (max-width: 768px) {
	.layout--cards.search-results .item {
		aspect-ratio: unset;
	}
}

/* » Variation: Teams Cards */
.layout--cards.teams {
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	row-gap: 30px;
}

.layout--cards.teams .item {
	background: white;
	padding: 0;
}

.layout--cards.teams .block-description {
	grid-column: 1/span 3;
	padding-right: var(--space--lg);
}

.layout--cards.teams .post-header {
	margin-bottom: var(--space--xs);
	overflow: hidden;
	aspect-ratio: 1;
}

.layout--cards.teams .post-image {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
	transition: all .8s ease;
}

/* animation */
.layout--cards.teams .item:hover .post-image {
	object-position: bottom;
	width: 103%;
	height: 103%;
	opacity: .7;
}

.layout--cards.teams .post-body {
	padding: var(--space--xs);
	padding-top: 0;
}

.layout--cards.teams h6.post-title {
	margin-bottom: 0;
}

.layout--cards.teams .position {
	line-height: 1.1;
	font-size: 80%;
}

/* --> mobile view */
@media only screen and (max-width: 768px) {
	.layout--cards.teams {
		grid-template-columns: 1fr 1fr !important;
		gap: 15px;
	}
	
	.layout--cards.teams .block-description {
		grid-column: 1/span 2;
	}
	
	.layout--cards.teams .item {
		aspect-ratio: unset;
	}
}

/* » Modal + Ajax Results */
#fancybox-wrap {
	/* top: var(--site-margin) !important; */
	left: var(--site-margin) !important;
	right: var(--site-margin) !important;
	width: auto !important;
}

#fancybox-outer {
	box-shadow: none;
	background: var(--wp--preset--color--002-tint30);
	padding: var(--space--lg);
}

#fancybox-content {
	border: none;
	background: transparent;
}

#ajaxResults .modal-content {
	width: var(--wp--style--global--content-size);
	padding-top: var(--site-margin);
	margin-left: auto;
	margin-right: auto;
}

#ajaxResults .post-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space--xl);
}

#ajaxResults .post-body .post-image {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	object-position: center;
	margin-bottom: var(--space--sm);
}

#ajaxResults .post-body h3.post-title {
	margin-bottom: 15px;
}

#ajaxResults .post-body .position {
	margin-bottom: 30px;
}

/* --> mobile view */
@media only screen and (max-width: 992px) {
	#ajaxResults .post-body {
		grid-template-columns: 1fr;
	}
	
	#ajaxResults .post-body .image {
		order: -1;
	}
}

/* !SECTION */

/* » MODULE: Category Stickers
**************************************************/
.category-sticker {
	background-color: var(--wp--preset--color--002);
	padding: 10px 30px;
	width: fit-content;
	color: var(--wp--preset--color--001);
	font-weight: 600;
	font-size: 16px;
	line-height: 1;
	text-align: right;
	white-space: nowrap;
	display: inline-block;
	margin-left: 15px;
	vertical-align: 12px;
}

.category-sticker::before {
	content: "";
	font-family: "fontawesome-pro-regular";
	font-weight: 400;
	display: inline-block;
	margin-right: 10px;
}

.category-sticker.news::before {
	content: "";
}

.category-sticker.project::before {
	content: "";
}

.category-sticker.story::before {
	content: "";
}

.category-sticker.event::before {
	content: "";
}

/* @800px */
@media only screen and (max-width: 800px) {
	h1.entry-title .category-sticker {
		display: block;
		margin-left: 0;
		margin-top: 12px;
	}
}

/* » VARIATION: Search Results */
body.search-results .category-sticker {
	position: absolute;
	z-index: 10;
	top: 0;
	right: 0;
}

/* » VARIATION: Archive Pages */
body.archive .category-sticker {
	margin-left: 0;
}

/* » MODULE: Related Divisions
**************************************************/
.module--related-types {
	padding: 50px 0;
}

.module--related-types .item-list {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.module--related-types .item-list a.item {
	display: inline-block;
	padding: 8px 20px;
	clip-path: polygon(20px 0, 100% 0, 100% 100%, 20px 100%, 0 50%);
	position: relative;
	background-color: var(--wp--preset--color--002);
	text-align: center;
	min-width: 150px;
	font-weight: 600;
}

.module--related-types .item-list a.item:after {
	content: "";
	position: absolute;
	top: 2px;
	right: 2px;
	bottom: 2px;
	left: 2px;
	clip-path: polygon(20px 0, 100% 0, 100% 100%, 20px 100%, 0 50%);
	background-color: white;
	z-index: 2;
}

.module--related-types .item-list a.item.primary {
	/* border: solid 2px var(--wp--preset--color--002); */
	display: inline-block;
	padding: 8px 20px;
	background-color: var(--wp--preset--color--002);
}

.module--related-types .item-list a.item.primary::after {
	background-color: transparent;
}

.module--related-types .item-list a.item span {
	position: relative;
	z-index: 3;
}

/* » MODULE: Breadcrumbs
**************************************************/
.breadcrumbs {
	margin-bottom: var(--space--sm);
}

.breadcrumb-separator {
	font-family: "fontawesome-pro-regular";
	display: inline-block;
	margin: 0 15px;
}

.breadcrumb-home:after {
	content: "";
	font-family: "fontawesome-pro-regular";
	display: inline-block;
}

/* » MODULE: Page Listings
**************************************************/
.page-listing h5 {
	margin-bottom: 16px;
	font-size: 18px;
}

.page-listing h5 a {
	font-weight: 600;
}

/* --> smaller screens */
@media only screen and (max-width: 992px) {
	.custom-media-text .content .page-listing h5 {
		margin-bottom: 8px;
		font-size: 16px;
	}
}

/* » MODULE: Downloads
**************************************************/
.module--downloads .data {}

.module--downloads .header {
	margin-bottom: var(--space--md);
}

.module--downloads .intro {
	width: 75%;
	padding-right: 10%;
}

.module--downloads .cta {
	width: 25%;
}

.module--downloads .cta .wp-block-button__link {
	width: 100%;
	display: inline-block;
}

.module--downloads .download-listing {
	font-weight: 600;
	border-top: 2px solid var(--wp--preset--color--002);
}

.module--downloads .download-listing .item {
	column-gap: 10px;
	border-bottom: 2px solid var(--wp--preset--color--002);
	padding: 10px 0;
}

.module--downloads .download-listing .date {
	width: 80px;
}

.module--downloads .download-listing.hide-date .date {
	display: none;
}

.module--downloads .download-listing .title {
	flex-grow: 1;
}

.module--downloads .download-listing .type {
	text-transform: uppercase;
	width: 50px;
}

.module--downloads .download-listing .downloads {
	width: 50px;
}

.module--downloads .download-listing .downloads {
	font-family: "fontawesome-pro-regular";
}

.module--downloads .download-listing .mime-type {
	text-align: center;
}

/* --> mobile view */
@media only screen and (max-width: 992px) {
	.module--downloads .intro {
		width: 100%;
		padding-right: 0;
	}
	
	.module--downloads .cta {
		width: 70%;
	}
	
	.module--downloads .download-listing {
		font-size: 90%;
	}
	
	/* table sizing */
	.module--downloads .download-listing .date {
		width: 22%;
	}
	
	.module--downloads .download-listing .title {
		flex-grow: unset;
		width: 50%;
	}
	
	.module--downloads .download-listing .type {
		width: 10%;
		overflow: hidden;
		text-align: right;
	}
	
	.module--downloads .download-listing .downloads {
		width: 15px;
	}
}

/* » MODULE: Search & Filter
**************************************************/
.searchandfilter {
	padding-bottom: 50px;
}

.searchandfilter ul {
	display: flex;
	padding: 0;
	margin: 0;
	gap: 15px;
	flex-wrap: wrap;
}

.searchandfilter select.sf-input-select {
	text-align: center;
	font-weight: 600;
	border: solid 2px var(--wp--preset--color--002);
	background-color: #fff;
	padding: 10px 30px;
}

/* @800px */
@media only screen and (max-width: 800px) {
	.module--downloads .searchandfilter ul {
		display: flex;
		gap: 0;
		flex-wrap: wrap;
	}
	
	.module--downloads .searchandfilter ul li {
		width: 100%;
	}
	
	.module--downloads .searchandfilter label {
		display: block;
	}
	
	.module--downloads .searchandfilter select.sf-input-select {
		text-align: left;
		padding: 10px 5px;
		color: #000;
	}
}

/* » MODULE: Title Block
**************************************************/
.block--title {
	position: relative;
}

.block--title:after {
	content: "";
	height: 8px;
	width: 0;
	background-color: var(--wp--preset--color--002);
	margin: 30px 0 50px 0;
	display: block;
	animation: nova-titleUnderline;
	animation-duration: 1.2s;
	animation-delay: 1s;
	animation-fill-mode: forwards;
}

:is(.has-002-background-color, .has-006-background-color) .block--title:after {
	background-color: white;
}

/* » MODULE: Location Map
**************************************************/
.block__map {
	min-height: 80vh;
}

/* --> mobile */
@media only screen and (max-width: 992px) {
	.block__map {
		min-height: fit-content;
	}
}

.block__map .imapsImage {
	cursor: pointer;
}

.block__map > .inner {
	background-color: #ecf0f8;
	height: 100%;
}

.block__map .inner .content {
	display: grid;
	grid-template-columns: 30% 1fr;
	height: 100%;
}

/* --> mobile */
@media only screen and (max-width: 992px) {
	.block__map .inner .content {
		display: block;
		padding: 20px !important;
	}
	
	body.page-locations .block__map .inner .content {
		display: grid;
		padding: 0 !important;
	}
	
	body.page-about .block__map .inner .content {
		display: grid;
		padding: 0 !important;
	}
}

/* --> desktop view */
@media only screen and (max-width: 1200px) {
	.block__map > .inner {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.block__map .block-header {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-self: center;
}

.map_wrapper {
	position: relative;
}

.block__map .map_wrapper .map_aspect_ratio {
	height: 100%;
}

.map_wrapper .imapsMapPolygon-group {
	fill: white;
}

.block__map .map_wrapper ul.igm-live-filter {
	display: none;
}

.map_wrapper .imapsTooltip {
	font-weight: bold;
}

.map_wrapper .imapsTooltip .email {
	margin-top: 5px;
}

.map_wrapper a.email:before {
	content: "E: ";
	font-weight: bold;
}

.map_wrapper a.phone:before {
	content: "P: ";
	font-weight: bold;
}

.map_wrapper a.phone:empty, .map_wrapper a.email:empty {
	display: none;
}

/* with filters */
.block__map.with-filters .map_wrapper ul.igm-live-filter {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	right: 0;
	top: 20px;
	bottom: 20px;
	text-align: center;
	font-weight: 600;
	z-index: 98;
}

.block__map.with-filters .map_wrapper ul.igm-live-filter li {
	display: block;
	margin-right: 0;
	background-color: #797e80;
	color: white;
	padding-left: var(--space--md);
	padding-right: var(--space--md);
}

/*all filters*/
.block__map.with-filters .map_wrapper ul.igm-live-filter li::before {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/uploads/2024/05/location_pin_72x100_viewall.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin: 0 auto;
}

/*bulk*/
.block__map.with-filters .map_wrapper ul.igm-live-filter li[data-map-id="3212"]::before, .block__map.with-filters .map_wrapper ul.igm-live-filter li[data-map-id="1288"]::before {
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/uploads/2024/03/location_pin_72x100_bulk.png");
}

/*containers*/
.block__map.with-filters .map_wrapper ul.igm-live-filter li[data-map-id="3218"]::before, .block__map.with-filters .map_wrapper ul.igm-live-filter li[data-map-id="1350"]::before {
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/uploads/2024/05/location_pin_72x100_containers.png");
}

/*iso*/
.block__map.with-filters .map_wrapper ul.igm-live-filter li[data-map-id="3221"]::before, .block__map.with-filters .map_wrapper ul.igm-live-filter li[data-map-id="1352"]::before {
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/uploads/2024/03/location_pin_72x100_bulk.png");
}

/*infrastructure*/
.block__map.with-filters .map_wrapper ul.igm-live-filter li[data-map-id="3220"]::before, .block__map.with-filters .map_wrapper ul.igm-live-filter li[data-map-id="1351"]::before {
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/uploads/2024/05/location_pin_72x100_infrastructure.png");
}

/*aat*/
.block__map.with-filters .map_wrapper ul.igm-live-filter li[data-map-id="3207"]::before, .block__map.with-filters .map_wrapper ul.igm-live-filter li[data-map-id="1349"]::before {
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/uploads/2024/03/location_pin_72x100_AAT.png");
}

/*patrick*/
.block__map.with-filters .map_wrapper ul.igm-live-filter li[data-map-id="3216"]::before, .block__map.with-filters .map_wrapper ul.igm-live-filter li[data-map-id="1354"]::before {
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/uploads/2024/03/location_pin_72x100_patrick.png");
}

/*logistics*/
.block__map.with-filters .map_wrapper ul.igm-live-filter li[data-map-id="3214"]::before, .block__map.with-filters .map_wrapper ul.igm-live-filter li[data-map-id="1353"]::before {
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/uploads/2024/03/location_pin_72x100_logistics.png");
}

/*ports*/
.block__map.with-filters .map_wrapper ul.igm-live-filter li[data-map-id="1355"]::before {
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/uploads/2024/03/location_pin_72x100_ports.png");
}

/*other*/
.block__map.with-filters .map_wrapper ul.igm-live-filter li[data-map-id="3341"]::before {
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/uploads/2024/03/location_pin_72x100_viewall.png");
}

/*hover*/
.block__map.with-filters .map_wrapper ul.igm-live-filter li:hover, .block__map.with-filters .map_wrapper ul.igm-live-filter li.igm-live-filter-active {
	background-color: #4c5355;
}

.block__map.with-filters {
	height: 80vh;
}

.block__map.with-filters .map_wrapper .map_aspect_ratio {
	padding-top: 0 !important;
}

.block__map.with-filters > .inner.is-layout-constrained .content {
	max-width: 100%;
	margin: 0;
}

.block__map.with-filters .block-header {
	display: none;
}

.block__map.with-filters .content {
	grid-template-columns: 1fr;
}

/* home page map */
body.home #locations .is-layout-constrained .content {
	max-width: unset;
	padding: 0 50px;
}

/* --> mobile view */
@media only screen and (max-width: 992px) {
	.block__map .content {
		grid-template-columns: 1fr;
	}
	
	.block__map .block-header {
		order: 2;
	}
	
	.block__map.with-filters .map_wrapper ul.igm-live-filter, .map_wrapper ul.igm-live-filter {
		display: none;
	}
}

/* » MODULE: Location Listing
**************************************************/
.location-list h5.list-title {
	margin-bottom: var(--space--xs);
}

.location-list .location-summary summary.title {
	cursor: pointer;
}

.location-list .location-summary .detail {
	padding-left: var(--space--xs);
	font-size: 85%;
}

.location-list .location-icon {
	display: inline-block;
	width: 30px;
	height: 30px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.location-list:is( .bulk, .iso) .location-icon {
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/uploads/2024/03/location_pin_72x100_bulk.png");
}

.location-list:is( .bulk.nitro-lazy, .iso) .location-icon.nitro-lazy {
	background-image: none !important;
}

.location-list.containers .location-icon {
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/uploads/2024/05/location_pin_72x100_containers.png");
}

.location-list.containers .location-icon.nitro-lazy {
	background-image: none !important;
}

.location-list.infrastructure .location-icon {
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/uploads/2024/05/location_pin_72x100_infrastructure.png");
}

.location-list.infrastructure .location-icon.nitro-lazy {
	background-image: none !important;
}

.location-list.aat .location-icon {
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/uploads/2024/03/location_pin_72x100_AAT.png");
}

.location-list.aat .location-icon.nitro-lazy {
	background-image: none !important;
}

.location-list.logistics .location-icon {
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/uploads/2024/03/location_pin_72x100_logistics.png");
}

.location-list.logistics .location-icon.nitro-lazy {
	background-image: none !important;
}

.location-list.patrick .location-icon {
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/uploads/2024/03/location_pin_72x100_patrick.png");
}

.location-list.patrick .location-icon.nitro-lazy {
	background-image: none !important;
}

.location-list.ports .location-icon {
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/uploads/2024/03/location_pin_72x100_ports.png");
}

.location-list.ports .location-icon.nitro-lazy {
	background-image: none !important;
}

/* » MODULE: Timeline
**************************************************/
.block--timeline .item-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 6px minmax(0, 1fr);
}

.block--timeline .item-column.image {
	padding-right: var(--space--sm);
	padding-bottom: var(--space--sm);
}

.block--timeline .item-column.words {
	padding-left: var(--space--sm);
	padding-bottom: var(--space--sm);
}

.block--timeline .item-column.image .inner {
	aspect-ratio: 1;
	overflow: hidden;
}

.block--timeline .image img {
	width: 100%;
	height: 100%;
	max-height: 100%;
	object-fit: cover;
	object-position: center;
}

.block--timeline .separator {
	position: relative;
	background-color: var(--wp--preset--color--002);
}

.block--timeline .separator .inner {
	background-color: var(--wp--preset--color--002);
	position: absolute;
	height: 30px;
	top: 20%;
	left: -12px;
	right: -12px;
}

.block--timeline .words .inner {
	background-color: var(--wp--preset--color--001);
	color: white;
	height: 100%;
	padding: 50px;
	aspect-ratio: 1;
	overflow-y: auto;
}

.block--timeline .words .year {
	font-size: 85px;
	font-weight: 600;
	color: transparent;
	-webkit-text-stroke: 2px var(--wp--preset--color--002);
	line-height: 1;
	margin-bottom: 30px;
}

.block--timeline .words .heading {
	line-height: 1;
	margin-bottom: 10px;
}

.block--timeline .words .text {
	font-size: 90%;
	margin-bottom: var(--space--sm);
}

/* --> tablet view */
@media only screen and (max-width: 992px) {
	.block--timeline .item-row {
		grid-template-columns: 6px 1fr;
	}
	
	.block--timeline .separator {
		order: -1;
	}
	
	.block--timeline .words img {
		width: 100%;
		aspect-ratio: 1;
		object-fit: cover;
		object-position: center;
	}
	
	.block--timeline .words {
		margin-bottom: 30px;
	}
	
	.block--timeline .words .inner {
		height: auto;
		padding: 50px;
		aspect-ratio: unset;
		overflow-y: visible;
	}
}

/* » ------------------------------------------- */

/* » PAGE: Front Page
**************************************************/
body.home .imapsZoomControl-group {
	display: none;
}

/* --> mobile */
@media only screen and (max-width: 992px) {
	.investor-center-block .graph {
		order: -1;
		margin-left: -20px;
		margin-right: -20px;
	}
	
	.investor-center-block .graph .home-sharelink {
		padding: 0 !important;
	}
}

/* » PAGE: Single Posts
**************************************************/
body.single .narrow-content {
	padding-left: var(--space--lg);
	padding-right: var(--space--lg);
	margin-bottom: var(--space--lg);
}

body.single h1.entry-title {
	margin-bottom: 0;
}

body.single #zone__content img.wp-post-image {
	display: block;
	aspect-ratio: 16/9;
	object-fit: cover;
	width: 100%;
	height: unset;
	margin-bottom: var(--space--lg);
}

body.single .post-date {
	font-size: 26px;
	font-weight: 400;
	display: inline-block;
	margin-top: var(--space--xs);
}

body.single .card-label {
	background-color: var(--wp--preset--color--002);
	padding: 10px 30px;
	width: fit-content;
	color: var(--wp--preset--color--001);
	font-weight: 600;
	font-size: 16px;
	text-align: right;
	display: inline-block;
	margin-left: 15px;
	position: relative;
}

body.single .card-label::before {
	content: "";
	font-family: "fontawesome-pro-regular";
	display: inline-block;
	margin-right: 10px;
}

body.single .post-navigation .nav-links {
	display: flex;
	justify-content: space-between;
}

/* --> tablet view */
@media only screen and (max-width: 992px) {
	body.single .narrow-content {
		padding-left: var(--site-margin);
		padding-right: var(--site-margin);
		margin-bottom: var(--space--md);
	}
	
	body.single .card-label {
		display: block;
		margin: 0;
	}
	
	body.single .post-navigation .nav-links {
		flex-direction: column;
		display: flex;
		justify-content: space-between;
	}
}

/* » Single Post Variation: Event */
body.single.single-event .block--title::after {
	margin: 30px 0;
}

body.single.single-event .post-date {
	display: block;
	margin-top: unset;
	margin-bottom: var(--space--lg);
}

/* » OVERRIDES: Misc
**************************************************/

/*bootstrap*/
@media (min-width: 1400px) {
	body :is(.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl) {
		max-width: 1200px;
	}
}

body :is(.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl) {
	--bs-gutter-x: 0;
}

/* --> tablet view */
@media only screen and (max-width: 992px) {
	.wp-block-column:empty {
		display: none;
	}
}

/* sharelink */
.home-sharelink {
	display: flex;
	align-items: center;
	height: 100% !important;
}

/* modal plugin */
body .bod-block-popup-wrap .bod-block-popup.size-l {
	width: 70%;
}

/* GRAVITY FORMS TIDY-UPS */
.gform_wrapper .ginput_container_select, .gform_wrapper .ginput_container_phone, .gform_wrapper .gfield--type-date, .gform_wrapper .gfield--type-form {
	margin-bottom: var(--space--sm);
}

.gform_wrapper.gravity-theme .gfield textarea {
	border: solid 2px var(--wp--preset--color--002);
	border-radius: 4px;
}

.gpnf-modal .gpnf-modal-header, .gpnf-modal .tingle-btn, .gpnf-modal .tingle-btn--default {
	color: var(--wp--preset--color--001);
}

.gpnf-modal .tingle-btn--default {
	background-color: #ccc !important;
}

.gform-icon--circle-error:before {
	margin-left: -45px;
}

/* CONTAINER DIMENSIONS TABLE */
.container-dimensions-grid {
	margin-bottom: 30px;
}

.container-dimensions-grid th, .container-dimensions-grid tr td:first-child {
	background: var(--wp--preset--color--001);
	color: var(--wp--preset--color--002);
	font-weight: 600;
	text-transform: uppercase;
	padding-top: 10px;
	padding-bottom: 10px;
	border: solid 1px white;
	font-size: 14px;
}

.container-dimensions-grid td {
	border: solid 1px grey;
	padding: 5px;
}

@media (max-width: 1000px) {
	/* Container Dimensions mobile */
	.container-dimensions-grid th {
		display: none;
	}
	
	.container-dimensions-grid td {
		display: block;
		padding: 10px;
		text-align: center;
	}
	
	.container-dimensions-grid tr td:first-child {
		font-size: 16px;
	}
	
	.container-dimensions-grid td:before {
		content: attr(data-th);
		display: block;
		text-align: center;
		font-weight: bold;
		font-size: 1em;
	}
}

/* VIMEO VIDEO BLOCK - CUSTOM IMPLEMENTATION */
.vimeo-block {
	position: relative;
	margin-bottom: 2rem;
}

.vimeo-block .vimeo-trigger {
	position: relative;
	cursor: pointer;
	margin: 0;
}

.vimeo-block .vimeo-trigger img {
	width: 100%;
	height: auto;
	display: block;
}

.vimeo-block .vimeo-trigger:after {
	content: "";
	width: 100px;
	height: 70px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-image: url("https://cdn-ilbcdbj.nitrocdn.com/OokOIKHYKbGAQxUXdmCnkCaBMApUpTKS/assets/images/optimized/rev-7673b19/qube.com.au/wp-content/themes/qube/assets/images/icon-play-solid.png");
	background-size: 40px;
	background-repeat: no-repeat;
	background-color: rgba(255, 210, 0, .7);
	background-position: 53% 50%;
	border-radius: 8px;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, .5);
	transition: background-color .3s ease;
}

.vimeo-block .vimeo-trigger:hover:after {
	background-color: rgba(255, 210, 0, 1);
}

.vimeo-wrapper {
	position: relative;
	width: 100%;
}

.vimeo-ratio-16-9 {
	padding-bottom: 56.25%;
}

.vimeo-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.vimeo-admin-notice {
	background: #f0f0f0;
	padding: 10px;
	text-align: center;
	border: 1px dashed #ccc;
}

/* Modal specific styles */
.vimeo-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .8);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vimeo-modal-container {
	position: relative;
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.vimeo-modal-close {
	position: absolute;
	top: -40px;
	right: -40px;
	color: #fff;
	font-size: 30px;
	cursor: pointer;
	z-index: 10;
}

.vimeo-modal-close::before {
	content: "×";
	font-size: 48px;
}

@media only screen and (max-width: 768px) {
	.vimeo-block .vimeo-trigger:after {
		width: 60px;
		height: 60px;
		background-size: 30px;
	}
}

/* CLASSIC MENU FOR /login-book/ PAGE */
.wp-classic-menu-block>.menu {
	line-height: 2rem;
}

.wp-classic-menu-block>.menu li {
	display: block;
	margin-left: 1em;
}

.wp-classic-menu-block > .menu li:before {
	content: "–";
	position: absolute;
	left: -1em;
}

/* MARGIN UNDER LISTS */
.wp-block-columns ul, .wp-block-columns ol {
	margin-bottom: 12px;
}

/* TABLE OF CONTENTS STICKY BLOCK USED ON TERMS AND CONDITIONS AND SUSTAINABILITY PAGE */
@media only screen and (max-width: 781px) {
	.toc-container :nth-child(1) {
		order: 2;
	}
	
	.toc-container :nth-child(2) {
		order: 1;
	}
}

.toc-block {
	position: sticky;
	top: 160px;
}

/* TEMP FIX ON G FORM IN FOOTER */
#zone__footer .gform_wrapper .gform_footer:has(.gform_image_button) {
	bottom: -10px;
}
