h1.title{
	margin: 0;
	padding: 0;
}

.item{
	display: box;
	height: 175px;
	width:  300px;
	margin: 12px;
	margin-top: 8px;
	
	/*border:1px solid black;*/
	position: relative;
	overflow: hidden;
	cursor: pointer;
	/*box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19); */
	border-radius: 8px;
	border: 1px solid #B0B6C1;

}
.item div{
	  z-index: 1;

}

.item{
	user-select: none;
}

div.item>.backgr{
	 position: absolute;
    height: 100%;
    width: 100%;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
    -moz-transform: scale(1,1);
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
	background-position: center; 
    z-index: 0;

}

.item:hover>.backgr{
	  -moz-transform: scale(1.2,1.2);
    -webkit-transform: scale(1.2,1.2);
    transform: scale(1.2,1.2); 
}

.container {
  display: flex; /* or inline-flex */
  flex-wrap:wrap;
   justify-content: center;
 /* max-height: 800px;
  overflow: hidden; */

}

.item:before{
	 display: block;
  position: absolute;
  content:" ";
  top:0;
  left:0;
  width:100%;
  height:100%;
 
  z-index:1;
  background-color: rgba(255,255,255,0.5);
}
.item:hover{
	background-size: 100%;
	transition:all 0.5s ease;
    -webkit-transition:all 0.5s ease;
    -o-transition:all 0.5s ease;
    -moz-transition:all 0.5s ease;

}
.item:hover:before{
 /* background-color: rgba(173,216,230,0.4);*/
}

.item * {
    position: relative;
    /* hack */
}

.item  p{


}

.item .datecont{
	position: absolute;
	top: 0;
	left: 0;
	width: 95px;
	height: 100%;
	
}

.datecont:after{
  content:""; 
  background: black; 
  position: absolute; 
  top:12%;
  right: 0; 
  height: 76%; 
  width: 2px;
}

.item .day{
	position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -82%);
	font-size: 4.2em;
	font-weight: bold;
	color: black;
}

.item .month{
	position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -18%);
	font-size: 2.5em;
	font-weight: bold;
	color: black;
	max-width: 100px;
	margin: 0 auto; 

}

.item .time{
	position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, 90%);
	font-size: 1.7em;
	font-weight: bold;
	color: black;
	max-width: 100px;
	margin: 0 auto; 
}


.item .title{
		font-weight: bold;
	position: absolute;
	font-size: 2em;
	left:100px;
	top:30px;
	color: black;
	z-index:1;
			width: 190px;
			height: 140px;
		overflow-wrap: normal;
		word-wrap:normal;
	
    }


/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 360px) and (max-device-width : 700px) {
	.item{
	display: box;
	height: 110px;
	width:  160px;
	margin: 4px;

	/*border:1px solid black;*/
	position: relative;
	}
	.item .title{
		position: absolute;
		font-size: 20px;
		left:58px;
		top:16px;
		color: black;
		width: 100px;
			height: 90px;
		
	}
	.item .datecont{
		width: 55px;
	}
	.datecont:after{

  width: 1px;
}

	.item .day{
	
  top: 41%;
  left: 50%;
  font-size: 2em;
}

.item .month{

  top: 41%;
  left: 50%;
 
	font-size: 1.5em;	
	max-width: 100px;

}

.item .time{
	
  top: 43%;
  left: 50%;
 
	font-size: 1.1em;
	
	max-width: 100px;
}

}
