* {
  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%;
}

main .anchored {
  margin-top: 0;
  padding-top: 50px;
}
main .subsection {
  background-color: #927957;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
}
main .subsection > div {
  background-color: inherit;
}
main .subsection h4 {
  margin-top: 0;
}
main .timeline,
main .list {
  list-style-type: none;
  padding-left: 24px;
  margin: 0;
  position: relative;
  background-color: inherit;
}
main .timeline::before {
  content: "";
  border-right: 4px solid #2F720B;
  position: absolute;
  top: -4px;
  left: 0;
  bottom: 0;
}
main .timeline > li,
main .list > li {
  position: relative;
  padding-bottom: 10px;
  background-color: inherit;
}
main .timeline > li::before,
main .list > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: -30px;
  width: 8px;
  height: 8px;
  border: 4px solid #2F720B;
  border-radius: 50%;
  background-color: inherit;
}
main .list > li::before {
  width: 2px;
  height: 2px;
  top: 6px;
  left: -20px;
  content: "";
  background-color: #2F720B;
}
main .highlight {
  color: #2F720B;
  font-weight: 700;
}
main .base-text {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}
main .base-text > p {
  max-width: 800px;
}
main #presentation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
main #presentation #intro {
  max-width: 800px;
  flex: 1 1 400px;
}
main #presentation .illustration {
  max-width: 300px;
  border-radius: 15px;
  overflow: hidden;
}
main #presentation .illustration img {
  min-height: 100%;
}
main #project .nature {
  display: grid;
  grid-template-columns: 3fr 5fr;
}
main #project .nature > div:not(.cropped-img) {
  padding: 20px;
}
main #project .nature .cropped-img {
  border-radius: 20px;
  overflow: hidden;
  height: 75%;
  align-self: center;
}
main #project .nature .cropped-img img {
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50%;
     object-position: 50%;
}
main #pricing #download-link {
  color: #2F720B;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 20px;
  display: block;
}
main #pricing #download-link span {
  text-decoration: underline;
}
main #pricing #pricing-sheet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
main #pricing #pricing-sheet .pricing-img {
  display: flex;
  justify-content: center;
  align-self: center;
}
main #pricing #pricing-sheet .pricing-img > div {
  border-radius: 10px;
  overflow: hidden;
}
main #pricing #pricing-sheet .pricing-img#pricing-grid {
  grid-column: 1;
  grid-row: 1;
}
main #pricing #pricing-sheet .pricing-img#pricing-info {
  grid-column: 2;
  grid-row: 1/3;
}
main #pricing #pricing-sheet .pricing-img#pricing-travel {
  grid-column: 1;
  grid-row: 2;
}
main #pricing #pricing-sheet .pricing-img#pricing-travel > div {
  background-color: white;
  padding: 5px;
}
main #resume {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
main #activity-zone #limit-cities {
  padding-left: 40px;
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  flex-wrap: wrap;
}
main #activity-zone #map {
  height: 500px;
  border-radius: 20px;
}
main #activity-zone .popup {
  color: #927957;
}
main #activity-zone .popup b {
  color: #927957;
}
main #contact #contact-link {
  color: #2F720B;
  text-decoration: underline;
  font-weight: bold;
  word-break: keep-all;
  white-space: nowrap;
}
main #contact #form-container {
  display: flex;
  justify-content: center;
}
main #contact #form-container #contact-form {
  display: flex;
  flex-direction: column;
  border-radius: 25px;
  background-color: #927957;
  padding: 30px;
  width: 500px;
}
main #contact #form-container #contact-form input,
main #contact #form-container #contact-form textarea,
main #contact #form-container #contact-form button {
  border-radius: 10px;
  margin-bottom: 10px;
  color: #2F720B;
  border: 1px solid #2F720B;
}
main #contact #form-container #contact-form input,
main #contact #form-container #contact-form button {
  height: 50px;
}
main #contact #form-container #contact-form textarea {
  resize: vertical;
}
main #contact #form-container #contact-form button {
  margin-bottom: 0;
  background-color: #2F720B;
  color: #927957;
  cursor: pointer;
  transition: background-color 0.5s ease-out;
}
main #contact #form-container #contact-form button:hover {
  background-color: #3A1E0A;
}
main #contact #form-container #contact-form button #spinner {
  display: none;
}
@media screen and (max-width: 992px) {
  main .subsection {
    padding: 10px;
  }
  main #project .nature {
    grid-template-columns: 1fr 1fr;
  }
  main #project .nature .cropped-img {
    height: 50%;
    border-radius: 15px;
  }
  main #resume {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  main #project .nature {
    grid-template-columns: 1fr;
  }
  main #project .nature .cropped-img {
    height: 100%;
  }
  main #pricing #pricing-sheet {
    display: flex;
    flex-direction: column;
  }
  main #pricing #pricing-sheet .pricing-img {
    max-width: 500px;
  }
  main #activity-zone #map {
    height: 300px;
  }
}/*# sourceMappingURL=index.css.map */