@charset "UTF-8";
/* CSS Document */

.card {
    margin: 0 10px 40px 10px;
    width: 285px;
    height: 375px;
    background: #B64E01;
    overflow-y: auto;
}
.card .imgBx, .card .details {
    width: 100%;
    height: 100%;
    position: absolute;
    box-sizing: border-box;
    transition: .5s;
}
.card .imgBx {
    top: 0;
    left: 0;
}
.card:hover .imgBx {
    top: 0;
    left: -100%;
}
.card .imgBx img {
    width: 100%;
}
.card .imgBx .cardTxt {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    color: #fff;
    font-size: 18px;
    text-align: center;
    margin: 0;
    padding: 7px;
    background-color: rgba(0,0,0, .6);
    }
.card .details {
    background: #B64E01;
    top: 0;
    left: 100%;
    padding: 10px 20px;
}
.card:hover .details {
    top: 0;
    left: 0%;
}
.card .details h5 {
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0 0 10px;
}
.card .details h5:nth-child(2) {
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0 0 10px;
    border-bottom: 2px solid #fff;
}
.card .details p, ul {
    margin: 20px 0 0;
    color: #fff;
    list-style: none;
    text-align: left;
}
.card .details ul li a {
	color: white;
}
.scholar-logo {
	height: 55px;
}
.btn-outline-warning {
    border: 2px solid #fff!important;
    background-color: transparent!important;
    color: #fff!important;
}