/*
Theme Name: Contap GmbH
Description: Theme Contap GmbH
Author: OAO Kreation GmbH
Template:
Version: 1.0.0
*/
/* ---- FONT ---- */
@import url("https://use.typekit.net/thb8iay.css");
/* ---- DEF ---- */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  color: #1f382b;
  font-family: "noka", sans-serif;
  font-weight: 500;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
}

a, p, label, span, article, button, li, th, td {
  font-family: "noka", sans-serif;
  font-weight: 300;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 140%;
}

strong {
  font-weight: 600;
  font-style: normal;
}

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

.clear {
  clear: both;
}

::selection,
::-moz-selection {
  background: #1f382b;
  color: #fff;
}

/* ---- MAIN ---- */
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;
  justify-content: space-between;
  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 .brand {
  display: block;
  width: calc(33.3333333333% - 40px);
  max-width: 250px;
  margin-bottom: 0px;
  padding: 20px;
  transition: all 1s ease;
}
header nav {
  display: flex;
  width: 20%;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
}
header nav .menu-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  z-index: 100;
}
header nav .menu-toggle span {
  height: 3px;
  width: 25px;
  background: #1f382b;
  margin: 4px 0;
  transition: all 1s ease;
}
header nav #menu {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background: #1f382b;
  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.collapsed {
  transform: translateX(0);
}
header nav #menu ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header nav #menu ul li {
  list-style: none;
  padding: 20px 50px;
  align-items: center;
}
header nav #menu ul li a {
  font-size: 1.75rem;
  color: #1f382b;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  header {
    height: 80px;
  }
  header .brand {
    width: calc(60% - 40px);
    max-width: 120px;
  }
}
/* ---- SECTION ---- */
section {
  width: 100vw;
  background-size: auto;
  background-position: center center;
  padding-bottom: 100px;
}
section:first-of-type {
  padding-top: 100px !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--green {
  background: #1f382b;
}
section.bg--green h1, section.bg--green h2, section.bg--green h3, section.bg--green h4, section.bg--green h5, section.bg--green h6,
section.bg--green p, section.bg--green ul, section.bg--green ol, section.bg--green label, section.bg--green span {
  color: #fff !important;
}
section.bg--pattern-color {
  background-image: url("../images/design/pattern-orange-white.png");
  background-size: 50% auto;
  background-position: top right;
  background-repeat: no-repeat;
}
section.bg--pattern-color--top-right::before {
  content: "";
  position: absolute;
  display: block;
  top: 0px;
  right: 0px;
  width: 75vw;
  height: 50vh;
  background-image: url("../images/design/pattern-orange-white.png");
  background-size: 100% auto;
  background-position: bottom right;
  background-repeat: no-repeat;
}
section.bg--pattern-black {
  background-image: url("../images/design/pattern-black.png");
  background-size: 100% auto;
  background-position: bottom right;
  background-repeat: no-repeat;
}
section.bg--pattern-light {
  position: relative;
  z-index: 0;
}
section.bg--pattern-light::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  inset: 0;
  background-image: url("../images/design/pattern-black.png");
  background-size: 100% auto;
  background-position: top right;
  background-repeat: no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 600px) {
  section.bg--pattern-light {
    position: relative;
    z-index: 0;
  }
  section.bg--pattern-light::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/design/pattern-black.png");
    background-size: 110% auto;
    background-position: top right;
    background-repeat: no-repeat;
    opacity: 0.12;
    pointer-events: none;
    z-index: -1;
  }
  section.bg--pattern-color--top-right::before {
    content: "";
    position: absolute;
    display: block;
    top: 0px;
    right: 0px;
    width: 100vw;
    height: 30vh;
    background-image: url("../images/design/pattern-orange-white.png");
    background-size: 150% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
  }
}
/* ---- HEADER IMG ---- */
.header-img {
  width: 100%;
  height: 50vh;
  margin-top: 100px;
  padding-left: 100px;
  padding-right: 100px;
}
.header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 600px) {
  .header-img {
    width: 100%;
    height: 35vh;
    margin-top: 0px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* ---- CONTENT ---- */
.content {
  padding-top: 150px !important;
  padding-bottom: 100px !important;
  color: #000000;
}
.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.leistung {
  padding-top: 0px !important;
  margin-top: -125px !important;
  position: relative;
}
.content.leistung::before {
  position: absolute;
  content: " ";
  top: 150px;
  left: calc(-50vw + 700px);
  width: 100vw;
  height: calc(100% - 150px);
  background: #1f382b;
}
.content.leistung h1, .content.leistung h2, .content.leistung h3, .content.leistung h4, .content.leistung h5, .content.leistung h6,
.content.leistung p, .content.leistung ul, .content.leistung ol, .content.leistung label, .content.leistung span {
  color: #fff !important;
}
.content .flex-row .col.box, .content .flex-row .col .box {
  padding: 30px;
  background: #fff;
  border-radius: 0px;
}
.content .flex-row .col.box h1 strong, .content .flex-row .col.box h2 strong, .content .flex-row .col.box h3 strong, .content .flex-row .col.box h4 strong, .content .flex-row .col.box h5 strong, .content .flex-row .col.box h6 strong,
.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, .content .flex-row .col .box h1 strong, .content .flex-row .col .box h2 strong, .content .flex-row .col .box h3 strong, .content .flex-row .col .box h4 strong, .content .flex-row .col .box h5 strong, .content .flex-row .col .box h6 strong,
.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: #1f382b !important;
}
.content .flex-row .col.box.bg-light, .content .flex-row .col .box.bg-light {
  background: #e8e8e8;
}
.content .flex-row .col.box.bg--grey, .content .flex-row .col .box.bg--grey {
  background: #e8e8e8;
}
.content .flex-row .col.box img, .content .flex-row .col .box img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  object-position: center center;
  margin-bottom: 25px;
}
.content .flex-row .col.hexagon, .content .flex-row .col .hexagon {
  display: block;
  aspect-ratio: 0.85;
  clip-path: polygon(50% 0%, 100% 22%, 100% 78%, 50% 100%, 0% 78%, 0% 22%);
  overflow: hidden;
  position: relative;
  margin-bottom: 50px;
}
.content .flex-row .col.hexagon img, .content .flex-row .col .hexagon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.content .flex-row .col.hexagon.border, .content .flex-row .col .hexagon.border {
  border: none;
  background: #fff;
}
.content .flex-row .col.hexagon.border img, .content .flex-row .col .hexagon.border img {
  margin: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  clip-path: polygon(50% 0%, 100% 22%, 100% 78%, 50% 100%, 0% 78%, 0% 22%);
}
.content h1, .content h2 {
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin-bottom: 20px;
}
.content h1.big, .content h2.big {
  font-size: 4.5rem;
  line-height: 4.5rem;
}
.content h1 span .highlight, .content h2 span .highlight {
  position: relative;
}
.content h1 span .highlight::before, .content h2 span .highlight::before {
  position: absolute;
  display: block;
  width: 100%;
  top: 50%;
  left: 0px;
  height: 75%;
  content: " ";
  background: #ef7f25;
}
.content h3 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-bottom: 20px;
}
.content h4 {
  font-size: 1.25rem;
  line-height: 1.25rem;
  margin-bottom: 10px;
}
.content p {
  line-height: 1.55rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.content p strong.highlight {
  color: #1f382b;
}
.content ul, .content p ul {
  padding-left: 10px;
}
.content ul li, .content p ul li {
  line-height: 1.55rem;
  font-weight: 400;
  margin-bottom: 5px;
  padding-left: 10px;
}
.content ul li::marker, .content p ul li::marker {
  content: "|";
  font-size: 1.55em;
  color: #1f382b;
}
.content label, .content span {
  line-height: 1.55rem;
  font-weight: 400;
}
.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: #1f382b;
  margin: 0px 3px;
  text-transform: uppercase;
}
.content a.button.outline {
  background: none;
  border: 1px solid #1f382b;
  color: white;
}
.content .social-links {
  display: block;
  padding: 8px 0px 0px;
}
.content .social-links a.social-link-single {
  font-size: 24px;
  color: white;
  margin-right: 10px;
}
.content .social-links a.social-link-single:last-of-type {
  margin-right: 0px;
}
.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: #1f382b;
  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%;
}

@media (max-width: 600px) {
  #intro {
    padding-top: 80px;
  }
  .content {
    padding-top: 120px !important;
    padding-bottom: 70px !important;
  }
  .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.full-height .flex-row .col img.img--brand-start {
    max-width: 200px !important;
    margin: 0 auto;
  }
  .content.padding {
    padding: 15px !important;
  }
  .content.leistung {
    padding-top: 0px !important;
    margin-top: -60px !important;
    position: relative;
  }
  .content.leistung::before {
    position: absolute;
    content: " ";
    top: 150px;
    left: 0px;
    width: 100vw;
    height: calc(100% - 150px);
    background: #1f382b;
  }
  .content.leistung .hexagon {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .content.leistung h1, .content.leistung h2, .content.leistung h3, .content.leistung h4, .content.leistung h5, .content.leistung h6,
.content.leistung p, .content.leistung ul, .content.leistung ol, .content.leistung label, .content.leistung span {
    color: #fff !important;
  }
  .content h1, .content h2 {
    font-size: 1.8rem;
    line-height: 1.8rem;
    margin-bottom: 20px;
  }
  .content h1.big, .content h2.big {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
  .content h3 {
    font-size: 1.35rem;
    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 #1f382b;
    border-bottom: 1px dotted #1f382b;
  }
  .content .info .info--col:nth-of-type(2) {
    border-bottom: 1px dotted #1f382b;
  }
  .content .info .info--col:nth-of-type(3) {
    border-right: 1px dotted #1f382b;
  }
  .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 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: 64px;
  margin-block: auto;
  height: fit-content;
  width: 48px;
  background: none !important;
  color: #1f382b;
  border: none;
  font-size: 3rem;
  padding: 0;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 100ms;
}
.content-slider .carousel-arrow:hover, .content-slider .carousel-arrow:focus {
  opacity: 1;
}
.content-slider .carousel-arrow.carousel-arrow--prev {
  left: 0px;
}
.content-slider .carousel-arrow.carousel-arrow--next {
  right: 0px;
}
.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.img--slider.flex--1 .carousel-slide {
  flex: 1 0 100%;
  aspect-ratio: 1;
}
.content-slider .carousel-container.img--slider.flex--1 .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-slider .carousel-container.img--slider.flex--4 .carousel-slide {
  flex: 1 0 25%;
  aspect-ratio: 1;
}
.content-slider .carousel-container.img--slider.flex--4 .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.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 .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: 5px;
  background: #1f382b !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.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.img--slider.flex--4 .carousel-slide {
    flex: 1 0 100%;
    aspect-ratio: 1;
  }
}
/* ---- TABS ---- */
.tab-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  background: #e8e8e8;
  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: #1f382b;
  color: #fff;
}

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

/* ---- 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: 45px 30px;
  transition: all 1s ease;
}
footer .footer-inner p {
  font-size: 13px;
  color: #222222 !important;
  text-align: center;
  display: block;
  width: 100%;
}
footer .footer-inner p:first-of-type {
  text-align: left !important;
}
footer .footer-inner p:last-of-type {
  text-align: right !important;
}
footer .footer-inner p strong {
  color: #1f382b;
}
footer .footer-inner p a {
  font-size: 13px;
  color: #222222 !important;
}
footer .footer-inner p a:hover, footer .footer-inner p a:focus {
  text-decoration: underline;
}
footer .footer-inner p a:last-of-type {
  padding-right: 0px;
  border-right: none;
  margin-right: 0px;
}
footer .footer-inner p a i {
  font-size: 25px;
}

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