@font-face {
  font-family: "Lato";
  src: url("fonts/lato-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("fonts/lato-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("fonts/lato-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("fonts/lato-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/montserrat.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Font Awesome Solid";
  src: url("fonts/fa-solid-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Font Awesome Brands";
  src: url("fonts/fa-brands-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

:root {
  --black: #080a0c;
  --charcoal: #454c52;
  --charcoal-dark: #294051;
  --blue: #1d305d;
  --blue-light: #549ab6;
  --content-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color: #333;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

body {
  margin: 0;
  background: #fff;
}

img {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #67b7d6;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--black);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.donation-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  background: var(--charcoal);
}

.donation-bar span {
  padding-right: 10px;
  color: #fff;
  font-family: "Lato", sans-serif;
}

.donation-bar form {
  height: 26px;
  margin-top: 5px;
}

.donation-bar input[type="image"] {
  height: 21px;
  width: auto;
}

.hero {
  height: 50vh;
  min-height: 330px;
  background-position: 50% 20%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-home {
  background-image: url("images/iStock-179001519-min-p-2000.jpeg");
}

.hero-about {
  background-image: url("images/iStock-516987122-min-p-2000.jpeg");
}

.hero-services {
  background-image: url("images/iStock-178709221-min-p-2000.jpeg");
  background-position: 50% 40%;
}

.hero-gallery {
  background-image: url("images/iStock-696314732-min-p-2000.jpeg");
  background-position: 50% 55%;
}

.hero-contact {
  background-image: url("images/iStock-1253920275-min-p-2000.jpeg");
  background-position: 50% 30%;
}

.site-header {
  height: 125px;
  background: #fff;
}

.navbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  width: min(100% - 40px, var(--content-width));
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: block;
  height: 60px;
  margin-right: auto;
}

.brand img {
  display: block;
  width: auto;
  height: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-links a,
.footer-nav a {
  color: #444;
  font-family: "Lato", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a {
  margin: 0 2px;
  padding: 10px 18px;
  font-size: 14px;
  transition: border-color .2s;
}

.nav-links a:hover {
  border-bottom: 3px solid #444;
  padding-bottom: 7px;
}

.nav-links a[aria-current="page"] {
  color: #000;
  border-bottom: 4px solid #000;
  padding-bottom: 7px;
  font-weight: 900;
}

.menu-button {
  display: none;
  border: 0;
  padding: 8px;
  color: #111;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.content {
  width: min(80%, var(--content-width));
  margin: 60px auto;
}

.content-narrow {
  margin-top: 60px;
}

.section {
  margin-bottom: 20px;
  font-family: "Lato", sans-serif;
}

.section + .section {
  margin-top: 20px;
}

.page-heading,
.panel-heading {
  margin: 0 10px 7px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.page-heading {
  color: var(--black);
  font-size: 28px;
  line-height: 56px;
}

.rule {
  width: 100%;
  height: 3px;
  margin-bottom: 10px;
  background: var(--black);
}

.rule-light {
  background: #fff;
}

.body-copy {
  margin: 15px 10px 0;
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 48px;
}

.home-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 1600px);
  margin: 40px auto 20px;
  padding-bottom: 20px;
}

.home-intro {
  margin: 10px 20px 44px;
  color: #333;
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: -1px;
  text-align: center;
}

.home-billboard {
  width: 90%;
  height: 35em;
  border-radius: 25px 25px 0 0;
  background: url("images/iStock-671365932-min-p-2000.jpeg") 50% / cover no-repeat;
}

.home-billboard-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 6em;
  border-radius: 0 0 25px 25px;
  background: var(--black);
}

.home-billboard-caption h2 {
  margin: 10px 20px;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: -.5px;
  text-align: center;
}

.home-help {
  width: 90%;
  margin: 7.5em 0 5em;
}

.home-help-image {
  display: block;
  width: auto;
  height: 25em;
  margin: 0 auto;
}

.home-help h1 {
  margin: 50px 3px 8px;
  color: var(--black);
  font-family: "Lato", sans-serif;
  font-size: 26px;
  line-height: 26px;
}

.help-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 15px;
}

.help-columns h2 {
  margin: 6px 0 10px;
  color: var(--black);
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
}

.help-columns p {
  margin: 0;
  color: var(--black);
  font-family: "Lato", sans-serif;
  font-size: 15px;
  line-height: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: var(--blue);
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color .275s, background-color .275s;
}

.button:hover {
  color: #000;
  background: var(--blue-light);
}

.button-wide {
  width: 400px;
  margin-top: 30px;
}

.icon {
  padding-right: 5px;
  font-family: "Font Awesome Solid";
  font-style: normal;
  font-weight: 900;
}

.icon-brand {
  font-family: "Font Awesome Brands";
  font-weight: 400;
}

.feature-panel {
  margin-bottom: 40px;
  padding: 5px 20px 20px;
  border-radius: 5px;
  color: #fff;
  background: var(--charcoal-dark);
}

.panel-heading {
  color: #fff;
  font-size: 24px;
  line-height: 56px;
}

.panel-copy {
  margin: 15px 10px 0;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 32px;
}

.feature-panel .button {
  width: 300px;
  margin: 10px;
  background: var(--blue-light);
}

.feature-panel .button:hover {
  color: var(--black);
  background: #a1d1e4;
}

.service-list {
  margin-top: 40px;
}

.service-item {
  margin-bottom: 30px;
  color: #000;
  font-family: "Lato", sans-serif;
}

.service-item h2 {
  margin: 0;
  padding: 0 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.service-item hr {
  height: 2px;
  margin: 10px 0 0;
  border: 0;
  background: #959da5;
}

.service-item p {
  margin: 10px 0 0;
  padding: 0 10px;
  font-size: 15px;
  line-height: 32px;
}

.phone-link {
  border: 0;
  padding: 0;
  color: #000;
  background: transparent;
  text-decoration: underline;
  cursor: pointer;
}

.phone-link:hover {
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 10px 20px;
}

.gallery-button {
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-button img {
  display: block;
  width: 100%;
  height: auto;
}

.lightbox {
  width: min(94vw, 1400px);
  max-width: none;
  height: min(92vh, 940px);
  max-height: none;
  border: 0;
  padding: 52px 70px;
  background: #111;
}

.lightbox::backdrop {
  background: rgb(0 0 0 / 86%);
}

.lightbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-control {
  position: absolute;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 42px;
  cursor: pointer;
}

.lightbox-close {
  top: 6px;
  right: 16px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.phone-dialog {
  width: min(90vw, 420px);
  border: 0;
  border-radius: 5px;
  padding: 36px;
  color: var(--black);
  background: #fff;
  text-align: center;
}

.phone-dialog::backdrop {
  background: rgb(0 0 0 / 72%);
}

.phone-dialog h2 {
  margin: 0 0 12px;
  font-family: "Lato", sans-serif;
  font-size: 26px;
  line-height: 32px;
}

.phone-dialog p {
  margin: 0 0 20px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.phone-dialog-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  padding: 6px 10px;
  color: var(--black);
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.phone-dialog-widget {
  display: flex;
  justify-content: center;
  min-height: 65px;
}

.phone-dialog-status {
  min-height: 24px;
  margin: 14px 0 0 !important;
}

.phone-dialog-action {
  margin-top: 16px;
}

.contact-card {
  max-width: 800px;
  margin: 40px auto 20px;
  padding: 48px 64px;
  border-radius: 5px;
  color: #fff;
  background: var(--charcoal-dark);
  text-align: center;
}

.contact-card h2 {
  margin: 0 0 18px;
  font-family: "Lato", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
}

.contact-card p {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 28px;
}

.contact-card p + p {
  margin-top: 16px;
}

.dial-button {
  width: min(100%, 420px);
  height: 56px;
  margin-top: 30px;
  color: var(--black);
  background: var(--blue-light);
  font-weight: 700;
}

.dial-button:hover {
  background: #a1d1e4;
}

.dial-button .icon {
  padding-right: 10px;
  font-size: 24px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  color: #fff;
  background: var(--black);
}

.cta-inner {
  width: min(90%, var(--content-width));
  text-align: center;
}

.cta h2 {
  margin: 0 0 20px;
  font-family: "Lato", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -1px;
}

.cta p {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 20px 10px;
}

.cta-buttons .button {
  width: 310px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  padding-bottom: 60px;
}

.footer-top {
  display: flex;
  align-items: center;
  width: min(80%, var(--content-width));
}

.footer-logo {
  width: auto;
  height: 50px;
  margin-right: auto;
}

.footer-nav {
  display: flex;
  align-items: center;
}

.footer-nav a {
  padding: 10px 20px;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 2px;
}

.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
  border-bottom: 2px solid #000;
  padding-bottom: 8px;
}

.footer-nav a[aria-current="page"] {
  color: #000;
  font-weight: 900;
}

[hidden] {
  display: none !important;
}

@media (max-width: 991px) {
  .site-header {
    height: 100px;
  }

  .brand {
    height: 50px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgb(0 0 0 / 75%);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    height: 60px;
    margin: 0;
    padding: 10px 18px;
    color: #fff;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    color: #fff;
    border-bottom: 3px solid #fff;
    padding-bottom: 7px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-logo {
    margin: 0 auto 30px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-bottom: 40px;
  }

  .content {
    width: 90%;
  }

  .page-heading {
    line-height: 40px;
  }

  .help-columns,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    margin-right: 10px;
    margin-left: 10px;
  }

  .cta h2 {
    font-size: 30px;
  }

  .cta p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-nav {
    flex-direction: column;
  }

}

@media (max-width: 479px) {
  .site-header {
    height: 84px;
  }

  .navbar {
    width: calc(100% - 20px);
  }

  .brand {
    height: 36px;
  }

  .hero-contact {
    background-position: 60%;
  }

  .hero-about {
    background-position: 35% 20%;
  }

  .content {
    margin-top: 40px;
  }

  .contact-card {
    margin-top: 30px;
    padding: 36px 24px;
  }

  .page-heading {
    font-size: 26px;
    line-height: 36px;
  }

  .panel-heading {
    font-size: 22px;
    line-height: 34px;
  }

  .body-copy {
    line-height: 40px;
  }

  .home-intro {
    font-size: 22px;
    line-height: 32px;
  }

  .home-billboard-caption {
    height: 9em;
  }

  .home-billboard-caption h2 {
    font-size: 16px;
  }

  .home-help-image {
    width: 100%;
    height: auto;
  }

  .help-columns p {
    margin-bottom: 20px;
  }

  .button-wide,
  .feature-panel .button,
  .cta-buttons .button {
    width: 100%;
  }

  .button-wide {
    min-height: 70px;
  }

  .service-item p {
    font-size: 15px;
    line-height: 30px;
  }

  .lightbox {
    padding: 48px 44px;
  }

  .lightbox-prev {
    left: 6px;
  }

  .lightbox-next {
    right: 6px;
  }

  .cta h2 {
    font-size: 26px;
    line-height: 30px;
  }

  .cta p {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-logo {
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
