.section.bandeau {
    background-color: var(--bright);
    box-shadow: 2px 2px 10px 0 var(--accent-color);
}

.section-bandeau {
    padding: 64px 30px;
}

.section-bandeau-logo {
    text-align: center;
}

.section-bandeau-logo img {
    border-radius: 100%;
    height: 200px;
    width: 200px;
    object-fit: cover;
}

.section-bandeau h2 {
    margin: 48px 0 16px;
}

.section-bandeau h2::before {
    content: none;
}

.section-bandeau a.section-btn {
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .section-bandeau {
        display: flex;
        align-items: center;
        gap: 48px;
        justify-content: center
    }

    .section-bandeau-logo {
        text-align: right;
    }

    .section-bandeau-content {
        padding: 25px 0;
        width: 60%;
    }

    .section-bandeau h2 {
        margin: 0 0 16px;
        text-align: left;
    }

    .section-bandeau a.section-btn {
        margin: 0;
    }

}