/* Variables */

:root {
	--container-fluid-small-width: 1550px;
	--container-vertical-padding: 100px;

	--primary-font: 'Poppins';
	--secondary-font: 'Poppins';

	--primary-color: #d8101a;
	--secondary-color: #d8101a;
    --grey-light: #F3F3F3;
    --grey-dark: #25252b;

	--p-font-size: 18px;
	--p-font-weight: 400;
	--p-line-height: 1.6;
	--p-color: #000000;
	--textwrap-gap: 30px;

	--h1-font-size: 50px;
	--h1-font-weight: 500;
	--h2-font-size: 30px;
	--h2-font-weight: 500;
	--h3-font-size: 25px;
	--h3-font-weight: 500;

	--ul-border-left: 2px solid var(--primary-color);

	--slider-background-color: rgba(0,0,0,0.6);
	--slider-text-color: #ffffff;
	--slider-text-align: left;
	--slider-content-align: center;
	--slider-headline-font-size: 50px;
	--slider-subline-font-size: 30px;

	--button-background: #d8101a;
	--button-color: #ffffff;
	--button-padding: 8px 25px;
	--button-font-size: 18px;
	--button-border-radius: 8px;
	--button-border: none;

	--gallery-gap: 30px;

	--accordion_title-align: left;
	--accordion_title-background: var(--grey-light);
	--accordion_title-border-radius: 10px 10px 0 0;
	--accordion_title-font-size: 20px;
	--accordion_title-font-weight: 500;
	--accordion_content-padding: 0;
	--accordion_content-border: 1.5px solid #a7a7a7;
	--accordion_content-border-radius: 0 0 10px 10px;
	--accordion_content-border-top: none;

	--teaser-content-padding: 15px;
	--teaser-headline-fontsize: 30px;
	--teaser-headline-fontweight: 600;
	--teaser-headline-textalign: center;
	--teaser-button-align: center;

	--input-borderradius: 10px;

	--asp_horizontal-width: 50%;
	--asp_name-fontsize: 25px;
	--asp_position-fontsize: 18px;

	--news-width: 33.33%;
	--news_title-fontsize: 30px;
	--news_date-fontsize: 12px;
	--news_excerpt-fontsize: 16px;
}

/* Fonts */

/* poppins-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: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('../webfonts/poppins-v21-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-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: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/poppins-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-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: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../webfonts/poppins-v21-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-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: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../webfonts/poppins-v21-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Defaults */

* {
	scroll-behavior: smooth;
}

body {
	font-family: var(--primary-font, sans-serif);
	color: var(--p-color);
	width: 100vw;
	overflow-x: hidden;
}

main {
	min-height: calc(100vh - 812px);
	overflow-x: hidden;
}

a {
	color: var(--primary-color);
	transition: all 0.3s;
}

a:hover {
	text-decoration: none;
	opacity: 0.8;
	color: var(--primary-color);
}

.slide_items .slick-dots {
	position: absolute;
	bottom: -15px;
	left: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	text-align: center;
}

.slide_items .slick-dots li {
	display: inline-block;
	list-style: none;
	margin: 0 10px;
	width: 15px;
	height: 15px;
	background-color: var(--grey-light, #efefef);
	border-radius: 100%;
	cursor: pointer;
}

.slide_items .slick-dots li button {
	display: none;
}

.slide_items .slick-dots li.slick-active {
	background-color: var(--primary-color, #d8101a);
}

.container {
	max-width: 1400px;
}

.home section.hero h1 span {
	display: block;
	font-size: 80px;
	text-transform: uppercase;
	font-weight: 900;
}

/* Header */

header {
	background-color: #ffffff;
}

header .header-wrapper {
	position: relative;
}

header .logo {
	width: 175px;
	padding: 25px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	background-color: #ffffff;
	position: absolute;
	top: 0;
	left: 15px;
	z-index: 999;
}

header .logo a:hover {
	opacity: 1;
}

header .navigation {
	padding: 30px 0 30px 200px;
}

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

header .navigation ul li {
	display: inline-block;
	list-style: none;
	margin-left: 20px;
}

header .navigation ul li:not(.nav_button) a {
	color: #000000;
	font-size: 18px;
}

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

header .navigation ul li.current_page_item:not(.nav_button) a {
	color: var(--primary-color);
	font-weight: 500;
}

.mobile_nav_open,
.mobile_nav_headline {
	display: none;
}
 
/* Module */

/* Container */

.container-fluid.container-fluid-small {
	max-width: var(--container-fluid-small-width, 1920px);
}

.wrapper.container,
.wrapper.container-fluid {
	padding-top: var(--container-vertical-padding, 50px);
	padding-bottom: var(--container-vertical-padding, 50px);
}

.outer-wrapper.force-white-color,
.outer-wrapper.force-white-color h2 {
	color: #ffffff;
}

/* Banner */

section.banner .slide {
	position: relative;
}

section.banner .slide img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

section.banner .slide .slide_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--slider-background-color, rgba(0,0,0,0.6));
	color: var(--slider-text-color, #ffffff);
	text-align: var(--slider-text-align, center);
}

section.banner .slide .slide_overlay .row {
	align-items: var(--slider-content-align, center);
}

section.banner .slide .slide_overlay span {
	display: block;
}

section.banner .slide .slide_overlay span.banner-headline {
	font-size: var(--slider-headline-font-size, 50px);
	font-family: var(--secondary-font, sans-serif);
}

section.banner .slide .slide_overlay span.banner-subline {
	font-size: var(--slider-subline-font-size, 30px);
	font-family: var(--primary-font, sans-serif);
	margin-bottom: 15px;
}

section.banner .slick-dots {
	position: absolute;
	bottom: 15px;
	left: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	text-align: center;
}

section.banner .slick-dots li {
	display: inline-block;
	list-style: none;
	margin: 0 10px;
	width: 15px;
	height: 15px;
	background-color: var(--grey-light, #efefef);
	border-radius: 100%;
	cursor: pointer;
}

section.banner .slick-dots li button {
	display: none;
}

section.banner .slick-dots li.slick-active {
	background-color: var(--primary-color, #d8101a);
}

section.banner .slick-arrow {
	position: absolute;
	top: 50%;
	z-index: 888;
	color: var(--grey-light, #efefef);
	font-size: 40px;
	margin-top: -20px;
	cursor: pointer;
	z-index: 777;
}

section.banner .slick-arrow.fa-chevron-right {
	right: 150px;
}

section.banner .slick-arrow.fa-chevron-left {
	left: 150px;
}

/* Button */

li.nav_button a,
.button,
.wpcf7-submit {
	display: inline-block;
	font-family: var(--primary-font, sans-serif);
	background-color: var(--button-background, #d8101a);
	color: var(--button-color, #ffffff);
	padding: var(--button-padding, 5px 25px);
	transition: all 0.3s;
	border-radius: var(--button-border-radius, 20px);
	border: var(--button-border, none);
	font-size: var(--button-font-size, 20px);
	text-decoration: none;
	font-weight: 400;
}

li.nav_button a:hover,
.button:hover,
.wpcf7-submit:hover {
	opacity: 0.8;
	text-decoration: none;
	color: var(--button-color, #ffffff);
	font-weight: 400;
}

a.button img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	object-position: center;
	position: initial;
	display: inline-block;
	margin-right: 5px;
}

/* Text */

.textwrap {
	font-size: var(--p-font-size, 18px);
	font-weight: var(--p-font-weight, 400);
	line-height: var(--p-line-height, 1.2);
	column-gap: var(--textwrap-gap, 30px);
}

.textwrap h1 {
	font-size: var(--h1-font-size, 100px);
	font-weight: var(--h1-font-weight, 600);
}

.textwrap h2 {
	font-size: var(--h2-font-size, 75px);
	font-weight: var(--h2-font-weight, 600);
}

.textwrap h3 {
	font-size: var(--h3-font-size, 50px);
	font-weight: var(--h3-font-weight, 600);
}

.textcolumns {
	gap: 100px;
	position: relative;
	padding: 50px 0;
}

.textcolumns::before {
	width: 1.5px;
	height: calc(100% - 70px);
	content: '';
	position: absolute;
	top: 35px;
	left: calc(50% - 1px);
	background: linear-gradient(180deg, rgba(167,167,167,1) 0%, rgba(167,167,167,0.1) 100%);
	opacity: 0.5;	
}

/* List */

/* .textwrap ul {
	border-left: var(--ul-border-left, 2px solid var(--primary-color));
	list-style: none;
}

.textwrap ul li::before {
  content: "\2022";
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
} */

/* Gallery */

.gallerywrap {
	column-gap: var(--gallery-gap, var(--textwrap-gap));
}

.gallerywrap.slide_items .imagewrap {
	padding: 0 15px;
}

.gallerywrap .imagewrap {
	margin-bottom: var(--gallery-gap, var(--textwrap-gap));
}

.gallerywrap .imagewrap-inner {
	position: relative;
}

.gallerywrap.square img,
.gallerywrap.rectangle img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.gallerywrap.masonry img {
	width: 100%;
}

.gallerywrap .imagewrap-inner .image_title {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px;
	background-color: var(--grey-dark, #1d1d1b);
	color: #ffffff;
	opacity: 0.9
	font-size: 12px;
	line-height: 1.1;
}

/* Image */

.imagewrap img {
	max-width: 100%;
	border-radius: 15px;
}

.imagewrap.fullheight,
.imagewrap.fullheight img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.floating_image {
	position: relative;
}

.floating_image .imagewrap img {
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.floating_image .imagewrap {
	width: calc(100% + (100vw - 1400px) / 2 + 30px);
	position: absolute;
	top: 0;
	left: 0;
	min-height: 500px;
	height: 100%;
	padding-left: 50px;
}

/* Imagebanner */

.imagebanner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.imagebanner {
	height: 300px;
	position: relative;
}

.imagebanner_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;	
	background-color: rgba(216,16,26,0.6);
	color: #ffffff;
	text-align: center;
}

.imagebanner_overlay h1 {
	font-weight: 500;
	font-size: var(--h1-font-size);
}

/* Team */

.teammember.horizontal .teammember-single {
	width: var(--asp_horizontal-width);
}

.teammember.horizontal .slide_items .teammember-single {
	width: auto;
}

.teammember-single {
	padding: 0 15px;
	margin-bottom: 30px;
}

.teammember-single-inner {
	display: block;
	height: 100%;
	display: flex;
	align-items: center;	
	position: relative;
	justify-content: flex-end;
}

.teammember-image {
	position: absolute;
	top: 0;
	left: 0;
}

.teammember-image img {
	width: 250px;
	height: 250px;
	object-fit: cover;
	max-width: 100%;
	margin-bottom: 20px;
	border-radius: 100%;
}

.teammember-information {
	background-color: var(--grey-light);
	width: calc(100% - 125px);
	padding: 15px 15px 15px 155px;
	height: 250px;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
	display: flex;
	align-items: center;
}

.teammember-name {
	display: block;
	font-size: var(--asp_name-fontsize);
	line-height: 1.1;
	color: var(--primary-color);
}

.teammember-position {
	display: block;
	font-size: var(--asp_position-fontsize);
	margin-bottom: 10px;
}

.teammember-description {
	font-size: 12px;
}

.teammember-contact {
	padding: 10px 0;
}

.teammember-contact span {
	display: block;
}

.teammember-contact a {
	color: var(--p-color);
	transition: all 0.3s;
}

.teammember-contact i {
	color: var(--primary-color);
}

.teammember-contact a:hover {
	opacity: 0.8;
	text-decoration: none;
}

.teammember.vertical .teammember-single {
	margin-left: auto;
	max-width: 500px; 
}

.teammember.vertical .teammember-single-inner {
	flex-wrap: wrap;
}

.teammember.vertical .teammember-image {
	position: initial;
	margin: auto;
}

.teammember.vertical .teammember-information {
	width: 100%;
	height: auto;
	padding: 25px;
	border-radius: 10px;
}

/* Teaser */

.teaser_single {
	margin-bottom: 30px;
}

.teaser_single img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.teaser_content {
	padding: var(--teaser-content-padding, 15px);
	background-color: var(--grey-light, #efefef);
	height: calc(100% - 200px);
	flex-direction: column;
	display: flex;
	flex-wrap: wrap;
}

.teaser_headline {
	font-size: var(--teaser-headline-fontsize, var(--h3-font-size));
	font-weight: var(--teaser-headline-fontweight, var(--h3-font-weight));
	display: block;
	text-align: var(--teaser-headline-textalign, center);
	margin-bottom: 5px;
}

.teaser_description {
	display: block;
	margin-bottom: 10px;
}

.teaser_buttonwrap {
	text-align: var(--teaser-button-align, center);
	margin-top: auto;
}

/* News */

.news h2 {
	margin-bottom: 50px;
}

.news-single {
	width: var(--news-width);
	padding: 0 15px;
	margin-bottom: 30px;
}

.news .slide_items .news-single {
	width: auto;
}

.news-image {
	display: block;
	width: 100%;
}

.news-single img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.news-single-content {
	flex-direction: column;
	display: flex;
	flex-wrap: wrap;
	padding: 15px 0 0 0;
	height: calc(100% - 200px);
}

strong.news-headline {
	font-size: var(--news_title-fontsize);
	display: block;
	line-height: 1.1;
	width: 100%;
}

span.news-date {
	display: block;
	width: 100%;
	font-style: italic;
	font-size: var(--news_date-fontsize);
}

.news-excerpt {
	width: 100%;
	font-size: var(--news_excerpt-fontsize);
	padding: 10px 0;
}

.news-single a.button {
	margin-top: auto;
	align-self: flex-start;
}

/* Accordion */

.accordion_single {
	margin-bottom: 30px;
}

.accordion_single:last-child {
	margin-bottom: 0;
}

.accordion_title {
	display: block;
	text-align: var(--accordion_title-align, center);
	padding: 10px 50px 10px 20px;
	background-color: none;
	border: 1.5px solid #a7a7a7;
	color: #000000;
	border-radius: var(--accordion_title-border-radius, var(--button-border-radius));
	cursor: pointer;
	font-size: var(--accordion_title-font-size, var(--h3-font-size));
	font-weight: var(--accordion_title-font-weight, var(--h3-font-weight));
	position: relative;
}

.accordion_title::after {
	top: 50%;
	right: 20px;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f078";
	position: absolute;
	margin-top: -15px;
	font-size: 20px;
	color: var(--primary-color);
}

.accordion_content {
	padding: var(--accordion_content-padding, 0 50px);
	display: none;
}

.accordion_single:first-child .accordion_content {
	display: block;
}

.accordion_content-inner {
	padding: var(--accordion_content-inner-padding, 50px 30px);
	border-radius: var(--accordion_content-border-radius, var(--button-border-radius));
	border: var(--accordion_content-border, 2px solid #d8101a);
	border-top: var(--accordion_content-border-top, none);
	column-count: 2;
	column-gap: 50px;
	position: relative;
}

.accordion_content-inner::before {
	width: 1.5px;
	height: calc(100% - 70px);
	content: '';
	position: absolute;
	top: 35px;
	left: calc(50% - 1px);
	background: linear-gradient(180deg, rgba(167,167,167,1) 0%, rgba(167,167,167,0.1) 100%);
	opacity: 0.5;
}

/* Navigation */

section.navigation {
	padding: 20px 0;
	background-color: var(--grey-light);
	text-align: center;
}

section.navigation ul {
	margin: 0;
	padding: 0;
}

section.navigation ul li {
	display: inline-block;
	padding: 10px 15px;
	list-style: none;
}

section.navigation ul li a {
	color: initial;
	font-size: 20px;
}

section.navigation ul li a img {
	height: 35px;
	margin-right: 5px;
	display: inline-block;
}

/* Alternator */

section.alternator {
	position: relative;
	padding: 30px 0;
}

section.alternator .row {
	padding-top: 30px;
	padding-bottom: 30px;
}

section.alternator .row:nth-child(even) {
	flex-direction: row-reverse;
}

section.alternator .text {
	padding: 75px 50px 75px 15px;
}

section.alternator .text p {
	font-size: 17px;
	text-align: justify;
}

section.alternator .row:nth-child(even) .text {
	padding: 75px 15px 75px 50px;
}

section.alternator img {
	width: calc(100% + (100vw - 1155px) / 2 + 30px);
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	object-fit: cover;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;	
}

section.alternator .row:nth-child(even) img {
	left: initial;
	right: 0;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;	
}

/* Map */

.map_column {
	position: relative;
	min-height: 537px;
}

.map_block {
	width: calc(100% + (100vw - 1400px) / 2 + 30px);
	position: absolute;
	top: 0;
	left: 0;
	min-height: 537px;
	height: 100%;
	padding-left: 50px;
}

.map_block .locations {
	padding: 20px 20px 10px 20px;
	width: 100%;
	background-color: var(--grey-dark);
	border-bottom-left-radius: 15px;
}

.map_block .locations_inner {
	overflow-x: scroll;
	white-space: nowrap;
	padding-bottom: 10px;
}

.map_block .location {
	display: inline-block;
	white-space: nowrap;
	margin-right: 15px;
	padding: 15px;
	border-radius: 8px;
	background-color: #ffffff;
	border: 2px solid var(--primary-color);
}

.map_block .location strong {
	color: var(--primary-color);
}

.map_block .location p {
	margin: 0;
}

#map_block {
	min-height: 400px;
	height: calc(100% - 137px);
	border-top-left-radius: 15px;
}

/* Locations */

.location_single {
	background-color: var(--grey-dark);
	border-radius: 15px;
	color: #ffffff;
	margin-bottom: 30px;
}

.location_single strong {
	font-size: 28px;
	font-weight: 500;
}

.location_single img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 15px;
	position: absolute;
}

.location_text {
	padding: 50px;
}

.location_text span {
	display: block;
	margin-bottom: 15px;
	color: rgba(255,255,255,0.7);
}

/* Donwloads */

section.downloads .download_single {
	margin-bottom: 30px;
}

section.downloads .download_single_inner {
	padding: 30px;
	color: #ffffff;
	background-color: var(--grey-dark);
	border-radius: 15px;
}

section.downloads .download_single_inner strong,
section.downloads .download_single_inner span {
	display: block;
}

section.downloads .download_single_inner strong {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
}

section.downloads .download_single_inner span {
	margin-bottom: 20px;
	color: rgba(255,255,255,0.7);
}

/* Tagcloud */

.tagcloud ul {
	margin: 0;
	padding: 0;
}

.tagcloud ul li {
	display: inline-block;
	list-style: none;
	font-size: 0px;
	margin-right: 10px;
}

.tagcloud ul li a {
	font-size: 16px;
}

.teammember.vertical + .tagcloud ul {
	text-align: right;
}

.teammember.vertical + .tagcloud ul li {
	margin-right: 0;
	margin-left: 10px;
}

/* Hero */

section.hero {
	padding: 60px 0;
	position: relative;
}

section.hero::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0) 100%); 
	content: '';
	z-index: 6;
}

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

section.hero .hero_overlay {
	position: relative;
	z-index: 7;
	width: 100%;
	padding: 50px 0;
}

section.hero h1 {
	font-size: 45px;
	font-weight: 600;
}

section.hero h1 span {
	color: var(--primary-color);
	display: inline-block;
}

section.hero span {
	display: block;
}

section.hero a.button {
	margin-top: 20px;
}

section.hero a.button img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	object-position: center;
	position: initial;
	display: inline-block;
	margin-right: 5px;
}

/* Form */

.wpcf7-form {
	width: 100%;
	max-width: 700px;
}

.wpcf7-form br {
	display: none;
}

.wpcf7-form-control-wrap,
.wpcf7-form label {
	display: block;
	width: 100%;
}

.wpcf7-form label span.label {
	padding-left: 25px;
}

.wpcf7-form input:not(.wpcf7-submit),
.wpcf7-form select,
.wpcf7-form textarea {
	width: 100%;
	padding: 10px 20px;
	border: none;
	outline: var(--primary-color, #d8101a);
	border-radius: var(--input-borderradius, 50px);
	display: block;
	margin-top: 5px;
	background-color: none;
	border: 1.5px solid #a7a7a7;
	box-shadow: none;
}

.wpcf7-form select {
	background-image: url('/wp-content/themes/rueckenwind/assets/img/chevron-down-solid.svg');
	background-size: 15px;
	background-repeat: no-repeat;
	background-position: calc(100% - 15px) center;
	cursor: pointer;
	appearance: none;
	background-color: rgba(0,0,0,0);
	color: #000000;
}

.wpcf7-form input#mfcf7_zl_add_file {
	background-color: var(--primary-color);
}

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

/* Footer */

footer .footer_top {
	background-color: #25252b;
	color: #ffffff;
	padding: 50px 0;
}

footer .footer_top .logo_footer img {
	width: 200px;
	max-width: 100%;
}

footer .footer_top .logo_footer {
	margin-bottom: 30px;
}

footer .footer_top .footer_nav p {
	color: var(--grey-light);
	font-weight: 300;
	margin-bottom: 30px;
	opacity: 0.7;
}

footer .footer_top a {
	color: #ffffff;
}

footer .footer_top .map a {
	color: #000000;
}

footer .footer_top .navigation_footer ul {
	margin: 0 0 30px 0;
	padding: 0;
}

footer .footer_top .navigation_footer ul li {
	display: block;
	list-style: none;
	font-size: 18px;
	font-weight: 500;
}

footer .footer_top ul.social {
	margin: 0;
	padding: 0;
	font-size: 30px;
}

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

footer .footer_top .locations .location {
	padding-left: 30px;
	position: relative;
}

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

footer .footer_top .locations .location p {
	color: var(--grey-light);
	font-weight: 300;
	font-size: 15px;
	opacity: 0.7;
}

footer .footer_top .locations .location::before {
	content: '\f3c5';
	font-family: 'Font Awesome 5 Free';
  	font-weight: 900;
  	position: absolute;
  	top: 0;
  	left: 0;
  	color: var(--primary-color);
  	font-size: 25px;
}

footer .footer_top strong.headline {
	display: block;
	margin-bottom: 30px;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

footer .footer_bottom {
	background-color: var(--grey-light);
	padding: 10px 0;
	color: var(--grey-dark);
	font-size: 14px;
}

footer .footer_bottom a {
	color: var(--grey-dark);
}

footer .backlink {
	text-align: right;
}

footer #map {
	width: 100%;
	height: 100%;
	border-radius: 15px;
}

/* Client Custom */

.cta_divider {
	background-color: var(--primary-color);
	color: #ffffff;
	position: relative;
	padding: 75px 0;
	font-size: var(--p-font-size);
}

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

.cta_divider img {
	width: calc(50% - 15px);
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	right: 0;
}

.value_single {
	padding: 0 15px;
}

.value_inner {
	padding: 50px;
	background-color: var(--grey-dark);
	color: #ffffff;
	border-radius: 15px;
	font-size: 16px;
	position: relative;
}

.value_inner img {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	object-fit: contain;
	object-position: center;
	padding: 15px;
	background-color: var(--primary-color);
	border-radius: 10px;
	border-bottom-right-radius: 0;
	z-index: 999;
}

.value_inner h3 {
	display: block;
	margin-bottom: 15px;
	font-size: 22px;
	font-weight: 500;
}

.value_inner .iteration {
	font-size: 75px;
	font-weight: 700;
	position: absolute;
	opacity: 0.5;
	bottom: 30px;
	right: 30px;
	line-height: 1;
}

.values .slick-track {
    display: flex !important;
}

.values .slick-slide {
    height: inherit !important;
}

.values .slick-dots {
	margin: 50px 15px 0 15px;
	padding: 0;
	display: flex;	
	border-radius: 10px;
	overflow: hidden;
	background-color: var(--grey-dark);
}

.values .slick-dots li {
	display: inline-block;	
	flex: 1;
	height: 10px;
	background-color: var(--grey-dark);
}

.values .slick-dots li.slick-active {
	background-color: var(--primary-color);
	border-radius: 10px;
}

.values .slick-dots li button {
	display: none;
}

.subject {
	margin: 0 -15px;
}

.subject img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 15px;
	margin-bottom: 15px;
}

.subject span {
	display: block;
	font-size: 20px;
}

.subject strong {
	display: block;
	font-size: 25px;
	margin-bottom: 15px;
}

.subject_single {
	margin-bottom: 30px;
}

.subject_single:nth-child(even) {
	border-left: 3px solid var(--grey-light);
}

.subject_single .subject_inner {
	padding: 0 15px;
}

.jobs {
	padding: 0 15px;
}

.job_single {
	margin-bottom: 30px;
}

.job_inner {
	background-color: var(--grey-dark);
	color: #ffffff;
	border-radius: 15px;
	font-weight: 300;
}

.job_inner h2,
.job_inner h3 {
	font-weight: 500;
}

.job_header {
	margin-bottom: 30px;
}

.job_inner .job_main {
	padding: 30px;
	border-radius: 15px;	
	background-color: var(--grey-dark);
}

.job_inner .job_side {
	background-color: var(--primary-color);
	padding: 30px;
	border-radius: 15px;
	position: relative;
}

.job_single:not(.job_opened) .job_inner .job_side {
	background-color: var(--grey-dark);
}

.job_single:not(.job_opened) .job_content,
.job_single:not(.job_opened) .job_focus {
	display: none;
}

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

.toggle_job {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 15px 20px;
	background: var(--primary-color);
	border-radius: 15px;
	border-top-right-radius: 15px;
	border-top-right-radius: 0;
	cursor: pointer;
	transition: all 0.3s;
}

.toggle_job:hover {
	opacity: 0.8;
}

.toggle_job span {
	display: inline-block;
	margin-right: 10px;
}

.job_opened .toggle_job {
	background-color: #ffffff;
	color: var(--primary-color);
}

.job_opened .toggle_job span {
	display: none;
}

.job_opened .toggle_job i {
	transform: rotate(180deg);
}

#team_anchor .subject_inner span {
	display: none;
}

/* Responsive */

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

	:root {
		--asp_horizontal-width: 100%;
	}

	.teammember.horizontal .teammember-single {
		display: flex;
		justify-content: center;
	}

	.teammember.horizontal .teammember-single-inner {
		justify-content: flex-start;
	}

	.teammember.horizontal .teammember-information {
		height: auto;
		min-height: 250px;
		width: 620px;
		max-width: 100%;
		margin-left: 125px;
	}

}

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

	.map_block,
	.floating_image .imagewrap {
		width: calc(100% + 15px);
	}

	#map_block {
		border-top-right-radius: 15px;
	}

	.map_block .locations {
		border-bottom-right-radius: 15px; 
	}

}

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

	section.alternator img {
		width: calc(100% + (100vw - 990px) / 2 + 30px)
	}

	section.banner .slide .slide_overlay span.banner-subline {
		width: 75%;
	}

}

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

	header .header-wrapper {
		display: flex;
		justify-content: flex-end;
	}

	.mobile_nav_open {
		font-size: 35px;
		cursor: pointer;
		display: block;
		padding: 25px 0;
	}

	header .navigation {
		position: fixed;
		top: 0;
		right: -100%;
		height: 100vh;
		width: 500px;
		max-width: 90vw;
		z-index: 999;
		background: #fff;
		padding: 0;	
		box-shadow: -5px 0px 15px 0px rgba(0,0,0,0.15);
		transition: all 0.3s;
	}

	header .navigation.open {
		right: 0;
	}

	header .navigation ul {
		text-align: left;
	}

	header .navigation ul li:not(.nav_button) {
		display: block;
		padding: 0;
		margin: 0;
		border-bottom: 1px solid var(--grey-light);
	}

	header .navigation ul li:not(.nav_button) a {
		display: block;
		width: 100%;
		padding: 15px;
	}

	header .navigation ul li.nav_button {
		margin-left: 15px;
		margin-top: 15px;
	}

	header .mobile_nav_headline {
		display: flex;
		justify-content: space-between;
		padding: 15px;
		text-transform: uppercase;
		font-weight: 500;
		letter-spacing: 0.5px;
		background-color: var(--grey-light);
		font-size: 18px;
		align-items: center;	
		cursor: pointer;	
	}

	header .mobile_nav_headline i {
		font-size: 22px;
	}

}

@media only screen and (max-width: 991px) {
	
	.home section.hero h1 span {
		font-size: 70px;
	}

	footer #map {
		height: 600px;
		margin-top: 30px;
	}

	.cta_divider img {
		position: initial;
		width: 100%;
		height: auto;
		margin-top: 50px;
	}

	.cta_divider {
		padding-bottom: 0;
		padding-top: 50px;
	}

	.subject_single:nth-child(2n) {
		border: none;
	}

	.job_inner .job_main {
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
	}

	.job_inner .job_side {
		border-top-right-radius: 0;
		border-top-left-radius: 0;
	}

	section.alternator .row {
		padding-top: 15px;
		padding-bottom: 15px;
		flex-direction: column-reverse !important;
	}

	section.alternator .row .text,
	section.alternator .row:nth-child(even) .text {
		padding: 30px 15px 30px 15px;
	}

	section.alternator img {
		position: initial;
		max-height: 400px;
		object-fit: cover;
		object-position: center;	
		width: 100%;	
		border-radius: 30px;
	}	

	section.alternator .row:nth-child(even) img {
		border-radius: 30px;	
	}	

	section.hero::before {
		background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.9) 66.66%, rgba(255,255,255,0) 100%); 
	}	

	.textcolumns {
		gap: 50px;
	}

	.map_block,
	.floating_image .imagewrap {
		padding: 0;
	}

}

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

	.teammember.vertical .teammember-single {
		margin-right: auto;
	}

	.teammember.vertical + .tagcloud ul {
		text-align: center;
	}

	.map_block,
	.floating_image .imagewrap {
		padding: 0;
		width: 100%;
		position: initial;
	}

	.floating_image .imagewrap {
		min-height: initial;
		height: auto;
	}

	.floating_image .imagewrap img {
		border-radius: 15px;
	}

	.textcolumns::before {
		display: none;
	}

	.accordion_content-inner {
		column-count: 1;
	}

	.accordion_content-inner::before {
		display: none;
	}
	
	.home section.hero h1 span {
		font-size: 60px;
	}	

}

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

	.footer_nav {
		margin-bottom: 50px;
	}

	footer .backlink {
		text-align: left;
	}

	.teammember.horizontal .teammember-single-inner {
		flex-wrap: wrap;
	}

	.teammember.horizontal .teammember-image {
		position: initial;
		display: block;
		margin: 0 auto 15px auto;
	}

	.teammember.horizontal .teammember-image img {
		margin: 0;
	}

	.teammember.horizontal .teammember-information {
		padding: 30px;
		margin: 0;
		width: 100%;
		border-radius: 15px;
	}

	section.hero::before {
		background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.8) 66.66%, rgba(255,255,255,0.8) 100%); 
	}	

	section.hero h1 {
		font-size: 40px;
	}

	.location_single .row {
		flex-direction: column-reverse;
	}

	.location_single img {
		position: initial;
		height: 250px;
	}

	:root {
		--h1-font-size: 40px;
		--h2-font-size: 30px;
		--h3-font-size: 23px;
		--p-font-size: 18px;
	}
	
}

@media only screen and (max-width: 565px) {
	
	.home section.hero h1 span {
		font-size: 50px;
	}

	main .outer-wrapper .container {
		padding-top: 50px !important;
		padding-bottom: 50px !important;
	}

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

	header .logo {
		width: 130px;
		padding: 15px;
	}
	
	h1,
	h2,
	h3 {
		hyphens: auto;
	}

	section.hero h1 {
		font-size: 35px;
	}	

	.location_text {
		padding: 20px 40px;
	}

	.location_text h3 {
		font-size: 22px;
	}

	.value_inner {
		padding: 75px 30px 30px 30px;
	}

	:root {
		--h1-font-size: 35px;
		--h2-font-size: 25px;
		--h3-font-size: 20px;
		--p-font-size: 16px;
	}	
	
}