:root {
  --primary-color: #060819;
  --grey: #7C7C7C;
  --grey_text: #737373;
}

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

* {
	scroll-behavior: smooth;
}

*:focus {
	outline: none;
}

body {
  font-family: 'Figtree', sans-serif;
  width: 100%;
  overflow-x: hidden;
  color: var(--primary-color);
  font-weight: 300;
}

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

.wp-block-columns,
.wpcf7-response-output {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto 0 auto;
  padding: 0 15px;
}

.wp-block-columns [class^="col"]:not(.formfield), .wp-block-columns [class*=" col"]:not(.formfield) {
  padding-left: 0;
  padding-right: 0;
}

/* Header */

header {
	padding: 30px 0;
}

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

header .navigation nav ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
}

header .navigation nav ul li {
	list-style: none;
}

header .navigation nav ul li a {
	color: var(--primary-color);
	transition: all 0.3s;
	font-size: 16px;
	line-height: 1;
	display: block;
	white-space: nowrap;
	text-transform: uppercase;
	font-weight: 300;
	letter-spacing: 2px;
}

header .navigation nav ul li a:hover {
	text-decoration: none;
	opacity: 0.6;
}

header .navigation nav ul li.current_page_item:not(.button) a,
header .navigation nav ul li.current-menu-item a {
	font-weight: 700;
}

header .navigation nav ul li.button a {
	color: #ffffff;
	background-color: var(--primary-color);
	border: 2px solid var(--primary-color);
	padding: 10px 45px 10px 20px;
	border-radius: 50px;
	text-transform: uppercase;
	background-image: url('/wp-content/themes/kinofamilie/assets/img/arrow_forward_white.svg');
	background-repeat: no-repeat;
	background-position: calc(100% - 10px) center;
	background-size: 25px;
}

header .navigation nav ul li.button a:hover {
	opacity: 1;
	background-color: #ffffff;
	color: var(--primary-color);
	background-image: url('/wp-content/themes/kinofamilie/assets/img/arrow_forward.svg');
}

.mobile_nav_headline {
	display: none;
}

.mobile_nav_open {
	display: none;
}

/* Button */

a.button {
	display: inline-block;
	color: #ffffff;
	background-color: var(--primary-color);
	border: 2px solid var(--primary-color);
	padding: 10px 45px 10px 20px;
	border-radius: 50px;
	text-transform: uppercase;
	background-image: url('/wp-content/themes/kinofamilie/assets/img/arrow_forward_white.svg');
	background-repeat: no-repeat;
	background-position: calc(100% - 10px) center;
	background-size: 25px;
	letter-spacing: 2px;
	transition: all 0.3s;
	font-weight: 300;
}

a.button:hover {
	opacity: 1;
	text-decoration: none;
	background-color: #ffffff;
	color: var(--primary-color);
	background-image: url('/wp-content/themes/kinofamilie/assets/img/arrow_forward.svg');
}

a.button.secondary {
	background-color: transparent;
	color: var(--primary-color);
	background-image: url('/wp-content/themes/kinofamilie/assets/img/arrow_forward.svg');	
}

a.button.secondary:hover {
	background-color: var(--primary-color);
	color: #ffffff;
	background-image: url('/wp-content/themes/kinofamilie/assets/img/arrow_forward_white.svg');	
}

a.button.secondary.inverted {
	color: #ffffff;
	border: 2px solid #ffffff;
	background-color: transparent;
	background-image: url('/wp-content/themes/kinofamilie/assets/img/arrow_forward_white.svg');	
}

a.button.secondary.inverted:hover {
	color: var(--primary-color);
	background-color: #ffffff;
	background-image: url('/wp-content/themes/kinofamilie/assets/img/arrow_forward.svg');	
}

section.button a.button {
	margin: 0 30px 15px 0; 
}

section.button[style*="center"] a.button {
	margin: 0 15px 15px 0; 
}

section.button[style*="right"] a.button {
	margin: 0 0 15px 30px; 
}

/* Text */

section.text {
	color: var(--grey_text);
	font-size: 20px;
}

section.text p {
	max-width: 1000px;
}

section.text p a {
	color: currentColor;
}

section.text p[style*="center"] {
  margin-left: auto;
  margin-right: auto;
}

.has-white-color section.text * {
	color: #ffffff;
}

section.text p:has(em):has( + h1, +h2, +h3) em {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-style: normal;
	font-size: 15px;
}

section.text h1 {
	font-weight: 300;
	font-style: italic;
	font-size: 48px;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

section.text h2 {
	font-weight: 300;
	font-style: italic;
	font-size: 32px;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

section.text h1 strong,
section.text h2 strong {
	font-weight: 500;
	font-style: normal;
	display: block;
}

section.headline p:has(em):has( + h1, +h2, +h3) {
	position: relative;
}

section.headline p:has(em):has( + h1, +h2, +h3)::before {
	position: absolute;
	height: 1px;
	width: 80%;
	top: calc(50% - 1px);
	left: 0;
	background-color: var(--primary-color);
	content: '';
}

section.headline p:has(em):has( + h1, +h2, +h3) em {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-style: normal;
	font-size: 15px;
	background-color: #ffffff;
	position: relative;
	padding-right: 15px;
	display: inline-block;
}

section.headline h1 {
	font-weight: 300;
	font-style: italic;
	font-size: 48px;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

section.headline h2 {
	font-weight: 300;
	font-style: italic;
	font-size: 32px;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

section.headline h1 strong,
section.headline h2 strong {
	font-weight: 500;
	font-style: normal;
	display: block;
}

/* Image */

section.image img {
	width: 100%;
}

/* Gallery */

section.gallery {
	padding-bottom: 15px;
}

section.gallery img {
	width: 100%;
	aspect-ratio: 21/13;
	object-fit: cover;
	transition: all 0.3s;
	transform: scale(0.8);
	border-radius: 10px;
}

section.gallery .slick-current img {
	transform: scale(1);
}

section.gallery .slick-dots-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-top: -30px;
	position: relative;	
}

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

section.gallery 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.gallery li:hover {
	opacity: 1;
}

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

section.gallery button {
	display: none;
}

/* 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 .logo_slider_title {
	display: block;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-style: normal;
	font-size: 15px;
	font-weight: 400;
	color: var(--grey_text);
	margin-bottom: 1rem;	
}

.logo_slider .logos_wrap img {
  height: 110px;
  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);
}

.logos:not(.greyscale) .logo_slider .logos_wrap img {
	filter: grayscale(0);
	height: 175px;
}

/* Accordion */

section.accordion .accordion_single {
	margin-bottom: 30px;
	transition: all 0.3s;
}

section.accordion .accordion_single .accordion_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 15px 30px;
	cursor: pointer;
	border-radius: 50px;
	box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.05);
	border: 1px solid #ffffff;	
}

section.accordion .accordion_single .accordion_title h3 {
	margin: 0;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 20px;
}

section.accordion .accordion_single .accordion_title i {
	font-size: 25px;
	transition: all 0.3s;
}

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

section.accordion .accordion_single .accordion_content {
	display: none;
	padding: 30px;
	font-size: 20px;
}

/* Banner */

section.banner {
	position: relative;
}

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

section.banner .banner_overlay {
	position: relative;
	background-color: rgba(6, 8, 25, 0.5);
	padding: 100px 0;
	color: #ffffff;
}

section.banner .banner_overlay p:has(em):has( + h1) {
	margin-bottom: 0;
}

section.banner .banner_overlay p:has(em):has( + h1) em {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-style: normal;
	font-size: 15px;
	line-height: 1;
}

section.banner .banner_overlay h1 {
	font-weight: 300;
	font-style: italic;
	font-size: 48px;
	margin-bottom: 1rem;
	line-height: 1.1;
}

section.banner .banner_overlay h1 strong {
	font-weight: 500;
	font-style: normal;
	display: block;
}

/* Alternator */

section.alternator .alternator_single {
	position: relative;
	background-color: var(--primary-color);
	color: #ffffff;
	padding: 50px;
	border-radius: 30px;
	margin-bottom: 50px;
}

section.alternator .alternator_single img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	border-radius: 30px;
	object-fit: cover;
	right: 0;
	z-index: 7;
}

section.alternator .alternator_single::before {
	position: absolute;
	border-radius: 30px;
	width: 100%;
	height: 100%;
	content: '';
	top: 0;
	right: 0;
	z-index: 8;
	background: linear-gradient(110deg,rgba(6, 8, 25, 1) 50%, rgba(6, 8, 25, 0) 100%);
}

section.alternator .alternator_single .alternator_inner {
	position: relative;
	z-index: 9;
}

section.alternator .alternator_single .alternator_text {
	width: 800px;
	max-width: 100%;
}

section.alternator .alternator_single .alternator_text a.button {
	margin-right: 15px;
	margin-bottom: 15px;
}

section.alternator p:has(em):has( + h1, +h2, +h3) em {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-style: normal;
	font-size: 15px;
}

section.alternator h1 {
	font-weight: 300;
	font-style: italic;
	font-size: 48px;
	margin-bottom: 1rem;
}

section.alternator h2 {
	font-weight: 300;
	font-style: italic;
	font-size: 32px;
	margin-bottom: 1rem;
}

section.alternator h1 strong,
section.alternator h2 strong {
	font-weight: 500;
	font-style: normal;
	display: block;
}

section.alternator .alternator_single .alternator_videos {
	display: flex;
	gap: 30px;
}

section.alternator .alternator_single .alternator_videos:has(iframe) {
	padding-top: 30px;
}

section.alternator .alternator_single .alternator_videos iframe {
	width: 50%;
	aspect-ratio: 16/9;
}

section.alternator .alternator_single:nth-child(even) .alternator_text {
	margin-left: auto;
	text-align: right; 
}

section.alternator .alternator_single:nth-child(even)::before {
	background: linear-gradient(240deg,rgba(6, 8, 25, 1) 50%, rgba(6, 8, 25, 0) 100%);
}

section.alternator .alternator_single:nth-child(even) .alternator_videos {
	justify-content: flex-end;
}

section.alternator .alternator_single:nth-child(even) .alternator_text a.button {
	margin-right: 0;
	margin-left: 15px;
}

/* Jobs */

.jobs_filter {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	padding: 0;
	margin: 0 0 50px 0;
}

.jobs_filter li {
	list-style: none;
}

.jobs_filter li a {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-style: normal;
	font-size: 15px;
	line-height: 1;
	color: var(--primary-color);
	transition: all 0.3s;
	opacity: 0.6;	
}

.jobs_filter li.active a,
.jobs_filter li a:hover {
	opacity: 1;
	text-decoration: none;
}

.jobs_filter li.active a {
	font-weight: 500;
}

.job_single {
	margin-bottom: 30px;
}

.job_single a:not(.button) {
	transition: all 0.3s;
}

.job_single a:not(.button):hover {
	opacity: 0.8;
	text-decoration: none;
}

.job_single .job_inner {
	background-color: var(--primary-color);
	color: #ffffff;
	height: 100%;
	border-radius: 30px;
}

.job_single .job_inner .job_image a {
	width: 100%;
	aspect-ratio: 21/12;
	display: block;
}

.job_single .job_inner .job_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
}

.job_single .job_inner .job_information {
	padding: 30px;
}

.job_single .job_inner .job_information .job_excerpt {
	margin-bottom: 30px;
}

.job_single .job_inner .job_information em {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-style: normal;
	font-size: 15px;
	line-height: 1;	
	margin-bottom: 1rem;
}

.job_single .job_inner .job_information .job_title {
	font-size: 30px;
	font-weight: 300;
}

.job_single .job_inner .job_information .job_title a {
	color: #ffffff;
}

/* Form */

.form small {
	display: block;
	line-height: 1.2;
	margin-top: 5px;
}

.form .fieldset {
	display: none;
}

.field_verpflegung,
.field_paket {
    display: none;
}
.field_verpflegung.active,
.field_paket.active {
    display: block;
}

.form .fieldset.active {
	display: block;
}

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

.form .formfield p {
	margin: 0;
}

.form .formfield a {
	color: var(--primary-color);
}

.form .formfield label span.required {
  color: #a70000;
}

.form .formfield input,
.form .formfield textarea,
.form .formfield select {
	width: 100%;
	padding: 10px;
	background-color: #F8F8F8;
	border: none;
	color: #000000;
}

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

.wpcf7-form-control-wrap:has(.wpcf7-checkbox) .wpcf7-form-control {
	min-height: 44px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 15px;
	row-gap: 5px;	
}

.wpcf7-form-control-wrap:has(.wpcf7-checkbox) label {
	margin: 0;
}

.form .formfield .wpcf7-acceptance .wpcf7-list-item,
.form .formfield .wpcf7-radio .wpcf7-list-item {
	margin: 0;
	display: block;
}

.form .formfield input[type="checkbox"],
.form .formfield input[type="radio"] {
	width: auto;
}

.form .formfield select {
  appearance: none;
  cursor: pointer;
  background-image: url('/wp-content/themes/kinofamilie/assets/img/chevron-down-solid.svg');
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
}

.form .formfield input[type="submit"] {
	color: #ffffff;
	background-color: var(--primary-color);
	border: 2px solid var(--primary-color);
	padding: 10px 45px 10px 20px;
	border-radius: 50px;
	text-transform: uppercase;
	background-image: url('/wp-content/themes/kinofamilie/assets/img/arrow_forward_white.svg');
	background-repeat: no-repeat;
	background-position: calc(100% - 10px) center;
	background-size: 25px;
	width: auto;
	transition: all 0.3s;
	display: inline-block;
	font-weight: 300;
	letter-spacing: 2px;
}

.form .formfield input[type="submit"]:hover {
	opacity: 1;
	background-color: #ffffff;
	color: var(--primary-color);
	background-image: url('/wp-content/themes/kinofamilie/assets/img/arrow_forward.svg');	
}

/* Footer */

footer .footer_top {
	background-color: #F8F8F8;
	padding: 100px 0;
}

footer .footer_top a.logo_link img {
	width: 350px;
	max-width: 100%;
	margin-bottom: 30px;
}

footer .footer_top a.logo_link + span {
	display: block;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--grey);
	line-height: 1.1;
	font-weight: 300;
	margin-bottom: 30px;
}

footer .footer_top strong.headline {
	font-weight: 400;
	text-transform: uppercase;
	display: block;
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: 2px;
	margin-bottom: 15px;
}

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

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

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

footer .footer_top ul li a {
	color: var(--primary-color);
}

footer .footer_top ul li a i {
	width: 25px;
	height: 25px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	color: #ffffff;
	background-color: var(--primary-color);
}

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

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

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

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

/* Responsive */

@media only screen and (max-width: 1350px) and (min-width: 1200px) {
	header .navigation nav ul li a {
		font-size: 14px;
		letter-spacing: 1px;
	}

	footer {
		font-size: 14px;
	}
}

@media only screen and (max-width: 1199px) {
	header .navigation {
		position: fixed;
		top: 0;
		right: -100%;
		transition: all 0.3s;
		background-color: #ffffff;
		height: 100vh;
		z-index: 999;
		padding: 0;
		width: 500px;
		max-width: 80vw;
		box-shadow: -5px 0px 15px 5px rgba(0,0,0,0.1);
	}

	header .navigation.open {
		right: 0;
	}

	header .row {
		position: relative;
	}

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

	.mobile_nav_headline i {
		font-size: 25px;
	}

	.mobile_nav_open {
		display: block;
		font-size: 25px;
		cursor: pointer;
		position: absolute;
		right: 15px;
	}

	header .navigation nav ul {
		display: block;
		padding: 0;
		margin: 0;
	}

	header .navigation nav ul li.button {
		display: inline-block;
		padding: 15px;
	}

	header .navigation nav ul li:not(.button) a {
		padding: 15px;
	}

	header .navigation nav ul li a {
		font-size: 18px;
	}

	footer {
		font-size: 14px;
	}	

	.wp-block-columns, 
	.wpcf7-response-output {
		max-width: 960px;
	}	
}

@media only screen and (max-width: 991px) {
	section.text h1 {
		font-size: 40px;
	}

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

	section.gallery img {
		transform: scale(1);
	}

	section.gallery a {
		display: block;
		padding: 15px;
	}

	section.gallery .slick-dots-wrap {
		margin-top: 0;
	}

	section.gallery li {
		background-color: var(--primary-color);
	}

	.wp-block-columns, 
	.wpcf7-response-output {
		max-width: 720px;
	}	

	.job_single .job_inner .job_information .job_title {
		font-size: 25px;
	}	

	footer {
		font-size: 16px;
	}	

	section.alternator .alternator_single .alternator_videos {
		flex-wrap: wrap;
	}

	section.alternator .alternator_single .alternator_videos iframe {
		width: 100%;
	}

	section.alternator .alternator_single::before,
	section.alternator .alternator_single:nth-child(even)::before {
		background: linear-gradient(110deg,rgba(6, 8, 25, 1) 50%, rgba(6, 8, 25, 0.3) 100%);		
	}

	section.alternator .alternator_single:nth-child(even) .alternator_text {
		text-align: left;
	}

	section.alternator .alternator_single:nth-child(even) .alternator_text a.button {
		margin-left: 0;
		margin-right: 15px;
	}
}

@media only screen and (max-width: 767px) {
	.wp-block-spacer:not(.keep_height) {
		max-height: 75px;
	}

	section.alternator .alternator_single {
		padding: 30px;
	}

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

	section.banner .banner_overlay {
		padding: 75px 0;
	}

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

	.wp-block-columns, 
	.wpcf7-response-output {
		max-width: 540px;
	}	

	section.headline p:has(em):has(+ h1, + h2, + h3)::before {
		width: 100%;
	}

	section.text h1 strong, 
	section.text h2 strong {
		display: inline;
	}

	section.headline h1 strong, 
	section.headline h2 strong {
		display: inline;
	}

	section.accordion .accordion_single .accordion_title h3 {
		font-size: 18px;
		letter-spacing: 2px;
	}	

	footer .footer_top {
		padding: 75px 0;
	}	
}

@media only screen and (max-width: 565px) {
	section.text h1 {
		font-size: 35px;
	}

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

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

	section.headline h2 {
		font-size: 30px;
	}

	section.gallery .slick-dots-wrap {
		margin-top: -45px;
	}

	section.gallery li {
		background-color: #ffffff;
	}	

	.wp-block-spacer:not(.keep_height) {
		max-height: 50px;
	}

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

	section.banner .banner_overlay {
		padding: 50px 0;
	}	

	footer .footer_top a.logo_link + span {
		font-size: 16px;
		letter-spacing: 2px;
	}

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

	section.accordion .accordion_single .accordion_title h3 {
		font-size: 16px;
	}

	section.accordion .accordion_single .accordion_content {
		font-size: 18px;
	}

	section.alternator .alternator_single {
		padding: 30px 15px;
	}	

	header .logo img {
		max-width: calc(100% - 100px);
	}

	footer .footer_top {
		padding: 50px 0;
	}

	h1,
	h2,
	h3 {
		hyphens: auto;
	}
}