	/* Slide boxes that slide up when hovering over the parent link */
.slide-box {
	position: relative;
	display: block;
	background-size: cover;
}

.home-blue-block .slide-box {
	border: 1px solid rgba(255,255,255,0.9);
	border-radius: 1px;
}

/* Slider with content */
.slide-box .slider {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	height: 100%;
	width: 100%;
	transition: top 0.4s;
	top: 100%;
	position: absolute;
	z-index: 2;
	padding: 30px 20px;
	background: #0a63aa;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
}
.slide-box:hover .slider {
	top: 0;
}

/* Cover to darken the background behind the slider */
.slide-box .cover {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	z-index: 1;
	transition: background 0.5s;
}
.slide-box:hover .cover {
	background: rgba(0, 0, 0, 0.3);
}

/* Other way around, gets lighter when hovering over */
.slide-box .cover.inverse {
	background: rgba(0, 0, 0, 0.3);
}
.slide-box:hover .cover.inverse {
	background: rgba(0, 0, 0, 0.1);
}

/* Vertical alignments */
.align-bottom {
	/*width: 100%;*/
	position: absolute;
	bottom: 0;
}
.align-center {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.slide-box .cover {
	padding: 28px 23px;
	font: 400 22px/24px "Oxygen", Helvetica, Arial, sans-serif;
	letter-spacing: 0.25px;
	background: rgba(0, 0, 0, 0.5);
	box-sizing: border-box;
}
.home-blue-block .slide-box .cover {
	background: rgba(0, 0, 0, 0);
	font: 400 18px/21px "Oxygen",Helvetica,Arial,sans-serif;
}
.home-blue-block .slide-box {
	background-size: auto;
	background-color: #0d4979;
}
.home-blue-block .slide-box.iam {
	background-position: 50% 14px !important;
}
.home-blue-block .slide-box.iot {
	background-position: 50% 20px !important;
}
a.slide-box {
	display: inline-block;
	vertical-align: top;
	width: 320px;
	height: 245px;
	overflow: hidden;
	position: relative;
	margin-right: 7px;
	color: #fff;
}
a.slide-box:hover {
	color: #fff;
}
a.slide-box .cover .align-bottom {
	bottom: 20px;
}
a.slide-box .slider {
	font-size: 15px;
	line-height: 20px;
}
a.slide-box .slider p {
	font-size: 18px;
	line-height: 22px;
	margin: 20px 0 40px;
	opacity: 0.95;
	text-align: center;
}


/* Page-specific */

.mpki a.slide-box {
	background: #0368b8;
}
.mpki a.slide-box .cover {
	background: rgba(0,0,0,0); font-size: 19px; line-height: 22px;
}
.mpki a.slide-box:hover .cover {
	background: rgba(0,0,0,0.25);
}
.mpki a.slide-box .slider {
	background: #034274;
	font-size: 17px; font-weight: normal;
}