@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/******** LANDSCAPE **********/
/******** PORTRAIT **********/
#hamburger {
  position: fixed;
  top: 1rem;
  right: 1rem;
  height: 60px;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #hamburger {
    top: 2rem;
    position: fixed;
    right: 2rem;
  }
}
@media screen and (min-width: 2000px) {
  #hamburger {
    right: 4rem;
  }
}
#hamburger.open {
  z-index: 1020;
}

.mobile-menu,
.menu {
  text-transform: uppercase;
}
.mobile-menu > a,
.menu > a {
  transition: background-color 2s ease-in-out;
  color: var(--color-text);
  padding: 1rem;
}
.mobile-menu > a:hover,
.menu > a:hover {
  transition: all 0.5s ease-in-out;
}
.mobile-menu > a:nth-of-type(6n + 1),
.menu > a:nth-of-type(6n + 1) {
  background-color: var(--color-menu-1);
}
.mobile-menu > a:nth-of-type(6n + 1):hover,
.menu > a:nth-of-type(6n + 1):hover {
  background-color: var(--color-menu-1-hover);
}
.mobile-menu > a:nth-of-type(6n + 2),
.menu > a:nth-of-type(6n + 2) {
  background-color: var(--color-menu-2);
}
.mobile-menu > a:nth-of-type(6n + 2):hover,
.menu > a:nth-of-type(6n + 2):hover {
  background-color: var(--color-menu-2-hover);
}
.mobile-menu > a:nth-of-type(6n + 3),
.menu > a:nth-of-type(6n + 3) {
  background-color: var(--color-menu-3);
}
.mobile-menu > a:nth-of-type(6n + 3):hover,
.menu > a:nth-of-type(6n + 3):hover {
  background-color: var(--color-menu-3-hover);
}
.mobile-menu > a:nth-of-type(6n + 4),
.menu > a:nth-of-type(6n + 4) {
  background-color: var(--color-menu-4);
}
.mobile-menu > a:nth-of-type(6n + 4):hover,
.menu > a:nth-of-type(6n + 4):hover {
  background-color: var(--color-menu-4-hover);
}
.mobile-menu > a:nth-of-type(6n + 5),
.menu > a:nth-of-type(6n + 5) {
  background-color: var(--color-menu-5);
}
.mobile-menu > a:nth-of-type(6n + 5):hover,
.menu > a:nth-of-type(6n + 5):hover {
  background-color: var(--color-menu-5-hover);
}
.mobile-menu > a:nth-of-type(6n + 6),
.menu > a:nth-of-type(6n + 6) {
  background-color: var(--color-menu-6);
}
.mobile-menu > a:nth-of-type(6n + 6):hover,
.menu > a:nth-of-type(6n + 6):hover {
  background-color: var(--color-menu-6-hover);
}

.icon-wrapper {
  position: absolute;
  top: 1rem;
  right: 0;
  z-index: 2;
  height: 60px;
  width: 60px;
  border-radius: 50%;
}
.icon-wrapper .nav-icon {
  width: 50px;
  height: 40px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.icon-wrapper .nav-icon span {
  background-color: var(--color-text);
  position: absolute;
  border-radius: 3px;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 4px;
  transition-duration: 500ms;
}
.icon-wrapper .nav-icon span:nth-child(1) {
  top: 10px;
  left: 0px;
}
.icon-wrapper .nav-icon span:nth-child(2) {
  top: 20px;
  left: 0px;
  opacity: 1;
}
.icon-wrapper .nav-icon span:nth-child(3) {
  top: 30px;
  left: 0px;
}
.icon-wrapper .nav-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 20px;
}
.icon-wrapper .nav-icon.open span:nth-child(2) {
  opacity: 0;
}
.icon-wrapper .nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 20px;
}
.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;
}
.blocker.open {
  display: block;
}

#toggle-menu {
  overflow-y: auto;
  text-transform: uppercase;
  transform: translate(20em);
  transition: 0.3s ease-in;
}
#toggle-menu.open {
  transform: translate(0);
  transition: 0.3s ease-in;
  top: 0;
  right: 0;
}
#toggle-menu .mobile-menu > a {
  padding: 1rem 4rem;
  display: block;
  margin-bottom: 0.3rem;
  text-align: center;
}
#toggle-menu .mobile-menu > a:nth-child(1) {
  padding-top: 5rem;
}

/************** DESKTOP MENU **************/
.menu {
  display: none;
  writing-mode: vertical-rl;
  text-orientation: upright;
  gap: 0.5rem;
  position: fixed;
  top: 0;
  overflow: scroll;
  height: 100vh;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  z-index: 2;
}
.menu::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .menu {
    padding: 0 10rem 0 2rem;
    display: flex;
  }
}
@media screen and (min-width: 2000px) {
  .menu {
    padding: 0 10rem 0 4rem;
  }
}
.menu > a {
  font-size: 1rem;
  letter-spacing: -0.15rem;
  white-space: nowrap;
}
.menu > a:first-of-type {
  margin-top: 9rem;
}
.menu > a:nth-of-type(3) {
  height: 12rem;
}
.menu > a:last-of-type {
  margin-bottom: 2rem;
}

/************** LANGUAGE SWITCHER **************/
.languages .active {
  display: none;
}

@font-face {
  font-family: "Regular";
  src: url("../fonts/HankenGrotesk-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Medium";
  src: url("../fonts/HankenGrotesk-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Bold";
  src: url("../fonts/HankenGrotesk-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Italic";
  src: url("../fonts/HankenGrotesk-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "Thin";
  src: url("../fonts/HankenGrotesk-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "Light";
  src: url("../fonts/HankenGrotesk-Light.woff2") format("woff2");
}
@font-face {
  font-family: "ExtraLight";
  src: url("../fonts/HankenGrotesk-ExtraLight.woff2") format("woff2");
}
:root {
  --color-text: #136b81;
  --white: #f2f1ee;
  --color-rose: #bb7a76;
  --color-cherry: #674254;
  --color-menu-1: #eededd;
  --color-menu-1-hover: #ebc6c4;
  --color-menu-2: #e8dfe6;
  --color-menu-2-hover: #ecc1e2;
  --color-menu-3: #f9e1d0;
  --color-menu-3-hover: #f3ccb2;
  --color-menu-4: #d8e3ef;
  --color-menu-4-hover: #b9d6f2;
  --color-menu-5: #e8dadd;
  --color-menu-5-hover: #e9aebc;
  --color-menu-6: #e3dfdc;
  --color-menu-6-hover: #e0c7b2;
  --font-h1: "ExtraLight", serif;
  --font-h3: "LIght", serif;
  --font-text: "Medium", serif;
  --font-bold: "Bold", serif;
  --font-italic: "Italic", serif;
}

* {
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-text);
  color: var(--color-text);
  animation: fadeIn 1.5s ease;
  background-color: var(--white);
  font-size: 1.2rem;
  min-height: 100vh;
}
body.block {
  height: 100%;
  overflow: hidden;
}
body > * {
  hyphens: auto;
}
@media screen and (min-width: 360px) {
  body > * {
    hyphens: none;
  }
}

h1 {
  font-size: 2.5rem;
  font-family: var(--font-h1);
}
@media screen and (min-width: 576px) {
  h1 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 4rem;
  }
}

h2 {
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--color-rose);
  font-family: "ExtraLight", serif;
  padding-bottom: 2rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-family: var(--font-h3);
  padding-bottom: 1rem;
  font-size: 2rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  h3 {
    font-size: 2.5rem;
  }
}

h4 {
  color: var(--color-rose);
  font-family: "Thin", serif;
  text-transform: uppercase;
  padding: 2rem 0 0;
  font-size: 1.8rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  h4 {
    padding: 4rem 0 1rem;
    font-size: 2rem;
  }
}

li {
  list-style: none;
}
li p {
  padding-bottom: 0.2rem;
}

a {
  text-decoration: none;
  color: var(--color-rose);
}
a:hover {
  color: var(--color-cherry);
}

strong {
  font-family: var(--font-bold);
  font-weight: normal;
}

p {
  padding-bottom: 2rem;
}

img {
  width: 100%;
}
img.portrait {
  max-width: 600px;
}

figure {
  margin: 0 -1rem 1rem;
  text-align: center;
}
@media screen and (min-width: 360px) {
  figure {
    margin: 0 -2rem 1rem;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  figure {
    margin: 0 -4rem 1rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  figure {
    margin: 0 0 1rem;
    text-align: left;
  }
}
@media screen and (min-width: 1400px) {
  figure {
    margin: 0 0 2rem;
  }
}

#btt-button {
  opacity: 0;
  position: fixed;
  z-index: 20;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-size: 2rem;
  bottom: 10rem;
  right: 5rem;
}
#btt-button::before {
  content: "->";
  position: absolute;
  transform: rotate(-90deg);
  background-color: var(--color-menu-1-hover);
  border-radius: 50%;
  padding: 0.75rem 0.5rem 0.5rem 0.5rem;
  height: 50px;
  width: 50px;
  text-align: center;
  margin: auto;
  color: var(--white);
  font-family: var(--font-bold);
  font-weight: bolder;
  opacity: 0.7;
}
#btt-button:hover {
  transform: scale(1.05);
  transition: all 0.5s ease-in-out;
}
#btt-button:hover::before {
  transition: all 0.5s ease-in-out;
  opacity: 1;
}
@media screen and (min-width: 1200px) {
  #btt-button {
    right: 6rem;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .doctolib {
    position: fixed;
    right: 0;
    bottom: 11rem;
    right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .doctolib {
    right: 2rem;
  }
}
.doctolib > div {
  margin: auto;
}
@media screen and (min-width: 576px) {
  .doctolib > div {
    margin: unset;
  }
}

/************** HEADER **************/
header {
  text-align: center;
  font-size: 1.3rem;
  padding-top: 6rem;
  position: relative;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header {
    padding-top: 3rem;
  }
}
header .logo a {
  color: var(--color-text);
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header .logo {
    padding: 0 8rem 0 10rem;
  }
}
@media screen and (min-width: 576px) {
  header ul {
    display: flex;
    justify-content: center;
    padding: 0 2rem;
  }
}
header ul li {
  text-transform: uppercase;
  color: var(--color-rose);
  font-size: 0.9rem;
  font-family: "Light", serif;
  align-self: center;
}
@media screen and (min-width: 576px) {
  header ul li {
    padding-left: 0.7rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header ul li {
    font-size: 1.3rem;
  }
}
header ul li p {
  padding-bottom: 0;
}
@media screen and (min-width: 576px) {
  header ul li p {
    padding-bottom: 1rem;
  }
}
header ul li:last-of-type {
  padding-bottom: 1rem;
}
@media screen and (min-width: 576px) {
  header ul li:last-of-type {
    padding-bottom: 0;
  }
}
header h1 {
  font-size: 2.5rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header h1 {
    font-size: 4rem;
    margin-top: -1rem;
    font-size: 5rem;
  }
}
header h2 {
  font-family: "Thin", serif;
  color: var(--color-rose) !important;
  font-size: 2rem;
  padding-bottom: 0;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header h2 {
    font-size: 4rem;
  }
}
header p {
  padding-bottom: 1rem;
}

/************** CONTENT **************/
main {
  font-size: 1.3rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  main {
    font-size: 1.5rem;
  }
}
main .content {
  max-width: 1200px;
  padding: 0 1rem;
  margin: auto;
}
@media screen and (min-width: 360px) {
  main .content {
    padding: 0 2rem;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  main .content {
    padding: 0 4rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  main .content {
    padding: 0 8rem 0 10rem;
  }
}
main .content section {
  padding-bottom: 2rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  main .content section {
    padding-bottom: 4rem;
  }
}
main .content section:not(:last-of-type):after {
  background-image: url("/assets/img/border.png");
  width: 100%;
  height: 30px;
  content: "";
  display: block;
  margin-top: 2rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  main .content section:not(:last-of-type):after {
    margin-top: 4rem;
  }
}
main .content section ul {
  padding-bottom: 2rem;
}
main .content section li {
  padding-left: 1.5rem;
}
main .content section li:before {
  content: "//";
  position: absolute;
  margin-left: -1.5rem;
  color: var(--color-rose);
}
main .content section li strong {
  color: var(--color-rose);
}
main .content #home p {
  display: inline;
  font-size: 1.5rem;
  font-family: "Light", serif;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  main .content #home p {
    font-size: 2.5rem;
  }
}
main .content #home p:nth-of-type(2) {
  color: var(--color-rose);
}
main .content #philosophie h2 {
  padding-bottom: 0;
}
main .content #praxis strong,
main .content #kontakt strong {
  color: var(--color-cherry);
  font-family: "Light", serif;
  padding-right: 0.5rem;
}

.page-template-legal header {
  height: 15rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-legal .content#impressum {
    min-height: calc(100vh - 23rem);
  }
}
.page-template-legal .content h1,
.page-template-legal .content h2,
.page-template-legal .content h3,
.page-template-legal .content h4 {
  padding: inherit;
  padding-left: 0;
  hyphens: auto;
}
@media screen and (min-width: 576px) {
  .page-template-legal .content h1,
  .page-template-legal .content h2,
  .page-template-legal .content h3,
  .page-template-legal .content h4 {
    hyphens: none;
  }
}
.page-template-legal .content h1 {
  font-family: var(--font-bold);
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .page-template-legal .content h1 {
    font-size: 2rem;
  }
}
.page-template-legal .content strong {
  color: var(--color-cherry);
  font-family: "Light", serif;
}

/************** FOOTER **************/
footer {
  background-color: var(--color-rose);
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: end;
  height: 5rem;
  text-transform: uppercase;
  position: absolute;
  width: 100vw;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  footer {
    position: absolute;
    width: 100vw;
    bottom: 0;
    left: 0;
  }
}
footer > div {
  align-self: center;
  padding-top: 0;
}
footer a {
  color: var(--white);
}

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