:root {
  --is-font: Arial, Helvetica, sans-serif;
  --is-red: #c0001a;
  --is-light-gray: #e6e6e6;
  --is-mid-gray: #bfbfbf;
  --is-text: #111;
}

/* =========================
   BASE
========================= */

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;
}

/* =========================
   DIVIDER
========================= */

.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);
}

/* =========================
   HERO
========================= */

.is-home-hero {
  background: #ffffff;
}

.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: 14px 0;
  text-align: center;
  background: #ffffff;
}

.is-home-hero-tagline-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--is-text);
}

/* =========================
   HOME WELCOME
========================= */

.is-home-welcome {
  background: #6a6a6a;
  padding: 34px 0;
}

.is-home-welcome-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 18px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.7;
}

.is-home-welcome-title {
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.6px;
  font-weight: 800;
  margin: 0 0 18px 0;
}

.is-home-welcome-copy p {
  margin: 0 0 14px 0;
  max-width: 72ch;
}

.is-home-list {
  margin: 12px 0 16px 22px;
  padding: 0;
  font-size: 16px;
  line-height: 1.75;
}

.is-home-list li {
  margin-bottom: 6px;
}

/* =========================
   CAROUSEL (AUTO SIZE)
========================= */

.is-home-carousel {
  background: #ffffff;
}

.is-carousel-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  background: #000;
  display: block;
}

/* =========================
   PAGE BODY / COPY
========================= */

.is-page-body {
  background: #ffffff;
  padding: 28px 0 30px;
}

.is-copy {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--is-text);
}

.is-copy p {
  margin: 0 0 16px 0;
}

/* =========================
   FOOTER
========================= */

.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-size: 13px;
  padding-top: 6px;
}

.is-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.is-contact-icon {
  color: var(--is-red);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 576px) {
  .is-home-hero-img {
    height: 220px;
  }

  .is-home-welcome-inner {
    font-size: 16px;
    line-height: 1.72;
  }

  .is-home-welcome-title {
    font-size: 20px;
  }

  .is-home-list {
    font-size: 15px;
    margin-left: 18px;
  }

  .is-carousel-img {
    max-height: 300px;
  }

  .is-divider-line {
    width: 110px;
  }
}
