body {
  color: #333;
  font-family: sans-serif;
  line-height: 1.5;
  margin: 0;
  width: 100%;
  padding: 0;
}

main {
    width: 100%;
}

h1, h2, h3 {
    margin: 0;
    font-family: Menlo, Monaco, "Courier New", monospace;
    text-align: left;
    scroll-margin-top: 6rem;
}

h1 {
    color: #222;
    font-weight: 400;
    font-size: clamp(0.5rem, 3vh, 3rem);
}

a {
    color: #222;
    text-decoration: underline;
}


.section {
    box-sizing: border-box;
    padding: 2rem 2rem;
    width: 100%;
}

.section > * {
    margin-left: auto;
    margin-right: auto;

    max-width: 830px;
}

.intro {
    text-align: center;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}


.content {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    box-sizing: border-box;
}

.banner-content > h1 {
    color: #fff;
    font-weight: 400;
    text-align: center;
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
    margin-left: auto;
    margin-right: auto;
    width: 45rem;
}

.banner {
  position: relative;
  height: 500px;
  width: 100%;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  border-bottom: 5px solid #C52A2C;
}

.banner img {
    height: 100%;
    width: 100%;

    object-fit: cover;
    object-position: center;

    filter: brightness(80%) contrast(70%);
    z-index: -1; /* behind content */
}

.banner .banner-content {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  padding: 0;
  margin: 0;

  z-index: 1;
}

.banner-content > h1 {
    color: white;

    font-size: clamp(2rem, 5vw, 3.27rem);
    max-width: min(40rem, 100vw);


    padding: 0;
    margin: 0;
}

.content {
    padding-top: 2rem;
    max-width: 830px;
}

.content img {
    width: 100%;
}

@media (max-width: 830px) {
    .banner {
        height: min(500px, 60vw);
    }

    .content {
        padding: 0 1rem;
    }
}
.colocate {
    display: grid;
}

.colocate > * {
    grid-area: 1/1;
}
.horiz {
    display: grid;
    /* grid-auto-flow: column; */
    /* grid-auto-columns: 1fr; */

    grid-template-columns: repeat(auto-fit, minmax(max(300px, 50%), 1fr));

    gap: 0;
    padding: 0;
    overflow: hidden;
}

.horiz img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.horiz div {
    width: 100%;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
}
.contact-button {
    background: #993333;
    color: white !important;
    background-color: #993333 !important;
    border: none;
    transition: all 0.1s 
ease;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
}

.contact-button:hover {
    transform: scale(1.05);
}
.option-row-element > * {
    transition: all 0.2s ease
}

.option-row-element:hover {
    text-shadow: 0px 0px 10px lightgrey;
}

.option-row-element:hover img {
    filter: brightness(50%) drop-shadow(5px 5px 10px rgba(0,0,0,0.5));
}
/* For the icon lists on the main page */
.option-row {
  max-width: 100%;
  /* overflow: hidden; */

  display: flex;
  flex-wrap: wrap;

  justify-content: center;
  gap: 2rem;
}

.option-row img {
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  text-align: center;;

  width: 120px;

  filter: brightness(50%);
}

.option-row h2 {
    font-family: sans-serif;
    text-align: center;
    font-weight: 200;
    font-size: 1.4rem;
    padding: 0;
    margin: 0;
}

#option-row-1-text {
    margin-top: 3rem;
    max-width: 40rem;
    margin-right: auto;
    margin-left: auto;

    padding-left: 20px;
    padding-right: 20px;
}

#option-row-1-text * {
    text-align: center;
}
