
.carousel {
    position: relative;
    max-width: 700px;
    margin: auto;
    margin-bottom: 40px;
}

.carousel img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 5px solid #0f5c28;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .6);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: .25s;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, .2);
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.gallery-side {
    flex: 1;
    max-width: 500px;
}

.services-side {
    flex: 1;
}

@media (max-width: 768px) {

    .services-gallery {
        flex-direction: column;
        align-items: center;
    }

    .gallery-side,
    .services-side {
        width: 100%;
        max-width: 100%;
    }
}

.services-gallery {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    /* push everything left */
    gap: 20px;
    max-width: 1200px;
}
