#gallerie{
    padding: 60px;
}
.content{
    background-color: #F9E7D2;
}
.row{
    padding: 40px;
}
.header-projet{
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-projet img{
    width: 50%;
}
.card-trace{
    height: 500px !important;
    border-radius: 35px;
}

.card-img-top{
    height: 75% !important;
    width: 90%;
    margin: 10px auto;
    border-radius: 40px;
    object-fit: cover !important;
}

.card-bottom{
    width: 100%;
    display: flex;
    justify-content: end !important;
    flex-direction: row;
    gap: 5px;
}

.card-bottom p{
    color: #FFF;
    background-color: #FE396A;
    border-radius: 15px;
    padding: 5px 15px;
    width: fit-content;
}

.trace-col{
    margin-bottom: 40px;
}

/* Style du switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f9B21A;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #ff6C0B;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.text-presentation{
    color: #FE396A;
    font-size: 16px;
}
.card-title{
    color: #FFF;
    text-align: center;
    text-decoration: none;
}
.lien-card{
    text-decoration: none;
}



@media (max-width : 1100px){
    .card-trace{
        height: 350px !important;
    }
    .card-img-top{
        height: 60% !important;
        object-fit: contain !important;
    }
}
@media (max-width : 1000px){
    .card-trace{
        height: 250px !important;
    }
}

@media (max-width : 746px){
    .card-trace{
        height: auto !important;
    }
    .row{
        padding: 0;
    }
    form{
        margin: 30px 0;
    }
    .header-projet img{
        width: 80%;
    }
}
