.gallery {
    background-image: url("../src/img/bg-2.jpg");
    background-size: cover;
    padding: 40px;
}

.gallery-title {
    font-size: var(----title-font);
    font-family: var(----bitter-font);
    font-weight: bold;
    text-align: center;
    color: white;
    padding-bottom: 20px;
}

.autoplay {
    width: 95%;
}
.autoplay .slick-slide {
    margin: 0 10px;
}
.autoplay {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item {
}

.gallery-image {
    background-color: white;
    height: 275px;
    object-fit: cover;
}

.gallery-image img {
    height: 100%;
    padding: 7px 7px 7px 7px;
}

.gallery-caption {
    background-color: transparent;
    height: 10%;
}

.gallery-caption p {
    font-family: var(----manrope-font);
    font-size: var(----gallery-caption-font);
    text-align: center;
    font-weight: bold;
    color: white;
    padding: 10px;
}

@media (max-width: 768px) {
    .gallery {
        padding: 20px 0px;
        background-size: contain;
    }

    .gallery-title {
        font-size: 24px;
        padding-bottom: 10px;
    }

    .autoplay {
        width: 100%;
        margin: 0 auto;
    }

    .autoplay .slick-slide {
        margin: 0 5px;
    }

    .gallery-item {
        margin-bottom: 15px;
    }

    .gallery-image {
        height: 250px;
    }

    .gallery-image img {
        padding: 5px;
    }

    .gallery-caption p {
        font-size: 16px;
        padding: 5px;
    }
}
