html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    overflow-x: hidden;
}

.menu-bars,
.menu-bars::before,
.menu-bars::after {
    display: block;
    height: 2px;
    border-radius: 9999px;
    background: currentColor;
    content: "";
}

.menu-bars {
    position: relative;
}

.menu-bars::before,
.menu-bars::after {
    position: absolute;
    left: 0;
    width: 100%;
}

.menu-bars::before {
    top: -7px;
}

.menu-bars::after {
    top: 7px;
}

.hero-shell,
.page-hero {
    background-image:
        radial-gradient(circle at 32% 84%, rgba(34, 175, 164, .32), transparent 28%),
        linear-gradient(135deg, #101111 0%, #171918 60%, #222423 100%);
}

.hero-shell {
    background-image: url("/assets/img/hero_bg.jpg");
    background-position: center;
    background-size: cover;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(10, 12, 12, .86) 0%, rgba(10, 12, 12, .72) 44%, rgba(10, 12, 12, .5) 100%),
        radial-gradient(circle at 26% 72%, rgba(34, 175, 164, .28), transparent 30%),
        rgba(0, 0, 0, .38);
}

.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    position: absolute;
    right: -18rem;
    bottom: -22rem;
    width: 70rem;
    height: 36rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, .035);
    content: "";
    transform: rotate(-14deg);
}
