#hero_index {
    margin: 7vh;
    text-align: left;
    margin-bottom: 10vh;
}

#section_hero {
    margin-top: 1vh;
    display: flex;
    margin-bottom: 2vh;
}

.texte_hero {
    padding-right: 2vh;
    border-right: 2px solid #F24900;
}

.service {
    display: flex;
    flex-direction: column;
    padding-left: 1vh;
}

.btn_appel {
    background-color: #FFF5EC;
    color: #F24900;
    border: solid 2px #F24900;
    padding: 1vh;
}

.btn_appel:hover {
    background-color: #F24900;
    color: white;
    box-shadow: 0px 0px 10px #F24900;
    padding: 1vh;
}

/*==============================================================\\NAV//================================================================== */

#carousel {
    margin: 5vh 0vw 5vh 0vw;
}

#titre_nav {
    margin: 2vh;
}

.img_carousel {
    width: 100%;
    height: 50vh;
    /* ou une hauteur fixe */
    object-fit: cover;
    /* ou "contain" selon l'effet voulu */
}
@media (max-width: 1250px) {
    .img_carousel {
    width: 100%;
    height: 40vh;
    /* ou une hauteur fixe */
    object-fit: cover;
    /* ou "contain" selon l'effet voulu */
}
}

.texte_carousel {
    background-color: #F24900;
    align-items: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(26%) sepia(89%) saturate(6059%) hue-rotate(356deg) brightness(94%) contrast(118%);
}

.hr_carousel {
    width: 30%;
    /* le margin permet de centrer le hr */
    margin: 10px auto;
    height: 2px;
    background-color: white;
}

/*==============================================================\\CARTE//================================================================== */

#bloc_carte {
    display: flex;
    margin: 4vh;
}

#img_carte {
    width: 45%;
    height: auto;
    margin-right: 2vw;
}

#bloc_text {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#titre_carte {
    margin-bottom: 1vh;
}

#list_ul {
    margin: 1vh 0vw 1vh 0vw;
}

@media (max-width: 1250px) {
    #bloc_carte {
        display: flex;
        flex-wrap: wrap;
    }

    #img_carte {
        width: 60%;
        height: auto;
    }

    #bloc_text {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        margin-top: 1vh;
    }
}