* {
  box-sizing: border-box;
  font-family: Montserrat, sans-serif;
}

body,
html {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

body {
  font-size: 19px;
}

.nav {
  background: white;
  height: 70px;
  display: flex;
  position: fixed;
  padding: 10px 40px;
  z-index: 100;
  width: 100%;
  box-shadow: 0 6px 10px -4px rgba(0, 0, 0, 0.15);
}

.nav-logo {
  display: block;
  height: 50px;
  width: 50px;
}

.nav-logo-img {
  width: 100%;
  display: block;
  filter: invert(1);
}

.landing {
  height: 100%;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
}

.landing-background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #484947;
  background-image: url("/bg-landing.jpg");
  background-position: center;
  background-size: cover;
  z-index: 10;
}

.landing-blur {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 15;
  background: rgba(0, 0, 0, 0.5);
}

.landing-text {
  font-size: 3rem;
  line-height: 3.5rem;
  font-weight: bold;
  margin: 0;
  text-align: center;
}

.landing-content {
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.landing-cta {
  background-color: #f5593d;
  border-radius: 50px;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  transition: background-color 0.2s;
  margin-top: 1.5rem;
  text-decoration: none;
  color: white;
  font-size: 0.875rem;
  font-weight: bold;
}

.landing-cta:hover,
.landing-cta:focus,
.landing-cta:active {
  background-color: #f32f0c;
}

.intro {
  background: #fff;
  padding: 6rem 1rem 5rem;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
}

.intro-title {
  font-size: 2.5rem;
  line-height: 2.625rem;
  font-weight: lighter;
  color: #444444;
  margin-bottom: 1.75rem;
}

.intro-text {
  font-size: 1em;
  line-height: 1.375em;
  font-weight: lighter;
  color: #9a9a9a;
  margin: 0;
  max-width: 50rem;
  text-align: center;
  margin-bottom: 4rem;
}

.intro-images {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 3rem;
  row-gap: 3rem;
  width: 100%;
}

.intro-image-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.intro-image {
  width: 200px;
  height: 200px;
  background: none;
  margin-bottom: 0.75rem;
  position: relative;
  overflow: hidden;
}

.intro-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
  border-radius: 50%;
}

.intro-image::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 100%;
  height: 45px;
  top: 155px;
  left: 0;
  z-index: 20;
}

.intro-image-caption {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.intro-image-caption-title {
  font-size: 1.375rem;
  line-height: 1.625rem;
  font-weight: lighter;
  color: #444444;
  margin-bottom: 0.375rem;
}

.intro-image-caption-text {
  font-size: 0.875rem;
  word-break: keep-all;
  font-weight: bolder;
  color: #868e96;
}

.footer {
  background: #252422;
  padding: 2rem 1.5rem;
  color: #f2f2f2;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

.contact {
  padding: 6rem 1rem 5rem;
  position: relative;
}

.contact-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #484947;
  background-image: url("/bg-footer.jpg");
  background-position: center;
  background-size: cover;
  z-index: 10;
}

.contact-blur {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 15;
  background: rgba(0, 0, 0, 0.7);
}

.contact-content {
  margin: 0 auto;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr;
  z-index: 20;
  position: relative;
  row-gap: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-details-section {
  max-width: 360px;
  margin-bottom: 1.25rem;
}

.contact-details-title {
  color: white;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.contact-icon {
  height: 26px;
  display: inline-block;
}

.contact-icon-map {
  width: 17px;
  margin-left: 2px;
  margin-right: 10px;
}

.contact-icon-clock {
  width: 22px;
  margin-right: 7px;
}

.contact-icon-phone {
  width: 15px;
  margin-left: 2px;
  margin-right: 12px;
}

.contact-details-text {
  line-height: 1.375em;
  color: #ccc;
  /* font-weight: lighter; */
}

.contact-form-wrapper {
  display: flex;
  flex-direction: row-reverse;
}

.contact-form {
  border-radius: 12px;
  background: white;
  max-width: 520px;
  width: 100%;
  padding: 1.25rem 1rem;
  height: min-content;
  position: relative;
}

.contact-form-overlay {
  z-index: 10;
  top: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 12px;
  font-weight: lighter;
  color: #444444;
}

.contact-form-title {
  color: #444444;
  font-weight: lighter;
  padding: 0 0 2rem;
  margin-top: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.25rem;
  border-bottom: 1px solid #dddddd;
  text-align: center;
  position: relative;
  z-index: 20;
}

.contact-form-form {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
  row-gap: 1.5rem;
  column-gap: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 20;
}

.contact-form-label {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 300;
  color: #aaa;
}

.contact-form-field {
  margin: 0;
  border: 0;
  border-bottom: 1px solid #dddddd;
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #555;
  transition: border-color 0.3s;
}

.contact-form-field:active,
.contact-form-field:focus {
  border-bottom-color: #f5593d;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
}

.contact-form-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-form-submit {
  margin: 0;
  outline: none;
  border: none;
  border-radius: 30px;
  font-weight: bolder;
  display: inline-block;
  background-color: #f5593d;
  color: #fff;
  padding: 0.75rem 2rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.contact-form-submit:hover,
.contact-form-submit:focus {
  background-color: #f32f0c;
}

.contact-recaptcha,
.contact-recaptcha > a {
  color: #555;
  font-size: 0.75rem;
  text-decoration: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media (min-width: 768px) {
  .nav {
    padding: 10px 10vw;
    background: none;
    box-shadow: none;
    position: absolute;
    top: 0;
  }

  .landing {
    height: 85%;
    min-height: 70vh;
  }

  .nav-logo-img {
    filter: unset;
  }

  .intro-images {
    grid-template-columns: 1fr 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-form {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-controls,
  .contact-form-group-message {
    grid-column: 1/3;
  }
}
