.mentor{
    background-color: rgb(240, 245, 250);
    background-blend-mode: screen;
    width: 100%;
    height: auto;
}
.mContainer{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 20px;
}
.mTitle{
    font-size: 50px;
    padding: 80px 80px 0px 80px;
    font-weight: 700;
    margin-bottom: 20px;
    color: crimson;
    position: relative;
} 
.mTitle:before{
    content: "";
    position: absolute;
    background-color:#000;
    height: 2px;
    width: 10%;
    padding-left: 80px;
    bottom: -5px;
}
.mLeft ,.mRight,.mMiddle{
    width: 30%;
    background-color: palevioletred;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 30px 0px;
    border-radius: 25px;
    box-shadow: 8px 8px 4px rgb(116, 10, 103);
}
.mLeft img,
.mRight img,
.mMiddle img{
    margin-top: 30px;
    width: 60%;
    height: 200px;
}
.mLeft h2,
.mRight h2,
.mMiddle h2{
    margin-top: 15px;
    font-size: 30px;
    font-weight: 600;
    color: #ecce22;
}
.mLeft h3,
.mRight h3,
.mMiddle h3{
    margin: 15px 0px;
    font-size: 25px;
    font-weight: 500;
    color: white;
}
.mLeft:hover ,.mMiddle:hover,.mRight:hover{
    margin-top: 20px;
}
@media screen and (max-width : 800px) {
    .mLeft ,.mRight,.mMiddle{
        width: 100%;
    }
    .mLeft h2,
    .mRight h2,
    .mMiddle h2{
        font-size: 45px;
    }
    .mLeft h3,
    .mRight h3,
    .mMiddle h3{
        font-size: 35px;
    }   
}
@media screen and (max-width : 600px) {
    .mTitle{
        padding: 80px 40px 0px 40px;
        font-size: 40px;   
    }
    .mLeft h3,
    .mRight h3,
    .mMiddle h3{
        font-size: 25px;
    }   
    .mLeft h2,
    .mRight h2,
    .mMiddle h2{
        font-size: 30px;
    }
    
}
@media screen and (max-width : 400px) {
    .mTitle{
        font-size: 30px;
    }  
    .mLeft h3,
    .mRight h3,
    .mMiddle h3{
        font-size: 20px;
        margin-left: 0px;
    }   
    .mLeft h2,
    .mRight h2,
    .mMiddle h2{
        font-size: 25px;
        margin-left: 0px;
    }
}