.teacher{
    gap: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    > .card{
        width: 300px;
        text-align: center;
        border: 1.4px solid #03A19E;
        border-bottom: 4px solid #03A19E;
        >p{
            font-weight: 500;
        }
    }
}
.card-img{
    width: 100%;
    height: 280px;
    overflow: hidden;
    > .card-img-top{
        height: 100%;
        width: 100%;
        cursor: pointer;
        object-fit: cover;
        transition: all .6s ease;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-transition: all .6s ease;
        -moz-transition: all .6s ease;
        -ms-transition: all .6s ease;
        -o-transition: all .6s ease;
    }
    .card-img-top:hover{
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
    }
}
.teacher-title{
    margin-top: 10px;
    font-weight: 600;
}