:root {
	--primary-font: "Poppins", sans-serif;
	--body-font: "Poppins", sans-serif;
	--primary-color: #114fa0;
	--heading-color: #101010;
	--body-color: #666;
	--white-color: #ffffff;
	--grey-color: #dddddd;
	--bg-white: #ffffff;
	--bg-dark: #092d67;
	--bg-grey: #f7f7f7;
	--box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 9%);
	--transition: all 0.5s cubic-bezier(.165, .85, .45, 1);
}

/*Smooth Scroll*/
html.lenis,
html.lenis body {
	height: auto;
	overflow-x: hidden;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-scrolling iframe {
	pointer-events: none;
}

body {
	background-color: #fff;
	font-family: var(--body-font), sans-serif;
	color: var(--body-color);
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	letter-spacing: -0.2px;
	position: relative;
	overflow-x: hidden;
}

main {
	overflow-x: hidden;
}

* {
	padding: 0;
	margin: 0;
}

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

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

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

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

h3 {
	font-size: 20px;
}

h4 {
	font-size: 16px;
}

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

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

a {
	color: var(--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: var(--body-color) !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	/*Firefox 18-*/
	color: var(--body-color) !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	/*Firefox 19+*/
	color: var(--body-color) !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: var(--body-color) !important;
}

button {
	border: none;
	background: none;
}

/*Padding Classes*/
.padding {
	padding: 100px 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;
	}
}

.padding-15 {
	padding: 15px;
}

.padding-20 {
	padding: 20px;
}


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

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

/*Boder Classes*/
.bd-top {
	border-top: 1px solid #ddd;
}

.bd-bottom {
	border-bottom: 1px solid #ddd;
}

.bd-left {
	border-left: 1px solid #ddd;
}

.bd-right {
	border-right: 1px solid #ddd;
}

/*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(--bg-dark);
	width: 8px;
	height: 8px;
}

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

::selection {
	background-color: var(--primary-color);
	color: #ffffff;
}

-webkit-::selection {
	background-color: var(--primary-color);
	color: #fff
}

::-moz-selection {
	background-color: var(--primary-color);
	color: #fff
}

/*Site Preloader*/
#preloader-wrap {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999999999;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

#preloader-wrap svg {
	width: 100vw;
	height: 110vh;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	fill: #fff;
}

.preloader-text {
	font-family: var(--primary-font);
	text-align: center;
	user-select: none;
	color: transparent;
	font-size: 60px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: #ddd;
}

.preloader-text span {
	display: inline-block;
	position: relative;
}

.preloader-text span:before {
	color: var(--bg-dark);
	position: absolute;
	top: 0;
	left: 0;
	animation: text-loading 4s infinite;
	content: attr(data-text);
	opacity: 0;
	line-height: 1;
}

.preloader-text span:nth-child(2):before {
	animation-delay: 0.1s;
}

.preloader-text span:nth-child(3):before {
	animation-delay: 0.2s;
}

.preloader-text span:nth-child(4):before {
	animation-delay: 0.3s;
}

.preloader-text span:nth-child(5):before {
	animation-delay: 0.4s;
}

.preloader-text span:nth-child(6):before {
	animation-delay: 0.5s;
}

.preloader-text span:nth-child(7):before {
	animation-delay: 0.6s;
}

.preloader-text span:nth-child(8):before {
	animation-delay: 0.7s;
}

.preloader-text span:nth-child(9):before {
	animation-delay: 0.8s;
}

.preloader-text span:nth-child(10):before {
	animation-delay: 0.9s;
}

@keyframes text-loading {

	0%,
	75%,
	100% {
		opacity: 0;
		transform: rotateY(90deg);
	}

	25%,
	50% {
		opacity: 1;
		transform: rotateY(0deg);
	}
}

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

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

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

/*Default Btn*/
.default-btn {
	background: var(--primary-color);
	font-family: var(--primary-font);
	color: var(--white-color);
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	text-transform: capitalize;
	display: inline-flex;
	letter-spacing: -0.2px;
	padding: 15px 30px;
	border-radius: 2px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.default-btn:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: var(--bg-dark);
	-webkit-transform-origin: right center;
	-moz-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: scale(0, 1);
	-moz-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	-o-transform: scale(0, 1);
	transform: scale(0, 1);
	transition: transform 500ms cubic-bezier(0.85, 0, 0.08, 1),
	-webkit-transform 500ms cubic-bezier(0.85, 0, 0.08, 1);
	-webkit-transition-timing-function: cubic-bezier(0.85, 0, 0.08, 1);
	transition-timing-function: cubic-bezier(0.85, 0, 0.08, 1);
	z-index: -1;
}

.default-btn:hover:before {
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
}

.default-btn:hover {
	color: #fff;
}

.default-btn i {
	margin-right: 5px;
}

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

/*Play Btn*/
.play-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.play-btn .play-icon {
	width: 60px;
	height: 60px;
	border-radius: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary-color);
	color: var(--white-color);
	-webkit-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	-webkit-animation: play-btn-ripple 2s linear infinite;
	animation: play-btn-ripple 2s linear infinite;
}

.play-btn .play-icon svg {
	width: 12px;
}

/*Play Button Ripple Effect*/
@-webkit-keyframes play-btn-ripple {
	0% {
		-webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08), 0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08);
		box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08), 0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08);
	}

	100% {
		-webkit-box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 0px 0px 18px rgba(0, 0, 0, 0);
		box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 0px 0px 18px rgba(0, 0, 0, 0);
	}
}

@keyframes play-btn-ripple {
	0% {
		-webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08), 0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08);
		box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08), 0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08);
	}

	100% {
		-webkit-box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 0px 0px 18px rgba(0, 0, 0, 0);
		box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.08), 0px 0px 0px 12px rgba(0, 0, 0, 0.08), 0px 0px 0px 18px rgba(0, 0, 0, 0);
	}
}

/*Section Heading*/
.sub-heading {
	--logisko-bd-width: 1.5px;
	font-family: var(--primary-font);
	color: var(--primary-color);
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	position: relative;
	z-index: 1;
}

.sub-heading.is-border {
	/* padding-right: 40px; */
}

.sub-heading .sh-underline {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	bottom: -1px;
	color: var(--primary-color);
	border-bottom: var(--logisko-bd-width) solid var(--primary-color);
	z-index: -1;
}

.sub-heading .sh-underline img {
	width: 32px;
	height: auto;
	position: absolute;
	right: 0;
	bottom: -8px;
}

.section-heading h2 {
	--hl-bd-width: 100%;
	font-size: 36px;
	line-height: 52px;
	font-weight: 700;
	letter-spacing: -1px;
	text-transform: inherit;
	display: block;
	margin: 0;
}

.section-heading h2.text-anim {
	--hl-bd-width: 0%;
}

.section-heading h2 span.hl {
	display: inline-block;
	position: relative;
	z-index: 1;
}

.section-heading h2 span.hl:before {
	background-color: var(--primary-color);
	content: "";
	width: var(--hl-bd-width);
	height: 8px;
	position: absolute;
	left: 0;
	bottom: 5px;
	z-index: -1;
}

.section-heading p {
	margin-top: 20px;
	margin-bottom: 0;
}

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

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

.section-heading.white h2 {
	color: var(--white-color);
}

.section-heading.white p {
	color: var(--grey-color);
}

@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: 22px;
		line-height: 36px;
	}

	.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: 8px;
		height: 8px;
		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(--heading-color);
		content: "";
		width: 100%;
		height: 100%;
		border-radius: 50%;
		position: absolute;
		left: 0;
		top: 0;
		transition: all 0.3s ease;
	}

	.dl-cursor:after {
		content: "";
		width: 26px;
		height: 26px;
		border-radius: 50%;
		position: absolute;
		left: -9px;
		top: -9px;
		transition: all 0.3s ease;
		border: 1px solid #114fa0;
	}

	.dl-cursor.cursor-grow:before {
		opacity: 0.7;
		transform: scale(1.5);
		transition: all 0.3s ease;
	}

	.dl-cursor.hide {
		opacity: 0;
		transition: opacity 0.3s ease;
		transition-delay: 0.4s;
	}

	.dl-cursor.hide .inner {
		transform: scale(0.1);
		transition: transform 0.3s ease;
	}

	.dl-cursor.cross:before {
		font-family: "DL-Icons";
		content: "\e9b3";
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 12px;
		opacity: 1;
		transform: scale(2);
		transition: all 0.3s ease;
	}

	/*Cursor Expand*/
	.dl-cursor.expand:before {
		background-color: var(--bg-dark);
		transform: scale(5);
		transition: all 0.3s ease;
	}

	.dl-cursor.expand:after {
		font-family: "Font Awesome 6 Pro";
		color: #fff;
		content: "\f065";
		font-size: 18px;
		font-weight: 900;
		width: 100%;
		height: 100%;
		position: absolute;
		left: 1px;
		top: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.3s ease;
		z-index: 1;
	}

	.dl-cursor.expand {
		transform: scale(2);
		transition: all 0.3s ease;
	}
}


/*Check List*/
.check-list {
}

.check-list li {
	color: var(--heading-color);
	font-size: 16px;
	font-weight: normal;
	display: flex;
	align-items: flex-start;
}

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

.check-list li i {
	color: #cccccc;
	font-size: 15px;
	margin-right: 10px;
	margin-top: 8px;
}

/*Page Header*/
.page-header {
	background-image: url(../img/page-banner.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.page-header.post-details {
	height: 500px;
}

.page-header-info {
	padding-top: 20px;
}

.page-header-info h4 {
	background: var(--primary-color);
	font-family: var(--secondary-font);
	color: var(--white-color);
	display: inline-block;
	height: 25px;
	line-height: 25px;
	padding: 0 15px;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	letter-spacing: -0.5px;
	border-radius: 2px;
}

.page-header-info h2 {
	color: var(--white-color);
	font-size: 46px;
	line-height: 54px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.page-header-info h2 span {
	color: var(--white-color);
	display: inline-block;
	position: relative;
	z-index: 1;
}

.page-header-info p {
	color: var(--grey-color);
	margin: 0;
}

.page-header .post-meta {
	margin-top: 20px;
}


@media (max-width: 767px) {
	.page-header {
		height: inherit;
		padding: 100px 0;
	}

	.page-header-info {
		padding-top: 0;
	}

	.page-header-info h2 {
		font-size: 32px;
		line-height: 42px;
	}

	p br,
	.page-header-info h2 br {
		display: none;
	}
}

/*Overlay*/
.overlay {
	background-color: rgba(0, 0, 0, 0.8);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

/*Bg Half*/
.bg-half, .bg-half-1, .bg-half-2 {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100%;
	height: 400px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

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

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

.social-share li a {
	background-color: var(--bg-grey);
	color: var(--heading-color);
	font-size: 17px;
	width: 40px;
	height: 40px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	transition: all 0.2s ease-in-out;
}

.social-share li:hover a {
	background-color: var(--primary-color);
	color: var(--white-color);
	transform: translateY(-3px);
	transition: all 0.2s ease-in-out;
}

/*Rattings*/
.rattings {
}

.rattings li {
	display: inline-block;
	color: #FF9529;
	font-size: 14px;
	margin: 0 -2px;
}

/*Form Style*/
.form-field .form-control {
	background-color: var(--bg-grey);
	height: 60px;
	border-radius: 2px;
	border: none;
	outline: none;
	box-shadow: none;
	font-size: 0.8rem;
}

.form-field textarea.form-control {
	height: 150px;
}

.contact-form-group {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;
}

.contact-form-group .form-field:nth-child(5) {
	grid-column: span 2;
}

/*Swiper Navigation*/
.swiper-outside .swiper-nav {
	background-color: var(--white-color);
	border: 1px solid var(--grey-color);
	color: var(--heading-color);
	font-size: 20px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: -22.5px;
	top: calc(50% - 30px);
	transform: translateY(-50%);
	cursor: pointer;
	z-index: 1;
}

.swiper-outside .swiper-nav.swiper-next {
	left: auto;
	right: -22.5px;
	display: none;
}

.swiper-outside .swiper-nav.swiper-prev {
	right: auto;
	left: -24.5px;
	display: none;
}

@media (max-width: 767px) {
	.swiper-outside .swiper-nav {
		display: none;
	}
}

/*Swiper Dots*/
.carousel-pagination {
	text-align: center;
	margin-top: 10px;
}

.carousel-pagination .swiper-pagination-bullet {
	background: var(--bg-dark);
	border-radius: 0;
	opacity: 1;
}

.carousel-pagination span.swiper-pagination-bullet-active {
	background-color: var(--primary-color);
	box-shadow: 0px 0px 0px 3px #DF111950;
}

/*Nice Select*/
.nice-select {
	background-color: var(--bg-grey);
	width: 100%;
	height: 50px;
	border-radius: 0;
	border: 1px solid #eee;
	box-shadow: none;
	outline: none;
}

.nice-select:hover {
	border-color: #eee;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
	border: 1px solid #eee;
}

.nice-select .current {
	font-size: 0.8rem;
	font-weight: 400;
	line-height: 1;
}

.nice-select .list {
	border-radius: 0;
	margin-top: 0;
	width: 100%;
}

/*Running Text*/
.running-text {
	background-color: var(--primary-color);
	background-image: url(../img/line-pattern.png);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
	padding: 30px 0;
	overflow: hidden;
}

.running-text ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 60px;
}

.running-text ul li {
	font-family: var(--primary-font);
	color: var(--white-color);
	display: inline-block;
	white-space: nowrap;
	font-size: 22px;
	font-weight: 600;
	text-transform: capitalize;
	position: relative;
}

.running-text ul li:before {
	font-family: "Font Awesome 6 Pro";
	font-weight: 300;
	content: "\f2dc";
	position: absolute;
	right: -40px;
	top: 50%;
	transform: translateY(-50%);
}

.scroller__inner {
	padding-block: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.scroller[data-animated="true"] .scroller__inner {
	width: max-content;
	flex-wrap: nowrap;
	animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
	--_animation-direction: reverse;
}

.scroller[data-direction="left"] {
	--_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
	--_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
	--_animation-duration: 60s;
}

@keyframes scroll {
	to {
		transform: translate(calc(-50% - 0.5rem));
	}
}

/*Scrool Up*/
#scrollup {
	width: 45px;
	height: 45px;
	position: fixed;
	bottom: 30px;
	right: 30px;
	overflow: hidden;
	z-index: 999;
}

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

#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;
}

/*===================================================
    Blog
====================================================*/
.blog-section {
	overflow: hidden;
}

@media (min-width: 993px) {
	.row-gap {
		padding-right: 30px;
	}
}

.grid-post {
	margin: -15px;
}

.post-card {
	border-radius: 2px;
	transition: all .3s cubic-bezier(.165, .85, .45, 1);
}

.classic-post .post-card:hover {
	box-shadow: none;
}

.post-card .post-thumb {
	position: relative;
	overflow: hidden;
	transition: all .3s cubic-bezier(.165, .85, .45, 1);
}

.post-card .post-thumb img {
	transform: scale(1.05) translateX(0);
	transition: all .8s cubic-bezier(.5, 1, .89, 1);
}

.post-card:hover .post-thumb img {
	transform: scale(1.05) translateX(2%);
}

.post-date {
	position: absolute;
	right: 20px;
	top: -20px;
	z-index: 1;
}

.post-date time {
	background-color: var(--bg-dark);
	color: var(--grey-color);
	height: 40px;
	display: inline-flex;
	align-items: center;
	column-gap: 15px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	padding-right: 15px;
	border-radius: 2px;
	overflow: hidden;
}

.post-date time span {
	background-color: var(--primary-color);
	font-family: var(--primary-font), Sans-serif;
	color: var(--white-color);
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.post-content-wrap {
	background-color: #fff;
	padding: 40px;
	border-radius: 0;
	z-index: 1;
	position: relative;
	box-shadow: var(--box-shadow);
}

.post-meta {
	margin-bottom: 5px;
}

.post-meta li {
	font-family: var(--primary-font);
	color: var(--body-color);
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	text-transform: capitalize;
	display: inline-flex;
	align-items: center;
}

.post-details .post-meta li {
	color: var(--grey-color);
}

.post-meta li:not(:last-of-type) {
	margin-right: 10px;
}

.post-meta li i {
	color: var(--primary-color);
	font-size: 15px;
	margin-right: 5px;
}

.post-card .post-content h3 {
	color: var(--heading-color);
	font-size: 24px;
	line-height: 30px;
	font-weight: 700;
	text-transform: capitalize;
	letter-spacing: -0.5px;
	margin-bottom: 15px;
	transition: all 0.3s ease;
}

.post-card .post-content h3 a {
	background: linear-gradient(var(--primary-color) 0%, var(--primary-color) 98%);
	color: var(--heading-color);
	background-size: 0 3px;
	background-repeat: no-repeat;
	background-position: left 100%;
}

.post-card .post-content h3 a:hover {
	background-size: 100% 3px;
}

.post-card .post-content .read-more {
	font-family: var(--primary-font);
	color: var(--heading-color);
	font-size: 16px;
	line-height: 1;
	font-weight: 600;
	text-transform: capitalize;
	position: relative;
	display: inline-flex;
	align-items: center;
	column-gap: 5px;
}

.post-card .post-content .read-more:hover {
	color: var(--primary-color);
}

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

/*Classic Post*/
.classic-post .post-card .post-content-wrap {
	box-shadow: none;
	border: 1px solid #ddd;
}

.classic-post .post-card .post-thumb {
	min-height: 400px;
}

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

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

@media (min-width: 993px) {
	.classic-post .post-card .post-content h3 {
		font-size: 28px;
		line-height: 36px;
	}
}

@media (max-width: 767px) {
	.classic-post .post-card .post-thumb {
		min-height: 250px;
	}
}

/*Post Category*/
.post-category {
	background-color: var(--primary-color);
	position: absolute;
	right: 20px;
	top: 20px;
	font-family: var(--secondary-font);
	font-size: 12px;
	font-weight: 600;
	color: var(--heading-color);
	height: 30px;
	line-height: 30px;
	padding: 0 20px;
	border-radius: 0;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.post-category:hover {
	transform: translateY(-3px);
}

/*Post Details*/
.post-details .post-thumb {
	min-height: 450px;
	position: relative;
	margin-bottom: 40px;
	border-radius: 2px;
}

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

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

.post-details h3 {
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
}

.post-details p {
	font-size: 18px;
	letter-spacing: -0.5px;
	line-height: 30px;
	margin-bottom: 40px;
}

blockquote {
	background-color: var(--bg-grey);
	border-left: 4px solid var(--primary-color);
	color: var(--heading-color);
	font-family: var(--primary-font);
	padding: 40px;
	font-size: 24px;
	line-height: 36px;
	font-weight: 700;
	display: block;
	margin: 0;
	letter-spacing: -1px;
	margin-bottom: 40px;
	position: relative;
}

blockquote > i {
	color: var(--primary-color);
	display: block;
	margin-bottom: 10px;
	font-size: 50px;
	position: absolute;
	right: 30px;
	top: -20px;
}

blockquote span {
	font-family: var(--primary-font);
	color: var(--body-color);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-transform: capitalize;
	display: block;
	margin-top: 15px;
}

.post-details-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 15px;
	margin: 40px 0;
}

.post-details-gallery img {
	border-radius: 2px;
}

@media (max-width: 767px) {
	.post-details-gallery {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/*Post Navigation*/
.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 50px;
	align-items: center;
	margin: 40px 0;
}

.post-navigation li:last-child {
	text-align: right;
}

.post-navigation li a {
	font-family: var(--primary-font);
	color: var(--heading-color);
	font-size: 18px;
	line-height: 26px;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.post-navigation li a:hover {
	text-decoration: underline;
}

.post-navigation li a:hover > span {
	text-decoration: none;
}

.post-navigation li a span {
	font-family: var(--primary-font);
	color: var(--body-color);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: block;
	margin-bottom: 10px;
	text-decoration: none;
}

.post-navigation li a span i {
	color: #a5a6aa;
	margin-right: 5px;
}

.post-navigation li:last-child a span i {
	margin-left: 5px;
	margin-right: auto;
}

@media (min-width: 993px) {
	.post-navigation li {
		max-width: 70%;
	}

	.post-navigation li:last-child {
		margin-left: auto;
	}
}

@media (max-width: 767px) {
	.post-navigation {
		grid-column-gap: 30px;
	}
}


/*Img Post Navigation*/
.img-post-navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 10px;
}

.img-post-navigation li {
	background-color: var(--bg-dark);
	background-image: url(../img/post-1.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 105%;
	padding: 20px 30px;
	border-radius: 2px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	z-index: 1;
	transition: all .8s cubic-bezier(.5, 1, .89, 1);
}

.img-post-navigation li:nth-child(2) {
	background-image: url(../img/post-2.jpg);
}

.img-post-navigation li:before {
	background-color: var(--bg-dark);
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0.5;
	z-index: -1;
	transition: all .8s cubic-bezier(.5, 1, .89, 1);
}

.img-post-navigation li:hover:before {
	opacity: 0.7;
}

@media (min-width: 768px) {
	.img-post-navigation li:hover {
		background-position: 3px center;
		transition: all .8s cubic-bezier(.5, 1, .89, 1);
	}
}

.img-post-navigation li a {
	font-family: var(--primary-font);
	color: var(--white-color);
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	column-gap: 10px;
}

.img-post-navigation li a i {
	background-color: rgba(255, 255, 255, 0.2);
	color: var(--white-color);
	font-size: 15px;
	width: 30px;
	height: 30px;
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 767px) {
	.img-post-navigation li {
		background-size: cover;
	}

	.img-post-navigation li a {
		flex-direction: column;
		justify-content: flex-start;
		gap: 15px;
	}

	.img-post-navigation li.next-post a {
		flex-direction: column-reverse;
		justify-content: flex-end;
		text-align: right;
	}

	.img-post-navigation li.prev-post i {
		margin-right: auto;
	}

	.img-post-navigation li.next-post i {
		margin-left: auto;
	}
}

/*Author Box*/
.author-box {
	background-color: var(--bg-grey);
	padding: 40px;
	display: grid;
	align-items: center;
	grid-template-columns: 100px 1fr;
	grid-column-gap: 40px;
	line-height: 1;
	margin-bottom: 40px;
}

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

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

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

.author-box .social-share li a {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.author-box .social-share li:hover a {
	background-color: var(--bg-dark);
}

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

/*Comments*/
.post-details .comment-title {
	margin-bottom: 30px;
}

.comments-box {
	margin-bottom: 40px;
}

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

.comments-box .comment {
	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: 600;
	display: block;
}

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

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

.comment-area .reply {
	font-family: var(--primary-font);
	color: var(--heading-color);
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
}

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

/*Comment Form*/
.comment-form {
	margin-top: -15px;
}

.comment-form .form-control {
	background-color: var(--bg-grey);
	height: 60px;
	border-radius: 2px;
	border: none;
	box-shadow: none;
	outline: none;
}

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

.comment-form .padding-15:last-child {
	padding-bottom: 0;
}

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

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

/*Sidebar Widget*/
.sidebar-widget {
	position: relative;
	overflow: hidden;
	padding: 20px;
	border-radius: 2px;
	box-shadow: inset 0 0 28px 2px #a7a7a72e;
}

.sidebar-widget li i {
	margin-right: 6px;
}

.widget-services {
	background: #000000d6;
}

.widget-download {
	background: #114fa0;
}

.widget-services::before {
	content: '';
	position: absolute;
	background-image: url(../img/post-3.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	z-index: -2;
	filter: blur(5px);
	width: 100%;
	height: 100%;
	overflow: hidden;
	top: 0;
	left: 0;
}

@media (max-width: 767px) {
	.sidebar-widget {
		padding: 40px 20px;
	}
}

.sidebar-widget.sidebar-banner {
	padding: 0;
}

.sidebar-widget.sidebar-banner img {
	width: 100%;
	overflow: hidden;
}

.sidebar-widget ul li {
	text-transform: capitalize;
	font-size: 16px;
}

.sidebar-widget.search-widget {
	padding: 0;
}

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

/*Search*/
.sidebar-widget .search-form {
	position: relative;
}

.sidebar-widget .search-form .form-control {
	background-color: var(--bg-grey);
	border: none;
	box-shadow: none;
	outline: none;
	height: 60px;
	padding-right: 40px;
	border-radius: 2px;
}

.sidebar-widget .search-form .search-btn {
	background-color: var(--primary-color);
	color: var(--white-color);
	font-size: 25px;
	position: absolute;
	right: 5px;
	top: 5px;
	width: 50px;
	height: 50px;
	border-radius: 2px;
}

/*Widget Title*/
.widget-title {
	display: block;
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
}

.comment-title,
.widget-title h3 {
	color: var(--heading-color);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.5px;
	display: inline-block;
	padding-bottom: 15px;
	position: relative;
	margin: 0;
	line-height: 1;
}

.comment-title:after,
.comment-title:before,
.widget-title h3:after,
.widget-title h3:before {
	background: var(--white-color);
	content: "";
	height: 4px;
	position: absolute;
	left: 0;
	bottom: 3px;
}

.comment-title:before,
.widget-title h3:before {
	width: 15px;
}

.comment-title:after,
.widget-title h3:after {
	width: 35px;
	left: 20px;
}

/*Category List*/
.category-list li {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	transition: all 0.3s ease;
	position: relative;
	padding: 5px;
	flex-direction: column;
}

.category-list li:before {
	color: #979899;
	font-family: "Font Awesome 6 Pro";
	content: '\f101';
	font-weight: 900;
	font-size: 15px;
	position: absolute;
	left: 0;
	top: auto;
	/* transform: translateY(-50%); */
}

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

.category-list li a {
	position: relative;
	color: var(--white-color);
	font-size: 14px;
	font-weight: 500;
	padding-left: 18px;
	width: 100%;
	text-transform: capitalize;
}

.category-list li a .right {
	position: absolute;
	right: -8px;
	top: 5px;
}

.category-list li a:hover {
	color: var(--primary-color);
	text-decoration: none;
}

.category-list li.sub-menu ul {
	padding-left: 16px;
	margin-top: 8px;
}

.category-list li.sub-menu ul li:before {
	content: '\f068';
}

.category-list li span {
	border: 1px solid #ddd;
	font-size: 14px;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	border-radius: 50%;
}

.category-list li:hover span {
	background-color: var(--primary-color);
	color: #fff;
	transition: all 0.3s ease;
}

/*Thumb Posts*/
.thumb-post {
}

.thumb-post li {
	display: grid;
	grid-template-columns: 80px 1fr;
	align-items: center;
	gap: 20px;
}

.thumb-post li:not(:last-of-type) {
	margin-bottom: 20px;
}

.thumb-post li .thumb {
	width: 80px;
	height: 80px;
	border-radius: 2px;
	overflow: hidden;
}

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

.thumb-post .thumb-post-info {
	position: relative;
	display: inline-block;
	width: 100%;
	vertical-align: top;
}

.thumb-post .thumb-post-info h3 {
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
}

.thumb-post .thumb-post-info h3 a {
	color: var(--heading-color);
	background: linear-gradient(var(--primary-color) 0%, var(--primary-color) 98%);
	background-size: 0 3px;
	background-repeat: no-repeat;
	background-position: left 100%;
}

.thumb-post .thumb-post-info h3 a:hover {
	background-size: 100% 3px;
}

.thumb-post .thumb-post-info .date {
	font-family: var(--primary-font);
	color: var(--body-color);
	font-weight: 500;
	font-size: 14px;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	line-height: 1;
}

.thumb-post .thumb-post-info .date i {
	color: var(--primary-color);
	margin-right: 5px;
}

/*Tags*/
.tags {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 5px;
}

.tags li a {
	background-color: var(--primary-color);
	color: var(--white-color);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.2px;
	text-transform: capitalize;
	border-radius: 2px;
	display: inline-block;
	padding: 9px 15px;
	transition: all 0.2s ease-in-out;
}

.tags li a:hover {
	background-color: var(--bg-dark);
	color: var(--white-color);
	transform: translateY(-3px);
	transition: all 0.2s ease-in-out;
}

/*Pagination*/
.pagination-wrap li {
	display: inline-block;
	margin: 0 10px 0 0;
}

.pagination-wrap li a {
	background-color: #fff;
	border: 1px solid #ddd;
	color: var(--body-color);
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: inline-block;
	cursor: poSyne;
	border-radius: 2px;
}

.pagination-wrap li a:hover,
.pagination-wrap li a.active {
	background-color: var(--primary-color);
	border: 1px solid #df1119;
	color: #fff;
}

/*max-width 992px*/
@media (max-width: 992px) {
	.post-card .post-content h3 {
		font-size: 20px;
		line-height: 26px;
	}
}
