.detail-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    height: 100%;
}

.carousel-container {
    width: 70%;
    height: 100%;
    padding: 0 !important;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: rgba(255, 255, 255, 0.053);
    color: white;
    animation: carousel 1.5s cubic-bezier(0.25, 0.5, 0.5, 1) 0.7s forwards;
    transform: translateX(-80px);
    opacity: 0;
    filter: blur(10px);
}

@keyframes carousel {
    to {
        transform: none;
        opacity: 1;
        filter: none;
    }
}

.carousel {
    display: flex;
    align-items: center;
    transition: transform .7s cubic-bezier(0.25, 0.5, 0.5, 1);
}

.carousel .visuel {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    object-fit: contain;
    display: block;
}

.prev,
.next {
    position: absolute;
    font-size: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    opacity: 0.5;
    z-index: 10;
    transition: 0.2s ease-in-out;
}

.prev:hover,
.next:hover {
    opacity: 1;
    transition: 0.2s ease-in-out;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.description-container {
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    background-color: rgba(255, 255, 255, 0.053);
    color: white;
    overflow-y: scroll;
    animation: description 1.5s cubic-bezier(0.25, 0.5, 0.5, 1) 0.7s forwards;
    transform: translateX(80px);
    opacity: 0;
    filter: blur(10px);
}

@keyframes description {
    to {
        transform: none;
        opacity: 1;
        filter: none;
    }
}

.description-container ul {
    margin-left: 30px;
}


.description-container .logiciels {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    align-items: end;
    height: 100%;
    width: 100%;
}

.logiciels img {
    width: 40px;
    border-radius: 8px;
    height: auto;
    z-index: 1;
}

.logiciels .logo-titre {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    gap: 8px;
}

.logiciels .logo-titre p {
    font-size: 14px;
    padding: 5px 10px;
    opacity: 0;
    z-index: 0;
    transform: translateY(30px) scale(0.5);
    transition: all .2s cubic-bezier(0.9, 0, 0.3, 1);
    white-space: nowrap;
    text-align: center;
}

.logiciels .logo-titre:hover p {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all .2s cubic-bezier(0.9, 0, 0.3, 1);
}


@media (max-width:1060px) {

    html,
    body {
        height: auto !important;
    }


    .detail-container {
        flex-direction: column;
    }

    .carousel-container {
        width: 100%;
    }

    .description-container {
        width: 100%;
    }

    .description-container .logiciels {
        justify-content: flex-start;
        column-gap: 10px;
        margin-bottom: 50px;
    }

    .logiciels .logo-titre{
        width: 100px;
    }

    .logiciels .logo-titre p,
    .logiciels .logo-titre:hover p {
        opacity: 1;
        transform: translateY(80px) scale(1);
        transition: all .2s cubic-bezier(0.9, 0, 0.3, 1);
    }

}