:root {
  --primary-color: #00CD2B;
  --grey-dark: #3C3C3C;
  --grey: #625F5F;
  --grey-light: #F4F4F6;
  --gradient: linear-gradient(45deg,rgba(60, 60, 60, 1) 30%, rgba(98, 95, 95, 1) 100%);
}

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

/* inter-tight-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: 'Inter Tight';
  font-style: italic;
  font-weight: 300;
  src: url('../webfonts/inter-tight-v9-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

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

/* inter-tight-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: 'Inter Tight';
  font-style: italic;
  font-weight: 400;
  src: url('../webfonts/inter-tight-v9-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-tight-600 - 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: 'Inter Tight';
  font-style: normal;
  font-weight: 600;
  src: url('../webfonts/inter-tight-v9-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-tight-600italic - 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: 'Inter Tight';
  font-style: italic;
  font-weight: 600;
  src: url('../webfonts/inter-tight-v9-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

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

/* inter-tight-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: 'Inter Tight';
  font-style: italic;
  font-weight: 700;
  src: url('../webfonts/inter-tight-v9-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-tight-900 - 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: 'Inter Tight';
  font-style: normal;
  font-weight: 900;
  src: url('../webfonts/inter-tight-v9-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-tight-900italic - 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: 'Inter Tight';
  font-style: italic;
  font-weight: 900;
  src: url('../webfonts/inter-tight-v9-latin-900italic.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: 'Inter Tight', sans-serif;
  color: var(--grey-dark);
}

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

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

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

.wp-block-separator {
  width: 500px;
  max-width: 60vw;
  background: var(--grey);
  color: var(--grey);
  opacity: 0.4;
}

/* Header */

header {
  padding: 15px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;  
  z-index: 999;
}

header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header_inner .header_tile,
header .header_inner nav.secondary,
.mobile_nav_open {
  background-color: var(--grey-light);
  box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.2);
  display: flex;
  padding: 20px;
  border-radius: 10px;
  gap: 100px;
  align-items: center;
  min-height: 84px;
}

header .header_inner .logo_link img {
  width: 125px;
}

header .header_inner .header_tile nav {
  position: relative;
}

header .header_inner .header_tile nav::before {
  content: '';
  position: absolute;
  left: -50px;
  top: -10px;
  height: calc(100% + 20px);
  width: 1px;
  background-color: var(--grey);
  opacity: 0.8;
}

header .header_inner nav ul {
  margin: 0;
  padding: 0;
}

header .header_inner nav ul li {
  display: inline-block;
  margin-left: 30px;
}

header .header_inner nav ul li:first-child {
  margin-left: 0;
}

header .header_inner nav ul li a {
  color: var(--grey-dark);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 18px;
  font-weight: 600;
}

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

.header_right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.mobile_nav_open {
  font-size: 30px;
  cursor: pointer;
  display: none;
}

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

/* Hero */

section.hero {
  overflow: hidden;
  background-image: url('/wp-content/themes/azubiwerk/assets/img/pattern.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

section.hero .hero_text {
  padding: 299px 15px 200px 15px;
  display: flex;
  align-items: center;
}

section.hero .hero_text strong {
  display: block;
  font-size: 24px;
  font-weight: 400;
}

section.hero .hero_text strong em {
  font-style: normal;
  color: var(--primary-color);
}

section.hero .hero_text h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 30px;
  hyphens: auto;
  font-weight: 600;
}

section.hero .hero_text h1 em {
  display: block;
  font-style: normal;
  color: var(--primary-color);
  font-weight: 900;
}

section.hero .hero_image {
  position: relative;
}

section.hero .hero_image img {
  width: calc(50vw - 15px);
  height: 100%;
  position: absolute;
  object-fit: cover;
  left: 15px;
  top: 0;
}

/* Banner */

section.banner {
  overflow: hidden;
  background-image: url('/wp-content/themes/azubiwerk/assets/img/pattern.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

section.banner .banner_text {
  padding: 274px 50px 175px 15px;
  display: flex;
  align-items: center;
}

section.banner .banner_text p {
  display: block;
  font-size: 24px;
  font-weight: 400;
}

section.banner .banner_text h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 30px;
  hyphens: auto;
  font-weight: 600;
}

section.banner .banner_text h1 em {
  display: block;
  font-style: normal;
  color: var(--primary-color);
  font-weight: 900;
}

section.banner .banner_image {
  position: relative;
}

section.banner .banner_image img {
  width: 700px;
  height: 700px;
  position: absolute;
  object-fit: cover;
  right: 15px;
  bottom: -150px;
  border-radius: 100%;
}

/* Logos */

section.logos {
  background: var(--gradient);
  color: #ffffff;
  padding: 15px 0;
  font-size: 20px;
}

section.logos span {
  display: block;
  line-height: 1.2;
  padding-right: 100px;
  position: relative;
}

section.logos span::after {
  height: 100%;
  content: '';
  width: 1px;
  background-color: var(--grey-light);
  position: absolute;
  right: 50px;
  top: 0;
  opacity: 0.8;
}

section.logos span b {
  display: block;
  font-weight: 600;
}

.logo_slider {
  position: relative;
}

.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);
}

/* Contact */

section.contact {
  font-size: 20px;
}

section.contact .info_half {
  margin-bottom: 30px;
}

section.contact h2 {
  font-size: 40px;
  line-height: 1.09;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 400;
}

section.contact h2 strong {
  display: block;
  color: var(--primary-color);
}

section.contact p {
  width: 500px;
  max-width: 100%;
  margin-bottom: 30px;
}

section.contact span {
  display: block;
  margin-bottom: 8px;
}

section.contact span i,
section.contact span a i {
  color: var(--primary-color);
}

section.contact span a {
  color: var(--secondary-color);
  transition: all 0.3s;
  text-decoration: none;
}

section.contact span a:hover {
  opacity: 0.6;
}

section.contact .formfield {
  margin-bottom: 15px;
}

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

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

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

section.contact .formfield input,
section.contact .formfield textarea,
section.contact .formfield select {
  width: 100%;
  background-color: var(--grey-light);
  border-radius: 5px;
  padding: 10px;
  border: none;
}

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

section.contact .formfield textarea {
  height: 200px;
}

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

section.contact .formfield input[type="submit"] {
  width: auto;
  background-color: var(--grey-dark);
  color: #ffffff;
  transition: all 0.3s;
}

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

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

/* Teaser */

section.teaser .teaser_single {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

section.teaser .teaser_single.third {
  padding: 0 100px;
}

section.teaser .teaser_single.quarter {
  padding: 0 50px;
}

section.teaser .teaser_single::after {
  height: 200px;
  width: 1px;
  background-color: var(--grey);
  position: absolute;
  top: calc(50% - 100px);
  right: 0;
  content: '';
}

section.teaser .teaser_single.third:nth-child(3n)::after {
  display: none;
}

section.teaser .teaser_single.quarter:nth-child(4n)::after {
  display: none;
}

section.teaser .teaser_single img {
  display: block;
  margin: 0 auto 30px auto;
  height: 100px;
  width: 100px;
  object-fit: contain;
  object-position: center;
}

section.teaser .teaser_single.quarter img {
  width: 75px;
  height: 75px;
}

section.teaser .teaser_single strong,
section.teaser .teaser_single span {
  display: block;
}

section.teaser .teaser_single strong {
  margin-bottom: 15px;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 600;
}

/* Arrowbox */

section.arrowbox .arrowbox_single {
  margin-bottom: 50px;
  padding: 0 100px;
}

section.arrowbox .arrowbox_single .arrowbox_inner {
  background-color: var(--grey-light);
  text-align: center;
  color: var(--grey-dark);
  padding: 30px;
  border-radius: 10px;
  font-size: 24px;
  font-weight: 600;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.2);
}

section.arrowbox .arrowbox_single:nth-child(odd):not(:last-child) .arrowbox_inner::after {
  position: absolute;
  top: calc(50% - 20px);
  left: calc(100% + 25px);
  content: '';
  background-image: url('/wp-content/themes/azubiwerk/assets/img/arrow.svg');
  background-repeat: no-repeat;
  background-position: center right;
  width: 150px;
  height: 40px;
}

.wp-block-group.has-background section.arrowbox .arrowbox_single:nth-child(odd):not(:last-child) .arrowbox_inner::after {
  background-image: url('/wp-content/themes/azubiwerk/assets/img/arrow_light.svg');
}

/* Iconbox */

section.iconbox .introduction {
  padding-bottom: 50px;
  border-bottom: 2px solid var(--secondary-color-light);
  margin-bottom: 50px;
}

section.iconbox .introduction p:last-child {
  margin-bottom: 0;
}

section.iconbox .icons .icon_single {
  margin-bottom: 30px;
  padding: 0 100px;
}

section.iconbox .icons .icon_single:nth-child(odd) {
  padding-left: 15px;
}

section.iconbox .icons .icon_single:nth-child(even) {
  padding-right: 15px;
}

section.iconbox .icons .icon_single:nth-child(odd):not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.8;
}

section.iconbox .icons .icon_single strong {
  display: flex;
  align-items: center;
  font-size: 24px;
  line-height: 1.1;
  gap: 20px;
}

section.iconbox .icons .icon_single strong img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  padding: 10px;
  border-radius: 5px;
  background-color: var(--primary-color);
}

section.iconbox .icons .icon_single span {
  display: block;
  font-size: 20px;
  opacity: 0.8;
  line-height: 1.3;
  margin-top: 15px;
  padding-left: 60px;
}

/* Quote */

section.quote .quote_inner {
  padding: 0 50px 0 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background: var(--gradient);
  color: #ffffff;
  position: relative;
}

section.quote .quote_inner::before {
  width: 99999px;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  background-color: var(--grey-dark);
  content: '';
}

section.quote .quote_inner .quote_image {
  position: relative;
  display: flex;
}

section.quote .quote_inner .quote_image img {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 8;
}

section.quote .quote_inner .quote_text {
  padding: 100px 15px;
}

section.quote .quote_inner .quote_text strong {
  font-size: 40px;
  font-weight: 900;
  font-style: italic;
  display: block;
  line-height: 1.1;
  margin-bottom: 20px;
}

section.quote .quote_inner .quote_text span {
  display: block;
  line-height: 1.1;
  font-size: 26px;
}

/* Cards */

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

section.cards img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;  
}

section.cards .card_inner {
  height: 100%;
}

section.cards .card_info {
  padding: 30px;
  background-color: var(--grey-dark);
  text-align: center;
  color: #ffffff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  height: calc(100% - 225px);
}

section.cards .card_info strong {
  font-size: 26px;
  display: block;
  line-height: 1.1;
  margin-bottom: 10px;
}

section.cards a.button {
  background-color: #ffffff;
  color: var(--grey-dark);
}

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

/* Image */

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

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

.wp-block-column .imagewrap {
  margin: 0 -15px;
}

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

/* Gallery */

section.gallery {
  position: relative;
}

section.gallery .slick-dots-wrap {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 15px;
}

section.gallery .image_wrap {
  height: 450px;
  position: relative;
}

section.gallery .image_wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  transition: all 0.3s;
  opacity: 1;
}

section.gallery .image_wrap.slick-current.slick-active::after {
  opacity: 0;
}

section.gallery .image_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

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;
}

/* Rights */

section.rights {
	padding-top: 199px; 
}

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

/* Text */

.wp-block-column section.text .col-lg-8.offset-lg-2 {
  width: 100%;
  max-width: 100%;
  flex: 100%;
  margin-left: 0;
  padding: 0;
}

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

section.text h2,
section.text h3 {
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 400;
}

section.text h2 strong,
section.text h3 strong {
  display: block;
  color: var(--primary-color);
}

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

/* Button */

.wp-block-column section.button {
  margin: 0 -15px;
}

a.button {
  font-size: 18px;
  background-color: var(--grey-dark);
  color: #ffffff;
  font-weight: 600;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s;
}

a.button i {
  color: var(--primary-color);
  margin-right: 5px;
  transition: all 0.3s;
}

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

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

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

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

/* Footer */

footer {
  padding: 100px 0;
  background-color: var(--grey-dark);
  color: #ffffff;
  font-size: 18px;
}

footer .footer_inner {
  padding: 50px 50px 50px 15px;
  border-radius: 10px;
  background: var(--gradient);
}

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

footer .footer_inner a:hover {
  opacity: 0.6;
}

footer .footer_inner a:has(img):hover {
  opacity: 1;
}

footer .footer_inner img {
  width: 225px;
  margin-bottom: 50px;
}

footer .footer_inner ul {
  margin: 0;
  padding: 0;
}

footer .footer_inner ul li {
  list-style: none;
}

footer .footer_inner ul.social li {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 20px;
}

footer .footer_inner ul.social li a {
  color: #ffffff;
  background-color: var(--primary-color);
  font-size: 30px;
  height: 50px;
  width: 50px;
  display: block;
  text-align: center;
  line-height: 50px;
  border-radius: 10px;
}

footer .footer_inner strong {
  font-weight: 600;
}

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

/* Responsive */

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

  section.banner .banner_image img {
    top: 0;
    left: 15px;
    bottom: initial;
    border-radius: 0;
    width: calc(50vw - 15px);
    height: 100%;
  }

}

@media only screen and (max-width: 1300px) {
	
	header .header_inner nav ul li {
		margin-left: 15px;
	}	

  .mobile_nav_open {
    display: flex;
  }

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

  header .header_inner .header_tile nav.open {
    right: 0;
  }

  header .header_inner .header_tile nav::before {
    display: none;
  }

  header .header_inner .header_tile nav ul li {
    display: block;
    margin: 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }

  header .header_inner .header_tile nav ul li a {
    display: block;
    padding: 10px 20px;
  }

  .mobile_nav_headline {
    display: flex;
  }

  section.gallery .image_wrap {
    height: 400px;
  }

}

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

  section.teaser .teaser_single.third {
    padding: 0 30px;
  }

  section.teaser .teaser_single.quarter {
    padding: 0 15px;
  }

  section.arrowbox .arrowbox_single .arrowbox_inner {
    hyphens: auto;
  }

}

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

  section.arrowbox .arrowbox_single .arrowbox_inner::after {
    display: none;
  }

  .header_right {
    gap: 30px;
  }

  section.hero .hero_text,
  section.banner .banner_text {
    padding: 199px 15px 100px 15px;
  }

  section.hero,
  section.banner {
    position: relative;
  }

  section.hero .hero_image,
  section.banner .banner_image {
    height: 400px;
    position: initial;
  }

  section.hero .hero_image img,
  section.banner .banner_image img {
    width: 100vw;
    height: 400px;
    bottom: 0;
    left: 0;
    top: initial;
  }

  section.logos span {
    padding-right: 0;
    text-align: center;
  }

  section.logos span::after {
    display: none;
  }

  section.teaser .teaser_single.third::after {
    display: none;
  }

  section.teaser .teaser_single.third:nth-child(odd):not(:last-child)::after {
    display: block;
    height: 200px;
    width: 1px;
    background-color: var(--grey);
    position: absolute;
    top: calc(50% - 100px);
    right: 0;
    content: '';
  }

  section.teaser .teaser_single.quarter::after {
    display: block;
  }  

  section.teaser .teaser_single.quarter:nth-child(3n)::after {
    display: none;
  }

  section.quote .quote_inner .quote_image img {
    position: initial;
  }

  section.quote .quote_inner {
    background: var(--grey-dark);
  }

  section.iconbox .icons .icon_single {
    padding: 0 15px;
  }

  section.iconbox .icons .icon_single::after {
    display: none;
  }

  footer .footer_inner {
    background: var(--grey);
    padding: 50px;
  }

  section.hero .hero_text h1,
  section.banner .banner_text h1 {
    font-size: 55px;
  }

}

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

  .wp-block-column .imagewrap img {
    position: initial;
    width: 100%;
    max-height: 400px;
  }

}

@media only screen and (max-width: 767px) {
	
	section.teaser .teaser_single.third:nth-child(odd):not(:last-child)::after {
		display: none;
	}

  section.arrowbox .arrowbox_single {
    padding: 0 15px;
  }

  header .header_inner nav.secondary ul li a {
    font-size: 0px;
  }

  header .header_inner nav.secondary ul li a i,
  .mobile_nav_open {
    font-size: 20px;
  }

  section.teaser .teaser_single.quarter::after {
    display: none;
  }

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

  footer .footer_inner {
    padding: 30px;
  }  

  section.teaser .teaser_single.third {
    padding: 0 15px;
  }

  section.teaser .teaser_single:nth-child(odd):not(:last-child)::after {
    display: none;
  }

  section.quote .quote_inner {
    padding-right: 30px;
  }

  section.hero .hero_text strong,
  section.banner .banner_text p {
    font-size: 22px;
  }

  section.hero .hero_text h1,
  section.banner .banner_text h1 {
    font-size: 50px;
  }  

  section.hero .hero_image,
  section.hero .hero_image img,
  section.banner .banner_image,
  section.banner .banner_image img {
    height: 350px;
  }

  section.gallery .image_wrap {
    height: 350px;
  }  

  .wp-block-column .imagewrap img {
    position: initial;
    width: 100%;
    max-height: 350px;
  }  

  section.text h2, 
  section.text h3,
  section.contact h2 {
    font-size: 38px;
  }

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

  section.hero .hero_text, 
  section.banner .banner_text {
    padding: 174px 15px 75px 15px;
  }

  section.rights {
    padding-top: 174px; 
  }    

  section.quote .quote_inner .quote_text {
    padding: 75px 15px;
  }

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

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

}

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

  section.quote .quote_inner .quote_text {
    padding: 50px 15px;
  }  

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

  footer {
    padding: 50px 0;
  }

  .header_right {
    gap: 15px;
  }

  h1,
  h2,
  h3 {
    hyphens: auto;
  }

  header .header_inner .logo_link img {
    width: 100px;
  }  

  section.quote .quote_inner {
    padding-right: 15px;
  }  

  section.hero .hero_text h1 em,
  section.banner .banner_text h1 em {
    display: inline;
  }

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

  section.hero .hero_text h1,
  section.banner .banner_text h1 {
    font-size: 45px;
  }  

  section.hero .hero_text strong,
  section.banner .banner_text p {
    font-size: 20px;
  } 

  section.hero .hero_image,
  section.hero .hero_image img,
  section.banner .banner_image,
  section.banner .banner_image img {
    height: 300px;
  }  

  section.gallery .image_wrap {
    height: 300px;
  }  

  section.text h2, 
  section.text h3,
  section.contact h2 {
    font-size: 35px;
  }  

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

  .wp-block-column .imagewrap img {
    position: initial;
    width: 100%;
    max-height: 300px;
  }    

  section.hero .hero_text, 
  section.banner .banner_text {
    padding: 149px 15px 50px 15px;
  }

  section.rights {
    padding-top: 149px; 
  }  

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

}