.cantarell,
.slideshow > .slide > p,
.slideshow > .slide > h3,
.card > h3,
.menu .header,
.logo > span,
.topbar > .left > h1 {
  font-family: "Cantarell", sans-serif;
  font-style: normal;
}

.sans,
body {
  font-family: sans-serif;
}

@media screen and (min-width: 600px) {
  .mobile-only {
    display: none !important;
  }
}

@media screen and (max-width: 600px) {
  .desktop-only {
    display: none !important;
  }
}

body {
  margin: 0;
  color: #201c10;
  user-select: none;
}

main {
  position: relative;
  top: 3.5rem;
  min-height: 100vh;
  padding-top: 3rem;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
@media screen and (min-width: 600px) {
  main {
    width: 60vw;
    padding-inline: 20vw;
  }
}
@media screen and (max-width: 600px) {
  main {
    width: 100vw;
    padding-inline: 1rem;
    box-sizing: border-box;
  }
}

section {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

footer {
  margin-top: 4rem;
  padding-block: 2rem;
  padding-inline: 20vw;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-sizing: border-box;
  background-color: #66a0e7;
  min-height: 20vh;
  color: white;
}
footer > * {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
h1.centered,
h2.centered,
h3.centered,
h4.centered,
h5.centered,
h6.centered {
  text-align: center;
}

h1.title {
  font-size: 8rem;
  margin-block: 2rem;
  font-weight: 700;
}

h2.title {
  font-size: 4rem;
  font-weight: 700;
  margin-block: 2rem;
}

.topbar {
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100vw;
  height: 3.5rem;
  z-index: 100;
  padding-inline: 1rem;
  background: radial-gradient(
    ellipse at top,
    rgba(102, 160, 231, 0.5) 0%,
    rgba(102, 160, 231, 0.85) 70%
  );
  border-bottom: solid rgba(32, 28, 16, 0.1) 2px;
}
.topbar > .left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.topbar > .left > h1 {
  font-weight: bolder;
  font-size: 1.5rem;
  margin-inline-start: 1rem;
  color: white;
}
.topbar > .right {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 600px) {
  .topbar > .right {
    flex: 1;
  }
}
.topbar a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.topbar * {
  color: white;
}

.logo > img {
  height: 2.5rem;
}
.logo > span {
  font-weight: bolder;
  font-size: 1.5rem;
  margin-left: 0.5rem;
  color: white;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: none;
}

.searchbox {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 0.5rem;
  max-width: 20rem;
  height: 2.5rem;
  transition: max-width 0.5s ease;
  background-color: white;
  border-radius: 1rem;
  color: #201c10;
  box-sizing: border-box;
}
.searchbox.expanded {
  height: fit-content;
}
.searchbox.collapsed {
  max-width: 0;
  height: 2.5rem;
}
.searchbox > .searchbox-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.searchbox > .searchbox-bar > .searchbox-input {
  all: unset;
  flex: 1;
  padding-left: 1rem;
  border: none;
  color: #201c10;
}
.searchbox > .searchbox-bar > .searchbox-btn {
  width: 2.5rem;
  height: 2.5rem;
}
.searchbox > .searchbox-bar > .searchbox-btn > i {
  color: #201c10;
}
.searchbox > .searchbox-results {
  padding-inline: 1rem;
  padding-bottom: 1rem;
}
.searchbox > .searchbox-results * {
  color: #201c10;
}
.searchbox > .searchbox-results > span {
  color: #66a0e7;
  font-size: 1.25rem;
}

.content {
  display: flex;
  flex-direction: row;
}

.menu {
  position: fixed;
  top: 3.5rem;
  left: 0;
  height: 100%;
  z-index: 100;
  width: max(20vw - 1rem, 20rem);
  background-color: white;
  overflow: hidden;
  transition: left 0.25s ease-in-out;
  padding: 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .menu {
    width: 100vw;
  }
}
.menu ul {
  list-style-type: none;
  padding-left: 0.5rem;
}
.menu ul li {
  font-size: 1.25rem;
  transition: font-size 0.5s ease-in-out;
}
.menu ul li:hover {
  font-size: 1.5rem;
}
.menu a {
  text-decoration: none;
  color: #201c10;
}
.menu.collapsed {
  left: min(-20rem, -20vw);
}
@media screen and (max-width: 600px) {
  .menu.collapsed {
    left: -100vw;
  }
}
.menu .header {
  color: #66a0e7;
  font-size: 1.5rem;
  font-weight: bold;
}

.menu-btn {
  background: none;
  margin-left: 1rem;
}
.menu-btn > i {
  font-size: 1.5rem;
}

.background {
  position: fixed;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(rgba(32, 28, 16, 0), rgba(102, 160, 231, 0.5));
}

.cardframe {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
}
.cardframe > .card {
  flex: 1 1 20rem;
}

@keyframes grow {
  0% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}
.card {
  display: block;
  position: relative;
  background-color: white;
  overflow: hidden;
  min-width: 20rem;
  box-sizing: border-box;
  height: 10rem;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 0 2rem 2rem rgba(102, 160, 231, 0.25);
  transition: box-shadow 0.5s ease;
}
.card:hover {
  box-shadow: 0 0 3rem 3rem rgba(102, 160, 231, 0.25);
}
.card > * {
  position: relative;
  z-index: 2;
}
.card > h3 {
  font-size: 1.5rem;
  margin: 0;
  transition: color 0.5s ease;
}
.card:hover .card-bg {
  scale: 10;
}
.card:hover .card-img {
  width: 50%;
  height: 12rem;
}
.card:hover .card-btn {
  bottom: 1.75rem;
  animation: grow 1s ease;
}
.card:hover .card-hint {
  scale: 0;
}
.card:hover h3 {
  color: white;
}

.card-bg {
  position: absolute;
  z-index: 1;
  left: -64px;
  bottom: -64px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background-color: #66a0e7;
  transition: scale 0.5s ease;
}

.card-img {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  transition:
    width 0.5s ease,
    height 0.5s ease;
  overflow: hidden;
}

.card-img > img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-btn {
  all: unset;
  background-color: white;
  padding: 0.5rem;
  border-radius: 0.25rem;
  z-index: 2;
  position: absolute;
  bottom: -4rem;
  left: 1.5rem;
  transition:
    bottom 0.5s ease,
    background-color 0.2s ease;
}

.card-btn:hover {
  background-color: lightgray;
}

.card-hint {
  position: absolute;
  z-index: 3;
  bottom: 1rem;
  left: 1rem;
  scale: 1.5;
  color: white;
  transition: scale 0.25s ease-in-out;
}

@keyframes slider {
  0% {
    width: 0;
    opacity: 0.4;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
@keyframes shift {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.1;
  }
}
.slideshow {
  overflow: hidden;
  position: relative;
  flex-direction: row;
  height: 50vh;
  background-color: #000000;
  border-radius: 1rem;
  box-shadow: 0 0 2rem 2rem rgba(102, 160, 231, 0.25);
  transition: box-shadow 0.5s ease;
}
.slideshow:hover {
  box-shadow: 0 0 3rem 3rem rgba(102, 160, 231, 0.25);
}
@media screen and (max-width: 600px) {
  .slideshow {
    width: 100vw;
    margin-inline: -1rem;
    border-radius: 0;
  }
}
.slideshow > .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}
.slideshow > .slide.active {
  opacity: 1;
}
.slideshow > .slide > h3 {
  margin: 3rem;
  position: relative;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  z-index: 3;
}
.slideshow > .slide > p {
  margin-top: 1.5rem;
  margin-left: 3rem;
  width: 75%;
  position: relative;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 3;
}
.slideshow > .slide > img {
  position: absolute;
  top: 0;
  min-width: 60vw;
  min-height: 50vh;
  animation: shift 20s ease-in-out infinite;
  filter: brightness(0.5);
}
@media screen and (max-width: 600px) {
  .slideshow > .slide > img {
    width: unset;
    height: 50vh;
  }
}
.slideshow > button {
  all: unset;
  bottom: 0;
  position: absolute;
  display: flex;
  margin: 1rem;
  font-size: 2rem;
  z-index: 2;
  color: white;
}
.slideshow > button.slideshow-btn-left {
  left: 0;
}
.slideshow > button.slideshow-btn-right {
  right: 0;
}
.slideshow > .slideshow-btns {
  position: absolute;
  display: flex;
  flex-direction: row;
  column-gap: 0.25rem;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
}
.slideshow > .slideshow-btns > button {
  all: unset;
  bottom: 0;
  position: relative;
  align-items: center;
  display: flex;
  margin-block: 1rem;
  font-size: 1rem;
  z-index: 2;
  color: white;
  transition: font-size 0.25s ease;
}
.slideshow > .slideshow-btns > button.active {
  font-size: 1.5rem;
}
.slideshow > .slideshow-progress {
  position: absolute;
  background-color: #66a0e7;
  width: 100%;
  height: 4px;
  bottom: 0;
  border-radius: 4px;
}
.slideshow > .slideshow-progress.animate {
  animation: slider 10s linear infinite;
}

@keyframes slide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.imagetrack {
  width: 100%;
  height: fit-content;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #66a0e7;
  box-shadow: 0 0 2rem 2rem rgba(102, 160, 231, 0.25);
  transition: box-shadow 0.5s ease;
}
.imagetrack:hover {
  box-shadow: 0 0 3rem 3rem rgba(102, 160, 231, 0.25);
}
.imagetrack > .slider {
  display: flex;
  flex-direction: row;
  width: fit-content;
  margin-top: 2rem;
  row-gap: 1rem;
  animation: slide 120s linear infinite;
}
.imagetrack > .slider > .frame {
  display: flex;
  width: fit-content;
  height: fit-content;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 1rem;
  height: 8rem;
  margin-left: 1rem;
  border-radius: 0.5rem;
  transition:
    scale 0.5s ease,
    box-shadow 0.5s ease;
}
.imagetrack > .slider > .frame > img {
  width: 20vw;
  height: 100%;
  object-fit: contain;
}
.imagetrack > .slider > .frame:hover {
  scale: 1.075;
  box-shadow: 0 0 2rem 2rem rgba(102, 160, 231, 0.25);
}
.imagetrack .imagetrack-toggle {
  all: unset;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2rem;
}
.imagetrack .imagetrack-toggle > i {
  color: white;
  scale: 1.5;
  transition: scale 0.5s ease-in-out;
}
.imagetrack .imagetrack-toggle:hover > i {
  scale: 1.75;
}
.imagetrack.expanded {
  overflow: unset;
  padding-top: 1rem;
}
.imagetrack.expanded > .slider {
  margin-top: 1rem;
  flex-wrap: wrap;
  animation: none;
  padding-inline: 1rem;
  gap: 1rem;
}
.imagetrack.expanded > .slider > .frame {
  flex: 1;
  margin-left: 0;
}
.imagetrack.expanded > .slider > .frame.duplicate {
  display: none;
}
.imagetrack.expanded > .slider > .frame > img {
  width: unset;
}

.search-highlight {
  color: white;
  background-color: red;
}

ul.list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style-type: none;
}
ul.list > li {
  background-color: white;
  color: #201c10;
  width: 100%;
  min-height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
  box-sizing: border-box;
  box-shadow: 0 0 2rem 2rem rgba(102, 160, 231, 0.25);
  transition: box-shadow 0.5s ease;
  scale: 1;
  transition: scale 0.5s ease-in-out;
}
ul.list > li:hover {
  box-shadow: 0 0 3rem 3rem rgba(102, 160, 231, 0.25);
}
ul.list > li:hover {
  scale: 1.05;
}

.pill {
  display: flex;
  flex-direction: row;
  border-radius: 1rem;
  min-height: 4rem;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 0 2rem 2rem rgba(102, 160, 231, 0.25);
  transition: box-shadow 0.5s ease;
}
.pill > * {
  display: flex;
  flex-direction: row;
  align-items: center;
  box-sizing: border-box;
}
.pill > .heading {
  background-color: #66a0e7;
  color: white;
  justify-content: center;
  min-width: 10rem;
  font-size: 1.15rem;
  font-weight: bold;
}
.pill > .text {
  background-color: white;
  color: #201c10;
  flex: 1;
  padding: 0.5rem;
}
.pill:hover {
  box-shadow: 0 0 3rem 3rem rgba(102, 160, 231, 0.25);
}

.pillbox {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pillbox > .pill {
  flex: 1;
}

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