@charset "UTF-8";
.container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (max-width: 1750px) {
  .container {
    max-width: 1750px;
    padding: 0 8rem;
  }
}
@media (max-width: 1250px) {
  .container {
    max-width: 1250px;
    padding: 0 6rem;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 1024px;
    padding: 0 4rem;
  }
}
@media (max-width: 750px) {
  .container {
    max-width: 750px;
    padding: 0 2rem;
  }
}
@media (max-width: 420px) {
  .container {
    max-width: 420px;
    padding: 0 1rem;
  }
}
@media (min-width: 1750px) {
  .container {
    max-width: 1750px;
    padding: 0 8rem;
  }
}

body,
html,
* {
  font-size: 100%;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "";
}

@media (max-width: 750px) {
  html,
  body {
    overflow-x: hidden;
  }
}

:root {
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  overflow-x: clip;
}

.anchor {
  top: -120px;
  position: absolute;
}

.screenreader {
  display: none;
}

* {
  font-family: sans-serif;
}

ul {
  list-style-type: none;
}

.tab-container {
  display: flex;
  position: relative;
}
.tab-container:after {
  content: "";
  width: 100%;
  height: 4px;
  background: #e3e3d4;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.tab-container label {
  cursor: pointer;
  font-size: 1.5rem;
  color: #baba97;
  font-weight: 700;
}
.tab-container label h2 {
  padding: 2.5rem 1rem 1rem 1rem;
}
.tab-container input[type=radio] {
  display: none;
}
@media (max-width: 750px) {
  .tab-container {
    display: none;
  }
}

.tab-content {
  display: none;
}
.tab-content ul {
  display: flex;
  flex-wrap: wrap;
}
.tab-content ul li {
  padding: 0.5rem 0;
  min-width: 32%;
}

.tab input[type=radio]:checked ~ .tab-content {
  display: block;
  position: absolute;
  left: 0;
  padding-top: 1rem;
}

.tab input[type=radio]:checked ~ label h2 {
  border-bottom: 4px solid #a6a678;
  color: #a6a678;
}

.mobile__accordion {
  display: none;
}
@media (max-width: 750px) {
  .mobile__accordion {
    display: block;
    padding: 2rem 0;
  }
  .mobile__accordion details {
    width: 100%;
    max-width: 400px;
    min-width: 200px;
    margin: auto;
    border-bottom: 2px solid #ceceb6;
    padding: 1rem 0;
  }
  .mobile__accordion details summary {
    font-size: 1.5rem;
    position: relative;
    color: #baba97;
    font-weight: bold;
  }
  .mobile__accordion details summary + div {
    margin: 1rem 0;
  }
  .mobile__accordion details summary + div .blog-preview {
    padding: 0.5rem 0;
  }
  .mobile__accordion details summary + div .blog-preview h3 a {
    color: black;
  }
  .mobile__accordion details summary::marker, .mobile__accordion details summary::-webkit-details-marker {
    display: none;
    content: "";
  }
  .mobile__accordion details summary:after {
    position: absolute;
    content: url("../lib/images/arrow-down.svg");
    width: 1.5rem;
    height: 1.5rem;
    right: 0;
    display: block;
    top: 0;
    transition: 0.25s all linear;
  }
  .mobile__accordion details[open] > summary::after {
    transform: rotate(180deg);
    transition: 0.25s all linear;
  }
}

header nav {
  width: 100%;
  background: #baba97;
  position: sticky;
  top: 0;
}
@media (max-width: 750px) {
  header nav {
    position: relative;
  }
}

.nav__content {
  display: flex;
  width: 100%;
  position: relative;
  height: 80px;
}
.nav__content--logo {
  display: flex;
  align-items: center;
}
.nav__content--logo img {
  width: 150px;
  height: auto;
  object-fit: cover;
  padding: 0.5rem;
  margin-right: 0.5rem;
}
@media (max-width: 750px) {
  .nav__content--logo img {
    width: 115px;
  }
}
.nav__content--logo a {
  position: relative;
  padding-left: 1rem;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}
.nav__content--logo a:after {
  position: absolute;
  width: 2px;
  background: white;
  height: 50px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  content: "";
}
.nav__content--search {
  display: none;
}
@media (max-width: 750px) {
  .nav__content--search {
    display: block;
  }
  .nav__content--search label {
    color: white;
    display: block;
  }
  .nav__content--search h2, .nav__content--search ul li h3 a {
    color: white;
  }
  .nav__content--search h2 {
    padding: 2rem 0 0.25rem 0;
    font-weight: 800;
    font-size: 1.25rem;
    position: relative;
  }
  .nav__content--search h2:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #baba97;
    bottom: 0;
  }
  .nav__content--search ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 0.25rem;
  }
}
.nav__content--button {
  position: absolute;
  right: 1rem;
  display: flex;
  height: 100%;
  align-items: center;
}
@media (max-width: 750px) {
  .nav__content--button {
    height: unset;
    position: unset;
    width: 100%;
    justify-content: end;
    padding: 2rem 0 0 0;
  }
}
.nav__content--button a {
  color: black;
  font-weight: 700;
  font-size: 1.5rem;
}
.nav__content--button a:hover {
  color: white;
}
@media (max-width: 750px) {
  .nav__content--button a {
    color: #baba97;
  }
  .nav__content--button a:hover {
    color: white;
  }
}
@media (max-width: 750px) {
  .mobile {
    position: absolute;
    transform: translateX(calc(100% + 50px));
    transition: 0.5s all ease-in-out;
    width: 100%;
    top: 80px;
    padding: 2rem;
  }
}

@media (max-width: 750px) {
  #mobile:checked ~ .mobile {
    transform: translateX(0);
    background: rgba(0, 0, 0, 0.75);
    width: 100%;
    transition: 0.5s all ease-in-out;
    z-index: 99999;
    height: auto;
  }
}

@media (max-width: 750px) {
  #mobile:checked ~ label.mobile__button:after {
    content: "X";
  }
}

.nav__content label.mobile__button {
  position: relative;
  width: 100%;
}
.nav__content label.mobile__button:after {
  position: absolute;
  content: "≡";
  display: block;
  position: absolute;
  right: 1rem;
  font-size: 3rem;
  font-weight: 700;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
.nav__content label.mobile__button:after:hover {
  cursor: pointer;
}
@media (min-width: 750px) {
  .nav__content label.mobile__button:after {
    display: none;
  }
}

header {
  width: 100%;
  min-height: 400px;
  background: #baba97;
}
@media (max-width: 750px) {
  header {
    min-height: unset;
  }
}
@media (max-width: 750px) {
  header .search__desktop {
    display: none;
  }
}
header .search__desktop a {
  color: white;
}
header .search__desktop label {
  font-weight: bold;
  font-size: 1.5rem;
  padding-top: 3rem;
  display: block;
  padding-bottom: 0.5rem;
}
header .search__desktop label + input {
  all: unset;
  -webkit-appearance: none;
  border-radius: 0.25rem;
  width: 75%;
  max-width: 500px;
  background: white;
  height: 3rem;
  margin-bottom: 2rem;
}
.blog-post h1 {
  font-size: 1.5rem;
  padding: 2rem 0 1rem 0;
  text-decoration: underline;
}
.blog-post p {
  padding: 0.5rem 0;
}
.blog-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0.5rem 0;
  max-width: 750px;
}

.additional-posts-container {
  display: flex;
  margin-left: -0.45rem;
}
.additional-posts-container .additional-post {
  background: #baba97;
  padding: 0.5rem;
}
.additional-posts-container .additional-post h3,
.additional-posts-container .additional-post a {
  color: white;
}
.button--additional-post {
  text-decoration: none;
  margin: 0.45rem;
  text-decoration: none;
}
.button--additional-post:hover {
  box-shadow: 0 0 5px black;
}

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