
#museum-main .museum-item{
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    height: 402px;
}
#museum-main .museum-item:hover{
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.2);
}
#museum-main .museum-text-content{
    background-color: #fff;
    padding: 16px;
    height: inherit;
}
#museum-main .museum-text-content h2{
    font-weight: 600;
    cursor: pointer;
    color: #990000;
    font-size: 18px;
    position: relative;
}
#museum-main .museum-text-content h2::after{
    content: '';
    top: 106%;
    width: 30px;
    height: 1px;
    position: absolute;
    background-color: #990000;
    left: 0;

}
#museum-main .museum-text-content p{
    color: #222222;
    font-size: 14px;
    display: -webkit-box;
    max-width: 400px;
    margin: 12px auto;
    line-height: 1.4;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*hovering effects on list items */
.museum-img-content{
    overflow: hidden;
}
.museum-img-content img{
    -webkit-transition: all 0.6s ease-in;
    -moz-transition:  all 0.6s ease-in;
    -ms-transition:  all 0.6s ease-in;
    -o-transition:  all 0.6s ease-in;
    transition:  all 0.6s ease-in;
}
.museum-img-content:hover img{
    -webkit-transform: scale(1.2,1.2);
    -moz-transform: scale(1.2,1.2);
    -ms-transform: scale(1.2,1.2);
    -o-transform: scale(1.2,1.2);
    transform: scale(1.2,1.2);
    filter: brightness(1.1);
}
