.presentation_cards{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom : 10vw;
    margin-top : 10vw;
}

.card_image img{
    width: 25vw;
        border-radius: 10px;
    box-shadow: 3px 3px 11px #909090;
}



.card_txt{
        width: 50%;
    font-size: 2vw;
    margin-left: 2vw;
}

.itineraire {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    margin: auto;
}
.itineraire h2 {
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5vw;

}
.itineraire ul {
    list-style-type: none;
    padding: 0;
}
.itineraire li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 2vw;
}
.itineraire li:last-child {
    border-bottom: none;
}
.itineraire strong {
    color: #000;
}

@media (max-width: 1200px) {
    
    .card_txt{
        width: 50%;
        font-size: 3vw;
        margin-left: 2vw;
    }
    
    .card_image img{
        width: 45vw;
        border-radius: 10px;
        box-shadow: 3px 3px 11px #909090;
    }
    
    .itineraire li {
        font-size: 3vw;
    }
    
    .itineraire h2 {
        font-size: 3vw;
    
    }
        
}

@media (max-width: 750px) {
    .presentation_cards{
        margin-top : 10vw;
        display: block;
        text-align: center;
    }
    
    .card_txt{
        width: auto;
        font-size: 6vw;
        margin-left: 2vw;
        display: flex;
        justify-content: center;
    }
    
    .card_txt p {
        width: 90vw;
        text-align: left;
    }
    
    .card_image img{
        width: 60vw;
        border-radius: 10px;
        box-shadow: 3px 3px 11px #909090;
    }
    
    .itineraire li {
        font-size: 6vw;
    }
    
    .itineraire h2 {
        font-size: 6.5vw;
    
    }

}