
.details_header{
    padding: 40px 0;
    background-color: rgb(236, 236, 236);
}

.header_title{
    color: var(--primary);
    text-align: center;
    font-size: 25px;
    font-weight: bold;
}

.header_text{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: top;

}
.header_text a{
    text-decoration: none;
    color: var(--secondary);
    font-size: 14px;
    font-weight:bold;
    margin-right: 5px;
}
.header_text a:hover{
    text-decoration: none;
}

.header_text p{
    margin-left: 5px;
    font-size: 14px;
    color: gray;
}


.details_container{
    width: 80%;
    margin: 80px auto;
}

.details_img_container{
    width: 100%;
    position: relative;
}

.details_slider_container{
    width: 100%;
}

/* .details_slider_img{
    width: 100%;
    height: 600px;
    margin: 0 18px;

} */
img {
  max-width: 100%;
  height: auto;
}

/* Styles spécifiques pour les appareils mobiles ayant une largeur maximale de 767px */
@media (max-width: 767px) {
  img {
    /* Vous pouvez ajuster cette hauteur selon vos besoins pour les appareils mobiles */
    max-height: 400px;
  }
}

/* Styles spécifiques pour les écrans de PC ayant une largeur minimale de 768px */
@media (min-width: 768px) {
  img {
    /* Vous pouvez ajuster cette hauteur selon vos besoins pour les écrans de PC */
    max-height: 600px;
  }
}

/* Styles pour les appareils mobiles ayant une largeur maximale de 767px */
@media (max-width: 767px) {
  .details_slider_img {
    height: 400px; /* Hauteur spécifique pour les appareils mobiles */
  }
}

/* Styles pour les écrans de PC ayant une largeur minimale de 768px */
@media (min-width: 768px) {
  .details_slider_img {
    height: 600px; /* Hauteur spécifique pour les PC */
  }


 .details_slider_img img{
     width: 100%;
     height: 100%;
     object-fit: fill;
     border-radius: 5px;
 }
}




.image_arrows{
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image_arrows .slick-prev{
    color: white;
    background-color: var(--primary);
    padding: 25px 28px;
    border: none;
    outline: none;
    border-radius: 50%;
}

.image_arrows .slick-next{
    color: white;
    background-color: var(--primary);
    padding: 25px 28px;
    border: none;
    outline: none;
    border-radius: 50%;
}

.details_content{
    margin-top: 20px;
}

.details_title{
    font-size: 25px;
    color: rgb(75, 75, 75);
    text-align: center;
    font-weight: bold;
}

.details_desc{
    width: 60%;
    font-size: 14px;
    color: gray;
    margin: 50px auto;
}

.details_infos{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.infos_container{
    display: flex;
    justify-content: flex-start;
    align-items: top;
}

.infos_container span{
    font-size: 18px;
    color: var(--secondary);
    border-radius: 50%;
    margin-right: 15px;
}

.infos_container p{
    font-size: 15px;
    color: rgb(82, 82, 82);
}

.details_call{
    display: flex;
    justify-content: center;
    align-items:center;
    margin: 40px 0;
}

.call_text{
    font-size: 15px;
    text-align:center;
    font-weight: bold;
}

.call_number{
    margin-top: 30px;
    font-weight: bold;
    font-size: 15px;
    color: white;
    text-align: center;
    background-color: var(--secondary);
    padding: 10px 15px;
    border-radius: 20px;
}

.call_number a{
    color: white;
    text-decoration: none;
}
@media screen and (max-width: 480px){

    .details_container{
        width: 100%;
    }

    .details_slider_img {
        margin: 0 3px;
    }

    .image_arrows{
        display: none;
    }

    .details_desc{
        width: 100%;
        padding: 15px;
        margin: 20px 0;
    }

    .details_infos{
        display: block;
    }

    .infos_container{
        margin: 20px 10px;
    }

    .details_call{
        margin: 0 10px;
    }

    .call_number{
        font-size: 13px;
    }
}
