<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.hero {
    display: grid;
    grid-template-columns: repeat(12,1fr);
    grid-template-rows: auto;
    background-color: #333;
}
@media (max-width: 480px) {
  .transparency {}
}

.hero {
	/* grid-template: "container"; */
	overflow: hidden;
}
section.hero,
.hero-section.hero,
.hero .image-slide {
  max-height: clamp(450px, 50vh, 600px);
}

.hero &gt; div {
  grid-column: 1/13;
  grid-row: 1/2;
}
.transparency {
  background-color: rgba(0, 0, 0, 0.45);
  height: 100%;
}

section.hero .image-hero,
.hero-section.hero .image-hero {
  min-width: 100%;
  min-height: 100%;   
}

section.hero .image-container .image img,
.hero-section.hero .image-container .image img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  height: auto;
  max-width: unset;
}
section.hero .image-container .image,
.hero-section.hero .image-container .image {
  min-width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}

section.hero .image-container .image-slide,
.hero-section.hero .image-container .image-slide,
section.hero .image-container,
.hero-section.hero .image-container {
  height: 100%;
}

.hero .hero-content {
  margin: 0;
  background-color: transparent;
  grid-column: 2/8;
}

.hero h1,
.hero h2 {
  color: var(--lightest);
  margin-bottom: 0;
}

.hero .summary,
.hero .summary p,
.hero .summary p a:not(.bttn) {
  margin-bottom: 0;
  font-size: 1.25rem;
  color:var(--lightest);
}

.hero .hero-button {
  display: inline-block;
}

.hero .hero-button .bttn {
  display: inline-block;
}

.hero a.bttn {
  background-color: var(--accent3-50);
  border-radius: 35px;
  display: inline-block;
  padding: .75rem 2rem;
  margin: .75rem 0;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
}
.hero p + p&gt;a.bttn {
      margin-top: .75em;
}

.hero a.bttn:hover,
.hero a.bttn:active,
.hero a.bttn:focus {
  background: var(--accent1);
  color: var(--lightest);
}

.hero .image-content {
padding: 0 0 3rem 0;
margin: 0;
display: grid;
grid-template-columns: subgrid;
align-items: end;
}
@media (max-width: 480px) {
  .hero .image-content {
    padding: 0 0 1.5rem 0;
  }
}

@media (799px &lt; width) {
  .hero {
    grid-template-rows: auto;
  }
}
@media (max-width: 1000px) {
  .hero h1 {
    font-size: 46px;
  }
  .hero .summary,
  .hero .summary p {
    margin-bottom: 0rem;
    font-size: 16px;
  }
  .hero a.bttn {
    font-size: 16px;
  }
}
@media (max-width: 817px) {
  .hero h1 {
    font-size: 42px;
  }
  .hero .summary,
  .hero .summary p {
    font-size: 17px;
  }
  .hero a.bttn {
    font-size: 14px;
  }
}
@media (max-width: 676px) {
  .hero h1 {
    font-size: 38px;
  }
  .hero .summary,
  .hero .summary p {
    font-size: 16px;
  }
  .hero .hero-content {
  grid-column: 2/10;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero .summary,
  .hero .summary p {
    font-size: 14px;
  }

  .hero .hero-content {
    
  grid-column: 2/12;
  }
}</pre></body></html>