@font-face {
  font-family: "Dosis";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/Dosis/Dosis-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/Montserrat/Montserrat-VariableFont_wght.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 1rem;
}

body {
  font-size: 1rem;
  font-family: "Dosis", "Montserrat", sans-serif;
  /*  background: radial-gradient(1200px 600px at 30%-10%, #ffffff 0%, #f7efe7 55%, #efe3d9 100%); */
}

.container {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 75rem;
  margin: 0px auto;
}

.header {
  background-image: url("../img/hero.jpeg");
  height: 40rem;
  min-height: 40vw;
  background-position: 25% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.header__heading-main {
  margin-top: 0px;
  padding-top: 3rem;
  padding-bottom: 2rem;
  font-size: 5rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: right;
  line-height: 95%;
  color: #1f2327;
  text-shadow: 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.4);
  animation-name: header__heading-main-font-weight;
  animation-delay: 1s;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}
@media (max-width: 75em) {
  .header__heading-main {
    font-size: 4rem;
  }
}
@media (max-width: 62em) {
  .header__heading-main {
    font-size: 3rem;
  }
}
@media (max-width: 48em) {
  .header__heading-main {
    font-size: 2rem;
  }
}

@keyframes header__heading-main-font-weight {
  0% {
    opacity: 0;
    font-weight: 200;
  }
  100% {
    opacity: 1;
    font-weight: 800;
  }
}
.header__heading-sub {
  font-size: 2rem;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
  color: #1f2327;
  text-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.4);
  animation-name: header__heading-sub-font-weight;
  animation-delay: 3s;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}
@media (max-width: 75em) {
  .header__heading-sub {
    font-size: 1.75rem;
  }
}
@media (max-width: 62em) {
  .header__heading-sub {
    font-size: 1.5rem;
  }
}
@media (max-width: 48em) {
  .header__heading-sub {
    font-size: 1.25rem;
  }
}

@keyframes header__heading-sub-font-weight {
  0% {
    opacity: 0;
    font-weight: 200;
  }
  100% {
    opacity: 1;
    font-weight: 700;
  }
}
.page-navigation {
  padding-top: 1rem;
  background-color: rgba(242, 227, 214, 0.72);
}

.page-navigation__logo {
  height: 5rem;
}

.page-navigation__buttons-list {
  margin-top: 1.5rem;
  margin-bottom: 0px;
  padding-left: 0px;
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
}

.page-navigation__button {
  border: 1px solid #1f2327;
  border-radius: 9999px;
  padding: 0px;
  color: #1f2327;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  height: 2rem;
  margin-left: 0.5rem;
}
.page-navigation__button:hover {
  background-color: rgba(255, 255, 255, 0.6);
}
.page-navigation__button--text {
  line-height: 1.9rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.page-navigation__button--icon {
  line-height: 2.15rem;
  width: 2rem;
  height: 2rem;
}

.page-navigation__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 1rem;
}

.page-navigation__menu-list {
  list-style-type: none;
  padding-left: 0px;
  padding-right: 3rem;
  margin-top: 1.5rem;
  margin-bottom: 0px;
  display: none;
}
@media (min-width: 62em) {
  .page-navigation__menu-list {
    display: flex;
  }
}

.page-navigation__menu-item {
  height: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1.2rem;
  color: #1f2327;
  text-decoration: none;
  line-height: 1.9rem;
  border: 1px solid transparent;
  border-radius: 9999px;
  display: inline-block;
}
.page-navigation__menu-item:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.page-navigation__menus-container {
  flex: 1 0 auto;
  display: flex;
  justify-content: flex-end;
}

.page-navigation::after {
  content: "";
  height: 0.6rem;
  width: 100%;
  display: block;
  background: linear-gradient(90deg, rgb(31, 35, 39) 0%, rgb(187, 183, 178) 25%, rgb(247, 239, 231) 100%);
}

/* Breakpoints */
/* 1200px oder schmaler */
/* 992px oder schmaler */
/* 768px oder schmaler */
/* 576px oder schmaler */

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