.gallery-sec .heading-50 {
    margin-bottom: 50px;
}

.gallery-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 38px;

    & .img-wrap {
        overflow: hidden;
        border-radius: 10px;

        & img {
            border-radius: 10px;
            transition: all 0.3s linear;
            -webkit-transition: all 0.3s linear;
        }

        &:hover>img {
            /* transform: scale(1.05); */
            border-radius: 10px;
        }
    }
}

.loadmorebtn .button {
    min-width: 167px;
}

.pickup_listing {
    position: relative;
    line-height: 0;
}

.pickup_listing:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    z-index: 1;
    border-radius: 6px;
    background: transparent linear-gradient(133deg, #4BEDEF 0%, rgb(0 30 127 / 10%) 100%) 0% 0% no-repeat padding-box;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

.pickup_listing:hover:before {
    height: 100%;
}


@media (max-width: 1599px) {
    .gallery-wrap {
        gap: 20px;
    }

    .pickup_listing {
        width: calc(33.33% - 14px);
        line-height: 0;
    }

}

@media (max-width: 1440px) {}

@media (max-width: 1200px) {}

@media (max-width: 991px) {

    .pickup_listing {
        width: calc(50% - 10px);
        line-height: 0;
    }

    .gallery-sec .heading-50 {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {}

@media (max-width: 575px) {
    .gallery-wrap {
        gap: 15px;
    }

    .pickup_listing {
        width: calc(50% - 8px);
        line-height: 0;
    }

    .gallery-sec .heading-50 {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .pickup_listing {
        width: 100%;
        line-height: 0;
    }
}

@media (max-width: 375px) {}