.hero-section{
    background-image: url(/assets/imgs/img-slides/img-hero.jpg);
    background-position: bottom;
    background-size: cover;
    height: 80vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

        .hero-title{
            font-family: 'Inter', sans-serif;
            font-size: 3.5rem;
            color: white;
            text-align: center;

        }

        .hero-subtitle{
            font-family: 'Inter', sans-serif;
            font-weight: normal;
            font-size: 1rem;
            letter-spacing: 1px;
            color: white;
            text-align: center;
            max-width: 1200px;
        }


@media (max-width: 600px) {
    .hero{
        width: 80vw;
    }

        .hero-title{
            font-size: 2rem;
        }

        .hero-subtitle{
            font-family: 'Inter', sans-serif;
            font-weight: normal;
            font-size: 1rem;
            letter-spacing: 1px;
            color: white;
            text-align: center;
        }

}

