:root {
  --offwhite: #D1D3D4;
  --offwhite-tr: #d1d3d4ee;
  --green: #003F2E;
  --z-video: 1;
  --z-hero: 2;
  --z-contact: 2;
}

body {
  font-size: 1rem;
}

main {
  color: white;
}

.hero {
  position: relative;
  width: 100%;
  height: calc(84.8vh + 70px);
  background-image: url("../assets/FHL-bg.png");
  background-repeat: no-repeat;
  background-size: 105% 105%;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 450px) {
  .hero {
    height: calc(84.8vh + 50px);
  }
}
.hero-container {
  z-index: var(--z-hero);
}
.hero-logo {
  display: flex;
  gap: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-logo figcaption {
  font-size: 3.0625em;
}
@media (max-width: 450px) {
  .hero-logo figcaption {
    font-size: 2.2em;
  }
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-us {
  background-color: var(--green);
}

.contact-us-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 66px 0;
  padding-bottom: 49px;
  z-index: var(--z-contact);
}
@media (max-width: 450px) {
  .contact-us-container {
    padding: 65px 0;
    padding-bottom: 48px;
  }
}
.contact-us-text {
  text-align: center;
  margin-bottom: 30.4px;
}
.contact-us-text h2 {
  font-family: "Calisto MT", serif;
  font-weight: normal;
  font-size: 2.5em;
  margin-bottom: 29px;
}
@media (max-width: 450px) {
  .contact-us-text h2 {
    font-size: 2em;
  }
}
.contact-us-text p {
  font-family: "Segoe UI", sans-serif;
  font-size: 1em;
  margin: 0;
  color: var(--offwhite);
}
.contact-us-form {
  --padding-horizontal: 26.8px;
  max-width: calc(995px + var(--padding-horizontal) * 2);
  width: 100%;
  box-sizing: border-box;
  padding: 0 var(--padding-horizontal);
  display: flex;
  align-content: center;
  gap: 15.8px;
  flex-flow: wrap;
}
.contact-us-form > input, .contact-us-form button {
  height: 46px;
}
@media (max-width: 450px) {
  .contact-us-form > input, .contact-us-form button {
    height: 50px;
  }
}
.contact-us-form input::placeholder {
  color: var(--offwhite);
  opacity: 1;
}
.contact-us-form input:focus::placeholder {
  opacity: 0.6;
}
.contact-us-form input {
  color: var(--offwhite);
  border: 1px solid var(--offwhite);
  border-radius: 9.25px;
  padding: 15.84px;
}
.contact-us-form #name-input {
  flex: 1 1 277px;
}
.contact-us-form #phone-input {
  flex: 1 1 228px;
}
.contact-us-form #email-input {
  flex: 1 1 342px;
}
.contact-us-form button {
  font-family: "Segoe UI", sans-serif;
  font-size: 1em;
  font-weight: bold;
  color: black;
  text-transform: uppercase;
  cursor: pointer;
  background: white;
  box-sizing: border-box;
  flex: 0 1 98px;
  border-radius: 9.25px;
}
.contact-us-form button > svg {
  stroke: var(--green);
}
.contact-us-form button:disabled {
  color: hsl(0, 0%, 70%);
  background-color: rgb(88, 95, 99);
  border-color: rgb(102, 94, 83);
  cursor: not-allowed;
}
@media (max-width: 450px) {
  .contact-us-form button {
    flex-grow: 1;
    margin-top: 13px;
  }
}
.contact-us-form .alert {
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 0.25rem;
}
.contact-us-form .alert-success {
  color: rgb(178, 223, 188);
  background-color: rgb(26, 62, 41);
  border-color: rgb(37, 90, 50);
}
.contact-us-form .alert-error {
  color: rgb(225, 134, 143);
  background-color: rgb(67, 12, 17);
  border-color: rgb(104, 18, 27);
}

/* Footer */
footer {
  background-color: var(--green);
  color: var(--offwhite-tr);
  font-family: "Segoe UI";
  font-size: 13px;
}

.copyright-info {
  max-width: 83%;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: calc(1rem - 17px);
  padding-bottom: 1.88rem;
  border-top: 1px solid rgba(209, 211, 212, 0.7294117647);
}

.terms-policies {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-flow: row wrap;
}

.terms-policies a {
  margin-right: 1rem;
  text-decoration: none;
  color: var(--offwhite-tr);
}
.terms-policies a::visited {
  color: var(--offwhite-tr);
}

/* For making input labels visible to screen-readers only
 * Ref: https://css-tricks.com/inclusively-hidden/
 * */
.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/*# sourceMappingURL=main.css.map */
