#accueil_container{
    width: 100%;
    margin-bottom: 50px;
    min-height: calc(100vh - 104px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#accueil_bandeau{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: calc(100vh - 104px);
    color: #fff;
    text-align: center;
    background-image: url("../img/background_accueil.jpg");
    background-position: center;
    background-size: cover;
}

#accueil_bandeau_inner{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#accueil_bandeau_title{
    display: flex;
    align-items: center;
    width: 50%;
    justify-content: center;
}

#accueil_bandeau_inner p{
    font-size: large;
    margin: 15px 0;
    text-align: justify;
}

#accueil_bandeau_title img{
    max-width: 500px;
    width: 80%;
    margin-right: 10px;
    -webkit-filter: drop-shadow(0 0 10px #000);
    filter: drop-shadow(0 0 10px #000);
}

#accueil_bandeau_text_container{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
}

#accueil_bandeau_text{
    text-align: start;
    margin: 20px 75px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

@media only screen and (max-width : 1300px) {
    #accueil_bandeau_inner{
        flex-direction: column;
    }
    #accueil_bandeau_text_container {
        width: 100%;
    }
    #accueil_bandeau_title {
        height: 100%;
    }
    #accueil_bandeau_title img {
        margin: 40px 0;
    }
    #accueil_bandeau_text{
        max-width: 950px;
        margin: 40px 75px;
    }
}




.accueil_section_container{
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
}

#accueil_section_container_vente{
    background-image: url("../img/background_accueil_vente.jpg");
}

#accueil_section_container_reprog{
    background-image: url("../img/background_accueil_reprog.jpg");
}

#accueil_section_container_import{
    background-image: url("../img/background_accueil_import.jpg");
}

.accueil_section{
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 30px 0;
}

.accueil_section_contrast{
    background-color: rgba(0, 0, 0, 0.7);
    color: #FFF;
}

.accueil_section p{
    width: 90%;
    max-width: 950px;
}




.action_button{
    background-color: var(--accentColor);
    border: none;
    color: #FFF;
    box-shadow: 0 0 3rem #00010129;
    font-size: larger;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    margin: 22px 0;
}

.see_more_button{
    margin-bottom: 0;
}

.action_button:hover{
    cursor: pointer;
    background-color: var(--darkerAccentColor);
}