:root {
  --primary-color: #4B74B8;
  --primary-color-dark: #0E2443;
  --grey: #838383;
  --grey-light: #D9D9D9;
}

/* 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+ */
}

*:focus {
	outline: none;
}

* {
	scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-family: 'Figtree', sans-serif;
  color: var(--primary-color-dark)
}

main {
	min-height: calc(100vh - 724px);
}

.wp-block-columns {
	max-width: 1440px;
	margin: 0 auto 0 auto;
	padding: 0 15px;
}

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

/* Header */

header {
	box-shadow: 4px 2px 1px 0 rgba(70,70,70,.24);
}

header .header_top {
	padding: 10px 0;
	background-color: var(--primary-color-dark);
	color: #ffffff;
	text-align: right;
}

header .header_top .menu-metamenue-container {
	display: inline-block;
}

header .header_top ul {
	margin: 0;
	padding: 0;
	display: inline-block;
}

header .header_top ul li {
	display: inline-block;
	margin-right: 20px;
}

header .header_top ul li a {
	color: #ffffff;
	text-decoration: none;
	transition: all 0.3s;
}

header .header_top ul li a:hover {
	color: var(--primary-color);
}

header .header_top a.button:hover {
	color: var(--primary-color);
	background-color: #ffffff;
}

header .header_bottom {
	padding: 20px 0;
}

header .header_bottom .logo img {
	max-width: 100%;
	width: 225px;
}

header .header_bottom .navigation nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

header .header_bottom .navigation nav > div {
	height: 100%;
}

header .header_bottom .navigation ul {
	margin: 0;
	padding: 0;
	height: 100%;
}

header .header_bottom .navigation ul li {
	list-style: none;
	display: inline-block;
	height: 100%
}

header .header_bottom .navigation ul li a {
	color: var(--primary-color-dark);
	font-weight: 500;
	line-height: 1;
	font-size: 18px;
	text-decoration: none;
	transition: all 0.3s;
	display: block;
	height: 100%;
	padding: 20px 10px;
}

header .header_bottom .navigation ul li a:hover,
header .header_bottom .navigation ul li.current_page_item a,
header .header_bottom .navigation ul li.current-page-ancestor > a {
	color: var(--primary-color);
}

header .header_bottom .navigation ul li.menu-item-has-children a {
	transition: color 0.3s;
}

header .header_bottom .navigation ul li.menu-item-has-children:hover,
header .header_bottom .navigation ul li.menu-item-has-children:hover a,
header .header_bottom .navigation ul li.menu-item-has-children a:hover {
	background-color: var(--primary-color);
	color: #ffffff;
}

header .header_bottom .navigation ul li.menu-item-has-children:hover a:hover {
	color: var(--primary-color-dark);
}

header .header_bottom .navigation ul li.menu-item-has-children > a::after {
	content: "\f078";
	font-family: 'Font Awesome 5 Free';
  	font-weight: 900;	
  	margin-left: 10px;
}

header .header_bottom .navigation ul li.current_page_item > a {
	font-weight: 700;
}

header .header_bottom .navigation ul li ul {
	position: absolute;
	left: 0;
	top: 100%;
	height: auto;
	display: none;
	flex-wrap: wrap;
	align-items: stretch;
	z-index: 999;
	background-color: var(--primary-color);
	padding: 15px;
}

header .header_bottom .navigation ul li:hover ul {
	display: flex;
}

header .header_bottom .navigation ul ul li {
	width: 33.33%;
	margin: 0;
	border-bottom: 1px solid rgba(14, 36, 67, 0.3);
	height: initial;
}

header .header_bottom .navigation ul ul li a {
	color: #ffffff;	
}

header .header_bottom .navigation ul li.menu-item-has-children ul li a {
	transition: all 0.3s;
}

header .header_bottom .navigation ul li.menu-item-has-children ul li a:hover {
	color: var(--primary-color-dark);
}

header .mobile_nav_open {
  font-size: 30px;
  color: var(--primary-color-dark);
  cursor: pointer;
  display: none;
  position: absolute;
  right: 15px;
  top: calc(50% - 22.5px);
}

.mobile_nav_headline {
  display: none;
  text-transform: uppercase;
  cursor: pointer;
  padding: 15px 10px;
  background-color: var(--primary-color-dark);
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  font-size: 22px;
}

/* Button */

a.button {
	display: inline-block;
	background-color: var(--primary-color);
	color: #ffffff;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s;
	padding: 10px 20px;
}

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

.darkbackground a.button:hover {
	background-color: #ffffff;
	color: var(--primary-color);
}

.wp-block-group.has-background a.button:hover {
	background-color: #ffffff;
	color: var(--primary-color);
}

a.button.outline_button {
	background-color: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

a.button.outline_button:hover {
	background-color: var(--primary-color);
	color: #ffffff;
}

/* Hero */

section.hero {
	position: relative;
}

section.hero .imageslider {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

section.hero .imageslider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

section.hero .imageslider .slick-list,
section.hero .imageslider .slick-track {
	height: 100%;
}

section.hero .hero_overlay {
	width: 100%;
	padding: 150px 0;
	background-color: rgba(14, 36, 67, 0.5);
	position: relative;
	color: #ffffff;
}

section.hero .hero_overlay .hero_text {
	font-size: 20px;
	margin-bottom: 50px;
}

section.hero .hero_overlay .hero_text h1 {
	font-size: 96px;
	font-weight: 400;
	line-height: 1;
	hyphens: auto;
}

section.hero .hero_overlay .hero_text h1 strong {
	display: block;
	font-weight: 700;
}

section.hero .hero_overlay .hero_teaser .slick-track {
	display: flex;
	align-items: stretch;
	margin-bottom: 30px;
}

section.hero .hero_overlay .hero_teaser .slick-arrow {
	margin: 0 5px;
	font-size: 20px;
	cursor: pointer;
	opacity: 0.8;
	transition: all 0.3s;
}

section.hero .hero_overlay .hero_teaser .slick-arrow:hover {
	opacity: 1;
}

section.hero .hero_overlay .hero_teaser .slick-dots-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

section.hero .hero_overlay .hero_teaser ul.slick-dots {
	text-align: center;
	margin: 0;
	padding: 0;
	min-height: 15px;
	display: inline-flex;
	align-items: center;
}

section.hero .hero_overlay .hero_teaser li {
	display: inline-block;
	list-style: none;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 100%;
	background-color: #ffffff;
	opacity: 0.8;
	cursor: pointer;
	transition: all 0.3s;
}

section.hero .hero_overlay .hero_teaser li:hover {
	opacity: 1;
}

section.hero .hero_overlay .hero_teaser li.slick-active {
	opacity: 1;
	width: 15px;
	height: 15px;	
}

section.hero .hero_overlay .hero_teaser button {
	display: none;
}

section.hero .hero_overlay .hero_teaser .teaser_single {
	padding: 0 15px;
	height: initial;
}

section.hero .hero_overlay .hero_teaser .teaser_single a {
	background-color: #ffffff;
	color: var(--grey);
	text-decoration: none;
	display: block;
	padding: 15px;
	border-radius: 15px;
	height: 100%;
	transition: all 0.3s;
}

section.hero .hero_overlay .hero_teaser .teaser_single a:hover {
	opacity: 0.8;
}

section.hero .hero_overlay .hero_teaser .teaser_single a strong {
	font-size: 26px;
	font-weight: 500;
	display: block;
	line-height: 1.2;
	hyphens: auto;
	margin-bottom: 10px;
	color: var(--primary-color-dark);
}

section.hero .hero_overlay .hero_teaser .teaser_single a span {
	color: var(--primary-color);
}

/* Banner */

section.banner {
	position: relative;
	font-size: 20px;
}

section.banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

section.banner .banner_overlay {
	color: #ffffff;
	background-color: rgba(14, 36, 67, 0.5);
	position: relative;
}

section.banner .banner_overlay .banner_text {
	min-height: 515px;
	padding: 115px 0;
	align-items: center;
	text-align: center;
}

section.banner .banner_overlay h1 {
	font-size: 64px;
	font-weight: 400;
	line-height: 1;
}

/* Anchors */

.anchors {
	text-align: center;
	background-color: var(--primary-color-dark);
	padding: 30px 15px 20px 15px;
}

.anchors a {
	display: inline-block;
	color: #ffffff;
	font-size: 18px;
	margin: 0 15px 10px 0;
	text-decoration: none;
	transition: all 0.3s;
}

.anchors a:hover {
	color: var(--primary-color);
}

.anchors a::before {
	content: "\f061";
	font-family: 'Font Awesome 5 Free';
  	font-weight: 900;
  	margin-right: 10px;
}

/* Headline */

section.headline h2 {
	margin: 0;
	padding: 0 0 15px 0;
	border-bottom: 2px solid var(--grey-light);
}

/* More Content */

section.morecontent {
	overflow: hidden;
}

section.morecontent.darkbackground {
	background-color: var(--primary-color-dark);
	color: #ffffff;
}

section.morecontent .morecontent_text {
	padding: 100px 15px;
	min-height: 33vw;
	display: flex;
	align-items: center;
}

section.morecontent .morecontent_text h2,
section.morecontent .morecontent_text h3 {
	font-size: 62px;
	line-height: 1.1;
	font-weight: 400;
	margin-bottom: 30px;
	hyphens: auto;
}

section.morecontent .morecontent_text p {
	font-size: 20px;
	margin-bottom: 30px;
	opacity: 0.6;
}

section.morecontent .morecontent_text a.button {
	font-size: 20px;
}

section.morecontent .morecontent_image {
	position: relative;
}

section.morecontent .morecontent_image img {
	width: 50vw;
	height: 50vw;
	position: absolute;
	object-fit: cover;
	border-radius: 100%;
	left: 100px;
	top: 100px;	
}

/* Accordion */

section.accordion .introduction {
	margin-bottom: 30px;
}

section.accordion .accordion_single {
	margin-bottom: 30px;
	background-color: #ffffff;
	color: var(--primary-color-dark);
	border-radius: 10px;
	transition: all 0.3s;
}

*:not(.has-background) > div > section.accordion .accordion_single {
	border: 1px solid var(--grey-light);
}

section.accordion .accordion_single .accordion_title {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px;
}

section.accordion .accordion_single .accordion_title h3 {
	line-height: 1.1;
	font-size: 24px
	font-weight: 500;
	margin: 0;
}

section.accordion .accordion_single .accordion_title i {
	transition: all 0.3s;
}

section.accordion .accordion_single.open .accordion_title i {
	transform: rotate(180deg);
}

section.accordion .accordion_single .accordion_content {
	display: none;
	padding: 20px;
	border-top: 1px solid var(--grey-light);
}

section.accordion .accordion_single .accordion_content a.button:hover {
	background-color: var(--primary-color-dark);
	color: #ffffff;
}

/* Jobs */

section.jobs .introduction {
	margin-bottom: 30px;
}

section.jobs .accordion_single {
	margin-bottom: 30px;
	background-color: #ffffff;
	color: var(--primary-color-dark);
	border-radius: 10px;
	transition: all 0.3s;
}

*:not(.has-background) > div > section.jobs .accordion_single {
	border: 1px solid var(--grey-light);
}

section.jobs .accordion_single .accordion_title {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px;
}

section.jobs .accordion_single .accordion_title h3 {
	line-height: 1.1;
	font-size: 24px
	font-weight: 500;
	margin: 0;
}

section.jobs .accordion_single .accordion_title i {
	transition: all 0.3s;
}

section.jobs .accordion_single.open .accordion_title i {
	transform: rotate(180deg);
}

section.jobs .accordion_single .accordion_content {
	display: none;
	padding: 20px;
	border-top: 1px solid var(--grey-light);
}

section.jobs .accordion_single .accordion_content strong {
	font-weight: 500;
	font-size: 20px;
}

section.jobs .accordion_single .accordion_content ul {
	padding-left: 30px;
}

section.jobs .accordion_single .accordion_content ul li {
	list-style: none;
	margin-bottom: 10px;
	position: relative;
}

section.jobs .accordion_single .accordion_content ul li::before {
	content: "\f058";
	font-family: 'Font Awesome 5 Free';
  	font-weight: 900;
  	color: var(--primary-color);
  	position: absolute;
  	top: 0;
  	left: -30px;
  	font-size: 20px;
}

section.jobs .accordion_single .accordion_content a.button:hover {
	background-color: var(--primary-color-dark);
	color: #ffffff;
}

.single-stellenanzeige section.jobs .accordion_single .accordion_title {
	display: none;
}

.single-stellenanzeige section.jobs .accordion_single .accordion_content {
	display: block;
	border-top: none;
}

/* Contact */

section.contact .asp .asp_inner {
	padding: 75px 30px 100px 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-color: var(--primary-color-dark);
	color: #ffffff;
	text-align: center;
	justify-content: center;
	border-radius: 15px;
}

section.contact .asp .asp_inner img {
	border-radius: 100%;
	display: block;
	margin: 0 auto 15px auto;
	width: 230px;
	object-fit: cover;
	height: 230px;
}

section.contact .asp .asp_inner strong,
section.contact .asp .asp_inner span,
section.contact .asp .asp_inner a {
	display: block;
	font-weight: 400;
}

section.contact .asp .asp_inner strong,
section.contact .asp .asp_inner span {
	font-size: 24px;
	margin-bottom: 10px;
	line-height: 1;
}

section.contact .asp .asp_inner span {
	margin-bottom: 15px;
	font-size: 20px;
}

section.contact .asp .asp_inner a {
	color: #ffffff;
	opacity: 0.6;
	transition: all 0.3s;
	text-decoration: none;
	font-weight: 300;
	font-size: 20px;
	line-height: 1;
	margin-bottom: 5px;
}

section.contact .asp .asp_inner a:hover {
	opacity: 1;
	color: var(--primary-color);
}

/* Projects */

section.projects .projectslider {
	margin: 0 -15px;
}

section.projects .projectslider .slick-track {
	display: flex;
	align-items: stretch;
	margin-bottom: 30px;
}

section.projects .projectslider .project_single {
	padding: 0 15px;
}

section.projects .projectslider .project_single .project_image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

section.projects .projectslider .project_single {
	height: initial;
}

section.projects .projectslider .project_single .project_inner {
	height: 100%;
}

section.projects .projectslider .project_single .project_info {
	padding: 30px;
	background-color: var(--primary-color-dark);
	color: #ffffff;
	height: calc(100% - 200px);
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;	
}

section.projects .projectslider .project_single .project_info strong.title {
	display: block;
	margin-bottom: 10px;
	line-height: 1.1;
	font-weight: 500;
	font-size: 18px;
}

section.projects .projectslider .project_single .project_info span.excerpt {
	display: block;
	margin-bottom: 10px;
	opacity: 0.6;
}

section.projects .projectslider .project_single .project_info a {
	color: var(--primary-color);
	transition: all 0.3s;
	text-decoration: none;
}

section.projects .projectslider .project_single .project_info a:hover {
	color: #ffffff;
}

section.projects .projectslider .slick-arrow {
	margin: 0 5px;
	font-size: 20px;
	cursor: pointer;
	opacity: 0.8;
	transition: all 0.3s;
}

section.projects .projectslider .slick-arrow:hover {
	opacity: 1;
}

section.projects .projectslider .slick-dots-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

section.projects .projectslider ul.slick-dots {
	text-align: center;
	margin: 0;
	padding: 0;
	min-height: 15px;
	display: inline-flex;
	align-items: center;
}

section.projects .projectslider li {
	display: inline-block;
	list-style: none;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 100%;
	background-color: var(--primary-color-dark);
	opacity: 0.8;
	cursor: pointer;
	transition: all 0.3s;
}

section.projects .projectslider li:hover {
	opacity: 1;
}

section.projects .projectslider li.slick-active {
	opacity: 1;
	width: 15px;
	height: 15px;
	background-color: var(--primary-color);
}

section.projects .projectslider button {
	display: none;
}

.keyfacts {
	text-align: center;
	background-color: var(--primary-color-dark);
	padding: 30px 15px; 
	color: #ffffff;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	font-size: 18px;
}

.keyfacts span i {
	margin-right: 10px;
	color: var(--primary-color);
}

/* News */

.blogpage section.banner {
	text-align: center;
	margin-bottom: 100px;
}

.blogpage section.loop {
	margin-bottom: 100px;
}

.blogpage section.headline {
	margin-bottom: 50px;
}

.blogpost_single {
	margin-bottom: 30px;
}

.blogpost_single .blogpost_inner {
	padding: 20px;
	border-radius: 20px;
	border: 1px solid var(--grey-light);
	position: relative;
	display: flex;
	gap: 30px;
}

.blogpost_single .blogpost_inner .blogpost_image {
	width: 150px;
}

.blogpost_single .blogpost_inner .blogpost_image img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 10px;
}

.blogpost_single .blogpost_inner .blogpost_info {
	width: calc(100% - 150px);
}

.blogpost_single .blogpost_inner .blogpost_info span.date {
	display: block;
	margin-bottom: 10px;
	color: var(--primary-color);
	line-height: 1;
}

.blogpost_single .blogpost_inner .blogpost_info span.date i {
	margin-right: 5px;
}

.blogpost_single .blogpost_inner .blogpost_info strong {
	display: block;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.1;
	margin-bottom: 5px;
}

.blogpost_single .blogpost_inner .blogpost_info span.excerpt {
	display: block;
	margin-bottom: 15px;
}

.blogpost_single .blogpost_inner a.linktext {
	color: var(--primary-color);
	transition: all 0.3s;
	text-decoration: none;
}

.blogpost_single .blogpost_inner a.linktext:hover {
	color: var(--primary-color-dark);
}

.blogpage section.loop .pages {
	font-size: 18px;
}

.blogpage section.loop .pages a {
	color: var(--primary-color);
	transition: all 0.3s;
	text-decoration: none;
}

.blogpage section.loop .pages a:hover {
	color: var(--primary-color-dark);
}

.blogpage section.loop .pages .current {
	font-weight: 700;
	color: var(--primary-color-dark);
}

.blogpage section.loop .pages > * {
	margin-right: 10px;
}

/* 404 */

.page_404 section.banner {
	text-align: center;
}

/* Forms */

form .formfield {
	margin-bottom: 15px;
}

form .formfield p {
	width: 100%;
	margin: 0;
}

form .formfield p label {
	margin-bottom: 3px;
	padding-left: 20px;
}

form .formfield .wpcf7-list-item {
	margin: 0;
}

form .formfield span.wpcf7-list-item-label {
	display: inline-block;
	margin: 0;
}

form .formfield input,
form .formfield textarea,
form .formfield select {
	width: 100%;
	background-color: #ffffff;
	border-radius: 50px;
	border: 1px solid var(--grey);
	padding: 10px 20px;
}

form .formfield select {
	appearance: none;
	cursor: pointer;
	background-image: url('/wp-content/themes/brenk/assets/img/chevron-down-solid.svg');
	background-size: 15px;
	background-repeat: no-repeat;
	color: var(--primary-color-dark);
	background-position: calc(100% - 15px) center;	
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-right: 35px;
}

form .formfield textarea {
	height: 250px;
	border-radius: 15px;
}

form .formfield input[type="checkbox"] {
	width: auto;
	display: inline-block;
	margin-right: 5px;
}

form .formfield input[type="submit"] {
	width: auto;
	background-color: var(--primary-color);
	color: #ffffff;
	transition: all 0.3s;
	border: none;
}

form .formfield input[type="submit"]:hover {
	background-color: var(--primary-color-dark);
}

form .formfield p .wpcf7-acceptance label {
	padding-left: 0;
	font-size: 14px;
}

.wp-block-group.has-background form .formfield input[type="submit"]:hover {
	background-color: #ffffff;
	color: var(--primary-color);
}

/* Locations */

section.locations #map_block {
	height: 100%;
	min-height: 500px;
	border-radius: 10px;
}

section.locations .location_single {
	margin-bottom: 30px;
	padding: 30px;
	border: 1px solid var(--grey-light);
	border-radius: 10px;
}

section.locations .location_single:last-child {
	margin-bottom: 0;
}

section.locations .location_single strong {
	font-size: 18px;
	font-weight: 500;
	display: block;
}

section.locations .location_single span {
	display: block;
}

section.locations .location_single ul.contact {
	margin: 15px 0;
	padding: 0;
}

section.locations .location_single ul.contact li {
	list-style: none;
}

section.locations .location_single ul.contact li a {
	color: var(--primary-color-dark);
	opacity: 0.8;
	text-decoration: none;
	transition: all 0.3s
}

section.locations .location_single ul.contact li a:hover {
	opacity: 1;
}

section.locations .location_single a.route {
	color: var(--primary-color);
}

/* ASP */

section.asp .asp_single {
	margin-bottom: 30px;
}

section.asp .asp_single .asp_inner {
	padding: 20px 55px 20px 20px;
	border-radius: 20px;
	background-color: var(--grey-light);
	position: relative;
	display: flex;
	gap: 30px;
}

.wp-block-group.has-background section.asp .asp_single .asp_inner {
	background-color: #ffffff;
	color: var(--primary-color-dark);
}

section.asp .asp_single .asp_inner .asp_image {
	width: 150px;
}

section.asp .asp_single .asp_inner .asp_image img {
	width: 100%;
	height: auto;
}

section.asp .asp_single .asp_inner .asp_info strong {
	display: block;
	font-size: 24px;
	line-height: 1.1;
	font-weight: 500;
	margin-bottom: 5px;
}

section.asp .asp_single .asp_inner .asp_info span {
	font-size: 22px;
	line-height: 1.1;
}

section.asp .asp_single .asp_inner .asp_info ul {
	margin: 15px 0 0 0;
	padding: 0;
}

section.asp .asp_single .asp_inner .asp_info ul li {
	list-style: none;
	margin-bottom: 10px;
	line-height: 1;
}

section.asp .asp_single .asp_inner .asp_info ul li a {
	color: var(--primary-color-dark);
	opacity: 0.6;
	text-decoration: none;
	transition: all 0.3s;
	font-size: 20px;
	line-height: 1;
}

section.asp .asp_single .asp_inner .asp_info ul li a:hover {
	opacity: 1;
}

section.asp .asp_single .asp_inner a.linkedin {
	position: absolute;
	top: 20px;
	right: 20px;
	color: var(--primary-color-dark);
	font-size: 30px;
	transition: all 0.3s;
}

section.asp .asp_single .asp_inner a.linkedin:hover {
	color: var(--primary-color);
}

/* Text */

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

section.text h2 {
	font-size: 64px;
	font-weight: 400;
}

section.text:has(h1) h2 {
	font-size: 2rem;
	font-weight: 500;
}

section.text ul {
	padding-left: 30px;
}

section.text ul li {
	list-style: none;
	margin-bottom: 10px;
	position: relative;
}

section.text ul li::before {
	content: "\f058";
	font-family: 'Font Awesome 5 Free';
  	font-weight: 900;
  	color: var(--primary-color);
  	position: absolute;
  	top: 0;
  	left: -30px;
  	font-size: 20px;
}

section.text a {
	color: var(--primary-color);
}

/* Files */

.file_single {
	margin-bottom: 30px;
}

.file_text {
	padding: 30px;
	border: 1px solid var(--grey-light);
	border-radius: 10px;
	height: 100%;
}

.file_text strong {
	display: block;
	line-height: 1.2;
	font-size: 23px;
	font-weight: 500;
	margin-bottom: 20px;
}

.file_text strong:has(+ span) {
	margin-bottom: 10px;	
}

.file_text span {
	display: block;
	line-height: 1.2;
	margin-bottom: 20px;
}

.file_text span a {
	color: var(--primary-color);
}

/* Image */

.imagewrap {
	width: 100%;
	height: 100%;
	position: relative;
}

.imagewrap img {
	width: 100%;
	height: auto;
}

.wp-block-column .imagewrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
	position: absolute;
}

/* Cards */

section.cards .introduction {
	margin-bottom: 30px;
}

section.cards .card_single {
	margin-bottom: 30px;
}

section.cards .card_single a {
	display: block;
	height: 100%;
	border-radius: 15px;
	text-decoration: none;
	position: relative;
	color: var(--primary-color-dark);
}

section.cards .card_single a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 15px;
}

section.cards .card_single a strong {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 15px;
	position: relative;
	padding: 30px;
	font-size: 30px;
	font-weight: 400;
	height: 100%;
	min-height: 250px;
	transition: all 0.3s;
	line-height: 1.2;
	background-color: rgba(217, 217, 217,0.8);
}

section.cards .card_single a:hover strong {
	background-color: rgba(217, 217, 217,1);	
}

section.cards .card_single.cta_card a strong {
	background-color: rgba(75, 116, 184, 0.8);	
	color: #ffffff;
}

section.cards .card_single.cta_card a:hover strong {
	background-color: rgba(75, 116, 184, 1);	
}

/* Logos */

.logo_slider {
  background-color: #ffffff;
  padding: 15px 0;
  position: relative;
}

.logo_slider::before {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	height: 100%;
	width: 100px;
	background: linear-gradient(90deg,rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0) 100%);
	z-index: 888;
}

.logo_slider::after {
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	height: 100%;
	width: 100px;
	background: linear-gradient(270deg,rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0) 100%);
	z-index: 888;
}

.logo_slider .logos_wrap img {
  height: 85px;
  padding: 15px 50px;
  object-fit: contain;
  filter: grayscale(1);
  transition: all 0.3s;
  max-width: 100%;
  display: block;
  margin: auto;
}

.logo_slider .logos_wrap img:hover {
  filter: grayscale(0);
}

/* CTA */

section.cta {
	text-align: center;
}

section.cta strong {
	font-size: 76px;
	display: block;
	line-height: 1.1;
	font-weight: 400;
	margin-bottom: 30px;
}

section.cta a.button {
	font-size: 22px
}

/* Search */

main.search {
	padding: 100px 0;
}

main.search h1 {
	font-size: 62px;
	font-weight: 400;
}

main.search .searchagain {
	padding: 30px 15px 50px 15px;
}

main.search .searchagain form {
	width: 100%;
	position: relative;
}

main.search .searchagain form input {
	width: 100%;
	border: 1px solid var(--grey-light);
	padding: 10px;
	border-radius: 10px;
	font-size: 20px;
}

main.search .searchagain form button {
	position: absolute;
	right: 15px;
	transition: all 0.3s;
	background: none;
	border: none;
	color: var(--primary-color);
	font-size: 20px;
	cursor: pointer;
	height: 40px;
	line-height: 40px;
	top: calc(50% - 20px);	
}

main.search .searchagain form button:hover {
	color: var(--primary-color-dark);
}

main.search .nav-tabs {
	border: none;
}

main.search .nav-tabs li {
	margin: 0 10px 10px 0;
}

main.search .nav-tabs li button {
	background-color: var(--primary-color-dark);
	color: rgba(255,255,255,0.6);
	border: 1px solid var(--primary-color-dark);
	transition: all 0.3s;
	border-radius: 10px;
}

main.search .nav-tabs li button:hover,
main.search .nav-tabs li button.active {
	background-color: var(--primary-color);
	color: #ffffff;
	border: 1px solid var(--primary-color);
}

main.search .tab-content {
	padding: 30px 0;
}

/* Footer */

footer {
	background-color: var(--primary-color-dark);
	padding: 100px 0 50px 0;
	color: #ffffff;
}

footer img {
	width: 225px;
	max-width: 100%;
	display: block;
	margin-bottom: 30px;
}

footer strong {
	display: block;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.1;
	margin-bottom: 15px;
}

footer p {
	opacity: 0.6;
	text-align: justify;
	hyphens: auto;
}

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

footer nav ul li {
	list-style: none;
	margin-bottom: 10px;
}

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

footer nav ul li a:hover {
	text-decoration: none;
	opacity: 1;
	color: var(--primary-color);
}

footer nav ul li.current_page_item a {
	color: #ffffff;
	opacity: 1;
}

footer .certificates nav ul li a::before {
	content: "\f1c1";
	font-family: 'Font Awesome 5 Free';
  	font-weight: 900;
  	margin-right: 10px;
}

footer ul.social {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;	
}

footer ul.social li {
	list-style: none;
	margin-bottom: 15px;
	display: inline-block;
}

footer ul.social li a {
	display: flex;
	align-items: center;
	background-color: rgba(255,255,255,0.25);
	color: #ffffff;
	transition: all 0.3s;
	text-decoration: none;
	line-height: 1;
	border-radius: 30px;
	padding: 5px;
}

footer ul.social li a:hover {
	opacity: 0.8;
}

footer ul.social li a i {
	display: inline-block;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	border-radius: 100%;
	background-color: var(--primary-color);
	color: var(--primary-color-dark);
	margin-right: 15px;
	font-size: 25px;
}

footer ul.social li a span {
	display: inline-block;
	margin-right: 15px;
}

footer .backlink {
	text-align: right;
	padding-top: 50px;
	font-size: 14px;
}

footer .backlink a {
	color: #ffffff;
	text-decoration: none;
	transition: all 0.3s;
}

footer .backlink a:hover {
	opacity: 0.8;
}

/* Responsive */

@media only screen and (min-width: 1920px) {

	section.morecontent .morecontent_text {
		min-height: calc(33vw - 300px);
	}

	section.morecontent .morecontent_image img {
		width: calc(50vw - 300px);
		height: calc(50vw - 300px);
		left: 400px;
	}

}

@media only screen and (max-width: 1199px) {

	header .header_bottom .navigation nav {
		justify-content: flex-end;
	}

	header .header_bottom .navigation a.button {
		display: none;
	}

	section.cards .card_single a strong {
		font-size: 26px;
		hyphens: auto;
	}

}

@media only screen and (max-width: 991px) {

	section.locations .location_single:last-child {
		margin-bottom: 50px;
	}

	section.asp .asp_single .asp_inner .asp_info strong {
		font-size: 22px;
	}

	section.asp .asp_single .asp_inner .asp_info span {
		font-size: 20px;
	}

	section.asp .asp_single .asp_inner .asp_info ul li a {
		font-size: 18px;
	}

	section.contact .asp .asp_inner {
		margin-top: 50px;
	}

	header .mobile_nav_open {
		display: block;
	}

	header .header_bottom .navigation {
		position: fixed;
		top: 0;
		right: -100%;
		height: 100vh;
		width: 600px;
		transition: all 0.3s;
		max-width: 80vw;
		z-index: 999;
		padding: 0 0 75px 0;
		overflow-y: scroll;
		background-color: #ffffff;
		-webkit-box-shadow: -5px 0px 15px 5px rgba(0,0,0,0.15); 
		box-shadow: -5px 0px 15px 5px rgba(0,0,0,0.15);
	}

	header .header_bottom .navigation.open {
		right: 0;
	}

	header .header_bottom .navigation nav {
		height: auto !important;
		display: block;
	}

	header .header_bottom .navigation nav ul li {
		display: block;
		border-bottom: 1px solid rgba(14, 36, 67, 0.3);
	}

	header .header_bottom .navigation ul li:hover ul,
	header .header_bottom .navigation nav ul li ul {
		position: initial;
		display: block;
		padding: 0;
		border-left: 10px solid #ffffff;
		border-right: 10px solid #ffffff;		
	}

	header .header_bottom .navigation ul li.menu-item-has-children {
		border-bottom: none;
	}

	header .header_bottom .navigation ul li.menu-item-has-children a {
		background-color: var(--primary-color);
		color: #ffffff;
	}

	header .header_bottom .navigation ul li.menu-item-has-children > a {
		background-color: #ffffff;
		color: var(--primary-color-dark);
	}

	header .header_bottom .navigation ul li.menu-item-has-children > a::after {
		display: none;
	}

	header .header_bottom .navigation ul li.menu-item-has-children > a:hover {
		background-color: #ffffff;
		color: var(--primary-color);
	}

	header .header_bottom .navigation ul li.menu-item-has-children:hover > a {
		background-color: #ffffff;
		color: var(--primary-color-dark);
	}

	header .header_bottom .navigation ul li.menu-item-has-children:hover > a:hover {
		background-color: #ffffff;
		color: var(--primary-color);
	}	

	header .header_bottom .navigation nav ul li ul {
		border-left: 10px solid #ffffff;
		border-right: 10px solid #ffffff;
	}

	header .header_bottom .navigation ul ul li {
		width: 100%;
	}

	header .header_bottom .navigation a.button {
		display: inline-block;
		margin: 15px 10px 0 10px;
	}

	.mobile_nav_headline {
		display: flex;
	}

	section.hero .hero_overlay .hero_text h1 {
		font-size: 75px;
	}

	section.cta strong {
		font-size: 65px;
		hyphens: auto;
	}

	section.morecontent .morecontent_text h2, 
	section.morecontent .morecontent_text h3,
	section.banner .banner_overlay h1,
	section.text h2 {
		font-size: 55px;
	}

	.footer_column {
		margin-bottom: 30px;
	}

	footer ul.social {
		align-items: flex-start;
	}

	footer .backlink {
		text-align: left;
	}

	section.morecontent {
		position: relative;
	}

	section.morecontent .morecontent_image img {
		width: 100vw;
		border-radius: 0;
		height: 50vw;
		bottom: 0;
		left: 0;
		top: initial;
	}

	section.morecontent .morecontent_image {
		height: 50vw;
		position: initial;
	}

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

}

@media only screen and (max-width: 767px) {

	section.text {
		hyphens: auto;
	}

	header .header_top {
		text-align: left;
	}

	section.hero .hero_overlay .hero_text h1 {
		font-size: 65px;
	}

	section.cta strong {
		font-size: 55px;
	}	

	section.morecontent .morecontent_text h2, 
	section.morecontent .morecontent_text h3,
	section.banner .banner_overlay h1,
	section.text h2 {
		font-size: 45px;
	}

	.wp-block-spacer {
		max-height: 75px;
	}

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

	section.morecontent .morecontent_text {
		padding: 75px 15px;
	}	

}

@media only screen and (max-width: 565px) {

	h1,
	h2,
	h3 {
		hyphens: auto;
	}

	header .header_top a.button {
		display: none;
	}

	section.hero .hero_overlay {
		padding: 100px 0;
	}

	section.hero .hero_overlay .hero_text h1 {
		font-size: 50px;
	}	

	section.hero .hero_overlay .hero_text,
	section.morecontent .morecontent_text p {
		font-size: 18px;
	}

	section.cta strong {
		font-size: 40px;
	}		

	section.cta a.button,
	section.morecontent .morecontent_text a.button {
		font-size: 18px;
	}

	section.morecontent .morecontent_text h2, 
	section.morecontent .morecontent_text h3,
	section.banner .banner_overlay h1,
	section.text h2 {
		font-size: 30px;
	}	

	.blogpost_single .blogpost_inner {
		flex-wrap: wrap;
	}

	.blogpost_single .blogpost_inner .blogpost_image,
	.blogpost_single .blogpost_inner .blogpost_info {
		width: 100%;
	}

	.blogpost_single .blogpost_inner .blogpost_info strong {
		hyphens: auto;
	}

	section.banner .banner_overlay .banner_text {
		padding: 75px 0;
		min-height: 400px;
	}

	section.asp .asp_single .asp_inner .asp_info strong {
		font-size: 20px;
	}

	section.asp .asp_single .asp_inner .asp_info span {
		font-size: 18px;
	}

	section.asp .asp_single .asp_inner .asp_info ul li a {
		font-size: 16px;
	}

	section.asp .asp_single .asp_inner {
		flex-wrap: wrap;
	}

	section.asp .asp_single .asp_inner .asp_image {
		width: 100%;
	}	

	section.asp .asp_single .asp_inner .asp_image img {
		width: 150px;
	}

	.wp-block-spacer {
		max-height: 50px;
	}	

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

	section.morecontent .morecontent_text {
		padding: 50px 15px;
	}

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

}