

/* blogging site css  */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Nova+Mono&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');


:root {
	/* Colors */
	--primary-color: #7f00ff;
	--secondary-color: #6100e1;
	--accent-text-color: #2c2f34;
	--dark-color: #000000;
	--white-color: #ffffff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Poppins", sans-serif;
	text-align: left;
	font-size: 15px;
	font-weight: 400;
}

p {
	font-size: 15px;
	columns: var(--accent-text-color);
	margin-bottom: 0;
	font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-heading);
}

ul,
ol {
	margin-bottom: 0;
	padding-left: 0;
	list-style: none;
}

a {
	text-decoration: none;
	color: var(--secondary-heading-color);
}

a:hover {
	color: var(--secondary-heading-color);
}


header {
	position: relative;
	padding: 15px 0px;
	box-shadow: 0px 0px 5px #0000000f;
}

.header_main {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header_right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.logo img {
	max-width: 130px;
}

.nav_links ul {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav_links ul li a {
	font-size: 16px;
	font-weight: 500;
	padding: 0px 10px;
	position: relative;
	transition: 0.3s ease-in-out;
}

.nav_links ul li.active a {
	color: var(--primary-color);
}

.nav_links ul li.active a::before {
	content: '';
	position: absolute;
	bottom: -11px;
	left: 0;
	width: 100%;
	height: 4px;
	border-radius: 4px;
	background-color: var(--primary-color);
}

.nav_links ul li a:hover {
	color: var(--primary-color);
}

.nav_links ul li:hover a::before {
	content: '';
	position: absolute;
	bottom: -11px;
	left: 0;
	width: 100%;
	height: 4px;
	border-radius: 4px;
	background-color: var(--primary-color);
}

.search_container {
	max-width: 200px;
	position: relative;
}

.search_container input {
	width: 100%;
	padding: 10px 30px 10px 15px;
	border-radius: 35px;
	border: 1px solid #0000001a;
	font-size: 14px;
	color: var(--accent-text-color);
	transition: 0.3s ease-in-out;
}

.search_container input:hover {
	background-color: #0000001a;
}

.search_container input:focus {
	outline: none;
}

.search_icon {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}

.search_icon i {
	color: #888;
}

/* hero banner css start */
.hero_banner_sec {
	position: relative;
	padding: 25px;
}

.hero_banner_right_card_main {
	position: relative;
}

.hero_banner_right_card_main .hero_banner_right_card {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	height: 235px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	border-radius: 15px;
	overflow: hidden;
	padding: 20px 20px 15px;
}

.hero_banner_right_card_main .hero_banner_right_card::after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: 0;
	height: 65%;
	width: 100%;
	transition: opacity 0.2s;
	background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75));
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.hero_banner_right_card_content {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px 20px 15px;
	z-index: 3;
	width: 100%;
	pointer-events: none;
	transition: bottom 0.3s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.hero_banner_right_card_content .thum_title h2 {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	line-height: 1.4;
	margin: 0;
}

.hero_banner_right_card_content .thum_desc {
	color: #ffffff;
	max-height: 0;
	line-height: 18px;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.4s ease-out, max-height 0.4s ease-out, margin 0.4s;
	font-size: 13px;
}

.hero_banner_right_card_main:hover .hero_banner_right_card_content .thum_desc {
	opacity: 1;
	max-height: 100px;
	margin-top: 5px;
	transition: opacity 0.4s ease-out, max-height 0.9s ease-out;
}


.category_tag {
	position: absolute;
	top: 20px;
	left: 20px;
	max-width: fit-content;
}

.category_tag a {
	display: inline-block;
	background: var(--primary-color);
	color: var(--white-color);
	padding: 0 10px;
	font-size: 12px;
	line-height: 1.85em;
	margin-right: 4px;
	position: relative;
	white-space: nowrap;
	word-wrap: normal;
	letter-spacing: 0;
	transition: 0.3s;
	border-radius: 35px;
}

.hero_banner_left_card_main {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero_banner_left_card_main .hero_banner_left_card {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	border-radius: 15px;
	overflow: hidden;
	padding: 20px 20px 15px;
}

.hero_banner_left_card_main .hero_banner_left_card::after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: 0;
	height: 65%;
	width: 100%;
	transition: opacity 0.2s;
	background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75));
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.hero_banner_left_card_content {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px 20px 15px;
	z-index: 3;
	width: 100%;
	pointer-events: none;
	transition: bottom 0.3s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.hero_banner_left_card_content h2 {
	font-size: 35px;
	line-height: 1.4;
	font-weight: 600;
	color: #fff;
	margin: 0;
}

.hero_banner_left_card_content p {
	color: #ffffff;
	line-height: 18px;
	overflow: hidden;
	transition: opacity 0.4s ease-out, max-height 0.4s ease-out, margin 0.4s;
}


/* trending news sec */

.container_wrapper {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
}

.mag_box_title {
	position: relative;
	font-size: 17px;
	padding: 0 0 15px;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
}

.mag_box_title::after {
	content: "";
	background: var(--primary-color);
	width: 40px;
	height: 2px;
	position: absolute;
	bottom: -2px;
	left: 0;
}

.mag_box_title::before {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	bottom: -5px;
	left: 0;
	border-left: 0;
	border-right: 5px solid transparent;
	border-top: 5px solid #2c2f34;
}

.mag_box_title h3 {
	font-size: 18px;
	margin-right: 20px;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	max-width: calc(100% - 145px);
	float: left;
	line-height: 1.4;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
}

.mega_box_right {
	width: 100%;
	flex-grow: 1;
	float: right;
}

.mega_options {
	font-size: 12px;
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}

.mega_options_tabs {
	opacity: 1;
	transition: opacity 0.5s;
	overflow: hidden;
	height: 22px;
	padding-left: 15px;
}

.mega_options_tabs li {
	float: left;
	padding: 0 6px;
	margin: 0 2px;
	line-height: 22px;
	border-radius: 2px;
	color: #2c2f34;
	display: inline-block;
	transition: 0.2s;
	white-space: nowrap;
	word-wrap: normal;
	cursor: pointer;
}

.mega_options_tabs li:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.mega_options_tabs li.active {
	color: var(--primary-color);
	background-color: transparent;
}

.mega_box_container {
	position: relative;
}

.post_item_full {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	position: relative;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	background-color: rgba(0, 0, 0, 0.2);
	border-radius: 15px;
	min-height: 470px;
}

.post_item_full::after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: 0;
	height: 65%;
	transition: opacity 0.2s;
	background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75));
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border-radius: 15px;
}

.post_item_full_content {
	width: 100%;
	padding: 12px 20px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 11;
}

.post_category_tag {
	max-width: fit-content;
	background: var(--primary-color);
	color: var(--white-color);
	padding: 0 10px;
	font-size: 12px;
	line-height: 1.85em;
	margin-right: 4px;
	margin-bottom: 10px;
	position: relative;
	white-space: nowrap;
	word-wrap: normal;
	letter-spacing: 0;
	transition: 0.3s;
	border-radius: 35px;
}

.post_item_full_content h3 {
	font-size: 25px;
	line-height: 1.2;
	margin: 5px 0;
	font-weight: 600;
	color: #fff;
}

.author {
	display: flex;
	align-items: center;
	font-size: 12px;
	color: #fff;
	font-weight: 400;
}

.post_item:first-child {
	margin-top: 0px;
}

.post_item {
	display: flex;
	position: relative;
	margin-top: 24px;
	background-color: #fff;
}

.mega-tab-content {
	display: none;
}

.mega-tab-content.active {
	display: block;
}

.post_item_image {
	width: 110px;
	height: 75px;
	position: relative;
	margin-right: 15px;
	overflow: hidden;
}

.post_item_image:hover .post_overlay {
	opacity: 1;
	border-radius: 15px;
	transform: scale(1);
}

.post_overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	background: rgba(35, 38, 42, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(1.5);
	transition: 0.4s;
	opacity: 0;
}

.post_overlay img {
	width: 30px !important;
	height: auto !important;
	border-radius: 0px !important;

}

.post_item_image a img {
	max-width: 100%;
	height: 100%;
	border-radius: 15px;
	object-fit: cover;
	object-position: center;

}

.post_item_content {
	flex: 1;
	padding-top: 4px;
}

.post_item_content h2 {
	font-size: 14px;
	line-height: 1.4;
	font-weight: 600;
	transition: 0.3s ease-in-out;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;

}

.post_item_content h2:hover {
	color: var(--primary-color);
}

.categories_widget {
	position: sticky;
	top: 0;
}

.widget_title {
	position: relative;
	font-size: 17px;
	padding: 0 0 15px;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.widget_title h6 {
	font-size: 15px;
	min-height: 15px;
	margin: 0;
}

.widget_title i {
	color: #b9bec3;
	font-size: 15px;
}

.categories_widget li {
	padding: 5px 0 5px 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: 0.3s ease-in-out;
}

.categories_widget li a {
	float: left;
	white-space: nowrap;
	word-wrap: normal;
	position: relative;
	font-size: 13px;
	line-height: 21px;
	color: #2c2f34;
}

.categories_widget li a:hover {
	color: var(--primary-color);
}

.categories_widget li:hover span {
	background-color: var(--secondary-color);
}

.categories_widget span {
	display: inline-block;
	background-color: var(--primary-color);
	text-align: center;
	font-size: 11px;
	font-weight: 300;
	border-radius: 35px;
	width: 24px;
	height: 22px;
	line-height: 22px;
	color: var(--white-color);
	transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	float: right;
}

.categories_widget li a::before {
	content: "\f105";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color: #2c2f34;
	font-size: 10px;
	display: inline-block;
	line-height: 18px;
	width: 12px;
	margin-left: -12px;
	text-align: left;
}


.categories_widget li:first-child {
	padding-top: 0px;
}

.widget_title::before {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	bottom: -5px;
	left: 0;
	border-left: 0;
	border-right: 5px solid transparent;
	border-top: 5px solid #2c2f34;
}

.widget_title::after {
	content: "";
	background: #2c2f34;
	width: 40px;
	height: 2px;
	position: absolute;
	bottom: -2px;
	left: 0;
}

.sport_relevant {
	background-color: #1F2024;
	margin: 30px 0px;
	color: #fff !important;
}

.sport_relevant .mag_box_title h3 {
	color: #fff;
}

.sport_relevant .mag_box_title {
	border-bottom: 2px solid #ffffff9e;
}

.sport_relevant .mag_box_title::after {
	background-color: var(--white-color);
}

.sport_relevant .mag_box_title::before {
	border-top: 5px solid #fff;
}

.sport_relevant .mega_box_container .post_item {
	background-color: transparent;
}

.top_post_item {
	width: 100%;
	display: flex;
	overflow: hidden;
	margin-bottom: 24px;
	gap: 27px;
}

.top_post_item_image {
	width: 50%;
	max-height: 192px;
	position: relative;
	overflow: hidden;
}

.top_post_item_image:hover .post_overlay {
	opacity: 1;
	border-radius: 15px;
	transform: scale(1);
}

.top_post_item_image a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}

.top_post_item_content {
	width: 50%;
}

.top_post_item_content .author {
	font-size: 12px;
	color: #ccc;
	margin-bottom: 3px;
}

.top_post_item_content h3 {
	font-size: 20px;
	line-height: 1.4;
	font-weight: 600;
	transition: 0.3s ease-in-out;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.top_post_item_content h3:hover {
	color: var(--primary-color);
}

.top_post_item_content p {
	margin-top: 5px;
	word-break: break-word;
	line-height: 21px;
	color: #ccc;
	font-size: 13px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

a.read_more {
	width: auto;
	position: relative;
	background-color: var(--primary-color);
	color: #fff;
	padding: 7px 15px;
	margin: 0;
	font-weight: normal;
	font-size: 13px;
	display: inline-block;
	text-align: center;
	line-height: 21px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	vertical-align: middle;
	transition: 0.3s;
	border-radius: 2px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 35px;
	margin-top: 10px;
}

.categories_cards_main .container_wrapper .mag_box_title {
	justify-content: space-between;
	align-items: center;
}

.slider-controlers {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
}

.slider-controlers .swiper-button-prev,
.slider-controlers .swiper-button-next {
	position: relative;
	top: inherit;
	left: inherit;
	right: inherit;
	margin: 0;
	border: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 12px;
	line-height: 20px;
	width: 22px;
	height: 22px;
	text-align: center;
	cursor: pointer;
	border-radius: 50%;
	transition: 0.3s ease-in-out;
	color: #2c2f34;
}

.slider-controlers .swiper-button-prev:hover,
.slider-controlers .swiper-button-next:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
}

/* .slider-controlers .swiper-button-prev:hover .swiper-button-prev::after,
.slider-controlers .swiper-button-next:hover .swiper-button-next::after{
	color: var(--white-color) !important;
} */

.slider-controlers .swiper-button-prev::after,
.slider-controlers .swiper-button-next::after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 10px;
}

.slider-controlers .swiper-button-prev::after {
	content: '\f104';
}

.slider-controlers .swiper-button-next::after {
	content: '\f105';
}

.slider-controlers .swiper-button-next {
	position: relative;
	top: inherit;
	left: inherit;
	right: inherit;
}

.post_cat_wrap {
	position: relative;
	background-color: #fff;
}

.post_thumb_wrap {
	width: 100%;
	height: 177px;
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
}

.post_thumb_wrap a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}

.post_thumb_wrap:hover .post_overlay {
	opacity: 1;
	border-radius: 15px;
	transform: scale(1);
}

.post_thumb_wrap .category_tag {
	bottom: 12px !important;
	right: 8px !important;
	top: auto;
	left: auto;
}

.post_cat_details .author {
	margin-bottom: 3px;
	color: #666;
}

.post_cat_details h3 {
	font-size: 20px;
	line-height: 1.4;
	font-weight: 600;
	transition: 0.3s ease-in-out;
}

.post_cat_details h3:hover {
	color: var(--primary-color);
}

.post_cat_details h3 {
	font-size: 20px;
	line-height: 1.4;
	font-weight: 600;
}

.post_cat_details p {
	margin-top: 5px;
	color: #666;
	word-break: break-word;
	font-size: 13px;
}

.sub_posts li {
	margin-top: 24px;
}

/* Blog Post Slider Section Css Start  */
.blogging_sec {
	/* background-color: #f9f9f9; */
	padding: 30px 0;
}


.post_card_main {
	position: relative;
}

.post_card_main .post_card {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	height: 400px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	border-radius: 15px;
	overflow: hidden;
	padding: 20px 20px 15px;
}

.post_card_main .post_card::after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: 0;
	height: 65%;
	width: 100%;
	transition: opacity 0.2s;
	background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75));
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.post_card_content {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px 20px 15px;
	z-index: 3;
	width: 100%;
	pointer-events: none;
	transition: bottom 0.3s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.post_card_content .post_card_title h2 {
	font-size: 30px;
	color: #fff;
	line-height: 1.4;
	font-weight: 600;
	margin: 0;
}

.post_card_content .post_card_desc {
	color: #ffffff;
	max-height: 0;
	line-height: 18px;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.4s ease-out, max-height 0.4s ease-out, margin 0.4s;
	font-size: 13px;
}

.post_card_main:hover .post_card_content .post_card_desc {
	opacity: 1;
	max-height: 100px;
	margin-top: 5px;
	transition: opacity 0.4s ease-out, max-height 0.9s ease-out;
}

.blogging_sec .Blogs_slider .swiper-button-next,
.blogging_sec .Blogs_slider .swiper-button-prev {
	width: 25px;
	height: 46px;
	line-height: 46px;
	background: #ffffff;
	color: #2c2f34;
	text-align: center;
	transition: 0.3s ease-in-out;
	border-radius: 2px;
}

.blogging_sec .Blogs_slider .swiper-button-next:hover,
.blogging_sec .Blogs_slider .swiper-button-prev:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.blogging_sec .Blogs_slider .swiper-button-prev {
	left: 0;
}

.blogging_sec .Blogs_slider .swiper-button-next {
	right: 0;
}

.blogging_sec .Blogs_slider .swiper-button-prev::after {
	content: '\f104';
}

.blogging_sec .Blogs_slider .swiper-button-next::after {
	content: '\f105';
}

.blogging_sec .Blogs_slider .swiper-button-prev::after,
.blogging_sec .Blogs_slider .swiper-button-next::after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 16px;
}

/* what new Section Css start */
.whats_new_sec {
	padding: 20px 0 60px;
}

.blog_card_image {
	width: 100%;
	max-height: 194px;
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
}

.blog_card_image:hover .post_overlay {
	opacity: 1;
	border-radius: 15px;
	transform: scale(1);
}

.blog_card_image a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}


.blog_card_content .author {
	font-size: 12px;
	color: #666;
	margin-bottom: 3px;
}

.blog_card_content h3 {
	font-size: 20px;
	line-height: 1.4;
	font-weight: 600;
	transition: 0.3s ease-in-out;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.blog_card_content h3:hover {
	color: var(--primary-color);
}

.blog_card_content p {
	margin-top: 5px;
	word-break: break-word;
	line-height: 21px;
	color: #666;
	font-size: 13px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.blog_card_image .category_tag {
	bottom: 12px;
	right: 12px;
	top: auto;
	left: auto;
}

.load_more_btn button {
	border: 1px solid rgba(0, 0, 0, 0.1);
	height: 50px;
	width: 100%;
	line-height: 50px;
	position: relative;
	text-align: center;
	display: block;
	font-weight: 600;
	cursor: pointer;
	clear: both;
	border-radius: 35px;
	margin: 25px 0 -30px;
	border-width: 1px 0 0;
	font-size: 13px;
	background-color: transparent;
	color: #2c2f34;
	transition: 0.3s ease-in-out;
}

.load_more_btn button:hover {
	color: var(--primary-color);
}

/* footer css start */
footer {
	position: relative;
}

.footer_main {
	width: 100%;
	background-color: #1F2024;
	padding: 60px 0px;
}

.footer_bottom_mian {
	width: 100%;
	background-color: #000;
}

.footer_bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
}

.copy_right p {
	color: #fff;
	font-size: 14px;
	margin: 0;
}

.social_links {
	display: flex;
	align-items: center;
	gap: 20px;
}

.social_links a i {
	font-size: 16px;
	color: #fff;
	transition: 0.3s ease-in-out;
}

.social_links a i:hover {
	color: var(--primary-color);
}

.footer_col h6 {
	font-size: 15px;
	line-height: 1.4;
	font-weight: 600;
	padding: 0 0 15px;
	margin-bottom: 20px;
	position: relative;
	color: #fff;
}

.footer_col h6::after {
	content: "";
	background: #ffffff;
	width: 40px;
	height: 2px;
	position: absolute;
	bottom: -2px;
	left: 0;
}

.footer_posts_list {
	position: relative;
	padding-left: 15px;
}

.footer_posts_list:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 2px;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}

.footer_posts_list li {
	padding-bottom: 17px;
}

.footer_posts_list li:last-child {
	padding-bottom: 0px;
}

.footer_posts_list li a {
	font-size: 14px;
	line-height: 1.4;
	font-weight: 600;
	color: #fff;
	transition: 0.3s ease-in-out;
}

.footer_posts_list li a:hover {
	color: var(--primary-color);
}

.last_modified_card {
	position: relative;
	width: 100%;
	height: 66px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	border-radius: 15px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.last_modified_card:hover .post_overlay {
	opacity: 1;
	border-radius: 15px;
	transform: scale(1);
}

.footer_links li a {
	font-size: 16px;
	color: #fff;
	font-weight: 600;
	transition: 0.3s ease-in-out;
}

.footer_links li {
	padding-bottom: 17px;
}

.footer_links li a:hover {
	color: var(--primary-color);
}

/* category Page Css Start */
.breadcrumbs_banner {
	width: 100%;
	padding: 40px 0pc 20px;
}

.breadcrumbs nav {
	margin-bottom: 20px;
	padding: 0;
}

.breadcrumbs nav a {
	font-size: 13px;
	line-height: 21px;
	color: #666;
	transition: 0.3s ease-in-out;
}

.breadcrumbs nav span {
	font-size: 13px;
	line-height: 21px;
	color: #666;
	transition: 0.3s ease-in-out;
}

.breadcrumbs nav a:hover {
	color: var(--primary-color);
}

.breadcrumbs .delimiter {
	margin: 0 3px;
	font-style: normal;
	font-size: 13px;
	line-height: 21px;
	color: #666;
}

.page_title h1 {
	font-size: 41px;
	font-weight: 600;
	line-height: 1.4;
}

.taxonomy-description p {
	font-size: 15px;
	line-height: 26px;
	color: #2c2f34;
	margin: 0;
}

.category_blogs {
	padding: 20px 0px 60px;
}

.categories_widget li.active a {
	color: var(--primary-color);
}

.categories_widget li.active span {
	background-color: var(--secondary-color);
}

.categories_widget li.active a::before {
	color: var(--primary-color);
}

/* Blog Single Page Css Start */
.breadcrumbs .category_tag {
	position: inherit;
	margin-bottom: 5px;
}

.related_post_main {
	margin-top: 24px;
}

.post_detail_sec {
	padding: 20px 0px 60px;
}

.feautre_area {
	width: 100%;
	position: relative;
	border-radius: 15px;
	max-height: 450px;
	overflow: hidden;
	margin-bottom: 30px;
}

.feautre_area img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 15px;
}

.short_content h3 {
	font-size: 30px;
	font-weight: 600;
	line-height: 1.4;
}

.short_content p {
	font-size: 15px;
	margin-bottom: 25px;
}

.table_content {
	border-radius: 4px;
	padding: 10px 20px 10px 10px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
	background: #f9f9f9;
	border: 1px solid #aaa;
	margin-bottom: 1em;
	position: relative;
	min-width: 300px;
	max-width: 100%;
}

.table_content_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.table_content_title h3 {
	margin: 0;
	font-weight: 500;
	font-size: 120%;
}

.content_toggle {
	border: 1px solid #aaa;
	padding: 2px 7px;
	border-radius: 4px;
	cursor: pointer;
}

.table_content ul {
	margin-top: 12px;
}

.table_content ul li a {
	font-size: 95%;
	font-weight: 500;
	color: #444;
	text-decoration: none;
	display: inline-flex;
	align-items: stretch;
	flex-wrap: nowrap;
	transition: 0.3s ease-in-out;
}

.table_content ul li {
	line-height: 1.6;
}

.table_content ul li a:hover {
	text-decoration: underline;
}

.post_content h3 {
	margin: 0 0 0.5em;
	font-size: 23px;
	line-height: 1.4;
	font-weight: 600;
}

.post_content p {
	margin-bottom: 25px;
	line-height: 26px;
	font-size: 15px;
}

.recent_news_main {
	position: sticky;
	top: 0;
}


.Recent_post_slider .swiper-button-next,
.Recent_post_slider .swiper-button-prev {
	width: 25px;
	height: 35px;
	line-height: 46px;
	background: #ffffff;
	color: #2c2f34;
	text-align: center;
	transition: 0.3s ease-in-out;
	border-radius: 2px;
	border: 1px solid #2c2f34;
}

.Recent_post_slider .swiper-button-prev.swiper-button-disabled {
	display: none;
}

.Recent_post_slider .swiper-button-next.swiper-button-disabled {
	display: none;
}

.Recent_post_slider .swiper-button-next:hover,
.Recent_post_slider .swiper-button-prev:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.Recent_post_slider .swiper-button-prev {
	left: 0;
}

.Recent_post_slider .swiper-button-next {
	right: 0;
}

.Recent_post_slider .swiper-button-prev::after {
	content: '\f104';
}

.Recent_post_slider .swiper-button-next::after {
	content: '\f105';
}

.Recent_post_slider .swiper-button-prev::after,
.Recent_post_slider .swiper-button-next::after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 16px;
}

/* promoition page css start */
.promotion_sec {
	padding: 40px 0px 60px;
}

.promotion_sec h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.5em;
	font-weight: 600;
}

.promotion_sec img {
	margin: 0 0 0.5em;
}

.promotion_sec h1 {
	font-size: 40px;
}

.promotion_sec p {
	margin-bottom: 25px;
	line-height: 26px;
	font-size: 15px;
}



.search_icon_mobile {
	display: none;
}

.search_icon_mobile i {
	font-size: 20px;
	cursor: pointer;
	color: var(--primary-color);

}

.mobile_bar {
	display: none;
	padding: 10px 15px;
	border-radius: 4px;
	background-color: var(--primary-color);
	color: var(--white-color);
	cursor: pointer;
}

.mobile_bar i {
	font-size: 18px;
}

.mobile_menu {
	height: 100vh;
	width: 310px;
	position: fixed;
	top: 0;
	right: -100%;
	background-color: var(--primary-color);
	z-index: 1111;
	padding: 20px 15px;
	overflow-y: auto;
	transition: 0.3s ease-in-out;
	visibility: hidden;
	opacity: 0;
}

.mobile_menu.active {
	right: 0;
	visibility: visible;
	opacity: 1;
}

.close_bar {
	padding: 10px 15px;
	background-color: var(--white-color);
	color: var(--primary-color);
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: fit-content;
}

.mobile_links ul {
	padding: 0;
	margin: 0;
	margin-top: 20px;
	list-style-type: none;
}

.mobile_links ul li a {
	display: inline-block;
	position: relative;
	padding: 5px 0;
	margin: 5px 0;
	font-size: 16px;
	color: var(--white-color);
}

.mobile_social_links {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	gap: 20px;
	margin-top: 20px;
}

.mobile_social_links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background-color: var(--white-color);
	border-radius: 50%;
	color: var(--primary-color);
	text-align: center;
}

/* reponsive css start */

@media (max-width: 1200px) {
	.container {
		max-width: 100%;
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
}


@media (max-width: 991px) {
	.nav_links {
		display: none;
	}

	.search_container {
		display: none;
	}

	.mobile_bar {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.search_icon_mobile {
		display: block;
	}

	.hero_banner_left_card_main {
		height: 400px;
	}

	.hero_banner_right_card_main .hero_banner_right_card {
		height: 200px;
	}

	.hero_banner_sec {
		padding: 15px 0px;
	}

	.showcase_case .container .responsive_row {
		flex-direction: column-reverse;
	}

	.post_card_main .post_card {
		height: 360px;
	}

	.post_card_content .post_card_desc {
		display: none;
	}

	.breadcrumbs_banner {
		padding: 20px 0pc 0px;
	}
}

@media (max-width: 767px) {
	.container_wrapper {
		padding: 20px 15px;
	}

	.hero_banner_left_card_main {
		height: 300px;
	}

	.hero_banner_left_card_main .hero_banner_left_card,
	.hero_banner_left_card_content {
		padding: 10px;
	}

	.hero_banner_left_card_content h2 {
		font-size: 16px;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.hero_banner_left_card_content p {
		font-size: 12px;
	}

	.hero_banner_right_card_main .hero_banner_right_card {
		height: 150px;
		padding: 10px;
	}

	.hero_banner_right_card_content {
		padding: 10px;
	}

	.category_tag {
		top: 10px;
		left: 10px;
	}

	.hero_banner_right_card_content .thum_title h2 {
		font-size: 16px;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.hero_banner_right_card_main:hover .hero_banner_right_card_content .thum_desc {
		display: none;
	}

	.post_item_full {
		height: 325px;
		min-height: 100%;
	}

	.post_card_main .post_card {
		height: 200px;
	}

	.post_card_content .post_card_title h2 {
		font-size: 16px;
	}

	.last_modified_card {
		height: 135px;
	}

	.footer_main {
		padding: 40px 0px 20px;
	}
	.page_title h1{
		font-size: 24px;
	}
}

@media (max-width: 576px) {
	.hero_banner_left_card_main {
		height: 200px;
	}

	.hero_banner_right_card_main .hero_banner_right_card {
		height: 140px;
	}

	.top_post_item {
		flex-direction: column;
	}

	.top_post_item_image {
		width: 100%;
		height: 250px;
	}

	.top_post_item_content {
		width: 100%;
	}

	.blog_card_content h3 {
		font-size: 16px;
		margin: 0;
	}

	.blog_card_content p {
		font-size: 12px;
		margin: 0;
	}

	.last_modified_card {
		height: 100px;
	}

	.footer_bottom {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}
}

@media (max-width: 425px) {
	.last_modified_card {
		height: 70px;
	}

}
