html {
  font-family: "Rubik", sans-serif;
  scroll-behavior: smooth;
  margin-top: 0 !important;
}
body {
  position: relative;
  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;
  background-color: #155b95;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #FFFFFF;
  padding: 14px 30px;
  border: 2px solid #155b95;
  border-radius: 50px;
  transition: 0.15s linear all;
}
a.primary-button:hover {
  background-color: #FFFFFF;
  color: #155b95;
}
a.secondary-button {
  display: inline-block;
  background-color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #155b95;
  padding: 14px 30px;
  border: 2px solid #155b95;
  border-radius: 50px;
  transition: 0.15s linear all;
}
a.secondary-button:hover {
  background-color: #155b95;
  color: #FFFFFF;
}

#modal-wrapper {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
}
#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(0,0,0,0.4);
}
#modal-mask.active {
  display: block;
}
#modal-wrapper h1.title {
  text-align: center;
  font-size: 46px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -2px;
  color: #001333;
  margin: 0 0 30px 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: #EFF1ED;
  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-color: #FFFFFF;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  color: #888888;
  padding: 14px 20px;
  border: 0;
  border-radius: 10px;
  margin: 0 0 16px 0;
  overflow: hidden;
}
#modal-wrapper input:focus,
#modal-wrapper input:active,
#modal-wrapper input:focus {

}
#modal-wrapper textarea {
  width: 100%;
  background-color: #FFFFFF;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  color: #888888;
  padding: 14px 20px;
  border: 0;
  border-radius: 10px;
  margin: 0 0 16px 0;
  overflow: hidden;
}
#modal-wrapper textarea:focus,
#modal-wrapper textarea:active,
#modal-wrapper textarea:focus {

}
#modal-wrapper input:focus-visible,
#modal-wrapper textarea:focus-visible {
  outline: none;
}
#modal-wrapper .wpcf7-submit {
  display: flex;
  align-items: center;
  background-color: #155b95;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #FFFFFF;
  padding: 14px 30px;
  border: 2px solid #155b95;
  border-radius: 50px;
  margin: 0 0 0 auto;
  cursor: pointer;
  transition: 0.15s linear all;
}
#modal-wrapper .wpcf7-submit:hover {
  background-color: #FFFFFF;
  color: #155b95;
}
#modal-wrapper .wpcf7-submit svg {
  display: block;
  transition: 0.2s linear all;
}
#modal-wrapper .wpcf7-submit:hover svg {
  fill: #155b95;
}

#page-content {
  padding: 100px 0 100px 0;
}
#page-content h3 strong {
  font-weight: 700;
}

/* ---- float in animation ---- */
.hidden {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(30px);
  transition: opacity 0.4s ease-in, transform ease-in .8s;
  transition-delay: .2s;
}
.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
  transition: opacity 0.4s ease-out, transform ease-out .8s;
  transition-delay: .2s;
}

@media only screen and (max-width: 1440px) {
  .container {
    max-width: 1240px;
    width: 100%;
  }
}

@media only screen and (max-width: 1280px) {
  .container {
    max-width: 1080px;
  }
}

@media only screen and (max-width: 992px) {

}

@media only screen and (max-width: 768px) {
  #modal-wrapper h1.title {
    font-size: 30px
  }
  #modal-wrapper .half-fields > p {
    display: block;
  }
  #modal-wrapper p span {
    max-width: unset;
  }
  #modal-wrapper .modal-holder {
    width: 90%;
    padding: 60px 20px 20px 20px;
  }
  #modal-wrapper #close-modal {
    top: 20px;
    right: 20px;
  }
}
