/**** Imagebox Highlight ****/

.imgbox-highlight {
	display: flex;
	background-color: #fff9e7;
}

.imgbox-highlight .img-cont {
	position: relative;
	width: 66%;
	z-index: 1;
}

.imgbox-highlight .img-cont .play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 66px;
	color: white;
	z-index: 4;
}

.imgbox-highlight .img-cont::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.3;
	z-index: 2;
	pointer-events: none;
}

.imgbox-highlight .img-cont img {
	display: block;
	width: 100%;
}

.imgbox-highlight .content {
	display: flex;
	flex-direction: column;
	width: 34%;
	padding-left: 20px;
}

.imgbox-highlight .content .title {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid black;
	margin-right: -1px;
}

.imgbox-highlight .content .title span {
	display: inline-block;
	margin-bottom: 5px;
	color: #144270;
	text-transform: uppercase;
	margin-top: 15px;
	font-size: 13px;
	font-weight: bold;
}

.imgbox-highlight .content .title h5 {
	font-size: 32px;
	color: #144270;
	font-weight: 900;
	margin-bottom: 15px;
	text-transform: uppercase;
}
.imgbox-highlight .content .title .yellow-box {
	display: inline-block;
    vertical-align: middle;
    width: 80px;
    height: 80px;
    background-color: #f6b715;
    display: flex;
    justify-content:center;
    align-items:center;
}
.imgbox-highlight .content .title .yellow-box img {
	width: 40px;
	height: 40px;
}
.imgbox-highlight .content .inner-content {
	padding: 15px 20px 20px 0px;
	color: #595a5c;
}

.imgbox-highlight .content .inner-content .shared-anchor {
	color: #802022;
}

.imgbox-highlight .content .inner-content .category {
	display: inline-block;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 600;
}

.imgbox-highlight .content .inner-content h6 {
	position: relative;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 13px;
	margin-bottom: 20px;
	color: #595a5c;
}

.imgbox-highlight .content .inner-content h6::after {
	content:"";
	position: absolute;
	bottom: -10px;
	left: 2px;
	width: 10px;
	height: 2px;
	background-color: #595a5c;
}

.imgbox-highlight .content .inner-content .intro {
	display: inline-block;
	font-size: 18px;
	line-height: 24px;
	font-weight: 900;
	margin-bottom: 5px;
}

.imgbox-highlight .content .inner-content p {
	font-size: 13px;
	margin-bottom: 10px;
}

.imgbox-highlight .content a.view-button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f0e3c8;
	color: #144270;
	font-size: 26px;
	font-weight: 900;
	text-transform: uppercase;
	padding: 7px;
	margin-top: auto;
	margin-left: -20px;
	transition: all 0.6s;
	cursor: pointer;
}
.imgbox-highlight .content a.view-button i {
	font-weight: bold;
}

.imgbox-highlight .content .relative {
	position: relative;
	height: 66px;
	width: 66px;
}

.imgbox-highlight .content .on-hover,
.imgbox-highlight .content .no-hover {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.6s;
	height: 50px;
    width: 50px;
}

.imgbox-highlight .content .on-hover {
	opacity: 0;
}

.imgbox-highlight .content a.view-button:hover .no-hover {
	opacity: 0;
}

.imgbox-highlight .content a.view-button:hover .on-hover {
	opacity: 1;
}

.imgbox-highlight .content a.view-button:hover {
	background-color: #f6b715;
	color: white;
}

@media (max-width: 1024px) {
	.imgbox-highlight {
		display: block;
		padding-top: 25px;
	}
	.imgbox-highlight .content {
		width: 100%;
		margin: 0 auto;
		padding-left: 0;
	}
	.imgbox-highlight .img-cont {
		width: 80%;
		margin: 0 auto;
	}
	.imgbox-highlight .content .inner-content,
	.imgbox-highlight .content .title {
		width: 80%;
		margin: 0 auto;
	}
	.imgbox-highlight .content .inner-content {
		padding-left: 0;
		padding-right: 0;
	}
	.imgbox-highlight .content .btn {
		justify-content: center;
	}
}

@media (max-width: 641px) {
	.imgbox-highlight .content .inner-content,
	.imgbox-highlight .content .title {
		width: 90%;
		margin: 0 auto;
	}
	.imgbox-highlight .content .title img {
		height: 60px;
	}
	.imgbox-highlight .img-cont {
		width: 90%;
	}
	.imgbox-highlight .content .btn {
		font-size: 18px;
	}
	.imgbox-highlight .content {
		padding-left: 0;
	}
	.imgbox-highlight .content .title span {
		margin-bottom: 5px;
	}
	.imgbox-highlight .content .title h5 {
		font-size: 24px;
		margin: 0;
	}
	.imgbox-highlight .content .inner-content {
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 20px;
	}
	.imgbox-highlight .img-cont .play-btn {
		font-size: 33px;
	}
	.imgbox-highlight .content .inner-content p {
		font-size: 13px;
	}
	.imgbox-highlight .content .title .yellow-box {
		width: 60px;
		height: 60px;
	}
}
