﻿@media(max-width:1023px) {
    .no-display-mobile-tablet {
        display: none !important
    }
}

@media(min-width:740px) and (max-width:1023px) {
    .no-display-tablet {
        display: none !important
    }

    .ulimgp {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media(max-width:739px) {
    .no-display-mobile {
        display: none !important
    }

    .listImg {
        height: 300px;
    }

    .lidsimg {
        padding: 0 5px;
        list-style: none;
    }

        .lidsimg h4 a {
            font-size: 15px;
            height: 54px;
        }

    .ulimgp {
        grid-template-columns: repeat(1,minmax(0,1fr));
    }
}