@charset "UTF-8";
/*
Theme Name: Strobl Impuls
Description:
Author: OAO Kreation GmbH
Template:
Version: 1.0.1
*/
/* ---- FONT ---- */
@import url("https://use.typekit.net/dln0snq.css");
/* ---- DEF ---- */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  color: #000;
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 100;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

a, p, label, span, article, button, li, th, td {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 200;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 140%;
}

strong {
  font-weight: 700;
}

a {
  color: #8dbcb3;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}
a:link, a:visited {
  text-decoration: none;
}

.clear {
  clear: both;
}

::selection,
::-moz-selection {
  background: #8dbcb3;
  color: #fff;
}

/* ---- MAIN ---- */
html {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

body {
  overflow-y: scroll;
}

img {
  display: block;
  width: 100%;
  margin: 0px;
  padding: 0px;
}
img.circle {
  border-radius: 50%;
}

.no-margin {
  margin-bottom: 0px !important;
}

.darkened {
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: darken;
}

.darkened--50 {
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
}

.darkened--70 {
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: darken;
}

/* ---- HEADER ---- */
header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100px;
  padding: 0px;
  margin: 0px;
  z-index: 300;
  transition: all 1s ease;
}
header .header-inner {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 15px;
  transition: all 1s ease;
}
header.fixed-header .header-inner {
  padding: 10px 15px;
  max-height: 110px;
}
header.fixed-header .brand {
  max-width: 400px;
}
header nav {
  display: flex;
  width: 50%;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
}
header nav .icon-holder {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
}
header nav .icon-holder .floating-icons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}
header nav .icon-holder .floating-icons a i {
  font-size: 20px;
}
header nav .icon-holder .floating-icons a:last-of-type {
  margin-left: 20px;
}
header nav .icon-holder .floating-icons a:last-of-type i {
  font-size: 12px;
}
header nav .icon-holder .floating-icons a:last-of-type i:first-of-type {
  font-size: 20px;
  padding-bottom: 0px;
}
header nav .menu-toggle {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  z-index: 100;
  padding: 14px 15px;
  background-color: #8dbcb3;
  border-radius: 50%;
}
header nav .menu-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 3px 0px;
  transition: all 1s ease;
}
header nav #menu {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 50vw;
  height: 100vh;
  background: #8dbcb3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 1s ease-in-out;
  transform: translateX(-100%);
  display: flex;
  align-items: center;
}
header nav #menu:after {
  left: 0px;
  transform: translateX(0vw);
}
header nav #menu.collapsed {
  transform: translateX(0);
}
header nav #menu.collapsed .menu-toggle span {
  background: #fff;
}
header nav #menu.collapsed .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
header nav #menu.collapsed .menu-toggle span:nth-child(2) {
  opacity: 0;
}
header nav #menu.collapsed .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}
header nav #menu.collapsed .menu-toggle--close {
  position: absolute;
  top: 30px;
  left: 100px;
  width: 50px;
  height: 50px;
}
header nav #menu.collapsed .menu-toggle--close span {
  display: block;
  width: 40px;
  height: 3px;
  background: #fff;
}
header nav #menu.collapsed .menu-toggle--close span:first-of-type {
  transform: rotate(45deg);
  translate: 0px 25px;
}
header nav #menu.collapsed .menu-toggle--close span:last-of-type {
  transform: rotate(-45deg);
  translate: 0px 22px;
}
header nav #menu ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
header nav #menu ul li {
  list-style: none;
  padding: 20px 50px 20px 100px;
  width: 100%;
}
header nav #menu ul li a {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  text-transform: lowercase;
}
header nav #menu ul li a:active, header nav #menu ul li a.active {
  color: #8dbcb3;
}

@media (min-width: 992px) {
  header {
    background: none;
  }
  header .brand {
    display: none;
  }
  header nav {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0px;
  }
  header nav .menu-toggle {
    display: none;
  }
  header nav #menu {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: auto;
    height: auto;
    background: none;
    transition: transform 1s ease-in-out;
    transform: translateX(0) !important;
  }
  header nav #menu ul {
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  header nav #menu ul li {
    list-style: none;
    padding: 20px 20px;
    display: flex;
    align-items: center;
  }
  header nav #menu ul li.social {
    display: inline-flex !important;
    padding-left: 20px;
    padding-right: 0px;
  }
  header nav #menu ul li a {
    font-size: 17px;
    color: #000;
    text-decoration: none;
    text-transform: lowercase;
    display: inline-block;
    white-space: nowrap;
    font-weight: 200;
  }
  header nav #menu .social-links--mobile {
    display: none;
  }
  header nav #menu ul li a {
    color: #000;
    transition: color 0.3s ease;
  }
  body.nav-white header nav #menu ul li a {
    color: #fff;
  }
  body.nav-white header nav #menu ul li a.active {
    color: #8dbcb3;
  }
  body.nav-turquoise header nav #menu ul li a {
    color: #000;
  }
  body.nav-turquoise header nav #menu ul li a.active {
    color: #fff;
  }
  body.nav-orange header nav #menu ul li a {
    color: #000;
  }
  body.nav-orange header nav #menu ul li a.active {
    color: #fff;
  }
}
@media (max-width: 900px) {
  header {
    position: absolute;
  }
  header .brand {
    width: calc(100% - 150px);
    max-width: 220px;
    padding: 20px;
    position: absolute;
    top: 0px;
    right: 20px;
  }
  header nav .menu-toggle {
    z-index: 1;
    position: fixed;
    top: 0px;
  }
  header nav #menu {
    z-index: 10;
  }
  header nav #menu.collapsed .menu-toggle--close {
    left: 25px;
    z-index: 50;
  }
  header nav #menu.collapsed ul li {
    padding-left: 50px;
    padding-right: 50px;
  }
  header nav #menu.collapsed ul li:has(.social), header nav #menu.collapsed ul li.social {
    display: none !important;
  }
  header nav #menu.collapsed ul li a:active, header nav #menu.collapsed ul li a.active {
    color: #000;
  }
  header nav #menu .social-links--mobile {
    position: absolute;
    bottom: 20px;
    left: 0px;
  }
  header nav #menu .social-links--mobile a {
    font-size: 20px;
    color: #fff;
    padding: 0px 20px;
  }
}
@media (max-width: 770px) {
  header {
    height: 96px;
  }
  header nav {
    width: 150px !important;
    margin-left: 20px;
  }
}
@media (max-width: 750px) {
  header nav .floating-icons {
    display: none !important;
  }
}
@media (max-width: 600px) {
  header {
    height: 96px;
  }
  header .brand {
    padding: 20px 15px;
  }
  header nav #menu {
    position: fixed;
    top: 0px;
    left: 0px;
    width: calc(100vw - 30px);
  }
  header nav #menu.collapsed {
    transform: translateX(0);
  }
  header nav #menu.collapsed:after {
    display: none;
  }
  header nav #menu.collapsed ul li {
    padding-left: 25px;
    padding-right: 25px;
  }
  header nav #menu.collapsed ul li a {
    font-size: 1.5rem;
  }
}
@media (max-width: 400px) {
  header {
    height: 81px;
  }
  header nav {
    width: 50px !important;
    margin-left: 0px;
  }
}
/* ---- SECTION ---- */
section {
  width: 100vw;
  background-size: auto;
  background-position: center center;
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
section:first-of-type .content {
  padding-top: 30vh !important;
  padding-bottom: 30vh !important;
}
section.flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
section.flex.flex-start {
  align-items: flex-start;
}
section.flex.flex-end {
  align-items: flex-end;
}
section.full-height {
  min-height: 100vh;
}
section.height--50 {
  min-height: 50vh;
}
section.height--55 {
  min-height: 55vh;
}
section.height--60 {
  min-height: 60vh;
}
section.height--65 {
  min-height: 65vh;
}
section.height--70 {
  min-height: 70vh;
}
section.height--75 {
  min-height: 75vh;
}
section.padding {
  padding: 100px;
}
section.sticky {
  position: sticky;
  top: 0px;
}
section.bg--light {
  background: #efe9e0;
}
section.bg--turquoise {
  background: #8dbcb3;
  position: relative;
  color: #000 !important;
}
section.bg--turquoise .flex-row {
  z-index: 2;
}
section.bg--turquoise h1, section.bg--turquoise h2, section.bg--turquoise h3, section.bg--turquoise h4, section.bg--turquoise h5, section.bg--turquoise h6,
section.bg--turquoise p, section.bg--turquoise ul, section.bg--turquoise ol, section.bg--turquoise label, section.bg--turquoise span {
  color: #000;
}
section.bg--orange {
  background: #ff4300;
  position: relative;
  color: #fff !important;
  /* &::before {
    content: " ";
    position: absolute;
    inset: 0;
    background: $fs-orange;
    mix-blend-mode: multiply;
    opacity: 1;
    z-index: 1;
  } */
}
section.bg--orange .flex-row {
  z-index: 2;
}
section.bg--orange h1, section.bg--orange h2, section.bg--orange h3, section.bg--orange h4, section.bg--orange h5, section.bg--orange h6,
section.bg--orange p, section.bg--orange ul, section.bg--orange ol, section.bg--orange label, section.bg--orange span {
  color: #fff;
}
section.bg--black {
  background: #000;
  position: relative;
  color: #fff !important;
}
section.bg--black .flex-row {
  z-index: 2;
}
section.bg--black h1, section.bg--black h2, section.bg--black h3, section.bg--black h4, section.bg--black h5, section.bg--black h6,
section.bg--black p, section.bg--black ul, section.bg--black ol, section.bg--black label, section.bg--black span {
  color: #fff;
}

@media (max-width: 750px) {
  section:first-of-type .content {
    padding-top: 25vh !important;
    padding-bottom: 25vh !important;
  }
}
/* ---- FIX BG IMG ---- */
#teaser {
  background-position: center center;
}

@media (max-width: 750px) {
  #teaser {
    background-position: 20% center !important;
  }
}
/* ---- CONTENT ---- */
.content {
  padding-top: 120px !important;
  padding-bottom: 100px !important;
}
.content.full-width {
  max-width: none;
  padding-left: 30px !important;
  padding-right: 30px !important;
}
.content.padding {
  padding: 100px !important;
}
.content.sticky {
  position: sticky;
  top: 0px;
}
.content .flex-row .col.box {
  padding: 30px;
  border-radius: 0px;
}
.content .flex-row .col.box h1, .content .flex-row .col.box h2, .content .flex-row .col.box h3, .content .flex-row .col.box h4, .content .flex-row .col.box h5, .content .flex-row .col.box h6 {
  color: #8dbcb3;
}
.content .flex-row .col.box p, .content .flex-row .col.box ul, .content .flex-row .col.box ol, .content .flex-row .col.box label, .content .flex-row .col.box span {
  color: #222;
}
.content .flex-row .col.box p strong, .content .flex-row .col.box ul strong, .content .flex-row .col.box ol strong, .content .flex-row .col.box label strong, .content .flex-row .col.box span strong {
  color: #8dbcb3;
}
.content .flex-row .col.box.bg-brown {
  background: #8dbcb3;
  color: #fff !important;
}
.content .flex-row .col.box.bg-brown h1, .content .flex-row .col.box.bg-brown h2, .content .flex-row .col.box.bg-brown h3, .content .flex-row .col.box.bg-brown h4, .content .flex-row .col.box.bg-brown h5, .content .flex-row .col.box.bg-brown h6,
.content .flex-row .col.box.bg-brown p, .content .flex-row .col.box.bg-brown ul, .content .flex-row .col.box.bg-brown ol, .content .flex-row .col.box.bg-brown label, .content .flex-row .col.box.bg-brown span {
  color: #fff !important;
}
.content .flex-row .col.box.bg-brown h1 strong, .content .flex-row .col.box.bg-brown h2 strong, .content .flex-row .col.box.bg-brown h3 strong, .content .flex-row .col.box.bg-brown h4 strong, .content .flex-row .col.box.bg-brown h5 strong, .content .flex-row .col.box.bg-brown h6 strong,
.content .flex-row .col.box.bg-brown p strong, .content .flex-row .col.box.bg-brown ul strong, .content .flex-row .col.box.bg-brown ol strong, .content .flex-row .col.box.bg-brown label strong, .content .flex-row .col.box.bg-brown span strong {
  color: #fff !important;
}
.content .flex-row .col.box img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  object-position: center center;
  margin-bottom: 25px;
}
.content h1, .content h2 {
  font-size: 3.5rem;
  line-height: 3.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.content h1.big, .content h2.big {
  font-size: 4.5rem;
  line-height: 4.5rem;
}
.content h1.start--headline, .content h2.start--headline {
  font-size: 7.5rem;
  line-height: 7.5rem;
}
.content h3 {
  text-transform: uppercase;
  font-size: 2.25rem;
  line-height: 2.25rem;
  margin-bottom: 20px;
}
.content h4 {
  font-size: 1.25rem;
  line-height: 1.25rem;
  margin-bottom: 10px;
}
.content p {
  line-height: 1.55rem;
  margin-bottom: 20px;
}
.content ul, .content p ul {
  padding-left: 10px;
}
.content ul li, .content p ul li {
  line-height: 1.55rem;
  margin-bottom: 5px;
  padding-left: 10px;
}
.content ul li::marker, .content p ul li::marker {
  content: "»";
  font-size: 1.55em;
  color: #8dbcb3;
}
.content label, .content span {
  line-height: 1.55rem;
  font-weight: 100;
}
.content .text-pull-center {
  text-align: center;
}
.content .text-pull-right {
  text-align: right;
}
.content a.button {
  display: inline-block;
  min-height: 38px;
  padding: 8px 25px 5px;
  color: #fff;
  background: #8dbcb3;
  margin: 0px 3px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 1s ease;
}
.content a.button:hover {
  background: none;
  border: 1px solid #8dbcb3;
  color: #8dbcb3;
}
.content a.button.outline {
  background: none;
  border: 1px solid #8dbcb3;
  color: white;
}
.content a.button.white {
  background: #fff;
  border: 1px solid #fff;
  color: #8dbcb3;
}
.content a.button.white:hover, .content a.button.white:focus {
  background: none;
  border: 1px solid #fff;
  color: #fff;
}
.content button {
  display: inline-block;
  min-height: 38px;
  padding: 8px 15px;
  color: black;
  background: white;
  border: none;
  outline: none;
  margin: 0px 3px;
}
.content button.outline {
  background: none;
  border: 1px solid white;
  color: white;
}
.content .highlight-button {
  display: flex;
  aspect-ratio: 1;
  flex-direction: row;
  align-items: center;
  width: 180px;
  background: #8dbcb3;
  border: 10px solid #fff;
  position: absolute;
  top: -90px;
  right: 50px;
  z-index: 5;
  border-radius: 50%;
}
.content .highlight-button.left-bottom {
  top: auto;
  right: auto;
  bottom: -90px;
  left: 50px;
}
.content .highlight-button span {
  color: #fff;
  text-align: center;
  width: 100%;
  line-height: 120%;
}
.content img.signet {
  max-width: 120px;
}
@media (max-width: 900px) {
  .content .hide--mobile {
    display: none;
  }
}
@media (max-width: 850px) {
  .content h1.start--headline, .content h2.start--headline {
    font-size: 5.5rem;
    line-height: 5.5rem;
  }
}
@media (max-width: 600px) {
  #intro {
    padding-top: 80px;
  }
  .content {
    padding-top: 120px !important;
    padding-bottom: 70px !important;
  }
  .content.container {
    max-width: calc(100% - 0px);
    padding-top: 50px !important;
    padding-bottom: 40px !important;
    margin: 0 auto;
  }
  .content.full-width {
    max-width: none;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .content.full-height {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 0px !important;
  }
  .content.full-height .flex-row {
    width: 100%;
    flex-direction: column;
  }
  .content.full-height .flex-row .col {
    display: flex;
    align-items: center;
  }
  .content.full-height .flex-row .col.padding-left--150 {
    padding-left: 0px;
  }
  .content.full-height .flex-row .col.padding-right--150 {
    padding-right: 0px;
  }
  .content.full-height .flex-row .col.lg-6 {
    width: 100%;
  }
  .content.full-height .flex-row .col:last-of-type {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .content.padding {
    padding: 15px !important;
  }
  .content h1, .content h2 {
    font-size: 1.7rem;
    line-height: 1.7rem;
    margin-bottom: 20px;
  }
  .content h1.big, .content h2.big {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
  .content h1.start--headline, .content h2.start--headline {
    font-size: 4.5rem;
    line-height: 4.5rem;
  }
  .content h3 {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-bottom: 20px;
  }
  .content h4 {
    font-size: 1.25rem;
    line-height: 1.25rem;
    margin-bottom: 10px;
  }
  .content .text-pull-center {
    text-align: center;
  }
  .content .text-pull-right {
    text-align: left !important;
  }
  .content .info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .content .info .info--col {
    flex: 1 0 50%;
    padding: 15px 20px;
    border-right: none;
  }
  .content .info .info--col:first-of-type {
    border-right: 1px dotted #8dbcb3;
    border-bottom: 1px dotted #8dbcb3;
  }
  .content .info .info--col:nth-of-type(2) {
    border-bottom: 1px dotted #8dbcb3;
  }
  .content .info .info--col:nth-of-type(3) {
    border-right: 1px dotted #8dbcb3;
  }
  .content .info .info--col.width--50 {
    width: 50%;
  }
  .content .info .info--col:last-of-type {
    border-right: none;
  }
  .content .info .info--col span {
    text-align: center;
  }
  .content .info .info--col span.big {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-bottom: 5px;
  }
  .content .highlight-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .content .highlight-container .highlight {
    flex: 1 0 100%;
    margin-bottom: 15px;
    padding-right: 15px;
  }
  .content .highlight-container .highlight i {
    width: 28px;
    font-size: 18px;
    margin-right: 8px;
  }
  .content .col.zertifikat {
    width: calc(50% - 20px) !important;
    padding: 0px 20px !important;
  }
  #team .content.container {
    padding: 0px !important;
  }
  #team .content.container.min-height--70 {
    min-height: 0px !important;
  }
  #team .content.container .bg-img {
    display: block;
    width: 100%;
    position: relative;
  }
  #team .content.container .bg-img img {
    display: inline-block;
  }
}
@media (max-width: 500px) {
  .content h1.start--headline, .content h2.start--headline {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
  .content img.signet {
    max-width: 85px;
    margin: 0 auto;
  }
}
@media (max-width: 400px) {
  .content h1.start--headline, .content h2.start--headline {
    font-size: 3rem;
    line-height: 3rem;
  }
}
/* ---- TEASER ---- */
section.teaser {
  position: relative;
  min-height: 200vh !important;
}
section.teaser::before {
  content: " ";
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0px;
  background: url("../images/strobl-fabian-8.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  z-index: 1;
}
section.teaser::after {
  content: " ";
  width: 100%;
  height: 100vh;
  position: absolute;
  bottom: 0px;
  background: url("../images/strobl-fabian-18.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  z-index: 1;
}
section.teaser .content {
  position: relative;
  z-index: 5;
}
section.teaser .content .flex-row {
  padding-left: 15px;
  padding-right: 15px;
}
section.teaser .content .flex-row .col {
  margin: 0px;
}
section.teaser .content .flex-row .col.lg-6 {
  width: 50%;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
}
section.teaser .content .flex-row .col p {
  margin-bottom: 0px;
}
section.teaser .content .flex-row .col:nth-of-type(1) {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding-right: 50px;
  padding-bottom: 50px;
}
section.teaser .content .flex-row .col:nth-of-type(2) {
  border-bottom: 1px solid #fff;
  text-align: right;
  padding-left: 50px;
  padding-bottom: 50px;
}
section.teaser .content .flex-row .col:nth-of-type(3) {
  border-right: 1px solid #fff;
  padding-right: 50px;
  padding-top: 50px;
}
section.teaser .content .flex-row .col:nth-of-type(4) {
  text-align: right;
  padding-left: 50px;
  padding-top: 50px;
}

/* ---- EFFECTS ---- */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-image {
  transform: translateY(80px) scale(1.08);
  filter: blur(10px);
  transition: opacity 1s ease, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), filter 1s ease;
}
.reveal-image.is-visible {
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-title {
  transition-delay: 0.15s;
}

.reveal-delay--1s {
  transition-delay: 1s;
}

.reveal-delay--2s {
  transition-delay: 2s;
}

/* ---- CONTENT SLIDER ---- */
.content-slider button {
  margin: auto 0px !important;
  z-index: 50;
}
.content-slider .carousel-arrow {
  position: absolute;
  display: flex;
  justify-content: center;
  top: 0;
  bottom: 30px;
  margin-block: auto;
  height: fit-content;
  width: 45px;
  height: 45px;
  background: #8dbcb3 !important;
  color: #fff;
  border: none;
  font-size: 3rem;
  line-height: 55px;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  transition: opacity 100ms;
}
.content-slider .carousel-arrow:hover, .content-slider .carousel-arrow:focus {
  opacity: 1;
}
.content-slider .carousel-arrow.carousel-arrow--prev {
  left: -20px;
}
.content-slider .carousel-arrow.carousel-arrow--next {
  right: -20px;
}
.content-slider .carousel-container {
  width: 100%;
  padding-block: 16px 32px;
  overflow-x: auto;
  display: flex;
  width: 100%;
  gap: 25px;
  scroll-snap-type: x mandatory;
  flex-flow: row nowrap;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.content-slider .carousel-container.img--slider .carousel-slide {
  flex: 1 0 100%;
  aspect-ratio: 1.5;
}
.content-slider .carousel-container.img--slider .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.content-slider .carousel-container.flex--1 .carousel-slide {
  flex: 1 0 100%;
  aspect-ratio: 1;
}
.content-slider .carousel-container.flex--1 .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-slider .carousel-container.flex--4 .carousel-slide {
  flex: 1 0 25%;
  aspect-ratio: 1;
}
.content-slider .carousel-container.flex--4 .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-slider .carousel-container.timeline {
  gap: 40px;
}
.content-slider .carousel-container.flex--5 .carousel-slide {
  flex: 1 0 20%;
  aspect-ratio: auto;
  padding: 20px;
}
.content-slider .carousel-container.flex--5 .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 150px;
}
.content-slider .carousel-container.karriere .carousel-slide {
  flex: 1 0 100%;
  padding: 50px;
  border: 1px solid #ffffff;
}
.content-slider.title {
  width: 100%;
  height: 100%;
}
.content-slider.title .carousel-container {
  width: 100%;
  height: 100%;
  padding-block: 0px;
  gap: 0px;
}
.content-slider.title .carousel-container.img--slider .carousel-slide {
  flex: 1 0 100%;
  width: 100%;
  height: 100%;
}
.content-slider.title .carousel-container.img--slider .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-slider .carousel-container::-webkit-scrollbar {
  display: none !important;
  height: 14px;
  width: calc(100% - 48px);
}
.content-slider .carousel-container::-webkit-scrollbar-track {
  background: none !important;
}
.content-slider .carousel-container::-webkit-scrollbar-thumb {
  background: none !important;
}
.content-slider .carousel-container::-webkit-scrollbar-track-piece:start {
  background: none !important;
}
.content-slider .carousel-slide {
  flex: 1 0 90%;
  flex-flow: column nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: center;
}
.content-slider .carousel-slide.hover--link {
  position: relative;
}
.content-slider .carousel-slide.hover--link:hover:after, .content-slider .carousel-slide.hover--link:focus:after {
  position: absolute;
  top: 0px;
  left: 0px;
  content: " ";
  background: rgba(87, 63, 41, 0.5);
  width: 100%;
  height: 100%;
  transition: all 1s ease-in-out;
}
.content-slider .carousel-slide .flex-row.flex-bottom {
  height: 100%;
  min-height: 0px;
}
.content-slider .carousel-slide .flex-row.flex-bottom .col:first-of-type {
  height: 100% !important;
  align-self: flex-end !important;
}
.content-slider .carousel-slide .flex-row.flex-bottom .col:first-of-type img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.content-slider .carousel-slide .flex-row.flex-bottom .col:last-of-type {
  align-self: flex-end !important;
}
.content-slider .carousel-controls {
  display: block;
  width: 100%;
  text-align: center;
}
.content-slider .carousel-controls .carousel-controls--container {
  display: inline-block;
  margin: 0 auto;
}
.content-slider .carousel-controls a {
  display: block;
  float: left;
  width: 10px;
  height: 10px;
  border-radius: 0px;
  background: #fff !important;
  margin-right: 10px;
  opacity: 0.5;
}
.content-slider .carousel-controls a.active {
  opacity: 1;
}

@media (max-width: 800px) {
  .content-slider .carousel-slide {
    flex: 1 0 100%;
  }
  .content-slider .carousel-slide .flex-row {
    width: 80%;
    max-width: 500px;
  }
  .content-slider .carousel-slide .flex-row img {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .content-slider .carousel-container {
    width: 100%;
    padding-block: 16px 32px;
    overflow-x: auto;
    display: flex;
    width: 100%;
    gap: 25px;
    scroll-snap-type: x mandatory;
    flex-flow: row nowrap;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .content-slider .carousel-container * .carousel-slide, .content-slider .carousel-container.img--slider .carousel-slide {
    flex: 1 0 100%;
    aspect-ratio: 1.5;
  }
  .content-slider .carousel-container * .carousel-slide img, .content-slider .carousel-container.img--slider .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .content-slider .carousel-container *.flex--4 .carousel-slide, .content-slider .carousel-container.img--slider.flex--4 .carousel-slide {
    flex: 1 0 100%;
    aspect-ratio: 1;
  }
  .content-slider .carousel-container .carousel-slide {
    flex: 1 0 100%;
    aspect-ratio: 1.5;
  }
  .content-slider .carousel-container .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .content-slider .carousel-container.flex--4 .carousel-slide {
    flex: 1 0 100%;
    aspect-ratio: 1;
  }
  .content-slider .carousel-arrow {
    top: 0;
    bottom: 35px;
    margin-block: auto;
    height: fit-content;
    width: 30px;
    padding-top: 0px;
    padding-bottom: 5px;
    color: #8dbcb3;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 1;
    transition: opacity 100ms;
  }
  .content-slider .carousel-arrow:hover, .content-slider .carousel-arrow:focus {
    opacity: 1;
  }
  .content-slider .carousel-arrow.carousel-arrow--prev {
    left: -20px;
  }
  .content-slider .carousel-arrow.carousel-arrow--next {
    right: -20px;
  }
}
/* ---- MODAL ---- */
.content .modal {
  display: none;
  position: fixed;
  align-items: center;
  z-index: 5000 !important;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.85);
}
.content .modal .modal-content {
  background-color: #fff;
  margin: auto auto;
  padding: 30px 30px 20px 30px;
  width: 100%;
  max-width: 800px;
  border-radius: 0px;
  position: relative;
}
.content .modal .modal-content h2, .content .modal .modal-content h3 {
  color: #8dbcb3 !important;
}
.content .modal .modal-content p, .content .modal .modal-content ul, .content .modal .modal-content label, .content .modal .modal-content span {
  color: #222222 !important;
  margin-bottom: 15px;
}
.content .modal .close {
  color: #fff !important;
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 24px;
  cursor: pointer;
  background: #8dbcb3;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content .modal .close i {
  color: #ffffff;
}
.content .modal .close:hover {
  color: #fff;
  background: #8dbcb3;
}

/* ---- ACCORDION ---- */
.accordion {
  overflow: hidden;
}
.accordion .acc-item {
  margin-bottom: 20px;
}
.accordion .acc-item .acc-trigger {
  position: relative;
  width: 100%;
  text-align: left;
  border: 0;
  padding: 15px 20px;
  cursor: pointer;
  display: block;
  background: #fff;
}
.accordion .acc-item .acc-trigger h3 {
  margin-bottom: 0px;
}
.accordion .acc-item .acc-trigger label {
  margin-top: 5px;
  margin-bottom: 0px;
}
.accordion .acc-item .acc-trigger .acc-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 15px;
  height: 15px;
  border-right: 2px solid #8dbcb3;
  border-bottom: 2px solid #8dbcb3;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}
.accordion .acc-item .acc-trigger[aria-expanded=true] {
  background: #8dbcb3;
}
.accordion .acc-item .acc-trigger[aria-expanded=true] h3, .accordion .acc-item .acc-trigger[aria-expanded=true] label {
  color: #fff;
}
.accordion .acc-item .acc-trigger[aria-expanded=true] .acc-icon {
  transform: rotate(-135deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.accordion .acc-item .acc-panel {
  display: block;
  height: 0px;
  will-change: height;
  overflow: hidden;
}
.accordion .acc-item .acc-panel .acc-panel__inner {
  background: #fff;
  padding: 20px;
  margin: 0;
}

/* ---- TABS ---- */
.tab-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  background: #8dbcb3;
  position: sticky;
  z-index: 10;
  top: 100px;
}
.tab-buttons a {
  flex: 1 1 0;
  max-width: 100%;
}
.tab-buttons a button {
  background: #888;
  color: #fff;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border: none;
  cursor: pointer;
}
.tab-buttons a button span {
  display: inline;
  text-align: left;
  margin: 0;
  padding: 0;
  line-height: 120%;
}
.tab-buttons a button.active {
  background: #8dbcb3;
  color: #fff;
}

.tab-content {
  display: none;
  margin: 0px -20px;
}
.tab-content.active {
  display: block;
}

/* ---- FORM ---- */
.cmxform {
  text-align: left;
}
.cmxform .col {
  margin-bottom: 10px;
}
.cmxform .col h3 {
  margin-bottom: 0px;
}
.cmxform label {
  width: 100%;
  margin-bottom: 5px;
  position: relative;
  font-weight: 200 !important;
}
.cmxform label.required::after {
  content: " *";
  position: absolute;
  top: 0;
  right: -7px;
  color: #8dbcb3;
  font-size: 17px;
}
.cmxform input[type=checkbox] {
  display: inline-block;
  width: auto;
  float: left;
  margin-top: 5px;
  margin-right: 5px;
}
.cmxform input,
.cmxform textarea {
  width: 100%;
  padding: 10px;
  outline: none;
  display: block;
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 200 !important;
  font-size: 17px;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid #fff;
  padding: 10px 0px !important;
  background: rgba(255, 255, 255, 0);
  color: #fff;
}
.cmxform input:hover, .cmxform input:focus,
.cmxform textarea:hover,
.cmxform textarea:focus {
  border: 1px solid #8dbcb3;
  outline: none;
}
.cmxform textarea {
  display: block;
  width: 100%;
  height: 100px;
}
.cmxform .contactform_button {
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 200;
  border: 1px solid #fff !important;
  font-size: 17px;
  transition: all 1s ease;
  text-transform: uppercase !important;
  background-color: rgba(255, 255, 255, 0) !important;
}
.cmxform .contactform_button:hover, .cmxform .contactform_button:focus, .cmxform .contactform_button:active {
  background-color: #8dbcb3 !important;
  border: 1px solid #8dbcb3 !important;
  color: #000;
  outline: none;
}
.cmxform label.error {
  display: none;
  color: #8dbcb3;
  padding-top: 3px;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 15px;
}

/* ---- FOOTER ---- */
footer {
  width: 100%;
  padding: 0px;
  margin: 0px;
  z-index: 300;
  transition: all 1s ease;
}
footer .content {
  padding-top: 20px;
  padding-bottom: 10px;
}
footer .footer-inner {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 30px 0px;
  transition: all 1s ease;
}
footer .footer-inner .footer-col {
  width: 50%;
}
footer .footer-inner .footer-col p {
  color: #222222;
  text-align: center;
  display: block;
  width: 100%;
}
footer .footer-inner .footer-col p a {
  color: #222222;
}
footer .footer-inner .footer-col p a:hover, footer .footer-inner .footer-col p a:focus {
  text-decoration: underline;
}
footer .footer-inner .footer-col p a:last-of-type {
  padding-right: 0px;
  border-right: none;
  margin-right: 0px;
}
footer .footer-inner .footer-col:first-of-type {
  padding: 20px 0px;
}
footer .footer-inner .footer-col:first-of-type p {
  text-align: left;
}
footer .footer-inner .footer-col:last-of-type p, footer .footer-inner .footer-col:last-of-type p a {
  padding: 20px 0px;
  text-align: right;
}

@media (max-width: 600px) {
  footer {
    width: 100%;
    padding: 0px;
    margin: 0px;
    z-index: 300;
    transition: all 1s ease;
  }
  footer .content {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  footer .footer-inner {
    display: flex;
    flex-direction: column-reverse;
    padding: 15px;
  }
  footer .footer-inner .footer-col {
    width: 100%;
  }
  footer .footer-inner .footer-col p {
    text-align: center !important;
  }
}

/*# sourceMappingURL=oao-strobl-default.css.map */
