/* MDB VIEW ZOOM */
.view {
	position: relative;
	overflow: hidden;
	cursor: default;
}

.view .mask {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-attachment: fixed;
}

.view img {
	position: relative;
	display: block;
}

.overlay .mask {
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.overlay .mask:hover {
	opacity: 1;
}

.zoom img {
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.zoom:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

/* TEMP CLASS, PLEASE REMOVE */
header .btn-floating.btn-sm {
	height: 15px;
	width: 15px;
}

p.small {
	margin-bottom: 0.5rem;
}

.centered-and-cropped {
	object-fit: cover;
}

.border-radius-tl {
	border-top-left-radius: calc(0.75rem - 1px);
}

.border-radius-bl {
	border-bottom-left-radius: calc(0.75rem - 1px);
}

.br-box {
	border-radius: 0.5rem;
}

.collapsed-content {
	height: 2.65rem;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

/* Badge */
.badge {
	border-radius: 0;
	padding: 0.2rem 0.5rem;
	line-height: 1rem;
	font-size: 0.8rem;
	font-weight: 600;
	box-shadow: none;
}

.badge-primary {
	color: #fff;
	background-color: #177ccd !important;
}

.badge-primary[href]:hover,
.badge-primary[href]:focus {
	color: #fff;
	text-decoration: none;
	background-color: #0062cc;
}

.view a .gradient-bg-hover {
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.8) 100%);
	/* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(35%, rgba(0, 0, 0, 0.8)), color-stop(100%, rgba(0, 0, 0, 0)));
	/* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.8) 100%);
	/* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.8) 100%);
	/* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.8) 100%);
	/* IE10+ */
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.8) 100%);
	/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000cc', endColorstr='#00000000', GradientType=0);
	/* IE6-9 */
	z-index: 1;
}

.view a .gradient-bg-hover::before {
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.6)), color-stop(100%, rgba(0, 0, 0, 0)));
	/* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* IE10+ */
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
	/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000cc', endColorstr='#00000000', GradientType=0);
	/* IE6-9 */
	z-index: -1;
	transition: opacity 0.5s linear;
	opacity: 0;
}

.view a:hover .gradient-bg-hover::before {
	opacity: 1;
}

.gradient-bg {
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	/* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.8)), color-stop(100%, rgba(0, 0, 0, 0)));
	/* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	/* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	/* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	/* IE10+ */
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000cc', endColorstr='#00000000', GradientType=0);
	/* IE6-9 */
}

.gradient-bg a {
	color: #fff;
}

.gradient-bg a:hover {
	color: #ffffff;
	text-shadow: 2px 2px 3px #000;
}

/* Lightbox Caption */
.pswp__caption__center {
	max-width: 90vw;
}

.pswp__caption a {
	color: #ccc;
}

.pswp__caption a:hover {
	color: white;
}

/* News Post */
.post_share_list,
.post_share_item {
	display: flex;
	float: right;
	list-style: none;
}

#news-post .mdb-lightbox figure {
	float: none !important;
}

#news-post .carousel-caption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	padding: 20px;
	color: #fff;
	text-align: left;
	font-size: 0.8rem !important;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 70%);
	/* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.8)), color-stop(70%, rgba(0, 0, 0, 0)));
	/* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 70%);
	/* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 70%);
	/* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 70%);
	/* IE10+ */
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 70%);
	/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000cc', endColorstr='#00000000', GradientType=0);
	/* IE6-9 */
}

/* Subscribe Form */
.subscribe-form {
	background-color: #2e2e2e;
	padding: 2rem 1.5rem;
	color: white;
	text-align: center;
}

.subscribe-form .btn {
	width: 100%;
	margin: 1.5rem 0 0;
	letter-spacing: 0.2rem;
}

/* RESIZE COLUMN WIDTH with Margin Added *********************************************/
/*Tablet (Large) & Desktop */
@media (min-width: 991.98px) {
	.block-one-third {
		margin: 0 5px;
		max-width: calc(33.3333% - 10px);
	}

	.block-quarter {
		margin: 0 10px;
		max-width: calc(25% - 20px);
	}

	.card-columns {
		-webkit-column-count: 3;
		-moz-column-count: 3;
		column-count: 3;
		-webkit-column-gap: 1.25rem;
		-moz-column-gap: 1.25rem;
		column-gap: 1.25rem;
		orphans: 1;
		widows: 1;
	}

	.card-columns .card {
		display: inline-block;
		width: 100%;
	}
}

@media (max-width: 992px) {
}

/*Tablet (Small) ONLY */
@media (min-width: 768px) and (max-width: 991.98px) {
	.block-quarter {
		margin: 0 10px;
		max-width: calc(50% - 20px);
	}

	.block-one-third {
		margin: 0 5px;
		max-width: calc(50% - 10px);
	}

	.card-columns {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 1.25rem;
		-moz-column-gap: 1.25rem;
		column-gap: 1.25rem;
		orphans: 1;
		widows: 1;
	}

	.card-columns .card {
		display: inline-block;
		width: 100%;
	}
}

/* Mobile ONLY */
@media (max-width: 767.98px) {
	.block-one-third {
		margin: 0 15px;
		max-width: 100%;
	}

	.block-quarter {
		margin: 0 15px;
		width: 100%;
	}
}

/* CAROUSEL CUSTOMIZE CSS *********************************************/
/* Carousel Control ( Prev & Next ) */
.carousel-control {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 10%;
	font-size: 20px;
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
	background-color: rgba(0, 0, 0, 0);
	filter: alpha(opacity=50);
	opacity: 0.75;
	z-index: 1;
}

.carousel-control.left {
	background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0.0001) 100%);
	background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0.0001) 100%);
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0.0001)));
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0.0001) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
	background-repeat: repeat-x;
}

.carousel-control.right {
	right: 0;
	left: auto;
	background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.0001) 0, rgba(255, 255, 255, 0.5) 100%);
	background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.0001) 0, rgba(255, 255, 255, 0.5) 100%);
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.0001)), to(rgba(255, 255, 255, 0.5)));
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.0001) 0, rgba(255, 255, 255, 0.5) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
	background-repeat: repeat-x;
}

.carousel-control .fa-chevron-left,
.carousel-control .fa-chevron-right {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: inline-block;
	margin-top: -10px;
	left: 50%;
	margin-left: -10px;
}

/* Carousel With Captions */
.with-captions .carousel-indicators {
	position: relative !important;
	bottom: 0;
}

.with-captions .carousel-indicators li {
	background-color: #3062ff;
}

.with-captions .carousel-indicators .active {
	background-color: #fff;
	border: 2px solid #3062ff;
}

/* Carousel Multi Item + Carousel with Lightbox */
.carousel-multi-item .carousel-indicators li {
	height: 0.625rem;
	width: 0.625rem;
	max-width: 0.625rem;
	background-color: #3062ff;
	margin-bottom: -3.75rem;
}

.carousel-multi-item .carousel-indicators .active {
	height: 0.625rem;
	width: 0.625rem;
	max-width: 0.625rem;
	background-color: #fff !important;
	border: 2px solid #3062ff;
}

/* LIST BREAKER CSS *********************************************/
.post-data {
	display: flex;
	flex-wrap: wrap;
}

.breaker_1 {
	background-color: #150f19;
	color: #fff;
}

.breaker_1 .view img {
	height: 450px;
}

.breaker_1 .row {
	padding: 80px 0;
}

.breaker_1 .summary {
	color: #d4d4d4;
	font-size: 14px;
}

.listbreaker_1 .summary,
.listbreaker_1b .summary,
.listbreaker_1c .summary,
.listbreaker_2 .post-data,
.listbreaker_2 .summary,
.listbreaker_4 .post-data,
.listbreaker_4 .summary,
.listbreaker_5 .post-data,
.listbreaker_7 .summary {
	display: none;
}

.listbreaker_4 .col-lg-7 .post-data,
.listbreaker_4 .col-lg-7 .summary {
	display: block;
}

.col5 {
	flex-basis: 20%;
}

.listbreaker_6 .carousel-indicators {
	top: 1rem;
}

.listbreaker_6 .carousel-item .view img {
	height: 240px;
}

.listbreaker_6b .carousel-item .view img {
	height: 240px;
}

.listbreaker_6b {
	background-color: #51627b;
}

.listbreaker_6b .with-captions .carousel-indicators li {
	background-color: #ebe5dc;
}

.listbreaker_6b .with-captions .carousel-indicators .active {
	background-color: #1570a2;
	border: 2px solid #ebe5dc;
}

.listbreaker_6b a {
	color: #fff;
}

.listbreaker_6b a:hover {
	color: #ebe5dc;
}

.listbreaker_8 .carousel-inner .card-img-top {
	height: 191px;
}

.listbreaker_8 .carousel-indicators .btn-floating {
	background-color: #3062ff;
}

.listbreaker_8 .carousel-multi-item .carousel-indicators li {
	margin-bottom: 0;
}

.listbreaker_8 .carousel-multi-item .carousel-indicators {
	margin-bottom: -5em;
}

.carousel-multi-item.v-2 .carousel-item-right.active,
.carousel-multi-item.v-2 .carousel-item-next {
	-webkit-transform: translateX(25%);
	-ms-transform: translateX(25%);
	transform: translateX(25%);
}

.carousel-multi-item.v-2 .carousel-item-left.active,
.carousel-multi-item.v-2 .carousel-item-prev {
	-webkit-transform: translateX(-25%);
	-ms-transform: translateX(-25%);
	transform: translateX(-25%);
}

.carousel-multi-item.v-2 .carousel-item-right,
.carousel-multi-item.v-2 .carousel-item-left {
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

@media (min-width: 768px) {
	.carousel-multi-item .col-md-3 {
		float: left;
		width: 25%;
		max-width: 100%;
	}
}

/* Mobile ONLY */
@media (max-width: 767.98px) {
	.listbreaker .col-6:nth-child(odd) {
		padding-left: 20px;
		padding-right: 10px;
	}

	.listbreaker .col-6:nth-child(even) {
		padding-left: 10px;
		padding-right: 20px;
	}

	.listbreaker_1c .carousel-item .block-quarter {
		margin: 0;
		display: none;
	}

	.listbreaker_1c .carousel-item .block-quarter:first-child {
		display: block;
		width: 100%;
	}

	.col5 {
		flex-basis: 50%;
	}

	.col5:last-child {
		display: none;
	}

	.col5:nth-child(odd) {
		padding-left: 20px;
		padding-right: 10px;
	}

	.col5:nth-child(even) {
		padding-left: 10px;
		padding-right: 20px;
	}

	.listbreaker_4 .post-data {
		display: flex;
	}

	.listbreaker_4 .col-lg-7 .summary {
		display: none;
	}
}

/* Tablet (Small) ONLY */
@media (min-width: 768px) and (max-width: 991.98px) {
	.listbreaker_1c .carousel-item .block-quarter {
		float: left;
		margin: 0 10px;
		max-width: calc(33% - 20px);
	}

	.listbreaker_1c .carousel-item .block-quarter:nth-child(4n + 0) {
		display: none;
	}

	.col5 {
		flex-basis: 33.3333%;
	}

	.col5:nth-child(4n + 0),
	.col5:last-child {
		display: none !important;
	}

	.listbreaker_4 .col-lg-7 .summary,
	.listbreaker_5 .summary,
	.listbreaker_7 #news:last-child {
		display: none;
	}

	.listbreaker_4 .post-data {
		display: flex;
	}
}

/* Tablet (Large & Small) ONLY */
@media (min-width: 768px) and (max-width: 1199.98px) {
}

/* Mobile & Tablet */
@media (max-width: 992px) {
}

/* Tablet(Large) & Desktop */
@media (min-width: 992px) {
	.listbreaker_1c .carousel-item .block-quarter {
		float: left;
		margin: 0 10px;
		max-width: calc(25% - 20px) !important;
	}
}

/* Desktop ONLY */
@media (min-width: 1200px) {
}

/* SIDEBAR CSS *********************************************/
.sidebar .floating {
	/*sidebar 7*/
	position: absolute;
	bottom: 0;
	padding: 2rem 0.75rem 0.75rem;
	color: white;
}

.sidebar_listing_2 img {
	height: 65px;
}

.sidebar_listing_2b img {
	height: 83px;
}

.sidebar_listing_3 img {
	height: 85px;
}

.sidebar_listing_4 img {
	height: 125px;
}

.sidebar_listing_4b img {
	height: 100px;
}

.sidebar_listing_4c img {
	height: 130px;
}

.sidebar_listing_5 img {
	height: 220px;
}

.sidebar_listing_5b img {
	height: 220px;
}

.sidebar_listing_6 img {
	height: 220px;
}

.sidebar_listing_6 .col-lg-4 img {
	height: 74px;
}

.sidebar_listing_7 img {
	height: 220px;
}

.sidebar_listing_7 .col-lg-6 img {
	height: 110px;
}

.sidebar_listing_7b img {
	height: 220px;
}

.sidebar_listing_7b .col-lg-6 img {
	height: 110px;
}

.sidebar_listing_8 img {
	height: 220px;
}

.sidebar_listing_8b img {
	height: 220px;
}

.sidebar_listing_8 .carousel-item .carousel-caption,
.sidebar_listing_8b .carousel-item .carousel-caption {
	position: relative;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	color: #000;
	text-align: left;
	padding: 0.75rem 0.75rem;
}

.sidebar_listing_8b .box {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
}

.sidebar_listing_8b .box .column {
	flex: 1;
	padding: 0 !important;
	margin: 0 15px !important;
	border: 1px solid #dee2e6;
}

.sidebar_listing_9 img {
	height: 70px;
	width: 70px;
}

.sidebar_listing_9 .view {
	margin-right: 20px;
}

.sidebar_listing_9 .h5-responsive {
	font-size: 105%;
}

.post-number-1 {
	position: absolute;
	font-size: 12px;
	font-weight: 700;
	width: 30px;
	height: 30px;
	border-radius: 30px;
	line-height: 30px;
	text-align: center;
	border: 2px solid #1570a2;
	background-color: #fff;
	color: #111;
	top: -5px;
	left: 5px;
	z-index: 10;
}

.post-number-2 {
	position: absolute;
	font-size: 12px;
	font-weight: 700;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border: 1px solid #eee;
	background-color: #fff;
	color: #111;
	bottom: -5px;
	right: -5px;
	z-index: 10;
}

.sidebar_listing_9 .post-desc {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 0;
	-ms-flex: 1 1 0;
	flex: 1 1 0;
	-webkit-align-self: center;
	align-self: center;
	margin-top: 0;
	margin-bottom: 0;
}

/* Mobile ONLY */
@media (max-width: 767.98px) {
	.sidebar {
		margin: 0 10px;
	}
}

/******************** NEWS LISTING *************************/
.news-listing .row.border,
.news-listing .row.z-depth-1,
.news-listing .row.br-box {
	margin-left: 0;
	margin-right: 0;
}

.news-listing .floating {
	/*sidebar 7*/
	position: absolute;
	bottom: 0;
	padding: 2rem 0.75rem 0.75rem;
	color: white;
}

.magazine-section.magazine-section-1 .view img {
	height: 268px;
}

.magazine-section .single-news {
	padding: 0.5rem 0;
}

.magazine-section .single-news:first-of-type {
	padding-top: 0;
}

.news-listing_5b .row.box {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
}

.news-listing_5b .row.box .column {
	flex: 1;
	padding: 0 !important;
	margin: 0 15px !important;
}

.news-listing_1 .single-news .view img,
.news-listing_1b .single-news .view img,
.news-listing_1c .single-news .view img,
.news-listing_1d .single-news .view img,
.news-listing_1e .single-news .view img,
.news-listing_2 .single-news .view img,
.news-listing_2b .single-news .view img,
.news-listing_2c .single-news .view img,
.news-listing_2d .single-news .view img,
.news-listing_2e .single-news .view img,
.news-listing_4 .single-news .view img,
.news-listing_4b .single-news .view img,
.news-listing_4c .single-news .view img,
.news-listing_4d .single-news .view img,
.news-listing_4e .single-news .view img,
.news-listing_8 .single-news .view img,
.news-listing_8b .single-news .view img {
	height: 160px;
}

.news-listing_3 .single-news .view img,
.news-listing_3b .single-news .view img,
.news-listing_3c .single-news .view img,
.news-listing_3d .single-news .view img,
.news-listing_3e .single-news .view img {
	height: 140px;
}

.news-listing_5 img,
.news-listing_5b img,
.news-listing_5c img {
	height: 90px;
}

.news-listing_6 img,
.news-listing_6b img,
.news-listing_6c img {
	height: 145px;
}

.news-listing_7 .col-lg-6:nth-child(1) img {
	height: 300px;
}

.news-listing_7 .col-lg-6 img {
	height: 120px;
}

.news-listing_9 .col-md-6:nth-child(1) img {
	height: 200px;
}

.news-listing_9 .row img {
	height: 100px;
}

.news-listing_10 .single-news {
	margin: 1.5rem 0;
	border-bottom: 1px solid #dee2e6;
}

/* .news-listing_10 .single-news:nth-child(1) img {
  height: 230px;
} */

.news-listing_10 .single-news img {
	height: 110px;
}

.news-listing_10-2 .single-news {
	margin: 1.5rem 0;
	border-bottom: 1px solid #dee2e6;
}

.news-listing_10-2 .single-news img {
	height: 110px;
}

.news-listing_10-2 .single-news {
	margin: 1.5rem 0;
	border-bottom: 1px solid #dee2e6;
}

.news-listing_10b .single-news:nth-child(1) img {
	height: 300px;
}

.news-listing_10b .single-news img {
	height: 110px;
}

.news-listing_11 .single-news img {
	height: 150px;
}

.news-listing_11b .single-news img {
	height: 150px;
}

.news-listing_11b .carousel-item-box {
	padding: 1rem;
}

.news-listing_11b .single-news {
	flex: 1;
	padding: 0 !important;
	margin: 0 15px !important;
	border: 1px solid #dee2e6;
}

.news-listing_12 .col-lg-6:nth-child(1) .single-news .view img {
	height: 500px;
}

.news-listing_12 .col-lg-6:nth-child(2) .single-news .view img {
	height: 73px;
}

.news-listing_12 .single-news .news-title {
	position: absolute;
	width: 90%;
	left: 5%;
	bottom: 0;
	color: black;
	background-color: white;
	padding: 1rem 1.5rem;
}

.news-listing_12 .single-news .news-title .badge {
	position: absolute;
	top: -2rem;
	padding: 0.5rem 1rem;
}

.news-listing_13 .card img {
	height: 234px;
}

@media (min-width: 767.98px) {
	.news-listing_6b .block {
		margin: 0 5px;
		max-width: calc(33.3333% - 10px);
	}
}

/* Mobile ONLY */
@media (max-width: 767.98px) {
	.news-listing {
		/* margin: 0 10px; */
	}

	.news-listing_8 .single-news .view img,
	.news-listing_8b .single-news .view img {
		height: 125px;
	}

	.news-listing_8 .h5-responsive {
		/* font-size: 100%; */
	}
}

/* Tablet (Small) ONLY */
@media (min-width: 768px) and (max-width: 991.98px) {
}

/* Tablet (Large & Small) ONLY */
@media (min-width: 768px) and (max-width: 1199.98px) {
}

/* Mobile & Tablet */
@media (max-width: 992px) {
	.news-listing_1 .single-news .view img,
	.news-listing_1b .single-news .view img,
	.news-listing_1c .single-news .view img,
	.news-listing_1d .single-news .view img,
	.news-listing_1e .single-news .view img,
	.news-listing_2 .single-news .view img,
	.news-listing_2b .single-news .view img,
	.news-listing_2c .single-news .view img,
	.news-listing_2d .single-news .view img,
	.news-listing_2e .single-news .view img,
	.news-listing_4 .single-news .view img,
	.news-listing_4b .single-news .view img,
	.news-listing_4c .single-news .view img,
	.news-listing_4d .single-news .view img,
	.news-listing_4e .single-news .view img,
	.news-listing_8 .single-news .view img,
	.news-listing_8b .single-news .view img,
	.news-listing_3 .single-news .view img,
	.news-listing_3b .single-news .view img,
	.news-listing_3c .single-news .view img,
	.news-listing_3d .single-news .view img,
	.news-listing_3e .single-news .view img {
		height: 90px;
	}
}

/* Tablet(Large) & Desktop */
@media (min-width: 992px) {
}

/* Desktop ONLY */
@media (min-width: 1200px) {
}

/* FEATURED SECTION CSS *********************************************/
/* Featured Big 1 Carousel*/
.featured_big_1 {
}

.featured_big_1 .banner {
	height: 400px;
	margin-bottom: -375px;
	background-color: #000;
}

.featured_big_1 .carousel {
	max-width: 1600px;
}

.featured_big_1 .carousel-inner {
	background-color: #000;
}

.featured_big_1 .view {
	height: calc(100vh - 81px);
	max-height: 700px;
}

.featured_big_1 .carousel-item:nth-child(1) {
	background-image: url('https://cdn1.i-scmp.com/sites/default/files/styles/1920x1080/public/images/methode/2017/08/24/201a6c52-8881-11e7-8f03-5f0754277a16_1320x770_142536.JPG?itok=UcTax8Yw');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.featured_big_1 .carousel-item:nth-child(2) {
	background-image: url('https://timedotcom.files.wordpress.com/2018/09/gettyimages-1013072088.jpg?quality=85');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.featured_big_1 .carousel-item:nth-child(3) {
	background-image: url('https://www.unreservedmedia.com/wp-content/uploads/2018/09/najib-court-appearance-mohd-rasfan-AFP.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.featured_1 .floating {
	position: absolute;
	width: 100%;
	bottom: 0;
	padding: 1.25rem;
}

.featured_1___ .floating {
	position: absolute;
	width: 100%;
	bottom: 0;
	padding: 1.25rem;
}

.featured_1b___ .card-body-middle {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* margin: auto; */
	height: 100%;
	display: flex;
	width: 100%;
}

.featured_1b___ .card-body-middle {
	padding-top: 8rem;
}

.featured_1b___ .card-body-middle .post-desc {
	margin: auto;
}

.featured_1b___ .card {
	-webkit-box-shadow: unset;
	box-shadow: unset;
}

.featured_1b___ .card-body {
	padding: 0.9rem 1.25rem;
}

.featured .carousel-caption {
	text-align: left;
}

/* Thumbnails Carousel*/
.featured_3b .carousel-thumbnails .carousel-indicators,
.featured_3c .carousel-thumbnails .carousel-indicators {
	position: relative;
	margin: 0;
	bottom: 0;
	top: 5px;
}

.featured_4 .carousel-thumbnails .carousel-indicators,
.featured_4b .carousel-thumbnails .carousel-indicators,
.featured_4b___ .carousel-thumbnails .carousel-indicators {
	position: relative;
	margin: 0;
	bottom: 0;
	display: block;
}

.featured_5 .carousel-thumbnails .carousel-indicators {
	margin: 0 6%;
	bottom: 0;
}

.featured_3b .carousel-thumbnails .carousel-indicators .active,
.featured_3c .carousel-thumbnails .carousel-indicators .active {
	opacity: 0.75;
}

.featured_4 .carousel-thumbnails .carousel-indicators .active,
.featured_4b .carousel-thumbnails .carousel-indicators .active,
.featured_4b___ .carousel-thumbnails .carousel-indicators .active,
.featured_5 .carousel-thumbnails .carousel-indicators .active {
	opacity: 1;
}

.featured_3b .carousel-thumbnails .carousel-indicators li,
.featured_3c .carousel-thumbnails .carousel-indicators li {
	width: 33.3333%;
	max-width: 33.3333%;
	margin: 0;
}

.featured_4 .carousel-thumbnails .carousel-indicators li,
.featured_4b .carousel-thumbnails .carousel-indicators li,
.featured_4b___ .carousel-thumbnails .carousel-indicators li,
.featured_5 .carousel-thumbnails .carousel-indicators li {
	width: 100%;
	max-width: 100%;
	margin: 0;
	border-radius: 0;
	display: flex;
}

.featured_4 .carousel-thumbnails .carousel-indicators li {
	height: 33.333%;
}

.featured_4b___ .carousel-thumbnails .carousel-indicators li {
	height: 25%;
}

.featured_3b .carousel-thumbnails .carousel-indicators li:nth-child(2),
.featured_3c .carousel-thumbnails .carousel-indicators li:nth-child(2),
.featured_5 .carousel-thumbnails .carousel-indicators li:nth-child(2) {
	margin: 0 5px;
}

.featured_3 .carousel-thumbnails .carousel-indicators img {
	height: 44px;
}

.featured_3c .carousel-thumbnails .carousel-indicators img,
.featured_3b .carousel-thumbnails .carousel-indicators img {
	height: 130px;
}

.featured_3b .carousel-thumbnails .carousel-indicators img,
.featured_3c .carousel-thumbnails .carousel-indicators img,
.featured_4 .carousel-thumbnails .carousel-indicators img,
.featured_4b .carousel-thumbnails .carousel-indicators img,
.featured_4b___ .carousel-thumbnails .carousel-indicators img {
	max-width: 100%;
}

.featured_3b .thumb-caption {
	text-indent: 0px;
	padding: 2rem;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
}

.featured_3c .thumb-caption {
	text-indent: 0px;
	padding: 1rem;
	width: 90%;
	height: 80%;
	position: absolute;
	top: 10%;
	left: 5%;
	background-color: white;
	color: black;
}

.featured_4 .thumb-caption {
	text-indent: 0px;
	padding: 0.88rem 1.5rem;
	width: 100%;
	height: auto;
	top: 10%;
	left: 5%;
	border: 1px solid #dee2e6;
	border-top: 0;
	background-color: white;
	color: black;
}

.featured_4 .carousel-thumbnails .carousel-indicators .active .thumb-caption {
	background-color: #eaf3ff;
}

.featured_4b .thumb-caption,
.featured_4b___ .thumb-caption {
	text-indent: 0px;
	padding: 1.32rem 1.5rem;
	width: 100%;
	height: auto;
	top: 10%;
	left: 5%;
	border: 1px solid #dee2e6;
	border-top: 0;
	color: black;
}

.featured_5 .thumb-caption {
	text-indent: 0px;
	padding: 1rem 1rem;
	width: 100%;
	height: 100%;
	top: 10%;
	left: 5%;
	color: black;
}

/* /Thumbnails Carousel*/

.featured_2 .single-news img {
	height: 500px;
}

.featured_3 .single-news img,
.featured_3c .single-news img,
.featured_3b .single-news img {
	height: 420px;
}

.featured_3b .single-news:hover a {
	text-decoration: underline;
}

.featured_4 .single-news .view {
	height: 335.41px;
}

.featured_4b___ .single-news .view {
	height: 470.4px;
}

.featured_5 .single-news .view {
	height: 490px;
}

.featured_6 .news-title,
.featured_6___ .news-title,
.featured_7 .news-title,
.featured_7___ .news-title,
.featured_8 .news-title,
.featured_8___ .news-title,
.featured_9___ .news-title,
.featured_9b___ .news-title,
.featured_9d___ .news-title,
.featured_9e___ .news-title {
	position: absolute;
	width: 90%;
	left: 5%;
	bottom: 0;
	color: black;
	background-color: white;
	padding: 0.5rem 1rem;
}

.featured_6 .news-title .badge,
.featured_6___ .news-title .badge,
.featured_7 .news-title .badge,
.featured_7___ .news-title .badge,
.featured_8 .news-title .badge,
.featured_8___ .news-title .badge,
.featured_9___ .news-title .badge,
.featured_9b___ .news-title .badge,
.featured_9d___ .news-title .badge,
.featured_9e___ .news-title .badge {
	position: absolute;
	top: -2rem;
	padding: 0.5rem 1rem;
	letter-spacing: 1px;
	font-weight: normal;
	text-transform: uppercase;
}

.featured_6___ .col-lg-8 .single-news .view,
.featured_7___ .col-lg-7 .single-news .view,
.featured_8___ .col-lg-7 .single-news .view,
.featured_9___ .col-lg-6 .single-news .view {
	height: calc(240px + 240px + 1.5rem);
}

.featured_9b___ .col-lg-6 .single-news .view,
.featured_9d___ .col-lg-6 .single-news .view,
.featured_9d___ .col-lg-3 .single-news .view,
.featured_9e___ .col-lg-3 .single-news .view {
	height: calc(240px + 240px + 0.5rem);
}

.featured_6___ .col-lg-4 .single-news .view,
.featured_7___ .col-lg-5 .single-news .view,
.featured_8___ .col-lg-5 .single-news .view,
.featured_9___ .col-lg-3 .single-news .view,
.featured_9b___ .col-lg-3 .single-news .view {
	height: 240px;
}

.featured_8 .col-lg-7 .single-news img {
	max-height: 100%;
}

/* Mobile ONLY */
@media (max-width: 767.98px) {
	.featured_2 .h3-responsive,
	.featured_3 .h3-responsive,
	.featured_3b .h3-responsive,
	.featured_3c .h3-responsive,
	.featured_4 .h3-responsive,
	.featured_4b .h3-responsive,
	.featured_4b___ .h3-responsive,
	.featured_5 .h3-responsive {
		font-size: 125%;
	}

	.featured_3 .carousel-caption,
	.featured_3b .carousel-caption,
	.featured_3c .carousel-caption,
	.featured_4 .carousel-caption,
	.featured_4b .carousel-caption,
	.featured_4b___ .carousel-caption,
	.featured_5 .carousel-caption {
		bottom: 0;
	}

	.featured_1___ .floating {
		padding: 1rem;
	}

	.featured_1___ .row .single-news .view {
		height: 230px;
	}

	.featured_1___ .card-group .single-news .view {
		height: 130px;
	}

	.featured_1b___ .card .view {
		height: 400px;
	}

	.featured_1b___ .card-group .card .view {
		height: 160px;
	}

	.featured_2 .single-news img {
		height: 250px;
	}

	.featured_3 .single-news img,
	.featured_3c .single-news img,
	.featured_3b .single-news img {
		height: 250px;
	}

	.featured_4b___ .single-news .view,
	.featured_5 .single-news .view {
		height: 190px;
	}

	.featured_6___ .col-lg-8 .single-news .view,
	.featured_7___ .col-lg-7 .single-news .view,
	.featured_8___ .col-lg-7 .single-news .view,
	.featured_9___ .col-lg-6 .single-news .view,
	.featured_9b___ .col-lg-6 .single-news .view {
		height: 300px;
	}

	.featured_6___ .col-lg-4 .single-news .view,
	.featured_7___ .col-lg-5 .single-news .view,
	.featured_8___ .col-lg-5 .single-news .view,
	.featured_9___ .col-lg-3 .single-news .view,
	.featured_9b___ .col-lg-3 .single-news .view {
		height: 180px;
	}

	.featured_6 .news-title,
	.featured_6___ .news-title,
	.featured_7 .news-title,
	.featured_7___ .news-title,
	.featured_8 .news-title,
	.featured_8___ .news-title,
	.featured_9___ .news-title,
	.featured_9b___ .news-title {
		padding: 0.5rem 1rem;
	}
}

/* Tablet (Small) ONLY */
@media (min-width: 768px) and (max-width: 991.98px) {
	.featured_1 .h4-responsive {
		font-size: 115% !important;
	}

	.featured_1 .single-news:first-child img {
		max-height: 300px;
	}

	.featured_1___ .h4-responsive {
		font-size: 115% !important;
	}

	.featured_1___ .row .single-news .view {
		height: 300px;
	}

	.featured_1___ .card-group .single-news .view {
		height: 200px;
	}

	.featured_1b___ .card .view {
		height: 400px;
	}

	.featured_1b___ .card-group .card .view {
		height: 160px;
	}

	.featured_2 .single-news img {
		height: 370px;
	}

	.featured_3 .single-news img,
	.featured_3c .single-news img,
	.featured_3b .single-news img {
		height: 370px;
	}

	.featured_4 .single-news img {
		min-height: 455px;
	}

	.featured_4b___ .single-news .view,
	.featured_5 .single-news .view {
		height: 305px;
	}

	.featured_4 .carousel-thumbnails .carousel-indicators,
	.featured_4b .carousel-thumbnails .carousel-indicators,
	.featured_4b___ .carousel-thumbnails .carousel-indicators {
		position: relative;
		margin: 0;
		bottom: 0;
		display: flex;
	}

	.featured_5 .thumb-caption {
		padding: 0.8rem;
		font-size: 90%;
	}

	.featured_5 .h5-responsive {
		margin-bottom: 0;
	}

	.featured_6___ .col-lg-8 .single-news .view,
	.featured_7___ .col-lg-7 .single-news .view,
	.featured_8___ .col-lg-7 .single-news .view {
		height: 400px;
	}

	.featured_6___ .col-lg-4 .single-news .view,
	.featured_7___ .col-lg-5 .single-news .view,
	.featured_8___ .col-lg-5 .single-news .view {
		height: 280px;
	}

	.featured_9___ .col-lg-6 .single-news .view,
	.featured_9b___ .col-lg-6 .single-news .view {
		height: 320px;
	}

	.featured_9___ .col-lg-3 .single-news .view,
	.featured_9b___ .col-lg-3 .single-news .view {
		height: 130px;
	}
}

/* Tablet (Large & Small) ONLY */
@media (min-width: 768px) and (max-width: 1199.98px) {
	.featured_4 .single-news img {
		height: 383px;
	}
}

/* Mobile & Tablet */
@media (max-width: 991px) {
	.featured_3c .carousel-thumbnails .carousel-indicators img,
	.featured_3b .carousel-thumbnails .carousel-indicators img {
		height: 90px;
	}
}

/* Tablet(Large) & Desktop */
@media (min-width: 992px) {
	.featured_1 .single-news:first-child img {
		max-height: 500px;
	}

	.featured_1___ .row .single-news .view {
		height: 400px;
	}

	.featured_1___ .card-group .single-news .view {
		height: 200px;
	}

	.featured_1b___ .card .view {
		height: 400px;
	}

	.featured_1b___ .card-group .card .view {
		height: 160px;
	}

	.featured_7 .single-news img {
		max-height: 170px;
	}

	.featured_8 .single-news img {
		max-height: 170px;
	}

	.featured_4 .carousel .row > div,
	.featured_4b .carousel .row > div,
	.featured_4b___ .carousel .row > div {
		padding: 0;
	}

	.featured_4 .carousel-thumbnails .carousel-indicators li:first-of-type .thumb-caption,
	.featured_4b .carousel-thumbnails .carousel-indicators li:first-of-type .thumb-caption,
	.featured_4b___ .carousel-thumbnails .carousel-indicators li:first-of-type .thumb-caption {
		border-top: 1px solid #dee2e6;
	}
}

/* Desktop ONLY */
@media (min-width: 1200px) {
	.featured_4b .carousel-control-prev,
	.featured_4b___ .carousel-control-prev {
		margin-left: -15px;
	}

	.featured_4b .carousel-control-next,
	.featured_4b___ .carousel-control-next {
		right: 33.33%;
		margin-right: -15px;
	}

	.featured_4b .carousel-caption,
	.featured_4b___ .carousel-caption {
		right: 43%;
		left: 10%;
	}

	.featured_4b .news-list,
	.featured_4b___ .news-list {
		position: absolute;
		right: -15px;
	}

	.featured_4b .carousel-thumbnails .carousel-indicators .active .thumb-caption,
	.featured_4b___ .carousel-thumbnails .carousel-indicators .active .thumb-caption {
		background-color: #fff;
	}

	.featured_4b .carousel-thumbnails .carousel-indicators .active,
	.featured_4b___ .carousel-thumbnails .carousel-indicators .active {
		opacity: 1;
	}

	.featured_7 .single-news img {
		max-height: 200px;
	}

	.featured_8 .h5-responsive {
		font-size: 110%;
	}
}
