* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}
html,
body {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  background-color: #fff8f3;
}
body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1.6rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}
body header {
  flex-grow: 0;
}
body main {
  flex-grow: 1;
}
body footer {
  flex-grow: 0;
}
img {
  width: 100%;
}
.site-wrapper {
  max-width: 76.8rem;
  width: 100%;
  height: 100%;
  margin: auto;
}
input,
button {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1.6rem;
}
.hide {
  display: none !important;
}
header {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #005571;
}
header .background-image {
  width: 100%;
  height: 100%;
}
header .background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main {
  padding: 2rem;
}
footer {
  width: 100%;
  min-height: 12rem;
  background-color: #005571;
  display: flex;
  align-items: center;
}
footer > ul {
  display: flex;
  list-style: none;
  gap: 1rem;
  padding: 0 1rem;
}
footer > ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.3rem;
}
h1 {
  font-size: 3.6rem;
  font-weight: 300;
}
h2 {
  font-family: "Whisper";
  font-size: 5rem;
  font-weight: 100;
  text-align: center;
  color: #6a655f;
}
a {
  color: #7c8d9d;
  font-weight: 500;
  text-decoration: none;
}
a:hover {
  color: #495a6a;
}
p {
  margin-bottom: 1.2rem;
}
.loading-ellipsis {
  color: #555;
  display: inline-block;
  position: relative;
  width: 8rem;
  height: 8rem;
}
ul.events {
  list-style: none none;
  padding-left: 6rem;
}
ul.events::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0.3rem;
  top: 0;
  left: 3rem;
  background-color: #6a655f;
  border-radius: 0.2rem;
}
ul.events strong {
  font-weight: 600;
}
ul.events p {
  margin: 1.4rem 0;
}
ul.events li {
  color: #6a655f;
}
ul.events li p {
  padding-left: 1rem;
}
ul.events li .event {
  display: inline-block;
}
ul.events li .event::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 1.2rem;
  background-color: #6a655f;
  position: absolute;
  left: -4.7rem;
  border: solid 0.3rem #fff8f3;
  top: 0.5rem;
}
ul.events li .time {
  font-size: 1.4rem;
  font-weight: 400;
}
ul.events li .location {
  font-size: 1.4rem;
}
.center {
  margin: 0 auto;
}
.center.half {
  max-width: 50vw;
}
.center.three-quarter {
  max-width: 75vw;
}
.loading-ellipsis div {
  position: absolute;
  top: 3.33rem;
  width: 1.33rem;
  height: 1.33rem;
  border-radius: 50%;
  background: currentColor;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loading-ellipsis div:nth-child(1) {
  left: 0.8rem;
  animation: loading-ellipsis1 0.6s infinite;
}
.loading-ellipsis div:nth-child(2) {
  left: 0.8rem;
  animation: loading-ellipsis2 0.6s infinite;
}
.loading-ellipsis div:nth-child(3) {
  left: 3.2rem;
  animation: loading-ellipsis2 0.6s infinite;
}
.loading-ellipsis div:nth-child(4) {
  left: 5.6rem;
  animation: loading-ellipsis3 0.6s infinite;
}
@keyframes loading-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes loading-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes loading-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(2.4rem, 0);
  }
}
@media (min-width: 1023px) {
  .site-wrapper {
    margin: 0;
    left: calc(50% + 12.8rem);
    transform: translateX(-50%);
  }
}
