.carrousel-photo-wrapper {
    position: relative;
    overflow: hidden;
    width: 60%;
}

.carrousel-photo-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.carrousel-photo-slide {
    flex: 0 0 100%;
}

.carrousel-photo-slide img {
    width: 100%;
    height: auto;
    display: block;
    border: 4px solid var(--or);
    border-radius: 0px 50px;
}

.carrousel-photo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.carrousel-photo-wrapper:hover .carrousel-photo-arrow {
    opacity: 1;
}

.carrousel-photo-arrow-left {
    left: 10px;
}

.carrousel-photo-arrow-right {
    right: 10px;
}

@media (max-width: 1100px) {
   .carrousel-photo-wrapper {
        width: 75%;
    }

}

@media (max-width: 700px) {
    .carrousel-photo-wrapper {
        width: 100%;
    }
}