.box-content{
    padding:50px;
    background-color:#FAFAFA;
    transition: 0.6s all;
	height: 100%;
}
.box-content .title {
    font-size: 40px;
    text-align: center;
    margin-top: 40px;
    font-family: "EB Garamond", serif;
    line-height: normal;
    color: #000;
    transition: 0.5s all;
    line-height: 1;
}
.box-content:hover{
    background-color:#9CAF88;
}
.box-content:hover .title{
    color:#fff;
}
.box-content:hover img{
       transform: scale(1.045);
}
.box-content .image{
 overflow:hidden; 
}
.box-content .image img{
    transition: 0.5s all;
    width:100%;
}
.box-content a{
    display:block;
  
}