:root {
  --is-font: Arial, Helvetica, sans-serif;
  --is-red: #c0001a;
  --is-light-gray: #e6e6e6;
  --is-mid-gray: #bfbfbf;
  --is-text: #111;
}

body {
  font-family: var(--is-font);
  line-height: 1.5;
  color: var(--is-text);
}

a {
  color: #1a73e8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header nav a {
  font-weight: 600;
}

h1, h2, h3 {
  font-weight: 700;
}

.is-divider {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.is-divider-line {
  width: 170px;
  height: 1px;
  background: var(--is-mid-gray);
  display: inline-block;
}

.is-divider-icon {
  font-size: 18px;
  line-height: 1;
  color: var(--is-red);
}

.is-hero {
  background: #ffffff;
  padding-top: 22px;
  padding-bottom: 10px;
  text-align: center;
}

.is-hero-title {
  font-family: var(--is-font);
  font-size: 44px;
  letter-spacing: 2px;
  font-weight: 300;
  color: var(--is-light-gray);
  margin: 0;
  text-transform: uppercase;
}

.is-page-body {
  background: #ffffff;
  padding-top: 28px;
  padding-bottom: 30px;
}

.is-copy {
  max-width: 760px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  font-family: var(--is-font);
  font-size: 14px;
  line-height: 1.65;
  color: var(--is-text);
}

.is-copy p {
  margin: 0 0 16px 0;
}

.is-badge-wrap {
  margin-top: 26px;
  margin-bottom: 16px;
  text-align: center;
}

.is-badge {
  width: 140px;
  height: auto;
}

.is-contact-strip {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--is-font);
  font-size: 13px;
  color: var(--is-text);
  padding-top: 6px;
}

.is-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.is-contact-icon {
  color: var(--is-red);
}

.is-home-hero-banner {
  width: 100%;
  background: #000;
}

.is-home-hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.is-home-hero-tagline {
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: center;
  background: #ffffff;
}

.is-home-hero-tagline-text {
  font-family: var(--is-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--is-text);
}

.is-home-welcome {
  background: #6a6a6a;
  padding-top: 26px;
  padding-bottom: 26px;
}

.is-home-welcome-inner {
  max-width: 760px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  color: #ffffff;
  font-family: var(--is-font);
  font-size: 11px;
  line-height: 1.55;
}

.is-home-welcome-title {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin: 0 0 14px 0;
}

.is-home-welcome-copy p {
  margin: 0 0 10px 0;
}

.is-home-list {
  margin: 0 0 12px 18px;
  padding: 0;
}

.is-home-list li {
  margin-bottom: 3px;
}

@media (max-width: 576px) {
  .is-hero-title {
    font-size: 34px;
  }

  .is-divider-line {
    width: 110px;
  }

  .is-home-hero-img {
    height: 220px;
  }
}
