html {
  font-family: "Plus Jakarta Sans", serif;
  scroll-behavior: smooth;
  margin-top: 0 !important;
}
body {
  position: relative;
  background-color: #E4EEEB;
  margin: 0;
  overflow-x: hidden;
}
body.unscrollable {
  overflow-y: hidden;
}
.container {
  width: 1440px;
  max-width: 100%;
}
p strong {
  font-weight: 600;
}

a.primary-button {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #0B4739;
  background-color: #67e9af;
  padding: 12px 36px;
  border: 1px solid #67e9af;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.15s linear all;
}
a.primary-button:hover {
  background-color: #0B4739;
  color: #FFFFFF;
  border: 1px solid #0B4739;
}

#page-content {
  padding: 160px 0 80px 0;
}


#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-family: "DM Serif Display", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 100%;
  color: #0B4739;
  margin: 0 auto 40px;
}
#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: #FFFFFF;
  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: #0B4739;
}
#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 .wpcf7 input,
#modal-wrapper .wpcf7 textarea {
  width: 100%;
  background-color: #E4EEEB;
  font-family: "Plus Jakarta Sans", serif;
  font-size: 14px;
  color: #888888;
  padding: 14px 20px;
  border: 0;
  border-radius: 10px;
  margin: 0 0 16px 0;
  overflow: hidden;
}
#modal-wrapper .wpcf7 input:focus,
#modal-wrapper .wpcf7 textarea:focus {
  outline: none;
}
#modal-wrapper .wpcf7 .wpcf7-submit {
  display: flex;
  font-family: "Plus Jakarta Sans", serif;
  font-size: 18px;
  font-weight: 600;
  color: #0B4739;
  background-color: #67e9af;
  padding: 12px 36px;
  border: 1px solid #67e9af;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.15s linear all;
}
#modal-wrapper .wpcf7 .wpcf7-submit:hover {
  background-color: #0B4739;
  color: #FFFFFF;
  border: 1px solid #0B4739;
}
#modal-wrapper .wpcf7 .wpcf7-submit svg {
  transition: 0.15s linear all;
}
#modal-wrapper .wpcf7 .wpcf7-submit:hover svg {
  fill: #FFFFFF;
}



/* ---- 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: 1240px;
    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;
  }
}
