/*--------------------------------------------------------------
TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
    - Normalize
    - Box sizing
    - Imports
# Base
    - Colors
    - Background Color
    - Typography
    - Logo
    - Buttons
    - Elements
    - Grid
    - Links
# Components
    - Navigation
    - Footer
    - Media

# Utilities
    - Accessibility
    - Alignments
# Content
    - Front Page
    - Bibliothek
    - FAQ
    - Impressum
    - Datenschutz
    - Projekt Single

--------------------------------------------------------------
*/
/*--------------------------------------------------------------
Generic:
----------------------------------------------------------------

/* START: Normalize */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&family=Source+Serif+Pro:ital,wght@0,300;0,400;0,700;1,400&display=swap");
* {
  padding: 0;
  margin: 0;
  max-width: 100%;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

input,
button,
submit {
  border: none;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: darkgray;
}

/* END: Normalize */
/* START: Box Sizing */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/* END: Box Sizing */
/*--------------------------------------------------------------
Imports:
----------------------------------------------------------------
/* START: Media Queries */
/* END: Media Queries */
/*--------------------------------------------------------------
Base:
----------------------------------------------------------------

/* START: Colors */
/* END: Colors */
/* START: Background Color */
body {
  background-color: #ffffff;
}

/* END: Background Color */
/* START: Typography */
/*$text: "Source Serif Pro", serif;*/
html,
body {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  width: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}
@media (min-width: 600px) {
  html,
body {
    font-size: 18px;
  }
}
@media (min-width: 1800px) {
  html,
body {
    font-size: 20px;
  }
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Helvetica Neue", sans-serif;
}

a strong {
  text-decoration: underline;
  font-weight: 500;
}

strong {
  color: #c4182a;
  font-weight: 400;
}

.title1 {
  color: #c4182a;
  letter-spacing: 1px;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 400;
}

.title2 {
  text-decoration: underline;
  font-weight: 200;
  padding: 12px 0;
  margin-bottom: 1%;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

p {
  padding: 5px 0;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.5px;
}

p,
span {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
}

a {
  color: #000;
  text-decoration: none;
}

nav li {
  list-style-type: none;
}

ul > li {
  list-style-position: inside;
}

/* END: Typography */
/* START: Buttons */
button {
  background: none;
  font-family: "Helvetica Neue", sans-serif;
  cursor: pointer;
}

/* END: Buttons */
/*START: Variables */
.inline--layout {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*END: Variables */
/* START: Elements */
/* END: Elements */
/* START: Grid */
.grid-width {
  max-width: 1366px;
  width: 90%;
  margin: 0 auto;
  height: 100%;
}
@media (min-width: 600px) {
  .grid-width {
    width: 80%;
  }
}
@media (min-width: 901px) {
  .grid-width {
    width: 70%;
  }
}
@media (min-width: 1800px) {
  .grid-width {
    width: 60%;
  }
}

.grid-width-wide {
  width: 94%;
  margin: 0 auto;
}
.grid-width-narrow {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 901px) {
  .grid-width-narrow {
    width: 60%;
  }
}
@media (min-width: 1200px) {
  .grid-width-narrow {
    width: 50%;
  }
}

/* END: Grid */
/* START: Links */
a {
  text-decoration: none;
  font-family: "Helvetica Neue", sans-serif;
}

div a:hover {
  text-decoration: underline;
}

div::-webkit-scrollbar {
  display: none;
}

/*ul {
  list-style-position: outside;
}
*/
/* END: Links */
/*--------------------------------------------------------------
Components:
----------------------------------------------------------------

/* START: Navigation */
header.site-header {
  background: #fff;
  box-shadow: 2px 0px 2px rgba(0, 0, 0, 0.16);
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  height: 90px;
  display: flex;
  align-items: center;
  transition: background 0.2s ease-in-out, height 0.2s ease-in-out;
  /* Submenu */
}
@media (min-width: 600px) {
  header.site-header {
    height: 100px;
  }
}
header.site-header .grid-width-wide {
  transition: all 0.2s ease-in-out;
}
header.site-header #nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*@media only screen and (max-width: 1200px) {
    flex-flow: row wrap;
  }
  @media only screen and (max-width: 900px) {
    flex-flow: row nowrap;
  }*/
}
@media only screen and (max-width: 425px) {
  header.site-header #nav-row {
    justify-content: space-evenly;
  }
}
header.site-header .logo {
  max-width: 200px;
  padding-right: 30px;
  transition: opacity 0.2s ease-in-out;
}
@media (min-width: 1200px) {
  header.site-header .logo {
    max-width: 250px;
  }
}
@media (min-width: 1800px) {
  header.site-header .logo {
    max-width: 300px;
  }
}
@media only screen and (max-width: 1200px) {
  header.site-header .logo {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 900px) {
  header.site-header .logo {
    position: relative;
    left: 0;
    transform: translate(0, 0);
    margin: 0;
    max-width: 150px;
    padding-top: 6px;
  }
}
header.site-header nav a {
  font-size: 0.8rem;
  letter-spacing: 1px;
  /*@include for-size(desktop-up) {
    font-size: 0.9rem;
  }*/
  /*padding-right: 50px;*/
  /*text-transform: uppercase;*/
  color: #000;
  transition: color 0.2 ease-in-out;
}
header.site-header nav a:hover {
  color: #c4182a;
  opacity: 1;
}
header.site-header nav a:last-child {
  padding-right: 0;
}
header.site-header .current-menu-item > a {
  color: #c4182a;
}
header.site-header .menu {
  display: flex;
}
@media only screen and (min-width: 1440px) {
  header.site-header .menu {
    justify-content: start;
  }
}
header.site-header .menu li:hover > .sub-menu {
  visibility: visible;
  background: #fff;
}
header.site-header .menu-item {
  position: relative;
}
header.site-header .nav-menu {
  width: 100%;
  display: none;
  /*@media only screen and (max-width: 1200px) {
    width: 80%;
  }
  @media only screen and (max-width: 900px) {
    width: 100%;
  }*/
}
@media only screen and (max-width: 1200px) {
  header.site-header .nav-menu {
    margin-top: 4%;
  }
}
@media only screen and (max-width: 900px) {
  header.site-header .nav-menu {
    margin-top: 0%;
  }
}
header.site-header .nav-menu li {
  padding-left: 15px;
  padding-right: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: max-content;
}
@media (min-width: 901px) {
  header.site-header .nav-menu {
    display: block;
  }
}
header.site-header .menu-header-menu-1-container,
header.site-header .menu-header-menu-2-container {
  width: 100%;
}
header.site-header .sub-menu {
  visibility: hidden;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  transition: opacity 150ms ease-out;
  padding-top: 20px;
}
@media only screen and (max-width: 899px) {
  header.site-header .sub-menu {
    position: relative;
    transform: translate(0, 0);
    visibility: visible;
    left: 0;
    padding-top: 4px;
  }
}
header.site-header .sub-menu li {
  padding: 8px 15px;
  width: max-content;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
@media only screen and (max-width: 900px) {
  header.site-header .sub-menu li {
    position: relative;
    margin-left: 12px;
    /*&::before {
      content: ">";
      position: absolute;
      left: 0;
      top: 10px;
    }*/
  }
}

#ajaxsearchlite1 {
  float: right;
  margin-right: 10px;
  padding: 0;
}
@media only screen and (max-width: 1200px) {
  #ajaxsearchlite1 {
    margin-top: 4%;
    margin-right: 0px;
  }
}
@media only screen and (max-width: 900px) {
  #ajaxsearchlite1 {
    margin-top: 0;
    margin-right: 60px;
  }
}

.languages {
  padding: 0 15px;
}
@media only screen and (max-width: 1200px) {
  .languages {
    margin-top: 4%;
  }
}
@media only screen and (max-width: 900px) {
  .languages {
    display: none;
  }
}

header.scrolled {
  background: #ffffff;
  height: 80px;
}
@media (min-width: 901px) {
  header.scrolled {
    height: 100px;
  }
}
@media (min-width: 1800px) {
  header.scrolled {
    height: 130px;
  }
}

body.single-post header {
  background: #ffffff;
  height: 130px;
}

svg.burger-btn {
  z-index: 9999;
  position: absolute;
  right: 25px;
}
@media (min-width: 901px) {
  svg.burger-btn {
    display: none;
  }
}

.burger-btn {
  overflow: visible;
  cursor: pointer;
  fill: #000;
}
.burger-btn--1, .burger-btn--2, .burger-btn--3 {
  transition: 0.2s;
  transform-origin: center center;
}
.burger-btn.active .burger-btn--1 {
  transform: translate(-7px, 7px) rotate(45deg);
}
.burger-btn.active .burger-btn--2 {
  transform: translateX(20px);
  opacity: 0;
}
.burger-btn.active .burger-btn--3 {
  transform: translate(-7px, -7px) rotate(-45deg);
}

.nav-mobile {
  opacity: 0;
  transform: translateX(800px);
  visibility: hidden;
  transition: all 400ms ease-in;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  /*.sub-menu {
    position: relative;
    transform: translate(0, 0);
    visibility: visible;
    left: 0;
    padding-top: 4px;
    li {
      position: relative;
      margin-left: 12px;
      &::before {
        content: ">";
        position: absolute;
        left: 0;
        top: 10px;
      }
    }
  }*/
}
@media (min-width: 901px) {
  .nav-mobile {
    display: none;
  }
}
.nav-mobile .menu-item {
  padding: 4px 0;
}
.nav-mobile ul {
  flex-direction: column;
}
.nav-mobile ul li a {
  font-size: 1rem;
  padding: 12px 0;
  font-weight: 400;
}
.nav-mobile .sub-menu li a {
  font-weight: 300;
}
.nav-mobile .nav-mobile-content {
  width: 80%;
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: all 450ms ease-out;
}

/* END: Navigation */
/* START: Footer */
/* Footer */
footer {
  z-index: 1000;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-shadow: 5px 0px 3px rgba(0, 0, 0, 0.16);
  background: #fff;
}
footer .menu-footer_menu-container .menu {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  padding: 30px;
  gap: 20px;
}
@media (max-width: 599px) {
  footer .menu-footer_menu-container .menu {
    gap: 0;
    flex-flow: column wrap;
  }
}
footer .menu-footer_menu-container .menu li {
  padding: 0 35px;
  list-style-type: none;
}
footer .menu-footer_menu-container .menu li a {
  text-decoration: none;
  font-size: 0.85rem;
}
@media (max-width: 599px) {
  footer .menu-footer_menu-container .menu li {
    padding: 5px 0;
  }
}

/* END: Footer */
/* START: Media */
img {
  object-fit: cover;
}

.img__wrap {
  max-width: 400px;
  max-height: 200px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 599px) {
  .img__wrap {
    height: 200px;
  }
}

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

.img__wrap2 {
  max-width: 600px;
  padding: 10px 25px;
  /*height: 350px;*/
  overflow: hidden;
}
@media (max-width: 599px) {
  .img__wrap2 {
    padding: 0px 0px;
  }
}

.svg--icons {
  width: 25px;
}

/* END: Media */
/*START: ACCORDION */
.sp-ea-one.sp-easy-accordion .sp-ea-single {
  background: #fff;
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.16);
  margin-bottom: 15px;
}
.sp-ea-one.sp-easy-accordion .sp-ea-single .ea-header {
  border-left: 3px solid #c4182a;
}
.sp-ea-one.sp-easy-accordion .sp-ea-single .ea-header a {
  font-size: 0.95rem;
  font-weight: 400;
  color: #c4182a;
  padding: 15px 30px;
}

.ea-body {
  border-left: 3px solid #c4182a;
}
@media (max-width: 599px) {
  .ea-body {
    overflow-x: auto;
  }
}
.ea-body p {
  padding: 0 15px;
}

.accordion {
  margin: 0 auto;
}

.acc__list {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 0 auto;
}

.sp-easy-accordion {
  width: 800px;
  cursor: pointer;
}

/*END: ACCORDION */
/*--------------------------------------------------------------
Utilities:
----------------------------------------------------------------

/* START: Accessibility */
/* END: Accessibility */
/* START: Alignments */
/* END: Alignments */
/*--------------------------------------------------------------
Content:
----------------------------------------------------------------

/* ALL PAGES */
.page {
  margin: 0;
  /* margin-top: 120px;*/
  position: relative;
  padding: 0px 0px 150px 0px;
  /* overflow-x: hidden;*/
}

/* START: Front Page */
.main-part {
  padding: 20px 40px;
}
@media only screen and (max-width: 425px) {
  .main-part {
    padding: 20px 15px;
  }
}

.sect {
  padding: 50px 20px 40px 20px;
}

.sect2 {
  padding: 50px 0px 40px 20px;
}

.dist {
  padding: 50px 0px 50px 0px;
}

.dist2 {
  padding: 20px 0px 20px 0px;
}

@keyframes underline {
  from {
    background-size: 0% 2px;
  }
  to {
    background-size: 100% 3px;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.slider {
  width: 100vw;
  height: 100vh;
  margin-bottom: 4rem;
  position: relative;
}
.slider .slider--title {
  position: absolute;
  z-index: 99;
  top: 100px;
  padding: 0 72px;
  font-weight: 100;
}
@media (max-width: 599px) {
  .slider .slider--title {
    padding: 0 25px;
  }
}
.slider .slider--title .pagelinks {
  opacity: 0;
  animation: fade-in 1000ms ease-out forwards 2000ms;
}
.slider .head-title {
  max-width: 200px;
  color: #000;
  letter-spacing: 2.5px;
  text-decoration: none;
  width: max-content;
  margin: 60px 0 30px 0;
  text-decoration: none;
  display: inline-block;
}
.slider .underline {
  font-size: 2.25rem;
  font-weight: 300;
  width: calc(100%);
  background-image: linear-gradient(to bottom, transparent 20%, currentColor 21%);
  background-position: 0 1em;
  background-repeat: no-repeat;
  background-size: 0% 3px;
  animation: underline 1000ms ease-out forwards 2000ms;
}
.slider .slideshow {
  position: relative;
  width: 100vw;
  height: 100vh;
}
.slider .slideshow .slider--image {
  /*position: absolute;*/
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(150% 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
}
@media (min-width: 901px) {
  .slider .slideshow .slider--image {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@media (min-width: 1200px) {
  .slider .slideshow .slider--image {
    clip-path: polygon(60% 0, 100% 0, 100% 100%, 0% 100%);
  }
}

/*START Infographic Bauweise*/
.bauweiseWrap {
  width: 400px;
  height: 300px;
  position: relative;
}
@media only screen and (max-width: 480px) {
  .bauweiseWrap {
    width: 300px;
    height: 200px;
  }
}
.bauweiseWrap .bauweiseImg {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%);
}
.bauweiseWrap .dot {
  display: inline-block;
  position: absolute;
  width: 26px;
  height: 26px;
  background: #3b3b3b;
  border: 1px solid #000;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99;
  animation: glow 1s infinite alternate;
}
.bauweiseWrap .dot:hover + .dottext {
  opacity: 1;
}
.bauweiseWrap .dot::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
  border: 6px solid #fff;
}
.bauweiseWrap .dottext {
  position: absolute;
  font-size: 0.85rem;
  width: max-content;
  opacity: 0;
  transition: opacity 300ms ease-out;
}
.bauweiseWrap .dot1 {
  left: calc(100% - 30px);
  top: calc(100% - 100px);
}
@media only screen and (max-width: 480px) {
  .bauweiseWrap .dot1 {
    left: calc(100% - 20px);
    top: calc(100% - 50px);
  }
}
.bauweiseWrap .dottext1 {
  left: calc(100% - 100px);
  top: calc(100% - 75px);
}
@media only screen and (max-width: 480px) {
  .bauweiseWrap .dottext1 {
    left: calc(100% - 110px);
    top: calc(100% - 15px);
  }
}
.bauweiseWrap .dot2 {
  left: calc(100% - 120px);
  top: calc(100% - 150px);
}
@media only screen and (max-width: 480px) {
  .bauweiseWrap .dot2 {
    left: calc(100% - 100px);
    top: calc(100% - 80px);
  }
}
.bauweiseWrap .dottext2 {
  left: calc(100% - 120px);
  bottom: calc(100% - 90px);
}
@media only screen and (max-width: 480px) {
  .bauweiseWrap .dottext2 {
    bottom: calc(100% - 70px);
  }
}
.bauweiseWrap .dot3 {
  right: calc(100% - 160px);
  bottom: calc(100% - 120px);
}
@media only screen and (max-width: 480px) {
  .bauweiseWrap .dot3 {
    right: calc(100% - 140px);
    bottom: calc(100% - 100px);
  }
}
.bauweiseWrap .dottext3 {
  right: calc(100% - 160px);
  bottom: calc(100% - 80px);
}
@media only screen and (max-width: 480px) {
  .bauweiseWrap .dottext3 {
    bottom: calc(100% - 70px);
  }
}
.bauweiseWrap .dot4 {
  right: calc(100% - 30px);
  top: calc(100% - 120px);
}
@media only screen and (max-width: 480px) {
  .bauweiseWrap .dot4 {
    right: calc(100% - 20px);
    top: calc(100% - 60px);
  }
}
.bauweiseWrap .dottext4 {
  right: calc(100% - 120px);
  top: calc(100% - 80px);
}
@media only screen and (max-width: 480px) {
  .bauweiseWrap .dottext4 {
    top: calc(100% - 20px);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 6px -5px #c4182a;
  }
  100% {
    box-shadow: 0 0 6px 5px #c4182a;
  }
}
/*END Infographic Bauweise*/
/*horizontal gallery*/
.horizontal {
  padding: 20px 0px 0px 20px;
}
@media (max-width: 599px) {
  .horizontal {
    padding: 0px 0px;
  }
}

.horizontalScroll button {
  padding: 12px 0;
}
.horizontalScroll button:hover {
  background: #f3f3f3;
}
.horizontalScroll .arrow {
  width: 48px;
  padding: 0 12px;
  cursor: pointer;
}
.horizontalScroll .review__prev,
.horizontalScroll .review__next {
  border: 1px solid #8b8b8b;
}

.gallery {
  margin: 2% 0;
  padding: 0;
  white-space: nowrap;
  width: 100vw;
  overflow-x: auto;
  position: relative;
}
.gallery .gallery__card {
  position: relative;
  max-width: 450px;
  height: 300px;
  display: inline-block;
  margin-right: 8px;
}
.gallery .gallery__card .card__img {
  display: inline;
  width: 100%;
  height: 100%;
}
.gallery .gallery__card:hover .gallery__overlay {
  opacity: 1;
}
.gallery .gallery__card .gallery__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 300ms ease;
  background-color: #c4182965;
}
.gallery .gallery__card .gallery__overlay .gallery__text {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.gallery .gallery__card .gallery__overlay .gallery__text p {
  padding: 15px 0;
}

.reviews {
  margin: 2% 0;
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  grid-auto-flow: column;
  overflow-x: auto;
}
@media (max-width: 599px) {
  .reviews {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
}
.reviews .review__card {
  width: 500px;
  background: #fff;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-content: flex-start;
  border: 1px solid #8b8b8b;
  padding: 30px 15px;
}
@media (max-width: 599px) {
  .reviews .review__card {
    width: 350px;
  }
}
.reviews .review__card .review__name {
  padding: 16px;
}
.reviews .review__card .review__text {
  padding: 16px;
  overflow: scroll;
  max-height: 186px;
}

/* LINK STYLING */
.additionalInfos a,
.rightsLink {
  position: relative;
  color: #c4182a;
  font-weight: 400;
  padding: 10px 0;
  font-size: 0.85rem;
  margin-right: 10px;
}
.additionalInfos a::before,
.rightsLink::before {
  margin-right: 25px;
  content: url("../img/pdfIcon.svg");
  width: 10px;
  display: inline-block;
  transform: translate(0, 20%);
}

.textlink {
  position: relative;
  color: #c4182a;
  font-weight: 400;
}

.pdfs {
  position: relative;
  color: #c4182a;
  font-weight: 400;
  padding: 10px 0;
  font-size: 0.8rem;
}
.pdfs::before {
  margin-right: 25px;
  content: url("../img/pdfIcon.svg");
  width: 10px;
  display: inline-block;
  transform: translate(0, 20%);
}

.pagelinks {
  display: block;
  padding: 4px 0;
}

.pagelink {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 200;
  padding: 4px 0;
  position: relative;
}

.goto--link {
  text-transform: uppercase;
  color: #c4182a;
  line-height: 24px;
  font-size: 0.9rem;
  font-weight: 300;
}

.goto--link::after {
  background-image: url("../img/arrowRed.svg");
}

.goto::after {
  background-image: url("../img/arrowBlack.svg");
}

.goto--link::after,
.goto::after {
  content: "";
  background-size: 24px 24px;
  height: 24px;
  width: 24px;
  margin-left: 20px;
  display: inline-block;
  transform: translate(0, 20%);
  transition: transform 200ms ease;
}
@media (max-width: 599px) {
  .goto--link::after,
.goto::after {
    background-size: 16px 16px;
    height: 16px;
    width: 16px;
    margin-left: 16px;
  }
}

.goto:hover::after,
.goto--link:hover::after {
  transform: translate(10px, 20%);
}

.pdf__link {
  text-align: center;
}
.pdf__link a {
  color: #c4182a;
  text-transform: uppercase;
}

/* END: Front Page */
/* START: Product Page */
#sp-ea-634 .ea-body {
  height: 150px;
  overflow: scroll;
}

#sp-ea-634 td {
  font-weight: 400;
  padding: 10px 15px;
  transition: all 250ms ease;
}

#sp-ea-634 td:hover {
  background: #404040;
  color: #ffffff;
}

.model {
  padding: 25px 0;
  display: none;
}
.model:first-of-type {
  display: block;
}
.model .model__item {
  background: #c4182a;
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.16);
  position: relative;
}
@media (max-width: 599px) {
  .model .model__item .type {
    width: 60px;
  }
}
.model .model__item .type .typename {
  position: absolute;
  align-self: center;
  color: #fff;
  transform: rotate(-90deg);
  top: 45%;
  text-transform: uppercase;
}
@media only screen and (max-width: 900px) {
  .model .model__item .type .typename {
    position: relative;
    transform: rotate(0deg);
    top: 0;
    padding: 12px 5px;
    text-align: center;
  }
}
.model .model__item .typeimage {
  margin-left: 30px;
  padding: 10px;
  float: left;
  width: 250px;
  height: 200px;
  object-fit: cover;
}
@media only screen and (max-width: 900px) {
  .model .model__item .typeimage {
    display: none;
  }
}
.model .model__item .table-content {
  flex: 1;
  background: #fff;
  padding: 0 20px;
}
@media (max-width: 599px) {
  .model .model__item .table-content {
    overflow-x: auto;
  }
}
.model .model__item .table-content table {
  border-collapse: collapse;
  width: 100%;
}
.model .model__item .table-content table th {
  border-bottom: 1px solid #dddddd;
  font-weight: 200;
  padding: 12px 4px;
  text-align: left;
}
@media (max-width: 599px) {
  .model .model__item .table-content table th {
    padding: 12px 80px 12px 4px;
  }
}
.model .model__item .table-content table td {
  text-align: left;
  padding: 4px;
}
.model .model__item .table-content table .pdf--icon {
  max-width: 18px;
}

.model.is-visible {
  display: block;
}

.optionalImages {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  /*gap: 25px;*/
  align-items: center;
}
.optionalImages div > img {
  max-width: 350px;
  padding: 10px;
}
@media (min-width: 1200px) {
  .optionalImages {
    flex-flow: row nowrap;
    /*gap: 50px;*/
  }
  .optionalImages div > img {
    max-width: 300px;
  }
}

.additionalInfos {
  padding: 20px 0;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .additionalInfos {
    padding: 0px;
  }
}

/* END: Product Page */
/* START SERVICE PAGE */
.offerrings__card {
  /*@include flexGap();*/
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 4%;
}

/*TABS SERVICE*/
.wpsm_nav-tabs {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.wpsm_nav-tabs > li {
  width: 150px;
}
@media only screen and (max-width: 950px) {
  .wpsm_nav-tabs > li {
    width: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .wpsm_nav-tabs > li {
    width: 250px;
  }
}

.tabs {
  margin: 0 auto;
}

#tab_container_450 .tab-content {
  padding: 0px !important;
}

.tab-content > .tab-pane.active {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  justify-content: center;
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.16);
  padding: 20px 10px;
}

.tab-content > .tab-pane.active > div:nth-child(1) {
  font-weight: 300;
  max-width: 600px;
  padding: 15px 20px;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.tab-content > .tab-pane.active > .video > iframe {
  transform: scale(0.8);
  width: 650px;
  height: 425px;
  max-width: 100%;
  max-height: calc((100vw - 40px) / (16 / 9));
}
@media (max-width: 599px) {
  .tab-content > .tab-pane.active > .video > iframe {
    transform: scale(1);
  }
}

/* END SERVICE PAGE */
/* START: JOBS/ABOUT Page */
.intro__img {
  max-width: 600px;
  height: auto;
  align-self: center;
  padding: 20px;
}
@media (max-width: 599px) {
  .intro__img {
    padding: 0px;
  }
}

.text__part {
  max-width: 650px;
  align-self: center;
  padding: 10px 0;
}

.introduction {
  /*display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 50px;*/
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.16);
  margin-bottom: 2%;
}

.additionals {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  /*&:last-of-type {
    margin-bottom: 100px;
  }*/
}

.releases {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
}
.releases img {
  width: 150px;
}
.releases div {
  max-width: 700px;
}

/* END: JOBS/ABOUT PAGE */
/* START SUBAREAS PAGES */
.the_products {
  padding: 40px 0px;
}

.illustrations,
.offerings {
  position: relative;
  width: 100%;
  padding: 40px 20px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .illustrations,
.offerings {
    padding: 40px 0px;
  }
}
.illustrations .illst__graphics,
.offerings .illst__graphics {
  padding: 18px 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 1.5% auto;
}
.illustrations .illst__graphics .graphics__card,
.offerings .illst__graphics .graphics__card {
  margin: 10px 30px;
  width: 240px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  align-items: center;
}
.illustrations .illst__graphics .graphics__card .graphic--imgWrap,
.offerings .illst__graphics .graphics__card .graphic--imgWrap {
  flex-grow: 0.5;
}
.illustrations .illst__graphics .graphics__card .graphic--imgWrap .graphic--img,
.offerings .illst__graphics .graphics__card .graphic--imgWrap .graphic--img {
  transform: scale(0.75);
}
.illustrations .illst__graphics .graphics__card .graphic--text,
.offerings .illst__graphics .graphics__card .graphic--text {
  font-size: 0.9rem;
  text-align: center;
  color: #c4182a;
  max-width: 80%;
}
.illustrations .illst__graphics .graphics__card .graphic--text2,
.offerings .illst__graphics .graphics__card .graphic--text2 {
  flex-grow: 1;
  padding: 10px;
  font-size: 0.8rem;
  text-align: center;
  color: #c4182a;
}

.infoBox {
  max-width: 800px;
  margin: 8% auto;
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  align-items: center;
}
@media (max-width: 599px) {
  .infoBox {
    flex-flow: row wrap;
  }
}
.infoBox div {
  padding: 25px 50px;
}
.infoBox div:first-of-type {
  align-self: center;
  border-right: 3px solid #c4182a;
}
@media (max-width: 599px) {
  .infoBox div:first-of-type {
    border-bottom: 3px solid #c4182a;
    border-right: none;
  }
}
.infoBox div:first-of-type > p {
  color: #c4182a;
  width: min-content;
  text-align: center;
}

.search--partners input {
  border-bottom: 1px solid black;
  padding-bottom: 6px;
}
.search--partners .search-icon {
  position: absolute;
  padding: 0 12px;
}
.search--partners .search-list {
  margin: 4% 0;
  overflow-x: scroll;
  text-align: center;
  padding: 20px;
  white-space: nowrap;
}
.search--partners .search-list a:hover {
  text-decoration: none;
}
.search--partners .search-list .partner {
  height: 80px;
  padding: 20px;
  margin: 0 2%;
  width: 200px;
  object-fit: contain;
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.25);
}
@media (max-width: 599px) {
  .search--partners .search-list .partner {
    width: 150px;
  }
}

.partner-hidden {
  display: none;
  visibility: hidden;
}

/* END SUBAREAS PAGES */
/*FOOTER CONTACT + fixed contact hover card*/
.contact {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 5rem;
  padding: 20px;
}
.contact::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 20%;
  bottom: 0;
  right: 0;
  background: #383838;
  z-index: -99;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media (max-width: 599px) {
  .contact::after {
    width: 50%;
    height: 10%;
  }
}

.contact__card {
  position: fixed;
  bottom: 20px;
  right: 40px;
  background: #313131;
  color: #fff;
  max-width: 150px;
  height: 50px;
  transition: 0.3s;
  border-radius: 24px;
  text-align: center;
  padding: 10px 15px;
  z-index: 99;
}
@media (max-width: 599px) {
  .contact__card {
    right: 0;
    transform: scale(0.8);
  }
}
.contact__card:hover {
  max-width: 280px;
  height: 200px;
}
.contact__card:hover > .card__bottom {
  opacity: 1;
}

.card__bottom {
  opacity: 0;
  width: 150px;
  padding-top: 15px;
}
.card__bottom p {
  font-size: 0.8rem;
  padding: 6px 0;
}

.contact form {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding-left: 50px;
  padding-top: 0px;
  padding-bottom: 40px;
  margin: 10% 0;
  position: relative;
}
.contact form p {
  font-size: 0.8rem;
}
.contact form p label {
  color: #fff;
}
.contact form p span > input {
  border: none;
  background: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  height: 40px;
}
.contact form p span > textarea {
  border: none;
  background: none;
  border-bottom: 1px solid #fff;
  max-height: 60px;
  width: 285px;
  color: #fff;
  font-family: "Helvetica Neue";
  resize: none;
}
.contact form p:nth-last-child(2) {
  padding: 20px;
}
.contact form p:nth-last-child(3) {
  /*width: 100%;*/
  padding: 20px 0;
}
@media (max-width: 599px) {
  .contact form p:nth-last-child(3) {
    padding: 20px;
    text-align: center;
  }
}

.wpcf7-list-item-label {
  color: #fff;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap {
  padding: 0 8px;
}

.contact--form ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1;
  /* Firefox */
}

.wpcf7-submit {
  border: none;
  background: none;
  text-transform: uppercase;
  color: #fff;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%, 0px);
  font-size: 1rem;
  padding: 8px;
  cursor: pointer;
  border-radius: 10px;
  display: inline-block;
}
.wpcf7-submit:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 750px) {
  .contact form {
    padding-left: 0px;
    justify-content: center;
    padding-bottom: 0px;
  }
  .contact .wpcf7-submit {
    transform: translate(-50%, -20px);
  }
}
/*END FOOTER CONTACT*/
/*ACCORDION Style*/
/*.accordion__cards {
  @include flex-layout3();
}
.acc__box {
  width: 600px;
  box-shadow: 1px 0px 4px #8b8b8b;
  border-left: 3px solid $red;
  padding: 20px 30px;
  cursor: pointer;
}
.accordion--title {
  font-weight: 400;
  transition: 0.4s;
}

.accordion--icon {
  color: #c4182a;
  font-size: 26px;
  //display: block;
  transition: transform 200ms ease-in-out;
}
.closeIcon {
  transform: rotate(-45deg);
  transform-origin: center;
}

.accordion--content {
  display: none;
  padding: 20px 0;
}

.open-close {
  @include flex-layout2();
}*/

/*# sourceMappingURL=styles.min.css.map */
