.multiImage {
    width: 100%;
    padding: 20px 100px;
}

    .multiImage .box {
        position: relative;
        display: inline-block;
        width: 100%;
        height: 100%;
        border-radius: 5px;
        box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
        border-radius: 5px;
        -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1;
        color: white;
        background-color: rgb(34, 34, 34);
    }

        .multiImage .box .boxTitle {
            height: 20%;
            min-width: 100%;
            width: 100%;
        }

        .multiImage .box .boxDate {
            height: 10%;
            min-width: 100%;
            width: 100%;
            border-bottom-left-radius: 5px;
            border-bottom-right-radius: 5px;
        }

        .multiImage .box .image-format {
            height: 70%;
            min-width: 100%;
            width: 100%;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
            margin-bottom: 0;
            z-index: 1 !important;
        }

        .multiImage .box::after {
            content: "";
            border-radius: 5px;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            opacity: 0;
            -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: -1;
        }

        .multiImage .box:hover {
            -webkit-transform: scale(1.20, 1.20);
            transform: scale(1.20, 1.20);
            z-index: 999 !important;
        }

            .multiImage .box:hover::after {
                opacity: 1;
            }

    .multiImage .col {
        width: 31.2% !important;
        min-width: 300px;
        max-width: 373px;
        height: 470px;
        flex: auto;
        padding: 15px;
        margin-bottom: 15px;
    }

@media only screen and (max-width: 799px) {
    .multiImage {
        padding: 10px;
    }
    .multiImage .box:hover {
        -webkit-transform: scale(1.15, 1.15);
        transform: scale(1.15, 1.15);
        z-index: 99;
    }
}

.textWrap {
    padding: 10px !important;
}
    .textWrap h6, label, p {
        padding: 7px;
        width: 100%;
        height: 100%;
    }









