@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500&display=swap");
*, ::before, ::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.clearfloat {
  clear: both;
  height: 0;
  font-size: 1px;
  line-height: 0px;
}

.clearfix {
  *zoom: 1;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

body {
  background: #fff;
  margin: 0;
  padding: 0;
  font-size: .95em;
  font-family: 'Inter', sans-serif;
  font-weight: 200;
}

@media (max-width: 480px) {
  body {
    font-size: .9em;
  }
}

h1, h2, h3, h4 {
  font-family: 'Baron Neue';
  font-style: italic;
  font-weight: 400;
}

h1 {
  margin: 0 0 1.25em 0;
  font-size: 2.1em;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 1.8em;
    margin-bottom: .75em;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: 1.5em;
    margin-bottom: .5em;
  }
}

body.rechtliches h1 {
  font-size: 1.5em;
}

h2 {
  margin: 0 0 1em 0;
  font-size: 1.7em;
}

@media (max-width: 1024px) {
  h2 {
    font-size: 1.5em;
    margin-bottom: .5em;
  }
}

@media (max-width: 720px) {
  h2 {
    font-size: 1.3em;
    margin-bottom: .25em;
  }
}

body.rechtliches h2 {
  font-size: 1.2em;
}

h3 {
  margin: 0 0 .5em 0;
  font-size: 1.5em;
}

@media (max-width: 1024px) {
  h3 {
    font-size: 1.3em;
    margin-bottom: .3em;
  }
}

@media (max-width: 720px) {
  h3 {
    font-size: 1.1em;
    margin-bottom: .2em;
  }
}

body.rechtliches h3 {
  font-size: 1.0em;
}

h4 {
  font-size: 1.2em;
  font-style: normal;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 1024px) {
  h4 {
    font-size: 1.1em;
  }
}

@media (max-width: 720px) {
  h4 {
    font-size: 1em;
  }
}

body.rechtliches h4 {
  font-size: .9em;
}

a {
  color: #000;
}

strong {
  font-weight: 500;
}

.button {
  display: inline-block;
  background: #3d3d3d;
  color: #fff;
  -webkit-transition: .25s all ease-in-out;
  transition: .25s all ease-in-out;
  padding: .5em 1em;
  font-family: 'Baron Neue';
  font-weight: 400;
  text-decoration: none;
}

.button:hover {
  background: #b34d18;
}

header {
  margin: 2em 0 -3em 0;
}

@media (max-width: 1024px) {
  header {
    margin: 1em 0 -3em 0;
  }
}

@media (max-width: 720px) {
  header {
    margin: 0;
  }
}

header a.logo {
  margin: 10px 0;
  position: relative;
  z-index: 9999;
}

header a.logo img {
  display: block;
  width: 100%;
}

header .header__wrapper {
  position: relative;
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2em 0 1em 0;
}

@media (max-width: 1440px) {
  header nav {
    margin: 1.5em 0 .75em 0;
  }
}

@media (max-width: 720px) {
  header nav {
    position: absolute;
    top: 50%;
    right: 0;
    margin: -17px 10px 0 0;
  }
}

header nav .menu-button {
  display: none;
  cursor: pointer;
  width: 35px;
  height: auto;
  position: relative;
  z-index: 9998;
}

@media (max-width: 720px) {
  header nav .menu-button {
    display: block;
  }
}

header nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 720px) {
  header nav ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
  }
}

header nav ul li {
  margin: 0 1.5em;
  padding: 0;
  text-indent: 0;
  float: left;
}

@media (max-width: 1440px) {
  header nav ul li {
    margin: 0 1em;
  }
}

@media (max-width: 720px) {
  header nav ul li {
    display: block;
    float: none;
    width: 100%;
    text-align: center;
    line-height: 4em;
    margin: 0;
  }
}

header nav ul li a {
  display: block;
  font-family: 'Baron Neue';
  font-style: normal;
  font-weight: 300;
  text-decoration: none;
}

@media (max-width: 1440px) {
  header nav ul li a {
    font-size: .9em;
  }
}

@media (max-width: 720px) {
  header nav ul li a {
    font-size: 1.5em;
  }
}

header nav ul li a:after {
  content: '';
  display: block;
  width: 0px;
  height: 3px;
  background: #fff;
  margin: .3em auto 0 auto;
  -webkit-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

header nav ul li:hover a:after {
  background: #b34d18;
  width: 100%;
}

picture img {
  display: block;
  width: 100%;
}

section {
  padding: 8em 0;
}

@media (max-width: 1440px) {
  section {
    padding: 6em 0;
  }
}

@media (max-width: 720px) {
  section {
    padding: 4em 0;
  }
}

@media (min-width: 1024px) {
  section#finde-dein-dachzelt, section#infos-zu-dachzelte {
    padding-bottom: 12em;
  }
}

@media (max-width: 1440px) {
  section#dachzelte-kaufen {
    padding-top: 2em;
  }
}

@media (max-width: 1024px) {
  section#dachzelte-kaufen {
    padding-top: 0;
  }
}

section.overlap-balance-top {
  padding-top: 11em;
}

section.section--dark {
  background: #3d3d3d;
  color: #fff;
}

section.section--dark a, section.section--dark p {
  color: #fff;
}

.teaser {
  text-align: center;
}

.productFeed__element {
  display: block;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.productFeed__element h3 {
  margin-top: .5em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media (max-width: 1440px) {
  .productFeed__element h3 {
    font-size: 1em;
    line-height: 1;
  }
}

.productFeed__element div.image {
  position: relative;
  text-align: left;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.productFeed__element div.image::before {
  content: "";
  display: inline-block;
  padding-top: 100%;
}

.productFeed__element div.image img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.productFeed__element .description {
  margin: 1em 0;
  font-size: .85em;
  font-weight: 300;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media (max-width: 1440px) {
  .productFeed__element .description {
    font-size: .75em;
    line-height: 1;
  }
}

.productFeed__element .price {
  font-family: 'Baron Neue';
  font-style: italic;
  font-weight: 300;
  font-size: 1.2em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media (max-width: 1440px) {
  .productFeed__element .price {
    font-size: 1em;
  }
}

.productFeed__element a {
  display: block;
  text-decoration: none;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  border: none;
  border-radius: 0px;
  background: #b34d18;
  color: #fff;
  font-family: 'Baron Neue';
  font-style: italic;
  font-weight: 300;
  font-size: 1.2em;
  padding: .35em 2em;
  margin-top: 2em;
  width: 50%;
  -webkit-transition: .25s all ease-in-out;
  transition: .25s all ease-in-out;
}

@media (max-width: 1440px) {
  .productFeed__element a {
    width: auto;
    font-size: 1em;
    display: inline-block;
    margin-top: 1em;
  }
}

.productFeed__element a:hover {
  background: #3d3d3d;
}

.swiper-button-next, .swiper-button-prev {
  color: #3d3d3d;
  -webkit-transition: .25s all ease-in-out;
  transition: .25s all ease-in-out;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  color: #b34d18;
}

.swiper-pagination {
  position: static;
  margin-top: 2em;
}

@media (max-width: 720px) {
  .swiper-pagination {
    display: none;
  }
}

.swiper-pagination .swiper-pagination-bullet {
  background: #3d3d3d;
  height: 5px;
  width: 40px;
  border-radius: 0;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #b34d18;
}

.comparison {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4em 0;
}

.comparison__image {
  margin-top: -8em;
}

@media (max-width: 1024px) {
  .comparison__image {
    margin: -6em 0 4em 0;
  }
}

@media (max-width: 720px) {
  .comparison__image {
    margin: -6em 0 2em 0;
  }
}

.comparison__image img {
  display: block;
  width: 100%;
}

.comparison .comparison__text {
  margin-bottom: 2em;
}

@media (max-width: 1024px) {
  .comparison .grid__item--seperator {
    display: none;
  }
}

@media (min-width: 1024px) {
  .comparison.comparison--imagefirst .comparison__text {
    padding-left: 5em;
  }
}

.comparison.comparison--textfirst {
  background: #3d3d3d;
  color: #fff;
}

@media (min-width: 1024px) {
  .comparison.comparison--textfirst .comparison__text {
    padding-right: 5em;
  }
}

.comparison.comparison--textfirst .comparison__text.text--desktop {
  display: block;
}

.comparison.comparison--textfirst .comparison__text.text--mobile {
  display: none;
}

@media (max-width: 1024px) {
  .comparison.comparison--textfirst .comparison__text.text--desktop {
    display: none;
  }
  .comparison.comparison--textfirst .comparison__text.text--mobile {
    display: block;
  }
}

.swiper {
  margin-top: 4em;
  padding: 0 4em;
}

@media (max-width: 1440px) {
  .swiper {
    margin-top: 3em;
  }
}

@media (max-width: 1024px) {
  .swiper {
    margin-top: 2em;
  }
}

@media (max-width: 720px) {
  .swiper {
    margin-top: 1em;
  }
}

.infos__element {
  padding: 0 0 14em 0;
}

@media (max-width: 1024px) {
  .infos__element {
    padding-bottom: 6em;
  }
}

.infos__element:last-child {
  padding-bottom: 7em;
}

@media (min-width: 1024px) {
  .infos__element__headerimage {
    margin-top: -5em;
  }
}

.infos__element__headerimage img {
  display: block;
  width: 100%;
}

.infos__element__content {
  margin: 3em 0;
}

.infos__element__images {
  grid-gap: 1.5em;
}

@media (max-width: 1024px) {
  .infos__element__images {
    grid-gap: 1em;
  }
}

@media (max-width: 720px) {
  .infos__element__images {
    grid-gap: .75em;
  }
}

@media (max-width: 480px) {
  .infos__element__images {
    grid-gap: .5em;
  }
}

.infos__element__images img {
  width: 100%;
}

footer {
  background: #3d3d3d;
  color: #fff;
  padding: 2em 0;
}

footer .relative {
  position: relative;
}

footer .footer__element {
  display: block;
}

@media (min-width: 1440px) {
  footer .footer__element {
    float: left;
  }
}

@media (max-width: 720px) {
  footer .footer__element {
    text-align: center;
  }
}

footer .footer__element--address {
  margin-right: 2em;
}

@media (max-width: 1440px) {
  footer .footer__element--address {
    margin-bottom: 1em;
  }
}

footer .footer__element--logo {
  position: absolute;
  top: 0;
  right: 50%;
  width: 120px;
  margin-right: -60px;
}

@media (max-width: 1440px) {
  footer .footer__element--logo {
    top: auto;
    bottom: 0;
    right: 0;
    margin-right: 0;
  }
}

@media (max-width: 720px) {
  footer .footer__element--logo {
    position: static;
    float: none;
    margin: 1.5em auto;
  }
}

footer .footer__element--menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1440px) {
  footer .footer__element--menu {
    float: right;
  }
}

@media (max-width: 1440px) {
  footer .footer__element--menu {
    position: absolute;
    top: 0;
    right: 0;
  }
}

@media (max-width: 720px) {
  footer .footer__element--menu {
    position: static;
    float: none;
  }
}

footer .footer__element--menu li {
  margin: 0;
  padding: 0;
  text-align: right;
}

@media (max-width: 720px) {
  footer .footer__element--menu li {
    text-align: center;
  }
}

footer .footer__element--menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

footer .footer__element--menu li a:hover {
  text-decoration: underline;
}

.fixed-contact {
  display: block;
  position: fixed;
  top: 40%;
  right: 0;
  z-index: 997;
}

.fixed-contact__element {
  display: block;
  background: #3d3d3d;
  width: 40px;
  height: 40px;
  margin-bottom: .25em;
  cursor: pointer;
  padding: 7px;
  -webkit-transition: .25s all ease-in;
  transition: .25s all ease-in;
}

@media (max-width: 480px) {
  .fixed-contact__element {
    width: 35px;
    height: 35px;
  }
}

.fixed-contact__element:hover {
  background: #b34d18;
}

.fixed-contact__element img {
  display: block;
  width: 100%;
}

#contact-form {
  width: 90%;
  max-width: 700px;
  background: #3d3d3d;
  color: #fff;
  position: fixed;
  top: 20%;
  right: -740px;
  z-index: 998;
  padding: 2em;
  text-align: center;
  -webkit-transition: .5s all ease-in-out;
  transition: .5s all ease-in-out;
}

@media (max-width: 720px) {
  #contact-form {
    top: 10%;
  }
}

#contact-form .close {
  position: absolute;
  top: 0;
  right: 0;
  height: 30px;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  padding: 5px 10px;
}

#contact-form .close:hover {
  text-decoration: underline;
}

#contact-form.show {
  right: 40px;
}

@media (max-width: 720px) {
  #contact-form.show {
    right: 35px;
  }
}

#contact-form h3 {
  font-style: normal;
}

#contact-form .contact-form__contact {
  margin: 2em 0 1em 0;
  position: relative;
}

@media (max-width: 720px) {
  #contact-form .contact-form__contact {
    margin: 1em 0;
  }
}

#contact-form .contact-form__contact__element {
  text-align: center;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1024px) {
  #contact-form .contact-form__contact__element {
    margin-top: .5em;
  }
}

#contact-form .contact-form__contact__element img {
  height: 20px;
  width: auto;
  margin: 0 5px 0 0;
  vertical-align: bottom;
}

#contact-form .contact-form__contact__element span {
  display: inline-block;
}

#contact-form form {
  grid-gap: .5em;
}

#contact-form form textarea {
  height: 150px;
}

#contact-form #response {
  display: none;
  margin-top: 1em;
}

input, textarea {
  border-radius: 0;
  border: none;
  background: #fff;
  padding: .5em;
  font-size: .95em;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  width: 100%;
  outline: none;
  border-bottom: 2px solid #fff;
}

input:active, input:focus, textarea:active, textarea:focus {
  border: none;
  outline: none;
  border-bottom: 2px solid #b34d18;
}

input[type="submit"], textarea[type="submit"] {
  background: #b34d18;
  cursor: pointer;
  color: #fff;
  border-color: #b34d18;
  font-family: 'Baron Neue';
  font-style: normal;
  font-weight: 300;
  text-decoration: none;
  border-radius: 0px;
}

input[type="submit"]:hover, textarea[type="submit"]:hover {
  border-color: #fff;
}

body.preloader-active {
  overflow: hidden;
}

.preloader {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.preloader__image {
  width: 80px;
  height: auto;
  -webkit-animation-name: loadingAnimation;
          animation-name: loadingAnimation;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@-webkit-keyframes loadingAnimation {
  0% {
    width: 80px;
  }
  50% {
    width: 100px;
  }
  100% {
    width: 80px;
  }
}

@keyframes loadingAnimation {
  0% {
    width: 80px;
  }
  50% {
    width: 100px;
  }
  100% {
    width: 80px;
  }
}
/*# sourceMappingURL=style.css.map */