:root {
  --primary-color: #866DAB;
  --secondary-color: #eaaa88;
  --grey-dark: #212122;
}

/* figtree-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300;
  src: url('../webfonts/figtree-v9-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* figtree-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 300;
  src: url('../webfonts/figtree-v9-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* figtree-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/figtree-v9-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* figtree-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 400;
  src: url('../webfonts/figtree-v9-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* figtree-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 500;
  src: url('../webfonts/figtree-v9-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* figtree-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 500;
  src: url('../webfonts/figtree-v9-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* figtree-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 700;
  src: url('../webfonts/figtree-v9-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* figtree-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 700;
  src: url('../webfonts/figtree-v9-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Default */

body {
  font-family: 'Figtree', sans-serif;
}

.wp-block-group.has-background {
	padding: 100px 0;
}

/* Header */

header {
	padding: 15px 0;
}

header nav ul {
	margin: 0;
	padding: 0;
	text-align: right;
}

header nav ul li {
	display: inline-block;
	list-style: none;
	margin-left: 15px;
}

header nav ul li a {
	color: #000000;
	display: block;
	transition: all 0.3s;
	text-decoration: none;
}

header nav ul li a:hover,
header nav ul li.current_page_item a {
	text-decoration: none;
	color: var(--primary-color);
}

header nav ul li.current_page_item a {
	font-weight: 500;
}

header nav ul li.button a {
	padding: 10px 15px;
	border-radius: 50px;
	background-color: var(--primary-color);
	border: 2px solid var(--primary-color);
	color: #ffffff;
	font-weight: 500;
}

header nav ul li.button a:hover {
	background-color: transparent;
	color: var(--primary-color);
}

/* Text */

section.text {
	font-size: 18px;
}

section.text h2 {
	font-size: 70px;
}

/* Quote */

section.quote {
	font-size: 40px;
	font-weight: 300;
	font-style: italic;
	text-align: center;
	line-height: 1.2;
}

/* Button */

a.button {
	padding: 10px 15px;
	border-radius: 50px;
	background-color: var(--primary-color);
	border: 2px solid var(--primary-color);
	color: #ffffff;
	font-weight: 500;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
	font-size: 18px;
}

a.button:hover {
	background-color: transparent;
	color: var(--primary-color);
}

/* Teaser */

section.teaser .row {
	column-gap: 150px;
}

section.teaser .teaser_single {
	margin-bottom: 30px;
	text-align: center;
	width: calc(33.33% - 100px);
	flex: 0 0 calc(33.33% - 100px);
	max-width: calc(33.33% - 100px);	
}

section.teaser .teaser_single .teaser_icon {
	width: 120px;
	height: 120px;
	border-radius: 100%;
	padding: 30px;
	margin: 0 auto 15px auto;
	display: block;	
}

section.teaser .teaser_single .teaser_icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

section.teaser .teaser_single strong {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.teaser .teaser_single a:has(strong) {
	color: #000000;
	text-decoration: none;
}

section.teaser .teaser_single a:has(strong) i {
	transition: all 0.3s;
}

section.teaser .teaser_single a:has(strong):hover i {
	margin-left: 15px;
}

/* Locations */

section.locations .location_single {
	text-align: center;
}

section.locations .location_single .location_inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

section.locations .location_single .location_image img {
	width: 360px;
	max-width: 100%;
	aspect-ratio: 1/1;
	border-radius: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	margin: auto;
}

section.locations .location_single .location_text {
	background-color: #ffffff;
	border-radius: 30px;
	padding: 30px;
	display: inline-block;
	margin-top: -30px;
	position: relative;
}

section.locations .location_single .location_text::after {
	width: calc(100% - 60px);
	bottom: 15px;
	left: 30px;
	content: '';
	background-color: var(--secondary-color);
	height: 2px;
	position: absolute;
}

section.locations .location_single .location_text p {
	margin-bottom: 0;
}

section.locations .location_single .location_button {
	margin-top: -20px;
	position: relative;
}

section.locations .location_single .location_button a.button {
	position: relative;
	z-index: 8;
}

section.locations .location_single .location_button a.button:hover {
	background-color: var(--primary-color);
	color: #ffffff;
	transform: scale(1.1);
}

section.locations .location_single .location_button::before {
	width: 30px;
	height: 5px;
	top: 0;
	left: -5px;
	content: '';
	position: absolute;
	background-color: #ffffff;
	z-index: 7;
}

section.locations .location_single .location_button::after {
	width: 30px;
	height: 5px;
	top: 0;
	right: -5px;
	content: '';
	position: absolute;
	background-color: #ffffff;
	z-index: 7;
}

/* CTA */

section.cta .cta_inner {
	border-radius: 30px;
	background-size: cover;
	background-position: center;
}

section.cta .cta_inner .cta_overlay {
	padding: 50px;
	background-color: rgba(255,255,255,0.3);
}

section.cta .cta_inner .cta_overlay .cta_text {
	padding: 50px;
	border-radius: 30px;
	width: 50%;
	background-color: rgba(255,255,255,0.8);
}

/* Footer */

footer .footer_top {
	padding: 75px 0;
	background-color: var(--grey-dark);
	color: #ffffff;
}

footer .footer_top strong.headline {
	color: var(--secondary-color);
	font-weight: 500;
	display: block;
}

footer .footer_top strong.headline:has(+nav) {
	margin-bottom: 30px;
}

footer .footer_top nav ul {
	margin: 0;
	padding: 0;
}

footer .footer_top nav ul li {
	list-style: none;
	margin-bottom: 15px;
}

footer .footer_top nav ul li a {
	color: #ffffff;
	text-decoration: none;
	transition: all 0.3s;
}

footer .footer_top nav ul li a:hover {
	color: var(--secondary-color);
}

footer .footer_top a.button {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
}

footer .footer_top a.button:hover {
	border-color: var(--secondary-color);
	color: var(--secondary-color);
	background-color: transparent;
}

footer .footer_top .footer_left {
	display: flex;
	gap: 100px;
	padding-right: 50px; 
}

footer .footer_top .footer_left .footer_column {
	width: 50%;
}

footer .footer_top .footer_left .footer_column img {
	width: 250px;
	max-width: 100%;
	margin-bottom: 30px;
}

footer .footer_top .footer_left .footer_column:has(img) {
	text-align: center;
}

footer .footer_top .footer_left .footer_column:has(img) p {
	opacity: 0.6;
	margin-bottom: 30px;
}

footer .footer_top .footer_left .footer_column .location {
	margin-bottom: 50px;
}

footer .footer_top .footer_left .footer_column .location:last-child {
	margin-bottom: 0;
}

footer .footer_top .footer_left .footer_column .location strong {
	font-weight: 500;
}

footer .footer_top .footer_left .footer_column .location a {
	color: #ffffff;
	transition: all 0.3s;
}

footer .footer_top .footer_left .footer_column .location a:hover {
	opacity: 0.8;
	text-decoration: none;
}

footer .footer_top .footer_right {
	display: flex;
	flex-wrap: wrap;
	column-gap: 100px;
	padding-left: 50px;
}

footer .footer_top .footer_right ul.social {
	width: 100%;
	margin: 30px 0 0 0;
	padding: 0;
	text-align: right;
}

footer .footer_top .footer_right ul.social li {
	display: inline-block;
	list-style: none;
	margin-left: 10px;
}

footer .footer_top .footer_right ul.social li a {
	background-color: var(--secondary-color);
	font-size: 30px;
	line-height: 1;
	border-radius: 100%;
	color: #ffffff;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	text-decoration: none;
	border: 2px solid var(--secondary-color);
}

footer .footer_top .footer_right ul.social li a:hover {
	background-color: transparent;
	color: var(--secondary-color);
}

footer .footer_bottom {
	background-color: var(--secondary-color);
	color: #ffffff;
	padding: 10px 0;
	font-size: 14px;
}

footer .footer_bottom .backlink {
	text-align: right;
}

footer .footer_bottom .backlink a {
	color: #ffffff;
	transition: all 0.3s;
}

footer .footer_bottom .backlink a:hover {
	opacity: 0.8;
	text-decoration: none;
}