:root {
  --title-font: "Raleway", sans-serif;
  --body-font: "Quicksand", sans-serif;
  --header-font: "Alethia", serif;
  --color-white: #EEECE9;
  --color-black: #080614;
  --color-dark-green: #153417;
  --color-light-green: #485C17;
  --color-brown: #624527;
}

@font-face {
  font-family: "Alethia";
  src: url("/static/fonts/Alethia Pro Regular.otf");
}
html,
body {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: var(--color-white);
  margin: auto;
  color: var(--color-dark-green);
}

main {
  flex-grow: 1;
}

header,
main,
footer {
  flex-shrink: 0;
  padding: 0 min(2rem, 3vw);
}

body p,
body li,
body a {
  font-family: var(--body-font);
}

h1,
h1 a,
h2,
h3,
h3 a,
h4 {
  font-family: var(--title-font);
}

h3,
h3 a,
h3 a:visited {
  color: var(--color-dark-green);
  font-weight: 400;
}

p,
li {
  color: var(--color-dark-green);
  font-weight: 300;
}

strong {
  font-weight: 500;
}

/* HEADER */
header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  padding: min(50px, 3vh) 0 0 0;
  z-index: 10;
}

header h1 a:hover {
  text-decoration: none;
}

nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}
nav * {
  font-size: 14px;
  font-family: var(--title-font) !important;
}

header .nav-link {
  color: var(--color-dark-green);
}

.nav-link.is-active {
  text-decoration: underline;
}

nav ul {
  width: 100%;
  justify-content: space-between;
}

header li + li,
footer li + li {
  margin-left: 1rem;
}

.header-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-title.small-header h1 {
  font-size: min(4rem, 5vw);
}
.header-title h1 {
  margin: 0;
  font-size: min(7rem, 9vw);
  font-weight: 500;
  font-family: var(--header-font);
}
.header-title h1 a {
  font-family: var(--header-font);
  color: var(--color-dark-green);
}

.mobile {
  display: none !important;
}

@media (max-width: 800px) {
  .mobile {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
  header {
    width: 100%;
  }
  nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .mobile-nav-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s;
  }
  .mobile-nav-container ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  nav .open .mobile-nav-container {
    opacity: 1;
    z-index: 2;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(3px);
  }
  .mobile-nav-container ul {
    flex-direction: column;
    font-size: 24px;
  }
  .mobile-nav-container ul li.right-nav-link {
    align-self: flex-end;
  }
  .mobile-nav-container ul li.right-nav-link a {
    color: var(--color-dark-green);
  }
  .mobile-nav-container ul li.right-nav-link + li.right-nav-link {
    margin-top: 1rem;
  }
  .mobile-nav-container ul li a {
    font-size: 18px;
  }
  .mobile-nav-container ul li + li {
    margin: 0;
    margin-top: 2rem;
  }
  .menu-button {
    z-index: 3;
    position: relative;
    cursor: pointer;
    display: grid;
    margin-right: 1rem;
  }
  .menu-button svg {
    fill: var(--color-dark-green);
  }
  nav {
    margin-top: 0;
  }
  nav .open .menu-button .open-menu {
    display: none;
  }
  nav :not(.open) .menu-button .close-menu {
    display: none;
  }
  nav a:visited {
    color: var(--color-dark-green);
  }
  header {
    flex-direction: row;
    align-items: center;
  }
  header h1 {
    z-index: 3;
  }
  .header-title {
    order: 2;
  }
}
/* FOOTER */
footer {
  padding-top: 1rem;
  padding-bottom: 1rem;
  z-index: 1;
}
footer nav {
  margin-top: 0;
}
footer nav.right {
  align-items: flex-end;
}
footer nav.left {
  align-items: flex-start;
}
footer a {
  color: var(--color-dark-green);
}

footer ul {
  justify-content: flex-start;
}

/* COMMON */
a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}

ul.vertical-list {
  flex-direction: column;
}

.faded {
  color: var(--color-grey);
}

.full-width, .background-image-block {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.background-image-block {
  min-height: 50rem;
  background-size: cover;
}

.footer-block {
  background-image: url("/static/img/home/footer.jpg");
  background-position: center;
  margin-bottom: -70px;
}

.intro {
  text-align: center;
  margin-top: min(15rem, 30vh);
}
.intro h3 {
  font-weight: 100;
  font-size: 32px;
  color: var(--color-light-green);
}
.intro p {
  font-size: 20px;
  max-width: 40rem;
  margin: auto;
  color: var(--color-light-green);
}

.option {
  flex-direction: column;
  align-items: center;
  margin-top: 10rem;
  padding-top: 5rem;
}
.option:not(.mobile) {
  display: flex;
}
.option .image {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
}
.option .image img {
  object-fit: cover;
  max-width: 100vw;
}
.option .title {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 300;
  color: var(--color-light-green);
  font-size: 20px;
}
.option .description.multiple {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
}
.option .description.multiple .sub-description {
  max-width: calc(300px - 4rem);
  text-align: justify;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.option .description p {
  color: var(--color-light-green);
  text-align: justify;
}
.option .description:not(.multiple) {
  max-width: 40rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.option .description ul {
  list-style: initial;
  display: block;
}
.option .description ul li {
  text-align: justify;
  color: var(--color-light-green);
}
.option .description ul li + li {
  margin-top: 1rem;
}
.option .description .step {
  color: var(--color-light-green);
  margin-top: 2rem;
}
.option a {
  color: var(--color-brown);
  text-decoration: underline;
  align-self: center;
  margin-top: 2rem;
}

@media (max-width: 800px) {
  .description li {
    margin-left: 1rem;
  }
}
.mobile .description + .description {
  margin-top: 8rem;
}
.mobile .sub-description {
  max-width: 300px;
}

.background-image-block {
  min-height: min(50rem, 30vh);
  background-size: cover;
}

.footer-block {
  background-image: url("/static/img/styling/options_footer.jpg");
  background-position: center;
  margin-bottom: -70px;
  margin-top: 20rem;
}

/*# sourceMappingURL=styling-options.css.map */
