/* individuelle CSS-Einstellungen */

/* NAV+HEADER */

* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

.content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#navcol-1 {
  margin-right: 5rem;
}

@media (max-width: 991px) {
  #navcol-1 {
    display: none!important;
  }
}

.navbar {
  border-bottom: 1px solid rgba(255,255,255,0.3);
  background: rgb(0,0,0);
  background-color: rgba(0,0,0,0.8)!important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding-top: 0;
  padding-bottom: 0;
}

.nav-item {
  position: relative;
  height: 100%;
  opacity: 1;
  background-color: transparent;
}

.nav-link {
  position: relative;
  z-index: 1;
}

.background-span-nav {
  position: absolute;
  overflow: hidden!important;
  top: 100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  z-index: 0;
  transition: top 0.3s ease-in-out;
}

.nav-item .active .background-span-nav, .nav-item:hover .background-span-nav {
  top: 0%;
  transition: top 0.3s ease-in-out;
}

#navcol-1 {
  overflow: hidden;
  height: 100%;
}

.navbar-nav {
  /*display: inline-block;*/
  font-size: 0.7rem;
  text-transform: uppercase;
  height: 100%;
  border-right: 1px solid rgba(255,255,255,0.2);
}

@media (max-width: 991px) {
  .navbar-nav {
    /*display: inline-block;*/
    font-size: 0.7rem;
    text-transform: uppercase;
    height: 100%;
    border-right: none;
  }
}

.nav-link {
  color: white!important;
  padding: 0px 20px!important;
  font-weight: 400;
  height: 100%;
  display: inline-block;
}

.navbar {
  overflow: hidden;
}

.trennlinie-winkel {
  position: absolute;
  padding: 0;
  margin: 0;
  left: 22%;
  display: inline-block;
  width: 1px;
  background-color: var(--color-secondary);
  opacity: .2;
  height: 110%;
  transform: rotate(18deg);
}

.trennlinie-winkel.trennlinie-winkel--folgend {
  margin-left: 5px;
}

@media (max-width: 1199px) {
  .trennlinie-winkel {
    display: none;
  }
}

.kontakt-badge {
  position: fixed;
  top: 70%;
  /*left: 0;*/
  width: 14rem;
  height: auto;
  /*background-color: var(--color-primary);*/
  left: -10.6rem;
  transition: left 0.5s ease-in-out;
  z-index: 2;
}

.tel-badge {
  position: fixed;
  top: 70%;
  width: 14rem;
  height: auto;
  /*background-color: var(--color-primary);*/
  right: -10.6rem;
  transition: right 0.5s ease-in-out;
  z-index: 2;
}

.fa.fa-whatsapp {
  color: green;
  font-size: 1.5rem;
}

.kontakt-badge:hover {
  left: 0rem;
  transition: left 0.5s ease-in-out;
}

.tel-badge:hover {
  right: 0rem;
  transition: right 0.5s ease-in-out;
}

.kontakbar-container {
  position: relative;
  border-left: 1px solid rgb(91,213,224);
  background-color: var(--color-primary);
  position: absolute;
  bottom: 0;
  width: 3.25rem;
}

.col.badge-container {
  overflow: hidden;
  height: 3.3rem;
}

.whatsapp {
  background-color: var(--color-primary);
  font-size: 1.1rem;
  padding: 0.3rem 0;
  color: var(--color-tertiary);
  opacity: .8;
  transition: opacity 0.3s ease-in-out;
}

.whatsapp:hover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

footer {
  position: relative;
  background-color: var(--bgcolor-footer);
}

.container-fluid {
  height: 100%;
}

.navbar__logo-img {
  width: 14rem;
  height: auto;
  padding-left: 1rem;
  padding-top: 0rem;
}

.navbar.navbar-light {
  background-color: transparent;
  height: 5rem;
}

.main-container {
  width: 100%;
}

.carousel {
  height: 100vh;
}

.slide__img {
  background: url("../../assets/img/Slider/slider1.jpg") center / cover no-repeat;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slide__img--2 {
  background: url("../../assets/img/Slider/slider2.jpg") center / cover no-repeat;
}

.slide__img--3 {
  background: url("../../assets/img/Slider/slider3.jpg") center / cover no-repeat;
}

.header__wrapper--text {
  color: #ffffff;
  text-align: center;
  max-width: 55rem;
  padding: 0 2rem;
}

.header__paragraph--1 {
  font-size: 1.5rem;
}

.button {
  display: block;
  position: relative;
  font-size: 0.8rem;
  border: 2px solid;
  border-radius: 0.3rem;
  width: 8rem;
  padding: 0.5rem 0;
  overflow: hidden;
  background: transparent;
  z-index: 1;
  margin-right: 0.5rem;
}

.link__hover-effect {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -1;
  background: var(--color-primary);
  margin-top: -0.2rem;
  height: 120%;
  width: 100%;
  transition: left 0.3s ease-in-out;
}

.link__hover-effect--2 {
  left: 0;
}

.button:hover .link__hover-effect {
  left: 0;
}

.button:hover .link__hover-effect--2 {
  left: 100%;
}

@media (max-width: 768px) {
  .carousel-control-next {
    display: none;
  }
}

@media (max-width: 768px) {
  .carousel-control-prev {
    display: none;
  }
}

/* NEWSLETTER */

.locations {
  background-color: rgb(91,213,224);
  text-align: center;
  color: rgb(255,255,255);
  padding: 5rem 2rem;
}

.locations__title {
  font-weight: 600;
  padding: 0 0 2rem 0;
}

.locations__title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 0.1rem;
  background-color: rgb(255,255,255);
  margin: 1rem auto;
}

.location--link {
  transition: color 0.3s ease-in-out;
}

.location--link:hover {
  color: #333333;
}

.locations-btn {
  transition: all 0.3s ease-in-out;
}

.locations-btn:hover {
  background-color: #ffffff;
  color: var(--color-primary);
}

.modal {
  background-color: rgba(255,255,255,0)!important;
}

.modal-header {
  padding: 2rem;
}

.modal-content {
  background-color: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-close {
  display: none;
}

.btn-close-1 {
  color: #ffffff!important;
  background: none;
  line-height: 0;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}

.btn-icon {
  font-size: 1rem;
  transition: color 0.3s ease-in-out;
}

@media (max-width: 580px) {
  .btn-icon {
    font-size: 2rem;
  }
}

.btn-icon:hover {
  color: var(--color-primary);
}

.btn-close:focus {
  box-shadow: none;
}

.modal__btn {
  background-color: var(--color-primary);
  border-radius: 0.2rem;
  display: block;
  text-align: center;
  color: #ffffff;
  padding: 0.5rem 0;
  transition: background-color .3s ease-in-out;
}

.modal__btn:hover {
  color: #ffffff;
  background-color: #333333;
}

@media (max-width: 580px) {
  .modal__title {
    font-size: 2rem;
  }
}

@media (max-width: 580px) {
  .modal__liste {
    font-size: 1.2rem!important;
  }
}

.about {
  padding: 4rem 2rem;
}

.about__icon {
  font-size: 3rem;
  color: var(--color-primary);
}

.about__title {
  margin: 0;
  padding: 1.5rem 0 0 0;
  letter-spacing: 0.1rem;
  font-weight: 700;
}

.about__subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  padding-top: 0.5rem;
  font-weight: 400;
}

.about__text {
  letter-spacing: 0.1rem;
  line-height: 1.6;
  padding-bottom: 4rem;
  font-size: 0.8rem;
  max-width: 20rem;
  margin: 0 auto;
  font-weight: 300;
}

.partner__wrapper {
  max-width: 37rem;
  padding: 4rem 2rem 4rem 4rem;
}

.partner__heading {
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 1.2;
}

.partner__heading::after {
  content: "";
  display: block;
  max-width: 4rem;
  height: 0.1rem;
  background-color: #000000;
  margin: 1.5rem 0;
}

.partner__subtitle {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  line-height: 1.6;
}

.partner__text {
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  font-weight: 400;
  padding-bottom: 2rem;
}

.partner__btn {
  text-align: center;
  font-weight: 400;
  transition: 0.5s ease-in-out;
}

.partner__btn:hover {
  background-color: #333333;
  color: #ffffff;
}

@media (max-width: 991px) {
  .col-partner__background {
    height: 20rem;
  }
}

@media (max-width: 991px) {
  .partner__content {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .partner__wrapper {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
  }
}

@media (max-width: 991px) {
  .partner__heading::after {
    margin: 1.5rem auto;
  }
}

.performance {
  padding: 6rem 2rem;
}

.performance__title::after {
  content: "";
  display: block;
  max-width: 4rem;
  height: 0.1rem;
  background-color: #000000;
  margin: 2rem auto;
}

.performance__title {
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.performance__subtitle {
  font-weight: 400;
  letter-spacing: 0.1rem;
  max-width: 70rem;
  margin: 0 auto;
  line-height: 1.6rem;
}

.col-performance__icon {
  font-size: 4rem;
  color: var(--color-primary);
  margin-top: 4rem;
}

.col-performance__title {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.5rem 0;
  letter-spacing: 0.1rem;
}

.col-performance__subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  max-width: 20rem;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

.testimonials {
  padding: 0 2rem;
  position: relative;
  color: #ffffff;
}

.testimonials__carousel {
  width: 50%;
  margin: 0 auto;
  height: 25rem;
  background: transparent;
}

.testimonials__title {
  text-align: center;
  padding-top: 5rem;
  color: #ffffff;
}

.testimonials__title:after {
  content: "";
  display: block;
  width: 4rem;
  height: 0.1rem;
  background-color: #ffffff;
  margin: 1.5rem auto 5rem auto;
}

.testimonials__icon {
  width: 7rem;
  margin: 0 auto;
  height: 7rem;
  border-radius: 55rem;
}

.text__wrapper {
  max-width: 25rem;
  text-align: center;
  margin: 1.5rem auto;
}

.testimonials__slide-paragraph {
  letter-spacing: 0.1rem;
  line-height: 1.6;
}

.highlight-blue {
  padding: 5rem 2rem;
}

.footer {
  color: #ffffff;
  padding: 2rem 2rem;
}

.footer__logo {
  max-width: 13rem;
  padding: 2rem 0;
}

@media (max-width: 575px) {
  .footer__logo {
    max-width: 20rem;
    padding: 2rem 0;
  }
}

.footer__icon {
  transition: 0.3s ease-in-out;
}

.footer__icon:hover {
  transform: scale(1.1);
  color: var(--color-primary);
}

.footer__link {
  transition: 0.3s ease-in-out;
}

.footer__link:hover {
  color: var(--color-primary);
}

@media (max-width: 575px) {
  .footer__title {
    font-size: 1.5rem!important;
  }
}

@media (max-width: 575px) {
  .footer__p {
    font-size: 1.3rem!important;
  }
}

.team__header {
  width: 100%;
  height: 50vh;
}

.header__opacity {
  width: 100%;
  height: 50vh;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}

.team-header__title {
  font-size: 3rem;
  padding-top: 6rem;
}

.gar-header__title {
  font-size: 3rem;
  padding-top: 6rem;
}

.loc-header__title {
  font-size: 3rem;
  padding-top: 6rem;
}

.contact-header__title {
  font-size: 3rem;
  padding-top: 6rem;
}

.agbs-header__title {
  padding-top: 6rem;
}

@media (max-width: 400px) {
  .agbs-header__title {
    font-size: 2rem!important;
  }
}

.stgallen {
  padding: 4rem 2rem;
}

.stgallen__title {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  margin: 0;
}

.stgallen__title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 0.1rem;
  background-color: #000;
  margin-top: 1rem;
}

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

.team__info {
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
  line-height: 1;
  padding-left: 2rem;
  margin: 0;
}

@media (max-width: 768px) {
  .team__info {
    display: none;
  }
}

.team__info span {
  font-size: 1rem;
}

.team__info::after {
  content: "";
  display: block;
  width: 6rem;
  height: 0.1rem;
  background-color: #000;
  margin-left: -2rem;
}

@media (min-width: 992px) {
  .col-10.col-sm-7.col-lg-4.col-xl-3 {
    height: 20rem!important;
    width: 18rem;
  }
}

@media (min-width: 769px) {
  .team__info--mobile {
    display: none;
  }
}

.team__info--mobile {
  position: absolute;
  bottom: 0;
  height: 6rem;
  width: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 6px 6px 0 0;
}

.team__name--mobile {
  color: #ffffff;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
  padding-top: 1rem;
}

.team__name--mobile span {
  font-size: 1.2rem;
}

.team__info--left {
  text-align: end;
  margin: 0;
  padding: 0;
  padding-right: 2rem;
}

.team__info--left::after {
  float: right;
  margin-right: -2rem;
}

.brugg {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.reparaturen__header {
  width: 100%;
  height: 50vh;
}

.reparaturen__header-opacity {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.50);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}

.rep-header__title {
  font-size: 3rem;
  padding-top: 6rem;
  letter-spacing: 0.1rem;
}

.rep-header__subtitle {
  letter-spacing: 0.1rem;
}

.rep-preislisten {
  padding: 8rem 2rem;
}

.rep-preislisten__title {
  font-size: 1.5rem;
  text-align: center;
}

.rep-preislisten__title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 0.1rem;
  background-color: #000000;
  margin: 1.5rem auto 0 auto;
}

.rep-preislisten__img {
  padding-top: 4rem;
}

.rep-preislisten__img--animation {
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

.rep-preislisten__img--animation:hover {
  transform: scale(1.3);
}

.rep-performance {
  width: 100%;
  color: #ffffff;
}

.rep-performance__background {
  background-color: rgba(0,0,0,0.6);
  padding: 4rem 2rem;
}

.rep-performance__icon {
  font-size: 4rem;
  color: var(--color-primary);
}

.rep-performance__title {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}

.rep-performance__title::after {
  content: "";
  display: block;
  margin: 1.5rem auto;
  width: 4rem;
  height: 0.1rem;
  background-color: #ffffff;
}

.rep-performance__title--second {
  font-size: 1.2rem;
  padding: 1rem 0 0 0;
  letter-spacing: 0.1rem;
}

.rep-performance__subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  max-width: 20rem;
  margin: 0 auto;
}

.reparaturablauf {
  padding: 4rem 2rem;
  text-align: center;
}

.reparaturablauf__haupttitle {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  padding-bottom: 1rem;
}

.reparaturablauf__subttitle {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  max-width: 45rem;
  margin: 0 auto;
}

.reparaturablauf__wrapper {
  padding-top: 4rem;
}

.reparaturablauf__icon {
  font-size: 4rem;
  color: var(--color-primary);
}

.reparaturablauf__title {
  font-size: 1.3rem;
  padding: 0.5rem 0 2rem 0;
  letter-spacing: 0.1rem;
  font-weight: 700;
}

.reparaturablauf__info {
  max-width: 35rem;
  margin: 0 auto;
  letter-spacing: 0.1rem;
  font-size: 0.8rem;
  font-weight: 200;
}

@media (max-width: 992px) {
  .reparaturablauf__info {
    margin: 0 auto;
    font-weight: 300;
  }
}

.info-icon {
  font-size: 2rem;
  color: var(--color-primary);
}

.reparaturablauf__info--wichtig {
  font-weight: 400;
}

.garantie__header {
  width: 100%;
  height: 50vh;
}

.garantie {
  padding: 6rem 2rem;
}

.garantie-title {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
  margin: 0;
}

.garantie-title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 0.1rem;
  margin: 1.5rem auto;
  background-color: #000000;
}

.garantie-icon {
  font-size: 4rem;
  color: var(--color-primary);
}

.garantie-title--col {
  font-size: 1rem;
  margin-top: 1.5rem;
  letter-spacing: 0.1rem;
}

.standorte__header {
  width: 100%;
  height: 50vh;
}

.kontakt__header {
  width: 100%;
  height: 50vh;
}

.agb__header {
  width: 100%;
  height: 50vh;
}

.impressum__header {
  width: 100%;
  height: 50vh;
}

.faq__header {
  width: 100%;
  height: 50vh;
}

.garantie-subtitle {
  letter-spacing: 0.1rem;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 20rem;
  margin: 0 auto;
}

.standorte-wrapper_col {
  width: 100%;
  padding-left: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.standorte-1_title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 1px;
  text-align: left;
}

.standorte-2_title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 1px;
}

.standorte-1_title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 0.1rem;
  background: #000000;
  margin: 1.5rem 0;
}

.standorte-info-wrapper {
  padding-top: 2rem;
}

.standorte-1_title--2 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(0,0,0,0.8);
  letter-spacing: 1px;
}

.standorte-1_p-info {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-primary);
  padding-top: 1rem;
  letter-spacing: 1px;
}

.standorte-1_li-info {
  font-size: 0.7rem;
  font-weight: 300;
  margin: 0;
  list-style-type: none;
  letter-spacing: 1px;
}

.standorte-liste::before {
  content: "";
  display: none;
  width: 3px;
  height: 3px;
  border-radius: 99999px;
  background-color: rgba(0,0,0,0.6);
  margin: 0 0.5rem 0.15rem 0;
}

.standorte-1-infobtn {
  display: block;
  width: 10rem;
  text-align: center;
  padding: 0.5rem 0;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 0.3rem;
  margin-top: 2rem;
  transition: background-color 0.3s ease-in-out;
}

.standorte-1-infobtn:hover {
  color: #ffffff;
  background-color: #333333;
}

.standorte-heading {
  padding: 4rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
  letter-spacing: 1px;
}

.title-underline {
  width: 4rem;
  height: 0.1rem;
  background-color: #000000;
  margin: 1.5rem 0;
}

.title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.link-wrapper {
  display: flex;
  justify-content: end;
}

@media (max-width: 991px) {
  .standorte-col-left {
    height: 20rem;
  }
}

@media (max-width: 991px) {
  .standorte-col-right {
    padding-right: 2rem;
  }
}

@media (max-width: 991px) {
  .standorte-col-right-2 {
    order: -1;
    height: 20rem;
  }
}

@media (max-width: 991px) {
  .standorte-col-left-2 {
    text-align: left!important;
    padding-left: 2rem;
  }
}

@media (max-width: 991px) {
  .title-wrapper {
    align-items: start;
  }
}

@media (max-width: 991px) {
  .link-wrapper {
    justify-content: start;
  }
}

.contact {
  padding: 0rem 2rem 4rem 2rem;
}

.contact-input {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  border-bottom: 0.1rem solid rgba(0,0,0,0.30);
  padding-left: 0.5rem;
  padding-bottom: 0.25rem;
  padding-top: 0.25rem;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  font-family: inherit;
  transition: all 0.15s ease-in-out;
  border-radius: 0;
}

.contact-input:hover {
  background-color: rgba(0,0,0,0.05);
}

.contact-input:focus {
  background-color: rgba(0,0,0,0.05);
  box-shadow: none;
  outline: none;
  border-color: rgba(0,0,0,0.3);
}

.contact-input--messege {
  height: 13rem;
}

.contact-btn {
  font-size: 0.8rem;
  background-color: var(--color-primary);
  border: none;
  border-radius: 0.3rem;
  width: 7rem;
  transition: all 0.3s ease-in-out;
}

.contact-btn:focus {
  outline: none;
  box-shadow: none;
  background-color: #333333;
}

.contact-btn:hover {
  background-color: #333333;
}

.contact-wrapper {
  padding-right: 2rem;
  width: 100%;
}

.contact-adressen {
  border-left: 0.1rem solid rgba(0,0,0,0.1);
  padding: 2rem;
}

.contact-fragen-title {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--color-primary);
}

.contact-fragen-liste {
  font-size: 0.7rem;
  letter-spacing: 1px;
  list-style-type: none;
  line-height: 1.6;
  text-decoration: none!important;
}

.form-label {
  display: block;
}

.agbs {
  padding: 6rem 2rem 4rem 2rem;
}

.agbs-title {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 700;
}

.agbs-subtitle {
  font-size: 0.8rem;
  letter-spacing: 1px;
  line-height: 1.6;
}

.agbs-wrapper {
  max-width: 60rem;
  margin: 0 auto;
}

.impressum {
  padding: 2rem 2rem 4rem 2rem;
}

.faq {
  padding: 6rem 2rem 2rem;
}

.faq-title {
  font-size: 2.5rem;
  letter-spacing: 1px;
}

.faq-title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 0.1rem;
  background-color: #000;
  margin: 1.5rem auto;
}

.faq-wrapper {
  padding: 4rem 0 0 0;
  text-align: center;
}

.faq-frage {
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin: 0;
}

.faq-antwort {
  max-width: 30rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
  line-height: 1.6;
  margin: 1rem auto;
}

.faq-link {
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.faq-link:hover {
  color: var(--color-primary);
}

.nav-link.active {
  color: var(--color-primary)!important;
}

.parallax-img {
  background-origin: content-box!important;
}

.reparaturen-link {
  transition: all 0.3s ease-in-out;
}

.reparaturen-link:hover {
  opacity: 0.70;
}

.kontakt-allgemeine-fragen-link {
  transition: all 0.3s ease-in-out;
}

.kontakt-allgemeine-fragen-link:hover {
  text-decoration: underline;
}

