#hero.parallax-hero {
    position: relative;
    padding: 180px 0;
    background-image: url('../../../assets/images/piao.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(8, 56, 97, 0.88);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
}

#hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin: 0 auto 20px auto;
    font-weight: 700;
    font-family: var(--font-headings);
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
    /* max-width: 700px; */
    line-height: 1.2;
}

#hero .subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    opacity: 0.95;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}