
.carousel {
    position: relative;
    width: 100%;
    /*max-width: 800px;*/
    height: 800px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-images {
    display: flex;
    width: 100%;
    justify-content: center;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

.carousel-images img {
    position: absolute;
    height: 700px;
    width: auto;
    opacity: 0.5;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.carousel-images img.active {
    position: relative;
    opacity: 1;
    transform: scale(1.2);
    z-index: 2;
}

.carousel-images img.left {
    transform: translateX(-150px);
    z-index: 1;
    opacity: 0.7;
}

.carousel-images img.right {
    transform: translateX(150px);
    z-index: 1;
    opacity: 0.7;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    z-index: 100;
    justify-content: space-between;
}

.carousel-controls button {
    width: 10%;
    border: none;
    background-color: transparent;
    /*background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;*/
}

.carousel-controls button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .carousel {
        height: 200px;
    }
    .carousel-images img {
        max-height: 200px;
    }
}