
/*=================
Hero Section
==================*/

.hero-section .hero-carousel{
	position: relative;
	background-image: url(../images/hero-img.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.hero-section .hero-carousel::before{
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.4);
}
.hero-section .hero-carousel .content{
	position: relative;
	max-width: 35%;
	margin: auto;
	text-align: center;
	padding: 250px 12px;
}
.hero-section .hero-carousel .content .category ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.hero-section .hero-carousel .content .category ul li a{
	display: inline-block;
	color: #fff;
	background-color: var(--primary-color);
	margin-right: 5px;
	padding: 5px 15px;
}
.hero-section .hero-carousel .title{
	margin-bottom: 38px;
}
.hero-section .hero-carousel .title a{
	color: #fff;
}
.hero-section .hero-carousel .owl-item.active .category{
	margin-bottom: 20px;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.5s;
}
.hero-section .hero-carousel .owl-item.active .title {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.hero-section .hero-carousel .owl-item.active .post-meta {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
.hero-section .hero-carousel .post-meta{
	display: flex;
	align-items: center;
	text-align: left;
	justify-content: center;
}
.hero-section .hero-carousel .content .author{
	display: flex;
	align-items: center;
	margin-right: 30px;
}
.hero-section .hero-carousel .content .author .image{
	height: 50px;
	width: 50px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}
.hero-section .hero-carousel .content .author .bio,
.hero-section .hero-carousel .content .author .bio .name{
	color: #fff;
}
.hero-section .hero-carousel .content .date{
	color: #fff;
}
.hero-section .hero-carousel .content .date .highlight-text{
	color: var(--primary-color);
	font-size: 28px;
	font-weight: bold;
}

.hero-section .hero-carousel .owl-nav .owl-prev,
.hero-section .hero-carousel .owl-nav .owl-next{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	border: 1px solid #fff;
	height: 60px;
	width: 60px;
	line-height: 60px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.hero-section:hover .hero-carousel .owl-nav .owl-prev,
.hero-section:hover .hero-carousel .owl-nav .owl-next{
	opacity: 1;
	visibility: visible;
}
.hero-section .hero-carousel .owl-nav .owl-prev{
	left: 0;
}
.hero-section .hero-carousel .owl-nav .owl-next{
	right: 0;
}

/*=================
Categories
==================*/

.category-area{
	padding: 50px 0 80px;
}
.category-area .category-grid{
	display: grid;
	grid-gap: 30px;
	grid-template-columns: repeat(5, 1fr);
}
.category-area .category-item{
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 360px;
}
.category-area .category-item::before{
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 30%, rgba(0,212,255,0) 100%);
}
.category-area .category-item h1{
	position: relative;
	margin-bottom: 38px;
}
.category-area .category-item h1 a {
    color: #fff;
    font-size: 100px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
}
.category-area .category-item:first-child{
	grid-column: 1/4;
}
.category-area .category-item:nth-child(2){
	grid-column: 4/6;
}
.category-area .category-item:nth-child(3){
	grid-column: 1/3;
}
.category-area .category-item:nth-child(4){
	grid-column: 3/6;
}

/*=================
Section Title
==================*/

.section-title{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid transparent;
	border-image: url(../images/border.png) 30 round;
	margin-bottom: 40px;
}
.section-title h1{
	margin: 10px 0 10px;
}
.section-title a{
	color: #7a7a7a;
	flex-shrink: 0;
}
.section-title a i{
	color: var(--primary-color);
}

/*=================
Popular Post
==================*/

.popular-post{
	padding-bottom: 25px;
}
.popular-post .popular-item{
	margin-bottom: 42px;
}
.popular-post .popular-item .image img{
	height: 300px;
	width: 100%;
	object-fit: cover;
}
.popular-post .popular-item .content .category{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.popular-post .popular-item .content .category li{
	margin: 20px 10px 10px 0;
}
.popular-post .popular-item .content .category li a{
	display: inline-block;
	color: var(--primary-color);
	font-weight: bold;
}
.popular-post .popular-item .content .button{
	display: inline-flex;
	align-items: center;
	color: #7a7a7a;
	font-weight: bold;
}
.popular-post .popular-item .content .button i{
	font-size: 24px;
	color: var(--primary-color);
}
.popular-post .popular-item .content .post-categories{
	margin: 19px 0 9px;
	padding: 0;
	list-style: none;

}
.popular-post .popular-item .content .post-categories li a{
	color: var(--primary-color);
}
.popular-post .popular-item .content .rating{
	margin-bottom: 5px;
}
.popular-post .popular-item .content .rating i{
	color: #ffb300;
}

/*=================
 Ad Area
==================*/

.ad{
	margin-bottom: 60px;
}
.ad img{
	width: auto;
	height: auto;
}

/*=================
Featured Post
==================*/

.featured-post{
	padding-bottom: 50px;
}
.featured-post .featured-item{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
.featured-post .featured-item .image{
	margin-right: 30px;
	flex-shrink: 0;
}
.featured-post .featured-item .image img{
	height: 250px;
	width: 418px;
	object-fit: cover;
}
.featured-post .featured-item .content .category{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 7px;
}
.featured-post .featured-item .content .category li{
	margin-right: 10px;
}
.featured-post .featured-item .content .category a{
	color: var(--primary-color);
}
.featured-post .featured-item .title a{
	color: var(--title-color);
}
.featured-post .featured-item .title a:hover{
	color: var(--primary-color);
}
.featured-post .featured-item .rating{
	margin-bottom: 5px;
}
.featured-post .featured-item .rating i{
	color: #ffb300;
}
.featured-post .featured-item .post-meta span{
	margin-right: 10px;
}
.featured-post .featured-item .post-meta i{
	color: var(--primary-color);
	margin-right: 5px;
}

/*=================
Videos
==================*/

.videos{
	padding-bottom: 100px;
}
.large-video{
	position: relative;
	height: 450px;
	margin-bottom: 30px;
}
.large-video::before{
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 40%, rgba(0,212,255,0) 100%);
}
.large-video .video-icon{
	position: absolute;
	display: inline-block;
	color: #fff;
	font-size: 30px;
	height: 100px;
	width: 100px;
	line-height: 100px;
	text-align: center;
	border: 2px solid #fff;
	border-radius: 50%;
	top: 35%;
	left: 50%;
	transform: translate(-50%);
}
.large-video .content{
	position: absolute;
	bottom: 0;
	margin: auto;
	width: 100%;
	padding: 0 50px 30px;
	text-align: center;
}
.large-video .post-meta{
	margin-bottom: 20px;
}
.large-video .post-meta span{
	color: #fff;
	margin-right: 15px;
}
.large-video .post-meta i{
	margin-right: 10px;
}
.large-video .title a{
	color: #fff;
	font-size: 30px;
}


.videos .small-video{
	position: relative;
	height: 150px;
}
.videos .small-video::before{
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 40%, rgba(0,212,255,0) 100%);
}
.videos .small-video .video-icon{
	position: absolute;
	display: inline-block;
	color: #fff;
	font-size: 25px;
	height: 50px;
	width: 50px;
	line-height: 46px;
	text-align: center;
	border: 2px solid #fff;
	border-radius: 50%;
	top: 34%;
	left: 50%;
	transform: translate(-50%);
}