/* ===> 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);
}

/* ===> Story Section */
section.story h2 {
    font-size: 45px;
}

section.story .content {
    width: 100%;

    display: flex;
    flex-direction: row;

    justify-content: space-between;
    align-items: flex-start;

    gap: 15px;
}

section.story p {
    width: 100%;
    flex-grow: .5;
    font-size: 22px;
}

section.story img {
    width: 100%;
    max-width: 500px;

    border-radius: 10%;
}

@media (max-width: 900px) {
    section.story .content {
        flex-direction: column;
    }
}














































