@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900&display=swap");
:root {
  --swiper-pagination-bullet-horizontal-gap: 6px;
  --swiper-navigation-size: 35px;
  --primary-color: #ebb734;
  --primary-color-hover: #ffd61da6;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

#home {
  height: 100%;
  width: 100%;
}

nav {
  position: fixed;
  width: 100%;
  display: flex;
  padding: 0px 25px;
  padding-top: 40px;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: all 0.2s linear;
}
nav.scroll {
  background-color: white;
  box-shadow: 2px 0px 20px 0px rgba(0, 0, 0, 0.2);
  padding-top: 0;
}
nav.scroll #menu a {
  color: black;
}
nav.scroll #menu a:hover {
  color: white;
}
nav .logo {
  height: 60px;
  margin: 10px 0px;
}
nav .menu {
  display: none;
}
nav #hamburgerIcon {
  color: var(--primary-color);
  font-size: 30px;
}

#hamburgerMenu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  background-color: white;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
}
#hamburgerMenu.open {
  transform: translateX(0%);
}
#hamburgerMenu #closebtn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  font-size: 40px;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s linear;
}
#hamburgerMenu .menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#hamburgerMenu .menu a {
  position: relative;
  text-decoration: none;
  color: black;
  font-size: 28px;
  font-weight: 800;
  width: 65%;
  text-align: center;
  padding: 30px 0px;
}
#hamburgerMenu .menu a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  border-radius: 100px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}
#hamburgerMenu .menu a.last-one::before {
  background-color: transparent;
}

.info-banner {
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
}

.bannerSwiper {
  width: 100%;
  height: 100%;
}
.bannerSwiper .swiper-slide {
  display: flex;
  align-items: center;
}
.bannerSwiper .swiper-slide .image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -10;
}
.bannerSwiper .swiper-slide .image-wrapper img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -10;
}
.bannerSwiper .swiper-slide .image-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.bannerSwiper .swiper-slide .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  width: 100%;
  height: 50%;
  padding: 0px 75px;
}
.bannerSwiper .swiper-slide .wrapper h1 {
  position: relative;
  font-weight: 700;
  padding-bottom: 25px;
  color: var(--primary-color);
  font-size: 45px;
  margin-bottom: 25px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.8s ease;
  transition-delay: 0.5s;
}
.bannerSwiper .swiper-slide .wrapper h1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -20px;
  width: calc(100% + 40px);
  background-color: var(--primary-color);
  height: 3px;
}
.bannerSwiper .swiper-slide .wrapper p {
  line-height: 2;
  font-size: 18px;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.8s ease;
  transition-delay: 0.8s;
}
.bannerSwiper .swiper-slide .wrapper a {
  display: flex;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--primary-color);
  color: white;
  font-size: 15px;
  border-radius: 10px;
  padding: 18px 15px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 50px;
  box-shadow: 1px 2px 20px 2px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.8s ease;
  transition-delay: 1.2s;
}
.bannerSwiper .swiper-slide .wrapper a i {
  margin-left: 10px;
  font-size: 25px;
}
.bannerSwiper .swiper-slide.swiper-slide-active h1 {
  transform: translateX(0%);
  opacity: 1;
}
.bannerSwiper .swiper-slide.swiper-slide-active p {
  transform: translateX(0%);
  opacity: 1;
}
.bannerSwiper .swiper-slide.swiper-slide-active a {
  transform: translateX(0%);
  opacity: 1;
}
.bannerSwiper .swiper-pagination {
  bottom: 20px !important;
}
.bannerSwiper .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  opacity: 1;
  background: white;
  transition: all 0.1s linear;
}
.bannerSwiper .swiper-pagination .swiper-pagination-bullet:hover {
  background: var(--primary-color-hover);
}
.bannerSwiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
}
.bannerSwiper .swiper-pagination .swiper-pagination-bullet-active:hover {
  background: var(--primary-color);
}
.bannerSwiper .swiper-button-next {
  right: 20px;
  color: white;
  transition: all 0.1s linear;
  font-size: 35px;
}
.bannerSwiper .swiper-button-next:hover {
  color: var(--primary-color);
}
.bannerSwiper .swiper-button-next::after {
  display: none;
}
.bannerSwiper .swiper-button-prev {
  left: 20px;
  color: white;
  transition: all 0.1s linear;
  font-size: 35px;
}
.bannerSwiper .swiper-button-prev:hover {
  color: var(--primary-color);
}
.bannerSwiper .swiper-button-prev::after {
  display: none;
}

#toTop {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: white;
  background-color: var(--primary-color);
  position: fixed;
  bottom: 30px;
  right: 40px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  z-index: 50;
  transition: all 0.2s linear;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}
#toTop.hide {
  transform: translateY(-20px);
  opacity: 0;
  z-index: -10;
}

#grundstueck {
  width: 100%;
  padding: 100px 10px;
  padding-bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -50px;
}
#grundstueck h1 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
  padding: 10px 20px;
  margin: 10px 0px;
  margin-bottom: 50px;
  width: 100%;
  text-align: center;
  font-weight: 800;
  position: relative;
}
#grundstueck h1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 50px;
  background-color: var(--primary-color);
}
#grundstueck h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 50px;
  background-color: var(--primary-color);
}
#grundstueck .wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#grundstueck .wrapper .image-wrapper {
  margin: 10px;
  width: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 5px 25px -5px rgba(0, 0, 0, 0.5);
}
#grundstueck .wrapper .image-wrapper a {
  display: flex;
  border-radius: 10px;
  width: 100%;
  height: auto;
}
#grundstueck .wrapper .image-wrapper a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease;
}
#grundstueck .wrapper .image-wrapper a.forDesktops {
  display: none;
}
#grundstueck .wrapper .image-wrapper a.forMobile {
  display: flex;
}
#grundstueck .wrapper .image-wrapper a video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#grundstueck .wrapper .image-wrapper:hover img {
  transform: scale(1.1);
}

#stallungen {
  width: 100%;
  padding: 100px 10px;
  padding-bottom: 0px;
  margin-top: -50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s ease;
}
#stallungen h1 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
  padding: 10px 20px;
  margin: 10px 0px;
  margin-bottom: 50px;
  width: 100%;
  text-align: center;
  font-weight: 800;
  position: relative;
}
#stallungen h1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 50px;
  background-color: var(--primary-color);
}
#stallungen h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 50px;
  background-color: var(--primary-color);
}
#stallungen .buttons-wrapper {
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#stallungen .buttons-wrapper button {
  margin: 5px;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 20px;
  border-radius: 15px;
  color: white;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
}
#stallungen .buttons-wrapper button.mixitup-control-active {
  color: var(--primary-color);
  background-color: transparent;
}
#stallungen .wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#stallungen .wrapper .image-wrapper {
  margin: 5px 10px;
  width: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
#stallungen .wrapper .image-wrapper a {
  display: flex;
  border-radius: 10px;
  width: 100%;
  height: auto;
}
#stallungen .wrapper .image-wrapper a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease;
}
#stallungen .wrapper .image-wrapper a.forDesktops {
  display: none;
}
#stallungen .wrapper .image-wrapper a.forMobile {
  display: flex;
}
#stallungen .wrapper .image-wrapper a video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#stallungen .wrapper .image-wrapper:hover img {
  transform: scale(1.1);
}

#anlage {
  width: 100%;
  padding: 100px 10px;
  padding-bottom: 75px;
  margin-top: -50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s ease;
}
#anlage h1 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
  padding: 10px 20px;
  margin: 10px 0px;
  margin-bottom: 50px;
  width: 100%;
  text-align: center;
  font-weight: 800;
  position: relative;
}
#anlage h1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 50px;
  background-color: var(--primary-color);
}
#anlage h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 50px;
  background-color: var(--primary-color);
}
#anlage .buttons-wrapper {
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#anlage .buttons-wrapper button {
  margin: 5px;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 20px;
  border-radius: 15px;
  color: white;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
}
#anlage .buttons-wrapper button.mixitup-control-active {
  color: var(--primary-color);
  background-color: transparent;
}
#anlage .wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#anlage .wrapper .image-wrapper {
  margin: 5px 10px;
  width: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
#anlage .wrapper .image-wrapper a {
  display: flex;
  border-radius: 10px;
  width: 100%;
  height: auto;
}
#anlage .wrapper .image-wrapper a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease;
}
#anlage .wrapper .image-wrapper a.forDesktops {
  display: none;
}
#anlage .wrapper .image-wrapper a.forMobile {
  display: flex;
}
#anlage .wrapper .image-wrapper a video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#anlage .wrapper .image-wrapper:hover img {
  transform: scale(1.1);
}

#freeSpace {
  background-color: var(--primary-color);
  width: 100%;
  padding: 100px 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.5rem;
  text-align: center;
  margin-top: 50px;
}
#freeSpace img {
  display: none;
}
#freeSpace span {
  color: black;
  font-size: 3rem;
}

#kontaktform {
  padding: 100px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#kontaktform h1 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 50px;
}
#kontaktform .wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#kontaktform .wrapper form {
  width: 50%;
  display: flex;
  flex-direction: column;
}
#kontaktform .wrapper form .row {
  display: flex;
}
#kontaktform .wrapper form input[type=submit] {
  padding: 15px;
  text-transform: uppercase;
  background-color: var(--primary-color);
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 10px;
  margin: 10px;
  border: none;
  transition: all 0.1s linear;
}
#kontaktform .wrapper form input[type=submit]:hover {
  background-color: var(--primary-color-hover);
}
#kontaktform .wrapper form input[type=text], #kontaktform .wrapper form input[type=email], #kontaktform .wrapper form input[type=phone] {
  width: 100%;
  padding: 15px;
  padding-left: 20px;
  border-radius: 10px;
  border: none;
  background-color: #f1f1f1;
  outline: none;
  margin: 10px;
  font-size: 1.1rem;
}
#kontaktform .wrapper form textarea {
  resize: vertical;
  border: none;
  background-color: #f1f1f1;
  padding: 15px;
  padding-left: 20px;
  font-size: 1.1rem;
  border-radius: 10px;
  margin: 10px;
  min-height: 100px;
  outline: none;
}
#kontaktform .wrapper img {
  width: 30%;
  margin-left: 50px;
}

#googleMaps {
  display: flex;
}
#googleMaps iframe {
  height: 400px;
}

.gallerySlider .swiper-slide a {
  height: 100%;
  display: flex;
}
.gallerySlider .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

#kontakt {
  background-color: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #a8a8a8;
  padding: 50px 25px;
}
#kontakt h1 {
  margin-bottom: 10px;
  color: white;
  text-transform: uppercase;
  text-align: center;
}
#kontakt .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 25px;
}
#kontakt .wrapper .row {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#kontakt .wrapper .row .data-wrapper {
  margin: 5px 10px;
  display: flex;
  align-items: center;
}
#kontakt .wrapper .row .data-wrapper i {
  color: var(--primary-color);
  margin-right: 5px;
}

/* Tablets */
@media only screen and (min-width: 768px) {
  .bannerSwiper .swiper-slide .wrapper {
    padding: 0px 150px;
  }
  .bannerSwiper .swiper-slide .wrapper h1 {
    font-size: 60px;
  }
  .bannerSwiper .swiper-slide .wrapper p {
    width: 80%;
    font-size: 20px;
  }
  .bannerSwiper .swiper-slide .wrapper a {
    font-size: 18px;
  }
  .bannerSwiper .swiper-button-next {
    font-size: 40px;
    right: 30px;
  }
  .bannerSwiper .swiper-button-prev {
    font-size: 40px;
    left: 30px;
  }
  #grundstueck {
    padding: 75px 25px;
    padding-bottom: 0px;
  }
  #grundstueck .wrapper .image-wrapper {
    width: 350px;
    box-shadow: 0px 5px 25px -5px rgba(0, 0, 0, 0.5);
  }
  #grundstueck .wrapper .image-wrapper a {
    width: 100%;
    height: auto;
  }
  #grundstueck .wrapper .image-wrapper a.forDesktops {
    display: none;
  }
  #grundstueck .wrapper .image-wrapper a.forMobile {
    display: flex;
  }
  #stallungen .buttons-wrapper button {
    font-size: 16px;
  }
  #stallungen .wrapper .image-wrapper {
    width: 350px;
    box-shadow: 0px 5px 25px -5px rgba(0, 0, 0, 0.5);
  }
  #stallungen .wrapper .image-wrapper a {
    width: 100%;
    height: 100%;
  }
  #stallungen .wrapper .image-wrapper a.forDesktops {
    display: none;
  }
  #stallungen .wrapper .image-wrapper a.forMobile {
    display: flex;
  }
  #anlage .buttons-wrapper button {
    font-size: 16px;
  }
  #anlage .wrapper .image-wrapper {
    width: 350px;
    box-shadow: 0px 5px 25px -5px rgba(0, 0, 0, 0.5);
  }
  #anlage .wrapper .image-wrapper a {
    width: 100%;
    height: 100%;
  }
  #anlage .wrapper .image-wrapper a.forDesktops {
    display: none;
  }
  #anlage .wrapper .image-wrapper a.forMobile {
    display: flex;
  }
  #kontakt .wrapper {
    flex-direction: row;
  }
  #kontakt .wrapper .row {
    width: 50%;
  }
}
/* Desktops */
@media only screen and (min-width: 992px) {
  nav {
    padding: 0px 50px;
    padding-top: 40px;
  }
  #grundstueck {
    padding: 75px 10px;
    padding-bottom: 0px;
  }
  #grundstueck .wrapper {
    margin: 25px 0px;
    margin-top: 10px;
  }
  #grundstueck .wrapper .image-wrapper {
    width: 400px;
    box-shadow: 0px 5px 25px -5px rgba(0, 0, 0, 0.5);
  }
  #grundstueck .wrapper .image-wrapper a.forDesktops {
    display: flex;
  }
  #grundstueck .wrapper .image-wrapper a.forMobile {
    display: none;
  }
  #grundstueck .wrapper .image-wrapper a video {
    width: 100%;
  }
  #stallungen .buttons-wrapper button {
    font-size: 18px;
  }
  #stallungen .wrapper {
    margin: 25px 0px;
    margin-top: 10px;
  }
  #stallungen .wrapper .image-wrapper {
    width: 400px;
    box-shadow: 0px 5px 25px -5px rgba(0, 0, 0, 0.5);
  }
  #stallungen .wrapper .image-wrapper a.forDesktops {
    display: flex;
  }
  #stallungen .wrapper .image-wrapper a.forMobile {
    display: none;
  }
  #stallungen .wrapper .image-wrapper a video {
    width: 100%;
  }
  #anlage .buttons-wrapper button {
    font-size: 18px;
  }
  #anlage .wrapper {
    margin: 25px 0px;
    margin-top: 10px;
  }
  #anlage .wrapper .image-wrapper {
    width: 400px;
    box-shadow: 0px 5px 25px -5px rgba(0, 0, 0, 0.5);
  }
  #anlage .wrapper .image-wrapper a.forDesktops {
    display: flex;
  }
  #anlage .wrapper .image-wrapper a.forMobile {
    display: none;
  }
  #anlage .wrapper .image-wrapper a video {
    width: 100%;
  }
}
/* Large Desktops */
@media only screen and (min-width: 1200px) {
  nav {
    justify-content: space-evenly;
    padding: 0px;
    padding-top: 40px;
  }
  nav.scroll .menu a {
    color: black;
  }
  nav.scroll .menu a:hover {
    color: white;
  }
  nav #hamburgerIcon {
    display: none;
  }
  nav .menu {
    display: block;
  }
  nav .menu a {
    margin: 0px 15px;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.1s linear;
    position: relative;
  }
  nav .menu a:hover {
    color: black;
  }
  nav .menu a:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  nav .menu a::before {
    content: "";
    position: absolute;
    left: -13px;
    top: -5px;
    border-radius: 10px;
    width: calc(100% + 26px);
    height: calc(100% + 10px);
    background-color: var(--primary-color);
    z-index: -1;
    transition: transform 0.2s ease;
    transform: scaleX(0);
    transform-origin: bottom right;
  }
  .bannerSwiper .swiper-slide .wrapper {
    padding: 0px 200px;
  }
  .bannerSwiper .swiper-slide .wrapper h1 {
    font-size: 70px;
  }
  .bannerSwiper .swiper-slide .wrapper p {
    width: 50%;
    font-size: 22px;
  }
  .bannerSwiper .swiper-slide .wrapper a {
    font-size: 20px;
    padding: 20px 25px;
  }
  .bannerSwiper .swiper-button-next {
    right: 40px;
    font-size: 50px;
  }
  .bannerSwiper .swiper-button-prev {
    left: 40px;
    font-size: 50px;
  }
  #grundstueck {
    padding: 100px;
    padding-bottom: 0px;
  }
  #grundstueck h1 {
    font-size: 35px;
  }
  #grundstueck .wrapper {
    margin: 25px 0px;
    margin-top: 10px;
  }
  #grundstueck .wrapper .image-wrapper {
    width: 400px;
    box-shadow: 0px 5px 25px -5px rgba(0, 0, 0, 0.5);
  }
  #grundstueck .wrapper .image-wrapper a.forDesktops {
    display: flex;
  }
  #grundstueck .wrapper .image-wrapper a.forMobile {
    display: none;
  }
  #grundstueck .wrapper .image-wrapper a video {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  #stallungen {
    padding: 100px;
    padding-bottom: 0px;
  }
  #stallungen h1 {
    font-size: 35px;
  }
  #stallungen h2 {
    font-size: 30px;
  }
  #stallungen .wrapper {
    margin: 25px 0px;
    margin-top: 10px;
  }
  #stallungen .wrapper .image-wrapper {
    margin: 10px;
    width: 400px;
    box-shadow: 0px 5px 25px -5px rgba(0, 0, 0, 0.5);
  }
  #stallungen .wrapper .image-wrapper a.forDesktops {
    display: flex;
  }
  #stallungen .wrapper .image-wrapper a.forMobile {
    display: none;
  }
  #stallungen .wrapper .image-wrapper a video {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  #anlage {
    padding: 100px;
    padding-bottom: 50px;
  }
  #anlage h1 {
    font-size: 35px;
  }
  #anlage .wrapper {
    margin: 25px 0px;
    margin-top: 10px;
  }
  #anlage .wrapper .image-wrapper {
    margin: 10px;
    width: 400px;
    box-shadow: 0px 5px 25px -5px rgba(0, 0, 0, 0.5);
  }
  #anlage .wrapper .image-wrapper a.forDesktops {
    display: flex;
  }
  #anlage .wrapper .image-wrapper a.forMobile {
    display: none;
  }
  #anlage .wrapper .image-wrapper a video {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #freeSpace img {
    display: initial;
    width: 50px;
    margin-left: 25px;
  }
  #kontaktform {
    padding: 100px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #kontaktform h1 {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 50px;
  }
  #kontaktform .wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  #kontaktform .wrapper form {
    width: 50%;
    display: flex;
    flex-direction: column;
  }
  #kontaktform .wrapper form .row {
    display: flex;
  }
  #kontaktform .wrapper form input[type=submit] {
    padding: 15px;
    text-transform: uppercase;
    background-color: var(--primary-color);
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 10px;
    margin: 10px;
    border: none;
    transition: all 0.1s linear;
  }
  #kontaktform .wrapper form input[type=submit]:hover {
    background-color: var(--primary-color-hover);
  }
  #kontaktform .wrapper form input[type=text], #kontaktform .wrapper form input[type=email], #kontaktform .wrapper form input[type=phone] {
    width: 100%;
    padding: 15px;
    padding-left: 20px;
    border-radius: 10px;
    border: none;
    background-color: #f1f1f1;
    outline: none;
    margin: 10px;
    font-size: 1.1rem;
  }
  #kontaktform .wrapper form textarea {
    resize: vertical;
    border: none;
    background-color: #f1f1f1;
    padding: 15px;
    padding-left: 20px;
    font-size: 1.1rem;
    border-radius: 10px;
    margin: 10px;
    min-height: 100px;
    outline: none;
  }
  #kontaktform .wrapper img {
    width: 30%;
    margin-left: 50px;
  }
  #kontakt h1 {
    font-size: 30px;
  }
  #kontakt .wrapper {
    font-size: 18px;
    flex-direction: column;
  }
  #kontakt .wrapper .row {
    flex-direction: row;
    width: 100%;
  }
  #toTop {
    width: 60px;
    height: 60px;
  }
  #toTop i {
    font-size: 25px;
  }
}/*# sourceMappingURL=style.css.map */