
/* Teacher details */
.TeacherDetails{
    height: 780px;
    padding-bottom: 80px;
}
.TeacherDetails .left{
    height: 780px;
    float: left;
}
.TeacherDetails .left img{
    width: 100%;
    height: 100%;
}
.TeacherDetails .right{
    float: right;
    padding-top: 30px;
}

/* works show */
.worksShow{
    margin-top: 10px;
    margin-bottom: 50px;
}
.worksShow .title{
    font-size: 22px;
}
.worksShow .title img{
    vertical-align: middle;
    margin-top: -2px;
}
.worksShow .title span{
    font-weight: bold;
}
.worksShow ul{
    margin: 30px 0;
}
.worksShow ul li{
    width: 290px;
    height: 440px;
    overflow: hidden;
    float: left;
    cursor: pointer;
    margin: 0 25px 25px 0;
}
.worksShow ul li img{
    width: 100%;
    height: 100%;
    transition: all .6s;
}
.worksShow ul li:hover img{
    transform: scale(1.1);
}
.worksShow ul li:nth-of-type(4n){
    margin-right: 0;
}