@charset "UTF-8";
@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 0.5;
  }
  to {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes rotate-right {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate-left {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(-360deg);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  background-color: #002f1d;
}

h1.company-name {
  margin-bottom: 0.5em;
  font-size: 3rem;
  font-family: "Dancing Script", cursive;
  color: #D4AF37;
}

.wrapper {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.section-title {
  position: relative;
  margin: 0 auto 2em;
  font-size: 3.2rem;
  color: #D4AF37;
  font-weight: 200;
  width: fit-content;
}
.section-title::before {
  position: absolute;
  bottom: -0.1em;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #D4AF37;
  content: "";
}
.section-title span {
  font-weight: 900;
}

.header {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.header__text {
  display: grid;
  justify-content: center;
  align-content: center;
  grid-row: 2/3;
  grid-column: 1/3;
  padding: 2em;
  color: #D4AF37;
}
.header__text p {
  font-weight: 200;
  margin: auto;
}
.header__text h3 {
  font-weight: bold;
  margin: auto;
  font-size: 2rem;
}
.header__img {
  grid-row: 1/2;
  grid-column: 1/3;
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url("../img/ordi_green.jpg");
  background-size: cover;
  background-position: center;
}
.header__shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.header__arrow {
  display: none;
}
.header__bg-icon-one, .header__bg-icon-two {
  position: absolute;
  opacity: 0.05;
  z-index: -5;
}
.header__bg-icon-one {
  bottom: 2em;
  right: -3em;
  width: 50%;
  animation: rotate-right 55s infinite linear;
}
.header__bg-icon-two {
  display: none;
}

.hamburger {
  position: absolute;
  top: 3em;
  left: 1em;
  transform: translateY(-50%);
  z-index: 500;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  background-color: #fff;
  z-index: 500;
}

.nav-mobile {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  transform: translateX(-102%);
  transition: transform 0.3s;
  z-index: 10;
}
.nav-mobile--active {
  transform: translateX(0);
}
.nav-desktop {
  display: none;
}
.nav__link {
  position: relative;
  display: inline-block;
  margin: 0.5em;
  padding: 0.5em;
  font-size: 2.3rem;
  color: #01301a;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.nav__link:hover {
  color: #D4AF37;
}

.btn {
  color: black;
  background-color: d8d8d8;
  border-color: #c5c5c5;
  font-family: inherit;
  font-weight: 600;
  background-color: #d8d8d8;
  padding: 0.6rem 0.9rem;
  border: solid 1px #c5c5c5;
  outline: none;
  position: relative;
  border-radius: 0.5rem;
  user-select: none;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.4), 0 -0.3rem 0.6rem rgba(0, 0, 0, 0.2) inset;
  transition: box-shadow 64ms ease-out;
  text-decoration: none;
}

.btn:after {
  content: "";
  background-color: #ffffff;
  width: 75%;
  height: 12.5%;
  position: absolute;
  top: 0.15rem;
  left: 12.5%;
  border-radius: 50%;
  filter: blur(0.15rem);
  transition: opacity 64ms ease-out;
}

.btn:active {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4), 0 0.4rem 1rem rgba(0, 0, 0, 0.3) inset;
}

.btn:active:after {
  opacity: 0;
}

.cards {
  background-color: #013a1f;
  overflow: hidden;
}
.cards__box {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 2em;
  padding: 6em 2em;
}
.cards__card {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 3em;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 8px;
  background-color: #002f1d;
  transition: background-color 0.3s, border 0.3s;
  z-index: 5;
}
.cards__card:hover {
  background-color: #01301a;
  border: 1px solid #D4AF37;
  z-index: 1;
}
.cards__card::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #D4AF37;
  border-radius: 8px;
  opacity: 0;
}
.cards__card:hover::before {
  animation: pulse 1s;
}
.cards__card img {
  margin-bottom: 1em;
  width: 100%;
}
.cards__card h3, .cards__card h4 {
  margin-bottom: 0.6em;
  text-transform: uppercase;
}
.cards__card--one {
  grid-row: 1/2;
  grid-column: 1/-1;
}
.cards__card--two {
  grid-row: 2/3;
  grid-column: 1/-1;
  width: 105%;
}
.cards__card--three {
  grid-row: 3/4;
  grid-column: 1/-1;
}

.info {
  position: relative;
  display: grid;
  grid-template-areas: "title title title" "box box box" "box box box";
  padding: 6em 2em;
}
.info__title {
  grid-area: title;
}
.info__boxes {
  grid-area: box;
}
.info__box-img {
  width: 100%;
  object-fit: cover;
  filter: blur(0.8px);
}
.info__box-title {
  margin: 0.3em 0;
  font-size: 2.6rem;
  color: #D4AF37;
  font-weight: 200;
}
.info__box-text {
  margin-bottom: 0.5em;
}
.info__box-link {
  display: block;
  margin-bottom: 2em;
  font-weight: bold;
  color: #D4AF37;
  text-align: right;
  text-decoration: none;
  transition: color 0.3s;
}
.info__box-link:hover {
  color: #9b9165;
}
.info__bg-icon {
  display: none;
}

.plans {
  padding: 6em 2em;
  background-color: #01301a;
}
.plans__box {
  margin: 1em 0;
  padding: 2em 1em;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 8px;
  background-color: #002f1d;
  cursor: pointer;
}
.plans__box:hover {
  background-color: #01301a;
  border: 1px solid #D4AF37;
}
.plans__item {
  margin: 1em 0;
}
.plans__item-icon {
  width: 50px;
}
.plans__item-name {
  margin-top: 0;
  margin-bottom: 1.5em;
  font-size: 1.8rem;
  color: #D4AF37;
}

.newsletter {
  padding: 8em 2em;
  background-color: #A01C35;
  text-align: center;
}
.newsletter__text {
  padding: 1em;
  margin-bottom: 1em;
  font-size: 4rem;
  font-weight: 200;
}
.newsletter__form input {
  margin-bottom: 1em;
  padding: 1em;
  width: 100%;
  background-color: #fff;
  border: 1px solid transparent;
}
.newsletter__form button {
  padding: 1em;
  border: 1px solid #D4AF37;
  background: none;
  color: #D4AF37;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.newsletter__form button:hover {
  color: #A01C35;
  background-color: #D4AF37;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.gallery img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.gallery img:nth-child(odd) {
  display: none;
}

.kontakt {
  color: #D4AF37;
  font-family: "Lato", sans-serif;
}

.footer {
  padding: 3em 1em;
  border-top: 1px solid #01301a;
  text-align: center;
}

.footer__bottom-text {
  padding-top: 40px;
}

/* OpenHours */
span.OpeningHours__Status OpeningHours__Status--Open {
  font-family: "Montserrat";
}

.OpeningHours__Content {
  float: left;
}

.Day--Today {
  color: #cefd41;
}

.OpeningHours__Table tr td:first-child {
  font-weight: bold;
}

.OpeningHours__Status:after {
  content: " geöffnet:";
  color: #cefd41;
}

.OpeningHours__Status--Open {
  color: green;
}

.OpeningHours__Status--Open:after {
  content: " geöffnet";
  color: #cefd41;
}

.OpeningHours__Table tr td {
  padding: 5px;
}

@media (min-width: 320px) {
  span.OpeningHours__Status {
    font-family: "Montserrat";
    font-size: 2rem;
  }
  .OpeningHours {
    font-family: "Montserrat";
    padding: 40px 10px 30px 10px;
    display: inline-block;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
  }
  .OpeningHours__Table {
    padding: 30px;
  }
  .OpeningHours__Table tr td {
    padding: 0;
  }
  .info {
    grid-template-areas: "title box " "title box " "title box ";
    padding: 10em 2em;
  }
  .info__box {
    display: grid;
    justify-content: end;
  }
  .info__title {
    padding: 0 1em;
  }
  .info__box-img, .info__box-text {
    max-width: 500px;
  }
  .info__bg-icon {
    position: absolute;
    display: block;
    opacity: 0.05;
    z-index: -5;
  }
  .info__bg-icon--one {
    top: 14%;
    width: 20%;
    animation: rotate-right 160s infinite linear;
  }
  .info__bg-icon--two {
    bottom: 10%;
    left: 10%;
    width: 30%;
    animation: rotate-left 140s infinite linear;
  }
  .info__bg-icon--three {
    top: 26%;
    left: 16%;
    width: 50%;
    animation: rotate-left 160s infinite linear;
  }
  .info__bg-icon--four {
    top: 55%;
    left: -10%;
    width: 15%;
    animation: rotate-right 140s infinite linear;
  }
  a.btn {
    position: relative;
    right: 0;
    bottom: -6rem;
  }
}
@media (min-width: 480px) {
  span.OpeningHours__Status OpeningHours__Status--Open {
    font-family: "Montserrat";
    font-size: 2.5rem;
  }
  .OpeningHours {
    font-family: "Montserrat";
    padding: 0px 10px 30px 10px;
    display: inline-block;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
  }
  .OpeningHours__Table {
    padding: 10px;
  }
  .OpeningHours__Table tr td {
    padding: 15px;
  }
  .info {
    grid-template-areas: "title box " "title box " "title box ";
    padding: 10em 2em;
  }
  .info__box {
    display: grid;
    justify-content: end;
  }
  .info__title {
    padding: 0 1em;
  }
  .info__box-img, .info__box-text {
    max-width: 500px;
  }
  .info__bg-icon {
    position: absolute;
    display: block;
    opacity: 0.05;
    z-index: -5;
  }
  .info__bg-icon--one {
    top: 14%;
    width: 20%;
    animation: rotate-right 160s infinite linear;
  }
  .info__bg-icon--two {
    bottom: 10%;
    left: 10%;
    width: 30%;
    animation: rotate-left 140s infinite linear;
  }
  .info__bg-icon--three {
    top: 26%;
    left: 16%;
    width: 50%;
    animation: rotate-left 160s infinite linear;
  }
  .info__bg-icon--four {
    top: 55%;
    left: -10%;
    width: 15%;
    animation: rotate-right 140s infinite linear;
  }
  a.btn {
    position: relative;
    right: 0;
    bottom: -9rem;
  }
}
@media (min-width: 375px) {
  span.OpeningHours__Status OpeningHours__Status--Open {
    font-family: "Montserrat";
    font-size: 2.5rem;
  }
  .OpeningHours {
    font-family: "Montserrat";
    padding: 0px 10px 30px 10px;
    display: inline-block;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding-top: 50px;
  }
  .OpeningHours__Table {
    padding: 10px;
  }
  .OpeningHours__Table tr td {
    padding: 0;
  }
  .OpeningHours__Status {
    display: block;
    text-align: center;
    font-size: 2.5rem;
  }
  .info {
    grid-template-areas: "title box " "title box " "title box ";
    padding: 10em 2em;
  }
  .info__box {
    display: grid;
    justify-content: end;
  }
  .info__title {
    padding: 0 1em;
  }
  .info__box-img, .info__box-text {
    max-width: 500px;
  }
  .info__bg-icon {
    position: absolute;
    display: block;
    opacity: 0.05;
    z-index: -5;
  }
  .info__bg-icon--one {
    top: 14%;
    width: 20%;
    animation: rotate-right 160s infinite linear;
  }
  .info__bg-icon--two {
    bottom: 10%;
    left: 10%;
    width: 30%;
    animation: rotate-left 140s infinite linear;
  }
  .info__bg-icon--three {
    top: 26%;
    left: 16%;
    width: 50%;
    animation: rotate-left 160s infinite linear;
  }
  .info__bg-icon--four {
    top: 55%;
    left: -10%;
    width: 15%;
    animation: rotate-right 140s infinite linear;
  }
  a.btn {
    position: relative;
    right: 0;
    bottom: -7.5rem;
  }
}
@media (min-width: 768px) {
  span.OpeningHours__Status OpeningHours__Status--Open {
    font-family: "Montserrat";
    font-size: 2.5rem;
  }
  .OpeningHours {
    font-family: "Montserrat";
    padding: 40px 10px 0px 10px;
    display: inline-block;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
  }
  .OpeningHours__Table tr td {
    padding: 0.5rem;
    font-size: 2rem;
  }
  .cards__box {
    padding: 10em 2em;
  }
  .cards__card--one {
    grid-row: 1/2;
    grid-column: 1/4;
  }
  .cards__card--two {
    grid-row: 1/2;
    grid-column: 4/7;
  }
  .cards__card--three {
    grid-row: 1/2;
    grid-column: 7/10;
  }
  .cards__img--one {
    width: 130%;
    margin-left: -0.6rem;
  }
  .cards__img--two {
    margin-left: -1.3rem;
  }
  .cards__img--three {
    margin-left: -2.8rem;
  }
  .plans {
    padding: 8em 2em;
  }
  .plans__box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
  }
  .plans__item {
    margin: 0 1em;
  }
  .plans__item-name {
    margin-top: 0;
    margin-bottom: 0;
  }
  .newsletter__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .newsletter__text {
    margin-bottom: 0;
  }
  .newsletter__form {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
  }
  .newsletter__form input {
    margin-bottom: 0;
  }
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery img:nth-child(odd) {
    display: block;
  }
  .contact__form {
    gap: 30px;
  }
  .contact__form-box:nth-child(1) {
    grid-column: 1/4;
    grid-row: 1/2;
  }
  .contact__form-box:nth-child(2) {
    grid-column: 4/7;
    grid-row: 1/2;
  }
  .contact__form-box:nth-child(3) {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
  .contact__form-btn {
    grid-row: 3/4;
  }
  a.btn {
    position: relative;
    right: 30rem;
    bottom: 6rem;
    font-size: 1.3rem;
  }
}
@media (min-width: 992px) {
  span.OpeningHours__Status {
    font-family: "Montserrat";
    font-size: 3.5rem;
  }
  .OpeningHours {
    font-family: "Montserrat";
    padding: 40px 10px 0px 10px;
    display: inline-block;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
  }
  .section-title {
    font-size: 4.8rem;
  }
  .section-title::before {
    height: 4px;
  }
  h1.company-name {
    font-size: 6rem;
  }
  .header {
    grid-template-rows: auto repeat(2, 1fr);
  }
  .header__text {
    grid-row: 2/4;
    grid-column: 1/2;
  }
  .header__text p {
    font-size: 1.8rem;
  }
  .header__img {
    grid-row: 1/4;
    grid-column: 2/3;
  }
  .header__arrow {
    display: block;
    position: absolute;
    bottom: 3em;
    left: 48%;
    padding: 2em;
    transform: translateX(-50%);
    border: 1px solid #fff;
    border-radius: 50%;
  }
  .header__arrow::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  .header__arrow-icon {
    width: 50px;
  }
  .header__bg-icon-one {
    left: 6em;
    bottom: 8em;
    width: 10%;
  }
  .header__bg-icon-two {
    display: block;
    top: 10em;
    left: 35%;
    width: 5%;
    animation: rotate-left 55s infinite linear;
  }
  .nav {
    grid-column: 1/2;
    grid-row: 1/2;
    padding: 1em;
  }
  .nav-desktop {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .nav__link {
    color: #fff;
  }
  .nav__link::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    border: 1px solid #D4AF37;
    opacity: 0;
  }
  .nav__link:hover::before {
    animation: pulse 1s;
  }
  .hamburger {
    display: none;
  }
  a.btn {
    position: relative;
    right: 0;
    bottom: -30rem;
    font-size: 2rem;
  }
}
.cards__img--one {
  width: 110%;
  margin-left: -0.6rem;
}

@media (min-width: 1200px) {
  span.OpeningHours__Status {
    font-family: "Montserrat";
    font-size: 3.5rem;
  }
  .OpeningHours {
    font-family: "Montserrat";
    padding: 60px 10px 0px 10px;
    display: inline-block;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
  }
  .OpeningHours__Table tr td {
    padding: 0.5rem;
    font-size: 2rem;
  }
  .header__text p {
    font-size: 2.2rem;
  }
  .gallery {
    grid-template-columns: repeat(8, 1fr);
  }
  a.btn {
    position: relative;
    right: 0;
    bottom: -30rem;
    font-size: 2rem;
  }
}

/*# sourceMappingURL=main.css.map */
