* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "RidleyRegular";
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/RidleyGroteskRegular/font.woff2") format("woff2"), url("/fonts/RidleyGroteskRegular/font.woff") format("woff");
}
@font-face {
  font-family: "RidleyBold";
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/RidleyGroteskBold/font.woff2") format("woff2"), url("/fonts/RidleyGroteskBold/font.woff") format("woff");
}
body {
  font-family: "RidleyRegular";
}

p {
  line-height: 1.5;
}

img {
  max-width: 100%;
}

.bold {
  font-family: "RidleyBold";
}

.container {
  width: min(90%, 1440px);
  margin-inline: auto;
}

.flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.flex.justify-space-between {
  width: 100%;
  justify-content: space-between;
}

.grid {
  display: grid;
}

header {
  padding-block: 1rem;
}
header .logo {
  max-width: 7rem;
}
header a {
  text-decoration: none;
  color: black;
  line-height: 1.5;
}
@media (min-width: 768px) {
  header .logo {
    max-width: 10rem;
  }
  header a {
    font-size: 1.2rem;
    text-align: right;
  }
}

.banner {
  position: relative;
  color: white;
}
.banner img.background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .container {
  position: relative;
  z-index: 2;
}
.banner .flex {
  align-items: start;
  flex-direction: column;
}
.banner .flex h1 {
  font-family: "RidleyBold";
  font-size: 2rem;
}
.banner .flex img {
  max-width: 7rem;
}
.banner .flex p {
  padding-top: 1rem;
  max-width: 50ch;
}
.banner .flex .text {
  padding: 5rem 0 7rem 0;
  align-self: center;
  margin-top: -2rem;
}
@media (min-width: 768px) {
  .banner img.background {
    height: 87.2%;
  }
  .banner .flex {
    flex-direction: row;
    gap: 3rem;
  }
  .banner .flex img {
    max-width: 10rem;
  }
}

.content {
  padding-block: 5rem;
}
.content .container {
  width: min(90%, 75ch);
}
.content .bold {
  font-size: 1.2rem;
}
.content h2 {
  font-family: "RidleyBold";
  padding-top: 2rem;
  font-size: 2rem;
  color: #007178;
}
.content ul {
  padding-left: 2rem;
}
.content ul li {
  line-height: 1.5;
}
.content .padding-top {
  padding-top: 1.5rem;
}

footer {
  background-color: #007178;
  color: white;
  padding-block: 3rem;
}
footer a {
  color: white;
  text-decoration: none;
}
footer .large {
  font-size: 1.2rem;
  font-family: "RidleyBold";
}
footer .grid {
  gap: 0.6rem;
}/*# sourceMappingURL=style.css.map */