.banner-about {
    position: relative;
    height: 220px;
    background: url('../webp/banners/modulo-60-banner-about-us.webp') no-repeat center;
    background-size: cover;
    background-position: 50% 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-about {
    opacity: 0;
    transition: opacity 1.2s ease;
}

.banner-about.animate {
    opacity: 1;
}

.banner-differentiation {
    background-image: url('../webp/banners/modulo-60-banner-differentiation.webp');
    background-size: cover;
    background-position: 50% 60%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-differentiation h1 {
    color: white;
    font-size: 22px;
}

.banner-differentiation p {
    color: white;
    font-size: 14px;
}

@media (max-width: 1200px) {
    .banner-about {
      height: 180px;
    }
}

@media (max-width: 768px) {
    .banner-about {
        height: 80px;
    }
}

