* {
  font-family: "Quicksand", sans-serif;
  box-sizing: border-box;
  color: #f3f2f2;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #3A1E0A;
  margin: 0;
}

img {
  max-width: 100%;
  margin: 0;
  display: block;
  margin: auto;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
  font-family: "Permanent Marker", cursive;
  letter-spacing: 0.1em;
  color: #2F720B;
}

h1 {
  font-size: 100px;
  margin: 0;
}
@media screen and (max-width: 992px) {
  h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 250px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 60px;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (max-width: 992px) {
  h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 250px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: 50px;
}
@media screen and (max-width: 992px) {
  h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 250px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 40px;
}
@media screen and (max-width: 992px) {
  h4 {
    font-size: 25px;
  }
}
@media screen and (max-width: 250px) {
  h4 {
    font-size: 15px;
  }
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 20px;
  margin: 0;
  text-align: start;
}

p,
ul,
ol {
  font-size: 18px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  p,
  ul,
  ol {
    font-size: 13px;
    padding-left: 10px;
  }
}

.container {
  max-width: 1500px;
  height: 100%;
  margin: auto;
}

header {
  position: sticky;
  position: -webkit-sticky;
  top: -400px;
  overflow: hidden;
  z-index: 9998;
  background-color: #3A1E0A;
}
header::before {
  content: "";
  z-index: -20;
  position: absolute;
  top: -5%;
  left: -5%;
  display: block;
  background-image: url("/assets/img/logo.jpg");
  background-size: cover;
  background-position: 50% 20%;
  width: 110%;
  height: 110%;
  filter: blur(25px);
}
header #banner {
  display: flex;
  justify-content: center;
}
header #banner #logo {
  max-width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
}
header #banner #logo img {
  max-height: 100%;
}
header nav {
  height: 50px;
  border-bottom: 1px solid #2F720B;
}
header nav .btn-placeholder {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 100%;
}
header nav .btn-placeholder #responsive-title {
  display: none;
  font-size: 30px;
  color: #3A1E0A;
}
header nav .btn-placeholder #open-menu-btn {
  display: none;
}
header nav #menu {
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
header nav #menu a h5 {
  color: #2F720B;
  margin: 0;
  transition: color 0.5s ease-out;
  text-shadow: 5px 0 4px #3A1E0A, -5px 0 4px #3A1E0A, 0 5px 4px #3A1E0A, 0 -5px 4px #3A1E0A;
}
header nav #menu a h5:hover {
  color: #927957;
}
@media screen and (max-width: 992px) {
  header nav .btn-placeholder {
    display: flex;
  }
  header nav .btn-placeholder #responsive-title {
    display: block;
  }
  header nav .btn-placeholder #open-menu-btn {
    display: block;
  }
  header nav #menu {
    display: none;
  }
}

#menu-mobile {
  display: none;
  background-color: #3A1E0A;
  border-left: 1px solid #f3f2f2;
  z-index: 9999;
}
#menu-mobile h5 {
  text-align: left;
  margin-left: 20px;
  color: #f3f2f2;
}
@media screen and (max-width: 992px) {
  #menu-mobile {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: min(70%, 300px);
    transform: translateX(300px);
    height: 100%;
    transition: transform 0.5s ease-out;
    overflow-x: hidden;
  }
  #menu-mobile #close-menu-btn {
    margin: 20px;
  }
  #menu-mobile.menu-open {
    transform: translateX(0);
  }
}

.menu-btn {
  height: 40px;
  width: 40px;
  border: 1px solid #f3f2f2;
  background-color: #927957;
  border-radius: 5px;
  color: #927957;
}

main {
  padding: 50px;
  background-color: #3A1E0A;
}
@media screen and (max-width: 992px) {
  main {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  main {
    padding: 15px;
  }
}

footer {
  background: #927957;
  padding: 30px;
  text-align: center;
}
footer #footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer #footer-links a {
  padding: 20px;
  font-family: "Permanent Marker", cursive;
  color: #3A1E0A;
  transition: color 0.5s ease-out;
}
footer #footer-links a:hover {
  color: #2F720B;
}

#scroll-top {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 50px;
  cursor: pointer;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 1px solid #3A1E0A;
  background-color: #927957;
  opacity: 60%;
  color: #2F720B;
  transition: opacity 0.5s ease-out;
}
#scroll-top:hover {
  opacity: 100%;
}
#scroll-top > div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

h3 {
  margin: 0;
  text-align: start;
  font-size: 30px;
}
@media screen and (max-width: 992px) {
  h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 15px;
  }
}

main #summary {
  padding-top: 30px;
}
main #summary ul {
  list-style-type: none;
  padding-left: 0;
}
main #summary ul a {
  font-weight: 700;
  text-decoration: underline;
}
main .anchored {
  margin-top: 0;
  background-color: #927957;
  padding: 30px;
  padding-top: 50px;
  border-radius: 20px;
  margin-bottom: 20px;
}
main .anchored > div {
  background-color: inherit;
  margin-block-start: 1em;
  margin-inline-end: 1em;
}
main .highlight {
  color: #3A1E0A;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  main .anchored {
    padding: 10px;
    padding-top: 50px;
  }
}/*# sourceMappingURL=cgv.css.map */