﻿.autosize-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

@media screen and (max-width: 1920px) {
    .autosize-container {
        max-width: 1280px;
    }
}

@media screen and (max-width: 1280px) {
    .autosize-container {
        padding: 0 10px;
    }
}

.bandeau-highlight {
    width: 100%;
    background: #161616;
}

    .bandeau-highlight .autosize-container {
        display: flex;
        gap: 70px;
        align-items: center;
        justify-content: center;
        padding: 20px 0
    }
.bh-img {
    width: 365px;
    flex: none;
}
    .bh-img img {
        width: 100%;
        height: auto;
    }
.bh-txt {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 50%
}
.bh-head {
    display: flex;
    flex-direction: column;
}
.bh-surtitre {
    color: #FFEB68;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
}

.bh-title {
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
}

.bh-intro p {
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    max-width: 670px
}

.bh-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 40px;
    background: #FFF;
    color: #000;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.3s ease
}
    .bh-btn:hover {
        background: #161616;
        border: 1px solid white
    }
    .bh-btn:hover span {
        color: white;
    }
@media screen and (max-width: 1280px) {
    .bandeau-highlight .autosize-container {
        padding: 20px
    }
}
@media screen and (max-width: 850px) {
    .bandeau-highlight .autosize-container {
        flex-direction: column;
    }
    .bh-txt {
        max-width: 100%
    }
    .bh-txt, .bh-head, .bh-intro {
        text-align: center
    }
    .bh-cta  {
        display: flex;
        justify-content: center
    }
}

