/* mobile screen */
@media (max-width: 600px) {
    .service-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .service-image {
        flex: 0 0 100%;
    }

    /* GALLERY PAGE ========== */
    /* gallery section */
    .gallery-btn-group{
        flex-direction: column;
    }

}

/* tablet screen */
@media (max-width: 800px) {
    .service-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .service-top-image {
        width: 200px;
        height: 200px;
    }

    .service-image {
        flex: 0 0 200px;
        height: 200px;
        /* max-width: 300px; */
    }
}