/*****--**--****-|AGENCE|-****--**--*****/
    #sectionagence {
        display: flex;
        justify-content: center; /* Centrer le slider dans la section */
        align-items: center;
        height: 100dvh;
        background-color: #f0f0f0;
        flex-direction: row;
        padding: 0;
    }

    #sectionagence .slider-container {
        position: relative;
        width: 50%;
        height: 100%;
        overflow: hidden;
    }

    #sectionagence .slides {
        display: flex;
        transition: transform 0.5s ease; /* Animation douce lors du changement de slide */
    }

    #sectionagence .slide {
        min-width: 100%; /* Chaque slide occupe 100% de la largeur du slider */
        box-sizing: border-box;
    }

    #sectionagence .slider-container img {
        width: 100%; /* L'image prend toute la largeur du slide */
        display: block;
    }

    #sectionagence .prev, .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        z-index: 1;
    }

    #sectionagence .prev {
        left: 10px;
        cursor: url('../images/curseurs/arrowl.png')36 31, auto;
    }

    #sectionagence .next {
        right: 10px;
        cursor: url('../images/curseurs/arrowr.png')36 31, auto;
    }

    #sectionagence .prev:hover, .next:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }

    /*****--**--****-|Responsive Tablette - Agence|-****--**--*****/
        @media screen and (max-width: 960px){
            #sectionagence {
                height: 45dvh;
            }
        }
    /*****--**--****-|Responsive Tablette - Agence|-****--**--*****/

    /*****--**--****-|Responsive Mobile - Agence|-****--**--*****/
        @media screen and (max-width: 576px){
            #sectionagence{
                flex-direction: column;
                height: 120dvh;
            }

            #sectionagence .slider-container {
                width: 100%;
            }
        }
    /*****--**--****-|Responsive Mobile - Agence|-****--**--*****/
/*****--**--****-|AGENCE|-****--**--*****/

/*****--**--****-|FOOTER|-****--**--*****/
    footer{
        display: flex;
        justify-content: space-between;
        padding: 25px;
    }

    footer div:nth-child(1) p{
        font-size: 21px;
    }

    footer div div{
        display: flex;
        justify-content: left;
        align-items: center;
        align-self: end;
    }

    footer div div a{
        padding: 6px;
    }

    footer div div a:nth-child(1){
        padding-left: 0;
    }

    footer div div a svg{
        width: 9vw;
    }

    footer div div a:hover svg path,footer div div a:hover svg ellipse{
        fill: white!important;
    }

    footer div:nth-child(2){
        display: flex;
        flex-direction: column;
        text-align: right;
    }

    footer div:nth-child(2) a{
        color: black;
        font-size: 5vw;
    }

    footer div:nth-child(2) a:hover{
        color: white;
    }

    footer div p{
        font-family: karrik;
    }

    #mentionslegales{
        padding: 16px 25px;
    }

    #mentionslegales a{
        color: black;
        font-size: 12px;
    }
    /*****--**--****-|FOOTER RESPONSIVE|-****--**--*****/
        @media screen and (max-width: 576px){
            footer{
                flex-direction: column;
            }

            footer div:nth-child(2) a {
                font-size: 7vw;
            }
        }
    /*****--**--****-|FOOTER RESPONSIVE|-****--**--*****/
/*****--**--****-|FOOTER|-****--**--*****/
