@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 100 700;
  src: url("assets/fonts/material-symbols-outlined.woff2") format("woff2");
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Manrope', sans-serif;
    background: #f8f9fd;
    color: #191c1f;
}
/* .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
} */
.material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 24;
}
.container-page {
    max-width: 80rem;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.section-space {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.section-anchor {
    scroll-margin-top: 6rem;
}
.nav-link {
    position: relative;
    transition: color .2s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    width: 100%;
    height: 2px;
    background: #00833e;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}
.nav-link.active {
    color: #00833e;
}
.nav-link.active::after {
    transform: scaleX(1);
}
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.show {
    opacity: 1;
    transform: translateY(0);
}
.hero-panel {
    background: linear-gradient(180deg, rgba(248,249,253,.88), rgba(248,249,253,.76));
    backdrop-filter: blur(8px);
}
@media (min-width: 768px) {
    .section-space {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
    .section-anchor {
        scroll-margin-top: 7rem;
    }
}