@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://use.typekit.net/czq5lcx.css');

:root {
	--exp-light-grey: #f1f1f1;
	--exp-grey: #aab9be;
	--exp-mid-grey: #778f97;
	--exp-dark-grey: #2b2c2e;
	--exp-light-grey-rgb: 241, 241, 241;
	--exp-grey-rgb: 170, 185, 190;
	--exp-mid-grey-rgb: 119, 143, 151;
	--exp-dark-grey-rgb: 43, 44, 46;

	--exp-nav-height: 72px;
	--exp-nav-padding: 25px;
}

@media screen and (min-width: 1024px) {
	:root {
		--exp-nav-padding: 30px;
		--exp-nav-height: 100px;
	}
}

.margin-none:not(section):not(aside):not(footer) {
	margin: 0;
}

.padding-none:not(section):not(aside):not(footer) {
	padding: 0;
}

.padding-vertical:not(section):not(aside):not(footer) {
	padding-top: 30px !important;
	padding-bottom: 30px !important;
}

.padding:not(section):not(aside):not(footer) {
	padding: 30px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'indivisible', sans-serif;
	background-color: var(--exp-light-grey);
	color: var(--exp-dark-grey);
	overflow-x: hidden;
}

.site {
	overflow-x: hidden;
	position: relative;
	z-index: 2;
}

.site-diagonal {
	--site-diagonal: 33vw;
	position: absolute;
	display: none;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.site-diagonal::before {
	content: '';
    position: absolute;
    top: calc(0vw - (var(--site-diagonal) / 2));
    right: 0;
    width: 75vw;
    height: var(--site-diagonal);
    rotate: -45deg;
    background: transparent;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    transform-origin: center right;
}

.page-container {
	display: flex;
	flex-direction: column;
	min-height: 80vh;

	align-items: center;
	justify-content: center;
}

.content-container {
	max-width: 1240px;
	margin: 0 auto;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

section, aside, footer {
	--block-padding: 35px;

	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

header + main > section:first-child {
	padding-top: var(--exp-nav-height);
}

aside {
	overflow-x: hidden;
}

.margin-top:is(section, aside, footer) {
	margin-top: var(--block-padding);
}

.margin-bottom:is(section, aside, footer) {
	margin-bottom: var(--block-padding);
}

.margin-vertical:is(section, aside, footer) {
	margin-top: var(--block-padding);
	margin-bottom: var(--block-padding);
}

.padding-top:is(section, aside, footer) {
	padding-top: var(--block-padding);
}

.padding-bottom:is(section, aside, footer) {
	padding-bottom: var(--block-padding);
}

.padding-vertical:is(section, aside, footer) {
	padding-top: var(--block-padding);
	padding-bottom: var(--block-padding);
}

.border-top:is(section, aside, footer) {
	border-top: 1px solid var(--exp-grey);
}

.border-bottom:is(section, aside, footer) {
	border-bottom: 1px solid var(--exp-grey);
}

/* -- Experia Blocks -- */
.experia-block {
	position: relative;
	margin: 20px 0;
}

.experia-block:first-child {
	margin-top: 0 !important;
}

.experia-block:last-child {
	margin-bottom: 0 !important;
}

.experia-block-content {
	/* padding: 40px; */
	width: 100%;
	position: relative;
	z-index: 2;
	color: #2b2c2e;
}

.experia-block-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.experia-block-shape {
	position: absolute;
	bottom: 0;
	right: 0;
	width: calc(100% + 20px);
	height: calc(100% + 20px);
	filter: url(#round);
}

.experia-corner {
	width: 100%;
	height: 100%;
	background-color: white;
	clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0% 100%);
}

.experia-image {
	position: relative;
	overflow: hidden;
}

.experia-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.active {
	transition: all 0.3s ease;
}

/* Shadow */
.has-shadow {
	filter: drop-shadow(0px 10px 15px rgb(0 0 0 / 0.15));
}

.has-shadow-small {
	filter: drop-shadow(0px 3px 6px rgb(0 0 0 / 0.07));
}

/* Safari fix */
@media screen and (-webkit-min-device-pixel-ratio: 0) { 
	::i-block-chrome,.has-shadow,.has-shadow-small {
		filter: none !important;
	}
}

/* Corner Positions */
.experia-corner.top-left {
	clip-path: polygon(40px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 40px);
}

.experia-block-shape:has(.top-left) {
	bottom: auto;
	right: auto;
	top: 0;
	left: 0;
}

.experia-corner.top-right {
	clip-path: polygon(0% 0%, calc(100% - 40px) 0%, 100% 40px, 100% 100%, 0% 100%);
}

.experia-block-shape:has(.top-right) {
	bottom: auto;
	right: 0;
	top: 0;
}

.experia-corner.bottom-left {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 40px 100%, 0% calc(100% - 40px));
}

.experia-block-shape:has(.bottom-left) {
	right: auto;
	left: 0;
}

/* text color */
.text-dark-grey {
	color: var(--exp-dark-grey);
}

.text-grey {
	color: var(--exp-grey);
}

.text-light-grey {
	color: var(--exp-light-grey);
}

.text-mid-grey {
	color: var(--exp-mid-grey);
}

.text-white {
	color: #fff;
}

/* bg color */
.bg-dark-grey {
	background-color: var(--exp-dark-grey);
	color: #fff;
}

.bg-grey {
	background-color: var(--exp-grey);
	color: var(--exp-dark-grey);
}

.bg-light-grey {
	background-color: var(--exp-light-grey);
	color: var(--exp-dark-grey);
}

.bg-mid-grey {
	background-color: var(--exp-mid-grey);
	color: #fff;
}

.bg-white {
	background-color: #fff;
	color: var(--exp-dark-grey);
}

/* border color */
.border-dark-grey {
	border-color: var(--exp-dark-grey);
}

.border-grey {
	border-color: var(--exp-grey);
}

.border-light-grey {
	border-color: var(--exp-light-grey);
}

.border-mid-grey {
	border-color: var(--exp-mid-grey);
}

.border-white {
	border-color: #fff;
}

/* resets */

.menu > ul {
	padding: 0;
	margin: 0;
}

.menu > ul > li {
	list-style: none;
}

.page_item > a {
	text-decoration: none;
	color: #fff;
}


/* buttons */

.btn {
	display: inline-grid;
	grid-template-columns: 1fr;
	align-items: center;
	padding: 10px 0;
	margin-bottom: -10px;
	color: currentColor;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 700;
	font-size: 16px;
	gap: 7px;
	text-box: trim-both cap alphabetic;
	transition: .2s;
}

.btn > .ri-arrow-right-down-line {
	transition: rotate .2s, translate .2s;
}

.btn-grey {
	color: var(--exp-mid-grey);
}

.btn-white {
	color: #fff;
}

@media(hover: hover) and (pointer: fine) {
	.btn:hover {
		color: black;
	}

	.btn:hover > .ri-arrow-right-down-line {
		rotate: -45deg;
		translate: 0 -2px;
	}
	
	.bg-dark-grey .btn {
		color: var(--exp-grey);
	}

	.bg-mid-grey .btn {
		color: var(--exp-light-grey);
	}

	.btn-grey:hover {
		color: var(--exp-dark-grey);
	}

	.btn-white:hover {
		color: var(--exp-grey);
	}
}

.btn:has(i:last-child) {
	display: inline-grid;
	grid-template-columns: 1fr 24px;
}

.icon-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 5px;
	column-gap: var(--grid-gap);
	grid-auto-rows: max-content;
}

.icon-list > * {
	display: grid;
	grid-template-columns: 24px 1fr;
	place-content: start;
	place-items: start;
	gap: 10px;
	transition: .2s;
}

.icon-list i {
	font-size: 24px;
	align-self: stretch;
	line-height: 1;
}

.contact-list .icon-list i {
	color: var(--exp-grey);
}

@media(hover: hover) and (pointer: fine) {
	.icon-list > a:hover {
		gap: 17px;
	}
}


/* BREAKPOINTS */
@media screen and (min-width: 576px) {
	section, aside, footer {
		--block-padding: 40px;
	}

	.icon-list.columns-2 {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-list .icon-list {
		grid-auto-flow: row dense;
	}

	.contact-list .columns-2 .single-line {
		grid-column: 1;
	}

	.contact-list .columns-2 .multi-line {
		grid-row: span 3;
	}
}

@media screen and (max-width: 767px) {
	.contact-list .columns-3 .multi-line {
		border-top: 1px solid var(--exp-mid-grey);
		padding-top: 18px;
		margin-top: 12px;
	}
}

@media screen and (min-width: 768px) {
	section, aside, footer {
		--block-padding: 45px;
	}

	.site-diagonal {
		display: block;
	}

	.icon-list.columns-3 {
		grid-template-columns: repeat(3, 1fr);
	}

	.contact-list .icon-list {
		grid-auto-flow: row dense;
	}

	.contact-list .columns-3 .single-line {
		grid-column: 1;
	}

	.contact-list .columns-3 .multi-line {
		grid-row: span 3;
	}
}

@media screen and (min-width: 1024px) {
	section, aside, footer {
		--block-padding: 50px;
	}
}

@media screen and (min-width: 1280px) {
	section, aside, footer {
		--block-padding: 60px;
	}

	.site-diagonal {
		--site-diagonal: 25vw;
	}
}

@media screen and (min-width: 1540px) {
	section, aside, footer {
		--block-padding: clamp(70px, 7vw, 100px);
	}
}
