@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeBackground {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/******** LANDSCAPE **********/
/******** PORTRAIT **********/
#hamburger.open {
  overflow-y: scroll;
  position: absolute;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
#hamburger.open::-webkit-scrollbar {
  display: none;
}

.icon-wrapper {
  position: absolute;
  cursor: pointer;
  z-index: 5;
  border-radius: 50%;
  right: 1rem;
  top: 1rem;
  height: 75px;
  width: 75px;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .icon-wrapper {
    height: 90px;
    width: 90px;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .icon-wrapper {
    height: 90px;
    width: 90px;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .icon-wrapper {
    position: fixed;
    right: 2rem;
    top: 2rem;
  }
}
.icon-wrapper .nav-icon {
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-block;
  background-image: url("/assets/img/icons/burger.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-wrapper .nav-icon span {
  position: absolute;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition-duration: 500ms;
  width: 160%;
  z-index: 1;
  left: -20px;
}
.icon-wrapper .nav-icon span:nth-child(1) {
  top: 0;
}
.icon-wrapper .nav-icon span:nth-child(2) {
  top: 10px;
  opacity: 1;
}
.icon-wrapper .nav-icon span:nth-child(3) {
  top: 20px;
}
.icon-wrapper .nav-icon.open {
  background-image: url("/assets/img/icons/burger_close.svg");
  opacity: 0;
  animation: fadeBackground 1s;
  animation-fill-mode: forwards;
}
.icon-wrapper .nav-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.icon-wrapper .nav-icon.open span:nth-child(2) {
  opacity: 0;
}
.icon-wrapper .nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}
.icon-wrapper .nav-icon:not(.open):hover span:nth-child(1) {
  transform: translateY(-4px);
}
.icon-wrapper .nav-icon:not(.open):hover span:nth-child(3) {
  transform: translateY(4px);
}

.blocker {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: " ";
  background-color: rgba(0, 0, 0, 0.154);
  z-index: 2;
  opacity: 0.4;
}
.blocker.open {
  display: block;
}

#toggle-menu {
  position: absolute;
  right: -100vw;
  top: 0rem;
  display: flex;
  flex-direction: column;
  padding-bottom: 6rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #toggle-menu {
    flex-direction: column;
    justify-content: start;
  }
}
#toggle-menu .mobile-menu {
  padding-top: 6rem;
  min-width: 270px;
}
#toggle-menu a:hover {
  color: var(--color-text);
}
#toggle-menu .neuland-card {
  margin-bottom: 5px;
  -webkit-clip-path: polygon(0 0, 0 100%, 92% 100%, 100% 0);
  clip-path: polygon(0 0, 0 100%, 92% 100%, 100% 0);
}
#toggle-menu .neuland-card.submenu-item {
  min-height: unset;
  font-size: 1.1rem;
  max-width: 263px;
}
#toggle-menu .neuland-card.submenu-item:last-of-type {
  margin-bottom: 2rem;
}
#toggle-menu.open {
  transition: all 0.3s ease-in;
  right: 2rem;
  z-index: 3;
}
#toggle-menu.open::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  #toggle-menu.open {
    top: 4rem;
    overflow: unset;
  }
  #toggle-menu.open > div {
    min-width: 10vw;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #toggle-menu.open {
    top: 4rem;
    overflow: unset;
  }
  #toggle-menu.open > div {
    min-width: 10vw;
  }
}
#toggle-menu .legal-menu {
  margin: 2rem 5rem 0 0;
  display: block;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  #toggle-menu .legal-menu {
    margin-right: 10rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #toggle-menu .legal-menu {
    margin-right: 10rem;
  }
}
#toggle-menu .legal-menu .neuland-card {
  min-height: unset;
  font-size: 1.1rem;
  -webkit-clip-path: polygon(0 0, 0 100%, 92% 100%, 100% 0);
  clip-path: polygon(0 0, 0 100%, 92% 100%, 100% 0);
}

/************** DESKTOP MENU **************/
.menu {
  display: none;
}
.menu div[active] {
  background-color: var(--color-orange);
}
.menu a {
  font-weight: bold;
  display: block;
}
.menu a:hover {
  color: var(--color-text);
}
.menu summary {
  font-weight: bold;
  display: block;
}
.menu .submenu-item.neuland-card {
  hyphens: auto;
  -webkit-clip-path: polygon(0 0, 0 100%, 92% 100%, 100% 0);
  clip-path: polygon(0 0, 0 100%, 92% 100%, 100% 0);
}
.menu .submenu-item.neuland-card a {
  transform: translateY(-50%);
  position: relative;
}

.legal-menu {
  display: none;
}
@media screen and (min-width: 1200px) {
  .legal-menu {
    display: block;
  }
}
.legal-menu a:hover {
  color: var(--color-text);
}

@font-face {
  font-family: "Regular";
  src: url("../fonts/WorkSans-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Medium";
  src: url("../fonts/WorkSans-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Bold";
  src: url("../fonts/WorkSans-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Light";
  src: url("../fonts/WorkSans-Light.woff2") format("woff2");
}
:root {
  --color-text: #3b3434;
  --color-gray: #3b3434ab;
  --color-bg: #d1d5e0;
  --color-yellow: #f4e460;
  --color-orange: #df772f;
  --color-orange-dark: #b55007;
  --color-pink: #d7007e;
  --color-light-yellow: #f2f6a0;
  --color-green: #64bbbb;
  --color-blue: #89a8de;
  --font-headlines: "Medium", serif;
  --font-text: "Regular", serif;
  --font-bold: "Bold", serif;
  --font-light: "Light", serif;
}

* {
  margin: 0;
  padding: 0;
}

/************** GENERAL STYLING **************/
html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
}

body {
  font-family: var(--font-text);
  color: var(--color-text);
  background-color: var(--color-bg);
  font-size: 1.3rem;
  background: linear-gradient(50deg, var(--color-pink) -300%, var(--color-bg) 80%);
}
body.block {
  height: 100vh;
  overflow: hidden;
}

.page-template-home {
  animation: fadeIn 1.5s ease;
}

.page-template-home .profile-img,
.ueber-mich .profile-img {
  display: none;
  height: 19rem;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-clip-path: polygon(0 0, 0 100%, 87% 100%, 100% 50%, 87% 0%);
  clip-path: polygon(0 0, 0 100%, 87% 100%, 100% 50%, 87% 0%);
  background-image: url("/assets/img/profile.jpg");
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-home .profile-img,
  .ueber-mich .profile-img {
    display: block;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-home .content img,
  .page-template-home .content figcaption,
  .ueber-mich .content img,
  .ueber-mich .content figcaption {
    display: none;
  }
}

h1,
h2,
h3 {
  font-family: var(--font-headlines);
  padding-top: 2rem;
}

h1,
h2 {
  font-size: 1.5rem;
  line-height: 1.2;
}
@media screen and (min-width: 576px) {
  h1,
  h2 {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1200px) {
  h1,
  h2 {
    font-size: 2rem;
  }
}

ul {
  padding-top: 1rem;
}
ul li {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}
ul li::before {
  content: "";
  background-color: var(--color-text);
  float: left;
  -webkit-clip-path: polygon(0 0, 0 100%, 80% 100%, 100% 50%, 80% 0%);
  clip-path: polygon(0 0, 0 100%, 80% 100%, 100% 50%, 80% 0%);
  margin-right: 0.5rem;
  width: 12px;
  height: 7px;
  margin-top: 11px;
}
ul li > p {
  padding-top: 0 !important;
}

a {
  text-decoration: none;
  color: var(--color-text);
}
a:hover {
  color: var(--color-orange-dark);
}

img {
  width: 100%;
}

summary {
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}

.neuland-card {
  -webkit-clip-path: polygon(0 0, 0 100%, 87% 100%, 100% 0);
  clip-path: polygon(0 0, 0 100%, 87% 100%, 100% 0);
  padding: 1rem 2rem 0.5rem 1rem;
  min-height: 3rem;
  margin-bottom: 1px;
  display: flex;
  align-items: flex-end;
}
@media screen and (min-width: 1200px) {
  .neuland-card {
    padding: 1rem 2rem 1rem 0.5rem;
  }
}
@media screen and (min-width: 1400px) {
  .neuland-card {
    padding: 1rem 2rem 1rem 1rem;
  }
}
.neuland-card > div {
  top: 50%;
  transform: translateY(-50%);
}
.neuland-card.orange {
  background-color: var(--color-orange);
  transition: background-color 1s ease-in-out;
}
.neuland-card.orange:hover {
  background-color: var(--color-yellow);
  transition: unset;
}
.neuland-card.yellow {
  background-color: var(--color-yellow);
  transition: background-color 1s ease-in-out;
}
.neuland-card.yellow:hover {
  background-color: var(--color-light-yellow);
  transition: unset;
}
.neuland-card.green {
  background-color: var(--color-green);
  transition: background-color 1s ease-in-out;
}
.neuland-card.green:hover {
  background-color: var(--color-blue);
  transition: unset;
}
.neuland-card.blue {
  background-color: var(--color-blue);
  transition: background-color 1s ease-in-out;
}
.neuland-card.blue:hover {
  background-color: var(--color-green);
  transition: unset;
}
.neuland-card.white {
  background-color: white;
  transition: background-color 1s ease-in-out;
}
.neuland-card.white:hover {
  background-color: var(--color-light-yellow);
  transition: unset;
}
.neuland-card[active] {
  background-color: var(--color-orange);
}
.neuland-card a {
  width: 100%;
}

/************** HEADER **************/
header {
  position: fixed;
  height: 4.5rem;
  width: 100vw;
  z-index: 2;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header .logo {
    display: none;
  }
}

.logo {
  font-family: var(--font-headlines);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  background-color: var(--color-text);
  color: white;
  font-size: 2rem;
  padding-left: 2rem;
  transition: all 0.7s ease-in-out;
  padding: 1rem 1rem 0.5rem;
  min-height: 5rem;
  margin-bottom: 1px;
  z-index: 2;
}
@media screen and (min-width: 576px) {
  .logo {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .logo {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .logo {
    font-size: 2rem;
    padding: 2rem;
    width: 13rem;
    -webkit-clip-path: polygon(0 0, 0 100%, 87% 100%, 100% 0);
    clip-path: polygon(0 0, 0 100%, 87% 100%, 100% 0);
  }
}
.logo .subtitle {
  font-size: 1.1rem;
  max-width: 100%;
  hyphens: manual;
  font-family: var(--font-light);
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .logo .subtitle {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .logo .subtitle {
    font-size: 1.5rem;
    line-height: unset;
    padding-top: 1rem;
  }
}
.logo span {
  color: var(--color-orange);
  font-size: 3rem;
  bottom: 0;
  position: relative;
  left: 0.1rem;
}
@media screen and (min-width: 576px) {
  .logo span {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .logo span {
    bottom: 0;
    left: 0.2rem;
  }
}
.logo:hover {
  color: white;
  background-color: var(--color-gray);
  transition: all 0.3s ease-in-out;
}

#btt-button {
  opacity: 0;
  position: fixed;
  bottom: 3rem;
  right: 0;
  z-index: 5;
  cursor: pointer;
  padding: 15px;
  transition: all 0.2s ease-in-out;
}
#btt-button:hover {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}
#btt-button img {
  height: 5rem;
  object-fit: contain;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #btt-button img {
    height: 7rem;
  }
}
@media screen and (min-width: 1200px) {
  #btt-button {
    right: 30px;
  }
}

/************** CONTENT **************/
.mask {
  height: 5rem;
  top: 5rem;
  width: 100%;
  position: fixed;
  z-index: 1;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .mask {
    top: 0;
    height: 6rem;
  }
}

.background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(50deg, var(--color-pink) -300%, var(--color-bg) 80%);
  z-index: -1;
}

main {
  padding-top: 3rem;
  position: relative;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  main {
    display: grid;
    grid-template-columns: 25% 50%;
    gap: 5%;
    hyphens: none;
    padding-top: 5rem;
  }
}
@media screen and (min-width: 1200px) {
  main {
    gap: 5%;
  }
}
@media screen and (min-width: 1800px) {
  main {
    grid-template-columns: 20% 40%;
  }
}
main::-webkit-scrollbar {
  display: none;
}
main .sidebar {
  display: none;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  main .sidebar {
    display: flex;
    justify-content: end;
    height: 96vh;
    padding: 0 0 0 2rem;
  }
}
main .sidebar > div:first-child {
  position: fixed;
}

.content {
  padding: 6rem 1rem 10rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .content {
    padding: 0 1rem 15rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .content {
    padding: 4.7rem 1rem 30rem;
  }
}
.content > :first-child {
  padding-top: 0;
}
.content p {
  padding-top: 0.5rem;
}
.content a {
  transition: all 1s ease-in-out;
  color: var(--color-orange);
  font-family: var(--font-headlines);
}
.content a:hover {
  transition: all 0.2s ease-in-out;
  color: var(--color-orange-dark);
}

.ueber-mich .content img {
  padding: 2rem 0;
  max-width: 300px;
  -webkit-clip-path: polygon(0 0, 0 100%, 87% 100%, 100% 50%, 87% 0%);
  clip-path: polygon(0 0, 0 100%, 87% 100%, 100% 50%, 87% 0%);
}

.background-text {
  font-size: 13vw;
  line-height: 0.8;
  opacity: 0.3;
  color: white;
  font-family: var(--font-medium);
  z-index: -1;
  position: fixed;
  bottom: -6rem;
  left: 0;
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .background-text {
    left: 6rem;
  }
}

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