/*===================================================
    Table of Contets
=====================================================

    01 Main Header
    02 Featured Post Carousel
    03 Featured Category
    04 Post Layout
    05 Main Post Area
    06 Single Post Area
    07 Blog Page
    08 Sidebar Widgets
    09 Subscribe Page
    10 Page Header
    11 404 Error Page
	12 Contact Section
	13 Footer Section
    
=====================================================
    @DynamicLayers
====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&amp;display=swap');

:root {
	--dl-heading-font: "Jost", sans-serif;
	--dl-body-font: "Jost", sans-serif;
	--dl-primary-color: #f9e498;
	--dl-secondary-color: #089fac;
	--dl-heading-color: #000;
	--dl-body-color: #202124;
	--dl-white-color: #ffffff;
	--dl-grey-color: #7a7a7a;
	--dl-light-grey-color: #dddddd;
	--dl-bg-white: #ffffff;
	--dl-bg-yellow: #ffffff;
	--dl-bg-dark: #1b1b1b;
	--dl-bg-light-red: #f6f3ed;
	--dl-bg-light-blue: #F1F5F1;
	--dl-border-color: #eee;
	--dl-box-shadow: 0 7px 10px rgba(196, 105, 107, 6%);
}

body {
	background-color: var(--dl-bg-white);
	font-family: var(--dl-body-font);
	font-size: 17px;
	line-height: 28px;
	color: var(--dl-body-color);
	font-weight: 400;
	letter-spacing: -0.2px;
	position: relative;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--dl-heading-font);
	-webkit-font-smoothing: antialiased;
	color: var(--dl-heading-color);
}

h1 {
	font-size: 45px;
	font-weight: 600;
	line-height: 55px;
	margin: 0 0 10px;
	color: var(--dl-heading-color);
}

h2 {
	font-size: 32px;
	line-height: 42px;
	color: var(--dl-heading-color);
	margin: 0 0 10px;
	font-weight: 600;
	letter-spacing: -1px;
}

h3,
h4 {
	margin: 0 0 10px;
	font-weight: 500;
	line-height: 1.7;
	color: var(--dl-heading-color);
	letter-spacing: -0.5px;
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 16px;
}

h5,
h6 {
	font-size: 14px;
	margin: 0 0 10px;
}

p {
	font-size: 19px;
	line-height: 28px;
	margin-bottom: 15px;
}

a {
	color: var(--dl-heading-color);
}

a,
a:hover {
	text-decoration: none;
}

a:focus {
	outline: 0;
	text-decoration: none;
}

img {
	border: none;
	outline: none;
	max-width: 100%;
}

ul {
	display: block;
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Form Input Color */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #999 !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	/*Firefox 18-*/
	color: #999 !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	/*Firefox 19+*/
	color: #999 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #999 !important;
}

button {
	border: none;
	background: none;
}

/* Padding Classes */
.padding {
	padding: 50px 0;
}

.padding-top {
	padding-top: 100px;
}

.padding-bottom {
	padding-bottom: 100px;
}

.no-padding {
	padding: 0;
}

@media (max-width: 992px) {
	.padding {
		padding: 80px 0;
	}

	.padding-bottom {
		padding-bottom: 80px;
	}

	.padding-top {
		padding-top: 80px;
	}
}

@media (max-width: 767px) {
	.padding {
		padding: 60px 0;
	}

	.padding-bottom {
		padding-bottom: 60px;
	}

	.padding-top {
		padding-top: 60px;
	}
}

@media (max-width: 992px) {
	.sm-padding {
		padding: 15px;
	}

	p br {
		display: none;
	}
}

.padding-15 {
	padding: 15px;
}

.padding-20 {
	padding: 20px;
}


/* Default Background Color */
.bg-light-red {
	background-color: var(--dl-bg-light-red);
}

.bg-light-blue {
	background-color: var(--dl-bg-light-blue);
}

.bg-dark {
	background-color: var(--dl-bg-dark);
}


/* Boder Classes */
.bd-top {
	border-top: 1px solid var(--dl-border-color);
}

.bd-bottom {
	border-bottom: 1px solid var(--dl-border-color);
}

.bd-left {
	border-left: 1px solid var(--dl-border-color);
}

.bd-right {
	border-right: 1px solid var(--dl-border-color);
}

/* Margin Class */
.mt-10 {
	margin-top: 10px;
}

.mt-15 {
	margin-top: 15px;
}

.mt-20 {
	margin-top: 20px;
}

.mt-25 {
	margin-top: 25px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-35 {
	margin-top: 35px;
}

.mt-40 {
	margin-top: 40px;
}

.mt-45 {
	margin-top: 45px;
}

.mt-50 {
	margin-top: 50px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-15 {
	margin-bottom: 15px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-25 {
	margin-bottom: 25px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-35 {
	margin-bottom: 35px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-45 {
	margin-bottom: 45px;
}

.mb-50 {
	margin-bottom: 50px;
}

/* Transition Effect */
a,
a:hover,
.form-control,
.form-control:hover,
button {
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

/* Scrollbar Style */
::-webkit-scrollbar {
	background-color: var(--dl-bg-dark);
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-thumb {
	cursor: poSyne;
	background-color: var(--dl-primary-color);
}

::selection {
	background-color: #f9e498;
	color: var(--dl-heading-color);
}

-webkit-::selection {
	background-color: #f9e498;
	color: var(--dl-heading-color);
}

::-moz-selection {
	background-color: #f9e498;
	color: var(--dl-heading-color);
}

/* Site Preloader */
body:not(.loaded) {
	overflow: hidden;
}

.loaded .site-preloader {
	transition: all 0.6s linear;
}

.site-preloader {
	position: fixed;
	z-index: 999;
	height: 100%;
	width: 100%;
	background: #fff;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader-text {
	position: relative;
	font-size: 66px;
	line-height: 1;
	font-weight: 500;
	color: var(--dl-light-grey-color);
}

.loader-text:before {
	content: attr(data-text);
	position: absolute;
	max-width: 120%;
	white-space: nowrap;
	overflow: hidden;
	color: var(--dl-heading-color);
	-webkit-animation: text-loading 5s linear infinite;
	animation: text-loading 5s linear infinite forwards;
}

@-webkit-keyframes text-loading {
	0% {
		max-width: 0;
	}
}

@keyframes text-loading {
	0% {
		max-width: 0;
	}
}

@media (max-width: 767px) {
	.loader-text {
		font-size: 42px;
	}
}

/* Button Group */
.btn-group {
	display: flex;
	align-items: center;
	column-gap: 30px;
}

.btn-group-left a {
	margin-right: 10px;
}

/* Default Btn */
.default-btn {
	background: var(--dl-primary-color);
	font-family: var(--dl-heading-font);
	color: var(--dl-body-color);
	font-size: 15px;
	font-weight: 600;
	line-height: 1px;
	display: inline-flex;
	letter-spacing: 0;
	padding: 20px 35px;
	position: relative;
	z-index: 1;
}

.default-btn.text-anim:before {
	color: var(--dl-body-color);
}

@media (max-width: 600px) {
	.default-btn {
		font-size: 13px;
		line-height: 1;
		padding: 15px 18px;
	}
}

/* Section Heading */
.section-heading h2 {
	font-size: 50px;
	line-height: 56px;
	font-weight: 400;
	letter-spacing: -1.5px;
	display: block;
	margin: 0;
}

@media (max-width: 992px) {
	.section-heading h2 {
		font-size: 42px;
	}
}

.section-heading p {
	font-size: 19px;
	margin-top: 10px;
	margin-bottom: 0;
}

.section-heading .default-btn {
	margin-top: 25px;
}

.section-heading-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 1200px) {
	.content-info .section-heading h2 {
		font-size: 34px;
		line-height: 44px;
	}
}

@media (max-width: 992px) {
	.section-heading-wrap br {
		display: none;
	}
}

@media (max-width: 767px) {
	.section-heading h2 {
		font-size: 32px;
		line-height: 42px;
	}

	.section-heading h2 br {
		display: none;
	}

	.section-heading-wrap {
		display: block;
	}

	.section-heading-wrap .default-btn {
		margin-top: 30px;
	}
}

/* Custom Cursor */
.dl-cursor {
	display: none;
}

@media (min-width: 992px) {
	.dl-cursor {
		display: block;
		width: 10px;
		height: 10px;
		border-radius: 50%;
		position: fixed;
		left: 0;
		top: 0;
		user-select: none;
		pointer-events: none;
		transform: translate(50%, 50%);
		visibility: hidden;
		z-index: 10000;
		-webkit-transition: all .5s cubic-bezier(.165, .84, .44, 1);
		transition: all .5s cubic-bezier(.165, .84, .44, 1);
	}

	.dl-cursor:before {
		background-color: var(--dl-heading-color);
		content: "";
		width: 100%;
		height: 100%;
		border-radius: 50%;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		-webkit-transition: all .5s cubic-bezier(.165, .84, .44, 1);
		transition: all .5s cubic-bezier(.165, .84, .44, 1);
	}

	.dl-cursor.dl-drag:before {
		background-color: transparent;
		width: 50px;
		height: 50px;
		border: 3px solid var(--dl-heading-color);
		opacity: 0.3;
		-webkit-transition: all .5s cubic-bezier(.165, .84, .44, 1);
		transition: all .5s cubic-bezier(.165, .84, .44, 1);
	}

	.dl-cursor:after {
		display: block;
		content: "";
		right: -20px;
		border-top: 2px solid var(--dl-heading-color);
		border-right: 2px solid var(--dl-heading-color);
	}

	.dl-cursor span {
		left: -20px;
		border-bottom: 2px solid var(--dl-heading-color);
		border-left: 2px solid var(--dl-heading-color);
	}

	.dl-cursor:after,
	.dl-cursor span {
		width: 12px;
		height: 12px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%) rotate(45deg);
		opacity: 0.3;
		visibility: hidden;
	}

	.dl-cursor.dl-drag:after {
		right: -38px;
		visibility: visible;
		-webkit-transition: right .5s cubic-bezier(.165, .84, .44, 1);
		transition: right .5s cubic-bezier(.165, .84, .44, 1);
	}

	.dl-cursor.dl-drag span {
		left: -38px;
		visibility: visible;
		-webkit-transition: left .5s cubic-bezier(.165, .84, .44, 1);
		transition: left .5s cubic-bezier(.165, .84, .44, 1);
	}
}

/* Check List */
.check-list li {
	display: flex;
	align-items: center;
}

.check-list li:not(:last-of-type) {
	margin-bottom: 10px;
}

.check-list li i {
	color: var(--dl-heading-color);
	font-size: 20px;
	margin-right: 10px;
}

/* Text Hover */
.text-hover {
	background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
	background-repeat: no-repeat;
	background-size: 0 calc(100% - 1.5px);
	transition: background-size .3s;
}

.text-hover:hover {
	color: currentColor;
	background-size: 100% calc(100% - 1.5px);
}

/* Img Hover Scale */
.img-hover-scale .media img {
	transition: transform .8s cubic-bezier(.5, 1, .90, 1);
}

.img-hover-scale:hover .media img {
	transform: scale(1.03);
}

/* Img Hover Move */
.img-hover-move .media img {
	transform: scale(1.05) translateX(0);
	transition: all .8s cubic-bezier(.5, 1, .89, 1);
}

.img-hover-move:hover .media img {
	transform: scale(1.05) translateX(2%);
}

/* Map Pattern */
.map-pattern {
	background-image: url(../img/map-pattern.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 60%;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

/*===================================================
    01 Main Header
====================================================*/
.main-header {
	width: 100%;
	margin-bottom: 15px; 
}

.bottom-header {
	background-color: var(--dl-bg-white);
	width: 100%;
}

.top-header {
	background-color: var(--dl-bg-light-red);
	height: 45px;
	display: flex;
	align-items: center;
}

.top-header-inner {
	display: grid;
	align-items: center;
	grid-template-columns: 1fr 1fr;
}

/* Ticker Slider */
.ticker-wrap {
	display: flex;
	align-items: center;
	column-gap: 10px;
}

.ticker-title {
	display: flex;
	align-items: center;
	column-gap: 3px;
}

.ticker-title svg {
	fill: #ea1f32;
	width: 18px;
	height: 18px;
}

.ticker-title span {
	color: var(--dl-heading-color);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
}

.ticker-slide-wrap {
	overflow: hidden;
}

.ticker-slider {
	max-width: 400px;
	height: 30px;
}

.ticker-slider .swiper-slide {
	display: flex;
	align-items: center;
}

.ticker-slider .swiper-slide a {
	font-size: 16px;
	line-height: 1;
}

.top-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	column-gap: 30px;
}

.top-right-info {
	display: flex;
	align-items: center;
	column-gap: 20px;
}

/* Header Social */
.header-social {
	display: flex;
	align-items: center;
	column-gap: 15px;
}

.header-social li a svg {
	fill: var(--dl-body-color);
	height: 14px;
}

.header-social li a svg:hover {
	fill: var(--dl-heading-color);
}

@media (max-width:992px) {
	.top-header {
		display: none;
	}
}

/* Main Header */
.main-header-wapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 90px;
}

.main-header-wapper .site-logo {
	max-width: 110px;
}

.site-title {
	display: inline-block;
	font-size: 42px;
	line-height: 1;
	font-weight: 400;
	color: var(--dl-heading-color);
	letter-spacing: 1px;
	position: relative;
}

.site-title:after {
	color: #ea1f32;
	content: ".";
	margin-left: -3px;
}

.main-header-info {
	display: flex;
	align-items: center;
	column-gap: 20px;
}

.header-menu-wrap {
	display: none;
}

.sticky-header-wrap {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	transform: translateY(-100%);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
	transition: transform 0.5s ease;
	z-index: 99;
}

@media(min-width: 993px) {
	.sticky-header-wrap.sticky-fixed-top {
		transform: translateY(0);
		will-change: transform;
		transition: transform 1s ease;
	}

	.header-menu-wrap {
		display: block;
	}

	.header-menu-wrap ul li {
		display: inline-flex;
		position: relative;
		margin-left: 40px;
	}

	.header-menu-wrap ul li a {
		font-family: var(--dl-heading-font);
		color: var(--dl-heading-color);
		font-size: 17px;
		font-weight: 500;
		letter-spacing: -0.2px;
		display: block;
		padding: 0;
		margin: 0;
		line-height: 90px;
		text-decoration: none;
		-webkit-font-smoothing: antialiased;
		position: relative;
		z-index: 1;
	}

	.header-menu-wrap li ul {
		background-color: var(--dl-white-color);
		box-shadow: var(--dl-box-shadow);
		width: 220px;
		padding: 0;
		display: block;
		position: absolute;
		left: -35px;
		top: 100px;
		opacity: 0;
		visibility: hidden;
		z-index: 0;
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
	}

	.header-menu-wrap li:hover>ul {
		opacity: 1;
		visibility: visible;
		top: 90px;
		z-index: 99;
	}

	.header-menu-wrap li ul ul {
		left: 100%;
		top: 10px;
	}

	.header-menu-wrap li ul li:hover ul {
		top: 0;
	}

	.header-menu-wrap li li {
		margin: 0;
		padding: 15px 30px;
		display: flex;
		justify-content: space-between;
		text-align: left;
		position: relative;
		transition: all 0.2s ease-in-out;
	}

	.header-menu-wrap li li:not(:last-of-type) {
		border-bottom: 1px solid var(--dl-border-color);
	}

	.header-menu-wrap li li>a {
		font-family: var(--dl-body-font);
		color: var(--dl-body-color);
		font-size: 18px;
		font-weight: 400;
		text-transform: capitalize;
		display: block;
		height: auto;
		line-height: inherit;
		line-height: 20px;
		letter-spacing: -0.2px;
		width: 100%;
		-webkit-font-smoothing: antialiased;
		position: relative;
	}

	.header-menu-wrap li li>a:before {
		background-color: var(--dl-body-color);
		position: absolute;
		width: 10px;
		height: 1px;
		content: "";
		left: -15px;
		top: 50%;
		opacity: 0;
		transform: translateY(-50%);
		-webkit-transition: all 0.3s 0s ease-out;
		-moz-transition: all 0.3s 0s ease-out;
		-ms-transition: all 0.3s 0s ease-out;
		-o-transition: all 0.3s 0s ease-out;
		transition: all 0.3s 0s ease-out;
	}

	.header-menu-wrap li li:hover>a {
		color: var(--dl-heading-color);
		margin-left: 15px;
	}

	.header-menu-wrap li li:hover>a::before {
		opacity: 0.8;
	}
}

/* Mobile Navigation Menu  */
.mobile-menu-action,
.mobile-navigation-menu {
	display: none;
}

@media (max-width: 992px) {
	.mobile-menu-action {
		color: var(--dl-heading-color);
		width: 35px;
		height: 20px;
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		align-items: flex-end;
		justify-content: space-between;
	}

	.mobile-menu-action span {
		background-color: var(--dl-heading-color);
		width: 100%;
		height: 2px;
	}

	.mobile-menu-action span:nth-child(2) {
		width: 80%;
	}

	.mobile-menu-action span:last-child {
		width: 50%;
	}

	.header-menu-wrap .nav-menu {
		display: none;
	}

	#mobile-menu-close {
		position: absolute;
		right: 25px;
		top: 20px;
		width: 40px;
		height: 40px;
		color: var(--dl-heading-color);
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		border-radius: 50%;
		border: 1px solid rgba(230, 230, 230, 0.7);
	}

	#mobile-menu-close svg {
		width: 24px;
		height: 24px;
	}

	#mobile-menu-close:hover {
		opacity: 0.7;
	}

	.mobile-navigation-menu {
		background-color: rgba(255, 255, 255, 1);
		position: fixed;
		left: -100%;
		top: 0;
		width: 100%;
		height: 100vh;
		padding: 110px 0 50px;
		display: block;
		visibility: hidden;
		opacity: 0;
		overflow-y: scroll;
		transition: all .3s linear;
		z-index: 9999;
	}

	.mobile-navigation-menu::-webkit-scrollbar {
		display: none;
	}

	.open-mobile-menu.mobile-navigation-menu {
		left: 0;
		visibility: visible;
		opacity: 1;
		transition: all .3s linear;
	}

	.mobile-navigation-menu .main-menu {
		display: block;
	}

	.mobile-navigation-menu .dropdown-plus {
		width: 100px;
		height: 65px;
		line-height: 65px;
		position: absolute;
		top: 2px;
		right: 25px;
		cursor: pointer;
		z-index: 1;
	}

	.mobile-navigation-menu .dropdown-plus:before,
	.mobile-navigation-menu .dropdown-plus:after {
		position: absolute;
		content: "";
		top: 50%;
		right: 10px;
		width: 12px;
		height: 2px;
		background-color: var(--dl-grey-color);
		transform: translateY(-50%);
	}

	.mobile-navigation-menu .dropdown-plus:after {
		transform: translateY(-50%) rotate(90deg);
		transition: all 0.3s ease-in-out;
	}

	.mobile-navigation-menu .dropdown-plus.dropdown-open:after {
		visibility: hidden;
		transform: translateY(-50%) rotate(0deg);
		transition: all 0.3s ease-in-out;
	}

	.mobile-navigation-menu ul {
		padding-left: 0;
	}

	.mobile-navigation-menu .nav-menu {
		border-top: 1px solid rgba(230, 230, 230, 0.7);
		border-bottom: 1px solid rgba(230, 230, 230, 0.7);
	}

	.mobile-navigation-menu ul li {
		position: relative;
		margin: 0;
		display: block;
		padding: 0;
	}

	.mobile-navigation-menu ul li>a {
		display: block;
		padding: 25px 40px;
		font-family: var(--dl-heading-font);
		color: var(--dl-heading-color);
		font-size: 18px;
		line-height: 1;
		font-weight: 500;
	}

	.mobile-navigation-menu ul li:not(:last-of-type)>a {
		border-bottom: 1px solid rgba(230, 230, 230, 0.7);
	}

	.mobile-navigation-menu ul li:hover>a,
	.mobile-navigation-menu li li:hover>a {
		color: var(--dl-heading-color);
	}

	.mobile-navigation-menu ul li ul li ul,
	.mobile-navigation-menu ul li ul {
		background-color: transparent;
		width: 100%;
		opacity: 1;
		padding: 0;
		visibility: visible;
		position: inherit;
		display: none;
		top: inherit;
		left: inherit;
		box-shadow: none;
	}

	.mobile-navigation-menu ul li ul {
		border-bottom: 1px solid rgba(230, 230, 230, 0.7);
	}

	.mobile-navigation-menu ul li ul ul {
		border-top: 1px solid rgba(230, 230, 230, 0.7);
		border-bottom: none;
	}

	.mobile-navigation-menu ul li ul ul a {
		padding-left: 60px;
	}

	.mobile-navigation-menu ul li ul ul ul a {
		padding-left: 80px;
	}

	.mobile-navigation-menu li li:last-child {
		border-bottom: none;
	}

	.mobile-navigation-menu ul li ul ul,
	.mobile-navigation-menu ul li:last-of-type ul ul {
		border-top: none;
		border-bottom: 1px solid rgba(230, 230, 230, 0.7);
	}

	.mobile-navigation-menu ul li:last-of-type ul {
		border-top: 1px solid rgba(230, 230, 230, 0.7);
	}

	.mobile-navigation-menu ul li:last-of-type ul li ul {
		border-bottom: 1px solid rgba(230, 230, 230, 0.7);
	}

	.mobile-navigation-menu li li>a {
		color: var(--dl-heading-color);
		font-weight: 400;
		font-size: 18px;
		padding: 25px 20px 25px 40px;
	}

	.menu-right-item {
		justify-content: flex-end;
	}
}

/* Text Animation */
.text-anim,
.main-header-wapper .nav-menu>li>a {
	overflow: hidden;
}

.text-anim span,
.main-header-wapper .nav-menu>li>a span {
	white-space: pre;
	display: inline-block;
	opacity: 0;
	-webkit-transform: translate3d(0, -10px, 0);
	transform: translate3d(0, -10px, 0);
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.text-anim:before,
.main-header-wapper .nav-menu>li>a::before {
	display: flex;
	align-items: center;
	justify-content: center;
	content: attr(data-text);
	position: absolute;
	color: var(--dl-heading-color);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.text-anim:hover::before,
.main-header-wapper .nav-menu>li>a:hover::before {
	opacity: 0;
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}

.text-anim:hover>span,
.main-header-wapper .nav-menu>li>a:hover>span {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.text-anim:hover>span:nth-child(1),
.main-header-wapper .nav-menu>li>a:hover>span:nth-child(1) {
	-webkit-transition-delay: 0.045s;
	transition-delay: 0.045s;
}

.text-anim:hover>span:nth-child(2),
.main-header-wapper .nav-menu>li>a:hover>span:nth-child(2) {
	-webkit-transition-delay: 0.09s;
	transition-delay: 0.09s;
}

.text-anim:hover>span:nth-child(3),
.main-header-wapper .nav-menu>li>a:hover>span:nth-child(3) {
	-webkit-transition-delay: 0.135s;
	transition-delay: 0.135s;
}

.text-anim:hover>span:nth-child(4),
.main-header-wapper .nav-menu>li>a:hover>span:nth-child(4) {
	-webkit-transition-delay: 0.18s;
	transition-delay: 0.18s;
}

.text-anim:hover>span:nth-child(5),
.main-header-wapper .nav-menu>li>a:hover>span:nth-child(5) {
	-webkit-transition-delay: 0.225s;
	transition-delay: 0.225s;
}

.text-anim:hover>span:nth-child(6),
.main-header-wapper .nav-menu>li>a:hover>span:nth-child(6) {
	-webkit-transition-delay: 0.27s;
	transition-delay: 0.27s;
}

.text-anim:hover>span:nth-child(7),
.main-header-wapper .nav-menu>li>a:hover>span:nth-child(7) {
	-webkit-transition-delay: 0.315s;
	transition-delay: 0.315s;
}

.text-anim:hover>span:nth-child(8),
.main-header-wapper .nav-menu>li>a:hover>span:nth-child(8) {
	-webkit-transition-delay: 0.36s;
	transition-delay: 0.36s;
}

.text-anim:hover>span:nth-child(9),
.main-header-wapper .nav-menu>li>a:hover>span:nth-child(9) {
	-webkit-transition-delay: 0.405s;
	transition-delay: 0.405s;
}

.text-anim:hover>span:nth-child(10),
.main-header-wapper .nav-menu>li>a:hover>span:nth-child(10) {
	-webkit-transition-delay: 0.45s;
	transition-delay: 0.45s;
}

.text-anim:hover>span:nth-child(11),
.main-header-wapper .nav-menu>li>a:hover>span:nth-child(11) {
	-webkit-transition-delay: 0.495s;
	transition-delay: 0.495s;
}

.text-anim:hover>span:nth-child(12),
.main-header-wapper .nav-menu>li>a:hover>span:nth-child(12) {
	-webkit-transition-delay: 0.54s;
	transition-delay: 0.54s;
}

.text-anim:hover>span:nth-child(13),
.main-header-wapper .nav-menu>li>a:hover>span:nth-child(13) {
	-webkit-transition-delay: 0.585s;
	transition-delay: 0.585s;
}

.text-anim:hover>span:nth-child(14),
.main-header-wapper .nav-menu>li>a:hover>span:nth-child(14) {
	-webkit-transition-delay: 0.63s;
	transition-delay: 0.63s;
}

.text-anim:hover>span:nth-child(15),
.main-header-wapper .nav-menu>li>a:hover>span:nth-child(15) {
	-webkit-transition-delay: 0.675s;
	transition-delay: 0.675s;
}

.menu-right-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 20px;
}

.menu-right-item .menu-search {
	color: var(--dl-heading-color);
}

/* Menu Search */
.menu-search {
	padding: 0;
}

/* Popup Search Box */
#popup-search-box {
	position: fixed;
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
	white-space: nowrap;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 500ms ease all;
	-moz-transition: 500ms ease all;
	transition: 500ms ease all;
}

.open-search-box #popup-search-box {
	opacity: 1;
	visibility: visible;
}

#searchbox-overlay {
	height: 100%;
	left: 0;
	opacity: 0;
	overflow: hidden;
	position: fixed;
	top: 0;
	transition: all 0s ease-in-out;
	width: 100%;
	z-index: -1;
}

.open-search-box #searchbox-overlay {
	opacity: 1;
	z-index: 1002;
	cursor: url('../img/close.svg'), auto;
	transition: all 0.6s ease-in-out;
	transition-delay: 0.3s;
}

#popup-search-box .box-inner-wrap {
	background-color: var(--dl-white-color);
	border-bottom: 1px solid var(--dl-border-color);
	padding: 80px 0;
	width: 100%;
	transform: translateY(-100%);
	transition: all ease-in-out 0.3s;
	box-shadow: 0 10px 60px rgb(0 0 0 / 10%);
}

.open-search-box #popup-search-box .box-inner-wrap {
	transform: translateY(0);
}

#popup-search-box .box-inner-wrap form {
	position: relative;
	margin: 0 auto;
}

#popup-search-box .box-inner-wrap input::-webkit-input-placeholder {
	color: var(--grey-color);
}

#popup-search-box .box-inner-wrap input:-ms-input-placeholder {
	color: var(--grey-color);
}

#popup-search-box .box-inner-wrap input::placeholder {
	color: var(--grey-color);
	font-size: 18px;
}

#popup-search-box .box-inner-wrap input {
	background: var(--dl-white-color);
	font-family: var(--dl-heading-font);
	width: 600px;
	padding: 15px 30px;
	padding-right: 80px;
	border: 1px solid var(--dl-border-color);
	font-size: 18px;
	color: var(--dl-body-color);
	border-radius: 50px;
}

#popup-search-box .box-inner-wrap input::-webkit-input-placeholder {
	color: #666 !important;
}

#popup-search-box .box-inner-wrap input::-moz-placeholder {
	color: #666 !important;
}

#popup-search-box .box-inner-wrap input::-moz-placeholder {
	color: #666 !important;
}

#popup-search-box .box-inner-wrap input:-ms-input-placeholder {
	color: #666 !important;
}

#popup-search-box .box-inner-wrap input:focus {
	outline: none;
	border: 1px solid var(--dl-primary-color);
}

#popup-search-box .box-inner-wrap button {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 100%;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	color: var(--dl-body-color);
	font-size: 30px;
	-webkit-transition: 500ms ease all;
	-moz-transition: 500ms ease all;
	transition: 500ms ease all;
}

#popup-search-box .box-inner-wrap button:hover {
	color: var(--dl-heading-color);
}

#popup-search-box .box-inner-wrap button:focus {
	outline: none;
}

.search-close {
	font-size: 30px;
	color: var(--dl-grey-color);
	border: 1px solid rgba(230, 230, 230, 0.7);
	width: 50px;
	height: 50px;
	position: absolute;
	right: 20px;
	top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.3s cubic-bezier(0.165, 0.85, 0.45, 1);
}

.search-close svg {
	width: 26px;
	height: 26px;
}

.search-close:hover {
	color: var(--dl-grey-color);
	transform: scale(1.06);
}

@media (max-width: 767px) {

	.menu-right-item .default-btn,
	.top-header {
		visibility: visible !important;
	}

	#popup-search-box .box-inner-wrap form {
		width: 80%;
	}

	#popup-search-box .box-inner-wrap input {
		width: 100%;
	}

	.search-close {
		width: 40px;
		height: 40px;
		right: 20px;
		top: 20px;
	}

	.search-close svg {
		width: 20px;
		height: 20px;
	}
}

/*=====================================================
    02 Featured Post Carousel
======================================================*/
.featured-post-card {
	position: relative;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.featured-post-card .post-card-inner {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.featured-post-card .featured-post-thumb {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.featured-post-card .featured-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.featured-post-info {
	background-color: var(--dl-white-color);
	padding: 30px;
	max-width: 90%;
	position: absolute;
	left: -1px;
	bottom: -1px;
}

/* Featured Post Category */
.featured-post-cat {
	background-color: var(--dl-white-color);
	padding: 10px 20px;
	font-size: 17px;
	font-weight: 400;
	line-height: 1;
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 1;
}

.featured-post-meta .author-thumb {
	position: absolute;
	left: 30px;
	top: -30px;
}

.featured-post-meta .author-thumb a img {
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.featured-post-meta {
	margin: 5px 0 15px;
}

.featured-post-meta .meta-list {
	display: flex;
	align-items: center;
	column-gap: 20px;
}

.featured-post-meta .meta-list a {
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	color: var(--dl-body-color);
}

.featured-post-info h2 {
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
	color: var(--dl-heading-color);
	text-transform: capitalize;
}

/* Read More */
.read-more {
	font-family: var(--dl-body-font);
	color: var(--dl-body-color);
	font-size: 15px;
	font-weight: 600;
	position: relative;
	letter-spacing: 0;
}

.read-more:after,
.read-more:before {
	background-color: var(--dl-body-color);
	content: '';
	position: absolute;
	left: 0;
	bottom: 3px;
	height: 1px;
	width: 100%;
}

.read-more:before {
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .5s cubic-bezier(.33, .52, .05, .96);
}

.read-more:after {
	transform: scaleX(1);
	transform-origin: right;
	transition: transform .5s cubic-bezier(.33, .52, .05, .96) .5s;
}

.read-more:hover:before {
	transform: scaleX(1);
	transform-origin: left;
	transition: transform .5s cubic-bezier(.33, .52, .05, .96) .4s;
}

.read-more:hover:after {
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .5s cubic-bezier(.33, .52, .05, .96);
}

.featured-post-carousel .swiper-slide {
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 500px;
}

@media (min-width: 992px) {
	.slide-size-xs {
		width: 350px !important;
	}

	.slide-size-xs .featured-post-card {
		height: 350px;
	}

	.slide-size-s {
		width: 350px !important;
	}

	.slide-size-s .featured-post-card {
		height: 500px;
	}

	.slide-size-m {
		width: 400px !important;
	}

	.slide-size-m .featured-post-card {
		height: 450px;
	}

	.slide-size-l {
		width: 500px !important;
	}

	.slide-size-l .featured-post-card {
		height: 450px;
	}

	.slide-size-xl {
		width: 600px !important;
	}

	.slide-size-xl .featured-post-info,
	.slide-size-l .featured-post-info {
		max-width: 60%;
	}
}

@media (max-width: 767px) {

	.featured-post-carousel,
	.featured-post-carousel {
		padding: 0 15px;
	}
}

/*=====================================================
    03 Featured Category
======================================================*/
.featured-category {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

.category-card .cat-thumb {
	display: block;
	width: 170px;
	height: 170px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.category-card .cat-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.category-card .cat-text {
	background-color: var(--dl-white-color);
	width: 90%;
	padding: 10px;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	line-height: 1;
	position: absolute;
	left: 50%;
	top: 85%;
	border: 1px solid #cfcfcf;
	transform: translate(-50%, -50%);
	z-index: 1;
}

@media (max-width:1024px) {
	.featured-category {
		grid-template-columns: repeat(3, 1fr);
	}

	.category-card .cat-thumb {
		width: 100%;
	}
}

@media (max-width:767px) {
	.featured-category {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}

/*=====================================================
    04 Post Layout
======================================================*/
.post-layout-1 {
	display: grid;
	grid-template-columns: 1fr 1.5fr 1fr;
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 30px;
	grid-row-gap: 30px;
}

.post-layout-item .post-thumb {
	display: block;
	width: 100%;
	height: 220px;
	overflow: hidden;
}

.post-layout-item .post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.post-layout-item .post-meta {
	display: flex;
	align-items: center;
	column-gap: 15px;
	margin-bottom: 10px;
}

.post-layout-item .post-meta li {
	display: flex;
	align-items: center;
	column-gap: 5px;
	font-family: var(--dl-heading-font);
	font-size: 16px;
	font-weight: 500;
	color: var(--dl-body-color);
}

.post-layout-item .post-meta li a {
	color: var(--dl-body-color);
}

.post-layout-item .post-meta li.reading-time svg {
	margin-top: -2px;
}

.post-layout-item .post-meta li svg {
	width: 20px;
	height: 20px;
	color: var(--dl-grey-color);
}

.post-layout-item .post-content {
	background-color: var(--dl-white-color);
	padding: 20px;
	margin-right: 15px;
	margin-top: -80px;
	position: relative;
	z-index: 1;
}

.post-layout-item .post-content h3 {
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 20px;

	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* MAX 2 LINES */
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.post-layout-item .post-content p {
	margin-bottom: 30px;
}

.post-layout-item .author-info {
	display: flex;
	align-items: center;
	column-gap: 12px;
}

.post-layout-item .author-info li img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	object-position: center;
}

.post-layout-item .author-info li a {
	display: block;
	line-height: 1;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
}

@media (max-width: 767px) {
	.post-layout-item .author-info li a:last-child {
		margin-top: 5px;
	}
}

/* Varticle Post Carousel */
.post-layout-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
}

.vartical-post-carousel {
	height: 405px;
	overflow: visible;
}

@media (max-width: 767px) {
	.post-layout-2 {
		grid-template-columns: 1fr;
	}

	.post-layout-2 article.post-layout-item .post-thumb {
		height: 280px;
	}

	.vartical-post-carousel {
		height: 450px;
	}
}

@media (min-width: 1024px) {
	.post-layout-2 {
		grid-template-columns: 1fr 1.5fr 1fr;
		grid-template-rows: repeat(2, 1fr);
		grid-column-gap: 30px;
		grid-row-gap: 30px;
	}

	.post-layout-2>.post-layout-item:nth-child(1) {
		grid-area: 1 / 1 / 2 / 2;
	}

	.post-layout-2>.post-layout-item:nth-child(2) {
		grid-area: 2 / 1 / 3 / 2;
	}

	.post-layout-2>.post-layout-item:nth-child(3) {
		grid-area: 1 / 2 / 3 / 3;
	}

	.post-layout-2>.post-layout-item:nth-child(4) {
		grid-area: 1 / 3 / 3 / 4;
		position: relative;
	}

	.vartical-post-carousel {
		height: 613px;
		width: 100%;
		position: absolute;
		left: 0;
		top: 0;
	}
}

.post-layout-2>.post-layout-item:nth-child(4) {
	overflow: hidden;
}

/* Horizontal Post Card */
.horizontal-post-card {
	display: grid;
	grid-template-columns: 100px 1fr;
	align-items: center;
	grid-column-gap: 15px;
	grid-auto-flow: dense;
}

.horizontal-post-card .post-content {
	background-color: transparent;
}

.horizontal-post-card .post-thumb {
	height: 100%;
	position: relative;
}

.horizontal-post-card .post-thumb img {
	position: absolute;
	left: 0;
	top: 0;
}

.horizontal-post-card .post-content {
	width: auto;
	margin: 0;
	padding: 0;
}

.horizontal-post-card .post-content h3 {
	font-size: 18px;
}

@media (min-width:993px) {

	.post-layout-item .author-info li a:nth-child(2) {
		color: var(--dl-grey-color);
		margin-top: 5px;
		letter-spacing: 0;
	}

	.post-layout-2 .post-layout-item:nth-child(3) .post-thumb,
	.post-layout-1 .post-layout-item:nth-child(3) .post-thumb {
		height: 370px;
	}

	.post-layout-2 .post-layout-item:nth-child(3) .post-content,
	.post-layout-1 .post-layout-item:nth-child(3) .post-content {
		padding: 30px;
	}

	.post-layout-2 .post-layout-item:nth-child(3) .post-content h3,
	.post-layout-1 .post-layout-item:nth-child(3) .post-content h3 {
		font-size: 28px;
		line-height: 34px;
	}
}

/* Share Icon */
.share-icon {
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}

.share-icon .share {
	background-color: var(--dl-bg-light-red);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.share-icon .share svg {
	color: var(--dl-grey-color);
	width: 22px;
	height: 22px;
}

.share-icon ul {
	background-color: var(--dl-white-color);
	border: 1px solid var(--dl-border-color);
	padding: 20px 15px;
	position: absolute;
	left: 50%;
	bottom: 45px;
	display: flex;
	flex-direction: column;
	row-gap: 20px;
	transform: translateX(-50%);
	visibility: hidden;
	opacity: 0;
	clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
	transition: all .8s cubic-bezier(.5, 1, .89, 1);
}

.share-icon .share:hover ul {
	clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
	visibility: visible;
	opacity: 1;
}

.share-icon .share li a svg {
	color: var(--dl-grey-color);
	width: 15px;
	height: 15px;
	transition: all .8s cubic-bezier(.5, 1, .89, 1);
}

.share-icon .share li a:hover svg {
	color: var(--dl-heading-color);
}

/* Social List */
.social-list {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	text-align: center;
}

.social-list li a {
	background-color: var(--dl-primary-color);
	padding: 3px 10px;
	border-radius: 2px;
	display: flex;
	align-items: center;
	column-gap: 5px;
	font-size: 14px;
	font-weight: 500;
	transition: all .8s cubic-bezier(.5, 1, .89, 1);
}

.social-list li a:hover {
	transform: translateY(-3px);
}

.social-list li a svg {
	color: var(--dl-heading-color);
	width: 16px;
	height: 16px;
}

.social-list li.facebook a svg {
	color: #316FF6;
}

.social-list li.twitter a svg {
	color: #111;
}

.social-list li.instagram a svg {
	color: #E1306C;
}

.social-list li.tiktok a svg {
	color: #111;
}

/* Post Social Share */
.post-social-share {
	display: flex;
	align-items: center;
	column-gap: 5px;
}

.post-social-share li a {
	background-color: var(--dl-primary-color);
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .8s cubic-bezier(.5, 1, .89, 1);
}

.post-social-share li a:hover {
	transform: translateY(-3px);
}

.post-social-share li a svg {
	color: var(--dl-white-color);
	width: 16px;
	height: 16px;
}

.post-social-share li.facebook a {
	background-color: #255ca1;
}

.post-social-share li.twitter a {
	background-color: #35c7f5;
}

.post-social-share li.instagram a {
	background-color: #E1306C;
}

.post-social-share li.pinterest a {
	background-color: #cb2027;
}

@media (min-width: 993px) {
	.post-layout-1 .post-layout-item:nth-child(1) {
		grid-area: 1 / 1 / 2 / 2;
	}

	.post-layout-1 .post-layout-item:nth-child(2) {
		grid-area: 2 / 1 / 3 / 2;
	}

	.post-layout-1 .post-layout-item:nth-child(3) {
		grid-area: 1 / 2 / 3 / 3;
	}

	.post-layout-1 .post-layout-item:nth-child(4) {
		grid-area: 1 / 3 / 2 / 4;
	}

	.post-layout-1 .post-layout-item:nth-child(5) {
		grid-area: 2 / 3 / 3 / 4;
	}
}

@media (max-width: 992px) {
	.post-layout-1 {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: repeat(3, 1fr);
		grid-column-gap: 30px;
		grid-row-gap: 30px;
	}

	.post-layout-item .post-content p {
		display: none;
	}
}

@media (max-width: 767px) {
	.post-layout-1 {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(5, 1fr);
	}
}

/*=====================================================
    05 Main Post Area
======================================================*/
.post-wrap-heading {
	margin-bottom: 20px;
}

@media (min-width: 993px) {
	.post-wrap-heading {
		margin-top: -8px;
	}
}

.post-wrap-heading h3 {
	font-size: 20px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	column-gap: 5px;
	margin: 0;
	position: relative;
	z-index: 1;
}

.post-wrap-heading h3 svg {
	color: #ea1f32;
	width: auto;
	height: 20px;
}

.post-wrap-heading h3:after {
	background-color: var(--dl-light-grey-color);
	content: "";
	width: 100%;
	height: 1px;
	margin-left: 5px;
}

.post-wrap-heading h3 span {
	-webkit-box-flex: 0;
	flex: none;
}

/* Post Card */
.post-card {
	background-color: var(--dl-white-color);
	box-shadow: var(--dl-box-shadow);
}

.post-card .post-thumb {
	overflow: hidden;
}

.post-card .post-thumb img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	object-position: center;
}

.post-meta {
	display: flex;
	align-items: center;
	column-gap: 8px;
	margin-bottom: 10px;
}

.post-meta li.sep {
	background-color: var(--dl-grey-color);
	width: 20px;
	height: 1px;
	margin-top: 2px;
}

.post-meta li a {
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
}

.post-meta li a.date {
	color: var(--dl-grey-color);
	font-size: 13px;
}

.post-card .post-content {
	padding: 30px;
}

@media (min-width: 1370px) {

	.post-layout-2 .post-layout-item:nth-child(3) .post-content,
	.post-layout-1 .post-layout-item:nth-child(3) .post-content,
	.post-card .post-content {
		padding: 40px;
	}
}

.post-card .post-content p {
	font-size: 18px;
}

p.word-limit {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.post-card .post-content h3 {
	font-size: 22px;
	font-weight: 500;
	line-height: 28px;
	margin-bottom: 15px;
	display: -webkit-box;
	/* required for line-clamp */
	-webkit-line-clamp: 2;
	/* show max 2 lines */
	-webkit-box-orient: vertical;
	/* vertical orientation */
	overflow: hidden;
	/* hide overflow */
	text-overflow: ellipsis;
	/* add ... for extra text */
}




.post-card .post-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.post-card .post-card-footer li .comment {
	background-color: var(--dl-bg-light-red);
	padding: 5px 8px;
	border-radius: 30px;
	display: flex;
	align-items: center;
	column-gap: 0;
	line-height: 1;
}

.post-card .post-card-footer li .comment svg {
	height: 16px;
	color: var(--dl-grey-color);
}

.post-card .post-card-footer .comment span {
	color: var(--dl-grey-color);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
}

/* Image Post Card */
.post-card.image-post {
	height: 100%;
}

@media (min-width: 768px) {
	.post-card.image-post {
		height: 100%;
		width: calc(100% - 30px);
		position: absolute;
		left: 15px;
		top: 0;
	}
}

.post-card.image-post .post-thumb {
	height: 100%;
	position: relative;
}

.post-card.image-post .post-thumb img {
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.post-card.image-post .post-thumb:before {
	background: rgb(0, 0, 0);
	background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
	background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	opacity: 0.5;
}

.post-card.image-post .post-thumb:hover:before {
	opacity: 1;
}

.post-card.image-post .post-meta {
	justify-content: center;
}

.post-card.image-post .image-post-content {
	width: calc(100% - 80px);
	position: absolute;
	left: 50%;
	bottom: 40px;
	transform: translateX(-50%);
	text-align: center;
}

.post-card.image-post h3 {
	font-size: 24px;
	line-height: 32px;
	text-transform: capitalize;
}

.post-card.image-post h3 a,
.post-card.image-post .post-meta li a {
	color: var(--dl-white-color);
}

.post-card.image-post .read-more,
.post-card.image-post .post-meta li a.date {
	color: var(--dl-light-grey-color);
}

.post-card.image-post .post-meta li.sep,
.post-card.image-post .read-more:before,
.post-card.image-post .read-more:after {
	background-color: var(--dl-light-grey-color);
}

/* Image Post Medium */
.medium-card {
	height: 350px;
}

.medium-card .image-post-content {
	width: calc(100% - 20px);
}

.medium-card .image-post-content h3 {
	font-size: 18px;
	text-transform: inherit;
}

@media (max-width:767px) {
	.post-card.image-post {
		height: 350px;
	}
}

/* Video Post Format */
.post-card.format-video .post-thumb {
	position: relative;
}

.post-card.format-video video {
	max-width: 100%;
	width: 100%;
	height: 250px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.video-popup {
	position: absolute;
	right: 15px;
	top: 15px;
}

.video-popup svg {
	color: var(--dl-white-color);
	width: 30px;
	height: 30px;
}

/* Full Width Post */
.post-card.full-width-post .post-thumb img {
	height: 350px;
}

.post-card.full-width-post h3 {
	font-size: 28px;
	line-height: 36px;
}

/* Gallary Post Format */
.gallary-post-slider {
	width: 100%;
}

.post-slider-wrap,
.gallary-post-slider .swiper-slide {
	width: 100%;
	height: 250px;
	position: relative;
}

/* Custom Height For Post Layout 1 */
.post-layout-1 .post-slider-wrap,
.post-layout-1 .gallary-post-slider .swiper-slide {
	height: 220px;
}

.gallary-post-slider {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.gallary-post-slider .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Swiper Carousel Pagination */
.swiper.carousel-pagination .swiper-pagination {
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
	width: 8px;
	position: absolute;
	left: auto;
	right: 20px;
	top: 30px;
	bottom: auto;
	z-index: 10;
}

.swiper-pagination .swiper-pagination-bullet {
	background-color: var(--dl-white-color);
	width: 6px;
	height: 6px;
	opacity: 0.8;
	margin: 0 !important;
}

.swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--dl-white-color);
	position: relative;
	transition: all 0.2s ease-in-out;
	opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active:before {
	border: 1px solid var(--dl-white-color);
	content: "";
	width: 15px;
	height: 15px;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.2s ease-in-out;
}

/* Audio Post Format */
.format-audio .post-thumb {
	position: relative;
}

.audio-player {
	background-color: var(--dl-white-color);
	width: calc(100% - 20px);
	height: auto;
	position: absolute;
	left: 10px;
	bottom: 10px;
}

.audio-player audio {
	width: 100%;
	height: 50px;
	display: block;
}

.audio-player audio::-webkit-media-controls-panel {
	background-color: var(--dl-white-color);
	border-radius: 0;
}

/* Horizontal Post Card */
@media (min-width: 993px) {
	.horizontal-card {
		background-color: var(--dl-bg-light-red);
		display: grid;
		grid-template-columns: 40% 60%;
		box-shadow: var(--dl-box-shadow);
	}

	.horizontal-card .post-slider-wrap,
	.horizontal-card .gallary-post-slider .swiper-slide,
	.horizontal-card .gallary-post-slider .swiper-slide img,
	.horizontal-card .post-thumb img,
	.horizontal-card.format-video video {
		height: 100%;
	}
}

/* Subscribe Card */
.subscribe-card {
	background-color: var(--dl-primary-color);
	background-image: url(../img/subscribe-pattern.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100%;
	padding: 40px;
	margin: 0;
	border-radius: 2px;
	display: grid;
	grid-template-columns: 40% 1fr;
	grid-gap: 20px;
	align-items: center;
}

@media (min-width: 993px) {
	.subscribe-card {
		margin: 30px 0;
	}
}

.subscribe-heading {
	display: flex;
	align-items: center;
	column-gap: 10px;
}

.subscribe-heading .bell-animation {
	width: 40px;
	animation-name: bell-animation;
	animation-duration: 2.5s;
	animation-iteration-count: infinite;
	transform-origin: top;
}

.subscribe-card .subscribe-heading h3 {
	margin: 0;
	line-height: 26px;
}

.subscribe-card .subscribe-heading p {
	color: #202124;
}

.subscribe-card form .mc-fields {
	position: relative;
}

.subscribe-card .subscribe-form .form-control {
	padding-right: 150px;
}

.subscribe-card .subscribe-form .form-control:focus {
	border: 1px solid var(--dl-grey-color);
}

.subscribe-card form button {
	width: auto;
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
}

@media (max-width: 1024px) {
	.subscribe-card .subscribe-heading h3 {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.subscribe-card {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.subscribe-heading {
		display: block;
	}

	.subscribe-card .subscribe-heading h3 {
		font-size: 22px;
	}

	.subscribe-heading .bell-animation {
		margin-bottom: 20px;
	}
}

@keyframes bell-animation {
	0% {
		transform: rotate(0.0deg);
	}

	10% {
		transform: rotate(14.0deg);
	}

	20% {
		transform: rotate(-8.0deg);
	}

	30% {
		transform: rotate(14.0deg);
	}

	40% {
		transform: rotate(-4.0deg);
	}

	50% {
		transform: rotate(10.0deg);
	}

	60% {
		transform: rotate(0.0deg);
	}

	100% {
		transform: rotate(0.0deg);
	}
}

/* Pagination */
.pagination-wrap {
	display: flex;
	align-items: center;
	column-gap: 10px;
	margin-top: 50px;
}

.pagination-wrap a {
	background-color: var(--dl-white-color);
	color: var(--dl-grey-color);
	font-size: 17px;
	font-weight: 500;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination-wrap a:hover,
.pagination-wrap a.active {
	background-color: #f9e498;
	color: var(--dl-heading-color);
}

@media (max-width: 992px) {
	.pagination-wrap {
		justify-content: center;
	}
}

/*=====================================================
    06 Single Post Area
======================================================*/
/* .single-post-thumb {
	border-radius: 2px;
	width: 100%;
	height: 450px;
	overflow: hidden;
} */

/* Container */
.single-post-thumb {
	width: 100%;
	height: 450px;
	/* fixed height desktop */
	background: #f2f2f2;
	border-radius: 2px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Image */
.single-post-thumb img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

/* Responsive adjustments */

/* Large tablets (1024px - 768px) */
@media (max-width: 1024px) {
	.single-post-thumb {
		height: 350px;
		/* slightly smaller on tablets */
	}
}

/* Mobile devices (767px and below) */
@media (max-width: 767px) {
	.single-post-thumb {
		height: 250px;
		/* smaller height for mobile */
	}
}

/* Gallery Thumb */
.single-post-gallery {
	position: relative;
	height: 100%;
	--dl-nav-radius: 20px;
}

.single-post-gallery .vexson-swiper-next,
.single-post-gallery .vexson-swiper-prev {
	background-color: var(--dl-bg-white);
	color: var(--dl-grey-color);
	width: 40px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: -5px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	border-top-right-radius: var(--dl-nav-radius);
	border-bottom-right-radius: var(--dl-nav-radius);
	visibility: hidden;
	opacity: 0;
	transition: all .3s cubic-bezier(.5, 1, .89, 1);
}

.single-post-gallery .vexson-swiper-next {
	border-radius: 0;
	border-top-left-radius: var(--dl-nav-radius);
	border-bottom-left-radius: var(--dl-nav-radius);
	left: auto;
	right: -5px;
}

.single-post-gallery .vexson-swiper-next svg,
.single-post-gallery .vexson-swiper-prev svg {
	width: 35px;
	height: 35px;
}

.single-post-gallery:hover .vexson-swiper-next,
.single-post-gallery:hover .vexson-swiper-prev {
	visibility: visible;
	opacity: 1;
	left: 0;
}

.single-post-gallery:hover .vexson-swiper-next {
	left: auto;
	right: 0;
}

@media(min-width: 993px) {
	.no-sidebar .single-post-thumb {
		width: 125%;
		max-width: 125%;
		margin: 0 -12.5% !important;
	}
}

.single-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.entry-header .post-meta {
	margin-top: 40px;
}

.entry-header .post-title {
	font-size: 42px;
	line-height: 52px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: capitalize;
}

.single-post-content>* {
	margin-top: 20px;
}

.single-post-content h3 {
	font-size: 28px;
	font-weight: 500;
}

.single-post-content p {
	font-size: 17px;
	color: var(--dl-heading-color);
	margin-bottom: 0;
}

@media(max-width: 767px) {
	.single-post-thumb {
		height: 300px;
	}

	.entry-header .post-title {
		font-size: 24px;
		line-height: 36px;
	}
}

/* Blockquote */
.single-post-content blockquote {
	background-color: var(--dl-bg-light-red);
	padding: 30px;
	margin: 40px 0;
}

blockquote svg {
	color: var(--dl-grey-color);
	width: 40px;
	height: 40px;
}

blockquote p {
	font-size: 22px !important;
	line-height: 32px;
	font-weight: 500;
	color: var(--dl-heading-color);
	margin-top: 10px !important;
}

blockquote p span {
	color: var(--dl-grey-color);
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	display: block;
	margin-top: 15px;
	position: relative;
	padding-left: 25px;
}

blockquote p span:before {
	background-color: var(--dl-grey-color);
	content: "";
	width: 20px;
	height: 1px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

/* Single Post Gallary */
.single-post-gallary {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 20px;
	margin: 40px 0;
}

@media(min-width: 993px) {
	.no-sidebar .single-post-gallary {
		width: 125%;
		max-width: 125%;
		margin: 40px -12.5% !important;
	}
}

@media(max-width: 767px) {
	.single-post-gallary {
		grid-template-columns: 1fr;
	}
}

.single-post-gallary div img {
	border-radius: 2px;
}

/* Single Post Lists */
.single-post-list-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
	margin: 40px 0;
}

.single-post-list li {
	list-style: inside;
}

.single-post-list li:not(:last-of-type) {
	margin-bottom: 5px;
}

@media(max-width: 767px) {
	.single-post-list-wrap {
		grid-template-columns: 1fr;
	}
}

/* Entry Footer */
.entry-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 40px;
}

/* Single Post Item */
.single-post-item {
	margin-top: 40px;
}

.single-post-item h3 {
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 25px;
}

/* Related Posts */
.single-post-item .related-post-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
}

@media(min-width: 993px) {
	.no-sidebar .single-post-item .related-post-wrap {
		width: 125%;
		max-width: 125%;
		margin: 0 -12.5% !important;
	}
}

@media(max-width: 992px) {
	.single-post-item .related-post-wrap {
		grid-template-columns: 1fr 1fr;
	}
}

@media(max-width: 767px) {
	.single-post-item .related-post-wrap {
		grid-template-columns: 1fr;
	}
}

/* Single Posts Navigation */
.single-post-navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 15px;
}

.single-post-navigation li a {
	color: var(--dl-grey-color);
	border: 1px solid #ddd;
	border-radius: 2px;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	column-gap: 5px;
	font-size: 16px;
	font-weight: 500;
}

.single-post-navigation li a svg {
	color: var(--dl-grey-color);
	width: 20px;
	height: 20px;
	transition: all .8s cubic-bezier(.5, 1, .89, 1);
}

.single-post-navigation li:hover a {
	color: var(--dl-heading-color);
	border: 1px solid var(--dl-primary-color);
}

.single-post-navigation li:hover a svg {
	color: var(--dl-heading-color);
}

/* Single Post Author */
.single-post-author {
	background-color: var(--dl-bg-light-red);
	display: grid;
	grid-template-columns: 150px 1fr;
	align-items: center;
	grid-column-gap: 40px;
	grid-row-gap: 30px;
	padding: 40px;
}

.single-post-author .author-thumb {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
}

.single-post-author .author-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.single-post-author .author-info h3 {
	font-size: 20px;
	line-height: 1;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	column-gap: 10px;
}

.single-post-author .author-info h3 span {
	background-color: var(--dl-primary-color);
	color: var(--dl-body-color);
	font-size: 15px;
	line-height: 1;
	padding: 3px 10px;
}

.single-post-author p {
	margin: 0;
	font-size: 17px;
}

.single-post-author .post-social-share {
	margin-top: 20px;
}

@media (max-width: 767px) {
	.single-post-author {
		grid-template-columns: 1fr;
	}

	.single-post-author .author-info h3 {
		flex-direction: column;
		align-items: flex-start;
		row-gap: 10px;
		margin-bottom: 20px;
	}
}

/* Post Comments */
.comments-box .comment-inner {
	display: grid;
	grid-template-columns: 60px 1fr;
	grid-column-gap: 20px;
}

.comments-box .comment:not(:last-of-type) {
	margin-bottom: 40px;
}

.comments-box .children {
	margin-left: 50px;
	margin-top: 40px;
}

.comments-box .comment-thumb img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin-top: 5px;
}

.comments-meta h4 {
	font-size: 20px;
	font-weight: 500;
	display: block;
}

.comments-meta h4 span {
	font-family: var(--dl-body-font);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.2px;
	text-transform: capitalize;
	color: var(--dl-grey-color);
	display: block;
}

.comment-area p {
	font-size: 17px;
	line-height: 27px;
	margin-bottom: 10px;
}

.comment-area .reply {
	font-family: var(--dl-primary-font);
	font-size: 15px;
	font-weight: 600;
	color: var(--dl-grey-color);
}

.comment-area .reply:hover {
	color: var(--primary-color);
}

/* Post Comment Form */
.comment-form-wrap {
	margin-top: 40px;
}

.comment-form-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
}

.comment-form-group .message .form-control {
	height: 150px;
}

.comment-form-group .form-control {
	background-color: var(--dl-white-color);
	border: 1px solid var(--dl-light-grey-color);
	width: 100%;
	height: 50px;
	border-radius: 0;
	outline: none;
	box-shadow: none;
}

.comment-form-group .form-control:focus {
	border: 1px solid var(--dl-primary-color);
}

@media (min-width: 768px) {

	.form-field.submit-btn,
	.comment-form-group .form-field.message {
		grid-column-end: span 2;
	}

	.comment-form-group .default-btn {
		padding: 25px 35px;
	}
}

@media (max-width: 767px) {

	.comment-form-group {
		grid-template-columns: 1fr;
	}
}


/*=====================================================
    07 Blog Page
======================================================*/
.blog-standard article:not(:last-of-type) {
	margin-bottom: 40px;
}

.blog-list .subscribe-card {
	margin: 0;
}

.single-video .single-post-thumb {
	height: auto;
}

/*=====================================================
    08 Sidebar Widgets
======================================================*/
@media(min-width: 992px) {
	.sidebar-area {
		padding-left: 30px;
	}

	.main-area>div:nth-child(2) .sidebar-area {
		position: -webkit-sticky;
		position: sticky;
		top: 110px;
	}

	.flex-row-reverse .sidebar-area {
		padding-left: 0;
		padding-right: 30px;
	}
}

/* Widget Heading */
.widget-heading h3 {
	display: flex;
	align-items: center;
	column-gap: 5px;
	margin-bottom: 20px;
}

.widget-heading h3 svg {
	width: 20px;
	height: 20px;
	color: #ea1f32;
	opacity: 0.8;
	margin-top: -2px;
}

/* Sidebar Widget */
.sidebar-area .sidebar-widget:not(:last-of-type) {
	margin-bottom: 60px;
}

/* Author Widget */
.sidebar-widget .author-widget {
	background-color: var(--dl-bg-light-red);
	padding: 30px;
	text-align: center;
}

.sidebar-widget .author-widget .author-thumb {
	width: 130px;
	height: 130px;
	border-radius: 50%;
}

.sidebar-widget .author-content {
	padding: 0 20px;
}

.sidebar-widget .author-content h3 {
	margin-bottom: 0;
	line-height: 1;
	margin: 15px 0;
}

.sidebar-widget .author-content h3 a {
	display: block;
}

.sidebar-widget .author-content h3 span {
	color: var(--dl-grey-color);
	display: block;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-top: 8px;
}

.sidebar-widget .author-content p {
	font-size: 17px;
	color: var(--dl-grey-color);
}

/* Widget Category List */
.widget-category-list li:not(:last-of-type) {
	margin-bottom: 20px;
}

.widget-category-list li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 70px;
	padding: 0 20px;
	font-size: 17px;
	font-weight: 400;
	letter-spacing: 0;
	color: var(--dl-white-color);
	position: relative;
	overflow: hidden;
	transition: all .8s cubic-bezier(.5, 1, .89, 1);
	z-index: 1;
}

.widget-category-list img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -2;
}

.widget-category-list li a:before {
	background: rgb(1, 1, 1);
	background: -webkit-linear-gradient(left, rgba(1, 1, 1, 1) 0%, rgba(0, 0, 0, 0) 40%);
	background: -o-linear-gradient(left, rgba(1, 1, 1, 1) 0%, rgba(0, 0, 0, 0) 40%);
	background: linear-gradient(to right, rgba(1, 1, 1, 1) 0%, rgba(0, 0, 0, 0) 40%);
	opacity: 0.5;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

.widget-category-list li a span {
	background-color: var(--dl-white-color);
	color: var(--dl-grey-color);
	font-size: 12px;
	font-weight: 500;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.widget-category-list li a:hover {
	background-position-x: 60%;
	transition: all .8s cubic-bezier(.5, 1, .89, 1);
}

@media (max-width: 992px) and (min-width: 767px) {
	.widget-category-list {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-column-gap: 20px;
	}
}

/* Widget Post Items */
.widget-post-item {
	display: grid;
	grid-template-columns: 100px 1fr;
	align-items: center;
	grid-gap: 15px;
}

.widget-post-item:not(:last-of-type) {
	margin-bottom: 30px;
}

.widget:not(.footer-widget) .widget-post-item:first-child {
	display: block;
}

.widget:not(.footer-widget) .widget-post-item:first-child .widget-post-thumb a {
	width: 100%;
	height: 200px;
	border-radius: 0;
	margin-bottom: 15px;
}

.widget:not(.footer-widget) .widget-post-item:first-child .widget-post-content h3 {
	font-size: 20px;
	line-height: 24px;
}

.widget-post-item .widget-post-thumb a {
	border-radius: 50%;
	width: 100px;
	height: 100px;
	overflow: hidden;
	display: block;
}

.widget-post-item .widget-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.widget-post-item .widget-post-content h3 {
	font-size: 18px;
	line-height: 22px;
	margin-bottom: 5px;
}

.widget-post-item .widget-post-content .post-meta {
	margin: 0;
}

/* Widget Subscribe */
.widget-subscribe {
	background-color: var(--dl-bg-light-red);
	padding: 40px 20px;
	margin-top: 30px;
	position: relative;
}

.widget-subscribe .subscribe-heading .subscribe-icon {
	background-color: var(--dl-primary-color);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 50%;
	top: -30px;
	transform: translateX(-50%);
}

.widget-subscribe .subscribe-heading svg {
	color: var(--dl-body-color);
	width: 30px;
	height: 30px;
}

.widget-subscribe .subscribe-heading {
	text-align: center;
	padding: 0 30px;
	margin-bottom: 20px;
}

.widget-subscribe .subscribe-heading h3 {
	font-size: 20px;
	line-height: 28px;
}

.subscribe-form .form-control {
	background-color: var(--dl-white-color);
	width: 100%;
	height: 50px;
	border: 1px solid var(--dl-light-grey-color);
	border-radius: 0;
	outline: none;
	box-shadow: none;
}

.subscribe-form .form-control:focus {
	border: 1px solid #f9e498;
}

.subscribe-form button {
	background-color: #f9e498;
	margin-top: 10px;
	width: 100%;
	justify-content: center;
}

.subscribe-form .mc-fields {
	position: relative;
	overflow: hidden;
}

#mc-form-messages {
	display: none;
	margin-bottom: 0;
	margin-top: 15px;
}

#mc-form-messages.alert-danger,
#mc-form-messages.alert-success {
	display: block;
}

/* Tag Cloud */
.tag-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.tag-list li a {
	background-color: var(--dl-bg-light-red);
	color: var(--dl-grey-color);
	padding: 10px 15px;
	line-height: 1;
	display: inline-flex;
	transition: all .8s cubic-bezier(.5, 1, .89, 1);
}

.tag-list li a:hover {
	color: var(--dl-heading-color);
	transform: translateY(-3px);
}

/* Social Widget */
.social-widget {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}

.social-widget li a {
	background-color: var(--dl-primary-color);
	border-radius: 1px;
	height: 50px;
	display: grid;
	grid-template-columns: 40px 1fr;
	grid-column-gap: 10px;
	align-items: center;
	line-height: 1;
	position: relative;
}

.social-widget li a:before {
	background-color: rgba(255, 255, 255, 0.1);
	content: "";
	width: 40px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transition: all .4s cubic-bezier(.5, 1, .89, 1);
}

.social-widget li:hover a:before {
	width: 100%;
}

.social-widget li a>div {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-widget li a svg {
	fill: var(--dl-white-color);
	width: 15px;
	height: 15px;
}

.social-widget li a span {
	color: var(--dl-white-color);
	font-size: 14px;
	letter-spacing: 0;
	font-weight: 500;
}

.social-widget li.facebook a {
	background: #3A5795;
	background: linear-gradient(to bottom, #3A5795 0%, #2B4886 100%);
}

.social-widget li.twitter a {
	background: #1DA1F2;
	background: linear-gradient(to right, #1DA1F2, #009ffc);
}

.social-widget li.instagram a {
	background: #ee2a7b;
	background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
}

.social-widget li.youtube a {
	background: #ff5252;
	background: linear-gradient(-90deg, #ff5252 0%, #ed1c24 100%);
}

/* Banner Ads */
.widget-banner a img {
	width: 100%;
	border-radius: 1px;
}

/*=====================================================
    09 Subscribe Page
======================================================*/
.subscribe-section {
	padding-top: 50px;
	border-top: 1px solid var(--dl-border-color);
}

.subscribe-page-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.subscribe-img {
	position: relative;
}

.subscribe-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	left: 0;
	top: 0;
}

.subscribe-wrap {
	background-color: var(--dl-bg-light-red);
	padding: 80px 40px;
}

.subscribe-wrap h2 {
	font-weight: 500;
}

.subscribe-wrap h3 {
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 20px;
	color: var(--dl-grey-color);
}

.subscribe-wrap p {
	color: var(--dl-grey-color);
	margin-bottom: 0;
	margin-top: 10px;
	font-size: 17px;
}

.subscribe-wrap .subscribe-form button {
	width: 60%;
}

@media (max-width: 767px) {
	.subscribe-wrap {
		padding: 40px;
	}

	.subscribe-page-inner {
		grid-template-columns: 1fr;
	}

	.subscribe-img {
		height: 250px;
	}
}

/*=====================================================
    10 Page Header
======================================================*/
.page-content-wrap-author {
	background-image: url(../img/page-header.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100%;
	height: 100%;
	padding: 80px 50px;
	border-radius: 2px;
	position: relative;
}

.page-content-wrap {
	background-image: url(../img/post-1.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100%;
	height: 100%;
	padding: 80px 50px;
	border-radius: 2px;
	position: relative;
	overflow: hidden;
}

/* White overlay */
.page-content-wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.75);
	z-index: 1;
}

/* Keep content above overlay */
.page-content-wrap>* {
	position: relative;
	z-index: 2;
}


@media (min-width:993px) {
	.page-header .page-content {
		max-width: 50%;
	}
}

@media (max-width:767px) {
	.page-content-wrap {
		padding: 80px 40px;
	}
}

.page-header .page-content h4 {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
}

.page-header .page-content h2 {
	font-size: 42px;
	font-weight: 400;
	letter-spacing: 0;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	line-height: 1;
}

.page-header .page-content h2 span {
	font-size: 16px;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 0;
	position: relative;
	padding-left: 35px;
	margin-left: 10px;
	margin-top: 5px;
}

.page-header .page-content h2 span:before {
	background-color: var(--dl-grey-color);
	content: "";
	width: 30px;
	height: 1px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.page-header .page-content p {
	color: var(--dl-body-color);
	margin: 0;
}

/* Author Page */
.author-page .page-content-wrap {
	padding-bottom: 100px;
}

.author-page .author-thumb {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	bottom: calc(-150px / 2);
	transform: translateX(-50%);
	overflow: hidden;
}

.author-page .author-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.author-page-info p {
	margin-bottom: 30px;
}

@media (max-width: 992px) {
	.author-page-info p {
		padding-top: 20px;
	}
}

@media (max-width: 992px) {
	.author-page-info p {
		padding-top: 40px;
	}
}

/*=====================================================
    11 404 Error Page
======================================================*/
.error-page {
	background-image: url(../img/404.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	width: 100%;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.error-page .page-content-wrap {
	background-image: none;
	padding: 0;
}

.error-page .page-content h2 {
	color: var(--dl-white-color);
	font-size: 52px;
	line-height: 52px;
}

.error-page .page-content h4,
.error-page .page-content p {
	color: var(--dl-white-color);
}

.error-page .default-btn {
	margin-top: 30px;
}

@media (max-width: 767px) {
	.error-page .page-content h2 {
		font-size: 36px;
		line-height: 42px;
	}
}

/*=====================================================
    12 Contact Section
======================================================*/
.contact-section {
	border-top: 1px solid var(--dl-border-color);
	position: relative;
	z-index: 1;
}

.contact-info li span {
	color: var(--dl-heading-color);
	font-weight: 500;
	margin-right: 5px;
}

.contact-info li:not(:last-of-type) {
	margin-bottom: 10px;
}

.contact-form-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
}

.contact-form-group .form-control {
	background-color: var(--dl-white-color);
	width: 100%;
	height: 50px;
	border: 1px solid var(--dl-light-grey-color);
	border-radius: 0;
	outline: none;
	box-shadow: none;
}

.contact-form-group .form-control:focus {
	border: 1px solid var(--dl-primary-color);
}

.contact-form-group .message .form-control {
	height: 150px;
}

#form-messages {
	display: none;
	margin-top: 15px;
	margin-bottom: 0;
}

#form-messages.alert-danger,
#form-messages.alert-success {
	display: block;
}

@media (min-width: 768px) {

	.form-field.submit-btn,
	.contact-form-group .form-field.message {
		grid-column-end: span 2;
	}

	.contact-form-group .default-btn {
		padding: 25px 35px;
	}
}

@media(max-width: 767px) {
	.contact-form-group {
		grid-template-columns: 1fr;
	}
}

/* Modal */
body.modal-open {
	overflow: inherit !important;
	padding-right: 0 !important;
}

.vixto-modal {
	opacity: 0;
	visibility: hidden;
}

.vixto-modal.show {
	opacity: 1;
	visibility: visible;
	transition: all 0.8s ease-in-out;
}

.modal-backdrop.show {
	display: none;
}

.vixto-modal .modal-dialog {
	max-width: 430px;
}

.vixto-modal .modal-content {
	position: relative;
	border-radius: 0;
	border: none;
}

.vixto-modal .btn-close {
	position: absolute;
	right: 20px;
	top: 20px;
}

.vixto-modal .subscribe-card {
	background-image: url(../img/subscribe-pattern-2.png);
	grid-template-columns: 1fr;
	margin: 0;
	padding: 60px 40px;
	text-align: center;
	border-radius: 1px;
}

.vixto-modal .subscribe-heading {
	flex-direction: column;
}

.vixto-modal .bell-animation {
	width: 50px;
}

.vixto-modal .subscribe-card .subscribe-heading h3 {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 15px;
	margin-top: 20px;
}

.vixto-modal .post-social-share {
	justify-content: center;
	margin-top: 15px;
}

.vixto-modal .form-control {
	padding: .375rem .75rem;
}

.vixto-modal .default-btn {
	background-color: var(--dl-bg-dark);
	color: var(--dl-white-color);
	position: inherit;
	transform: inherit;
	width: 100%;
	margin-top: 15px;
	padding: 24.5px 35px;
}

.vixto-modal .default-btn.text-anim:before {
	color: var(--dl-white-color);
}

/*=====================================================
    13 Footer Section
======================================================*/
.footer-section {
	padding-top: 100px;
}

.footer-widget .widget-title {
	margin-bottom: 15px;
}

/* About Widget */
.footer-widget .about-widget .logo {
	width: 130px;
	display: block;
	margin-bottom: 20px;
}

.footer-widget .about-widget p {
	font-size: 17px;
	margin-right: 10px;
	margin-bottom: 25px;
}

/* Footer Category Widget */
.footer-widget .category-widget ul li:not(:last-of-type) {
	margin-bottom: 10px;
}

.footer-widget .category-widget ul li a {
	color: var(--dl-body-color);
	position: relative;
	line-height: 1;
}

.footer-widget .category-widget ul li a:hover {
	color: var(--dl-heading-color);
}

.footer-widget .category-widget ul li a:before {
	background-color: var(--dl-body-color);
	content: "";
	width: 0%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 3px;
	visibility: hidden;
	opacity: 0;
	transition: all .5s cubic-bezier(.5, 1, .89, 1);
}

.footer-widget .category-widget ul li:hover a:before {
	width: 100%;
	visibility: visible;
	opacity: 1;
	transition: all .5s cubic-bezier(.5, 1, .89, 1);
}

/* Contact Widget */
.contact-widget ul li:not(:last-of-type) {
	margin-bottom: 10px;
}

.contact-widget ul li span {
	color: var(--dl-heading-color);
	font-weight: 500;
	margin-right: 5px;
}

/* Copyright Area */
.copyright-area {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	margin-top: 100px;
	border-top: 1px solid var(--dl-light-grey-color);
}

.copyright-text {
	color: var(--dl-grey-color);
	font-size: 16px;
}

.copyright-text a {
	color: var(--dl-heading-color);
	font-weight: 500;
}

/* Footer Social */
.footer-social {
	display: flex;
	align-items: center;
	column-gap: 10px;
}

.footer-social li {
	color: var(--dl-grey-color);
}

.footer-social li svg {
	fill: var(--dl-grey-color);
	height: 15px;
	transition: all .8s cubic-bezier(.5, 1, .89, 1);
}

.footer-social li:hover svg {
	fill: var(--dl-heading-color);
}

@media(min-width: 993px) {
	.footer-widget .category-widget {
		margin-left: 30px;
	}
}

@media(max-width: 767px) {
	.footer-section {
		padding-top: 80px;
	}

	.copyright-area {
		margin-top: 80px;
		flex-direction: column;
		row-gap: 5px;
		text-align: center;
	}
}

#scrollup {
	width: 45px;
	height: 45px;
	position: fixed;
	bottom: 30px;
	right: 30px;
	overflow: hidden;
	z-index: 99;
}

.scroll-to-top {
	background-color: var(--dl-primary-color);
	color: var(--dl-heading-color);
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 25px;
	padding: 0;
	line-height: 40px;
	border-radius: 1px;
	outline: none;
	text-decoration: none;
	transform: translateY(150%);
	transition: all 0.3s ease-in-out;
}

.scroll-to-top svg {
	color: var(--dl-heading-color);
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	margin: 0 auto;
}

#scrollup.show {
	opacity: 1;
}

#scrollup.show .scroll-to-top {
	transform: translateY(0);
	transition: all 0.3s ease-in-out;
}

.scroll-to-top:hover {
	text-decoration: none;
	opacity: 0.8;
	transition: all 0.3s ease-in-out;
}

/* Light/Dark Switch Button */
.theme-toggle {
	background-color: #fff;
	width: 50px;
	height: 50px;
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	border-radius: 2px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
	z-index: 99;
}

[data-theme="dark"] .theme-toggle {
	background-color: #222;
}

.theme-toggle svg {
	width: 20px;
	height: 20px;
}

.sun-and-moon> :is(.moon, .sun, .sun-beams) {
	transform-origin: center;
}

.sun-and-moon> :is(.moon, .sun) {
	fill: #000;
	transition: all 0.3s ease-in-out;
}

[data-theme="dark"] .sun-and-moon> :is(.moon, .sun) {
	fill: var(--dl-body-color);
}

.theme-toggle:is(:hover, :focus-visible)>.sun-and-moon> :is(.moon, .sun) {
	fill: #444;
	transition: all 0.3s ease-in-out;
}

[data-theme="dark"] .theme-toggle:is(:hover, :focus-visible)>.sun-and-moon> :is(.moon, .sun) {
	fill: #999;
}

.sun-and-moon>.sun-beams {
	stroke: #000;
	stroke-width: 2px;
	transition: all 0.3s ease-in-out;
}

.theme-toggle:is(:hover, :focus-visible) .sun-and-moon>.sun-beams {
	stroke: #444;
	transition: all 0.3s ease-in-out;
}

[data-theme="dark"] .sun-and-moon>.sun {
	transform: scale(1.75);
}

[data-theme="dark"] .sun-and-moon>.sun-beams {
	opacity: 0;
}

[data-theme="dark"] .sun-and-moon>.moon>circle {
	transform: translateX(-7px);
}

@supports (cx: 1) {
	[data-theme="dark"] .sun-and-moon>.moon>circle {
		cx: 17;
		transform: translateX(0);
	}
}

@media (prefers-reduced-motion: no-preference) {
	.sun-and-moon>.sun {
		transition: transform .5s cubic-bezier(.5, 1, .75, 1.25);
	}

	.sun-and-moon>.sun-beams {
		transition: transform .5s cubic-bezier(.5, 1.5, .75, 1.25), opacity .5s cubic-bezier(.25, 0, .3, 1);
	}

	.sun-and-moon .moon>circle {
		transition: transform .25s cubic-bezier(0, 0, 0, 1);
	}

	@	supports (cx: 1) {
		.sun-and-moon .moon>circle {
			transition: cx .25s cubic-bezier(0, 0, 0, 1);
		}
	}

	[data-theme="dark"] .sun-and-moon>.sun {
		transition-timing-function: cubic-bezier(.25, 0, .3, 1);
		transition-duration: .25s;
		transform: scale(1.75);
	}

	[data-theme="dark"] .sun-and-moon>.sun-beams {
		transition-duration: .15s;
		transform: rotateZ(-25deg);
	}

	[data-theme="dark"] .sun-and-moon>.moon>circle {
		transition-duration: .5s;
		transition-delay: .25s;
	}
}

/* Dark Mode */
[data-theme="dark"] {
	--dl-bg-light-red: #1f1f1f;
	--dl-border-color: #333;
}

[data-theme="dark"] .site-preloader {
	background-color: #121212;
}

[data-theme="dark"] .loader-text {
	color: #333;
}

[data-theme="dark"] .bottom-header,
[data-theme="dark"] body {
	--dl-body-color: #bdc1c6;
	--dl-heading-color: #fff;
	background-color: #121212;
}

[data-theme="dark"] #popup-search-box .box-inner-wrap {
	background-color: #121212;
}

[data-theme="dark"] #popup-search-box .box-inner-wrap input {
	background: #222;
}

[data-theme="dark"] .top-header {
	background-color: var(--dl-bg-light-red);
}

[data-theme="dark"] .single-post-content p {
	--dl-heading-color: var(--dl-body-color);
}

[data-theme="dark"] .sticky-header-wrap {
	border-bottom: 1px solid #222;
}

[data-theme="dark"] .comment-form-group,
[data-theme="dark"] .contact-form-group,
[data-theme="dark"] .post-layout-2,
[data-theme="dark"] .widget-category-list,
[data-theme="dark"] .featured-category,
[data-theme="dark"] .header-menu-wrap li ul,
[data-theme="dark"] .pagination-wrap,
[data-theme="dark"] .post-card,
[data-theme="dark"] .featured-post,
[data-theme="dark"] .post-layout-1 {
	--dl-white-color: #222;
}

[data-theme="dark"] .search-close,
[data-theme="dark"] blockquote,
[data-theme="dark"] .post-layout-2,
[data-theme="dark"] .post-layout-1,
[data-theme="dark"] .featured-post {
	--dl-grey-color: var(--dl-body-color);
}

.widget-subscribe .subscribe-heading,
[data-theme="dark"] .default-btn {
	--dl-body-color: #121212;
}

[data-theme="dark"] .share-icon {
	--dl-white-color: #121212;
	--dl-border-color: #333;
}

[data-theme="dark"] .comment-form-group,
[data-theme="dark"] .contact-form-group,
[data-theme="dark"] .post-wrap-heading {
	--dl-light-grey-color: #333;
}

[data-theme="dark"] .image-post {
	--dl-white-color: #fff;
}

[data-theme="dark"] .contact-form-group {
	--bs-body-color: #121212;
}

[data-theme="dark"] .post-meta li a.date {
	color: var(--dl-body-color);
}

[data-theme="dark"] .post-card .post-card-footer li .comment {
	--dl-grey-color: var(--dl-body-color);
	--dl-bg-light-red: #121212;
}

[data-theme="dark"] .audio-player,
[data-theme="dark"] .audio-player audio::-webkit-media-controls-panel {
	background-color: var(--dl-primary-color);
}

[data-theme="dark"] .copyright-area {
	--dl-light-grey-color: #333;
}

[data-theme="dark"] .comments-meta,
[data-theme="dark"] .comment-area .reply,
[data-theme="dark"] .single-post-navigation,
[data-theme="dark"] .tag-list,
[data-theme="dark"] .widget-category-list,
[data-theme="dark"] .author-widget {
	--dl-grey-color: var(--dl-body-color);
}

[data-theme="dark"] .contact-form-group .form-control,
[data-theme="dark"] .comment-form-group .form-control,
[data-theme="dark"] .widget-category-list li a {
	color: #fff;
}

[data-theme="dark"] .single-post-author .author-info h3 span,
[data-theme="dark"] .pagination-wrap a:hover,
[data-theme="dark"] .pagination-wrap a.active,
[data-theme="dark"] .subscribe-card .subscribe-heading h3 {
	color: #121212;
}

[data-theme="dark"] .scroll-to-top svg,
[data-theme="dark"] .social-list {
	--dl-heading-color: #121212;
}

[data-theme="dark"] .search-close,
[data-theme="dark"] .single-post-navigation li a {
	border: 1px solid #333;
}

[data-theme="dark"] .page-content-wrap {
	background-image: url(../img/page-header-dark.jpg);
}

@media(min-width: 993px) {
	[data-theme="dark"] .header-menu-wrap li li:not(:last-of-type) {
		--dl-border-color: #333;
	}
}

@media (max-width: 992px) {
	#mobile-menu-close {
		color: var(--dl-grey-color);
		border: 1px solid #222;
	}

	[data-theme="dark"] .mobile-navigation-menu {
		background-color: #121212;
	}

	[data-theme="dark"] .mobile-navigation-menu ul li ul,
	[data-theme="dark"] .mobile-navigation-menu .nav-menu,
	[data-theme="dark"] .mobile-navigation-menu ul li:not(:last-of-type)>a {
		border-bottom: 1px solid #222;
	}

	[data-theme="dark"] .mobile-navigation-menu .nav-menu {
		border-top: 1px solid #222;
	}

	[data-theme="dark"] .mobile-navigation-menu ul li ul ul {
		border-top: 1px solid #222;
		border-bottom: none;
	}

	[data-theme="dark"] .mobile-navigation-menu ul li ul ul,
	[data-theme="dark"] .mobile-navigation-menu ul li:last-of-type ul ul {
		border-top: none;
		border-bottom: 1px solid #222;
	}

	[data-theme="dark"] .mobile-navigation-menu ul li:last-of-type ul {
		border-top: 1px solid #222;
	}

	[data-theme="dark"] .mobile-navigation-menu ul li:last-of-type ul li ul {
		border-bottom: 1px solid #222;
	}

	[data-theme="dark"] .menu-right-item {
		--dl-heading-color: var(--dl-body-color);
	}
}

/* custom css add  */
.word-limit {
	font-size: 16px;
	line-height: 1.6;
}

.category-widget ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.category-widget ul li {
	margin-bottom: 8px;
}

.communitye-bg {
	background: var(--dl-primary-color);
}

/* Desktop (default) */
h2.community-top-heading {
	font-size: 75px;
	line-height: 90px;
}

/* Tablet version */
@media (max-width: 991px) {
	h2.community-top-heading {
		font-size: 60px;
		line-height: 72px;
	}
}

/* Mobile version */
@media (max-width: 576px) {
	h2.community-top-heading {
		font-size: 50px;
		line-height: 60px;
	}
}



p.community-top-heading-pare {
	font-size: 20px;
}

.default-btn.text-anim.boder-white-bt {
	border: 2px solid #fff;
}






/* Member Testimonials Container */
.member-testimonials {
	max-width: 900px;
	margin: 30px auto;
	padding: 0 15px;
}

/* List Reset */
.testimonial-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Each Testimonial Item */
.testimonial-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 16px;
}

/* Image Styling */
.testimonial-img img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	/* Makes circle */
	border: 2px solid #f3f3f3ff;
	/* Border around image */
	object-fit: cover;

}

/* Testimonial Content */
.testimonial-content {
	flex: 1;
}

/* Paragraph styling */
.testimonial-content p {
	margin: 0 0 8px 0;
	font-size: 16px;
	line-height: 1.5;
	color: #333;
}

/* Name Styling */
.testimonial-content strong {
	display: block;
	font-weight: 600;
	color: #111;
}


span.author-read a {
	font-weight: 600;
	color: #f52938;
}






/* Horizontal author info: image left, name right */
.author-info-horizontal li:first-child {
	display: flex;
	align-items: center;
	gap: 10px;
	/* Space between image and name */
}

.author-info-horizontal li:first-child img {
	width: 50px;
	/* Adjust image size */
	height: 50px;
	border-radius: 50%;
	/* Circular image */
	object-fit: cover;
	border: 2px solid #ddd;
	/* Optional border */
}

.author-info-horizontal li:first-child span {
	font-size: 14px;
	color: #333;
	/* Text color */
	margin: 0;
	/* Remove margin */
}





.authors-list .author-item {
	background-color: #fff;
	display: inline-block;
	padding: 30px 20px;
	border-radius: 12px;
	/* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
	max-width: 400px;
	width: 100%;
}

.author-images {
	display: flex;
	justify-content: center;
	margin-bottom: 15px;
	position: relative;
}

.author-images img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid #fff;
	object-fit: cover;
	margin-left: -15px;
	/* overlap effect */
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s;
}

.author-images img:first-child {
	margin-left: 0;
}

.author-images img:hover {
	transform: scale(1.2);
	z-index: 10;
}

.author-names {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
}

.author-stats {
	display: flex;
	justify-content: space-around;
	font-size: 14px;
	color: #555;
	flex-wrap: wrap;
	gap: 6px;
}

.authors-list.text-center {
	border: 1px solid #bfbfbf;
	margin: 20px 0;
}

.author-stats span {
	border: 1px solied #000;
	border: 1px solid #e5d17e;
	padding: 2px 20px;
	background-color: #f9e69e;
	font-weight: 500;
}

/* Modal Overlay */

.user-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.6);
	padding-top: 50px;
}

/* Modal Content */

.user-modal-content {
	background-color: #fff;
	margin: auto;
	padding: 20px;
	border-radius: 8px;
	width: 90%;
	max-width: 500px;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
}

/* Close Button */

.close-btn {
	color: #333;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.close-btn:hover {
	color: #f00;
}

/* Modal Title */

.user-modal-content h3 {
	margin-top: 0;
	margin-bottom: 15px;
	text-align: center;
}

/* User List */

.user-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Each User Item */

.user-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px;
	border-radius: 6px;
	transition: background 0.2s;
}

.user-item:hover {
	background-color: #f7f7f7;
}

.user-item img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.user-info strong {
	display: block;
	font-size: 16px;
}

.user-info p {
	font-size: 12px;
	color: #666;
	margin: 2px 0 0 0;
}

.user-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* Image/info left, button right */
	gap: 12px;
	padding: 10px;
	border-radius: 6px;
	transition: background 0.2s;
}

.user-item:hover {
	background-color: #f7f7f7;
}

.user-info {
	display: flex;
	flex-direction: column;
}

.user-item img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.user-info strong {
	font-size: 16px;
}

.user-info p {
	font-size: 12px;
	color: #666;
	margin: 2px 0 0 0;
}

/* Follow button */

.follow-btn {
	padding: 1px 25px;
	border: 1px solid #fae69e;
	/* border-radius: 20px; */
	background-color: #fae69e;
	color: #000000;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s;
}

.follow-btn.following {
	background-color: #fff;
	color: #000000;
}

.follow-btn:hover {
	opacity: 0.8;
}

span.post-palss {
	border: 1px solid #d1d1d1;
	padding: 10px 5px;
	font-size: 14px;
	font-weight: 500;
	background: #ffffff;
}








/* Modal Overlay */
.signin-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

/* Modal Box */
.signin-modal-box {
	background: #fff;
	width: 100%;
	max-width: 420px;
	padding: 30px;
	border-radius: 10px;
	position: relative;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
	animation: modalFade 0.3s ease;
}

/* Close Button */
.modal-close {
	position: absolute;
	top: 12px;
	right: 15px;
	background: none;
	border: none;
	font-size: 26px;
	cursor: pointer;
}

/* Content */
.signin-modal-box h3 {
	margin-bottom: 8px;
	font-size: 22px;
}

.modal-subtitle {
	font-weight: 600;
	margin-bottom: 10px;
}

.modal-text {
	font-size: 14px;
	color: #555;
	margin-bottom: 20px;
}

/* Form */
.signin-form label {
	font-size: 14px;
	margin-bottom: 6px;
	display: block;
}

.signin-form input {
	width: 100%;
	padding: 10px;
	border-radius: 6px;
	border: 1px solid #ccc;
	margin-bottom: 15px;
}

.otp-btn {
	width: 100%;
	padding: 10px;
	border: none;
	background: #ff6600;
	color: #fff;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
}

.otp-btn:hover {
	background: #ff4500;
}

/* Animation */
@keyframes modalFade {
	from {
		opacity: 0;
		transform: translateY(-15px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile */
@media (max-width: 480px) {
	.signin-modal-box {
		margin: 0 15px;
	}
}

.otp-actions {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}

.back-btn,
.resend-btn {
	background: none;
	border: none;
	color: #ff6600;
	font-size: 14px;
	cursor: pointer;
}

.back-btn:hover,
.resend-btn:hover {
	text-decoration: underline;
}






.profile-form select {
	width: 100%;
	padding: 10px;
	border-radius: 6px;
	border: 1px solid #ccc;
	margin-bottom: 15px;
}

.checkbox {
	font-size: 13px;
	margin-bottom: 15px;
}

.checkbox input {
	margin-right: 6px;
}

.attempts {
	display: block;
	font-size: 13px;
	margin: 8px 0 15px;
	color: #777;
}


/* Text Input Styling */
input[type="text"],
input[type="number"],
input[type="email"] {
	width: 100%;
	padding: 10px 12px;
	border-radius: 6px;
	border: 1px solid #ccc;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	margin-bottom: 15px;
}
/* Wrapper for icon */


/* Focus State */
input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus {
	border-color: #ff6600;
	box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.15);
}

/* Placeholder Style */
input::placeholder {
	color: #999;
	font-size: 13px;
}



/* Header layout support */
.menu-right-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Writing button */
.start-writing {
	margin-right: auto;
}

/* Profile Icon */
.profile-logon {
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
}




/* Dropdown */
.profile-dropdown {
	position: absolute;
	top: 70px;
	width: 200px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
	display: none;
	z-index: 9999;
}

.profile-dropdown.show {
	display: block;
}

.profile-menu {
	list-style: none;
	padding: 5px 0;
	margin: 0;
}

.profile-menu li a {
	display: block;
	padding: 10px 16px;
	font-size: 14px;
	text-decoration: none;
	color: #333;
}

.profile-menu li a:hover {
	background: #f5f5f5;
}

.profile-menu li.gaping-list {
	margin-top: -5px;
}

.profile-menu li.gaping-list:not(:last-child) {
	border-bottom: 1px solid #ddd;
}

.profile-menu .logout a {
	color: #ff4500;
	font-weight: 600;
}



/* Footer inside dropdown */
.site-links {
	border-top: 1px solid #eee;
	padding: 10px 16px;
	font-size: 12px;
	color: #ffffff;
	line-height: 0.9;
	background-color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.profile-dropdown {
		right: 10px;
		width: 50%;
	}

	.start-writing {
		font-size: 14px;
	}
}



/* =============================== */













/* Slider Section */
.story-slider {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
	background: #000;
	/* fallback */
}

.slider-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

h2.slider-heading {
	font-size: 50px;
	margin-bottom: 10px;
	line-height: 55px;
}

/* Images container */
.slider-images {
	display: flex;
	height: 100%;
	transition: transform 0.5s ease-in-out;
}

.slide {
	min-width: 100%;
	height: 100%;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Fixed center content */
.slider-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-align: center;
	max-width: 700px;
	z-index: 2;
	padding: 20px;
	background: rgba(0, 0, 0, 0.4);
	/* optional transparent background */
	border-radius: 10px;
}

.slider-content h2 {
	font-size: 50px;
	margin-bottom: 10px;
	color: #fff;
}

.slider-content p {
	font-size: 22px;
	margin-bottom: 15px;
}

.btn-start {
	display: inline-block;
	padding: 10px 20px;
	background: #fae69e;
	color: #100000;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s;
	font-weight: 500;

}

.btn-start:hover {
	background: #ff3300;
}

/* Arrows */
.prev,
.next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 40px;
	color: #fff;
	background: rgba(0, 0, 0, 0.4);
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	cursor: pointer;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}

.prev {
	left: 20px;
}

.next {
	right: 20px;
}

.prev:hover,
.next:hover {
	background: rgba(0, 0, 0, 0.7);
}

/* ---------- RESPONSIVE ENHANCEMENTS ---------- */

/* Tablets */
@media (max-width: 991px) {
	.story-slider {
		height: 420px;
	}

	.slider-content {
		max-width: 85%;
		padding: 18px;
	}

	.slider-content h2 {
		font-size: 26px;
	}

	.slider-content p {
		font-size: 15px;
	}

	.prev,
	.next {
		width: 44px;
		height: 44px;
		font-size: 34px;
	}
}

/* Mobile Devices */
@media (max-width: 767px) {
	.story-slider {
		height: 380px;
	}

	.slider-content {
		max-width: 92%;
		padding: 16px;
		border-radius: 8px;
	}

	.slider-content h2 {
		font-size: 22px;
		line-height: 1.3;
	}

	.slider-content p {
		font-size: 14px;
		line-height: 1.5;
		margin-bottom: 10px;
	}

	.btn-start {
		padding: 8px 16px;
		font-size: 14px;
	}

	.prev,
	.next {
		width: 40px;
		height: 40px;
		font-size: 28px;
	}

	.prev {
		left: 10px;
	}

	.next {
		right: 10px;
	}
}

/* Small Phones */
@media (max-width: 480px) {
	.story-slider {
		height: 340px;
	}

	.slider-content {
		padding: 14px;
	}

	.slider-content h2 {
		font-size: 20px;
	}

	.slider-content p {
		font-size: 13px;
	}

	.btn-start {
		font-size: 13px;
	}
}







/* === FADE SLIDER OVERRIDE === */
.slider-images {
	position: relative;
	height: 100%;
}

/* Override flex sliding */
.slider-images {
	display: block;
	transition: none;
}

.slider-images .slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1.8s ease-in-out;
	z-index: 0;
}

.slider-images .slide.active {
	opacity: 1;
	z-index: 1;
}

/* Smooth fade on buttons */
.prev,
.next {
	transition: background 0.3s ease, transform 0.3s ease;
}

.prev:hover,
.next:hover {
	transform: scale(1.1);
}







/* =============edit profile page css============= */
.author-thumb {
	position: relative;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid #ddd;
}

.author-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Camera icon */
.camera-icon {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: 0.3s;
}

.author-thumb:hover .camera-icon {
	opacity: 1;
}

button.write-button {
	border: 1px solid #625832;
	padding: 5px 10px;
}

/* Center the button */
.button-wrapper {
	text-align: center;
	/* centers inline/block elements inside */
	margin: 20px 0;
	/* optional spacing */
}

/* Button styling */
.edit-profile-btn {
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 500;
	border: none;
	border-radius: 0px;
	background-color: #f9e69e;
	border: 1px solid #e5d17e;
	color: #000000;
	cursor: pointer;
	transition: background 0.3s;
}

.edit-profile-btn:hover {
	background-color: #d6bd5b;
	transition: 0.3s;
}



.blog-authors-editor .container {
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;

}

.edit-profile-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.edit-profile-form label {
	font-weight: 500;
}

.edit-profile-form input,
.edit-profile-form select,
.edit-profile-form textarea {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 14px;
	width: 100%;
	box-sizing: border-box;
}

.edit-profile-form textarea {
	resize: vertical;
	min-height: 80px;
}



.form-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 10px;
}

.form-buttons button {
	padding: 10px 18px;
	border: none;
	border-radius: 0px;
	cursor: pointer;
	font-weight: 500;
	transition: 0.3s;
	border: 1px solid;
}

.update-btn {
	background: #ff6600;
	color: #fff;
}

.update-btn:hover {
	background: #c95203;
}

.cancel-btn {
	background-color: #030303;
	color: #fff;
}

.cancel-btn:hover {
	background-color: #707070;
}

.request-delete-btn {
	background-color: #ffffff;
	color: #555555;
	border: 1px solid #000;
}

.request-delete-btn:hover {
	background-color: var(--dl-primary-color);
	border: 1px solid #000;
}

.request-feature-btn {
	background-color: #ffffff;
	color: #555555;
	border: 1px solid #000;
}

.request-feature-btn:hover {
	background-color: var(--dl-primary-color);
	border: 1px solid #000;
}

/* posting css */

.container.mepage {
	max-width: 1920px;
	/* margin: 30px 0px 10px 0px; */
	background: #fff;
	/* padding: 30px; */
	border-radius: 8px;
	/* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
}

.single-post-content {
	max-width: 1920px;
	/* control content width */
	margin: 0 auto;
	/* center horizontally */
}

.single-post-content.singal-blog-post {
	max-width: 100% !important;
	margin: 0 auto !important;
}



/* Title */
.mepage-title {
	text-align: center;
	margin-bottom: 20px;
}

/* Info text */
.mepage-info {
	font-size: 14px;
	color: #555;
	margin-bottom: 20px;
}

/* Labels */
.mepage-label {
	display: block;
	font-weight: bold;
	margin-top: 15px;
}

/* Inputs */
.mepage-input,
.mepage-textarea,
.mepage-file {
	width: 100%;
	padding: 10px;
	margin-top: 5px;
	border-radius: 4px;
	border: 1px solid #ccc;
	font-size: 16px;
	box-sizing: border-box;
}

/* Textarea */
.mepage-textarea {
	min-height: 150px;
	resize: vertical;
}

/* Comment toggle */
.comment-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 15px;
	font-size: 16px;
}

.comment-toggle input {
	width: 16px;
	height: 16px;
	cursor: pointer;
}

/* Terms */
.terms-label {
	display: block;
	margin-top: 20px;
	font-size: 14px;
	cursor: pointer;
}

.terms-label a {
	color: #007bff;
	font-weight: bold;
	text-decoration: underline;
}

/* Comments section */
.comments-section {
	margin-top: 20px;
}

.comments-text {
	font-size: 14px;
	color: #555;
}

/* Feedback */
.feedback-section {
	margin-top: 15px;
}

/* Buttons */
.buttons {
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-top: 25px;
	flex-wrap: wrap;
}

/* Base button */
.btn {
	padding: 12px 48px;
	font-weight: 600;
	border-radius: 0px;
	cursor: pointer;
	font-size: 16px;
	transition: all 0.25s ease;
	min-height: 44px;
	/* touch-friendly */
	white-space: nowrap;
}

/* Draft button */
.btn-draft {
	background-color: #6c757d;
	color: #fff;
	border: 1px solid #6c757d;
}

.btn-draft:hover {
	background-color: transparent;
	color: #6c757d;
}

.btn-draft:active {
	transform: scale(0.97);
}

/* Publish button */
.btn-publish {
	background: #ff6600;
	color: #fff;
	border: 1px solid #ff6600;
}

.btn-publish:hover {
	background: #e65c00;
	border-color: #e65c00;
}

.btn-publish:active {
	transform: scale(0.97);
}

/* =====================
   MOBILE RESPONSIVE
===================== */
@media (max-width: 768px) {
	.buttons {
		flex-direction: column;
	}

	.btn {
		width: 100%;
		padding: 14px;
		font-size: 15px;
	}
}


/* impact page css start */


/* ===== Impact Page Scope ===== */
.voj-impact-page section {
	padding: 60px 0px;
	margin: auto;
}

/* Headings */
.voj-impact-page h2 {
	margin-bottom: 20px;
	color: #000;
}

/* Buttons */
.voj-btn {
	display: inline-block;
	padding: 12px 25px;
	text-decoration: none;
	border-radius: 4px;
	font-weight: bold;
}

.voj-primary {
	background: #ffb703;
	color: #000;
	border: 1px solid #ffb703;
}

.voj-primary:hover {
	background: #fff;
}

/* Cards */
.voj-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

section.impact-in-jk {
	padding: 47px 50px;
}

.voj-card {
	background: #fff;
	padding: 25px;
	border-radius: 6px;
	box-shadow: 0 2px 8px rgb(0 0 0 / 18%);
}

/* Impact Section */
.voj-impact {
	background: #f9e69e3d;
}

/* Testimonials */
.voj-testimonials blockquote {
	background: #fff;
	padding: 20px;
	margin-bottom: 20px;
	border-left: 5px solid #f9e69e;
}

.voj-testimonials span {
	display: block;
	margin-top: 10px;
	font-weight: bold;
}

/* Join Section */
.voj-join {
	text-align: center;
	background: #f9e69e;
	color: #000;
}

/* impact page css end */

/* our methodology page start */
.single-post-content.methodology-page-view {
	margin: 0 auto !important;
	max-width: none !important;
}

/* our methodology page end*/


/* singal page image and anme and date  */

.unique-post-author-wrapper .post-author {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
	cursor: pointer;
}

.unique-post-author-wrapper .author-avatar img {
	border-radius: 50%;
	width: 48px;
	height: 48px;
	object-fit: cover;
}

.unique-post-author-wrapper .author-name a {
	font-weight: bold;
	text-transform: capitalize;
	color: #111;
	text-decoration: none;
}

.unique-post-author-wrapper .author-name a:hover {
	color: #001529;
}

.unique-post-author-wrapper .post-meta {
	font-size: 0.75rem;
	color: #6b7280;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.unique-post-author-wrapper .post-meta .dot {
	margin: 0 0.25rem;
}

.unique-post-author-wrapper .post-categories a {
	text-decoration: none;
}

.unique-post-author-wrapper .post-categories a:hover {
	text-decoration: underline;
	color: #6b7280;
}

.unique-post-author-wrapper .singal-post-img-to {
	overflow: hidden !important;
	padding-right: 6px !important;
}


/* scroll to dropdown profile icon click */

/* Mobile Sticky Header */
/* .bottom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    background: #fff; 
}


.bottom-header.hide {
    transform: translateY(-100%);
}


.bottom-header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}  
 /* Default header (before 10% scroll) */
.bottom-header {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background: #fff;
	transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

/* Activated after 10% scroll */
.bottom-header.fixed {
	position: fixed;
	top: 0;
	left: 0;
}

/* Hide on scroll down */
.bottom-header.hide {
	transform: translateY(-100%);
}

/* Shadow after scroll */
.bottom-header.scrolled {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}







/* author page */

.author-posts-page {
	width: 100%;
}

/* Container */
.author-posts-page .author-container {
	width: 100%;
	margin: 0 auto 10px;
	border: 1px solid #eee;
	padding: 10px;
	box-sizing: border-box;
}

/* List */
.author-posts-page .author-post-list {
	border-top: 0;
}

/* Item */
.author-posts-page .author-post-item {
	position: relative;
	padding: 5px 0;
}

/* Header */
.author-posts-page .author-post-header {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	flex-wrap: wrap;
}

/* Author Image */
.author-posts-page .author-image {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid #ddd;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.author-posts-page .author-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Text */
.author-posts-page .author-name {
	font-weight: 600;
}

.author-posts-page .post-category {
	text-decoration: underline;
}

/* Body */
.author-posts-page .author-post-body {
	display: flex;
	gap: 24px;
	margin-top: 12px;
}

/* Thumbnail */
.author-posts-page .author-post-thumb {
	width: 180px;
	aspect-ratio: 3 / 2;
	flex-shrink: 0;
}

.author-posts-page .author-post-thumb img {
	width: 100%;
	height: 100%;
	border: 1px solid #ddd;
	object-fit: cover;
}

/* Content */
.author-posts-page .author-post-content {
	width: calc(100% - 180px);
}

.author-posts-page .author-post-title {
	font-size: 20px;
	font-weight: 700;
	display: block;
	line-height: 1.3;
}

.author-posts-page .author-post-excerpt {
	margin-top: 8px;
	color: #666;
	font-size: 14px;
}

/* Meta */
.author-posts-page .author-post-meta {
	margin-top: 6px;
}

.author-posts-page .post-date {
	font-size: 14px;
	color: #555;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 6px;
}

.author-posts-page .date-icon {
	font-size: 14px;
}

.author-posts-page .date-text {
	font-weight: 500;
}

/* Overlay */
.author-posts-page .post-overlay-link {
	position: absolute;
	inset: 0;
}

/* Keep inner links clickable */
.author-posts-page .author-post-item a:not(.post-overlay-link) {
	position: relative;
	z-index: 2;
}

/* ===============================
   TABLET (≤ 991px)
================================ */

@media (max-width: 991px) {

	.author-posts-page .author-post-title {
		font-size: 18px;
	}

	.author-posts-page .author-post-excerpt {
		font-size: 13px;
	}

	.author-posts-page .author-post-thumb {
		width: 160px;
	}

	.author-posts-page .author-post-content {
		width: calc(100% - 160px);
	}

	.page-header .page-content h2 {
		margin-top: 25px;
	}
}

/* ===============================
   MOBILE (≤ 767px)
================================ */

@media (max-width: 767px) {

	.author-posts-page .author-post-body {
		flex-direction: column;
		gap: 12px;
	}

	.author-posts-page .author-post-thumb {
		width: 100%;
		aspect-ratio: 16 / 9;
	}

	.author-posts-page .author-post-content {
		width: 100%;
	}

	.author-posts-page .author-post-title {
		font-size: 17px;
	}

	.author-posts-page .post-date {
		font-size: 12px;
		padding: 3px 8px;
	}

	.page-header .page-content h2 {
		margin-top: 25px;
	}
}

/* ===============================
   SMALL MOBILE (≤ 480px)
================================ */

@media (max-width: 480px) {

	.author-posts-page .author-post-header {
		font-size: 13px;
	}

	.author-posts-page .author-image {
		width: 32px;
		height: 32px;
	}

	.author-posts-page .author-post-title {
		font-size: 16px;
	}

	.author-posts-page .author-post-excerpt {
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
}

.page-header .page-content h2 {
	margin-top: 25px;
}

/* autho page css start */
/* Full-width background and centering content */
/* .profile-header-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 80px 0px 30px 0px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
.profile-header-bg.profile-bg-background{
    background-color: #ceb178;
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
} */
.profile-header-bg {
	width: 100%;
	padding: 80px 0 30px 0;
	margin: 20px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;

	/* Liquid gradient animation */
	background: linear-gradient(270deg, #627264, #A1CDA8, #B5DFCA, #C5E7E2, #AD9BAA);
	background-size: 1000% 1000%;
	animation: liquidGradient 15s ease infinite;
}

/* Fade overlay */
.profile-header-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	/* soft fade overlay */
	animation: fadeOverlay 10s ease-in-out infinite alternate;
	pointer-events: none;
}

/* Floating particles */
.profile-header-bg::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	top: 10%;
	left: 20%;
	box-shadow:
		50px 80px rgba(255, 255, 255, 0.3),
		150px 120px rgba(255, 255, 255, 0.2),
		300px 50px rgba(255, 255, 255, 0.3),
		500px 150px rgba(255, 255, 255, 0.4);
	animation: floatParticles 20s linear infinite;
	pointer-events: none;
}

@keyframes liquidGradient {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@keyframes fadeOverlay {
	0% {
		opacity: 0.1;
	}

	50% {
		opacity: 0.3;
	}

	100% {
		opacity: 0.1;
	}
}

@keyframes floatParticles {
	0% {
		transform: translateY(0) translateX(0);
	}

	50% {
		transform: translateY(-50px) translateX(30px);
	}

	100% {
		transform: translateY(0) translateX(0);
	}
}


/* Container to center everything vertically and horizontally */
.profile-header-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Profile Image Styling */
.profile-header-image img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	/* circular view */
	object-fit: cover;
	border: 5px solid #fff;
	/* optional white border around image */
	margin-bottom: 20px;
}

/* Profile Name */
.profile-header-name h2 {
	color: #fff;
	/* or any color that contrasts with background */
	font-size: 28px;
	margin-bottom: 15px;
}

/* Posts Button */
.author-stats .posts-button {
	display: inline-block;
	padding: 10px 70px;
	font-size: 16px;
	text-decoration: none;
	color: #fff;
	background-color: #6d5e3fea;
	/* blue button */
	border: 1px solied #ffffff;
	border-radius: 0px;
	transition: background 0.3s;
}

.author-stats .posts-button:hover {
	background-color: #96825aea;
	border: 1px solied #ffffff;
	transition: 0.3s;
}

/* Post view single view start */

.yka-disclaimer {
	border-left: 4px solid #f04e23;
	padding: 12px 16px;
	margin: 30px 0;
	background-color: #fafafa;
	font-size: 14px;
	color: #333;
}

.yka-disclaimer p {
	margin: 0 0 8px 0;
	line-height: 1.6;
}

/* Comment Link */

.comment-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: #777;
	font-size: 13px;
	transition: color 0.3s ease, transform 0.3s ease;
}

/* Icon Animation */

.comment-link i {
	font-size: 14px;
	color: #f04e23;
	animation: commentPulse 2s infinite;
}

/* Hover Effect */

.comment-link:hover {
	color: #f04e23;
	transform: translateX(4px);
}

.comment-link:hover i {
	animation: commentBounce 0.6s;
}

/* Pulse Animation */

@keyframes commentPulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.15);
		opacity: 0.85;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* Bounce on Hover */

@keyframes commentBounce {
	0% {
		transform: translateY(0);
	}

	30% {
		transform: translateY(-3px);
	}

	60% {
		transform: translateY(2px);
	}

	100% {
		transform: translateY(0);
	}
}

.comment-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	display: none;
	z-index: 9998;
}

.comment-overlay.active {
	display: block;
}

.comment-sidebar {
	position: fixed;
	top: 0;
	right: -420px;
	/* hidden by default */
	width: 420px;
	/* uncommented for fixed width */
	height: 100vh;
	/* full viewport height */
	background: #fff;
	z-index: 9999;
	transition: right 0.3s ease;
	padding: 20px;
	box-shadow: -4px 0 10px rgb(0 0 0 / 5%);

	display: flex;
	flex-direction: column;
	overflow-y: auto;
	/* enable vertical scrolling */
	-webkit-overflow-scrolling: touch;
	/* smooth scrolling on mobile */
}

/* Mobile & Tablet Responsive */
@media (max-width: 1024px) {
	.comment-sidebar {
		width: 100%;
		/* full width */
		right: -100%;
		/* hidden by default */
		padding: 15px;
		box-shadow: 0 0 10px rgb(0 0 0 / 10%);
	}
}

.comment-sidebar.active {
	right: 0;
}

.comment-user {
	display: flex;
	gap: 12px;
	margin-bottom: 15px;
}

.user-img {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	object-fit: cover;
}




.comment-date {
	font-size: 12px;
	color: #777;
}

.comment-title {
	font-size: 14px;
	margin-bottom: 8px;
}

textarea {
	width: 100%;
	height: 80px;
	padding: 10px;
	resize: none;
}

.sidebar-actions {
	margin-top: 10px;
}

.respond-btn {
	background: #ff4500;
	color: #fff;
	padding: 8px 16px;
	border: none;
	cursor: pointer;
}

.cancel-btn {
	background: transparent;
	border: none;
	margin-left: 10px;
	cursor: pointer;
}

.cancel-btn.cancel-button {
	background: transparent;
	border: 1px solid #303030;
	cursor: pointer;
	padding: 6px 20px;
	border-radius: 0px;
	font-size: 14px;
	font-weight: 500;
	color: #666;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

/* Hover */
.cancel-btn.cancel-button:hover {
	background-color: #f5f5f5;
	color: #000;
	border-color: #e0e0e0;
}

/* Active */
.cancel-btn.cancel-button:active {
	transform: scale(0.96);
}

/* Focus (accessibility) */
.cancel-btn.cancel-button:focus-visible {
	outline: 2px solid #cfcfcf;
	outline-offset: 2px;
}

/* Optional danger style */
.cancel-btn.cancel-button.danger {
	color: #d32f2f;
}

.cancel-btn.cancel-button.danger:hover {
	background-color: #fdeaea;
	border-color: #f5c2c2;
}





/* Posted Comment */

.comment-item {
	margin-top: 20px;
	padding: 12px;
	border: 1px solid #eee;
	position: relative;
}

.comment-actions {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}

.comment-menu {
	display: none;
	position: absolute;
	right: 0;
	top: 20px;
	background: #fff;
	border: 1px solid #ddd;
}

.comment-menu span {
	display: block;
	padding: 6px 10px;
	cursor: pointer;
}

.comment-menu span:hover {
	background: #f5f5f5;
}

.comment-edit-text {
	width: 100%;
	min-height: 80px;
	padding: 8px;
	font-size: 14px;
	border: 1px solid #ddd;
	border-radius: 6px;
	resize: vertical;
}

.comment-edit-actions {
	margin-top: 6px;
	display: flex;
	gap: 8px;
}

.yka-disclaimer p {
	font-size: 16px;
	color: #505050;
}

.comment-link.blog-post-eview i {
	font-size: 22px;
	color: #f04e23;
	animation: commentPulse 2s infinite;
}

/* Post view single view end */


/* Post view left and right view share and comment button start */
.post-action-bar {
	display: flex;
	justify-content: space-between;
	/* Left / Right separation */
	align-items: center;
	padding: 1px 5px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
	flex-wrap: wrap;
	/* Responsive wrap */
}

.post-actions-left,
.post-actions-right {
	display: flex;
	align-items: center;
	gap: 12px;
}

.post-actions-left {
	flex: 1;
	/* Left takes available space */
}

.post-actions-right {
	flex-shrink: 0;
	/* Right stays compact */
}

/* Buttons / Links */
.post-action,
.comment-link {
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	color: #666;
	text-decoration: none;
}

.post-action:hover,
.comment-link:hover {
	color: #000;
}

/* Comment count */
.comment-count {
	font-size: 13px;
}

/* Responsive for Mobile */
@media (max-width: 600px) {
	.post-action-bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.post-actions-right {
		align-self: flex-end;
		/* Keep share button right on small screens */
	}
}


/* Popup Overlay */
.share-popup {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: rgba(0, 0, 0, 0.6);
	transition: opacity 0.3s ease;
}

/* Popup Content */
.share-popup-content {
	background: #fff;
	margin: 8% auto;
	padding: 20px 25px;
	width: 320px;
	border-radius: 12px;
	position: relative;
	text-align: center;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	font-family: Arial, sans-serif;
}

/* Title */
.share-popup-content h4 {
	margin-bottom: 20px;
	font-size: 18px;
	color: #333;
}

/* Close button */
.close-share {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
	color: #555;
}

.close-share:hover {
	color: #000;
}

/* Share buttons container */
.share-options {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Copy Link Button (full width) */
.share-copy {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	background: #f7f7f7;
	border: 1px solid #ddd;
	border-radius: 6px;
	cursor: pointer;
	font-size: 15px;
	color: #333;
	margin-bottom: 10px;
	transition: all 0.2s ease;
}

.share-copy i {
	font-size: 18px;
	width: 20px;
	text-align: center;
}

.share-copy:hover {
	background: #e6f0ff;
	border-color: #a3c4ff;
	color: #0b66ff;
}

/* Other share buttons in grid (2x2) */
.share-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

/* Individual share button */
.share-option {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 8px;
	background: #f7f7f7;
	border: 1px solid #ddd;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.2s ease;
}

.share-option i {
	font-size: 16px;
}

.share-option:hover {
	background: #e6f0ff;
	border-color: #a3c4ff;
	color: #0b66ff;
}



/* Responsive */
@media (max-width: 400px) {
	.share-popup-content {
		width: 90%;
		margin: 15% auto;
	}

	.share-grid {
		grid-template-columns: 1fr;
		/* stack vertically on mobile */
	}
}

/* Post view left and right view share and comment button end */

/* home page comment icon and comment start */
.post-meta-comment .comment-icon {
	font-size: 14px;
	color: #666;
}

.post-meta-comment .comment-count {
	font-size: 12px;
	color: #555;
	text-decoration: none;
}

.post-meta-comment .comment-count:hover {
	color: #000;
}


.post-meta {
	position: relative;
}

.post-meta-comment {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	gap: 6px;
}

.post-meta-comment .comment-link {
	display: flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
}

.post-meta-comment .comment-link:hover .comment-icon,
.post-meta-comment .comment-link:hover .comment-count {
	color: #000;
}

/* home page comment icon and comment end */


span.vojh-blog-comments a.uf-blog-comments {
	color: #666666;
}

.uf-blog-comments {
	color: #666666;
	text-decoration: none;
	cursor: pointer;
	font-size: 14px;
}


/* request profile deletion  */

.rpd-section {
	padding: 40px 16px;
}

.rpd-container {
	max-width: 680px;
	margin: 0 auto;
	background: #ffffff;
	padding: 32px;
	border-radius: 14px;
}

/* Header */
.rpd-header {
	margin-bottom: 28px;
}

.rpd-title {
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 10px;
	color: #111;
}

.rpd-description {
	font-size: 15px;
	line-height: 1.6;
	color: #555;
}

/* Form */
.rpd-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.rpd-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.rpd-label {
	font-size: 16px;
	font-weight: 600;
	color: #222;
}

/* Inputs */
.rpd-input,
.rpd-textarea {
	width: 100%;
	padding: 12px 14px;
	font-size: 14px;
	border-radius: 8px;
	border: 1px solid #dcdcdc;
	outline: none;
	transition: border 0.2s ease, box-shadow 0.2s ease;
}

.rpd-input:focus,
.rpd-textarea:focus {
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Submit button */
.rpd-submit-btn {
	margin-top: 10px;
	background: #2563eb;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	padding: 14px;
	border: none;
	border-radius: 0px;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.15s ease;
}

.rpd-submit-btn:hover {
	background: #1d4ed8;
	transform: translateY(-1px);
}

@media (min-width: 992px) {
	.scrolled .bottom-header {
		position: fixed;
		z-index: 99999;
		width: 100%;
		top: 0;
		left: 0;
	}
}

/* Responsive */

@media (max-width: 600px) {
	.rpd-container {
		padding: 24px;
	}

	.rpd-title {
		font-size: 22px;
	}
}


/* search list page css start */

/* Search Container */
#uf-search-feed {
	margin-top: 30px;
	max-width: 900px;
	width: 100%;
}

/* Tab Content Areas */
.uf-tab-content-box {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 15px;
}

/* Search Items */
.uf-search-item {
	width: 100%;
	padding: 12px 15px;
	border-radius: 8px;
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
}

.uf-search-item:hover {
	background: #e9ecef;
	transform: translateY(-2px);
}

.uf-search-title {
	font-weight: 600;
	color: #2c3e50;
	text-decoration: none;
	display: block;
	font-size: 16px;
}

.uf-search-title:hover {
	color: #3498db;
}

/* Horizontal Category Buttons */
.uf-categories-container {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 10px 0;
}

.uf-category-btn {
	padding: 8px 16px;
	border-radius: 20px;
	background: #3498db;
	color: white;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	white-space: nowrap;
}

.uf-category-btn:hover {
	background: #2980b9;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Horizontal Tabs */
.uf-horizontal-tabs {
	display: flex;
	justify-content: center;
	gap: 5px;
	margin: 20px 0;
	flex-wrap: wrap;
}

.uf-tab-btn {
	padding: 6px 25px;
	background: #f8f9fa;
	border: 2px solid #e9ecef;
	border-radius: 0px;
	cursor: pointer;
	font-weight: 500;
	color: #495057;
	transition: all 0.3s ease;
	white-space: nowrap;
	margin: 3px;
}

.uf-tab-btn.active {
	background: #3498db;
	color: white;
	border-color: #3498db;
	box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

.uf-tab-btn:hover:not(.active) {
	background: #e9ecef;
	border-color: #dee2e6;
}

.uf-no-results {
	text-align: center;
	width: 100%;
	color: #888;
	padding: 40px 20px;
	font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.uf-horizontal-tabs {
		justify-content: center;
		overflow-x: auto;
		padding-bottom: 10px;
	}

	.uf-tab-btn {
		padding: 8px 20px;
		font-size: 14px;
		flex-shrink: 0;
	}

	.uf-categories-container {
		justify-content: center;
	}

	.uf-category-btn {
		padding: 6px 12px;
		font-size: 13px;
	}

	.uf-search-item {
		padding: 10px;
	}
}




.blog-card {
	display: flex;
	gap: 20px;
	border: 1px solid #e9ecef;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-bottom: 20px;
}

.blog-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.blog-card-image img {
	width: 250px;
	height: 100%;
	object-fit: cover;
	display: block;
}

.blog-card-content {
	flex: 1;
	padding: 15px 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.blog-card-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.author-img img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.author-meta .author-name {
	font-weight: 600;
	color: #2c3e50;
	margin-right: 10px;
	text-decoration: none;
}

.author-meta .blog-category {
	font-size: 14px;
	color: #888;
	text-decoration: none;
}

.blog-card-body .blog-title {
	font-size: 20px;
	font-weight: 700;
	color: #2c3e50;
	text-decoration: none;
	margin-bottom: 8px;
	display: block;
}



.blog-card-body .blog-excerpt {
	font-size: 15px;
	color: #555;
}

.blog-card-footer {
	display: flex;
	gap: 15px;
	font-size: 14px;
	color: #888;
	margin-top: 10px;
}

.blog-card-footer a {
	color: #888;
	text-decoration: none;
}

.blog-card-footer a:hover {
	color: #3498db;
}

/* Responsive: Stack vertically on small screens */
@media (max-width: 768px) {
	.blog-card {
		flex-direction: column;
	}

	.blog-card-image img {
		width: 100%;
		height: 200px;
	}
}






/* Container */
.ufsr-author-card {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	padding: 16px 20px;
	max-width: 100%;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
	margin-bottom: 10px;
}

.ufsr-author-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Image */
.ufsr-author-img-container {
	flex-shrink: 0;
	margin-right: 16px;
}

.ufsr-author-img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
	transition: transform 0.2s ease;
}

.ufsr-author-card:hover .ufsr-author-img {
	transform: scale(1.05);
}

/* Info */
.ufsr-author-info {
	display: flex;
	flex-direction: column;
}

.ufsr-author-name a {
	font-size: 18px;
	color: #111;
	text-decoration: none;
	font-weight: 600;
}

.ufsr-author-name a:hover {
	color: #007BFF;
}

.ufsr-author-handle a {
	font-size: 14px;
	color: #555;
	text-decoration: none;
	margin-top: 2px;
}

.ufsr-author-handle a:hover {
	color: #007BFF;
}

.ufsr-author-bio {
	font-size: 14px;
	color: #666;
	margin-top: 6px;
	line-height: 1.4;
}




/* Container */
.ufcat-category-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 10px 0;
}

/* Category Buttons */
.ufcat-category-btn {
	display: inline-block;
	padding: 8px 16px;
	background-color: #fff;
	/* white box */
	color: #333;
	/* default text color */
	text-decoration: none;
	border-radius: 0px;
	border: 3px solid rgba(0, 0, 0, 0.05);
	/* underline effect */
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.ufcat-category-btn:hover {
	color: #007BFF;
	/* hover text color */
	border-bottom: 3px solid #007BFF;
	/* hover underline */
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#uf-categories {
	width: 100%;
	padding: 12px 15px;
	border-radius: 8px;
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
}

/* search list page css end */

.author-avatar img {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	object-fit: cover;
}


/* Teams Page */
/* Internal CSS */
.team-section {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.team-card {
	background: white;
	border-radius: 15px;
	padding: 25px;
	margin-bottom: 0px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-img-container {
	text-align: center;
	margin-bottom: 20px;
}

.team-img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 50%;
	border: 5px solid #e9ecef;
}

.team-name {
	font-size: 1.4rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 5px;
}

.team-designation {
	color: #3498db;
	font-weight: 600;
	font-size: 0.95rem;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.team-content {
	color: #7f8c8d;
	line-height: 1.6;
	margin-bottom: 20px;
	font-size: 0.95rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	/* number of lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f1f8ff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #3498db;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1.1rem;
}

.social-icon:hover {
	background: #3498db;
	color: white;
	transform: scale(1.1);
}

.section-title {
	text-align: center;
	margin-bottom: 30px;
	margin-top: 35px;
}

.section-title h2 {
	color: #2c3e50;
	font-weight: 800;
	margin-bottom: 15px;
}

.section-title p {
	color: #7f8c8d;
	max-width: 600px;
	margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.team-card {
		margin-bottom: 25px;
	}

	.team-img {
		width: 110px;
		height: 110px;
	}
}

@media (max-width: 768px) {
	.team-section {
		padding: 60px 0;
	}

	.team-card {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}

	.section-title h2 {
		font-size: 1.8rem;
	}
}

@media (max-width: 576px) {
	.team-img {
		width: 100px;
		height: 100px;
	}

	.team-name {
		font-size: 1.3rem;
	}

	.team-content {
		font-size: 0.9rem;
	}
}

.team-name,
.team-designation {
	text-align: center;
}

.team-name {
	margin-bottom: 2px;
}

.team-designation {
	margin-bottom: 10px;
}


