@charset "UTF-8";
/**
 * Utility functions, mixins, and variables.
 *
 * ⚠️ This is a SCSS helper file - it should not output any CSS when compiled.
 * ⚠️ This file should only contain import statements. No CSS/SCSS.
 */
/**
 * Global SCSS Functions
 *
 * ⚠️ This is a SCSS helper file - it should not output any CSS when compiled.
 */
/**
 * Utility functions, mixins, and variables.
 *
 * ⚠️ This is a SCSS helper file - it should not output any CSS when compiled.
 * ⚠️ This file should only contain import statements. No CSS/SCSS.
 */
/**
 * Global SCSS Mixins
 *
 * ⚠️ This is a SCSS helper file - it should not output any CSS when compiled.
 */
/**
 * Global SCSS Variables
 *
 * ⚠️ This is a SCSS helper file - it should not output any CSS when compiled.
 */
/**
* Visual Navigation
*/
.visual-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 1.2rem;
  margin: 3rem auto;
}
.visual-nav > li {
  margin: 0;
  padding: 0;
}
.visual-nav li {
  position: relative;
}
.visual-nav li a:hover::before, .visual-nav li a:focus-visible::before {
  transform: scaleY(1.3);
}
.visual-nav li a:hover::after, .visual-nav li a:focus-visible::after {
  opacity: 0.5;
}
.visual-nav li a:hover > svg, .visual-nav li a:focus-visible > svg {
  background: white;
  color: #00445e;
}
.visual-nav li a:hover .img-contain img, .visual-nav li a:focus-visible .img-contain img {
  filter: grayscale(1) blur(3px);
  transform: scale(1.03);
  opacity: 0.5;
}
.visual-nav li a:hover .content-contain, .visual-nav li a:focus-visible .content-contain {
  transform: translateY(-20px);
}
.visual-nav li a > svg {
  display: block;
  top: 3%;
  right: 3%;
  position: absolute;
  width: 3.25em;
  height: 3.25em;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  user-select: none;
  transition: all 0.3s ease;
  border: 2px solid white;
  border-radius: 50%;
  transform: rotate(-45deg);
  padding: 0.25em;
}
.visual-nav li .no-link,
.visual-nav li a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: white;
  background: #222222;
  overflow: hidden;
  padding: clamp(20px, 10%, 30px) clamp(20px, 10%, 40px);
  height: 100%;
  aspect-ratio: 1/1;
  max-height: 450px;
  width: 100%;
}
.visual-nav li .no-link::before,
.visual-nav li a::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: 3;
  transition: all 0.3s ease;
  background: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 25%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0) 100%);
  transform-origin: bottom;
}
.visual-nav li .no-link::after,
.visual-nav li a::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: 4;
  background: #00445e;
  mix-blend-mode: color;
  opacity: 0;
  transition: all 0.3s ease;
}
.visual-nav li .no-link .img-contain,
.visual-nav li a .img-contain {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background: #00445e;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.visual-nav li .no-link .img-contain img,
.visual-nav li a .img-contain img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  max-height: none;
  max-width: none;
  transition: all 0.3s ease;
  will-change: filter, transform, opacity;
}
.visual-nav li .no-link .content-contain,
.visual-nav li a .content-contain {
  position: relative;
  z-index: 5;
  transition: all 0.3s ease;
  text-wrap: balance;
}
.visual-nav li .no-link .content-contain > :first-child,
.visual-nav li a .content-contain > :first-child {
  margin-top: 0;
}
.visual-nav li .no-link .content-contain > :last-child,
.visual-nav li a .content-contain > :last-child {
  margin-bottom: 0;
}
.visual-nav li .no-link .content-contain h3,
.visual-nav li a .content-contain h3 {
  margin: 0;
}
.visual-nav li .no-link .content-contain p,
.visual-nav li a .content-contain p {
  margin-top: 0.5em;
}