:root {
  /* --wavecolor: #0b254e; */
  --wavecolor: #2478fc;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  min-height: 100%;
}


/* * {
  transition: width, 50ms;
} */

#loader-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: white;
  z-index: 4000;
}
/* #loader__fg {
  background-color: #2478fc;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
} */
#loader-fg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4400;
}

#wave-wrapper {
  position: absolute;
  left: 50%;
  top: 90%;
  transform: translateX(-50%);
  width: 50%;
  height: 100%;
  z-index: 5000; opacity: 0.5; /* TODO: remove */
}
#loader-wave {
  position: relative;
}

#content-wrapper svg {
  margin: 0;
  padding: 0;
  transition: none;
}
#content-wrapper svg:first-of-type {
  margin-bottom: -8px;
}
#wave-bottom {
  transform: scaleY(-1);
}

#wave-top,
#wave-bottom {
  fill: var(--wavecolor);
}


#wave-footer-wrapper {
    margin-top: -400px !important;
    overflow-y: visible;
}

#content {
  margin: 0;
  background-color: var(--wavecolor);
  color: white;
}

#content p:first-child {
  padding-top: 0;
  margin-top: 0;
}
#content p:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.lucide {
  stroke: black;
  height: 5rem;
  width: 5rem;
}

.card {
  margin: 1rem auto 1rem auto;
  padding: 0.5rem;
  padding-top: 2rem;
  border-radius: 1rem;
  background-color: white;
  color: black;
  display: grid;
  grid-template-rows: 6rem 10rem;
  place-items: center;
  text-align: center;
  line-height: 1.5;
  width: 80%;
}

.cards-dark .card {
  background-color: var(--wavecolor);
  color: white;
}

.cards-dark .card .lucide {
  stroke: white;
}

@media(min-width: 600px) {
  .card {
    width: 30%;
  }
}

.container-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.5%;
}

.footer {
  text-align: center;
  align-items: center;
  padding: 1rem;
  padding-top: 5rem;
  /* padding-bottom: 0; */
  position: relative;
  z-index: 4000;
  font-weight: 500;
  /* color: white; */
}

* {
  box-sizing: border-box;
}