hr {
    border: none;
    padding: 0.2em;
    color: #060026;
    height: 0.2em;
}
.teaching-staff-section .row,
.ministerial-staff-section .row,
.multitasking-staff-section .row {
    padding: 3rem 0;
    width: 90%;
    margin: auto;
}
.teaching-staff-section .row .title {
   text-align: left;
}
.row .title h2 {
    font-size: 35px;
}
.box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: auto;
    background-image: url("../img/white-bg1.jpg");
    padding: 5rem 5rem;
}
.box-container .card {
    position: relative;
    width: 250px;
    height: 350px;
    margin: 20px;
}
.box-container .card .face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    transition: 2.5s;
}
.box-container .card .front {
    background-color: whitesmoke;
    transform: perspective(600px) rotateY(0deg);
    box-shadow: 0 5px 50px #000;
}
.box-container .card .front img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.box-container .card .front h3 {
    position: absolute;
    bottom: 10px;
    width: 100%;
    height: 45px;
    line-height: 45px;
    color: #FFF;
    background: rgba(0,0,0,0.4);
    text-align: center;
}
.box-container .card .back {
    transform: perspective(600px) rotateY(180deg);
    background: rgb(3,35,54);
    color: #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    /* text-align: center; */
    box-shadow: 0 5px 50px #000;
    padding-left: 1rem;
}
.box-container .card .back .link {
    border-top: solid 1px #f3f3f3;
    height: 50px;
    line-height: 50px;
}
.box-container .card .back .link a {
    color: #f3f3f3;
}
.box-container .card .back h3 {
    font-size: 20px;
    margin-top: 20px;
    letter-spacing: 0px;
}
.box-container .card .back p {
    letter-spacing: 0px;
}
.box-container .card .back li {
    list-style-type: none;
}
.box-container .card .back li .info {
    font-weight: 200;
}
.box-container .card:hover .front {
    transform: perspective(600px) rotateY(180deg);
}
.box-container .card:hover .back {
    transform: perspective(600px) rotateY(360deg);
}
@media screen and (max-width: 450px)  {
    .box-container {
        padding: 5rem 1.5rem;
    }
    .box-container .card {
        width: 210px;
        height: 310px;
    }
}