#cors-PopularTransferts{
    width: 100%;
    height: auto;
    margin-top: 4%;
}

#PopularTransferts-div{
    width: auto;
    height: auto;
    padding: 1%;
    width: 100%;
}

.PopularTransfertsTitle{
    color: var(--primary);
    font-weight: 800;
    width: 100%;
}

.PopularTransfertsCards{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: start;
    width: 100%;
    height: auto;
    margin-top: 2%;
}


.PopularTransferts-card{
    width: 23%;
    min-height: 100px;
    background-color: var(--box);
    border: none;
}

.img-custom-zoom:hover{
    transform: scale(1.05);
    transition: transform 0.4s;
}

.link-popular-transfert{
    text-decoration: none;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-body{
    width: 100%;
    height: auto;
}

#popular-transferts-detail{
    width: 100%;
    height: auto;
    padding: 3%;
}

.about-courchevel{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    margin-top: 2%;
    margin-bottom: 2%;
    padding: 3%;
}

.PopularTransferts-detail-image{
    width: 45%;
}

img.img-custom-popularTransferts-detail{
    width: 100% !important;
    height: 100% !important;
}

.PopularTransferts-detail-text{
    margin-left: 3%;
    text-align: justify;
    width: 55%;
}

.PopularTransferts-detail-top-things{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    margin-top: 4%;
    margin-bottom: 4%;
    padding: 3%;
}

/* Responsive */
@media (max-width: 1200px) {
    .PopularTransfertsCards{
        flex-wrap: wrap;
    }

    .PopularTransferts-card{
        display: flex;
        justify-content: center;
        width: 45%;
        margin-bottom: 3%;
        height: auto;
        min-height: 200px;
        padding-top: 1%;
    }

    .about-courchevel{
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }

    .PopularTransferts-detail-image{
        width: 90%;
        height: auto;
        margin-top: 2%;
    }

    .PopularTransferts-detail-text{
        margin-left: 0;
        width: 90%;
    }

    .PopularTransferts-detail-top-things{
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }

    .btn-popular-transferts{
        font-size: 30px;
        text-transform: uppercase;
    }

    p{
        font-size: 35px;
    }

    #adminDropdownMenu{
        font-size: 2rem;
    }
}