.containerthree {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 2 columns on larger screens */
    gap: 16px; /* Space between items */
}

.containerone {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: auto;
    padding: 20px;
    gap: 16px; /* Space between items */
}


.itemthree {
    padding: 20px;
    text-align: center;
}

.itemthreenopad {
    text-align: center;
}

@media (max-width: 768px) {
    .containerthree {
        grid-template-columns: 1fr; /* 1 column on smaller screens */
    }

    .itemthreenopad {
        padding: 0px;
    }
}


.slideshow-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Forces height to match width */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slideshow-container img {
        width: 100%;
        height: 100%;
        position: absolute;
        opacity: 1;
        transition: opacity 0.5s ease-in-out;
        display:none;
    }

 .slideshow-container img.active {
            display:block;
        }

.gallery-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    display: block; /* Hide all images by default */
}

    /*.gallery-img.active {
        display: block; /* Only show the first image 
    }*/


*/


.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

@media screen and (max-width: 768px) {

    .item img {
        height: 300px;
    }
}
