/* ===> Hero section */
section.hero {
    height: auto;
    padding-top: 150px !important;
    padding-bottom: 80px !important;

    background-color: #ffffff;
    background-image: url("../assets/banner1.jpeg");

    background-position: center top;

    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

section.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(255, 255, 255, 0.10);
}

section.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    background: radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(255, 255, 255, 0.75) 25%,
            rgba(255, 255, 255, 0.5) 45%,
            rgba(255, 255, 255, .1) 70%
    );
}

section.hero .content {
    z-index: 4;
}

section.hero h1 {
    font-size: 60px;
    color: var(--accent);
}
