.model-adc-content {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;

}

/* The Modal (background) */
.modal-ic {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 13%;
    left: 4%;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);

}

.model-ic-img {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    height: 450px;
    max-height: 750px;
    background-color: #fff;

}

.model-ic-video {
    margin: auto;
    display: block;
    /* width: 80%;
    max-width: 700px;
    height: 450px;
    max-height: 750px; */
    padding: 1%;
    background-color: #fff;
}


/* Add Animation */
.model-ic-img {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

.model-ic-video {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}


@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0);
    }

    to {
        -webkit-transform: scale(1);
    }
}

@keyframes zoom {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* The Close Button */
.close1 {
    position: absolute;
    top: 11%;
    right: 11%;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    color: #FFFF;
	padding: 3px;
	background-color:#000000;
}

.close1:hover,
.close1:focus {
    text-decoration: none;
    cursor: pointer;

}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .model-img {
        width: 100%;
    }

    .model-video {
        width: 100%;
    }

}