@font-face {
  font-family: "Monte Stella";
  src: url("/static/fonts/MonteStella_Bd.ttf") format("truetype");
}
:root {
  line-height: 1.5;
  font-weight: 400;
  font-size: 20px;
  color-scheme: light dark;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

a,
a:visited,
a:active {
  text-decoration: none;
  color: inherit;
}

button {
  padding: 1ch;
  border-radius: 0.5ch;
  margin: 0;
  background: inherit;
  color: inherit;
  border: solid 1px white;
  cursor: pointer;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin-top: 0;
  color: #316e93;
}

p {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

ul,
li {
  list-style: none;
}

body {
  container: body/inline-size;
  font-family: "Monte Stella", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  padding: 0;
  margin: 0;
  display: flex;
  background-color: #f2edd0;
  color: #303030;
}

main {
  min-height: calc(100svh - 7rem - 14rem - 0.65ch);
  container: main/inline-size;
  position: relative;
}

main > section.row:not(.hero) {
  width: min(128ch, 100%);
  margin: auto;
}

main > section.row:not(#offer-showcase, #video-hero):first-child {
  padding-top: 2rem;
}

.container {
  position: relative;
}

#skip-to-main {
  z-index: 999;
  background-color: white;
  color: black;
  position: absolute;
  transform: translateY(-2rem);
}

#skip-to-main:focus {
  transform: translateY(0);
}

#root {
  margin: 0;
  padding: 0;
  width: 100%;
}

img:not([src]) {
  background-color: black;
}

img:not(#header-logo) {
  object-fit: cover;
}

header {
  position: relative;
  z-index: 100;
  background: transparent;
  height: 7rem;
  width: 100%;
  box-shadow: 0px 0px 16px -2px #303030;
  display: flex;
  justify-content: center;
  align-items: center;
}
header > nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: min(100ch, 100%);
}
header > nav #header-home-link {
  flex: 1 1 0;
  display: flex;
  height: 7rem;
}
header > nav #header-home-link a {
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.25rem 0.25rem 0.25rem;
  margin-left: 4rem;
  display: flex;
  height: 6rem;
  width: fit-content;
}
header > nav #header-home-link a img {
  width: 100%;
  max-height: 85%;
}
header > nav ul {
  flex: 1 1 0;
  position: relative;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
header > nav ul > li {
  font-size: 1.5rem;
  margin-right: 3rem;
  color: #316e93;
}

.line-seperator {
  height: 1px;
  width: 100%;
  background-color: #303030;
}

footer {
  padding: 3ch;
  min-height: 14rem;
  background-color: #f2edd0;
  box-shadow: 0px 0px 16px -2px #303030;
}
footer #footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(15ch, 100%), 20%));
  color: #316e93;
}
footer #footer-links > div {
  padding: 1ch;
}
footer #footer-links #sitemap,
footer #footer-links #socials {
  display: grid;
  grid-column: 1fr;
  grid-template-rows: repeat(auto-fit, 1.5rem);
}
footer #footer-links #sitemap a,
footer #footer-links #socials a {
  width: fit-content;
}
footer #copyright-row {
  color: #316e93;
  padding: 1ch;
}

main > .row {
  padding-bottom: 3rem;
}

.card {
  border: 1px solid #303030;
  border-radius: 1rem;
  padding: 1ch;
}

.hidden {
  opacity: 0;
  scale: 0.8;
  transition: all 1s;
}

.show {
  opacity: 1;
  scale: 1;
}

span.scale-on-hover {
  display: inline-block;
  transition: all 0.5s ease;
}

.scale-on-hover {
  transition: all 0.5s ease;
}

span.scale-on-hover:hover,
.scale-on-hover:hover {
  scale: 1.05;
}

.input-invalid {
  background-color: pink;
}

@media (max-width: 767px) {
  header > nav #header-home-link > a {
    margin-left: 2rem;
  }
  header > nav ul > li {
    margin-right: 2rem;
    font-size: 1rem;
  }
}
@media (max-width: 575px) {
  header > nav #header-home-link > a {
    margin-left: 1rem;
  }
  header > nav ul > li {
    margin-right: 1rem;
  }
}

/*# sourceMappingURL=index.css.map */
