html {
  font-family: "Outfit", serif;
  scroll-behavior: smooth;
  margin-top: 0 !important;
  overflow-x: hidden;
}
body {
  position: relative;
  background-color: #FCF8F1;
  margin: 0;
  overflow-x: hidden;
}
body.unscrollable {
  overflow-y: hidden;
}
.container {
  width: 1440px;
  max-width: 100%;
}
p strong {
  font-weight: 600;
}
li strong {
  font-weight: 600;
}

#page-content {
  padding: 150px 0 100px 0;
}


#page-404 {
  text-align: center;
  background-color: #FFFFFF;
  padding: 260px 0 120px 0;
}
#page-404 h1 {
  font-size: 72px;
  font-weight: 300;
  color: #3E5626;
  margin: 0 0 60px 0;
}
#page-404 p {
  font-size: 20px;
  font-weight: 400;
  color: #7C8E69;
  margin: 0;
}
#page-404 p a {
  color: #DD6727;
  font-weight: 500;
}


#modal-wrapper {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6;
}
#modal-wrapper.active {
  display: flex;
}
#modal-mask {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  background-color: rgba(8,9,10,0.6)
}
#modal-mask.active {
  display: block;
}
#modal-wrapper h1.title {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  line-height: 100%;
  color: #3A3A3A;
  margin: 0 0 40px 0;
}
#modal-wrapper p.subtitle {
  text-align: center;
  max-width: 820px;
  width: 100%;
  margin: 0 auto 40px;
}
#modal-wrapper .modal-holder {
  max-width: 820px;
  width: 100%;
  padding: 60px 80px 40px 80px;
  margin: 0 auto;
  border-radius: 20px;
  background-color: #F2F4EA;
  position: relative;
  z-index: 5;
  color: #3A3A3A;
}
#modal-wrapper #close-modal {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
#modal-wrapper #close-modal svg {
  transition: 0.1s linear all;
}
#modal-wrapper #close-modal:hover svg {
  fill: #343434;
}
#modal-wrapper .form-wrapper {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}
#modal-wrapper p span {
  max-width: 45%;
}
#modal-wrapper .wpcf7 {
  max-width: 840px;
}
#modal-wrapper .half-fields > p {
  display: flex;
  justify-content: space-between;
}
#modal-wrapper input {
  width: 100%;
  background: #dd67270d;
  font-size: 22px;
  font-family: "Outfit", serif;
  color: #3E3E3E;
  padding: 12px 24px;
  margin: 0 0 40px 0;
  border: 0;
  border-bottom: 1px solid #253416;
  transition: 0.2s linear all;
}
#modal-wrapper input:focus,
#modal-wrapper input:active,
#modal-wrapper input:focus {
  border-bottom: 1px solid #FF9451;
}
#modal-wrapper textarea {
  width: 100%;
  background: #dd67270d;
  font-size: 22px;
  font-family: "Outfit", serif;
  color: #3E3E3E;
  padding: 12px 24px;
  margin: 0 0 40px 0;
  border: 0;
  border-bottom: 1px solid #253416;
  transition: 0.2s linear all;
}
#modal-wrapper textarea:focus,
#modal-wrapper textarea:active,
#modal-wrapper textarea:focus {
  border-bottom: 1px solid #FF9451;
}
#modal-wrapper input:focus-visible,
#modal-wrapper textarea:focus-visible {
  outline: none;
  border-bottom: 1px solid #FF9451;
}
#modal-wrapper .wpcf7-submit {
  display: flex;
  align-items: center;
  text-align: center;
  background-color: #DD6727;
  font-size: 22px;
  font-weight: 600;
  line-height: 100%;
  color: #F3F5EB;
  text-decoration: none;
  padding: 24px 48px;
  margin: 0 60px 0 0;
  border: 1px solid transparent;
  border-radius: 35px;
  cursor: pointer;
  transition: 0.2s linear all;
}
#modal-wrapper .wpcf7-submit:hover {
  background-color: transparent;
  color: #DD6727;
  border: 1px solid #FF9451;
}
#modal-wrapper .wpcf7-submit svg {
  display: block;
  transition: 0.2s linear all;
}
#modal-wrapper .wpcf7-submit:hover svg {

}



/* ---- float in animation ---- */
.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(-100px);
  transition: opacity 0.6s, filter 0.6s, transform 0.6s;
}
.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition: opacity 0.6s, filter 0.6s, transform 0.6s;
}
@media (prefers-reduced-motion: no-preference) {
  /* .hidden {
    transition: none;
  } */
}

@media only screen and (max-width: 1440px) {
  .container {
    max-width: 1280px;
    width: 100%;
  }
}

@media only screen and (max-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}

@media only screen and (max-width: 992px) {

}

@media only screen and (max-width: 768px) {
  #modal-wrapper .half-fields > p {
    display: block;
  }
  #modal-wrapper p span {
    max-width: unset;
  }
  #modal-wrapper .modal-holder {
    width: 90%;
    padding: 80px 40px 40px 40px;
  }
}
