@import url("https://fonts.googleapis.com/css2?family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Sour Gummy", sans-serif;
  font-weight: 300;
  background-color: #f8efe8;
}
body main {
  padding: 1em;
}
body main header.home-hero {
  max-width: 1000px;
  min-height: 80vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 2em;
  line-height: 1.5;
}
body main section {
  width: 100%;
}
body main section:not(:first-of-type) {
  margin-top: 4em;
}
body main section > * {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
body main section h2 {
  margin-bottom: 1em;
}

nav {
  z-index: 1000;
  width: 100vw;
  position: sticky;
  top: 0;
  background-color: rgb(from #f8efe8 r g b/0.5);
  backdrop-filter: blur(10px);
  mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10%);
}
nav div {
  max-width: 1000px;
  margin: auto;
  padding: 1em;
  display: flex;
  justify-content: space-between;
}
nav div a {
  color: black;
  padding: 0.25em 0.5em;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.25s;
}
nav div a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
nav div ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
nav div ul li {
  margin: 0 0.5em;
}

strong.accent {
  color: #26875e !important;
}

video {
  width: 100%;
  margin: auto;
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
video .expanding-video {
  transition: all 0.25s;
}

section.contact-card > div {
  backdrop-filter: brightness(0.95);
  border-radius: 5px;
  padding: 1em 0;
  font-size: 1.25em;
  line-height: 1.5;
  text-align: center;
}
section.contact-card > div a {
  color: #26875e;
  text-decoration: none;
}

img.juicy-hover {
  transition: all 0.5s;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
img.juicy-hover:hover {
  transform: scale(1.05);
}

.image-wall {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.image-wall img {
  margin: 1em;
  border-radius: 5px;
}
.image-wall.image-wall-16-9 img {
  max-width: 450px;
  aspect-ratio: 16/9;
}
@media screen and (max-width: calc(450px + 2em)) {
  .image-wall.image-wall-16-9 img {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

hr {
  max-width: 1000px;
  margin: 1em auto;
  border: 0;
  border-top: 1px solid #cacaca;
}

a {
  color: #26875e;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a.rig-page-link {
  color: black;
}
a.rig-page-link:hover {
  text-decoration: none;
}

section p {
  font-size: 1.25em;
}

footer {
  padding: 1em;
  text-align: center;
  color: #cacaca;
}

/*# sourceMappingURL=main-compiled.css.map */