@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-SemiBold.ttf") format("truetypeform"), url("/assets/fonts/Montserrat-SemiBold.woff") format("woff"), url("/assets/fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-display: swap;
  font-weight: 700;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-ExtraLight.ttf") format("truetypeform"), url("/assets/fonts/Montserrat-ExtraLight.woff") format("woff"), url("/assets/fonts/Montserrat-ExtraLight.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 400;
}
body {
  --main-color: #00677F;
  --light-background: #ffffff;
  --light-text-background: #FBF8F8;
  --font-color: #000000;
  --font-color-light: #fff;
  --main-shadow-color: rgba(0, 118, 111, .3);
  --index-high: 5;
  --index-low: -5;
  --index-overlay: 10;
  --index-pop-up: 15;
}

.btn {
  position: relative;
  display: block;
  padding: 1em 1em;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 2;
}
.btn:before {
  position: absolute;
  display: block;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #00677F;
  z-index: -1;
  transition: clip-path 0.3s;
}
.btn--left:before {
  left: 0;
  clip-path: inset(0 76% 0 0 round 25px);
}
@media only screen and (min-width: 576px) {
  .btn--left:before {
    clip-path: inset(0 76% 0 0 round 35px);
  }
}
@media only screen and (min-width: 992px) {
  .btn--left:before {
    clip-path: inset(0 76% 0 0 round 50px);
  }
}
.btn--left:hover:before {
  clip-path: inset(0 0% 0 0 round 50px);
}
@media only screen and (min-width: 576px) {
  .btn--left:hover:before {
    clip-path: inset(0 0% 0 0 round 35px);
  }
}
@media only screen and (min-width: 992px) {
  .btn--left:hover:before {
    clip-path: inset(0 0% 0 0 round 50px);
  }
}
.btn--right:before {
  right: 0;
  clip-path: inset(0 0 0 53% round 25px);
}
@media only screen and (min-width: 576px) {
  .btn--right:before {
    clip-path: inset(0 0 0 53% round 35px);
  }
}
@media only screen and (min-width: 992px) {
  .btn--right:before {
    clip-path: inset(0 0 0 53% round 50px);
  }
}
.btn--right:hover:before {
  clip-path: inset(0 0% 0 0 round 50px);
}
@media only screen and (min-width: 576px) {
  .btn--right:hover:before {
    clip-path: inset(0 0% 0 0 round 35px);
  }
}
@media only screen and (min-width: 992px) {
  .btn--right:hover:before {
    clip-path: inset(0 0% 0 0 round 50px);
  }
}
.btn--center:before {
  right: 0;
  clip-path: inset(0 50% 0 0 round 25px);
}
@media only screen and (min-width: 576px) {
  .btn--center:before {
    clip-path: inset(0 50% 0 0 round 35px);
  }
}
@media only screen and (min-width: 992px) {
  .btn--center:before {
    clip-path: inset(0 50% 0 0 round 50px);
  }
}
.btn--center:hover:before {
  clip-path: inset(0 0% 0 0 round 50px);
}
@media only screen and (min-width: 576px) {
  .btn--center:hover:before {
    clip-path: inset(0 0% 0 0 round 35px);
  }
}
@media only screen and (min-width: 992px) {
  .btn--center:hover:before {
    clip-path: inset(0 0% 0 0 round 50px);
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.wrapper {
  max-width: 90%;
  margin: 0 auto;
}

.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.to-up {
  position: fixed;
  display: none;
  right: 1rem;
  bottom: 6rem;
  transform: scale(0.8);
  transition: transform 0.4s;
  cursor: pointer;
}
.to-up:hover {
  transform: scale(1);
}
.to-up[data-scrolled=true] {
  display: block;
}

.landing {
  background-color: black;
  height: 100vh;
  background-image: url("/assets/img/main_576.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.landing .wrapper {
  height: 100%;
}
.landing__top-bar {
  display: flex;
  padding-top: 1em;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.landing__top-bar-logo-container {
  width: 40%;
  z-index: var(--index-pop-up);
}
.landing__top-bar-logo-container img {
  width: 100%;
  height: auto;
  max-height: 25px;
  filter: grayscale(5) brightness(5);
}
.landing__top-bar a {
  padding-left: 1.5em;
  text-decoration: none;
}
.landing__top-bar a img {
  filter: grayscale(5) brightness(5);
  transition: filter 0.3s;
}
.landing__top-bar a:hover img {
  filter: none;
}
.landing__top-bar-btn-container {
  display: none;
}
.landing__top-bar-social-container {
  display: none;
}
.landing__header {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.landing__header-heading {
  margin-bottom: 2em;
  color: var(--font-color-light);
  font-weight: normal;
}
.landing__header-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.about {
  position: relative;
  padding-top: 4em;
}
.about .wrapper {
  position: relative;
  background-color: var(--light-text-background);
}
.about__heading {
  position: relative;
  top: -30px;
  margin-inline-start: 20px;
  font-size: 3rem;
  text-transform: lowercase;
  letter-spacing: 3px;
}
.about__heading--color {
  color: var(--main-color);
}
.about__text {
  padding: 0 2em 2em 2em;
  color: var(--main-color);
  line-height: 200%;
}
.about__btn-container {
  display: flex;
  justify-content: flex-end;
}
.about__btn {
  position: relative;
  bottom: -20px;
  right: 20px;
  color: var(--font-color);
  transition: color 0.3s;
}
.about__btn:hover {
  color: var(--font-color-light);
}

.projects, .offer, .park {
  padding-top: 4em;
}
.projects__heading, .offer__heading, .park__heading {
  margin: 0;
  font-size: 3rem;
  text-align: center;
  letter-spacing: 3px;
}
.projects__heading:before, .offer__heading:before, .park__heading:before {
  content: ".";
  color: var(--main-color);
  font-size: 3rem;
  margin-inline-end: -15px;
}
.projects .wrapper, .offer .wrapper, .park .wrapper {
  position: relative;
  margin-top: 4em;
  max-height: 50%;
  max-width: 95%;
  overflow: hidden;
}
.projects .swiper, .offer .swiper, .park .swiper {
  width: 100%;
  height: auto;
  z-index: 0;
}
.projects .swiper-slide, .offer .swiper-slide,.park .swiper-slide {
  text-align: center;
  aspect-ratio: 1;
}
.projects .swiper-slide:nth-child(odd), .park .swiper-slide:nth-child(odd) {
  align-self: flex-end;
}
.projects__carousel, .offer__carousel, .park__carousel {
  margin-top: 3em;
  margin-bottom: 3em;
}
.projects__carousel[data-grabbed=true] .projects__carousel-item img, .park__carousel[data-grabbed=true] .park__carousel-item img {
  transform: scale(0.9);
}
.projects__carousel-item, .offer__carousel-item, .park__carousel-item {
  position: relative;
  height: auto;
  min-width: 100%;
  object-fit: cover;
  cursor: move;
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
  transition: transform 0.3s;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.offer__carousel-item p,.park__carousel-item p{
  text-align: center; padding: 5rem; font-weight: bold;
}
.offer__carousel-item p{
  padding: 3rem;
}
.projects__carousel-item:active, .offer__carousel-item:active, .park__carousel-item:active {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
.projects__carousel-item img, .offer__carousel-item img, .park__carousel-item img {
  width: 100%;
  height: auto;
  transition: transform 0.4s;
}
.offer__carousel-item img{
  padding: 1rem;
}

.projects__carousel-item-shadow {
  position: absolute;
  padding: 1em;
  line-height: 200%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: var(--font-color-light);
  background-color: rgba(28, 120, 161, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
}
.projects__carousel-item[data-desc-visible=true] .projects__carousel-item-shadow {
  opacity: 1;
}

.contact {
  padding-top: 8em;
  padding-bottom: 8em;
}
.contact__heading {
  position: relative;
  top: -30px;
  text-align: right;
  margin-inline-end: 30px;
  font-size: 3rem;
}
.contact .wrapper {
  width: 90%;
  background-color: var(--light-text-background);
  padding-bottom: 4em;
}
.contact__data-container {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}
.contact__logo-container {
  margin-top: 2em;
  margin-bottom: 3em;
  width: 30%;
}
.contact__logo-container img {
  width: 100%;
  height: auto;
}
.contact__address {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-style: normal;
}
.contact__address ul {
  list-style: none;
  margin-bottom: 1em;
  text-align: center;
}
.contact form {
  margin-top: 4em;
}
.contact__form-group {
  margin: 1em auto;
  display: flex;
  flex-direction: column;
  width: 80%;
}
.contact__form-group input, .contact__form-group textarea {
  padding: 0.5em;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  border: 1px solid var(--main-color);
  border-radius: 3px;
  color: var(--main-color);
}
.contact__form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.contact__form-group--checkbox input {
  height: 15px;
  width: initial;
  min-width: initial;
  max-width: initial;
  border: 1px solid var(--main-color);
  margin-right: 1em;
}
.contact__form-group--checkbox label {
  width: 100%;
}
.contact__btn-container {
  margin-top: 5em;
  display: flex;
  justify-content: center;
}
.contact__btn {
  border: none;
  background: none;
  font-size: 1.2rem;
  color: var(--font-color);
  transition: color 0.3s;
  cursor: pointer;
}
.contact__btn:hover {
  color: var(--font-color-light);
}

footer {
  padding-top: 2em;
  background-color: var(--main-color);
  color: var(--font-color-light);
}
footer a {
  color: var(--font-color-light);
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer ul {
  list-style: none;
}
footer .footer__logo-container {
  margin-bottom: 2em;
}
footer .footer__logo-container img {
  filter: grayscale(5) brightness(5);
}
footer .footer__company-description {
  margin-bottom: 2em;
}
footer .footer__nav {
  display: flex;
  width: 100%;
  justify-content: center;
}
footer .footer__nav a {
  display: block;
  padding: 1em 2em;
}
footer .footer__info {
  margin-top: 2em;
  padding-bottom: 1em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .landing__top-bar-btn-container {
    display: flex;
    position: relative;
    width: 25px;
    height: 25px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: var(--index-pop-up);
  }
  .landing__top-bar-btn {
    background: none;
    border: none;
  }
  .landing__top-bar-btn img {
    transition: transform 0.3s, filter 0.3s;
  }
  .landing__top-bar-btn[aria-expanded=true] img {
    transform: rotate(45deg);
    filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(2);
  }
  .landing__nav-btn-container {
    display: none;
  }
  .landing__nav-menu-list {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    list-style: none;
    background-color: var(--main-color);
    background-image: linear-gradient(#00677F, #00bfe8);
    z-index: var(--index-overlay);
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  .landing__nav-menu-list a {
    display: block;
    color: var(--font-color-light);
    text-decoration: none;
    text-transform: uppercase;
    padding: 2em;
  }
  .landing__nav-menu-list[data-expanded=true] {
    transform: scaleX(1);
  }
}
@media only screen and (min-width: 576px) {
  .landing {
    background-image: url("/assets/img/main_786.webp");
  }
  .landing__top-bar-social-container {
    display: block;
  }
  .landing__header {
    justify-content: flex-start;
    font-size: 1.4rem;
  }
  .projects .swiper, .offer .swiper, .park .swiper {
    margin-top: 15em;
    height: 600px;
  }
  .projects__carousel-item,   .offer__carousel-item,   .park__carousel-item {
    min-width: 450px;
    max-width: 450px;
    aspect-ratio: initial;
  }
  .projects__carousel-item:nth-child(odd),  .park__carousel-item:nth-child(odd) {
    align-self: flex-end;
  }
  .projects__carousel-item:nth-child(even), .park__carousel-item:nth-child(even) {
    align-self: flex-start;
  }
}
@media only screen and (min-width: 786px) {
  .landing {
    background-image: url("/assets/img/main_992.webp");
  }
  footer ul {
    text-align: center;
  }
  footer .footer__nav {
    justify-content: center;
  }
  footer .footer__info {
    flex-direction: row;
  }
}
@media only screen and (min-width: 992px) {
  .landing {
    background-image: url("/assets/img/main_1200.webp");
  }
  .landing .wrapper {
    display: grid;
    align-items: flex-start;
    grid-template-rows: 1fr 10fr;
    grid-template-areas: "top-bar top-bar" "header nav";
    max-width: 90%;
  }
  .landing__top-bar {
    grid-area: top-bar;
  }
  .landing__top-bar-logo-container {
    width: 30%;
  }
  .landing__top-bar-logo-container img {
    max-height: initial;
  }
  .landing__header {
    grid-area: header;
    width: 100%;
    justify-content: flex-start;
    font-size: 1.6rem;
  }
  .landing__nav {
    grid-area: nav;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .landing__nav button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    z-index: 10;
    border-radius: 50%;
    cursor: pointer;
  }
  .landing__nav button p.menu-indicator {
    position: absolute;
    width: 120px;
    height: 120px;
    color: var(--font-color-light);
    top: -50%;
    animation: rotateText 10s linear infinite;
  }
  .landing__nav button p.menu-indicator span {
    position: absolute;
    left: 50%;
    font-size: 1.4rem;
    transform-origin: 0 60px;
    transition: transform 0.3s;
  }
  .landing__nav button img {
    transform: rotate(-90deg);
    transition: transform 0.3s;
  }
  .landing__nav button[aria-expanded=true] p.menu-indicator span {
    transform: scale(0) !important;
  }
  .landing__nav button[aria-expanded=true] img {
    transform: rotate(90deg);
  }
  .landing__nav-menu-list-container {
    position: absolute;
    right: 1rem;
  }
  .landing__nav-menu-list {
    list-style: none;
  }
  .landing__nav-menu-list a {
    display: block;
    padding: 0.5em;
    text-decoration: none;
    color: var(--font-color-light);
    font-size: 2.4rem;
    transform-origin: right;
    transition: color 0.3s, transform 0.3s;
  }
  .landing__nav-menu-list a:hover {
    color: var(--main-color);
    text-decoration: underline;
  }
  .landing__nav-menu-list li {
    transition: transform 0.2s;
  }
  .landing__nav-menu-list li:nth-child(1) {
    transform: translate(5rem, 8rem) scale(0);
  }
  .landing__nav-menu-list li:nth-child(2) {
    transform: translate(4rem, 2rem) scale(0);
  }
  .landing__nav-menu-list li:nth-child(3) {
    transform: translate(5rem, -3rem) scale(0);
  }
  .landing__nav-menu-list li:nth-child(4) {
    transform: translate(5rem, -8rem) scale(0);
  }
  .landing__nav-menu-list li:nth-child(5) {
    transform: translate(5rem, -8rem) scale(0);
  }
  .landing__nav-menu-list li:nth-child(6) {
    transform: translate(5rem, -8rem) scale(0);
  }
  .landing__nav-menu-list[data-expanded=true] li:nth-child(1) {
    transform: translate(0) scale(1);
    transition: transform 0.3s;
  }
  .landing__nav-menu-list[data-expanded=true] li:nth-child(2) {
    transform: translate(-4rem, 0) scale(1);
    transition: transform 0.5s;
  }
  .landing__nav-menu-list[data-expanded=true] li:nth-child(3) {
    transform: translate(-14rem, 0) scale(1);
    transition: transform 0.7s;
  }
  .landing__nav-menu-list[data-expanded=true] li:nth-child(4) {
    transform: translate(-22rem,0) scale(1);
    transition: transform 0.7s;
  }
  .landing__nav-menu-list[data-expanded=true] li:nth-child(5) {
    transform: translate(-3rem, 0) scale(1);
    transition: transform 0.9s;
  }
  .landing__nav-menu-list[data-expanded=true] li:nth-child(6) {
    transform: translate(0) scale(1);
    transition: transform 1.1s;
  }
  .about__heading {
    top: -50px;
    font-size: 5rem;
  }
  .about__text {
    font-size: 1.4rem;
  }
  .about__btn {
    bottom: -30px;
    font-size: 1.6rem;
  }
  .projects__heading, .offer__heading, .park__heading {
    font-size: 5rem;
  }
  .projects__heading:before, .offer__heading:before, .park__heading:before {
    font-size: 5rem;
  }
  .projects .swiper, .offer .swiper, .park .swiper {
    margin-top: 15em;
    height: 600px;
  }
  .projects__carousel-item, .offer__carousel-item, .park__carousel-item {
    min-width: 450px;
    max-width: 450px;
    aspect-ratio: initial;
  }
  .offer__carousel-item img{
    aspect-ratio: 1;
    max-width: 300px;
  }
  .projects__carousel-item:nth-child(odd),  .park__carousel-item:nth-child(odd) {
    align-self: flex-end;
  }
  .projects__carousel-item:nth-child(even),   .park__carousel-item:nth-child(even) {
    align-self: flex-start;
  }
  .contact {
    padding-top: 15em;
  }
  .contact .wrapper {
    width: 70%;
  }
  .contact__heading {
    top: -50px;
    font-size: 5rem;
  }
  .contact__data-container {
    margin: 0 auto;
    justify-content: space-between;
    max-width: 80%;
    flex-direction: row;
  }
  .contact__address ul {
    text-align: left;
    font-size: 1.4rem;
  }
  .contact form {
    font-size: 1.4rem;
  }
  .contact__form-group--checkbox input {
    height: 25px;
  }
  .contact__btn {
    font-size: 1.6rem;
  }
  footer {
    font-size: 1.5rem;
  }
  footer .footer__container {
    display: flex;
  }
  footer .footer__nav {
    justify-content: flex-end;
  }
}
@keyframes rotateText {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media only screen and (min-width: 1200px) {
  .landing {
    background-image: url("/assets/img/main_1400.webp");
  }
}
@media only screen and (min-width: 1400px) {
  .wrapper {
    max-width: 1750px;
    margin: 0 auto;
  }
  .landing {
    background-image: url("/assets/img/main_1920.webp");
  }
  .landing__top-bar-logo-container {
    width: 100%;
    max-width: 240px;
  }
  .landing__header-heading {
    font-size: 4rem;
  }
  .about {
    padding: 10em 0;
  }
  .projects .wrapper, .offer .wrapper, .park .wrapper {
    width: 90%;
    max-width: 1750px;
  }
  .contact .wrapper {
    width: 50%;
  }
}
.maschinen_list{
  margin: 1.5rem auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

}
.maschinen_list-column{
  padding: 1em;
  width: auto;
  text-align: left;
  font-size: 1.5rem;
  font-weight: bold;
}
.maschinen_list-column-item{
  padding: .5rem;
}
@media only screen and (max-width: 576px){
 .maschinen_list{
   flex-direction: column;
 }
.maschinen_list-column{
  text-align: center;
}
}
.projects h3{
  font-size: 2rem;
  text-align: center;margin: 6em 0 -5em; font-weight: bold;
}
/*# sourceMappingURL=style.css.map */
