.scrol{

    margin: 1em auto;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.marquee {
    top: 6em;
    position: relative;
    box-sizing: border-box;
    animation: marquee 15s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

/* Make it move! */
@keyframes marquee {
    0%   { top:   8em }
    100% { top: -11em }
}

/* Make it look pretty */
.chnge .marquee {
	margin: 0;
    padding: 0 1em;
    line-height: 1.5em;
    font: 1em 'Segoe UI', Tahoma, Helvetica, Sans-Serif;
}

.chnge:before, .chnge::before,
.chnge:after,  .chnge::after {
    left: 0;
    z-index: 1;
    content: '';
    position: absolute;
    pointer-events: none;
    width: 100%; height: 2em;
    background-image: linear-gradient(top, #FFF, rgba(255,255,255,0));
}

.chnge:after, .chnge::after {
    bottom: 0;
    transform: rotate(180deg);
}

.chnge:before, .chnge::before {
    top: 0;
}
.faculty-container {
    padding: 5px !important;
}
.faculty-image-container img{
	max-height: 250px;
	width: auto;
}