@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes moveIn {
  0% {
    translate: 100%;
  }
  100% {
    translate: 0;
  }
}
/******** LANDSCAPE **********/
/******** PORTRAIT **********/
#hamburger {
  position: fixed;
  top: 1rem;
  right: 1rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  #hamburger {
    top: 2rem;
    position: fixed;
    right: 2rem;
    display: none;
  }
}
@media screen and (min-width: 1800px) {
  #hamburger {
    right: 4rem;
  }
}
#hamburger::-webkit-scrollbar {
  display: none;
}
#hamburger.open {
  height: calc(100vh - 1rem);
}

.mobile-menu,
.menu {
  text-transform: uppercase;
}
.mobile-menu > a,
.menu > a {
  transition: all 0.8s ease-in-out;
  padding: 3rem 1rem;
  text-align: center;
  font-family: var(--font-logo);
  font-size: 2rem;
  letter-spacing: 0.15rem;
  white-space: nowrap;
  color: var(--color-secondary);
}
.mobile-menu > a:hover,
.menu > a:hover {
  transition: all 0.2s ease-in-out;
  background-color: var(--color-secondary);
}
.mobile-menu > a:nth-of-type(4n + 1),
.menu > a:nth-of-type(4n + 1) {
  background-color: var(--color-menu-1);
}
.mobile-menu > a:nth-of-type(4n + 2),
.menu > a:nth-of-type(4n + 2) {
  background-color: var(--color-menu-2);
}
.mobile-menu > a:nth-of-type(4n + 3),
.menu > a:nth-of-type(4n + 3) {
  background-color: var(--color-menu-3);
}
.mobile-menu > a:nth-of-type(4n),
.menu > a:nth-of-type(4n) {
  background-color: var(--color-menu-4);
  color: var(--color-menu-4-hover);
}

.icon-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  height: 60px;
  width: 60px;
  border-radius: 50%;
}
@media screen and (min-width: 360px) {
  .icon-wrapper {
    top: 1rem;
  }
}
.icon-wrapper .nav-icon {
  width: 50px;
  height: 40px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.icon-wrapper .nav-icon span {
  background-color: white;
  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: 8px;
  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: 32px;
  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;
  background-color: rgba(0, 0, 0, 0.2901960784);
}
.blocker.open {
  display: block;
}

#toggle-menu {
  overflow-y: auto;
  text-transform: uppercase;
  transition: opacity 0.3s ease-in;
  margin-top: 5rem;
  opacity: 0;
  z-index: -1;
  position: absolute;
  top: 1rem;
  right: 100vw;
}
#toggle-menu.open {
  transition: opacity 0.4s ease-in;
  opacity: 1;
  z-index: 100;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  height: calc(100vh - 5rem);
  right: 2rem;
}
#toggle-menu .mobile-menu > a {
  padding: 1rem 4rem;
  display: block;
  margin-bottom: 0.3rem;
  text-align: center;
  color: white;
}

/************** DESKTOP MENU **************/
.menu {
  display: none;
  writing-mode: vertical-rl;
  text-orientation: upright;
  gap: 0.5rem;
  position: relative;
  top: 2rem;
  left: -2rem;
  z-index: 2;
}
.menu::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .menu {
    display: flex;
  }
}
.menu > a {
  white-space: nowrap;
  border: none !important;
  font-weight: bold;
  letter-spacing: -0.25rem;
  min-height: 17rem;
  font-size: 1.3rem;
}

@font-face {
  font-family: "Regular";
  src: url("../fonts/OpenSans-Regular.ttf");
}
@font-face {
  font-family: "Bold";
  src: url("../fonts/OpenSans-Bold.ttf");
}
@font-face {
  font-family: "Italic";
  src: url("../fonts/BeVietnamPro-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "Black";
  src: url("../fonts/ShadowsIntoLight-Regular.ttf");
}
@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: "Bold-Headlines";
  src: url("../fonts/HankenGrotesk-Bold.woff2") format("woff2");
}
:root {
  --color-text: #030303;
  --color-primary: #E3A869;
  --color-secondary: #8a332c;
  --color-secondary-trans: #f4f7f4eb;
  --color-menu-1: #EA8C2F;
  --color-menu-1-hover: #be8e77;
  --color-menu-2: #CF5B3A;
  --color-menu-2-hover: #36530f;
  --color-menu-3: #A15D2F;
  --color-menu-3-hover: #735b0c;
  --color-menu-4: #2E2518;
  --color-menu-4-hover: #d17803;
  --color-menu-5: #73894f;
  --color-menu-5-hover: #6b883b;
  --font-headlines: "Thin", sans-serif;
  --font-logo: "Black", sans-serif;
  --font-text: "Regular", serif;
  --font-bold: "Bold", serif;
  --font-italic: "Italic", serif;
  --font-thin: "Thin", serif;
  --font-light: "Light", serif;
  --header-height: 6.5rem;
  --header-height-desktop: 7.5rem;
}

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

/************** GENERAL STYLING **************/
html,
body {
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
  background-color: var(--color-secondary-trans);
}
html.block,
body.block {
  height: 100vh;
  overflow: hidden;
}

body {
  font-family: var(--font-text);
  color: var(--color-text);
  animation: fadeIn 1s ease;
  font-size: 1.1rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  body {
    font-size: 1.2rem;
  }
}
body > * {
  hyphens: auto;
}
@media screen and (min-width: 360px) {
  body > * {
    hyphens: none;
  }
}

h1,
h2,
h3 {
  font-family: var(--font-headlines);
  color: var(--color-secondary);
}

h1 {
  font-size: 2.5rem;
  padding-bottom: 2rem;
  text-align: right;
  text-transform: uppercase;
}
@media screen and (min-width: 360px) {
  h1 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 576px) {
  h1 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  h1 {
    font-size: 4rem;
  }
}

h2 {
  letter-spacing: 1px;
  line-height: 1.5;
  padding-bottom: 1rem;
}

li {
  list-style: none;
  position: relative;
  padding: 6px 0 0 40px;
}
li::before {
  content: "";
  position: absolute;
  background-image: url("../img/check-mark.png");
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
}

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

@media screen and (min-width: 1024px) and (orientation: landscape) {
  img {
    width: 100%;
  }
}

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

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

p {
  padding-bottom: 1rem;
}

/************** HEADER **************/
header {
  background-color: var(--color-primary);
  position: fixed;
  z-index: 3;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header {
    margin: 4rem;
    top: 10rem;
  }
}
@media screen and (min-width: 1920px) {
  header {
    margin: 6rem;
  }
}
header .logo {
  cursor: pointer;
  padding: 1rem;
  color: var(--color-secondary);
  width: 100vw;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header .logo {
    padding: 1rem 2rem;
    width: auto;
  }
}
header .logo .title {
  font-family: var(--font-logo);
  font-size: 2rem;
}
@media screen and (min-width: 360px) {
  header .logo .title {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header .logo .title {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  header .logo .title {
    font-size: 4rem;
  }
}
header .logo .subtitle {
  margin-top: -0.5rem;
  font-size: 1rem;
  font-family: var(--font-light);
  text-transform: uppercase;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header .logo .subtitle {
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  header .logo .subtitle {
    margin-top: -1rem;
  }
}
@media screen and (min-width: 1400px) {
  header .logo .subtitle {
    font-size: 1.5rem;
  }
}
header .logo .subtitle span {
  padding-right: 0.5rem;
}
header .logo .image {
  position: absolute;
  right: 1rem;
  top: 4rem;
}
@media screen and (min-width: 360px) {
  header .logo .image {
    right: 5rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header .logo .image {
    position: relative;
    right: 0;
    top: 0;
  }
}
header .logo img {
  width: auto;
  z-index: 10;
  height: 5rem;
  margin-bottom: -3rem;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header .logo img {
    height: 9rem;
    margin-left: 5rem;
    margin-bottom: -5rem;
    height: 7rem;
  }
}
@media screen and (min-width: 1400px) {
  header .logo img {
    height: 12rem;
  }
}

/************** CONTENT **************/
main {
  height: 100vh;
  overflow: scroll;
  padding: 10rem 0.5rem 80vh;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  main {
    padding: 10rem 10vw 80vh 30vw;
    display: grid;
    grid-template-columns: auto 4rem;
  }
}
@media screen and (min-width: 1400px) {
  main {
    padding: 10rem 15vw 80vh 20vw;
  }
}
@media screen and (min-width: 1600px) {
  main {
    padding: 10rem 20vw 80vh;
  }
}
main .content {
  background-color: var(--color-secondary-trans);
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  main .content {
    padding-top: 2rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  main .content {
    padding: 2rem 8rem;
  }
}
@media screen and (min-width: 1400px) {
  main .content {
    padding: 4rem 8rem 4rem 12rem;
  }
}
@media screen and (min-width: 1800px) {
  main .content {
    padding: 4rem 8rem;
  }
}
main .content a {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transition: all 0.6s ease-in;
}
main .content a[href="/mediation"] {
  background-color: var(--color-menu-2);
  color: black;
  font-family: var(--font-logo);
  padding: 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  margin: 0 0.5rem;
  border-bottom: none;
}
main .content a[href="/mediation"]:hover {
  border-bottom: none;
}
main .content a[href="/coaching"] {
  background-color: var(--color-menu-1);
  font-family: var(--font-logo);
  color: var(--color-secondary);
  padding: 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  margin: 0 0.5rem;
  border-bottom: none;
}
main .content a[href="/coaching"]:hover {
  border-bottom: none;
}
main .content a:hover {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  transition: all 0.3s ease-in;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  main .title-image {
    height: 50vh;
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  main .title-image {
    height: 30vh;
  }
}
@media screen and (min-width: 1400px) {
  main .title-image {
    height: 50vh;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  main .title-image {
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
  }
}
@media screen and (min-width: 1200px) {
  main .title-image {
    background-attachment: fixed;
  }
}
main .title-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin-bottom: -1rem;
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  main .title-image img {
    object-fit: cover;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  main .title-image img {
    display: none;
  }
}
main .slogan {
  line-height: 2.5rem;
  text-transform: none;
}
@media screen and (min-width: 576px) {
  main .slogan {
    line-height: 3.9rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  main .slogan {
    padding: 10rem 0;
  }
}
main .text {
  padding: 2rem;
}

.page-template-home .content {
  padding-top: 0;
  font-size: 1.4rem;
}
.page-template-home .title-image {
  background-attachment: initial;
  height: 80vh;
}

/************** CONTACT **************/
.page-template-contact .content {
  background-color: var(--color-secondary-trans);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

form {
  max-width: 500px;
}
form > div {
  padding-top: 1rem;
}
form label {
  display: block;
}
form input,
form textarea {
  width: 100%;
  border: none;
  padding: 1rem;
}
form input:focus,
form textarea:focus {
  outline: none !important;
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 5px var(--color-primary);
}
form input::placeholder,
form textarea::placeholder {
  opacity: 0.6;
  color: var(--color-primary);
}
form textarea {
  height: 120px;
}
form #submit-btn {
  width: 10rem;
  margin-top: 2rem;
  letter-spacing: 0.03em;
  padding: 1rem;
  color: var(--color-secondary);
  background-color: var(--color-primary);
  font-family: var(--font-headlines);
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  form #submit-btn {
    margin: 2rem -18px 0 0;
  }
}

.uniform__potty {
  position: absolute;
  left: -9999px;
}

#privacy-hint {
  font-family: var(--font-family-headlines);
  text-align: end;
  font-size: 0.9em;
}
#privacy-hint a {
  border-bottom: var(--color-text) solid 2px;
}

.alert.error {
  color: var(--color-alert);
}

/************** FOOTER **************/
footer {
  display: flex;
  padding: 1rem;
  justify-content: center;
  gap: 1rem;
  font-size: 1.1rem;
  position: absolute;
  bottom: 0;
  width: 100vw;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  footer {
    padding: 1rem 2rem;
    gap: 2rem;
  }
}
footer a {
  color: white;
  text-transform: uppercase;
  background-color: var(--color-secondary);
  padding: 0 0.5rem;
  font-family: var(--font-light);
}
footer a:hover {
  color: white;
}

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