/*!
STYLESHEET INDEX
------------------------------------------------------
1. Base (core files)
	- variables
	- mixins
	- typography
	- animation
	- theme
	- header
	- footer
	- widget
	- swiper

2. Components (./components/)
	- Hero-slider
	- About
	- Services
	- Process
	- Brands
	- Stat
	- Choose
	- Portfolio (Case Studies)
	- Tracking
	- Review
	- Pricing
	- Blog
	- Video
	- Team
	- Accordion
	- Tabs
	- Solution
	- Why-us
	- Contact
	- Single-post
	- Shop
	- Single-product
	- Cart
	- Checkout

Notes:
- Keep component filenames consistent with imports.
- Add new sections as separate component files.
*/
/*! variables */
:root {
	--font-family-base: "Barlow", sans-serif;
	--font-family-headings: "Syne", sans-serif;
	--font-family-btn: "Syne", sans-serif;
	--bs-border-color: #d8dde1;
	--bs-border-radius: 0px;
	--font-size-base: 16px;
	--font-weight-base: 400;
	--line-height-base: 26px;
	--primary: #0088a4;
	--primary-rgb: 0, 136, 164;
	--primary-mute: #fef5ee;
	--white: #fff;
	--white-rgb: 255, 255, 255;
	--shade: #f4f4f5;
	--success: #23e219;
	--body-color: #797e88;
	--body-color2: #8993a1;
	--body-rgb: 121, 126, 136;
	--theme-border: #d8dde1;
	--black: #000;
	--headings-color: #040618;
	--dark: #040618;
	--dark-rgb: 4, 6, 24;
	--blue: #1d1354;
	--light: #f8f8f8;
	--mute: #f3f1f0;
	--danger: #dc3545
}

/*! mixins */
.text-primary {
	color: var(--primary) !important
}

.text-tertiary {
	color: #040618 !important
}

.text-success {
	color: #23e219 !important
}

.text-danger {
	color: #dc3545 !important
}

.text-warning {
	color: #ffc107 !important
}

.text-info {
	color: #fff !important
}

.text-light {
	color: #f8f8f8 !important
}

.text-dark {
	color: #040618 !important
}

.text-mute {
	color: #f3f1f0 !important
}

.text-shade {
	color: #f4f4f5 !important
}

.text-body {
	color: #797e88 !important
}

.h1,
h1 {
	font-size: 74px
}

.h1,
.h2,
.product-nav .swiper-pagination,
h1,
h2 {
	font-family: var(--font-family-headings, "Barlow", sans-serif);
	font-weight: 600;
	line-height: 1.2;
	color: var(--headings-color)
}

.h2,
.product-nav .swiper-pagination,
h2 {
	font-size: 48px
}

.h3,
h3 {
	font-size: 36px
}

.category-sec2 .category-wrap .single-cat h3,
.h3,
.h4,
h3,
h4 {
	font-family: var(--font-family-headings, "Barlow", sans-serif);
	font-weight: 600;
	line-height: 1.2;
	color: var(--headings-color)
}

.category-sec2 .category-wrap .single-cat h3,
.h4,
h4 {
	font-size: 24px
}

.footer-2 .footer-nav li a,
.h5,
h5 {
	font-family: var(--font-family-headings, "Barlow", sans-serif);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--headings-color)
}

.about-stats .s-stat p,
.about-txt ul li,
.h6,
.link-btn,
.payment-option button,
.pricing-card .pricing-body ul li,
.search-wrapper form label,
.service-page .ct-list li,
.single-equipment .ct-list li,
h6,
ul.check li {
	font-family: var(--font-family-headings, "Barlow", sans-serif);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--headings-color)
}

.display-1 {
	font-size: 45px
}

.display-1,
.display-2,
.sec-title {
	font-family: var(--font-family-headings, "Barlow", sans-serif);
	font-weight: 600;
	line-height: 1.2;
	color: var(--headings-color)
}

.display-2,
.sec-title {
	font-size: 48px
}

.display-3 {
	font-size: 36px
}

.display-3,
.display-4,
.footer-widget .widget-title {
	font-family: var(--font-family-headings, "Barlow", sans-serif);
	font-weight: 600;
	line-height: 1.2;
	color: var(--headings-color)
}

.display-4,
.footer-widget .widget-title {
	font-size: 24px
}

.display-5 {
	font-size: 20px
}

.display-5,
.display-6,
.header-middle .conn-txt a,
.header-middle .conn-txt span {
	font-family: var(--font-family-headings, "Barlow", sans-serif);
	font-weight: 600;
	line-height: 1.2;
	color: var(--headings-color)
}

.display-6,
.header-middle .conn-txt a,
.header-middle .conn-txt span {
	font-size: 18px
}

/*! typography */
body {
	font-family: var(--font-family-base);
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-base);
	line-height: var(--line-height-base);
	color: var(--body-color);
	position: relative;
	height: 100%;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

a,
a:focus,
a:hover {
	color: #fff;
	/*color: var(--headings-color);*/
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	text-decoration: none
}

.form-group {
	margin-bottom: 30px
}

@media (min-width:576px) {
	.form-group.half-group {
		flex: 0 0 48.5%
	}
}

@media (min-width:576px) {
	.form-group textarea {
		min-height: 150px
	}
}

@media (max-width:575.98px) {
	.form-group textarea {
		height: 120px
	}
}

.form-check-input[type=radio] {
	width: 10px;
	height: 10px;
	padding: 8px
}

.form-check-input:checked {
	background-color: var(--primary);
	border-color: var(--primary)
}

.form-check-input:focus {
	border-color: #fdb09a;
	box-shadow: 0 0 0 .25rem #ffd3c5
}

.lead-sm {
	font-size: 20px
}

.form-control,
.form-select,
input,
select,
textarea {
	font-family: var(--font-family-base);
	width: 100%;
	color: var(--body-color);
	padding: 14px 20px;
	border: 1px solid var(--theme-border)
}

.form-control:focus,
.form-select:focus,
input:focus,
select:focus,
textarea:focus {
	outline: 0 none;
	box-shadow: 0 0 0 .05rem rgba(var(--primary), .2)
}

.form-control::placeholder,
.form-select::placeholder,
input::placeholder,
select::placeholder,
textarea::placeholder {
	opacity: 1;
	color: var(--body-color)
}

.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder,
input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: var(--body-color)
}

.form-control::-ms-input-placeholder,
.form-select::-ms-input-placeholder,
input::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	color: var(--body-color)
}

input[type=checkbox] {
	padding: 0
}

.btn:focus-visible {
	color: var(--headings-color);
	background-color: var(--primary);
	border-color: var(--primary);
	outline: 0;
	box-shadow: none
}

.datepicker {
	text-align: center
}

.datepicker td {
	width: 32px;
	height: 32px;
	font-weight: 500
}

.datepicker td.active,
.datepicker td:hover {
	background: var(--primary);
	color: var(--white)
}

.datepicker td.day {
	text-align: center
}

.gx-5 {
	--bs-gutter-x: 30px
}

/*! animation */
.anim-img {
	position: absolute;
	backface-visibility: hidden;
	animation: jumping 5s ease-in-out 2s infinite alternate;
	animation-timing-function: cubic-bezier(.65, .05, .36, 1);
	user-select: none;
	will-change: transform
}

.anim-img.left-top {
	left: 0;
	top: auto
}

.anim-img.left-bottom {
	right: auto;
	left: 0;
	top: auto;
	bottom: 0
}

.anim-img.right-bottom {
	right: 0;
	bottom: 0
}

.anim-img.right-top {
	right: 0;
	top: 0
}

.anim-img.center-bottom {
	left: 20%;
	bottom: 0
}

.anim-img.spin {
	animation: spin 8s ease-in-out 2s infinite alternate
}

.anim-img.zoom {
	animation: zoom 8s ease-in-out 2s infinite alternate
}

.anim-img.anim-2 {
	animation: jumping2 8s ease-in-out 2s infinite alternate
}

@media (max-width:575.98px) {
	.anim-img {
		display: none
	}
}

@keyframes jumping {
	0% {
		transform: translateY(0) translateX(0) rotate(0) scale(.5);
		opacity: .2
	}

	50% {
		transform: translateY(-50px) translateX(-50px) rotate(15deg) scale(.7);
		opacity: .7
	}

	to {
		transform: translateY(-75px) translateX(-75px) rotate(0) scale(1);
		opacity: 1
	}
}

@keyframes jumping2 {
	0% {
		transform: translateY(-150px) translateX(-10px) rotate(0) scale(1);
		opacity: .2
	}

	50% {
		transform: translateY(-50px) translateX(-10px) rotate(5deg) scale(.8);
		opacity: .5
	}

	to {
		transform: translateY(0) translateX(0) rotate(0) scale(.7)
	}
}

@keyframes animate_pulse {
	0% {
		box-shadow: 0 0 0 0 hsla(0, 0%, 100%, .2), 0 0 0 0 hsla(0, 0%, 100%, .4)
	}

	40% {
		box-shadow: 0 0 0 50px hsla(0, 0%, 100%, 0), 0 0 0 0 hsla(0, 0%, 100%, .4)
	}

	80% {
		box-shadow: 0 0 0 50px hsla(0, 0%, 100%, 0), 0 0 0 30px hsla(0, 0%, 100%, 0)
	}

	to {
		box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0), 0 0 0 30px hsla(0, 0%, 100%, 0)
	}
}

.spin {
	animation: spin 10s linear infinite
}

@keyframes spin {
	0% {
		transform: rotate(0);
		left: 50%
	}

	40% {
		transform: rotate(90deg);
		left: 55%
	}

	80% {
		transform: rotate(180deg);
		left: 60%
	}

	to {
		transform: rotate(1turn);
		left: 50%
	}
}

.moveX {
	animation: moveX 12s linear infinite
}

.moveXS {
	animation: moveXS 8s linear infinite
}

@keyframes moveX {
	0% {
		transform: translateX(0)
	}

	25% {
		transform: translateX(150px)
	}

	50% {
		transform: translateX(120px)
	}

	75% {
		transform: translateX(140px)
	}

	to {
		transform: translateX(0)
	}
}

@keyframes moveXS {
	0% {
		transform: translateX(0)
	}

	30% {
		transform: translateX(20px)
	}

	70% {
		transform: translateX(50px)
	}

	to {
		transform: translateX(0)
	}
}

.moveY {
	animation: moveY 7s ease-in-out infinite
}

.moveYS {
	animation: moveYS 9s ease-in-out infinite
}

@keyframes moveY {
	0% {
		transform: translateY(-80px)
	}

	50% {
		transform: translateY(60px)
	}

	to {
		transform: translateY(-80px)
	}
}

@keyframes moveYS {
	0% {
		transform: translateY(-15px)
	}

	50% {
		transform: translateY(15px)
	}

	to {
		transform: translateY(-15px)
	}
}

.rotate {
	animation: rotate 7s linear infinite
}

@keyframes rotate {
	0% {
		transform: rotate(0deg)
	}

	to {
		transform: rotate(1turn)
	}
}

@keyframes zoom {
	0% {
		-moz-transform: scale(.3);
		-o-transform: scale(.3);
		-ms-transform: scale(.3);
		-webkit-transform: scale(.3);
		transform: scale(.3)
	}

	20% {
		-moz-transform: scale(.8);
		-o-transform: scale(.8);
		-ms-transform: scale(.8);
		-webkit-transform: scale(.8);
		transform: scale(.8)
	}

	50% {
		-moz-transform: scale(1);
		-o-transform: scale(1);
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1)
	}

	to {
		-moz-transform: scale(.4);
		-o-transform: scale(.4);
		-ms-transform: scale(.4);
		-webkit-transform: scale(.4);
		transform: scale(.4)
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px)
	}

	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}

@keyframes tada {
	16% {
		transform: translateY(8px)
	}

	33% {
		transform: translateY(-6px)
	}

	49% {
		transform: translateY(4px)
	}

	66% {
		transform: translateY(-2px)
	}

	83% {
		transform: translateY(1px)
	}

	to {
		transform: translateY(0)
	}
}

.tada {
	animation: tada 1.1s ease-out
}

/*! Magic Cursor */
body.tv-magic-cursor #magic-cursor {
	display: block
}

#magic-cursor {
	position: absolute;
	display: none;
	width: 10px;
	height: 10px;
	pointer-events: none;
	z-index: 99999;
	opacity: 0;
	top: 0;
	left: 0
}

#ball {
	position: fixed;
	display: flex;
	align-items: center;
	pointer-events: none;
	border-radius: 50%;
	color: transparent;
	justify-content: center;
	mix-blend-mode: difference;
	background-color: var(--primary)
}

.cursor-bg-red #ball {
	background-color: #ff535b !important
}

.cursor-bg-red #ball .ball-view {
	color: var(--white)
}

.cursor-bg-red-2 #ball {
	background-color: #ff481f !important
}

.cursor-bg-red-2 #ball .ball-view {
	color: var(--white)
}

.cursor-bg-yellow #ball {
	background-color: #fff669 !important
}

.cursor-bg-yellow #ball .ball-view,
.cursor-white-bg #ball .ball-view {
	color: var(--primary)
}

#ball .ball-view {
	opacity: 0;
	visibility: hidden;
	font-weight: 500;
	line-height: 1.3;
	transform: scale(0)
}

#ball .ball-drag,
#ball .ball-view {
	position: absolute;
	padding: 0 5px;
	font-size: 15px;
	text-align: center;
	color: var(--primary)
}

#ball .ball-drag {
	display: block;
	width: 100%;
	font-weight: 600;
	line-height: 1.2;
	transition: all .3s
}

#ball .ball-drag:after,
#ball .ball-drag:before {
	position: absolute;
	top: 50%;
	margin-top: -5px;
	font-size: 19px;
	height: 10px;
	line-height: 10px;
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	color: var(--white);
	font-family: Font Awesome\ 6 Pro;
	-webkit-font-smoothing: antialiased
}

#ball .ball-drag:before {
	content: "\f104";
	left: 0;
	transform: translate3d(-30px, 0, 0);
	transition: all .25s
}

#ball .ball-drag:after {
	content: "\f105";
	right: 0;
	transform: translate3d(30px, 0, 0);
	transition: all .25s
}

#ball.with-blur {
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	-webkit-transform: translateZ(0);
	transform: translateZ(0)
}

#ball.ball-close-enabled {
	opacity: 1 !important
}

#ball .ball-close {
	position: absolute;
	padding: 0 5px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	color: var(--primary)
}

.tv-magnetic-wrap {
	display: flex;
	align-items: center;
	justify-content: center
}

.dark #ball,
.home-2 #ball {
	background-color: var(--white)
}

.dark #ball .ball-view,
.home-2 #ball .ball-view {
	color: var(--primary)
}

/*! theme */
.about-sec2 .about-media,
.about-stats .s-stat:not(:last-child),
.btn-close,
.category-entry .entry-thumb,
.category-item .product-cta,
.category-sec,
.category-sec2 .cat-bg,
.choose-header,
.choose-tab-content .choose-tab,
.contact-sec .contact-tabs,
.contact-sec .contact-tabs .nav-tabs .nav-item .nav-link,
.cta-sec2,
.footer-nav ul li,
.footer-widget .widget-title,
.header-actions a.text-reset.user-account,
.header-connect .single-conn,
.header-top .header-socials span,
.hero-sec2 .quote-form,
.hero-sec3 .hero-txt .btn,
.hero-slider .slider-item,
.link-btn,
.mission-sec,
.overly,
.post-entry .post-meta>span:first-child,
.post-entry .post-meta span a,
.product-search-sec,
.quote-sec,
.quote-sec3,
.recent-entry .rc-entry,
.review-card,
.review-sec,
.review-sec .review-entry h3,
.serv-contact-card,
.service-sidebar .widget ul li a,
.slide-content .heading-sub,
.stat-card,
.stat-card2,
.stat-sec,
.sub-heading,
.sub-title,
.swiper-pagination span.swiper-pagination-bullet-active,
.team-entry .team-thumb,
.work-process3 .step-wrap,
.work-sec,
blockquote,
blockquote cite,
ul.check li,
ul.ct-list li {
	position: relative;
	z-index: 1
}

.about-sec2 .about-media:before,
.about-stats .s-stat:not(:last-child):before,
.btn-close:before,
.category-entry .entry-thumb:before,
.category-item .product-cta:before,
.category-sec2 .cat-bg:before,
.category-sec:before,
.choose-header:before,
.choose-tab-content .choose-tab:before,
.contact-sec .contact-tabs .nav-tabs .nav-item .nav-link:before,
.contact-sec .contact-tabs:before,
.cta-sec2:before,
.footer-nav ul li:before,
.footer-widget .widget-title:before,
.header-actions a.text-reset.user-account:before,
.header-connect .single-conn:before,
.header-top .header-socials span:before,
.hero-sec2 .quote-form:before,
.hero-sec3 .hero-txt .btn:before,
.hero-slider .slider-item:before,
.link-btn:before,
.mission-sec:before,
.overly:before,
.post-entry .post-meta>span:first-child:before,
.post-entry .post-meta span a:before,
.product-search-sec:before,
.quote-sec3:before,
.quote-sec:before,
.recent-entry .rc-entry:before,
.review-card:before,
.review-sec .review-entry h3:before,
.review-sec:before,
.serv-contact-card:before,
.service-sidebar .widget ul li a:before,
.slide-content .heading-sub:before,
.stat-card2:before,
.stat-card:before,
.stat-sec:before,
.sub-heading:before,
.sub-title:before,
.swiper-pagination span.swiper-pagination-bullet-active:before,
.team-entry .team-thumb:before,
.work-process3 .step-wrap:before,
.work-sec:before,
blockquote:before,
blockquote cite:before,
ul.check li:before,
ul.ct-list li:before {
	position: absolute;
	content: "";
	left: 0;
	top: -6px;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: var(--dark)
}

.sec-title {
	margin: 15px 0 20px;
	font-weight: 700;
	line-height: 1.2
}

@media (max-width:1399.98px) {
	.sec-title {
		font-size: 45px
	}
}

@media (max-width:1199.98px) {
	.sec-title {
		font-size: 40px
	}
}

@media (max-width:575.98px) {
	.sec-title {
		overflow: hidden;
		font-size: 35px
	}
}

.sub-title {
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
	color: var(--primary);
	text-transform: uppercase;
	padding: 0 75px
}

.sub-title:before {
	background: url(../images/icons/line.png) no-repeat 0
}

.sub-title:after {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	height: 100%;
	background: url(../images/icons/line.png) no-repeat 100%;
	transform: rotate(-180deg);
	width: 65px
}

.sub-title.half:after {
	display: none
}

@media (max-width:1199.98px) {
	.sub-title {
		font-size: 18px
	}
}

@media (max-width:575.98px) {
	.sub-title {
		font-size: 17px;
		padding-right: 0
	}

	.sub-title:after {
		display: none
	}
}

.sub-heading {
	font-size: 30px;
	margin-bottom: 45px
}

.sub-heading:before {
	height: 2px;
	width: 120px;
	background-color: var(--primary);
	top: 45px
}

.hover-img img:first-child:not(:last-child) {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	opacity: 0;
	-webkit-transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
	transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1)
}

.hover-img img {
	width: 100%;
	height: 100%;
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
	transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1)
}

.hover-img:hover img {
	-webkit-transform: scale(1.08);
	transform: scale(1.08)
}

.hover-img:hover img:first-child:not(:last-child) {
	opacity: 1
}

.hover-img:hover img:nth-child(2) {
	opacity: 0
}

.contact-sec .tab-pane iframe,
.round {
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	border-radius: 30px
}

.sec-intro {
	margin: 0 auto 60px;
	max-width: 700px
}

.sec-intro.full {
	max-width: max-content
}

.text-reset:hover {
	color: var(--primary) !important
}

.sec-padding {
	padding: 120px 0
}

@media (min-width:992px) and (max-width:1199.98px) {
	.sec-padding {
		padding: 100px 0
	}
}

@media (min-width:768px) and (max-width:991.98px) {
	.sec-padding {
		padding: 90px 0
	}
}

@media (max-width:767.98px) {
	.sec-padding {
		padding: 70px 0
	}
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
	color: var(--primary);
	border-color: var(--primary)
}

.bg-primary {
	background-color: #0088a4 !important
}

.bg-tertiary {
	background-color: #040618 !important
}

.bg-light {
	background-color: #f8f8f8 !important
}

.bg-mute {
	background-color: #f3f1f0 !important
}

.bg-shade {
	background-color: #f4f4f5 !important
}

.bg-info {
	background-color: #fff !important
}

.bg-dark {
	background-color: #040618 !important
}

.btn {
	font-family: var(--font-family-btn);
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
	text-transform: uppercase;
	padding: 16px 38px;
	letter-spacing: .5px;
	position: relative;
	border: 0 !important;
	overflow: hidden;
	z-index: 1;
	transition: .3s
}

@media (max-width:767.98px) {
	.btn {
		padding: 14px 28px
	}
}

.btn span {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-radius: 30px;
	background-color: var(--dark);
	transition: width .5s ease-in-out, height .5s ease-in-out;
	transform: translate(-50%, -50%);
	z-index: -1
}

.btn i.fa-arrow-right {
	transform: rotate(-30deg);
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out
}

.btn:hover i.fa-arrow-right {
	transform: rotate(0deg)
}

.btn.btn-xs {
	padding: 13px 26px
}

.btn:hover span {
	width: 225%;
	height: 562.5px
}

.btn.btn-outline {
	border: 1px solid var(--white) !important;
	color: var(--white);
	padding: 15px 32px
}

.btn.btn-outline:hover {
	color: var(--headings-color)
}

.btn.btn-outline:hover span {
	background-color: var(--white)
}

.btn-primary {
	background-color: #0088a4;
	border-color: #0088a4;
	color: #fff
}

.btn-primary:focus,
.btn-primary:hover {
	background-color: rgb(207.8813559322, 83.1525423729, 15.1186440678);
	border-color: rgb(207.8813559322, 83.1525423729, 15.1186440678);
	color: #fff
}

.btn-info {
	background-color: var(--black);
	border-color: #fff;
	color: #fff
}

.btn-info:focus,
.btn-info:hover {
	background-color: rgb(229.5, 229.5, 229.5);
	border-color: rgb(229.5, 229.5, 229.5);
	color: #fff
}

.btn-info {

	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease
}

.btn-dark {
	background-color: var(--dark);
}

.btn-dark:hover,
.btn-info span {
	background-color: var(--primary);
}

.btn-dark:hover {
	border: 1px solid var(--primary);
}

.custom-btn {
	display: flex;
	align-items: center;
	gap: 15px;
	font-weight: 700;
	text-transform: capitalize
}

.icon,
.icon-lg,
.icon-xl,
.icon-xs,
.product-card .product-cta a,
.team-entry .team-thumb .team-share .link-hover {
	height: 46px;
	width: 46px;
	text-align: center;
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	font-size: 16px
}

.icon-lg i,
.icon-xl i,
.icon-xs i,
.icon i,
.product-card .product-cta a i,
.team-entry .team-thumb .team-share .link-hover i {
	display: table-cell;
	vertical-align: middle
}

.icon-xs,
.product-card .product-cta a {
	width: 36px;
	height: 36px
}

.icon-lg {
	width: 56px;
	height: 56px
}

.icon-xl {
	width: 80px;
	height: 80px;
	font-size: 30px
}

.lead,
.lead-sm {
	font-size: 18px;
	font-weight: 500
}

.lead-sm a,
.lead a {
	text-decoration: underline
}

@media (max-width:991.98px) {

	.lead,
	.lead-sm {
		font-size: 16px
	}
}

.zoom-img {
	overflow: hidden
}

.zoom-img img {
	transform: scale(1);
	-webkit-transition: all .8s ease;
	-moz-transition: all .8s ease;
	-ms-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease
}

.zoom-img:hover img {
	transform: scale(1.1)
}

.abs-bg {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0
}

.link-btn {
	line-height: 1.3;
	font-size: 15px;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	text-decoration: none
}

.link-btn:before {
	height: 1.5px;
	top: 18px
}

.link-btn i {
	margin-left: 2px;
	transform: rotate(-20deg);
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease
}

.link-btn:hover {
	color: var(--primary)
}

.link-btn:hover:before {
	background-color: var(--primary)
}

.link-btn:hover i {
	transform: rotate(0deg)
}

.ratings {
	font-size: 14px
}

.ratings i {
	color: var(--primary)
}

.social-share a {
	background-color: var(--primary);
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	border-radius: 50px;
	color: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: space-around;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease
}

.social-share a i {
	display: table-cell;
	vertical-align: middle
}

.social-share a:last-child {
	margin-right: 0
}

.social-share a:hover {
	background-color: var(--dark);
	color: var(--white)
}

.social-share.outline a {
	border: 1px solid var(--theme-border);
	background-color: transparent;
	color: var(--headings-color)
}

.social-share.outline a:hover {
	background-color: var(--primary);
	border: 1px solid var(--primary);
	color: var(--white)
}

.social-share.null a {
	background-color: transparent;
	width: auto;
	height: auto;
	color: var(--headings-color)
}

.social-share.null a:hover {
	color: var(--dark)
}

.bg-cover {
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat
}

.scroll-top {
	position: fixed;
	right: 1.875rem;
	bottom: 1.875rem;
	height: 3.125rem;
	width: 3.125rem;
	z-index: 10000;
	opacity: 1;
	visibility: hidden;
	transform: translateY(2.8125rem);
	transition: all .3s linear;
	background-color: var(--white);
	box-shadow: 0 .3125rem .9375rem rgba(0, 0, 0, .14)
}

.scroll-top,
.scroll-top:after {
	cursor: pointer;
	display: block;
	border-radius: 50%
}

.scroll-top:after {
	content: "\f106";
	font-family: fontawesome;
	font-weight: 700;
	position: absolute;
	text-align: center;
	line-height: 3.125rem;
	font-size: 1.25rem;
	color: var(--headings-color);
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 1
}

.scroll-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0)
}

.scroll-top svg {
	color: var(--white);
	border-radius: 50%
}

.scroll-top .progress-circle path {
	stroke: var(--primary);
	stroke-width: .5rem;
	box-sizing: border-box;
	transition: all .4s linear
}

#preloader.done {
	visibility: hidden;
	opacity: 0
}

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #f7f7f7;
	z-index: 999999
}

.preloader {
	padding: 0;
	text-align: left;
	box-sizing: border-box;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin-top: -15px
}

.preloader,
.preloader span {
	width: 50px;
	height: 50px;
	display: inline-block;
	position: absolute
}

.preloader span {
	border-radius: 100%;
	background: var(--primary);
	-webkit-animation: preloader 1.3s linear infinite;
	animation: preloader 1.3s linear infinite
}

.preloader span:last-child {
	animation-delay: -.8s;
	-webkit-animation-delay: -.8s
}

@keyframes preloader {
	0% {
		transform: scale(0);
		opacity: .5
	}

	to {
		transform: scale(1);
		opacity: 0
	}
}

@-webkit-keyframes preloader {
	0% {
		-webkit-transform: scale(0);
		opacity: .5
	}

	to {
		-webkit-transform: scale(1);
		opacity: 0
	}
}

.nice-select {
	padding: 4px 20px
}

.nice-select .list {
	background-color: var(--light)
}

.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
	background-color: var(--primary);
	color: var(--white)
}

.nice-select .option.selected.focus {
	color: var(--headings-color) !important
}

.video-play-btn {
	display: flex;
	place-content: center;
	text-align: center;
	height: 100px;
	width: 100px;
	font-size: 25px;
	display: inline-block;
	border-radius: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: var(--headings-color);
	background-color: var(--white);
	animation: animate_pulse 3s linear infinite
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left
}

.pager nav.navigation.pagination {
	display: block
}

.pager a,
.pager span {
	width: 45px;
	height: 45px;
	line-height: 45px;
	display: inline-flex;
	align-items: center;
	justify-content: space-around;
	font-size: 17px;
	font-weight: 500;
	background-color: var(--light);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	border-radius: 5px;
	text-align: center;
	margin-right: 5px;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out
}

.pager .current,
.pager a:hover {
	background-color: var(--primary);
	color: var(--white)
}

.pager a.next,
.pager a.prev {
	width: 100px;
	padding: 3px 10px;
	line-height: 1;
	text-transform: capitalize
}

.progress {
	border: 0;
	box-shadow: none;
	height: 7px;
	overflow: visible;
	position: relative;
	border-radius: 10px;
	display: block;
	background-color: var(--shade)
}

.progress:last-child {
	margin-bottom: 0
}

.progress .meta {
	font-size: 16px;
	left: 0;
	position: absolute;
	top: -33px;
	color: var(--headings-color)
}

.progress .progress-bar {
	display: block;
	background: var(--primary);
	float: left;
	height: 7px;
	border-radius: 10px;
	overflow: visible
}

.progress .progress-bar span {
	background: var(--primary);
	float: right;
	margin-right: 10px;
	margin-top: -32px;
	position: relative;
	font-weight: 700;
	font-size: 15px;
	padding: 0 8px;
	border-radius: 5px
}

.progress .progress-bar span:after,
.progress .progress-bar span:before {
	border: solid transparent;
	content: "";
	height: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	width: 0
}

.progress .progress-bar span:before {
	border-top-color: var(--primary);
	border-width: 5px;
	left: 50%;
	margin-left: -5px
}

.accordion-button:not(.collapsed) {
	box-shadow: none
}

ul.check li {
	margin-left: 25px;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 20px
}

ul.check li span {
	color: var(--dark)
}

ul.check li:before {
	content: "";
	background: url(../images/icons/check.png) no-repeat 0;
	left: -25px;
	top: 0
}

.parallax-overly {
	position: absolute;
	inset: 0;
	background-color: var(--dark);
	opacity: .9;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
	filter: alpha(opacity=90);
	mix-blend-mode: multiply;
	z-index: -1
}

.ct-parallax {
	position: relative;
	overflow: hidden
}

.nav-tabs {
	margin: 30px 0 0;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--theme-border)
}

.nav-tabs .nav-item:not(:last-child) {
	margin-right: 20px
}

@media (max-width:575.98px) {
	.nav-tabs .nav-item:not(:last-child) {
		margin-right: 10px;
		margin-bottom: 10px
	}
}

.nav-tabs .nav-item,
.nav-tabs .nav-item .nav-link {
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out
}

.nav-tabs .nav-item .nav-link {
	margin: 0;
	color: var(--headings-color);
	font-weight: 700;
	border-radius: 30px;
	font-size: 14px;
	background-color: var(--white);
	padding: 7px 30px
}

.nav-tabs .nav-item .nav-link.active,
.nav-tabs .nav-item .nav-link:hover {
	color: var(--white);
	background-color: var(--primary);
	border: 1px solid var(--primary)
}

.nice-select.tv-select {
	height: auto;
	width: 100%;
	border: 1px solid var(--theme-border);
	padding: 7px 20px;
	font-size: 16px;
	border-radius: 0;
	float: none
}

.accordion-button:not(.collapsed) {
	background-color: var(--light-alt)
}

.progress-circle-item {
	width: 80px;
	height: 80px;
	position: relative
}

.progress-circle-item .outer {
	height: 80px;
	width: 80px
}

.progress-circle-item .inner,
.progress-circle-item .outer {
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center
}

.progress-circle-item .inner {
	height: 60px;
	width: 60px
}

.progress-circle-item .inner .number {
	font-weight: 600;
	font-size: 1rem;
	color: #555
}

ul.ct-list {
	padding: 0;
	list-style: none;
	margin: 30px 0
}

@media (min-width:768px) {
	ul.ct-list:first-child {
		margin-right: 50px
	}
}

ul.ct-list li {
	margin-bottom: 20px;
	padding-left: 30px
}

ul.ct-list li:before {
	background: url(../images/icons/double-arrow.svg) no-repeat 0;
	width: 15px;
}

.success {
	background-color: #13a05a;
	border: 1px solid #13a05a;
	border-radius: 5px
}

.error,
.success {
	padding: 15px;
	margin-bottom: 20px;
	color: var(--white)
}

.error {
	background-color: var(--primary);
	border: 1px solid var(--primary);
	border-radius: 5px
}

/*! header */
.header-middle .conn-txt small {
	display: block;
	color: rgba(var(--white-rgb), .6)
}

.header-middle .conn-txt a,
.header-middle .conn-txt span {
	color: var(--white)
}

.header-connect {
	max-width: 950px;
	margin-left: auto
}

@media (max-width:1199.98px) {
	.header-connect {
		margin: 0 auto
	}
}

.header-connect .single-conn:before {
	width: 2px;
	height: 52px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: .2;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	filter: alpha(opacity=20);
	left: 130%
}

.header-connect .single-conn:last-child:before {
	display: none
}

@media (max-width:991.98px) {
	.header-connect .single-conn a {
		font-size: 18px
	}

	.header-connect .single-conn:before {
		display: none
	}
}

.icon-button {
	border: 0;
	background-color: transparent
}

.main-overlay {
	opacity: 0;
	visibility: hidden;
	filter: blur(2px);
	background: #dadada;
	position: fixed;
	height: 100vh;
	width: 100%;
	z-index: 5;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out
}

.main-overlay.active {
	opacity: .6;
	visibility: visible
}

.canvas-menu {
	background: var(--white);
	height: 100vh;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 40px;
	position: fixed;
	right: -100%;
	scrollbar-width: none;
	top: 0;
	width: 400px;
	opacity: 0;
	transition: .45s ease-in-out;
	visibility: hidden;
	z-index: 10
}

@media (max-width:575.98px) {
	.canvas-menu {
		width: 100%
	}
}

.canvas-menu .logo img {
	max-width: 175px
}

.canvas-menu.open {
	visibility: visible;
	opacity: 1;
	right: 0;
	transition: all .4s cubic-bezier(.785, .135, .15, .86);
	transition-duration: .6s
}

.canvas-menu.position-left {
	left: 0;
	right: auto;
	-moz-transform: translateX(-350px);
	-o-transform: translateX(-350px);
	-ms-transform: translateX(-350px);
	-webkit-transform: translateX(-350px);
	transform: translateX(-350px)
}

.canvas-menu.position-left.open {
	-moz-transform: translateX(0);
	-o-transform: translateX(0);
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	transform: translateX(0)
}

.canvas-menu .social-share a:hover {
	color: var(--primary)
}

.canvas-menu a.btn.btn-primary {
	max-width: 200px;
	margin-top: 15px
}

.canvas-menu .canvas-close {
	box-sizing: content-box;
	border: 0;
	padding: 0;
	background-color: transparent;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

.canvas-menu .canvas-close:focus {
	outline: none;
	box-shadow: none
}

.canvas-menu .canvas-close:hover {
	opacity: 1;
	transform: rotate(90deg)
}

.canvas-menu nav {
	width: 100%
}

.canvas-menu .vertical-menu {
	list-style: none;
	padding: 0;
	margin-bottom: 0
}

.canvas-menu .vertical-menu li.openmenu>a {
	color: var(--dark)
}

.canvas-menu .vertical-menu li.openmenu .switcher {
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}

.canvas-menu .vertical-menu li {
	padding: 0;
	position: relative;
	list-style: none;
	line-height: 1.2;
	-webkit-transition: .2s ease-in-out .4s;
	-moz-transition: .2s .4s ease-in-out;
	-ms-transition: .2s .4s ease-in-out;
	-o-transition: .2s .4s ease-in-out;
	transition: .2s ease-in-out .4s
}

.canvas-menu .vertical-menu li:after {
	content: "";
	display: block;
	height: 1px;
	margin-bottom: 10px;
	margin-top: 10px;
	width: 100%
}

.canvas-menu .vertical-menu li.active a {
	color: var(--primary)
}

.canvas-menu .vertical-menu li.active .submenu a {
	color: var(--headings-color)
}

.canvas-menu .vertical-menu li.active .submenu a:hover {
	color: var(--body-color)
}

.canvas-menu .vertical-menu li .switcher {
	border: 1px solid var(--theme-border);
	border-radius: 5px;
	display: flex;
	font-size: 14px;
	width: 30px;
	align-items: center;
	justify-content: space-around;
	height: 30px;
	cursor: pointer;
	color: var(--primary);
	position: absolute;
	top: 0;
	right: 0;
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .2s ease-in-out .4s;
	-moz-transition: .2s .4s ease-in-out;
	-ms-transition: .2s .4s ease-in-out;
	-o-transition: .2s .4s ease-in-out;
	transition: .2s ease-in-out .4s;
	-webkit-backface-visibility: hidden
}

.canvas-menu .vertical-menu li a {
	color: var(--headings-color);
	font-weight: 500;
	text-decoration: none;
	position: relative
}

.canvas-menu .vertical-menu li a:hover {
	color: var(--primary)
}

.canvas-menu .submenu {
	display: none;
	padding: 10px 20px
}

.canvas-menu .submenu li {
	padding: 5px 0
}

.canvas-menu .submenu li:after {
	content: "";
	display: none
}

.canvas-menu .submenu li a {
	color: var(--headings-color);
	font-size: 14px;
	font-weight: 400
}

.canvas-menu .submenu li a:hover {
	color: var(--dark)
}

.header-top {
	padding: 10px 50px
}

@media (max-width:991.98px) {
	.header-top {
		padding: 10px 5px
	}
}

.header-top .social-share a {
	color: var(--white);
	border: 1px solid rgba(var(--white-rgb), .25);
	width: 36px;
	height: 36px
}

.header-top .header-infos ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.header-top .header-infos ul li {
	display: flex;
	align-items: center;
	gap: 10px
}

.header-top .header-infos ul li,
.header-top .header-infos ul li a {
	color: var(--white);
	line-height: 1
}

.header-top .header-infos ul li .team-entry .team-thumb .team-share span.link-hover,
.header-top .header-infos ul li span.icon,
.header-top .header-infos ul li span.icon-lg,
.header-top .header-infos ul li span.icon-xl,
.header-top .header-infos ul li span.icon-xs,
.team-entry .team-thumb .team-share .header-top .header-infos ul li span.link-hover {
	background-color: rgba(var(--white-rgb), .1)
}

.header-top .header-infos .dropdown-toggle {
	color: var(--white)
}

.header-top .header-infos .dropdown-menu {
	background-color: var(--dark);
	padding: 20px;
	min-width: 270px
}

.header-top .header-infos .dropdown-menu li {
	margin-bottom: 15px
}

.header-top .header-socials span {
	color: var(--dark);
	font-weight: 500
}

.header-top .header-socials span:before {
	width: 1px;
	height: 11px;
	left: 85px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

@media (max-width:991.98px) {
	.header-top p {
		text-overflow: ellipsis;
		overflow: hidden;
		text-wrap: nowrap
	}

	.header-top .header-socials {
		width: 325px;
		text-align: right
	}
}

@media (min-width:576px) and (max-width:767.98px) {
	.header-top .header-socials {
		width: 510px
	}
}

@media (max-width:575.98px) {
	.header-top p {
		display: none
	}

	.header-top .header-socials {
		width: 100%;
		text-align: center;
		justify-content: center
	}
}

.header {
	position: relative;
	z-index: 9
}

/*.header .header-wrapper {*/
/*	position: absolute;*/
/*	background: #f3f1f0db;*/
/*	width: 100%;*/
/*	top: 0;*/
/*	left: 0;*/
/*	right: 0*/

/*}*/
.header .header-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 999;

	/* Sperox Style Gradient */
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.75) 0%,
			rgba(0, 0, 0, 0.55) 35%,
			rgba(0, 0, 0, 0.30) 70%,
			rgba(0, 0, 0, 0.00) 100%);

	box-shadow: none;
}

@media (max-width:991.98px) {
	.header .navbar-brand img {
		max-width: 110px
	}
}

.header.header-default {
	position: absolute;
	z-index: 9;
	width: 100%
}

.header.header-default .navbar .offcanvas {
	background-color: var(--dark)
}

.header.header-default .navbar .navbar-nav>li a.nav-link,
.header.header-default .navbar button.navbar-toggler.offcanvas-nav-btn {
	color: var(--white)
}

.header.header-default .navbar button.navbar-toggler.offcanvas-nav-btn svg path {
	fill: var(--white)
}

.header.header-default .header-nav-wrapper.header-sticky.scroll-on {
	background-color: var(--dark)
}

.header.header-1 {
	position: absolute;
	z-index: 5;
	width: 100%;
	right: 0;
	top: 0
}

.header.header-1 .header-wrapper {
	top: auto
}

@media (min-width:768px) {
	.header.header-1 .header-wrapper .container-fluid {
		border-bottom: 1px solid var(--theme-border)
	}
}

@media (max-width:1199.98px) {
	.header.header-1 .navbar-brand {
		padding-bottom: 20px
	}
}

@media (max-width:767.98px) {
	.header.header-1 .navbar-brand {
		padding: 0
	}
}

.header.header-1 .navbar .navbar-nav>li a.nav-link {
	color: var(--headings-color);
	padding: 38px 20px
}

@media (min-width:1200px) and (max-width:1399.98px) {
	.header.header-1 .navbar .navbar-nav>li a.nav-link {
		padding: 32px 17px
	}
}

@media (max-width:1199.98px) {
	.header.header-1 .navbar .navbar-nav>li a.nav-link {
		padding: 18px
	}
}

@media (max-width:1199.98px) {
	.header.header-1 .header-nav-wrapper.header-sticky.scroll-on .navbar .navbar-brand {
		padding: 5px 0
	}
}

.header.header-1 .header-nav-wrapper.header-sticky.scroll-on .navbar .navbar-nav>li a.nav-link {
	padding: 22px 18px
}

@media (max-width:1199.98px) {
	.header.header-1 .header-nav-wrapper.header-sticky.scroll-on .navbar .navbar-nav>li a.nav-link {
		padding: 16px 0
	}
}

.header.header-2 .navbar .navbar-nav>li a.nav-link {
	color: var(--white);
	padding: 38px 20px
}

@media (max-width:1199.98px) {
	.header.header-2 .navbar .navbar-nav>li a.nav-link {
		padding: 18px
	}
}

.header.header-2 .navbar button.navbar-toggler.offcanvas-nav-btn {
	color: var(--white)
}

.header.header-2 .header-nav-wrapper.header-sticky.scroll-on {
	background-color: var(--dark)
}

@media (max-width:1199.98px) {
	.header.header-2 .header-nav-wrapper.header-sticky.scroll-on .navbar .navbar-nav>li a.nav-link {
		padding: 18px
	}
}

.header.header-2 .offcanvas {
	background-color: var(--dark)
}

/*.header.header-3 .nav-cta a {
	color: #373435
}*/

@media (max-width:1199.98px) {
	.header.header-3 .nav-cta a {
		color: var(--headings-color)
	}
}

.header.header-3 .header-nav-wrapper.header-sticky.scroll-on .nav-cta a {
	color: var(--headings-color)
}

.navbar {
	padding: 0
}

@media (max-width:1199.98px) {
	.navbar {
		padding: 5px 10px
	}
}

.navbar .dropdown,
.navbar .dropdown-center,
.navbar .dropend,
.navbar .dropstart,
.navbar .dropup,
.navbar .dropup-center {
	position: relative
}

@media (max-width:1199.98px) {

	.navbar .dropdown,
	.navbar .dropdown-center,
	.navbar .dropend,
	.navbar .dropstart,
	.navbar .dropup,
	.navbar .dropup-center {
		width: 100%
	}
}

.navbar .navbar-nav>li a.nav-link {
	padding: 40px 20px;
	text-transform: capitalize;
	font-weight: 600;
	font-size: 17px;
	line-height: 26px;
	/*color: var(--dark)*/
	color: #fff;
}

@media (min-width:1200px) and (max-width:1399.98px) {
	.navbar .navbar-nav>li a.nav-link {
		padding: 32px 18px
	}
}

@media (min-width:1600px) {
	.navbar .navbar-nav>li a.nav-link {
		padding: 32px 25px
	}
}

.navbar .navbar-nav>li a.nav-link:after {
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out
}

.navbar .navbar-nav>li:first-child a.nav-link {
	padding-left: 0
}

@media (max-width:1199.98px) {
	.navbar .navbar-nav>li {
		width: 100%
	}
}

/*.navbar .navbar-nav .nav-item>.dropdown-menu:first-of-type:before {*/
/*	position: absolute;*/
/*	content: "";*/
/*	top: -12px;*/
/*	left: 22px;*/
/*	z-index: 8;*/
/*	width: 0;*/
/*	height: 0;*/
/*	border-left: 12px solid transparent;*/
/*	border-right: 12px solid transparent;*/
/*	border-bottom: 12px solid var(--white)*/
/*}*/

.navbar .navbar-nav .dropdown-menu {
	border: none;
	border-radius: 8px;
	margin-top: 0;
	padding: 15px 0;
	min-width: 250px;
	top: 100%;
	left: 0;
	/*background-color: var(--white);*/
	background-color: var(--headings-color);
	box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, .35);
	z-index: 10;
	transform: translateY(15px);
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease
}

.navbar .navbar-nav .dropdown-menu .dropdown-item {
	align-items: center;
	display: flex;
	font-weight: 500;
	padding: 7px 15px 7px 25px;
	width: 100%;
	font-size: 15px;
	color: var(--white);
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out
}

.navbar .navbar-nav .dropdown-menu .dropdown-item:focus,
.navbar .navbar-nav .dropdown-menu .dropdown-item:hover {
	background-color: transparent;
	color: var(--primary);
	padding-left: 28px !important
}

.navbar .navbar-nav .dropdown-menu .dropdown-submenu a:after {
	position: absolute;
	right: 16px;
	transform: rotate(-90deg)
}

.navbar .navbar-nav .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
	left: 100%;
	right: auto;
	top: -10px
}

.navbar .navbar-nav .dropdown-menu>li.dropdown-submenu.dropend:focus>a,
.navbar .navbar-nav .dropdown-menu>li.dropdown-submenu.dropend:hover>a {
	color: var(--primary);
	background-color: transparent;
	padding-left: 30px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

.navbar .navbar-nav>.dropdown:hover>.dropdown-menu {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	visibility: visible;
	transform: translateY(0)
}

.navbar .navbar-brand {
	margin-right: 0
}

.navbar .navbar-toggler:focus {
	box-shadow: none
}

.navbar .dropdown .dropdown-toggle:after {
	content: "\f107";
	font-family: fontawesome;
	border: 0;
	margin-left: 5px;
	float: right;
	font-size: 13px;
	margin-top: 2px
}

@media (max-width:767.98px) {
	.navbar .dropdown .dropdown-toggle:after {
		margin-left: auto;
		margin-right: 10px
	}
}

.navbar button.navbar-toggler.offcanvas-nav-btn {
	border: 0;
	background: transparent !important;
	padding: 8px 0;
	box-shadow: none !important;
	outline: none !important;
	display: none;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	gap: 7px;
	cursor: pointer;
}

@media (max-width: 1199.98px) {
	.navbar button.navbar-toggler.offcanvas-nav-btn {
		display: inline-flex !important;
	}
}

.navbar button.navbar-toggler.offcanvas-nav-btn:focus {
	box-shadow: none !important;
	outline: none !important;
}

.navbar button.navbar-toggler.offcanvas-nav-btn span {
	display: block;
	height: 2.5px;
	background: #fff;
	border-radius: 50px;
	transition: all .3s ease;
}

.navbar button.navbar-toggler.offcanvas-nav-btn span:first-child {
	width: 28px;
}

.navbar button.navbar-toggler.offcanvas-nav-btn span:last-child {
	width: 18px;
}

.navbar button.navbar-toggler.offcanvas-nav-btn:hover span:last-child {
	width: 28px;
}

.navbar .dropdown-header {
	color: var(--headings-color);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .0625rem;
	padding: 3px 15px 7px 25px;
	text-transform: uppercase
}

.navbar .custom-btn {
	border-radius: 30px;
	padding: 9px 28px
}

.navbar .nav-banner>a img {
	margin: 10px 0
}

.navbar .nav-cta a.call-cta {
	padding: 5px 30px 5px 5px;
	background-color: #f3f1f0
}

.navbar .nav-cta a.call-cta .team-entry .team-thumb .team-share span.link-hover,
.navbar .nav-cta a.call-cta span.icon,
.navbar .nav-cta a.call-cta span.icon-lg,
.navbar .nav-cta a.call-cta span.icon-xl,
.navbar .nav-cta a.call-cta span.icon-xs,
.team-entry .team-thumb .team-share .navbar .nav-cta a.call-cta span.link-hover {
	margin-right: 10px
}

.navbar .nav-cta a.call-cta {
	color: #797e88
}

.navbar .nav-cta a.call-cta strong {
	color: var(--headings-color)
}

.navbar .nav-cta sup {
	background: var(--primary);
	color: var(--white);
	top: -8px;
	right: 0;
	display: inline-block;
	width: 20px;
	height: 20px;
	line-height: 20px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	position: absolute
}

@media (max-width:1199.98px) {
	.navbar .nav-cta .btn {
		padding: 12px 23px
	}

	.navbar .nav-cta .icon-lg {
		width: 50px;
		height: 50px
	}
}

.navbar .nav-cta button {
	border: 0;
	background-color: rgba(var(--primary-rgb), .6)
}

.navbar.scroll-on .container:before {
	display: none
}

.navbar.scroll-on .navbar-nav li a.nav-link {
	padding: 25px
}

@media (min-width:992px) and (max-width:1199.98px) {
	.navbar.scroll-on .navbar-nav li a.nav-link {
		padding: 22px 15px
	}
}

.navbar.scroll-on .navbar-nav li:first-child a.nav-link {
	padding-left: 0
}

header .header-nav-wrapper.header-sticky.scroll-on {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 99;
	/*background: var(--white);*/
	background: var(--headings-color);
	box-shadow: 0 .25rem 1.25rem rgba(0, 0, 0, .07);
	width: 100%;
	animation: headerSlideDown 1.3s ease forwards
}

header .header-nav-wrapper.header-sticky.scroll-on .navbar {
	padding: 3px 0
}

@media (max-width:1199.98px) {
	header .header-nav-wrapper.header-sticky.scroll-on .navbar {
		padding: 5px 10px
	}
}

header .header-nav-wrapper.header-sticky.scroll-on .navbar-line:before {
	display: none
}

header .header-nav-wrapper.header-sticky.scroll-on .navbar .navbar-nav>li a.nav-link {
	padding: 28px 18px
}

@media (min-width:1200px) and (max-width:1399.98px) {
	header .header-nav-wrapper.header-sticky.scroll-on .navbar .navbar-nav>li a.nav-link {
		padding: 21px 18px
	}
}

@media (max-width:1199.98px) {
	header .header-nav-wrapper.header-sticky.scroll-on .navbar .navbar-nav>li a.nav-link {
		padding: 16px 0
	}
}

header .header-nav-wrapper.header-sticky.scroll-on .navbar .container-fluid {
	border: 0
}

.navbar.nav-center .offcanvas {
	max-width: 700px
}

@media (max-width:991.98px) {
	.navbar.nav-center .offcanvas {
		max-width: calc(100% - 20px)
	}
}

.navbar.nav-center .navbar-nav li:last-child a.nav-link {
	padding-right: 0
}

.burger-menu {
	width: 50px;
	height: 50px;
	background: transparent !important;
	border: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 8px;
	cursor: pointer;
	padding: 0;
}

.burger-menu span {
	display: block;
	height: 2px;
	background: #fff;
	border-radius: 50px;
	transition: .3s ease;
}

.burger-menu span:first-child {
	width: 32px;
}

.burger-menu span:last-child {
	width: 20px;
}

.burger-menu:hover span:last-child {
	width: 32px;
}

@media (min-width:1200px) {
	.row-cols-lg-4>* {
		flex: 0 0 auto;
		width: 33.33%
	}

	header .header-nav-wrapper .navbar .navbar-nav li:hover a.nav-link {
		color: var(--primary)
	}

	header .header-nav-wrapper .navbar .navbar-nav li:hover a.nav-link:after {
		transform: rotate(180deg)
	}

	header .header-nav-wrapper .navbar .navbar-nav .dropdown-menu {
		display: block;
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
		visibility: hidden;
		transform: translateY(20px)
	}

	header .header-nav-wrapper .navbar .navbar-nav .dropdown-submenu.dropend:hover>.dropdown-menu {
		opacity: 1;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		filter: alpha(opacity=100);
		visibility: visible;
		transform: translateY(0)
	}
}

@media (max-width:1199.98px) {
	.navbar .offcanvas-header {
		margin-bottom: 15px
	}

	.navbar .offcanvas-header img {
		max-width: 150px
	}

	.navbar .navbar-nav .dropdown-menu {
		/*background-color: var(--white);*/
		background-color: var(--headings-color);
		min-width: 0 !important
	}

	.navbar .navbar-nav .dropdown-menu .dropdown-item {
		font-size: 15px
	}

	.navbar .offcanvas.bg-dark .dropdown-menu {
		background-color: var(--white)
	}

	.navbar .offcanvas.bg-dark .navbar-nav .nav-item .nav-link {
		border-bottom: 1px solid #2b2b2b
	}

	.navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
		margin-left: 10px
	}

	.navbar .navbar-nav .nav-item .nav-link {
		border-radius: 0;
		padding: 16px 0;
		font-size: 16px;
		line-height: 1
	}

	.navbar .navbar-nav .nav-item:last-child .nav-link {
		border: 0
	}
}

.header-actions a.btn {
	padding: 13px 24px
}

.header-actions a.text-reset.user-account {
	font-weight: 500;
	margin: 0 22px
}

.header-actions a.text-reset.user-account:before {
	width: 1px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: -15px;
	height: 20px
}

@media (min-width:1200px) and (max-width:1399.98px) {

	.header-actions .product-card .product-cta a,
	.header-actions .team-entry .team-thumb .team-share a.link-hover,
	.header-actions a.icon,
	.header-actions a.icon-lg,
	.header-actions a.icon-xl,
	.header-actions a.icon-xs,
	.product-card .product-cta .header-actions a,
	.team-entry .team-thumb .team-share .header-actions a.link-hover {
		width: 45px;
		flex: 0 0 45px;
		height: 45px
	}

	.header-actions a.text-reset.user-account {
		margin: 0 14px
	}

	.header-actions a.text-reset.user-account:before {
		left: -10px
	}
}

@media (max-width:1199.98px) {

	.header-actions .product-card .product-cta a,
	.header-actions .team-entry .team-thumb .team-share a.link-hover,
	.header-actions a.icon,
	.header-actions a.icon-lg,
	.header-actions a.icon-xl,
	.header-actions a.icon-xs,
	.product-card .product-cta .header-actions a,
	.team-entry .team-thumb .team-share .header-actions a.link-hover {
		width: 45px;
		flex: 0 0 45px;
		height: 45px
	}

	.header-actions a.text-reset.user-account {
		margin: 0 14px
	}

	.header-actions a.text-reset.user-account:before {
		left: -10px
	}
}

.header-actions .cart-num {
	background-color: var(--primary);
	color: var(--white);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	display: inline-block;
	width: 24px;
	height: 24px;
	font-weight: 500;
	text-align: center;
	position: absolute;
	top: -2px;
	right: 0;
	font-size: 13px;
	line-height: 24px
}

@keyframes headerSlideDown {
	0% {
		margin-top: -6.25rem
	}

	to {
		margin-top: 0
	}
}

.search-popup .search-form {
	position: relative
}

.search-popup .search-form:after {
	content: "\f002";
	font-family: fontawesome;
	position: absolute;
	z-index: 1;
	width: 20px;
	left: 15px;
	background-color: transparent;
	top: 50%;
	transform: translateY(-50%)
}

.search-popup .search-form input {
	padding-left: 40px
}

.search-popup .search-form input:focus {
	box-shadow: none
}

.search-popup .btn-close {
	position: absolute;
	right: 0;
	top: 20px
}

.offcanvas-header .btn-close {
	padding: 4px
}

.btn-close {
	width: 30px;
	height: 30px;
	line-height: 36px;
	flex: 0 0 30px;
	text-align: center;
	display: table;
	background: 0 0;
	opacity: .9;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
	filter: alpha(opacity=90);
	background-color: transparent
}

.btn-close:focus {
	border: 0;
	box-shadow: none
}

.btn-close:before {
	font-family: fontawesome;
	content: "\f00d";
	color: var(--white);
	background-color: transparent;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	line-height: 46px
}

.header-transparent {
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	z-index: 9;
	width: 100%
}

.header-transparent .container-fluid {
	padding: 5px 15px;
	border: 1px solid rgba(var(--white-rgb), .2);
	border-radius: 100px
}

.header-transparent .navbar .navbar-nav>li a.nav-link {
	color: var(--white)
}

@media (max-width:1199.98px) {
	.header-transparent .navbar .navbar-nav>li a.nav-link {
		color: var(--headings-color)
	}
}

.header-transparent .navbar .nav-cta a.phone span,
.header-transparent .navbar button.navbar-toggler.offcanvas-nav-btn {
	color: var(--white)
}

.header-transparent .navbar .nav-cta a.phone span small {
	color: rgba(var(--white-rgb), .7)
}

.header-transparent .header-nav-wrapper.header-sticky.scroll-on {
	background-color: var(--headings-color)
}

section.promo-sec {
	padding: 250px 0 100px;
	background-color: #d9d9d9;
	background-blend-mode: multiply
}

@media (max-width:767.98px) {
	section.promo-sec {
		padding: 140px 0 70px
	}
}

section.promo-sec .parallax-overly {
	z-index: -1;
	background-color: var(--dark);
	opacity: .7;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	filter: alpha(opacity=70)
}

@media (max-width:767.98px) {
	section.promo-sec h2 {
		font-size: 50px
	}
}

@media (max-width:575.98px) {
	section.promo-sec h2 {
		font-size: 40px
	}
}

section.promo-sec ol.breadcrumb {
	display: block
}

section.promo-sec ol.breadcrumb .breadcrumb-item {
	display: inline-block;
	text-transform: capitalize;
	font-size: 16px;
	font-weight: 600
}

section.promo-sec ol.breadcrumb .breadcrumb-item a {
	color: var(--primary)
}

section.promo-sec ol.breadcrumb .breadcrumb-item.active {
	color: var(--white)
}

section.promo-sec ol.breadcrumb .breadcrumb-item+.breadcrumb-item:before {
	content: "\f7a5";
	font-family: fontawesome
}

section.promo-sec .breadcrumb-item+.breadcrumb-item:before {
	font-style: normal;
	color: var(--white);
	font-size: 18px
}

/*! footer */
.footer {
	padding-top: 60px;
	overflow: hidden;
	background-color: #011111;
}

@media (max-width:767.98px) {
	.footer {
		padding-top: 80px
	}
}

.footer .parallax-overly {
	opacity: .96
}

.footer .copy-right a {
	font-weight: 600;
	color: var(--primary)
}

.footer .footer-widgets {
	border-top: 1px solid rgba(var(--white-rgb), .2)
}

.footer .footer-widgets:before {
	display: none
}

.footer .footer-bottom {
	/*background: #373435;*/
	/* border-top-left-radius: 20px; */
	/* border-top-right-radius: 20px; */
	margin-top: 56px;
}

@media (max-width:575.98px) {
	.footer .footer-bottom {
		margin-top: 0
	}
}

.footer .copy-right a {
	color: var(--white)
}

.footer .footer-nav ul li:before {
	background-color: rgba(var(--white-rgb), .6)
}

.footer .footer-nav ul li:hover a {
	color: var(--white)
}

@media (max-width:991.98px) {
	.footer-widget {
		margin-bottom: 50px
	}
}

.footer-widget .f-logo {
	margin-bottom: 25px
}

.footer-widget .widget-title {
	color: #ffffff;
	font-size: 16px;
	font-weight: 100;
}

@media (max-width:1199.98px) {
	.footer-widget .widget-title {
		font-size: 20px
	}
}

.footer-widget .widget-title:before {
	width: 90px;
	height: 2px;
	background-color: var(--primary);
	top: 38px;
	left: 25px
}

.footer-widget .widget-title:after {
	position: absolute;
	content: "";
	width: 18px;
	height: 2px;
	background-color: var(--white);
	top: 37px;
	left: 0;
	z-index: -1
}

.footer-widget ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.footer-widget ul li a {
	color: rgba(var(--white-rgb), .7)
}

.footer-widget ul li:hover a {
	color: var(--primary);
	padding-left: 5px;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100)
}

.footer-widget ul li:not(:last-child) {
	margin-bottom: 15px
}

.footer-widget p,
.footer-widget span {
	color: rgba(var(--white-rgb), .7)
}

.footer-widget.about-footer {
	max-width: 310px
}

.footer-widget .footer-info {
	margin-top: 30px
}

.footer-widget .footer-info .single-conn:not(:last-child) {
	margin-bottom: 17px;
	padding-bottom: 17px;
	border-bottom: 1px solid rgba(var(--white-rgb), .2)
}

.footer-widget .footer-info .single-conn .icon,
.footer-widget .footer-info .single-conn .icon-lg,
.footer-widget .footer-info .single-conn .icon-xl,
.footer-widget .footer-info .single-conn .icon-xs,
.footer-widget .footer-info .single-conn .product-card .product-cta a,
.footer-widget .footer-info .single-conn .team-entry .team-thumb .team-share .link-hover,
.product-card .product-cta .footer-widget .footer-info .single-conn a,
.team-entry .team-thumb .team-share .footer-widget .footer-info .single-conn .link-hover {
	color: var(--white);
	font-size: 18px;
	border: 1px solid #0088a4a6;
	border-radius: 8px;
}

.footer-widget .footer-info .single-conn .conn-txt h3 {
	color: var(--white);
	font-size: 15px;
	font-weight: 400;
}

.footer-widget .footer-info .single-conn .conn-txt a,
.footer-widget .footer-info .single-conn .conn-txt span {
	color: rgba(var(--white-rgb), .7)
}

@media (max-width:991.98px) {

	.footer-widget .footer-info .single-conn .conn-txt a,
	.footer-widget .footer-info .single-conn .conn-txt span {
		font-size: 14px
	}
}

.footer-widget .social-share a {
	background-color: rgba(var(--white-rgb), .07)
}

.footer-widget .social-share a:hover {
	background-color: var(--primary)
}

.footer-widget .news-letter button {
	text-align: left;
	padding: 15px 20px
}

.footer-widget .news-letter button i {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 20px
}

.footer-nav ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.footer-nav ul li {
	display: inline-block
}

.footer-nav ul li:before {
	width: 1px;
	height: 19px;
	background-color: var(--mute);
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 54%
}

.footer-nav ul li:first-child:before {
	display: none
}

.footer-nav ul li a {
	color: var(--white);
	display: block;
	padding: 30px 20px 25px
}

@media (max-width:767.98px) {
	.footer-nav ul li a {
		padding: 15px 20px 10px
	}
}

.footer-nav ul li:last-child a {
	padding-right: 0
}

.footer-nav ul li:hover a {
	color: var(--primary)
}

@media (max-width:767.98px) {
	.footer-nav ul li:first-child a {
		padding-left: 0
	}
}

.footer-2 .parallax-overly {
	opacity: .92;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=92)";
	filter: alpha(opacity=92)
}

@media (max-width:767.98px) {
	.footer-2 .footer-top {
		padding-bottom: 30px
	}
}

.footer-2 .about-footer {
	max-width: 800px;
	margin: 0 auto
}

.footer-2 .about-footer p {
	margin-top: 30px;
	color: var(--body-color2);
	font-size: 17px;
	line-height: 1.8
}

.footer-2 .footer-meta .fm-item h4 {
	color: var(--white);
	margin-bottom: 20px;
	font-size: 20px
}

.footer-2 .footer-meta .fm-item p,
.footer-2 .footer-meta .fm-item p a {
	color: #d0cdcd
}

.footer-2 .footer-meta .fm-item p span {
	display: inline-block;
	background-color: var(--primary);
	color: var(--white);
	margin-right: 10px;
	width: 26px;
	height: 26px;
	line-height: 26px;
	font-size: 13px;
	text-align: center
}

@media (max-width:767.98px) {
	.footer-2 .footer-meta .fm-item {
		margin-bottom: 30px
	}

	.footer-2 .footer-meta .fm-item h4 {
		margin-bottom: 15px
	}
}

.footer-2 .footer-nav {
	margin: 40px 0 50px;
	border-top: 1px solid #313541;
	border-bottom: 1px solid #313541
}

.footer-2 .footer-nav li a {
	color: var(--white);
	margin: 0;
	padding: 22px;
	text-transform: uppercase;
	font-size: 18px
}

.footer-2 .footer-nav li:before {
	display: none
}

@media (max-width:767.98px) {
	.footer-2 .footer-nav {
		padding: 15px 0
	}

	.footer-2 .footer-nav li a {
		padding: 14px 10px;
		font-size: 16px
	}
}

.footer-2 .footer-copyright {
	padding: 23px 0
}

.footer-2 .footer-copyright .social-share a {
	border-radius: 0;
	width: 45px;
	height: 45px;
	background-color: rgba(var(--white-rgb), .1)
}

.footer-2 .footer-copyright .social-share a:hover {
	background-color: var(--primary)
}

@media (max-width:767.98px) {
	.footer-2 .footer-copyright .social-share {
		margin-bottom: 30px
	}
}

.footer-2 .copy-right {
	color: var(--white)
}

.footer-2 .copy-right a {
	color: var(--primary);
	font-weight: 600
}

/*! widget */
.sidebar-spacing {
	padding: 40px 50px 0 0
}

@media (max-width:1199.98px) {
	.sidebar-spacing {
		padding: 40px 10px 0 0
	}
}

.widget-title {
	font-size: 24px;
	margin-bottom: 40px
}

@media (max-width:767.98px) {
	.sidebar {
		margin-top: 40px
	}
}

.widget {
	margin-bottom: 40px;
	/* background-color: var(--light); */
	padding: 40px 35px
}

@media (min-width:992px) and (max-width:1199.98px) {
	.widget {
		padding: 30px 15px
	}
}

@media (max-width:767.98px) {
	.widget {
		padding: 30px 20px;
		margin-bottom: 30px
	}
}

.widget ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.widget ul li {
	/* margin-bottom: 15px; */
	/* border: 1px solid var(--theme-border); */
	background-color: var(--white);
	text-align: right;
	display: block;
	padding: 15px 20px;
	overflow: hidden;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out
}

.widget ul li a {
	display: block;
	float: left;
	color: var(--body-color)
}

.widget ul li:hover {
	background: var(--primary);
	color: var(--white)
}

.widget ul li:hover a {
	color: var(--white)
}

.widget ul li span.count {
	float: right
}

.widget ul li:last-child {
	margin-bottom: 0
}

.service-sidebar .widget {
	margin-bottom: 30px
}

.service-sidebar .widget ul li a {
	display: block;
	width: 100%;
	text-align: left
}

.service-sidebar .widget ul li a:before {
	content: "\f061";
	background-color: transparent;
	width: 20px;
	font-family: fontawesome;
	right: 0;
	left: auto;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.service-sidebar .s-download:not(:last-child) {
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid var(--theme-border)
}

.ls-entry {
	margin-bottom: 20px;
	align-items: center
}

.ls-entry .blog-meta a,
.ls-entry .blog-meta span {
	font-size: 14px
}

.ls-entry i {
	font-size: 11px
}

.ls-entry h6 {
	margin: 5px 0 0;
	font-size: 18px
}

.sidebar .blog-widget ul {
	border: 1px solid var(--theme-border-color);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	border-radius: 8px;
	padding: 20px;
	margin-top: 25px
}

@media (min-width:992px) and (max-width:1199.98px) {
	.sidebar .blog-widget ul {
		padding: 15px
	}
}

.search-widget input {
	border: 1px solid var(--theme-border);
	padding: 16px 30px;
	color: var(--body-color)
}

.search-widget .btn {
	right: 5px;
	width: 46px;
	text-align: center;
	height: 46px;
	display: inline-block;
	padding: 0;
	min-width: auto;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.search-widget .btn i {
	margin-left: 0
}

.recent-entry .rc-entry {
	margin-bottom: 25px;
	padding-bottom: 20px
}

.recent-entry .rc-entry:before {
	width: calc(100% - 100px);
	left: auto;
	right: 0;
	height: 1px;
	top: 100%
}

.recent-entry .rc-entry .course-info {
	flex: 0 0 70%
}

.recent-entry .rc-entry:last-child {
	margin-bottom: 0;
	padding-bottom: 0
}

.recent-entry .rc-entry:last-child:before {
	display: none
}

.tagcloud a {
	display: inline-block;
	font-size: 14px !important;
	line-height: 1;
	background-color: var(--white);
	padding: 11px 15px;
	margin: 2% 1%;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .05);
	text-transform: capitalize;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	border-radius: 50px
}

.tagcloud a:hover {
	background-color: var(--primary);
	color: var(--white)
}

.product-sidebar .widget {
	padding: 30px 20px;
	margin-bottom: 30px
}

.product-sidebar .widget ul li {
	padding: 13px 20px
}

.single-pi {
	padding: 15px 20px;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	-ms-border-radius: 100px;
	border-radius: 100px
}

.single-pi:not(:last-child) {
	margin-bottom: 20px
}

.single-pi h6 {
	margin-bottom: 5px
}

.broucher-widget .btn-outline {
	margin-top: 15px;
	background-color: var(--white);
	color: var(--headings-color)
}

.shop-sidebar .widget {
	margin-bottom: 20px;
	padding: 35px
}

.shop-sidebar .widget ul li {
	display: flex;
	align-items: center;
	text-align: left;
	position: relative;
	padding-left: 10px
}

.shop-sidebar .widget ul li input {
	width: 30px
}

.shop-sidebar .widget ul li .count {
	position: absolute;
	right: 20px
}

.shop-sidebar .widget ul li:hover {
	background-color: transparent;
	color: var(--primary)
}

.shop-sidebar .widget .btn {
	padding: 5px 15px
}

.shop-sidebar .widget .nice-select ul li {
	padding: 0 15px;
	border: 0;
	border-bottom: 1px solid var(--theme-border);
	margin: 0
}

.shop-sidebar .widget .noUi-horizontal {
	height: 10px;
	height: .375rem;
	border: 0;
	box-shadow: none;
	background-color: var(--theme-border-color)
}

.shop-sidebar .widget .noUi-horizontal .noUi-connects {
	background: #bebebe
}

.shop-sidebar .widget .noUi-horizontal .noUi-connect {
	background: rgba(var(--primary-rgb), .75)
}

.shop-sidebar .widget .noUi-horizontal .noUi-handle {
	width: 1.5rem;
	height: 1.5rem;
	background-color: var(--primary);
	-webkit-border-radius: 3.125rem;
	-moz-border-radius: 3.125rem;
	-ms-border-radius: 3.125rem;
	border-radius: 3.125rem;
	top: -.5rem;
	border: 0;
	box-shadow: none
}

.shop-sidebar .widget .noUi-horizontal .noUi-handle:after,
.shop-sidebar .widget .noUi-horizontal .noUi-handle:before {
	display: none
}

/*! swiper */
.swiper-pagination {
	display: flex;
	align-items: center;
	justify-content: center
}

.swiper-pagination span {
	width: 10px;
	height: 10px;
	background-color: rgba(83, 83, 83, .5);
	margin: 0 8px !important;
	border: 0;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100)
}

.swiper-pagination span.swiper-pagination-bullet-active {
	background-color: var(--primary)
}

.swiper-pagination span.swiper-pagination-bullet-active:before {
	width: 20px;
	height: 20px;
	background-color: var(--primary);
	left: 50%;
	top: 50%;
	opacity: .2;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	filter: alpha(opacity=20);
	transform: translate(-50%, -50%);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%
}

.swiper-button-next,
.swiper-button-prev {
	background: var(--primary);
	display: inline-table;
	width: 56px;
	height: 56px;
	text-align: center;
	z-index: 9;
	color: var(--white);
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	left: 0
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background-color: var(--dark)
}

.swiper-button-next {
	left: auto;
	right: 0
}

.swiper-button-next:after,
.swiper-button-prev:after {
	content: "\f061";
	font-family: fontawesome !important;
	font-size: 17px;
	display: table-cell;
	vertical-align: middle
}

.swiper-button-prev:after {
	content: "\f060"
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100)
}

.custom-nav>div {
	background-color: var(--primary);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	font-size: 22px
}

.custom-nav {
	bottom: 35px;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translate(-50%);
	z-index: 2
}

.custom-nav .swiper-button-next,
.custom-nav .swiper-button-prev {
	left: -52px;
	width: 46px;
	height: 46px
}

.custom-nav .swiper-button-prev {
	left: 7px
}

.ct-pagination .swiper-pagination {
	position: relative
}

.header-slider-nav {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center
}

@media (max-width:575.98px) {
	.header-slider-nav {
		gap: 10px;
		justify-content: end;
		margin-bottom: 20px
	}
}

.header-slider-nav .swiper-button-next,
.header-slider-nav .swiper-button-prev {
	left: auto;
	top: auto
}

.header-slider-nav .swiper-button-prev {
	left: 0
}

.banner-sec {
	background-color: var(--primary-mute);
	padding: 250px 0 60px
}

@media (max-width:1599.98px) {
	.banner-sec .anim-img.left-bottom {
		left: -4%
	}
}

@media (max-width:1199.98px) {
	.banner-sec .anim-img {
		width: 20%
	}
}

.banner-txt h1 {
	line-height: 1.1;
	margin: 15px 0 25px;
	font-weight: 700
}

@media (max-width:1599.98px) {
	.banner-txt h1 {
		font-size: 65px
	}
}

@media (max-width:1199.98px) {
	.banner-txt h1 {
		font-size: 50px
	}
}

@media (max-width:767.98px) {
	.banner-txt h1 {
		font-size: 40px
	}
}

.banner-txt .btn {
	margin-top: 35px
}

@media (max-width:575.98px) {
	.banner-txt h1 {
		font-size: 29px
	}

	.banner-txt p {
		font-size: 18px
	}
}

.product-search-sec {
	padding: 120px 0 380px
}

.product-search-sec:before {
	opacity: .5;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50)
}

.product-search-sec p {
	max-width: 450px;
	color: var(--white);
	position: absolute;
	bottom: 70px;
	left: 5%
}

.search-wrapper {
	background: var(--white);
	max-width: 1410px;
	margin: 0 auto;
	padding: 60px
}

@media (min-width:768px) and (max-width:991.98px) {
	.search-wrapper {
		padding: 30px
	}
}

@media (max-width:767.98px) {
	.search-wrapper {
		padding: 20px
	}
}

.search-wrapper h2 {
	margin-bottom: 30px
}

.search-wrapper form label {
	font-weight: 500;
	margin-bottom: 10px
}

.search-wrapper form button.btn.btn-primary {
	margin-top: 30px
}

.search-wrapper .col.btn-wrapper.text-end {
	flex: 0 0 200px
}

@media (max-width:991.98px) {
	.hero-sec2 {
		padding: 200px 0 0
	}
}

@media (max-width:767.98px) {
	.hero-sec2 {
		padding: 160px 0 0
	}
}

@media (min-width:1400px) and (max-width:1599.98px) {
	.hero-sec2 .hero-txt h1 {
		font-size: 65px
	}
}

@media (max-width:1399.98px) {
	.hero-sec2 .hero-txt h1 {
		font-size: 60px
	}
}

@media (max-width:1199.98px) {
	.hero-sec2 .hero-txt h1 {
		font-size: 48px
	}
}

@media (max-width:767.98px) {
	.hero-sec2 .hero-txt h1 {
		font-size: 40px
	}
}

.hero-sec2 .hero-bg.jarallax {
	height: 650px;
	margin-top: -200px;
	z-index: -1
}

@media (max-width:1199.98px) {
	.hero-sec2 .hero-bg.jarallax {
		height: 450px;
		margin-top: -200px
	}
}

.hero-sec2 .quote-form {
	padding: 200px 40px 50px;
	margin-right: 100px;
	flex: 0 0 35%
}

.hero-sec2 .quote-form:before {
	background-color: var(--mute);
	height: calc(100% - 200px)
}

@media (max-width:1199.98px) {
	.hero-sec2 .quote-form {
		padding: 145px 20px 50px
	}
}

@media (max-width:991.98px) {
	.hero-sec2 .quote-form {
		padding: 20px;
		max-width: 500px;
		margin: -55px 0 0 auto
	}
}

@media (max-width:767.98px) {
	.hero-sec2 .quote-form {
		margin: 30px 0 0 auto
	}
}

.quote-form .form-inner {
	padding: 60px 40px;
	border: 10px solid var(--mute)
}

@media (max-width:1199.98px) {
	.quote-form .form-inner {
		padding: 40px 20px
	}
}

.quote-form .form-inner .form-group {
	margin-bottom: 20px
}

.quote-form .form-inner .form-group input,
.quote-form .form-inner .form-group select {
	background-color: var(--mute);
	border-color: var(--mute)
}

.quote-form .form-inner .form-check {
	margin: 25px 0 35px
}

.quote-form .form-inner .nice-select.tv-select {
	background-color: var(--mute);
	border-color: var(--mute)
}

.hero-sec3 {
	padding: 190px 0 100px
}

@media (max-width:767.98px) {
	.hero-sec3 {
		padding: 135px 0 70px
	}

	.hero-sec3 .sub-title {
		font-size: 16px
	}
}

.hero-sec3:before {
	background: url(../images/hero-shape.jpg) no-repeat 0 0/contain;
	opacity: .04;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=4)";
	filter: alpha(opacity=4)
}

.hero-sec3:after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 55%;
	height: 100%;
	background: url(../images/hero-triangle.png) no-repeat 0 0/cover;
	z-index: -1
}

@media (min-width:768px) and (max-width:991.98px) {
	.hero-sec3:after {
		width: 70%
	}
}

.hero-sec3 .hero-shape {
	position: absolute;
	right: 0;
	top: 0;
	background-position: 0 0;
	background-size: cover;
	width: 62%
}

.hero-sec3 .hero-shape .inner-img {
	top: 40px;
	right: -236px;
	width: 971px;
	height: 905px;
	position: relative
}

@media (min-width:1200px) and (max-width:1399.98px) {
	.hero-sec3 .hero-shape {
		width: 68%
	}
}

@media (max-width:1199.98px) {
	.hero-sec3 .hero-shape {
		right: -5%
	}
}

@media (max-width:767.98px) {
	.hero-sec3 .hero-shape {
		display: none
	}
}

.hero-sec3 .hero-txt {
	max-width: 840px;
	margin-left: 40px;
	z-index: 3;
	position: relative
}

@media (min-width:1200px) and (max-width:1399.98px) {
	.hero-sec3 .hero-txt {
		max-width: 820px
	}
}

@media (max-width:991.98px) {
	.hero-sec3 .hero-txt {
		max-width: 680px
	}
}

.hero-sec3 .hero-txt h1 {
	line-height: 1.1
}

@media (max-width:1599.98px) {
	.hero-sec3 .hero-txt h1 {
		font-size: 70px
	}
}

@media (max-width:1399.98px) {
	.hero-sec3 .hero-txt h1 {
		font-size: 65px
	}
}

@media (max-width:1199.98px) {
	.hero-sec3 .hero-txt h1 {
		font-size: 52px
	}
}

@media (min-width:768px) and (max-width:991.98px) {
	.hero-sec3 .hero-txt h1 {
		font-size: 55px
	}
}

@media (max-width:767.98px) {
	.hero-sec3 .hero-txt h1 {
		font-size: 36px
	}
}

@media (max-width:767.98px) {
	.hero-sec3 .hero-txt {
		margin-left: 0
	}
}

.hero-sec3 .hero-txt .dots {
	margin: 20px 0 40px
}

.hero-sec3 .hero-txt .dots span {
	width: 12px;
	height: 12px;
	background-color: var(--primary);
	display: inline-block;
	margin: 0 5px
}

.hero-sec3 .hero-txt h2 {
	max-width: 515px;
	padding-bottom: 30px
}

.hero-sec3 .hero-txt .spec-grid {
	row-gap: 20px;
	max-width: 330px;
	margin: 30px 0 40px
}

.hero-sec3 .hero-txt .spec-grid .spec-item {
	flex: 0 0 50%;
	display: flex;
	flex-direction: column
}

.hero-sec3 .hero-txt .btn {
	overflow: visible;
	padding-right: 17px;
	background-color: var(--primary);
	color: var(--white)
}

.hero-sec3 .hero-txt .btn:before {
	left: auto;
	right: -56px;
	width: 0;
	height: 0;
	border-bottom: 56px solid var(--primary);
	border-right: 56px solid transparent;
	background-color: transparent
}

.hero-slider .slider-item {
	min-height: 920px;
	display: flex;
	align-items: center
}

.hero-slider .slider-item:before {
	opacity: 0;
	/*-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
	filter: alpha(opacity=75);
	z-index: 1*/
}

@media (max-width:767.98px) {
	.hero-slider .slider-item {
		min-height: 760px
	}
}

.hero-slider .slider-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1
}

.slide-content {
	z-index: 2;
	max-width: 860px
}

.slide-content .heading-sub {
	background: rgba(var(--white-rgb), .2);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	padding: 7px 22px;
	border-radius: 50px;
	font-weight: 500;
	color: var(--dark)
}

.slide-content .heading-sub:before {
	background-color: var(--primary);
	border-radius: 50%;
	width: 5px;
	height: 5px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 10px
}

.slide-content h1 {
	line-height: 1.1;
	margin-top: 20px;
	font-weight: 700;
	font-size: 62px;
}

@media (max-width:991.98px) {
	.slide-content h1 {
		font-size: 40px
	}
}

.slide-content h1 span {
	color: var(--primary);
	font-weight: 900
}

.slide-content .play-btn {
	animation: animate_pulse 3s linear infinite
}

.slide-content p.lead,
.slide-content p.lead-sm {
	max-width: 700px;
	margin: 40px 0 50px;
	font-size: 20px;
	line-height: 1.5
}

.hero-slider .slider-bg {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: opacity 2.5s ease-in, -webkit-transform 9s ease;
	transition: opacity 2.5s ease-in, -webkit-transform 9s ease;
	transition: transform 9s ease, opacity 2.5s ease-in;
	transition: transform 9s ease, opacity 2.5s ease-in, -webkit-transform 9s ease
}

.hero-slider .swiper-slide-active .slider-bg {
	-webkit-transform: scale(1.2);
	transform: scale(1.2)
}

.swiper-slide .anim1 {
	transform: translateY(-50px);
	opacity: 0
}

.swiper-slide .anim2 {
	transform: translateY(50px);
	opacity: 0
}

.swiper-slide .anim3 {
	transform: translateY(60px);
	opacity: 0
}

.swiper-slide.swiper-slide-active .anim1,
.swiper-slide.swiper-slide-active .anim2 {
	opacity: 1;
	transform: translateY(0);
	transition: all 2.5s ease
}

.swiper-slide.swiper-slide-active .anim3 {
	opacity: 1;
	transform: translateY(0);
	transition: all 3s ease
}

section.product-search2 {
	position: relative;
	margin-top: -110px;
	z-index: 2
}

section.product-search2 .btn,
section.product-search2 .nice-select.tv-select,
section.product-search2 input {
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-ms-border-radius: 7px;
	border-radius: 7px
}

section.product-search2 .search-wrapper {
	box-shadow: 0 6px 50px rgba(0, 0, 0, .05)
}

.about-media .anim-img {
	left: 40px;
	top: 25%;
	z-index: -1
}

.about-media .about-img {
	margin-left: 150px
}

@media (max-width:1199.98px) {
	.about-media .about-img {
		margin-left: 40px
	}
}

.about-media .about-img p {
	display: block;
	color: var(--white)
}

.about-media .about-sm {
	margin-top: -60px
}

@media (min-width:1200px) and (max-width:1399.98px) {
	.about-media .about-sm {
		margin-left: -50px
	}
}

@media (min-width:992px) and (max-width:1199.98px) {
	.about-media .about-sm img:last-child {
		display: none
	}
}

@media (max-width:991.98px) {
	.about-sec .about-txt {
		margin-top: 45px
	}
}

.experience-stat {
	top: 40px;
	left: -40px;
	text-align: center;
	width: 135px;
	height: 135px;
	border: 3px solid var(--white)
}

.experience-stat,
.experience-stat:before {
	background: var(--primary);
	position: absolute
}

.experience-stat:before {
	content: "";
	left: 0;
	width: 40px;
	height: 38px;
	-webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
	clip-path: polygon(100% 0, 0 0, 100% 100%);
	bottom: -38px
}

.about-txt .about-footer {
	margin-top: 35px;
	padding-top: 35px;
	border-top: 1px solid var(--theme-border)
}

.about-txt .about-footer .about-cta {
	flex: 0 0 275px;
	gap: 15px
}

@media (max-width:575.98px) {
	.about-txt .about-footer .about-cta {
		flex: 1;
		margin-bottom: 30px
	}
}

.about-txt .ab-feat {
	gap: 120px;
	margin-top: 30px
}

.about-txt .ab-feat>div {
	max-width: 150px
}

@media (max-width:575.98px) {
	.about-txt .ab-feat>div {
		max-width: 100%;
		margin-bottom: 30px
	}
}

.mission-sec {
	padding-bottom: 120px
}

.mission-sec .anim-img {
	z-index: -1;
	opacity: .1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
	filter: alpha(opacity=10)
}

.mission-sec:before {
	top: auto;
	bottom: 0;
	height: 80%;
	background-color: var(--primary-mute)
}

.mission-sec .container-fluid {
	padding: 0 100px
}

@media (max-width:991.98px) {
	.mission-sec .container-fluid {
		padding: 0 20px
	}
}

.mission-card {
	padding: 80px;
	position: relative;
	left: 70px
}

.mission-card .card-inner {
	max-width: 730px;
	gap: 30px
}

.mission-card .card-inner h2 {
	font-size: 30px;
	color: var(--white);
	margin-bottom: 5px
}

@media (max-width:991.98px) {
	.mission-card {
		padding: 20px;
		left: 20px
	}

	.mission-card .card-inner {
		max-width: 540px
	}
}

.mission-card:nth-child(2n) {
	left: -60px
}

@media (max-width:991.98px) {
	.mission-card:nth-child(2n) {
		left: -20px
	}
}

.mission-card:nth-child(2n) .card-inner {
	margin-left: auto;
	margin-right: 0
}

.about-sec2 .about-media:before {
	background: url(../images/dots.png) no-repeat;
	width: 90px;
	left: auto;
	right: -35px;
	top: 70%
}

.about-sec2 .about-media img:nth-child(2) {
	z-index: -1;
	position: absolute;
	top: 0;
	right: 0
}

.about-sec2 .about-media img:nth-child(3) {
	z-index: -1;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translate(-50%);
	top: 120px
}

.about-sec2 .ab-footer {
	padding: 24px
}

.about-sec2 .ab-footer p {
	margin: 0;
	max-width: 168px
}

@media (max-width:575.98px) {
	.about-sec2 .ab-footer .btn {
		margin-top: 20px
	}
}

@media (max-width:991.98px) {
	.about-sec2 {
		margin-bottom: 90px
	}

	.about-sec2 .about-media {
		margin: 50px 0 0
	}
}

.about-sec3 {
	position: relative
}

.about-sec3 .about-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 38.8%;
	height: 100%;
	z-index: -1
}

@media (max-width:1599.98px) {
	.about-sec3 .about-bg {
		width: 35.8%
	}
}

@media (max-width:575.98px) {
	.about-sec3 .about-bg {
		display: none
	}
}

@media (min-width:1200px) and (max-width:1399.98px) {
	.about-sec3 .about-bg {
		width: 36.4%
	}
}

@media (max-width:991.98px) {
	.about-sec3 .about-bg {
		width: 65%
	}
}

@media (max-width:575.98px) {
	.about-sec3 .about-bg:after {
		display: none
	}
}

.about-sec3 .about-bg:before {
	content: "";
	position: absolute;
	width: 120%;
	height: 685px;
	right: -73px;
	clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
	background-color: var(--mute)
}

@media (max-width:1599.98px) {
	.about-sec3 .about-bg:before {
		right: -58px
	}
}

.about-sec3 .about-bg:after {
	width: 100%;
	height: 260px;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
	content: "";
	background-color: var(--primary)
}

@media (min-width:768px) and (max-width:991.98px) {
	.about-sec3 .about-bg:after {
		height: 182px
	}
}

.about-sec3 .about-img {
	width: 107%;
	margin-left: -8px
}

@media (min-width:992px) {
	.about-sec3 .about-txt {
		padding-left: 60px
	}
}

@media (max-width:991.98px) {
	.about-sec3 .about-txt {
		padding-top: 50px
	}
}

.about-sec3 .about-intro p {
	max-width: 550px;
	margin-bottom: 5px
}

.about-sec3 .feat-img {
	width: 230px
}

@media (min-width:992px) {
	.about-sec3 .feat-img {
		margin-top: -45px
	}
}

@media (min-width:992px) and (max-width:1199.98px) {
	.about-sec3 .feat-img {
		display: none
	}
}

@media (min-width:768px) and (max-width:991.98px) {
	.about-sec3 .feat-img {
		margin-top: 0
	}
}

.about-sec3 .feat-img img {
	width: 100%
}

.about-sec3 .about-cta .abc-txt {
	margin-left: 30px
}

@media (max-width:575.98px) {
	.about-sec3 .about-cta .abc-txt {
		margin: 30px 0 0
	}
}

.about-sec3 .about-cta .abc-txt h4 {
	margin: 20px 0 0
}

@media (max-width:575.98px) {
	.about-sec3 .about-clients {
		margin-bottom: 30px
	}
}

@media (min-width:576px) {
	.about-sec3 .about-clients span {
		color: var(--white)
	}
}

@media (min-width:576px) {
	.about-stats {
		display: flex
	}
}

.about-stats {
	margin: 15px 0 45px
}

.about-stats .s-stat {
	display: flex;
	flex: 0 0 33.33%
}

@media (min-width:576px) {
	.about-stats .s-stat:nth-child(2) {
		justify-content: center
	}
}

.about-stats .s-stat:not(:last-child):before {
	width: 1px;
	background-color: var(--theme-border);
	left: 100%
}

@media (min-width:992px) and (max-width:1199.98px) {
	.about-stats .s-stat:not(:last-child):before {
		left: 96%
	}
}

.about-stats .s-stat p {
	font-weight: 500;
	color: var(--body-2)
}

.growth-sec .growth-card {
	backdrop-filter: blur(54px);
	background: hsla(0, 0%, 100%, .15);
	max-width: 488px;
	padding: 40px
}

.growth-sec .growth-card h2 {
	font-size: 30px;
	color: var(--white)
}

@media (max-width:1199.98px) {
	.growth-sec .growth-card h2 {
		font-size: 22px
	}
}

.growth-sec .growth-card .h1 {
	margin-top: 120px
}

.growth-sec .parallax-overly {
	opacity: .4;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
	filter: alpha(opacity=40)
}

.about-sec4 h3,
.about-sec4 p {
	margin-bottom: 30px
}

.about-skill {
	margin-top: 70px
}

.about-skill .progress {
	margin-bottom: 50px
}

.stat-sec {
	padding: 60px 0
}

.stat-sec:before {
	opacity: .7;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	filter: alpha(opacity=70)
}

.stat-card {
	background-color: rgba(var(--white-rgb), .17);
	backdrop-filter: blur(134px);
	padding: 30px
}

.stat-card:before {
	background-color: rgba(var(--white-rgb), .3);
	height: 52%;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0)
}

.product-nav .stat-card .swiper-pagination,
.stat-card .h2,
.stat-card .product-nav .swiper-pagination {
	margin-bottom: 0
}

.stat-card p {
	margin: 0;
	color: var(--white);
	font-size: 18px
}

.stat-card .stat-icon {
	position: absolute;
	right: 10px;
	top: 10px;
	opacity: .2;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	filter: alpha(opacity=20);
	-webkit-transition: all .4s ease ease-in-out .4s;
	-moz-transition: all .4s ease .4s ease-in-out;
	-ms-transition: all .4s ease .4s ease-in-out;
	-o-transition: all .4s ease .4s ease-in-out;
	transition: all .4s ease ease-in-out .4s
}

.stat-card .stat-info {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transform: translateY(-5px);
	transition: all .4s ease
}

.stat-card .stat-info p {
	font-size: 16px
}

.stat-card.active .stat-icon,
.stat-card.active:before,
.stat-card:hover .stat-icon,
.stat-card:hover:before {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100)
}

.stat-card.active .stat-info,
.stat-card:hover .stat-info {
	padding-top: 25px;
	margin-top: 25px;
	opacity: 1;
	max-height: 200px;
	transform: translateY(0)
}

.stat-card2:before {
	background-color: var(--theme-border);
	width: 1px;
	height: 67px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 83%
}

.stat-card2 h3 {
	color: var(--white);
	font-size: 64px;
	margin-bottom: 5px
}

@media (max-width:767.98px) {
	.stat-card2 {
		margin-bottom: 50px
	}

	.stat-card2:before {
		display: none
	}

	.stat-card2 h3 {
		font-size: 40px
	}
}

.stat-sec3 .row>div:last-child .stat-card2:before {
	display: none
}

.stat-sec3 .parallax-overly {
	opacity: .8;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=80)
}

.wk-steps {
	max-width: 560px
}

.wk-steps .wk-step:not(:last-child) {
	margin-bottom: 20px
}

.product-card .product-cta .wk-steps a,
.team-entry .team-thumb .team-share .wk-steps .link-hover,
.wk-steps .icon,
.wk-steps .icon-lg,
.wk-steps .icon-xl,
.wk-steps .icon-xs,
.wk-steps .product-card .product-cta a,
.wk-steps .team-entry .team-thumb .team-share .link-hover {
	margin-top: 10px;
	width: 65px;
	height: 65px;
	background-color: var(--white);
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease
}

.product-card .product-cta .wk-steps .wk-step:hover a,
.team-entry .team-thumb .team-share .wk-steps .wk-step:hover .link-hover,
.wk-steps .wk-step:hover .icon,
.wk-steps .wk-step:hover .icon-lg,
.wk-steps .wk-step:hover .icon-xl,
.wk-steps .wk-step:hover .icon-xs,
.wk-steps .wk-step:hover .product-card .product-cta a,
.wk-steps .wk-step:hover .team-entry .team-thumb .team-share .link-hover {
	transform: rotateY(180deg);
	background-color: rgba(var(--primary-rgb), .3)
}

.work-sec:before {
	height: 1px;
	background-color: var(--theme-border);
	top: 32%
}

.work-sec .work-content {
	max-width: 630px;
	margin: 0 auto 0 20px
}

@media (max-width:991.98px) {
	.work-sec .work-content {
		margin: 60px auto
	}
}

@media (max-width:767.98px) {
	.work-sec .work-content {
		margin: 60px 15px
	}
}

@media (max-width:767.98px) {
	.work-sec .work-media {
		max-height: 500px
	}
}

.work-process3 {
	position: relative
}

.work-process3 .step-wrap:before {
	height: 1px;
	background-color: var(--theme-border);
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

@media (max-width:767.98px) {
	.work-process3 .step-wrap:before {
		display: none
	}
}

.work-process3 .step-wrap:after {
	width: 1px;
	height: 100%;
	top: 0;
	content: "";
	background-color: var(--theme-border);
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translate(-50%)
}

@media (max-width:767.98px) {
	.work-process3 .step-wrap:after {
		display: none
	}
}

.work-process3 .step-item {
	max-width: 390px
}

.product-card .product-cta .work-process3 .step-item a,
.team-entry .team-thumb .team-share .work-process3 .step-item .link-hover,
.work-process3 .step-item .icon,
.work-process3 .step-item .icon-lg,
.work-process3 .step-item .icon-xl,
.work-process3 .step-item .icon-xs,
.work-process3 .step-item .product-card .product-cta a,
.work-process3 .step-item .team-entry .team-thumb .team-share .link-hover {
	margin: 0 auto 30px
}

.work-process3 .step-item h3 {
	margin-bottom: 30px
}

.work-process3 .step-wrap>div:nth-child(2n) .step-item {
	margin-left: auto
}

.work-process3 .step-wrap>div:nth-child(-n+2) .step-item {
	margin-bottom: 160px
}

@media (max-width:767.98px) {
	.work-process3 .step-wrap>div:nth-child(-n+2) .step-item {
		margin-bottom: 30px
	}
}

.steps-watermark {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	background: #fff;
	padding: 30px;
	pointer-events: none
}

.steps-watermark p {
	margin: -50px 0 0;
	font-weight: 400
}

.services-sec .row>div:nth-child(2n) .service-card {
	transform: rotate(-10deg)
}

@media (max-width:575.98px) {
	.services-sec .row>div:nth-child(2n) .service-card {
		transform: rotate(0deg)
	}
}

.services-sec .row>div:nth-child(2n) .service-card:hover {
	transform: rotate(-15deg)
}

.service-card {
	padding: 30px;
	transform: rotate(10deg);
	background-color: var(--white);
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	cursor: pointer
}

@media (max-width:575.98px) {
	.service-card {
		transform: rotate(0deg)
	}
}

.service-card h3 {
	font-size: 22px
}

.product-card .product-cta .service-card a,
.service-card .icon,
.service-card .icon-lg,
.service-card .icon-xl,
.service-card .icon-xs,
.service-card .product-card .product-cta a,
.service-card .team-entry .team-thumb .team-share .link-hover,
.team-entry .team-thumb .team-share .service-card .link-hover {
	width: 80px;
	height: 80px;
	margin-top: 25px;
	background-color: var(--light);
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out
}

.service-card p {
	background-color: var(--light);
	margin: 40px 0 0;
	padding: 20px;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out
}

.service-card:hover {
	transform: rotate(15deg)
}

.service-card:hover h3 a {
	color: var(--primary)
}

.product-card .product-cta .service-card:hover a,
.service-card:hover .icon,
.service-card:hover .icon-lg,
.service-card:hover .icon-xl,
.service-card:hover .icon-xs,
.service-card:hover .product-card .product-cta a,
.service-card:hover .team-entry .team-thumb .team-share .link-hover,
.service-card:hover p,
.team-entry .team-thumb .team-share .service-card:hover .link-hover {
	background-color: var(--primary-mute)
}

.services-sec.secvices-2 .row>div:nth-child(2n) .service-card {
	transform: rotate(0deg)
}

@media (max-width:575.98px) {
	.services-sec.secvices-2 .row>div:nth-child(2n) .service-card {
		transform: rotate(0deg)
	}
}

.services-sec.secvices-2 .row>div:nth-child(2n) .service-card:hover {
	transform: rotate(0deg)
}

.services-sec.secvices-2 .service-card {
	transform: rotate(0)
}

.service-page .service-title {
	font-size: 40px;
	margin: 30px 0 20px
}

.service-page p {
	margin-bottom: 30px
}

.service-page .ct-list {
	margin: 30px 0 60px
}

@media (max-width:575.98px) {
	.service-page .serv-gallery img {
		margin-top: 20px
	}
}

.serv-contact-card {
	padding: 60px 40px 50px
}

.serv-contact-card:before {
	opacity: .85;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
	filter: alpha(opacity=85);
	background-blend-mode: multiply
}

.serv-contact-card .card-top {
	padding-bottom: 150px
}

.serv-contact-card .card-top h3 {
	margin-bottom: 20px
}

@media (max-width:1199.98px) {
	.serv-contact-card .card-top {
		padding-bottom: 100px
	}
}

.choose-header:before {
	width: 50%
}

@media (max-width:991.98px) {
	.choose-header:before {
		width: 98%
	}
}

.choose-header .choose-intro {
	padding: 30px 60px 20px
}

@media (max-width:767.98px) {
	.choose-header .choose-intro {
		padding: 30px 20px 20px
	}
}

@media (min-width:992px) {
	.choose-sec .container {
		max-width: 1520px
	}
}

@media (min-width:576px) {
	.choose-sec .nav li {
		flex: 0 0 33%
	}
}

.choose-sec .nav li button {
	text-align: left;
	color: var(--body-color);
	padding: 35px 20px;
	background-color: var(--white)
}

@media (min-width:1200px) and (max-width:1399.98px) {
	.choose-sec .nav li button {
		padding: 30px 17px
	}
}

.choose-sec .nav li button span {
	display: block
}

.choose-sec .nav li button .choose-icon {
	margin-top: 70px
}

.choose-sec .nav li:nth-child(2n) button.nav-link {
	box-shadow: -4px 0 20px 0 rgba(43, 42, 81, .1);
	background: var(--light)
}

.choose-sec .nav li button.nav-link.active,
.choose-sec .nav li button.nav-link:hover {
	box-shadow: -4px 0 20px 0 rgba(43, 42, 81, .1);
	background-color: var(--primary-mute)
}

.choose-tab-content {
	position: relative;
	overflow: hidden;
	height: 646px;
	margin-top: -155px;
	z-index: -1
}

@media (max-width:767.98px) {
	.choose-tab-content {
		height: 400px;
		margin-top: 0
	}
}

.choose-tab-content .choose-tab {
	position: absolute;
	inset: 0;
	opacity: 0;
	z-index: 1
}

.choose-tab-content .choose-tab:before {
	opacity: .3;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
	filter: alpha(opacity=30);
	z-index: 1
}

.choose-tab-content .choose-tab.active {
	opacity: 1;
	z-index: 2
}

.choose-sec2 {
	position: relative;
	overflow: hidden
}

@media (min-width:992px) {
	.choose-sec2 .choose-bg {
		position: absolute;
		width: 50%;
		height: 100%
	}
}

@media (max-width:991.98px) {
	.choose-sec2 .choose-bg {
		width: 100%;
		height: 300px
	}
}

.choose-sec2 .choose-stat {
	position: absolute;
	bottom: 0;
	right: 0;
	backdrop-filter: blur(34px);
	background: rgba(var(--dark-rgb), .4);
	padding: 70px 40px 50px
}

@media (max-width:991.98px) {
	.choose-sec2 .choose-stat {
		padding: 35px 20px
	}

	.choose-sec2 .choose-stat .h1 {
		font-size: 50px
	}
}

.choose-sec2 .choose-stat span {
	color: var(--white)
}

.choose-sec2 .choose-stat .footer-2 .footer-nav li a,
.choose-sec2 .choose-stat .h5,
.footer-2 .footer-nav li .choose-sec2 .choose-stat a {
	display: block;
	max-width: 100px;
	margin-left: 20px
}

.choose-sec2 .choose-txt {
	padding: 120px 0 0 60px
}

@media (min-width:768px) and (max-width:991.98px) {
	.choose-sec2 .choose-txt {
		padding: 60px 0 0 30px
	}
}

@media (max-width:767.98px) {
	.choose-sec2 .choose-txt {
		padding: 60px 0 0
	}
}

@media (min-width:768px) {
	.choose-sec2 .choose-txt .choose-footer {
		width: 690px;
		left: -69px;
		gap: 50px;
		padding: 40px 50px 30px
	}
}

@media (max-width:767.98px) {
	.choose-sec2 .choose-txt .choose-footer {
		padding: 30px 20px 5px
	}

	.choose-sec2 .choose-txt .choose-footer .cf-card {
		margin-bottom: 30px
	}
}

.choose-sec2 .choose-txt .choose-footer {
	position: relative;
	margin-top: 60px
}

.choose-sec2 .choose-txt .choose-footer h3 {
	margin: 15px 0
}

@media (min-width:992px) and (max-width:1199.98px) {
	.choose-sec2 .choose-txt .choose-footer {
		width: 530px
	}
}

.review-sec {
	padding: 40px
}

@media (max-width:767.98px) {
	.review-sec {
		padding: 0
	}
}

.review-sec:before {
	background: url(../images/review-bg.png) no-repeat 50%/cover;
	width: 50%;
	left: auto;
	right: 0;
	opacity: .05;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=5)";
	filter: alpha(opacity=5);
	background-blend-mode: multiply
}

@media (min-width:576px) {
	.review-sec .review-media {
		left: -75px;
		width: 104%
	}
}

.review-sec .review-media .review-stat {
	position: absolute;
	top: 30px;
	left: 30px;
	z-index: 1;
	padding: 20px;
	transform: rotate(-180deg);
	writing-mode: vertical-lr;
	min-height: 280px
}

@media (max-width:991.98px) {
	.review-sec .review-content {
		margin-top: 60px
	}
}

.review-sec .review-entry {
	margin-top: 20px
}

.review-sec .review-entry h3 {
	font-size: 30px;
	margin-bottom: 25px;
	padding-left: 60px
}

.review-sec .review-entry h3:before {
	background: transparent;
	content: "\f10d";
	font-family: fontawesome;
	color: var(--primary);
	font-size: 55px;
	top: -17px
}

.review-sec .review-entry p {
	font-weight: 500;
	font-size: 18px;
	line-height: 28px;
	font-family: var(--font-family-headings)
}

.review-sec .review-entry .reviewer {
	margin-top: 40px
}

.review-sec .swiper-pagination {
	bottom: 35px;
	justify-content: end
}

.review-sec2 .sec-intro,
.review-sec3 .sec-intro {
	max-width: 520px;
	margin: 60px 0 0
}

.review-sec2 .sec-intro .btn,
.review-sec3 .sec-intro .btn {
	margin-top: 40px
}

.review-sec2 .testimonialSwiper,
.review-sec3 .testimonialSwiper {
	max-height: 770px
}

@media (max-width:991.98px) {

	.review-sec2 .testimonialSwiper,
	.review-sec3 .testimonialSwiper {
		margin-top: 40px
	}
}

.review-card {
	background-color: #1d1f2f;
	padding: 60px 40px 45px
}

.review-card:before {
	background: linear-gradient(180deg, rgba(14, 18, 29, 0), #0e121d 90.96%);
	z-index: 1;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease
}

.review-card p {
	font-family: var(--font-family-headings);
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
	margin-top: 35px
}

@media (max-width:991.98px) {
	.review-card {
		padding: 30px 15px 25px
	}

	.review-card .rev-author {
		margin-bottom: 15px
	}
}

.swiper-slide-active .review-card:before {
	background: transparent;
	z-index: -1
}

.review-sec3 .review-card {
	background-color: var(--primary-mute)
}

.review-sec3 .review-card:before {
	background: linear-gradient(180deg, #ffece2, hsla(0, 0%, 100%, .47) 90.96%)
}

.cta-sec:before {
	opacity: .7;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	filter: alpha(opacity=70)
}

.cta-sec p {
	color: var(--white)
}

@media (max-width:767.98px) {
	.cta-sec .cta-txt a {
		margin-bottom: 20px
	}
}

.cta-sec2 {
	padding: 80px 0
}

.cta-sec2:before {
	background-color: var(--primary);
	width: 60%;
	clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%)
}

@media (max-width:767.98px) {
	.cta-sec2:before {
		display: none
	}
}

.cta-sec2:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 60%;
	height: 100%;
	background-color: var(--dark);
	clip-path: polygon(0 0, 75% 0, 100% 100%, 0 100%);
	z-index: -1
}

.cta-sec2 .parallax-overly {
	z-index: -2;
	opacity: .6
}

.cta-sec2 .cta-txt {
	max-width: 565px
}

.cta-sec2 .cta-txt p {
	margin: 35px 0 45px
}

.cta-sec2 .cta-bg {
	position: absolute;
	top: -60px;
	right: 0;
	width: 710px;
	height: 590px;
	background-size: contain;
	background-position: 50%;
	background-repeat: no-repeat
}

@media (min-width:992px) and (max-width:1199.98px) {
	.cta-sec2 .cta-bg {
		width: 500px
	}
}

@media (min-width:768px) and (max-width:991.98px) {
	.cta-sec2 .cta-bg {
		width: 300px
	}
}

@media (max-width:767.98px) {
	.cta-sec2 .cta-bg {
		display: none
	}
}

.post-entry {
	padding: 30px 0 30px 30px;
	overflow: hidden
}

.post-entry .post-meta {
	padding-right: 30px;
	margin-bottom: 30px
}

.post-entry .post-meta>span:first-child {
	color: var(--white)
}

.post-entry .post-meta>span:first-child:before {
	background-color: var(--primary);
	height: 43px;
	width: 150px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: -33px
}

.post-entry .post-meta span a {
	color: var(--body-color);
	font-weight: 500
}

.post-entry .post-meta span a:before {
	background-color: var(--theme-border);
	height: 1px;
	width: 30px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: -35px;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out
}

.post-entry .post-meta span a:hover {
	color: var(--primary)
}

.post-entry .post-meta span a:hover:before {
	background-color: var(--primary)
}

.post-entry h3 {
	line-height: 34px
}

.post-entry .post-thumb {
	margin-top: 30px;
	position: relative;
	overflow: hidden
}

.post-entry:hover h3 a {
	color: var(--primary)
}

@media (max-width:1199.98px) {
	.post-entry {
		padding: 25px 0 15px 15px
	}

	.post-entry .post-meta {
		padding-right: 10px
	}
}

article.blog-entry.classic {
	margin-bottom: 40px
}

article.blog-entry.classic .entry-txt {
	padding: 20px 40px 40px;
	border: 1px solid var(--theme-border)
}

@media (max-width:575.98px) {
	article.blog-entry.classic .entry-txt {
		padding: 20px
	}
}

article.blog-entry.classic .entry-txt p {
	margin: 20px 0 40px
}

.post-entry2 .post-thumb {
	position: relative
}

.post-entry2 .post-thumb a.badge {
	position: absolute;
	left: 20px;
	top: 20px;
	padding: 10px 15px;
	text-transform: capitalize;
	z-index: 1
}

.post-entry2 h3 {
	margin: 10px 0 25px
}

.post-entry2:hover h3 a {
	color: var(--primary)
}

.feature-entry .entry-thumb {
	position: relative
}

.feature-entry .entry-thumb .date-sidebar {
	position: absolute;
	bottom: 0;
	padding: 30px 12px
}

.feature-entry .entry-content .entry-meta {
	margin: 20px 0
}

.feature-entry .entry-content h3 {
	border-bottom: 1px solid var(--theme-border);
	margin-bottom: 20px;
	padding-bottom: 20px
}

.feature-entry .entry-content .link-btn {
	margin-top: 20px;
	display: inline-block
}

.entry-meta {
	margin: 10px 0
}

.meta {
	color: var(--black);
}

.meta:hover {
	color: var(--primary);
}

@media (min-width:576px) {
	.entry-meta {
		display: flex;
		gap: 20px
	}
}

@media (max-width:575.98px) {
	.entry-meta {
		display: inline-block
	}

	.entry-meta span {
		margin: 0 5px 10px 0
	}
}

.entry-meta i {
	margin-right: 5px
}

.entry-meta a,
.entry-meta span {
	color: var(--body-color);
	font-weight: 500
}

.entry-meta a:hover,
.entry-meta span:hover {
	color: var(--primary)
}

.list-entry {
	position: relative
}

.list-entry:not(:last-child) {
	margin-bottom: 30px
}

.list-entry .entry-content {
	max-width: 450px;
	padding: 35px 0;
	margin-left: 40px
}

@media (max-width:767.98px) {
	.list-entry .entry-content {
		margin-left: 0;
		padding: 30px 15px
	}
}

.date-sidebar {
	background-color: var(--dark);
	color: var(--white);
	padding: 20px 11px;
	display: flex;
	align-items: center;
	justify-content: center
}

.date-sidebar .date-text {
	writing-mode: vertical-lr;
	transform: rotate(180deg)
}

.team-entry .team-thumb {
	margin-bottom: 25px;
	position: relative;
	overflow: hidden
}

.team-entry .team-thumb:before {
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	z-index: 2;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0)
}

.team-entry .team-thumb .team-share {
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 2
}

.team-entry .team-thumb .team-share .link-hover {
	background-color: var(--primary);
	border: 8px solid var(--white);
	color: var(--white);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	font-size: 17px;
	z-index: 2;
	position: relative;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out
}

.team-entry .team-thumb .social-share {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 15px;
	margin-left: 10px;
	pointer-events: none
}

.team-entry .team-thumb .social-share a {
	background-color: var(--white);
	color: var(--headings-color);
	opacity: 0;
	transform: translateY(20px);
	transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.team-entry .team-thumb .social-share a:hover {
	background-color: var(--primary);
	color: var(--white)
}

.team-entry:hover .team-thumb:before {
	opacity: .1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
	filter: alpha(opacity=10)
}

.team-entry:hover .link-hover {
	transform: rotate(90deg)
}

.team-entry:hover .social-share {
	pointer-events: auto
}

.team-entry:hover .social-share a {
	opacity: 1;
	transform: translateY(0)
}

.team-entry:hover .social-share a:first-child {
	transition-delay: .3s
}

.team-entry:hover .social-share a:nth-child(2) {
	transition-delay: .2s
}

.team-entry:hover .social-share a:nth-child(3) {
	transition-delay: .1s
}

@media (max-width:1599.98px) {
	.team-sec2 .anim-img {
		right: -7%
	}
}

.team-card2 {
	position: relative
}

@media (min-width:992px) and (max-width:1199.98px) {
	.team-card2 img {
		width: 100%
	}
}

.team-card2 .team-info {
	position: absolute;
	top: 30px;
	left: 30px;
	z-index: 1
}

.team-card2 .social-share {
	position: absolute;
	right: 5px;
	top: 30px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 10px
}

.team-card2 .social-share a {
	width: 36px;
	height: 36px;
	background-color: var(--white);
	color: var(--headings-color);
	font-size: 14px;
	opacity: 0;
	transform: translateY(20px);
	transition: all .4s ease
}

.team-card2 .social-share a:hover {
	background-color: var(--primary);
	color: var(--white)
}

.team-card2:hover .social-share a {
	opacity: 1;
	transform: translateY(0)
}

.team-card2:hover .social-share a:first-child {
	transition-delay: .1s
}

.team-card2:hover .social-share a:nth-child(2) {
	transition-delay: .2s
}

.team-card2:hover .social-share a:nth-child(3) {
	transition-delay: .3s
}

.team-card2:hover .social-share a:nth-child(4) {
	transition-delay: .4s
}

aside.team-sidebar {
	padding: 30px
}

aside.team-sidebar .team-head {
	margin: 20px 0
}

aside.team-sidebar .ts-info {
	border-top: 1px solid var(--theme-border);
	margin-top: 20px;
	padding-top: 20px
}

aside.team-sidebar .social-share.outline a {
	border: 1px solid var(--theme-border);
	color: var(--headings-color)
}

aside.team-sidebar .social-share.outline a:hover {
	border-color: var(--primary);
	color: var(--white)
}

.team-p-details h2,
.team-p-details h3 {
	margin: 30px 0
}

.team-p-details p {
	margin-bottom: 30px
}

.prg-item {
	position: relative
}

.prg-item span {
	position: absolute;
	right: 0;
	top: 0
}

.skill {
	padding: 50px 0;
	overflow: hidden
}

.skill .progress {
	border: 0;
	box-shadow: none;
	height: 10px;
	margin-bottom: 50px;
	overflow: visible;
	position: relative;
	border-radius: 0;
	display: block;
	background-color: var(--shade);
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px
}

.skill .progress:last-child {
	margin-bottom: 0
}

.skill .progress .meta {
	font-size: 18px;
	left: 0;
	position: absolute;
	top: -28px;
	line-height: 28px;
	color: var(--headings-color)
}

.skill .progress .progress-bar {
	display: block;
	background: var(--primary);
	float: left;
	height: 10px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	overflow: visible
}

.skill .progress .progress-bar span {
	background: var(--primary);
	float: right;
	margin-right: 10px;
	margin-top: -32px;
	position: relative;
	font-weight: 600;
	padding: 0 5px
}

.skill .progress .progress-bar span:after,
.skill .progress .progress-bar span:before {
	border: solid transparent;
	content: "";
	height: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	width: 0
}

.skill .progress .progress-bar span:before {
	border-top-color: var(--primary);
	border-width: 5px;
	left: 50%;
	margin-left: -5px
}

.quote-sec .quote-bg {
	height: 610px
}

.quote-sec .quote-bg .parallax-overly {
	opacity: .5;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50)
}

@media (max-width:1199.98px) {
	.quote-sec .quote-bg {
		height: 400px
	}
}

@media (min-width:992px) {
	.quote-sec:before {
		height: 70%
	}
}

.quote-sec:before {
	top: auto;
	bottom: 0
}

.quote-sec .quote-txt {
	padding-top: 80px
}

.quote-sec .quote-txt .skill-progress {
	margin: 80px 0 0
}

.quote-sec .quote-txt .skill-progress .meta {
	color: var(--white)
}

@media (min-width:992px) and (max-width:1199.98px) {
	.quote-sec .quote-txt .skill-progress .meta {
		top: -55px
	}
}

@media (min-width:768px) {
	.quote-sec .quote-txt .skill-progress .progress {
		width: 50%;
		margin-top: 5px
	}
}

.quote-sec .quote-txt .skill-progress .progress {
	background-color: #1d1f2f;
	height: 4px;
	margin-bottom: 60px
}

.quote-sec .quote-txt .skill-progress .progress .progress-bar {
	height: 4px
}

.quote-sec .quote-form {
	background-color: var(--white);
	padding: 60px 40px 120px;
	position: relative;
	margin-top: -300px
}

@media (max-width:1199.98px) {
	.quote-sec .quote-form {
		margin-top: -200px;
		padding: 30px 20px 100px
	}

	.quote-sec .quote-form .form-group {
		margin-bottom: 15px
	}
}

@media (max-width:991.98px) {
	.quote-sec .quote-form {
		margin-top: 30px;
		max-width: 450px;
		margin-left: auto;
		margin-right: 0;
		padding: 30px
	}
}

.quote-sec .quote-form p {
	font-size: 14px;
	margin: 20px 0 30px
}

.quote-sec .quote-form textarea {
	height: 150px
}

.qa-item h3,
.qa-item p,
.qa-item span {
	color: var(--white)
}

.quote-sec3:before {
	width: 70%;
	top: 0;
	background: url(../images/skill-dots.png);
	background-color: var(--mute);
	clip-path: polygon(0 0, 100% 0, 65% 100%, 0 100%)
}

@media (max-width: 991.98px) {
	.quote-sec3,
	.quote-sec3-reverse {
		background-color: var(--mute) !important;
		padding: 55px 0 !important;
		position: relative;
	}

	.quote-sec3::before,
	.quote-sec3::after,
	.quote-sec3-reverse::before,
	.quote-sec3-reverse::after {
		display: none !important;
	}

	.quote-sec3-reverse .row {
		justify-content: flex-start !important;
	}

	.quote-sec3 .quote-content,
	.quote-sec3-reverse .quote-content {
		flex: 0 0 100% !important;
		max-width: 100% !important;
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding: 0 !important;
		text-align: left;
	}

	.quote-sec3 .quote-intro,
	.quote-sec3-reverse .quote-intro {
		max-width: 100% !important;
	}

	.quote-sec3 .sec-title,
	.quote-sec3-reverse .sec-title {
		font-size: 28px !important;
		line-height: 1.25 !important;
		margin-bottom: 15px !important;
	}

	.quote-sec3 p,
	.quote-sec3-reverse p {
		font-size: 15px !important;
		line-height: 1.65 !important;
		color: #4a5568 !important;
		margin-bottom: 22px !important;
	}

	.quote-sec3 .btn,
	.quote-sec3-reverse .btn {
		margin-top: 10px !important;
	}
}

.quote-sec3:after {
	content: "";
	width: 60%;
	height: 90%;
	right: 0;
	background: url(../images/quote-bg2.jpg) no-repeat 100%/cover;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: -2
}

.quote-sec3 .quote-content {
	flex: 0 0 550px
}


.growth-sec {
	position: relative;
	overflow: hidden;
}


.growth-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: -3;
}


.growth-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.parallax-overly {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: -2;
}



@media (min-width:992px) and (max-width:1199.98px) {
	.quote-sec3 .quote-content {
		flex: 0 0 450px
	}
}

@media (min-width:768px) and (max-width:991.98px) {
	.quote-sec3 .quote-content {
		max-width: 100%;
		margin-bottom: 50px
	}
}

@media (max-width: 991.98px) {
	.quote-sec3 .quote-content {
		flex: 0 0 100% !important;
		max-width: 100% !important;
		width: 98% !important;
		margin-left: 0% !important;
	}

	.quote-sec3 .quote-intro {
		max-width: 100% !important;
	}
}

.quote-sec3 .quote-content .skill-progress {
	margin: 60px 0 40px
}

.quote-sec3 .quote-content .skill-progress .progress {
	background: #797e88
}

.quote-sec3 .quote-content .skill-progress .progress:not(:last-child) {
	margin-bottom: 50px
}

.quote-sec3 .quote-form {
	max-width: 495px
}

.pricing-card .pricing-body,
.pricing-card .pricing-head {
	padding: 30px
}

@media (max-width:1199.98px) {

	.pricing-card .pricing-body,
	.pricing-card .pricing-head {
		padding: 25px
	}
}

.pricing-card .pricing-head {
	position: relative;
	overflow: hidden
}

.pricing-card .pricing-head h3 {
	font-size: 48px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0
}

@media (max-width:1199.98px) {
	.pricing-card .pricing-head h3 {
		font-size: 40px
	}
}

.pricing-card .pricing-head h3 sub {
	font-size: 16px;
	font-weight: 600;
	color: var(--body-color)
}

.pricing-card .pricing-head p {
	margin: 10px 0 0;
	font-size: 18px
}

.pricing-card .pricing-head .featured {
	text-align: center;
	padding: 10px 38px;
	position: absolute;
	right: -62px;
	top: 60px;
	transform: rotate(90deg)
}

.pricing-card .pricing-body ul li {
	font-weight: 500;
	color: var(--body-color)
}

.pricing-card.featured .pricing-body .btn-dark {
	background-color: var(--primary) !important
}

.category-item {
	padding: 20px
}

.category-item .product-img {
	margin-bottom: 20px;
	position: relative;
	overflow: hidden
}

.category-item .ct-list {
	margin: 20px 0
}

.category-item .ct-list li {
	font-weight: 500;
	margin-bottom: 7px;
	padding-left: 20px;
	color: var(--headings-color)
}

.category-item .ct-list li:before {
	background: url(../images/icons/arrow-c.png) no-repeat 0
}

.category-item .product-cta {
	padding: 0 0 20px
}

.category-item .product-cta:before {
	height: 1px;
	width: 220px;
	background-color: var(--theme-border);
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 33%
}

@media (min-width:768px) and (max-width:991.98px) {
	.category-item .product-cta:before {
		width: 115px
	}
}

.header-slider-nav {
	background: hsla(0, 0%, 100%, .1);
	border: 1px solid hsla(0, 0%, 100%, .2);
	margin-top: 60px;
	padding: 5px
}

.header-slider-nav .swiper-button-next,
.header-slider-nav .swiper-button-prev {
	position: relative;
	top: 11px;
	background: hsla(0, 0%, 100%, .2);
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	border-radius: 0;
	width: 48px;
	height: 48px
}

.header-slider-nav .swiper-button-next:hover,
.header-slider-nav .swiper-button-prev:hover {
	background-color: var(--primary)
}

.header-slider-nav .btn-black {
	background-color: var(--headings-color);
	color: var(--white);
	padding: 13px 28px
}

.header-slider-nav .btn-black:hover {
	background-color: var(--primary)
}

.category-sec:before {
	background: url(../images/square-sh.png) no-repeat;
	width: 50%;
	height: 50%
}

.category-sec:after {
	background: url(../images/square-sh.png) no-repeat 0 100%;
	width: 50%;
	right: 0;
	bottom: 0;
	position: absolute;
	content: "";
	height: 50%;
	z-index: -1
}

@media (min-width:992px) {
	.category-sec2 .cat-bg {
		width: 40%;
		z-index: 1;
		height: 100%;
		position: absolute
	}
}

.category-sec2 .cat-bg:before {
	background-color: var(--headings-color);
	opacity: .6;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
	mix-blend-mode: multiply
}

.category-sec2 .category-wrap {
	padding: 90px 0
}

.category-sec2 .category-wrap .single-cat {
	align-items: center
}

.category-sec2 .category-wrap .single-cat:not(:last-child) {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--theme-border)
}

.category-sec2 .category-wrap .single-cat .sc-info {
	max-width: 320px
}

.category-sec2 .category-wrap .single-cat .sc-info p {
	margin: 0
}

.category-sec2 .category-wrap .single-cat span {
	color: rgba(var(--body-rgb), .5)
}

.category-sec2 .category-wrap .single-cat h3 {
	margin: 40px 0 20px
}

.category-sec2 .cm-txt {
	height: 100%;
	padding: 120px 60px
}

.cat-page .category-entry .entry-content {
	padding: 35px 35px 40px
}

.category-bg {
	flex: 0 0 35.7%
}

.category-entry .entry-thumb:before {
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	z-index: 1;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

.category-entry .entry-thumb .cat-info {
	position: absolute;
	bottom: 10px;
	left: 30px;
	z-index: 2;
	opacity: 0;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out
}

.category-entry .entry-thumb .cat-info span {
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase
}

.category-entry .entry-thumb .cat-info h3 a,
.category-entry .entry-thumb .cat-info span {
	color: var(--white)
}

.category-entry .entry-content {
	padding: 35px 35px 75px;
	border-right: 1px solid var(--theme-border)
}

.category-entry .entry-content .link-btn,
.category-entry .entry-content p {
	margin-top: 30px
}

.category-entry .entry-content ul.ct-list li {
	color: var(--headings-color);
	margin-bottom: 10px
}

.category-entry .entry-content ul.ct-list li:before {
	content: "\f00c";
	font-family: Font Awesome\ 5 Free;
	font-weight: 900;
	margin-right: 10px;
	background: transparent
}

.category-entry:hover .entry-thumb:before {
	opacity: .7;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	filter: alpha(opacity=70)
}

.category-entry:hover .entry-thumb .cat-info {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	bottom: 30px
}

.category-sec .category-entry {
	background-color: var(--white)
}

.category-sec .category-entry .entry-content {
	border-right: none;
	padding: 30px 35px 40px
}

.category-sec .category-entry .entry-content p {
	margin-top: 15px
}

.category-sec3 .swiper-slide {
	width: 400px
}

.category-sec3 .swiper-slide-active .entry-thumb:before {
	opacity: .7;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	filter: alpha(opacity=70)
}

.category-sec3 .swiper-slide-active .entry-thumb .cat-info {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	bottom: 30px
}

@media (min-width:992px) {
	.category-sec3 .cat-nav {
		width: 405px;
		height: 348px;
		position: absolute;
		top: 0;
		right: 0;
		padding: 60px 110px 60px 60px
	}
}

.category-sec3 .cat-nav {
	padding: 30px 30px 70px
}

.category-sec3 .cat-nav .swiper-button-next,
.category-sec3 .cat-nav .swiper-button-prev {
	position: relative;
	top: 30px
}

.category-sec3 .cat-nav .swiper-button-next:hover,
.category-sec3 .cat-nav .swiper-button-prev:hover {
	background-color: var(--white);
	color: var(--primary)
}

.category-sec3 .cat-nav .swiper-button-next {
	left: 10px
}

.faq-accordion .accordion-item {
	border-bottom: 1px solid var(--theme-border);
	padding: 25px 0
}

.faq-accordion .accordion-item .accordion-body p:last-child {
	margin: 0
}

.faq-accordion .accordion-item .accordion-header {
	padding: 0;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	border-radius: 10px
}

.faq-accordion .accordion-item .accordion-button {
	border: 0;
	box-shadow: none !important;
	border-radius: 10px !important;
	font-size: 20px;
	font-weight: 500
}

.faq-accordion .accordion-item .accordion-button:after {
	background-image: none;
	content: "+";
	font-family: fontawesome;
	background: transparent;
	right: 0;
	color: var(--headings-color);
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.faq-accordion .accordion-item .accordion-button:focus {
	box-shadow: none
}

.faq-accordion .accordion-item .accordion-body {
	padding: 25px 40px 0 0
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0
}

.faq-accordion .accordion-item.active {
	background: transparent
}

.faq-accordion .accordion-button:not(.collapsed) {
	border-bottom: 0;
	box-shadow: none;
	background-color: transparent;
	outline: 0 none
}

.faq-accordion .accordion-button:not(.collapsed):after {
	content: "\f068"
}

.faq-sec {
	overflow: hidden
}

.faq-sec .parallax-overly {
	background-color: var(--light);
	opacity: .97;
	mix-blend-mode: normal
}

.faq-sec .faq-bg {
	position: absolute;
	right: 0;
	width: 45%;
	height: 100%;
	bottom: 0;
	background-size: contain;
	background-position: 0;
	background-repeat: no-repeat
}

.faq-sec .faq-bg:after {
	content: "";
	position: absolute;
	top: 0;
	left: -13%;
	width: 113%;
	height: 100%;
	background: url(../images/skill-dots.png);
	background-color: var(--mute);
	clip-path: polygon(0 0, 100% 1%, 100% 100%, 39% 100%);
	z-index: -1
}

@media (max-width:991.98px) {
	.faq-sec .faq-bg {
		display: none
	}
}

.faq-sec .faq-content {
	padding: 120px 60px 110px 0
}

@media (max-width:991.98px) {
	.faq-sec .faq-content {
		padding: 70px 10px
	}
}

.post-header {
	margin: 40px 0 30px
}

.post-header .ph-inner img {
	margin-right: 20px
}

@media (max-width:767.98px) {
	.post-header .pm-info {
		margin: 20px 0
	}
}

.post-header .pm-info span {
	font-size: 14px
}

.post-header .pm-info h5 {
	font-size: 20px;
	font-weight: 500
}

.post-single h1 {
	font-weight: 700;
	margin-bottom: 40px
}

@media (min-width:768px) {
	.post-single h1 {
		font-size: 50px
	}
}

.post-single .post-thumb,
.post-single .post-thumb img {
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	border-radius: 30px
}

@media (max-width:575.98px) {
	.post-single .post-thumb {
		height: 250px
	}

	.post-single .post-thumb img {
		height: 100%;
		width: 100%;
		object-fit: cover
	}
}

.post-single ul.check {
	max-width: 800px;
	margin: 40px 0;
	list-style: none;
	padding-left: 15px
}

.post-single ul.check li {
	font-size: 16px
}

.post-single ul.check li:before {
	font-size: 16px;
	left: -30px
}

.category-sec2 .category-wrap .single-cat .post-single h3,
.post-single .category-sec2 .category-wrap .single-cat h3,
.post-single .h4,
.post-single>p,
.post-single h3 {
	margin: 0 0 30px
}

.post-single>p {
	color: #42454b
}

@media (max-width:767.98px) {
	.post-single {
		overflow: hidden
	}

	.post-single h1 {
		font-size: 32px
	}

	.post-single .p-gallery img {
		margin-bottom: 15px
	}

	.post-single ul {
		padding-left: 15px
	}
}

.article-footer {
	padding: 35px 0;
	border-top: 1px solid var(--theme-border);
	border-bottom: 1px solid var(--theme-border)
}

.article-footer h4 {
	margin-bottom: 0
}

@media (max-width:767.98px) {
	.article-footer h4 {
		margin: 0 0 20px !important
	}
}

.article-footer .tagcloude a {
	border: 1px solid var(--theme-border);
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	border-radius: 30px;
	padding: 7px 20px;
	margin-right: 10px;
	display: inline-block
}

@media (max-width:991.98px) {
	.article-footer .tagcloude a {
		margin-bottom: 10px
	}
}

.article-footer .tagcloude a:hover {
	background-color: var(--primary);
	color: var(--white);
	border: 1px solid var(--primary)
}

.single-post-page .social-share.outline a {
	color: var(--headings-color)
}

.single-post-page .social-share.outline a:hover {
	color: var(--white)
}

@media (min-width:576px) {
	.p-gallery img {
		max-width: 48%
	}
}

@media (min-width:576px) {
	blockquote {
		padding: 30px 60px 30px 85px !important
	}
}

blockquote:before {
	background: url(../images/quote2.png) no-repeat 0 0;
	left: 0;
	top: 30px
}

blockquote p {
	font-size: 24px;
	color: var(--headings-color);
	border-radius: 5px;
	line-height: 38px;
	font-weight: 600;
	margin-bottom: 0
}

blockquote cite {
	font-size: 20px;
	padding-left: 120px
}

blockquote cite:before {
	height: 1px;
	width: 100px;
	background-color: var(--headings-color);
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

@media (max-width:575.98px) {
	blockquote {
		padding: 20px;
		margin-top: 50px
	}

	blockquote:before {
		top: -30px
	}
}

.blog-gallery img {
	max-width: 50%
}

.post-comments>ol {
	padding-left: 0
}

.post-comments ol {
	list-style: none
}

.post-comments .comment-entry {
	position: relative;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--theme-border)
}

.post-comments .comment-entry .comment-thumb {
	flex: 0 0 5.625rem
}

@media (max-width:991.98px) {
	.post-comments .comment-entry .comment-thumb {
		margin-right: 1.25rem
	}
}

.post-comments .comment-entry .commentor {
	padding-bottom: 30px
}

.post-comments .comment-entry .commentor p {
	margin: 0;
	max-width: 900px
}

.post-comments .comment-entry .commentor .reply {
	position: absolute;
	right: 0;
	top: 10px;
	font-size: 14px;
	text-transform: uppercase
}

.post-comments .comment-entry .commentor .reply:hover {
	color: var(--primary)
}

@media (max-width:575.98px) {
	.post-comments .comment-entry .comment-thumb {
		margin-bottom: .9375rem
	}

	.post-comments .comment-entry .commentor:before {
		top: -.625rem;
		left: .9375rem
	}
}

.comment-form {
	max-width: 900px
}

.contact-card {
	background-color: var(--white);
	border: 1px solid var(--theme-border);
	padding: 30px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	border-radius: 10px;
	position: relative;
	gap: 20px
}

.contact-card .team-entry .team-thumb .team-share span.link-hover,
.contact-card span.icon,
.contact-card span.icon-lg,
.contact-card span.icon-xl,
.contact-card span.icon-xs,
.team-entry .team-thumb .team-share .contact-card span.link-hover {
	width: 70px;
	height: 70px
}

.contact-card .contact-info ul {
	padding: 0;
	list-style: none;
	margin: 0 0 10px
}

.contact-card .contact-info ul li {
	font-size: 14px
}

.contact-card .contact-info ul li strong {
	font-size: 16px
}

.contact-card .contact-info .ct-url {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px
}

.contact-card h4.card-meta {
	position: absolute;
	right: 5px;
	bottom: 0;
	color: rgba(216, 221, 225, .5);
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 500
}

@media (max-width:1199.98px) {
	.contact-card {
		padding: 20px;
		gap: 15px
	}

	.contact-card .contact-info .ct-url {
		font-size: 12px
	}
}

.contact-form .form-inner {
	max-width: 630px;
	padding: 60px;
	background: rgba(2, 14, 40, .4);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: inset 0 4px 6px hsla(0, 0%, 100%, .25), inset 0 -4px 6px rgba(0, 0, 0, .35)
}

.contact-form .form-inner .form-group {
	position: relative
}

.contact-form .form-inner .form-group .nice-select,
.contact-form .form-inner .form-group input,
.contact-form .form-inner .form-group textarea {
	border-radius: 10px
}

.contact-form .form-inner .form-group i {
	position: absolute;
	color: var(--primary);
	right: 30px;
	top: 50%;
	transform: translateY(-50%)
}

.contact-form .form-inner .form-group.top-0 i {
	top: 28px
}

.contact-sec {
	overflow: hidden
}

.contact-sec .contact-form-wrap {
	margin-top: 60px
}

.contact-sec .contact-form-wrap iframe {
	height: 670px
}

@media (max-width:991.98px) {
	.contact-sec .contact-form-wrap iframe {
		height: 450px
	}
}

@media (min-width:768px) and (max-width:991.98px) {
	.contact-sec .contact-form-wrap .contact-form {
		margin-top: 30px
	}

	.contact-sec .contact-form-wrap .contact-form .form-inner {
		max-width: 55%;
		padding: 30px
	}
}

@media (max-width:575.98px) {
	.contact-sec .contact-form-wrap .contact-form {
		margin-top: 20px
	}

	.contact-sec .contact-form-wrap .contact-form .form-inner {
		max-width: 100%;
		padding: 30px
	}
}

.contact-sec .contact-tabs {
	padding: 6px 0
}

.contact-sec .contact-tabs:after,
.contact-sec .contact-tabs:before {
	height: 1px;
	width: 150%;
	background-color: var(--theme-border);
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translate(-50%)
}

.contact-sec .contact-tabs:after {
	position: absolute;
	content: "";
	bottom: 0
}

.contact-sec .contact-tabs .nav-tabs {
	border: 0
}

.contact-sec .contact-tabs .nav-tabs .nav-item {
	width: 22%
}

.contact-sec .contact-tabs .nav-tabs .nav-item .nav-link {
	border: 0;
	padding: 15px 30px;
	text-align: left;
	font-size: 20px;
	font-weight: 600;
	width: 100%
}

.contact-sec .contact-tabs .nav-tabs .nav-item .nav-link:before {
	width: 1px;
	background-color: var(--theme-border)
}

.contact-sec .contact-tabs .nav-tabs .nav-item .nav-link i {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%)
}

@media (max-width:991.98px) {
	.contact-sec .contact-tabs .nav-tabs .nav-item .nav-link {
		padding: 15px;
		font-size: 16px
	}
}

.contact-sec .contact-tabs .nav-tabs .nav-item .nav-link.active,
.contact-sec .contact-tabs .nav-tabs .nav-item .nav-link:focus,
.contact-sec .contact-tabs .nav-tabs .nav-item .nav-link:hover {
	background-color: transparent;
	color: var(--primary);
	border: 0
}

.errot-txt {
	margin: 60px 0 0
}

.errot-txt p {
	max-width: 450px;
	margin: 0 auto 40px
}

.errot-txt i {
	margin-right: 10px
}

.errot-txt .btn {
	padding: 15px 28px
}

.account-form {
	padding: 60px
}

@media (max-width:991.98px) {
	.account-form {
		padding: 30px
	}
}

/*! Shop */
.product-card {
	padding: 20px;
	border-radius: 12px;
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s ease;
	transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.4s ease
}

.product-card:hover {
	-webkit-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	transform: translateY(-6px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
	background-color: var(--white) !important
}

.product-card .product-img {
	overflow: hidden
}

.product-card .product-cta {
	right: 20px;
	z-index: 2;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease
}

.product-card .product-cta a {
	background-color: var(--white);
	margin: 10px 0
}

.product-card .product-cta a i {
	color: var(--headings-color);
	display: table-cell;
	vertical-align: middle
}

.product-card .product-content {
	padding: 20px
}

.product-card .product-content .pc-head {
	padding-bottom: 20px
}

.product-card .product-content .spec-grid {
	display: flex;
	flex-wrap: wrap;
	row-gap: 20px;
	max-width: 500px;
	padding-top: 20px
}

.product-card .product-content .spec-grid .spec-item {
	flex: 0 0 50%;
	display: flex;
	flex-direction: column
}

.product-nav {
	padding-top: 70px
}

.product-nav .swiper-button-next,
.product-nav .swiper-button-prev {
	position: relative
}

.product-nav .swiper-button-prev {
	left: -10px
}

.product-nav .swiper-pagination {
	position: relative;
	background: var(--white);
	width: 75px
}

.product-nav .swiper-pagination span {
	background-color: transparent;
	width: auto;
	height: auto;
	margin: 0 !important
}

.progress-bar-container {
	max-width: calc(100% - 250px);
	height: 3px;
	background: #e0e0e0;
	position: relative;
	overflow: hidden;
	top: -40px;
	margin: 0 auto 0 100px
}

.progress-bar-container .progress-bar-fill {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: var(--primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .6s ease
}

.product-entry2 {
	min-height: 550px;
	position: relative
}

@media (max-width:767.98px) {
	.product-entry2 {
		min-height: 350px;
		margin-bottom: 20px
	}
}

.product-entry2 a.product-thumb {
	display: block;
	width: 100%;
	height: 100%;
	z-index: 1;
	position: absolute;
	transform: scale(1);
	will-change: transform;
	background-size: cover;
	transition: transform .7s cubic-bezier(.165, .84, .44, 1)
}

.product-entry2 a.product-thumb:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: var(--dark);
	opacity: .3;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
	filter: alpha(opacity=30);
	left: 0;
	top: 0;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out
}

.product-entry2 .product-info {
	bottom: 40px;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translate(-50%);
	z-index: 3;
	width: calc(100% - 40px)
}

.product-entry2 .product-info h3 {
	font-size: 30px;
	margin-top: 5px
}

@media (max-width:1399.98px) {
	.product-entry2 .product-info h3 {
		font-size: 26px
	}
}

.product-entry2 .product-info span {
	text-transform: uppercase
}

.product-entry2 .product-info h3 a,
.product-entry2 .product-info span a {
	color: var(--white)
}

.product-entry2:hover .product-thumb {
	transform: scale(1.08);
	z-index: 2;
	transition: transform .5s ease
}

.product-entry2:hover .product-thumb:after {
	opacity: .7;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	filter: alpha(opacity=70)
}

.product-entry2:hover .product-info h3 a {
	color: var(--primary)
}

.product-entry3 {
	box-shadow: 0 10px 50px 0 rgba(0, 0, 0, .08);
	padding: 20px
}

.product-entry3 .entry-thumb {
	margin-bottom: 20px
}

.product-entry3 .entry-thumb span.badge {
	position: absolute;
	left: 20px;
	top: 20px;
	padding: 9px 20px;
	font-weight: 500;
	border-radius: 5px;
	font-size: 14px;
	z-index: 2
}

.product-entry3 .entry-thumb span.badge.sale {
	background-color: var(--primary)
}

.product-entry3 .entry-thumb span.badge.rent {
	background-color: var(--dark)
}

.product-entry3 .entry-footer {
	margin-top: 30px;
	padding-top: 30px
}

.product-entry3 .entry-footer span {
	color: var(--headings-color);
	font-size: 14px
}

.product-entry3 .entry-footer span:first-child {
	background-color: var(--primary);
	padding: 3px 20px;
	color: var(--white)
}

/*! Single Product */
.sliderCover {
	height: 420px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

@media (max-width: 991.98px) {
	.sliderCover {
		height: 350px;
	}
}

@media (max-width: 575.98px) {
	.sliderCover {
		height: 250px;
	}
}

.sliderCover .swiper-slide a {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	cursor: -webkit-zoom-in;
	cursor: zoom-in;
	border-radius: 12px
}

.sliderCover .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
	transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1)
}

.sliderCover .swiper-slide:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1)
}

/* Custom Navigation Buttons for Slider Cover */
.sliderCover .swiper-button-prev,
.sliderCover .swiper-button-next {
	width: 44px;
	height: 44px;
	background-color: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	color: var(--headings-color);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.sliderCover .swiper-button-prev:after,
.sliderCover .swiper-button-next:after {
	font-size: 16px !important;
	font-weight: bold
}

.sliderCover .swiper-button-prev:hover,
.sliderCover .swiper-button-next:hover {
	background-color: var(--primary);
	color: var(--white);
	transform: scale(1.05)
}

.sliderThumbs {
	margin-top: 15px
}

.sliderThumbs .swiper-slide {
	opacity: .5;
	transition: opacity 0.3s ease;
	cursor: pointer
}

.sliderThumbs .swiper-slide-thumb-active {
	opacity: 1
}

.sliderThumbs .swiper-slide img {
	width: 100%;
	height: 75px;
	object-fit: cover;
	border-radius: 8px;
	border: 2px solid transparent;
	transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease
}

.sliderThumbs .swiper-slide:hover img {
	transform: scale(1.02)
}

.sliderThumbs .swiper-slide-thumb-active img {
	border-color: var(--primary);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1)
}

.single-equipment .product-title {
	font-size: 30px
}

.single-equipment .product-head {
	margin-bottom: 50px
}

.single-equipment .product-head p {
	margin-top: 30px
}

.single-equipment P {
	margin-bottom: 30px
}

@media (min-width:768px) {
	.single-equipment .list-flex {
		display: flex;
		flex-wrap: wrap
	}

	.single-equipment .list-flex li {
		flex: 0 0 33.33%
	}
}

@media (max-width:991.98px) {
	.equip-gallery img {
		margin-top: 20px
	}
}

.booking-widget .widget-head {
	padding: 0 0 20px
}

.booking-widget .widget-head .sm-title {
	color: rgba(var(--white-rgb), .95);
	background: linear-gradient(180deg, #370000, #1a1501);
	padding: 20px 5px;
	margin-bottom: 20px;
	font-size: 20px
}

.booking-widget .widget-head sup {
	color: var(--primary)
}

.booking-widget .widget-head sub {
	font-size: 17px;
	font-weight: 400;
	text-transform: capitalize
}

.booking-widget .booking-form {
	padding: 30px
}

.booking-widget .booking-form .form-group {
	margin-bottom: 10px;
	padding-bottom: 10px;
	color: var(--headings-color);
	position: relative;
	border-bottom: 1px solid var(--theme-border)
}

.booking-widget .booking-form .form-group .nice-select,
.booking-widget .booking-form .form-group input[type=text] {
	background-color: transparent;
	border: 0
}

.booking-widget .booking-form .form-group i {
	right: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.booking-widget .booking-form .form-group input.qty_button {
	background-color: var(--white);
	font-size: 30px;
	flex: 0 0 40px
}

.booking-widget .booking-form .form-group input.input-text.qty.text,
.booking-widget .booking-form .form-group input.qty_button {
	text-align: center;
	color: var(--headings-color)
}

.booking-widget .booking-form .form-group input.input-text.qty.text::placeholder,
.booking-widget .booking-form .form-group input.qty_button::placeholder {
	color: var(--headings-color)
}

.booking-widget .booking-form .form-group input.input-text.qty.text {
	font-size: 18px
}

.booking-widget .booking-form .form-check>div {
	margin-bottom: 10px
}

.booking-widget .price-options {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(var(--white-rgb), .15);
	display: flex;
	gap: 20px;
	justify-content: center
}

.booking-widget .price-options span {
	color: rgba(var(--white-rgb), .6)
}

@media (max-width:575.98px) {
	.booking-widget .price-options span {
		font-size: 14px
	}
}

.booking-widget .option-list .list-item:not(:last-child) {
	margin-bottom: 10px
}

.booking-widget .option-list .list-item h6 {
	margin: 0;
	line-height: 1.2
}

.booking-widget .option-list .list-item h6 small {
	font-family: var(--font-family-base);
	display: block;
	font-size: 10px;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--body-color2)
}

/*! Cart */
.woocommerce {
	background-color: var(--mute);
	padding: 30px
}

@media (max-width:575.98px) {
	.woocommerce {
		padding: 10px
	}

	.woocommerce .woocommerce-cart-form {
		overflow-x: auto;
		margin-bottom: 30px;
		overflow-y: hidden
	}
}

.woocommerce .shop_table {
	text-align: left;
	width: 100%;
	border-collapse: separate;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	border-radius: 10px;
	border-spacing: 0 20px
}

.woocommerce .shop_table thead tr th {
	padding: 15px 20px;
	background-color: var(--white);
	font-size: 18px;
	font-weight: 600;
	color: var(--headings-color)
}

@media (max-width:575.98px) {
	.woocommerce .shop_table thead tr th {
		font-size: 18px;
		padding: 20px
	}
}

.woocommerce .shop_table thead tr th:first-child,
.woocommerce .shop_table thead tr th:last-child {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	border-radius: 10px
}

.woocommerce .shop_table tr {
	background-color: var(--white);
	color: var(--secondary)
}

.woocommerce .shop_table tr td:first-child {
	border-left-style: solid;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px
}

.woocommerce .shop_table tr td:last-child {
	border-right-style: solid;
	border-bottom-right-radius: 10px;
	border-top-right-radius: 10px
}

.woocommerce .shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item td {
	font-weight: 600;
	align-items: center;
	vertical-align: middle
}

@media (max-width:575.98px) {
	.woocommerce .shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item td {
		font-size: 14px
	}
}

.woocommerce .shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item td.product-thumbnail {
	width: 15%;
	padding: 15px 0 15px 15px
}

@media (max-width:575.98px) {
	.woocommerce .shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item td.product-thumbnail {
		padding: 5px 0 5px 5px
	}

	.woocommerce .shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item td.product-thumbnail img {
		max-width: 100%
	}
}

.woocommerce .shop_table td.product-quantity input {
	padding: 0;
	width: 40px;
	margin: 0 5px;
	text-align: center
}

.woocommerce th {
	font-weight: 700;
	padding: 9px 12px;
	line-height: 1.5em
}

.woocommerce td.product-remove a.remove {
	height: 25px;
	width: 25px;
	line-height: 25px;
	background: var(--primary);
	display: inline-block;
	text-align: center;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	border-radius: 50px
}

.woocommerce td.product-remove a.remove i {
	color: var(--white);
	font-weight: 600;
	font-size: 13px
}

@media (max-width:575.98px) {

	.woocommerce .table.shop_table.cart>tbody>tr>td.product-price,
	.woocommerce .table.shop_table.cart>tbody>tr>th.product-price,
	.woocommerce .table.shop_table.cart>tfoot>tr>td.product-price,
	.woocommerce .table.shop_table.cart>tfoot>tr>th.product-price,
	.woocommerce .table.shop_table.cart>thead>tr>td.product-price,
	.woocommerce .table.shop_table.cart>thead>tr>th.product-price,
	.woocommerce table.shop_table.cart>tbody>tr>td.product-price,
	.woocommerce table.shop_table.cart>tbody>tr>th.product-price,
	.woocommerce table.shop_table.cart>tfoot>tr>td.product-price,
	.woocommerce table.shop_table.cart>tfoot>tr>th.product-price,
	.woocommerce table.shop_table.cart>thead>tr>td.product-price,
	.woocommerce table.shop_table.cart>thead>tr>th.product-price {
		display: none
	}
}

.woocommerce .coupon {
	position: relative;
	flex: 0 0 50%
}

.woocommerce .coupon input {
	border: 1px solid var(--theme-border);
	padding: 14px;
	font-size: 15px
}

.woocommerce .coupon input:focus {
	outline: 0 none;
	box-shadow: none
}

.woocommerce .coupon .btn {
	position: absolute;
	right: -2px;
	border-radius: 5px;
	top: -1px;
	font-size: 15px;
	height: 101%;
	line-height: 1
}

@media (max-width:575.98px) {
	.woocommerce .coupon {
		flex: 0 0 100%
	}
}

.woocommerce .shop_table tr:last-child {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0
}

.cart-quanty {
	display: flex;
	justify-content: space-between;
	width: 100px;
	padding: 4px 13px;
	background-color: var(--mute);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	border-radius: 5px;
	font-size: 15px
}

.cart-quanty input {
	padding: 0;
	background: transparent;
	text-align: center;
	font-weight: 600
}

.cart-quanty i {
	cursor: pointer
}

@media (max-width:575.98px) {
	.cart-totals {
		margin-top: 30px
	}
}

@media (min-width:576px) and (max-width:767.98px) {
	.cart-totals {
		margin-top: 30px
	}
}

.cart-totals table {
	width: 100%;
	border-spacing: 0 10px;
	border-collapse: separate
}

.cart-totals table th {
	color: var(--headings-color)
}

.cart-totals table td {
	font-weight: 500
}

.cart-totals table tbody tr td {
	padding: 15px 10px;
	text-align: right
}

.cart-totals table tr:first-child {
	font-weight: 700
}

.cart-totals table tr.product-list {
	background: #fff
}

.cart-totals table tr.product-list td,
.cart-totals table tr.product-list th {
	padding: 10px 15px;
	color: var(--headings-color)
}

.cart-totals table tr.product-list th {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px
}

.cart-totals table tr.product-list td {
	border-bottom-right-radius: 10px;
	border-top-right-radius: 10px;
	font-size: 20px
}

/*! Checkout */
@media (max-width:575.98px) {
	.order-summery {
		margin-top: 30px
	}
}

@media (min-width:576px) and (max-width:767.98px) {
	.order-summery {
		margin-top: 30px
	}
}

.coupon-wrap input {
	flex: 0 0 65%
}

@media (max-width:991.98px) {
	.coupon-wrap {
		margin-bottom: 20px
	}

	.coupon-wrap input {
		flex: 0 0 55%
	}
}

.checkout-coupon h6 {
	margin-bottom: 0
}

.checkout-coupon h6 button {
	border: 0;
	color: var(--tertiary);
	background: transparent
}

.checkout-coupon form {
	max-width: 600px
}

.checkout-coupon form .btn {
	border-radius: 5px
}

form.form.checkout-form label {
	margin-bottom: 5px;
	font-weight: 500;
	color: var(--headings-color);
	font-size: 17px
}

form.form.checkout-form select {
	display: block !important;
	width: 100%;
	border: 1px solid var(--theme-border);
	color: var(--headigns-color);
	background-color: var(--white)
}

form.form.checkout-form input,
form.form.checkout-form select {
	font-size: 16px;
	margin-bottom: 30px
}

form.form.checkout-form input[type=checkbox] {
	width: auto
}

.payment-option {
	margin-bottom: 30px
}

.payment-option .accordion-collapse {
	padding-top: 10px
}

/*# sourceMappingURL=style.css.map */
.collections-showcase {
	/*background:#f5f5f5;*/
	padding: 90px 0 80px;
}

.collections-showcase .container {
	width: min(1240px, calc(100% - 48px));
	margin: 0 auto;
}

.collections-grid {
	display: grid;
	grid-template-columns: 0.1fr 1.9fr;
	gap: 48px;
	align-items: start;
}

.collections-intro h2 {
	margin: 0;
	color: #111;
	font-size: clamp(42px, 5vw, 72px);
	line-height: 0.95;
	font-weight: 700;
	letter-spacing: -1px;
}

.blob-logo {
	margin-top: 42px;
	width: 112px;
	height: 112px;
	position: relative;
}

.blob-logo span {
	position: absolute;
	border: 3px solid #f2a100;
	border-radius: 50%;
}

.blob-logo span:nth-child(1) {
	width: 74px;
	height: 74px;
	left: 0;
	top: 18px;
}

.blob-logo span:nth-child(2) {
	width: 62px;
	height: 62px;
	right: 6px;
	top: 0;
}

.blob-logo span:nth-child(3) {
	width: 52px;
	height: 52px;
	right: 14px;
	bottom: 8px;
}

.collections-cards {

	display: grid;
	grid-template-columns: repeat(4, minmax(120px, 1fr));
	gap: 14px;
	margin-top: 60px;
}

.collection-card {
	display: flex;
	align-items: center;
	justify-content: center;
	/* background: var(--theme-border); */
	border: 1px solid #d8d8d8;
	/*padding: 20px;*/
	height: 120px;
	/* card height */
	transition: .3s ease;
	overflow: hidden;
}

.collection-card img {
	max-width: 100%;
	/*max-height: 100px;*/
	/* logo height */
	width: auto;
	height: auto;
	object-fit: contain;
	transition: .3s ease;
}

.collection-card:hover {
	background: #fff;
	border-color: #0a8bb5;
}

.collection-card:hover img {
	transform: scale(1.08);
}

.collection-card .title {
	color: #111;
	font-size: 26px;
	line-height: 1;
	font-weight: 700;
}

.collection-card .sub {
	color: #111;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 4px;
}

.c-3d {
	background: #b39b2f;
}

.c-double {
	background: #90aeb0;
}

.c-glossydecor {
	background: #c8d5bf;
}

.c-matt {
	background: #d9ccb9;
}

.c-satvario {
	background: #d8d2d2;
}

.c-book {
	background: #d89bc8;
}

.c-endless {
	background: #c7bb8b;
}

.c-glossy {
	background: #e6a077;
}

.c-multy {
	background: #6db7d8;
}

.c-crock {
	background: #e7e7e7;
}

.c-carving {
	background: #e7a4a4;
}

.c-endless2 {
	background: #4b71bb;
}

.c-golden {
	background: #c77a4d;
}

.c-plain {
	background: #5572b3;
}

.c-paper {
	background: #b55454;
}

.footer-logo-slider {
	/*margin-top:40px;*/
	padding-top: 30px;
	padding-bottom: 30px;
	/*border-top:1px solid rgba(255,255,255,.15);*/
	border-bottom: 1px solid rgba(255, 255, 255, .15);
	overflow: hidden;
}

.footerLogoSwiper {
	width: 1320px !important;
}

.footerLogoSwiper .swiper-wrapper {
	align-items: center;
}

.footerLogoSwiper .swiper-slide {
	width: 170px !important;
	/* Card width */
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #555;
	padding: 10px;
}

.footerLogoSwiper .swiper-slide img {
	max-width: 130px;
	/*max-height: 80px;*/
	width: auto;
	height: auto;
	object-fit: contain;
}

.designer-link {
	color: #0088a3 !important;
	/* Normal color */
	text-decoration: none;
	font-weight: 400;
	transition: color 0.3s ease;
}

.designer-link:hover {
	color: #fff;
	/* Hover par white */
}

@media (max-width:1024px) {
	.collections-grid {
		grid-template-columns: 1fr;
	}

	.collections-cards {
		grid-template-columns: repeat(3, minmax(120px, 1fr));
	}
}

@media (max-width:640px) {
	.collections-showcase {
		padding: 70px 0 60px;
	}

	.collections-showcase .container {
		width: min(100%, calc(100% - 32px));
	}

	.collections-cards {
		grid-template-columns: repeat(2, minmax(120px, 1fr));
		gap: 12px;
	}

	.collection-card {
		height: 72px;
	}

	.collection-card .title {
		font-size: 22px;
	}
}

/* Existing */
.quote-sec3 {
	position: relative;
	overflow: hidden;
}

/* Reverse Section */
.quote-sec3-reverse {
	position: relative;
	overflow: hidden;
}

/* Background Image */
.quote-sec3-reverse::after {
	content: "";
	position: absolute;
	left: 0;
	right: auto;
	top: 50%;
	width: 60%;
	height: 90%;
	transform: translateY(-50%);
	background: url("../images/main-60.png") no-repeat center center;
	background-size: cover;
	z-index: -2;
}

/* White Shape */
.quote-sec3-reverse::before {
	content: "";
	position: absolute;
	left: 40%;
	top: 50%;
	/*width: 320px;*/
	height: 100%;
	transform: translateY(-50%) scaleX(-1);
	/*background: url(../images/skill-dots.png);*/
	clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
	z-index: -1;
}

/* Right Side Content */
.quote-sec3-reverse .row {
	justify-content: flex-end;
}

.quote-sec3-reverse .quote-content {
	margin-left: 60%;
	/*max-width: 500px;*/
	position: relative;
	z-index: 2;
}

.post-thumb {
	text-align: center;
}

.post-thumb img {

	max-width: 100%;
	height: auto;
	display: inline-block;
}

/* Export Page Brand Marquee Slider Styles */
.brandMarqueeSwiper .swiper-wrapper {
	transition-timing-function: linear !important;
}

.brands-logo {
	background: #ffffff;
	border: 1px solid #d8dde1;
	border-radius: 12px;
	padding: 20px;
	width: 170px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.brands-logo:hover {
	border-color: var(--primary);
	box-shadow: 0 8px 16px rgba(0, 136, 164, 0.1);
}

.brands-logo img {
	width: 85px;
	height: 56px;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	border: 2px solid #e2e8f0;
	transition: border-color 0.3s ease;
}

.brands-logo:hover img {
	border-color: var(--primary);
}

.brands-logo .flag-name {
	text-transform: capitalize;
	color: #040618;
	font-weight: 700;
	font-family: var(--font-family-headings);
	font-size: 1rem;
	margin-top: 15px !important;
}

/* Download / Catalogue Page Styles */
.catalogue-card {
	background-color: var(--white);
	border: 1px solid #d8dde1;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.catalogue-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 136, 164, 0.12);
	border-color: var(--primary);
}

.catalogue-cover {
	height: 220px;
	background: linear-gradient(135deg, #040618 0%, #0088a4 100%);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
	text-align: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.catalogue-cover::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 80%);
	pointer-events: none;
}

/* Book fold effect */
.catalogue-cover::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 15px;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.catalogue-cover .badge-format {
	position: absolute;
	top: 15px;
	right: 15px;
	background-color: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 5px 10px;
	border-radius: 30px;
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.catalogue-cover .cover-title {
	font-family: var(--font-family-headings);
	font-size: 1.4rem;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: 1px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	margin: 0;
}

.catalogue-cover .cover-subtitle {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 5px;
}

.catalogue-cover .cover-icon {
	color: rgba(255, 255, 255, 0.2);
	font-size: 4rem;
	position: absolute;
	bottom: -10px;
	right: -10px;
	transform: rotate(-15deg);
	transition: all 0.4s ease;
}

.catalogue-card:hover .catalogue-cover .cover-icon {
	transform: rotate(-5deg) scale(1.1);
	color: rgba(255, 255, 255, 0.35);
}

.catalogue-info {
	padding: 25px 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.catalogue-info .title {
	font-family: var(--font-family-headings);
	font-size: 1.15rem;
	font-weight: 700;
	color: #040618;
	margin-bottom: 5px;
}

.catalogue-info .meta-size {
	font-size: 0.85rem;
	color: #6c757d;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.btn-download-cat {
	color: #040618;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid #d8dde1;
	padding: 10px 15px;
	font-size: 0.8rem;
	cursor: pointer;
	font-weight: 700;
	background: transparent;
	position: relative;
	transition: all 0.4s ease;
	overflow: hidden;
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex-grow: 1;
	width: 50%;
}

.btn-download-cat::before {
	content: "";
	position: absolute;
	height: 100%;
	width: 0%;
	top: 0;
	left: -40px;
	transform: skewX(45deg);
	background-color: var(--primary);
	z-index: -1;
	transition: all 0.4s ease;
}

.btn-download-cat:hover {
	color: #ffffff !important;
	border-color: var(--primary);
}

.btn-download-cat:hover::before {
	width: 160%;
}

.btn-download-cat.primary {
	background-color: var(--primary);
	border-color: var(--primary);
	color: #ffffff;
}

.btn-download-cat.primary::before {
	background-color: #040618;
}

.btn-download-cat.primary:hover {
	color: #ffffff !important;
	border-color: #040618;
}

.btn-download-cat.secondary {
	border-color: #040618;
	color: #040618;
}

.btn-download-cat.secondary::before {
	background-color: #040618;
}

.btn-download-cat.secondary:hover {
	color: #ffffff !important;
	border-color: #040618;
}

/* ==============================
   Tile Calculator Page
   ============================== */
.calc-wrapper {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.calc-form-panel {
	padding: 40px;
	border-right: 1px solid #e2e8f0;
}

.calc-result-panel {
	background: linear-gradient(160deg, #040618 0%, #0d1f3c 60%, #0088a4 100%);
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.calc-form-group {
	margin-bottom: 22px;
}

.calc-form-group label {
	font-family: var(--font-family-headings);
	font-weight: 700;
	font-size: 0.9rem;
	color: #040618;
	display: block;
	margin-bottom: 8px;
	letter-spacing: 0.3px;
}

.calc-form-group .unit-label {
	font-size: 0.78rem;
	color: #6c757d;
	font-weight: 500;
}

.calc-input {
	width: 100%;
	padding: 12px 16px;
	border: 1.5px solid #d8dde1;
	border-radius: 8px;
	font-family: var(--font-family-headings);
	font-size: 0.95rem;
	color: #040618;
	background: #f8fafc;
	transition: border-color 0.3s, box-shadow 0.3s;
	outline: none;
}

.calc-input:focus {
	border-color: #0088a4;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(0, 136, 164, 0.12);
}

.calc-select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230088a4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px;
	padding-right: 40px;
	cursor: pointer;
}

.unit-toggle {
	display: inline-flex;
	border: 1.5px solid #d8dde1;
	border-radius: 8px;
	overflow: hidden;
}

.unit-toggle button {
	padding: 10px 20px;
	background: transparent;
	border: none;
	font-family: var(--font-family-headings);
	font-size: 0.85rem;
	font-weight: 700;
	color: #6c757d;
	cursor: pointer;
	transition: all 0.3s;
	border-right: 1px solid #d8dde1;
}

.unit-toggle button:last-child {
	border-right: none;
}

.unit-toggle button.active {
	background: #0088a4;
	color: #fff;
}

.btn-calculate {
	width: 100%;
	padding: 16px;
	background: linear-gradient(135deg, #0088a4, #006c85);
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-family: var(--font-family-headings);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
}

.btn-calculate::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #040618, #0d1f3c);
	transition: left 0.4s ease;
	z-index: 0;
}

.btn-calculate span,
.btn-calculate i {
	position: relative;
	z-index: 1;
}

.btn-calculate:hover::before {
	left: 0;
}

.btn-reset {
	width: 100%;
	padding: 12px;
	background: transparent;
	color: #6c757d;
	border: 1.5px solid #d8dde1;
	border-radius: 8px;
	font-family: var(--font-family-headings);
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	margin-top: 10px;
}

.btn-reset:hover {
	border-color: #040618;
	color: #040618;
}

/* Result Panel */
.result-title {
	font-family: var(--font-family-headings);
	font-size: 1.1rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 30px;
}

.result-item {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 20px 24px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	backdrop-filter: blur(5px);
	transition: background 0.3s;
}

.result-item:hover {
	background: rgba(255, 255, 255, 0.12);
}

.result-item .r-label {
	font-family: var(--font-family-headings);
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.65);
	font-weight: 600;
}

.result-item .r-value {
	font-family: var(--font-family-headings);
	font-size: 1.8rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1;
}

.result-item .r-unit {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.45);
	display: block;
	text-align: right;
	margin-top: 3px;
}

.result-item.highlight {
	background: rgba(0, 136, 164, 0.35);
	border-color: rgba(0, 136, 164, 0.6);
}

.result-item.highlight .r-value {
	font-size: 2.2rem;
	color: #7eeeff;
}

.result-placeholder {
	text-align: center;
	padding: 40px 20px;
	color: rgba(255, 255, 255, 0.3);
}

.result-placeholder i {
	font-size: 3rem;
	margin-bottom: 16px;
	display: block;
}

.result-placeholder p {
	font-size: 0.9rem;
	font-family: var(--font-family-headings);
}

/* Tips Section */
.calc-tip-card {
	background: #f0fbfd;
	border: 1px solid #b3e5ef;
	border-left: 4px solid #0088a4;
	border-radius: 8px;
	padding: 18px 20px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.calc-tip-card i {
	color: #0088a4;
	font-size: 1.2rem;
	margin-top: 2px;
	flex-shrink: 0;
}

.calc-tip-card h6 {
	font-family: var(--font-family-headings);
	font-weight: 700;
	color: #040618;
	font-size: 0.9rem;
	margin-bottom: 4px;
}

.calc-tip-card p {
	font-size: 0.85rem;
	color: #4a5568;
	margin: 0;
}

@media (max-width: 991.98px) {
	.calc-form-panel {
		border-right: none;
		border-bottom: 1px solid #e2e8f0;
		padding: 30px;
	}

	.calc-result-panel {
		padding: 30px;
	}
}

@media (max-width: 575.98px) {

	.calc-form-panel,
	.calc-result-panel {
		padding: 20px;
	}
}

/* ==============================
   Technical Specification Page
   ============================== */
.spec-tab-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 36px;
}

.spec-tab-btn {
	padding: 10px 24px;
	border: 1.5px solid #d8dde1;
	border-radius: 30px;
	background: transparent;
	font-family: var(--font-family-headings);
	font-size: 0.88rem;
	font-weight: 700;
	color: #6c757d;
	cursor: pointer;
	transition: all 0.3s;
}

.spec-tab-btn:hover,
.spec-tab-btn.active {
	background: #0088a4;
	border-color: #0088a4;
	color: #ffffff;
}

.spec-table-wrap {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	margin-bottom: 30px;
}

.spec-table-head {
	background: #040617;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.spec-table-head h5 {
	font-family: var(--font-family-headings);
	/*font-weight: 800;*/
	font-size: 1rem;
	color: #ffffff;
	margin: 0;
	letter-spacing: 0.5px;
}

.spec-table-head i {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.1rem;
}

.spec-table {
	width: 100%;
	border-collapse: collapse;
}

.spec-table tr {
	border-bottom: 1px solid #f0f4f8;
	transition: background 0.2s;
}

.spec-table tr:last-child {
	border-bottom: none;
}

.spec-table tr:hover {
	background: #f7fbfd;
}

.spec-table td {
	padding: 14px 24px;
	font-size: 0.9rem;
	color: #4a5568;
	vertical-align: middle;
}

.spec-table td:first-child {
	font-family: var(--font-family-headings);
	font-weight: 700;
	color: #040618;
	width: 45%;
	border-right: 1px solid #f0f4f8;
}

.spec-table td .badge-pass {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: #e8f9f1;
	color: #1a7a4a;
	border: 1px solid #b2e8d0;
	border-radius: 20px;
	padding: 3px 10px;
	font-size: 0.78rem;
	font-weight: 700;
}

.spec-table td .badge-value {
	font-family: var(--font-family-headings);
	font-weight: 700;
	color: #0088a4;
	font-size: 0.92rem;
}

/* ISO Cert Cards */
.cert-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 28px 24px;
	text-align: center;
	transition: all 0.3s;
	height: 100%;
}

.cert-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(0, 136, 164, 0.12);
	border-color: #0088a4;
}

.cert-card .cert-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #0088a4, #006c85);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
}

.cert-card .cert-icon i {
	font-size: 1.5rem;
	color: #ffffff;
}

.cert-card h5 {
	font-family: var(--font-family-headings);
	font-weight: 800;
	font-size: 1rem;
	color: #040618;
	margin-bottom: 8px;
}

.cert-card p {
	font-size: 0.85rem;
	color: #6c757d;
	margin: 0;
}

/* Surface Finish Tags */
.finish-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #f0fbfd;
	border: 1px solid #b3e5ef;
	border-radius: 8px;
	padding: 10px 16px;
	margin: 5px;
	font-family: var(--font-family-headings);
	font-weight: 700;
	font-size: 0.85rem;
	color: #040618;
	transition: all 0.3s;
}

.finish-tag:hover {
	background: #0088a4;
	border-color: #0088a4;
	color: #ffffff;
}

.finish-tag i {
	color: #0088a4;
	font-size: 0.9rem;
	transition: color 0.3s;
}

.finish-tag:hover i {
	color: #ffffff;
}

.spec-intro-card {
	background: linear-gradient(135deg, #040618 0%, #0d1f3c 60%, #0088a4 100%);
	border-radius: 16px;
	padding: 40px;
	color: #ffffff;
	position: relative;
	overflow: hidden;
	margin-bottom: 40px;
}

.spec-intro-card::before {
	content: '';
	position: absolute;
	top: -60px;
	right: -60px;
	width: 200px;
	height: 200px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 50%;
}

.spec-intro-card::after {
	content: '';
	position: absolute;
	bottom: -80px;
	left: 30%;
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 50%;
}

.spec-intro-card h3 {
	font-family: var(--font-family-headings);
	font-weight: 800;
	font-size: 1.6rem;
	margin-bottom: 12px;
}

.spec-intro-card p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	margin: 0;
}

.spec-stat {
	text-align: center;
	padding: 20px 10px;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-stat:first-child {
	border-left: none;
}

.spec-stat .stat-num {
	font-family: var(--font-family-headings);
	font-weight: 800;
	font-size: 2rem;
	color: #7eeeff;
	display: block;
}

.spec-stat .stat-lbl {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
	display: block;
	margin-top: 4px;
}

/* ==============================
   Blog & Single Post Styles
   ============================== */
.post-entry2 {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.35s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.post-entry2:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 35px rgba(0, 136, 164, 0.12);
	border-color: var(--primary);
}

.post-thumb {
	position: relative;
	height: 240px;
	overflow: hidden;
}

.post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.post-entry2:hover .post-thumb img {
	transform: scale(1.06);
}

.post-thumb .badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: rgba(4, 6, 24, 0.85) !important;
	backdrop-filter: blur(4px);
	padding: 6px 14px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	z-index: 2;
}

.post-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.post-meta {
	font-size: 0.82rem;
	color: var(--body-color2);
	margin-bottom: 12px;
}

.post-meta span i {
	color: var(--primary);
	margin-right: 5px;
}

.post-content h3 {
	font-family: var(--font-family-headings);
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 16px;
}

.post-content h3 a {
	color: var(--dark);
	text-decoration: none;
	transition: color 0.3s;
}

.post-content h3 a:hover {
	color: var(--primary);
}

.link-btn {
	font-family: var(--font-family-headings);
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: gap 0.3s;
}

.link-btn:hover {
	color: var(--dark);
	gap: 12px;
}

/* Pagination */
.navigation.pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	align-items: center;
}

.navigation.pagination .page-numbers {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	border: 1.5px solid #d8dde1;
	color: var(--dark);
	font-family: var(--font-family-headings);
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.3s;
}

.navigation.pagination .page-numbers.current,
.navigation.pagination .page-numbers:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: #ffffff;
}

.navigation.pagination .prev,
.navigation.pagination .next {
	width: auto;
	padding: 0 16px;
	gap: 6px;
}

/* Single Post / Blog Detail Styles */
.post-single {
	background: #ffffff;
}

.post-single-thumb {
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 30px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.post-single-thumb img {
	width: 100%;
	max-height: 480px;
	object-fit: cover;
}

.post-header-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: center;
	padding: 16px 24px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	margin-bottom: 28px;
}

.ph-inner {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ph-inner img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
}

.pm-info span {
	font-size: 0.75rem;
	color: #6c757d;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pm-info h5 {
	font-family: var(--font-family-headings);
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--dark);
	margin: 0;
}

.post-single h1.post-title {
	font-family: var(--font-family-headings);
	/*font-weight: 800;*/
	font-size: 2.2rem;
	color: var(--dark);
	line-height: 1.3;
	margin-bottom: 24px;
}

.post-single p {
	font-size: 1rem;
	line-height: 1.8;
	color: #4a5568;
	margin-bottom: 20px;
}

.post-single h2,
.post-single h3 {
	font-family: var(--font-family-headings);
	/*font-weight: 800;*/
	color: var(--dark);
	margin-top: 36px;
	margin-bottom: 16px;
}

.post-single blockquote {
	background: #f0fbfd;
	border-left: 4px solid var(--primary);
	border-radius: 0 12px 12px 0;
	padding: 24px 28px;
	margin: 32px 0;
}

.post-single blockquote p {
	font-family: var(--font-family-headings);
	/*font-weight: 700;*/
	font-size: 1.1rem;
	color: var(--dark);
	font-style: italic;
	margin-bottom: 10px;
}

.post-single blockquote cite {
	font-size: 0.85rem;
	color: var(--primary);
	font-style: normal;
	/*font-weight: 600;*/
}

.blog-feature-list {
	list-style: none;
	padding: 0;
	margin: 24px 0;
}

.blog-feature-list li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 12px;
	font-size: 0.95rem;
	color: #4a5568;

}

.blog-feature-list li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 2px;
	color: var(--primary);
}

/* Sidebar Widgets */
.widget-box {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 28px;
	margin-bottom: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.widget-title {
	font-family: var(--font-family-headings);
	/*font-weight: 800;*/
	font-size: 1.1rem;
	color: var(--dark);
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--primary);
	display: inline-block;
}

.search-form {
	position: relative;
}

.search-form input {
	width: 100%;
	padding: 12px 45px 12px 16px;
	border: 1.5px solid #d8dde1;
	border-radius: 8px;
	outline: none;
	font-size: 0.9rem;
	transition: border-color 0.3s;
}

.search-form input:focus {
	border-color: var(--primary);
}

.search-form button {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: var(--primary);
	font-size: 1.1rem;
	cursor: pointer;
}

.widget-categories {
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget-categories li {
	border-bottom: 1px solid #f0f4f8;
}

.widget-categories li:last-child {
	border-bottom: none;
}

.widget-categories a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	color: #4a5568;
	text-decoration: none;
	/*font-weight: 600;*/
	font-size: 0.9rem;
	transition: color 0.3s;
}

.widget-categories a:hover {
	color: var(--primary);
}

.widget-categories span.count {
	background: #f0fbfd;
	color: var(--primary);
	border-radius: 20px;
	padding: 2px 10px;
	font-size: 0.78rem;
	font-weight: 700;
}

.recent-post-item {
	display: flex;
	gap: 14px;
	align-items: center;
	margin-bottom: 16px;
}

.recent-post-item:last-child {
	margin-bottom: 0;
}

.recent-post-img {
	width: 70px;
	height: 70px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
}

.recent-post-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.recent-post-info h6 {
	font-family: var(--font-family-headings);
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 4px;
}

.recent-post-info h6 a {
	color: var(--dark);
	text-decoration: none;
	transition: color 0.3s;
}

.recent-post-info h6 a:hover {
	color: var(--primary);
}

.recent-post-info span {
	font-size: 0.75rem;
	color: #94a3b8;
}

.widget-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.widget-tags a {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	color: #4a5568;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
}

.widget-tags a:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: #ffffff;
}

.inquiry-widget {
	background: linear-gradient(135deg, #040618, #0088a4);
	color: #ffffff;
	border-radius: 16px;
	padding: 30px;
	text-align: center;
}

.inquiry-widget h5 {
	font-family: var(--font-family-headings);
	font-weight: 800;
	font-size: 1.2rem;
	color: #ffffff;
	margin-bottom: 10px;
}

.inquiry-widget p {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 20px;
}

/* ==============================
   Contact Us Page
   ============================== */
.contact-info-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 32px 28px;
	height: 100%;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contact-info-card::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), #006c85);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.contact-info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 35px rgba(0, 136, 164, 0.12);
	border-color: var(--primary);
}

.contact-info-card:hover::before {
	transform: scaleX(1);
}

.contact-info-card .card-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--primary), #006c85);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.contact-info-card .card-icon i {
	font-size: 1.4rem;
	color: #ffffff;
}

.contact-info-card h5 {
	font-family: var(--font-family-headings);
	/*font-weight: 800;*/
	font-size: 1rem;
	color: var(--dark);
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.contact-info-card p,
.contact-info-card a {
	font-size: 0.92rem;
	color: #4a5568;
	display: block;
	margin-bottom: 4px;
	text-decoration: none;
	transition: color 0.3s;
}

.contact-info-card a:hover {
	color: var(--primary);
}

/* Contact Form */
.contact-form-wrap {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	border: 1px solid #e2e8f0;
}

.contact-form-inner {
	padding: 48px 40px;
}

.contact-map-wrap {
	height: 100%;
	min-height: 500px;
}

.contact-map-wrap iframe {
	width: 100%;
	height: 100%;
	min-height: 500px;
	border: 0;
	display: block;
}

.form-group-contact {
	position: relative;
	margin-bottom: 20px;
}

.form-group-contact i {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #94a3b8;
	font-size: 0.95rem;
}

.form-group-contact textarea~i {
	top: 18px;
	transform: none;
}

.contact-input {
	width: 100%;
	padding: 13px 42px 13px 16px;
	border: 1.5px solid #d8dde1;
	border-radius: 8px;
	font-size: 0.93rem;
	color: var(--dark);
	background: #f8fafc;
	outline: none;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-input:focus {
	border-color: var(--primary);
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(0, 136, 164, 0.1);
}

/* Team Contact Cards */
.team-contact-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 22px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	transition: all 0.3s;
}

.team-contact-card:hover {
	background: #f0fbfd;
	border-color: var(--primary);
}

.team-contact-card .tc-icon {
	width: 46px;
	height: 46px;
	background: linear-gradient(135deg, var(--primary), #006c85);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.team-contact-card .tc-icon i {
	color: #ffffff;
	font-size: 1rem;
}

.team-contact-card h6 {
	font-family: var(--font-family-headings);
	/*font-weight: 800;*/
	font-size: 0.9rem;
	color: var(--dark);
	margin-bottom: 2px;
}

.team-contact-card span {
	font-size: 0.82rem;
	color: #6c757d;
	display: block;
}

.team-contact-card a {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
}

@media (max-width: 991.98px) {
	.contact-form-inner {
		padding: 32px 24px;
	}

	.contact-map-wrap {
		min-height: 300px;
	}

	.contact-map-wrap iframe {
		min-height: 300px;
	}
}

/* ==============================
   Hollis Edition Logo Mega Menu
   ============================== */
@media (min-width: 992px) {
	.nav-item.megamenu-item {
		position: static !important;
	}

	.dropdown-menu.mega-menu {
		display: block !important;
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
		width: 92vw;
		max-width: 1320px;
		left: 50% !important;
		top: 100% !important;
		margin-top: 0 !important;
		transform: translate(-50%, -30px) !important;
		padding: 40px 48px 44px !important;
		border-radius: 20px;
		background: #040618 !important;
		border: 1px solid rgba(255, 255, 255, 0.12) !important;
		box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5) !important;
		transition: opacity 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.35s !important;
	}

	.nav-item.megamenu-item:hover .dropdown-menu.mega-menu,
	.dropdown-menu.mega-menu.show {
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		transform: translate(-50%, 0px) !important;
	}
}

.mega-size-section-title {
	font-family: var(--font-family-headings);
	font-size: 0.95rem;
	/*font-weight: 800;*/
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 2px solid #0088a4;
	display: flex;
	align-items: center;
	gap: 10px;
}

.mega-size-section-title i {
	color: #0088a4;
}

.hollis-logo-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.hollis-edition-card {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 12px;
	overflow: hidden;
	background: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.9) !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: all 0.35s ease;
	padding: 8px 14px !important;
	height: 90px !important;
	text-decoration: none;
	width: 100%;
}

.hollis-edition-card img {
	width: 100% !important;
	height: 100% !important;
	max-height: 72px !important;
	object-fit: contain !important;
	background: transparent !important;
	display: block;
	transition: transform 0.35s ease;
}

.hollis-edition-card:hover {
	transform: translateY(-5px);
	border-color: #0088a4 !important;
	box-shadow: 0 12px 30px rgba(0, 136, 164, 0.4);
}

.hollis-edition-card:hover img {
	transform: scale(1.06);
}

.hollis-collection-showcase {
	background: #ffffff !important;
	border: 1px solid #e2e8f0 !important;
	transition: all 0.3s ease;
}

.hollis-edition-card-box {
	height: 85px !important;
	border: 1px solid #e2e8f0 !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
	border-radius: 10px !important;
}

.hollis-edition-card-box:hover {
	border-color: var(--primary) !important;
	transform: translateY(-4px) !important;
	box-shadow: 0 8px 20px rgba(0, 136, 164, 0.25) !important;
}

.hollis-edition-card-sm {
	height: 65px !important;
	padding: 6px 10px !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: 8px !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.hollis-edition-card-sm img {
	max-height: 52px !important;
}

.hollis-edition-card-sm:hover {
	border-color: var(--primary) !important;
	transform: translateY(-3px) !important;
	box-shadow: 0 6px 15px rgba(0, 136, 164, 0.2) !important;
}

/* Nano Cover Card in Mega Menu (Full cover fit, no gaps) */
.hollis-nano-cover-card {
	display: block !important;
	padding: 0 !important;
	background: #000000 !important;
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	border-radius: 12px !important;
	overflow: hidden !important;
	position: relative !important;
	height: 100% !important;
	min-height: 196px !important;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

.hollis-nano-cover-card img {
	width: 100% !important;
	height: 100% !important;
	max-height: none !important;
	object-fit: cover !important;
	padding: 0 !important;
	background: transparent !important;
	display: block !important;
	transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.hollis-nano-cover-card:hover {
	border-color: #0088a4 !important;
	transform: translateY(-4px) !important;
	box-shadow: 0 12px 30px rgba(0, 136, 164, 0.4) !important;
}

.hollis-nano-cover-card:hover img {
	transform: scale(1.06) !important;
}

.hollis-nano-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 14px 18px;
	background: linear-gradient(to top, rgba(4, 6, 24, 0.92) 0%, rgba(4, 6, 24, 0.5) 60%, transparent 100%);
	color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 2;
	transition: background 0.3s ease;
}

.hollis-nano-overlay span {
	font-family: var(--font-family-headings);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.hollis-nano-overlay i {
	color: #0088a4;
	font-size: 0.9rem;
	transition: transform 0.3s ease, color 0.3s ease;
}

.hollis-nano-cover-card:hover .hollis-nano-overlay i {
	transform: translateX(4px);
	color: #ffffff;
}

.swiper-btn-custom {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	color: var(--dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	font-size: 0.9rem;
}

.swiper-btn-custom:hover {
	background: var(--primary);
	color: #ffffff;
	border-color: var(--primary);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 136, 164, 0.3);
}

.hollis-edition-card:hover img {
	transform: scale(1.05);
}

.mega-column-divider {
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	padding-right: 40px;
}

@media (max-width: 1200px) {
	.hollis-logo-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 991.98px) {
	.dropdown-menu.mega-menu {
		background: #040618 !important;
		border: none;
		padding: 24px 20px !important;
		width: 100%;
	}

	.mega-column-divider {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		margin-bottom: 24px;
		padding-bottom: 24px;
		padding-right: 0;
	}

	.hollis-logo-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ==========================================================================
   Hollis About Us Page Additional Modern Enhancements
   ========================================================================== */

/* Vision & Mission Cards */
.hollis-vm-card {
	background: #f8f8f8;
	border: 1px solid rgba(255, 255, 255, 0.08);
	/*border-radius: 20px;*/
	padding: 40px 32px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	height: 100%;
}

.hollis-vm-card:hover {
	border-color: var(--primary);
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(0, 136, 164, 0.2);
}

.hollis-vm-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.hollis-vm-card:hover::before {
	opacity: 1;
}

.hollis-vm-icon {
	width: 65px;
	height: 65px;
	border-radius: 16px;
	background: rgba(0, 136, 164, 0.12);
	border: 1px solid rgba(0, 136, 164, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	color: var(--primary);
	margin-bottom: 24px;
}

.hollis-vm-card h3 {
	font-family: var(--font-family-headings);
	font-size: 1.8rem;
	/*color: #ffffff;*/
	margin-bottom: 16px;
}

.hollis-vm-card p {
	color: #94a3b8;
	font-size: 1rem;
	line-height: 1.7;
	margin: 0;
}

/* Production Timeline Flow */
.hollis-timeline-sec {
	padding: 90px 0;
	background: var(--white);
}

.hollis-timeline-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 32px 24px;
	position: relative;
	transition: all 0.35s ease;
	height: 100%;
}

.hollis-timeline-card:hover {
	border-color: var(--primary);
	box-shadow: 0 15px 35px rgba(0, 136, 164, 0.12);
	transform: translateY(-5px);
}

.hollis-step-badge {
	font-family: var(--font-family-headings);
	font-size: 2.2rem;
	font-weight: 800;
	color: rgba(0, 136, 164, 0.18);
	line-height: 1;
	margin-bottom: 12px;
	display: block;
	transition: color 0.3s ease;
}

.hollis-timeline-card:hover .hollis-step-badge {
	color: var(--primary);
}

.hollis-timeline-card h4 {
	font-family: var(--font-family-headings);
	font-size: 1.25rem;
	color: var(--dark);
	margin-bottom: 10px;
}

.hollis-timeline-card p {
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

/* Certifications Pill */
.hollis-cert-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #f0fbfd;
	border: 1px solid rgba(0, 136, 164, 0.25);
	padding: 8px 18px;
	border-radius: 30px;
	font-family: var(--font-family-headings);
	font-size: 0.88rem;
	color: var(--primary);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* CTA Banner Modern */
.hollis-cta-card {
	background: linear-gradient(135deg, #040618 0%, #003644 100%);
	border-radius: 24px;
	padding: 60px 40px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 25px 50px rgba(4, 6, 24, 0.25);
}

.hollis-cta-card::after {
	content: '';
	position: absolute;
	right: -80px;
	bottom: -80px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(0, 136, 164, 0.15);
	pointer-events: none;
}

/* "The Heart of Hollis" Section (Mission, Vision, Core Values Grid) */
.sperox-heart-section {
	padding: 90px 0;
	background: #f8fafc;
	border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
}

.sperox-heart-heading {
	font-family: var(--font-family-headings);
	font-size: 3.2rem;
	color: var(--dark);
	margin-bottom: 40px;
	letter-spacing: -1px;
}

.sperox-heart-img-wrap {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
	height: 100%;
	min-height: 440px;
}

.sperox-heart-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sperox-heart-grid {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	background: var(--white);
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.sperox-heart-row {
	display: grid;
	grid-template-columns: 110px 200px 1fr;
	align-items: center;
	padding: 36px 30px;
	border-bottom: 1px solid #e2e8f0;
	background: var(--white);
	transition: background 0.3s ease;
}

.sperox-heart-row:last-child {
	border-bottom: none;
}

.sperox-heart-row:hover {
	background: #f0fbfd;
}

.sperox-heart-icon-box {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: 2px solid #e2e8f0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	color: var(--dark);
	background: var(--white);
	transition: all 0.3s ease;
}

.sperox-heart-row:hover .sperox-heart-icon-box {
	border-color: var(--primary);
	color: var(--primary);
	background: #f0fbfd;
}

.sperox-heart-title {
	font-family: var(--font-family-headings);
	font-size: 1.5rem;
	color: var(--dark);
	margin: 0;
}

.sperox-heart-desc {
	font-size: 0.96rem;
	line-height: 1.65;
	color: #64748b;
	margin: 0;
}

@media (max-width: 991.98px) {
	.sperox-heart-row {
		grid-template-columns: 80px 1fr;
		gap: 16px;
	}

	.sperox-heart-desc {
		grid-column: 1 / -1;
		margin-top: 12px;
	}
}

/* "Transforming Ideas into Reality" (Design & Tech Machinery) */
.sperox-tech-section {
	padding: 90px 0;
	background: var(--white);
}

.sperox-partner-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin: 30px 0 40px;
}

.sperox-partner-card {
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px 16px;
	text-align: center;
	background: var(--white);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
	transition: all 0.3s ease;
}

.sperox-partner-card:hover {
	border-color: var(--primary);
	box-shadow: 0 10px 25px rgba(0, 136, 164, 0.15);
	transform: translateY(-3px);
}

.sperox-partner-card h5 {
	font-family: var(--font-family-headings);
	font-size: 1.15rem;
	color: var(--dark);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

@media (max-width: 768px) {
	.sperox-partner-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* "We Believe in Make in India" Section */
.sperox-india-section {
	padding: 90px 0;
	background: #f8fafc;
	border-top: 1px solid #e2e8f0;
}

.sperox-india-emblem {
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: var(--white);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	border: 4px solid var(--primary);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px;
	margin: 0 auto;
	position: relative;
}

.sperox-india-emblem i {
	font-size: 3.2rem;
	color: var(--primary);
	margin-bottom: 10px;
}

.sperox-india-emblem span {
	font-family: var(--font-family-headings);
	font-size: 0.95rem;
	text-transform: uppercase;
	color: var(--dark);
	letter-spacing: 1px;
	line-height: 1.3;
}

/* ==========================================================================
   Hollis Product Catalog & Collection Page Modern Enhancements
   ========================================================================== */

/* Modern Product Card */
.hollis-product-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.hollis-product-card:hover {
	border-color: var(--primary);
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 136, 164, 0.16);
}

.hollis-product-img-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 2;
	overflow: hidden;
	background: #f8fafc;
}

.hollis-product-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.hollis-product-img-wrapper .primary-img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 1;
}

.hollis-product-img-wrapper .secondary-img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0;
	transform: scale(1.08);
}

.hollis-product-card:hover .hollis-product-img-wrapper .primary-img {
	opacity: 0;
}

.hollis-product-card:hover .hollis-product-img-wrapper .secondary-img {
	opacity: 1;
	transform: scale(1);
}

/* Badges on Product Image */
.hollis-card-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 3;
	background: rgba(4, 6, 24, 0.82);
	backdrop-filter: blur(8px);
	color: #ffffff;
	font-family: var(--font-family-headings);
	font-size: 0.72rem;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 30px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.hollis-card-size {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 3;
	background: rgba(0, 136, 164, 0.9);
	color: #ffffff;
	font-family: var(--font-family-headings);
	font-size: 0.72rem;
	font-weight: 700;
	padding: 5px 10px;
	border-radius: 6px;
	letter-spacing: 0.5px;
}

/* Hover Quick Action Buttons Overlay */
.hollis-card-actions {
	position: absolute;
	bottom: 14px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	opacity: 0;
	z-index: 4;
	transition: all 0.35s ease;
	display: flex;
	gap: 10px;
}

.hollis-product-card:hover .hollis-card-actions {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.hollis-action-btn {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #ffffff;
	color: var(--dark);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
	transition: all 0.3s ease;
	text-decoration: none;
}

.hollis-action-btn:hover {
	background: var(--primary);
	color: #ffffff;
	transform: scale(1.1);
}

/* Product Card Content Body */
.hollis-product-body {
	padding: 20px 22px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-between;
}

.hollis-product-title {
	font-family: var(--font-family-headings);
	font-size: 1.2rem;

	color: var(--dark);
	margin-bottom: 6px;
	transition: color 0.3s ease;
}

.hollis-product-card:hover .hollis-product-title {
	color: var(--primary);
}

.hollis-product-finish {
	font-size: 0.88rem;
	color: #64748b;
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.hollis-product-footer {
	border-top: 1px solid #f1f5f9;
	padding-top: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hollis-details-link {
	font-family: var(--font-family-headings);
	font-size: 0.88rem;

	color: var(--primary);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: gap 0.3s ease;
}

.hollis-product-card:hover .hollis-details-link {
	gap: 10px;
	color: var(--black);
}

/* Product Sidebar Filter Styling */
.hollis-sidebar-box {
	/*background: #ffffff;*/
	/*border: 1px solid #e2e8f0;*/
	border-radius: 18px;
	padding: 26px 22px;
	/*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);*/
	margin-bottom: 24px;
}

.hollis-sidebar-title {
	font-family: var(--font-family-headings);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid rgba(0, 136, 164, 0.2);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hollis-filter-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hollis-filter-item {
	margin-bottom: 12px;
}

.hollis-filter-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	border-radius: 10px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: var(--font-family-headings);
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--dark);
}

.hollis-filter-label:hover,
.hollis-filter-item input:checked+.hollis-filter-label {
	background: rgba(0, 136, 164, 0.08);
	border-color: var(--primary);
	color: var(--primary);
}

.hollis-filter-count {
	font-size: 0.78rem;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	padding: 2px 8px;
	border-radius: 20px;
	color: #64748b;
}

/* Product Catalogue Toolbar */
.hollis-toolbar {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 14px 22px;
	margin-bottom: 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

/* ==========================================================================
   PRODUCT & ABOUT PAGE DEDICATED STYLES (No Inline CSS)
   ========================================================================== */

/* Page Banners */
.hollis-page-banner {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hollis-page-banner-bg-ab {
	background-image: url('../images/ab-banner.jpg');
}

.hollis-banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(4, 6, 24, 0.85) 0%, rgba(0, 136, 164, 0.75) 100%);
	z-index: 1;
}

.hollis-banner-badge {
	font-family: var(--font-family-headings);
	letter-spacing: 1px;
}

.hollis-banner-desc {
	max-width: 650px;
}

/* Sticky & Independently Scrollable Sidebar */
.hollis-sidebar-sticky {
	position: sticky;
	top: 90px;
	max-height: calc(100vh - 100px);
	overflow-y: auto !important;
	overflow-x: hidden !important;
	overscroll-behavior: contain !important;
	overscroll-behavior-y: contain !important;
	-webkit-overflow-scrolling: touch;
	padding-right: 6px;
	scrollbar-width: thin;
	scrollbar-color: #cbd5e1 transparent;
}

.hollis-sidebar-sticky::-webkit-scrollbar {
	width: 6px;
}

.hollis-sidebar-sticky::-webkit-scrollbar-track {
	background: transparent;
}

.hollis-sidebar-sticky::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 4px;
}

.hollis-sidebar-sticky::-webkit-scrollbar-thumb:hover {
	background: #0088a4;
}

/* 2-Column Filter Pills */
.hollis-filter-pill {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 8px 10px;
	border-radius: 8px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	color: #334155;
	font-size: 0.85rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.25s ease;
	width: 100%;
}

.hollis-filter-pill:hover {
	border-color: #0088a4;
	color: #0088a4;
	background: rgba(0, 136, 164, 0.04);
	transform: translateY(-1px);
}

.hollis-filter-pill.active {
	background: #0088a4 !important;
	border-color: #0088a4 !important;
	color: #ffffff !important;
	font-weight: 600;
	box-shadow: 0 4px 10px rgba(0, 136, 164, 0.25);
}

/* Nano Sidebar Collection Card */
.hollis-nano-sidebar-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 14px;
	background: #ffffff;
	border: 1.5px solid #0088a4;
	border-radius: 10px;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(0, 136, 164, 0.12);
	transition: all 0.3s ease;
	width: 100%;
}

.hollis-nano-sidebar-card img {
	width: 58px;
	height: 58px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
}

.hollis-nano-sidebar-card .nano-card-info {
	display: flex;
	flex-direction: column;
}

.hollis-nano-sidebar-card .nano-card-info .title {
	font-family: var(--font-family-headings);
	font-size: 0.9rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.2;
}

.hollis-nano-sidebar-card .nano-card-info .subtitle {
	font-size: 0.78rem;
	color: #0088a4;
	font-weight: 600;
	margin-top: 3px;
}

.hollis-nano-sidebar-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 136, 164, 0.25);
}

.hollis-sidebar-cta {
	background: linear-gradient(135deg, #040618 0%, #004d5e 100%);
	color: #ffffff;
	text-align: center;
}

.hollis-sort-select {
	width: 180px;
	border-color: rgba(100, 116, 139, 0.25);
}

/* Section Sub-titles & Badges */
.hollis-section-subtitle {
	font-family: var(--font-family-headings);
	letter-spacing: 1.5px;
}

.hollis-experience-badge {
	min-width: 140px;
	background: linear-gradient(135deg, var(--primary) 0%, #005669 100%);
}

.hollis-sub-img-border {
	width: 55%;
	border: 6px solid #ffffff;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hollis-main-img-height {
	min-height: 440px;
}

.hollis-eq-height-1 {
	height: 220px;
}

.hollis-eq-height-2 {
	height: 180px;
}

/* Dark Section Themes */
.hollis-dark-bg-1 {
	background: #040618;
	color: #ffffff;
}

.hollis-dark-bg-2 {
	background: #080c1e;
	color: #ffffff;
}

.hollis-spec-card {
	padding: 1.5rem;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(4, 6, 24, 0.5);
	text-align: center;
	height: 100%;
}

/* ==========================================================================
   PRODUCT DETAILS PAGE DEDICATED STYLES
   ========================================================================== */

/* Product Gallery Swiper */
.hollis-detail-gallery {
	border-radius: 20px;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	padding: 16px;
}

.hollis-gallery-main {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: #f8fafc;
}

.hollis-gallery-main .swiper-slide {
	display: block;
	border-radius: 16px;
	overflow: hidden;
}

.hollis-gallery-main a {
	display: block;
	width: 100%;
	height: 100%;
}

.hollis-gallery-main img {
	width: 100%;
	height: auto;
	max-height: 480px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 16px;
	display: block;
}

.hollis-gallery-main .swiper-button-next,
.hollis-gallery-main .swiper-button-prev {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	top: 50%;
	transform: translateY(-50%);
	margin-top: 0;
	z-index: 15;
	transition: all 0.3s ease;
}

.hollis-gallery-main .swiper-button-next:hover,
.hollis-gallery-main .swiper-button-prev:hover {
	background: var(--primary);
	color: #ffffff;
	transform: translateY(-50%) scale(1.08);
}

.hollis-thumb-img {
	border-radius: 10px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	opacity: 0.7;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
	display: block;
}

.hollis-thumb-img:hover,
.swiper-slide-thumb-active .hollis-thumb-img {
	border-color: var(--primary);
	opacity: 1;
}

/* Product Information Panel */
.hollis-detail-info {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 36px 32px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.hollis-detail-title {
	font-family: var(--font-family-headings);
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--dark);
	margin-bottom: 8px;
}

.hollis-detail-code {
	font-family: var(--font-family-headings);
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--primary);
	letter-spacing: 1px;
}

.hollis-spec-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin: 24px 0;
}

.hollis-spec-item {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.hollis-spec-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(0, 136, 164, 0.1);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
}

.hollis-spec-label {
	font-size: 0.78rem;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
	margin-bottom: 2px;
	display: block;
}

.hollis-spec-val {
	font-family: var(--font-family-headings);
	font-size: 0.98rem;
	/*font-weight: 700;*/
	color: var(--dark);
	margin: 0;
}

.hollis-action-group {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid #e2e8f0;
}

/* Feature Badge Pill */
.hollis-feature-pill {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 20px 16px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
	transition: all 0.3s ease;
}

.hollis-feature-pill:hover {
	border-color: var(--primary);
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(0, 136, 164, 0.12);
}

.hollis-feature-pill i {
	font-size: 2rem;
	color: var(--primary);
	margin-bottom: 10px;
	display: block;
}

.hollis-feature-pill h6 {
	font-family: var(--font-family-headings);
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--dark);
	margin: 0;
}

/* Enhanced Product Details Styles */
.hollis-gallery-main {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
}

.hollis-gallery-zoom-badge {
	position: absolute;
	bottom: 16px;
	right: 16px;
	z-index: 10;
	background: rgba(4, 6, 24, 0.75);
	backdrop-filter: blur(8px);
	color: #ffffff;
	font-size: 0.82rem;
	font-weight: 600;
	padding: 8px 14px;
	border-radius: 30px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	pointer-events: none;
}

.hollis-gallery-main:hover .hollis-gallery-zoom-badge {
	background: var(--primary);
	color: #ffffff;
	border-color: var(--primary);
	transform: scale(1.05);
}

.hollis-gallery-floating-tag {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 10;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.hollis-spec-item {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hollis-spec-item:hover {
	background: #ffffff;
	border-color: var(--primary);
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 136, 164, 0.1);
}

.hollis-spec-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(0, 136, 164, 0.12), rgba(0, 136, 164, 0.05));
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.hollis-spec-item:hover .hollis-spec-icon {
	background: var(--primary);
	color: #ffffff;
}

/* Custom Detail Tabs */
.hollis-detail-tabs .nav-pills {
	background: #f1f5f9;
	padding: 6px;
	border-radius: 50px;
	display: inline-flex;
	border: 1px solid #e2e8f0;
}

.hollis-detail-tabs .nav-link {
	border-radius: 40px;
	padding: 10px 24px;
	font-family: var(--font-family-headings);
	font-weight: 700;
	font-size: 0.92rem;
	color: #64748b;
	transition: all 0.3s ease;
}

.hollis-detail-tabs .nav-link.active {
	background: var(--primary);
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(0, 136, 164, 0.3);
}

.hollis-spec-table {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
}

.hollis-spec-table th {
	background: #040618;
	color: #ffffff;
	font-family: var(--font-family-headings);
	font-size: 0.88rem;
	text-uppercase: uppercase;
	letter-spacing: 0.5px;
	padding: 16px 20px;
	border: none;
}

.hollis-spec-table td {
	padding: 16px 20px;
	vertical-align: middle;
	font-size: 0.95rem;
	border-bottom: 1px solid #e2e8f0;
}

.hollis-logistics-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.hollis-logistics-card:hover {
	border-color: var(--primary);
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 136, 164, 0.12);
}

.hollis-logistics-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(0, 136, 164, 0.08);
	color: var(--primary);
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.hollis-room-frame {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(4, 6, 24, 0.12);
}

.hollis-room-overlay-card {
	position: absolute;
	bottom: 24px;
	left: 24px;
	right: 24px;
	background: rgba(4, 6, 24, 0.75);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	padding: 20px 24px;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

@media (max-width: 767.98px) {
	.hollis-spec-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.hollis-detail-tabs .nav-pills {
		border-radius: 16px;
		flex-direction: column;
		width: 100%;
	}

	.hollis-detail-tabs .nav-link {
		width: 100%;
		text-align: center;
	}

	.hollis-room-overlay-card {
		position: relative;
		bottom: 0;
		left: 0;
		right: 0;
		border-radius: 0 0 24px 24px;
		background: #040618;
	}
}


/* Additional Swiper Gallery Fixes */
.hollis-gallery-main {
	min-height: 420px !important;
}

.hollis-gallery-main .swiper-slide {
	min-height: 420px !important;
	background: #f8fafc !important;
}

.hollis-gallery-main img {
	height: 420px !important;
	object-fit: cover !important;
	display: block !important;
}

.hollis-gallery-main .swiper-button-next::after,
.hollis-gallery-main .swiper-button-prev::after {
	display: none !important;
	content: "" !important;
}

.hollis-gallery-main .swiper-button-next,
.hollis-gallery-main .swiper-button-prev {
	width: 44px !important;
	height: 44px !important;
	border-radius: 50% !important;
	background: #ffffff !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
	color: var(--primary) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 0.95rem !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	margin-top: 0 !important;
	z-index: 15 !important;
}

.hollis-gallery-main .swiper-button-next:hover,
.hollis-gallery-main .swiper-button-prev:hover {
	background: var(--primary) !important;
	color: #ffffff !important;
}

.pro-title {
	position: relative;
	display: inline-block;
	margin-bottom: 25px;
	padding-bottom: 12px;

	border-bottom: 2px solid var(--primary);
}

/* Cyan long line */
.pro-title::before {
	content: "";
	position: absolute;
	width: 90%;
	height: 2px;
	background: var(--primary);
	bottom: -14px;
	left: 63px;

}

/* White/black short line */
.pro-title::after {
	content: "";
	position: absolute;
	width: 41px;
	height: 2px;
	background: var(--black);
	bottom: -14px;
	left: 0;
}

.social-share {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
}

.social-share a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #0088a3;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-share a i {
	font-size: 17px;
	line-height: 1;
}

.social-share a:hover {
	background: #071225;
	color: #fff;
	transform: translateY(-3px);
}

/* ========================================================
   Floating Speed-Dial Contact Chatbot Widget
   ======================================================== */
.hollis-float-widget {
	position: fixed;
	bottom: 25px;
	left: 25px;
	z-index: 999999;
	width: 56px;
	height: 56px;
}

/* Main Floating Pulse Trigger Button (Stays strictly anchored at bottom) */
.hollis-float-trigger {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--primary);
	color: #ffffff;
	border: none;
	outline: none;
	box-shadow: 0 8px 25px rgba(0, 136, 164, 0.45);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.hollis-float-trigger:hover {
	transform: scale(1.08);
	box-shadow: 0 10px 30px rgba(0, 136, 164, 0.6);
}

/* Rotating Icon Inner Wrapper */
.hollis-float-trigger .icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 360 Degree Icon Rotation when Widget toggles active */
.hollis-float-widget.active .hollis-float-trigger .icon-box {
	transform: rotate(360deg);
}

.hollis-float-trigger .icon-close {
	display: none;
}

.hollis-float-widget.active .hollis-float-trigger .icon-chat {
	display: none;
}

.hollis-float-widget.active .hollis-float-trigger .icon-close {
	display: inline-block;
}

/* Outer Continuous Pulse Wave Ring */
.hollis-float-trigger::before {
	content: "";
	position: absolute;
	top: -6px;
	left: -6px;
	right: -6px;
	bottom: -6px;
	border-radius: 50%;
	border: 2px solid var(--primary);
	animation: hollisPulseWave 2s infinite ease-in-out;
	pointer-events: none;
}

@keyframes hollisPulseWave {
	0% {
		transform: scale(0.95);
		opacity: 0.9;
	}

	100% {
		transform: scale(1.45);
		opacity: 0;
	}
}

/* Action Items Container (Positioned absolutely ABOVE main button) */
.hollis-float-actions {
	position: absolute;
	bottom: 68px;
	left: 4px;
	display: flex;
	flex-direction: column-reverse;
	gap: 12px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px) scale(0.7);
	transition: opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
		transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
		visibility 0.35s ease;
	pointer-events: none;
}

/* Active State when Widget is Open */
.hollis-float-widget.active .hollis-float-actions {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

/* Floating Action Button Item */
.hollis-float-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff !important;
	text-decoration: none !important;
	font-size: 1.25rem;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
	position: relative;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hollis-float-btn:hover {
	transform: scale(1.15);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Individual Colors */
.hollis-btn-whatsapp {
	background: #25D366;
}

.hollis-btn-email {
	background: #333333;
}

.hollis-btn-phone {
	background: #0088a4;
}

/* Tooltip Badge on Hover */
.hollis-float-btn .hollis-float-label {
	position: absolute;
	left: 60px;
	background: #132644;
	color: #ffffff;
	font-size: 0.82rem;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 6px;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-10px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
	pointer-events: none;
}

.hollis-float-btn .hollis-float-label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -5px;
	transform: translateY(-50%);
	border-width: 5px 5px 5px 0;
	border-style: solid;
	border-color: transparent #132644 transparent transparent;
}

.hollis-float-btn:hover .hollis-float-label {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

@media (max-width: 576px) {
	.hollis-float-widget {
		bottom: 20px;
		left: 20px;
	}

	.hollis-float-trigger {
		width: 50px;
		height: 50px;
		font-size: 1.25rem;
	}

	.hollis-float-btn {
		width: 44px;
		height: 44px;
		font-size: 1.1rem;
	}
}

.visualizer {
	position: relative;
	padding: 13px 18px !important;
	margin-right: 10px !important;
	border: 1px solid var(--bs-border-color) !important;
	border-color: var(--bs-border-color) !important;
	background-color: transparent !important;
	border-radius: 30px !important;
}

/* Outer border */
.visualizer::before {
	content: "";
	position: absolute;
	inset: -6px;
	border: 1px solid var(--bs-border-color);
	border-radius: 30px !important;
	pointer-events: none;
}

/* ==========================================================================
   Hollis Nano Vitrified Tiles & Technical Specifications Styling
   ========================================================================== */

.hollis-spec-table-container {
	background: #ffffff;
	border-radius: 18px;
	border: 1px solid #e2e8f0;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.hollis-spec-table-container .table {
	margin-bottom: 0;
	font-size: 0.94rem;
}

.hollis-spec-table-container .table thead th {
	background: linear-gradient(135deg, #020e28 0%, #0d2854 100%);
	color: #ffffff;
	font-family: var(--font-family-headings);
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 16px 20px;
	border: none;
	vertical-align: middle;
}

.hollis-spec-table-container .table tbody td {
	padding: 14px 20px;
	vertical-align: middle;
	border-color: #f1f5f9;
	color: #334155;
}

.hollis-spec-table-container .table tbody tr:hover td {
	background-color: #f8fafc;
}

.hollis-spec-table-container .table tbody tr:nth-of-type(even) {
	background-color: rgba(248, 250, 252, 0.5);
}

.hollis-val-badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	border-radius: 20px;
	font-weight: 700;
	font-size: 0.85rem;
	background: rgba(0, 136, 164, 0.1);
	color: var(--primary);
	border: 1px solid rgba(0, 136, 164, 0.25);
}

.hollis-pass-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 0.85rem;
	background: rgba(34, 197, 94, 0.1);
	color: #15803d;
	border: 1px solid rgba(34, 197, 94, 0.25);
}

.hollis-spec-tab-btn {
	padding: 12px 24px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.92rem;
	border: 1.5px solid #e2e8f0;
	background: #ffffff;
	color: #475569;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.hollis-spec-tab-btn:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: rgba(0, 136, 164, 0.04);
}

.hollis-spec-tab-btn.active {
	background: var(--primary);
	color: #ffffff;
	border-color: var(--primary);
	box-shadow: 0 6px 18px rgba(0, 136, 164, 0.3);
}

.hollis-packing-metric-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 22px 20px;
	text-align: center;
	transition: all 0.35s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
	height: 100%;
}

.hollis-packing-metric-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary);
	box-shadow: 0 12px 28px rgba(0, 136, 164, 0.12);
}

.hollis-packing-metric-card .icon-box {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(0, 136, 164, 0.08);
	color: var(--primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	margin-bottom: 14px;
}

.hollis-packing-metric-card .metric-val {
	font-size: 1.35rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 4px;
	font-family: var(--font-family-headings);
}

.hollis-packing-metric-card .metric-lbl {
	font-size: 0.82rem;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	font-weight: 600;
}

.hollis-nano-feature-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	padding: 28px 24px;
	transition: all 0.35s ease;
	height: 100%;
}

.hollis-nano-feature-card:hover {
	border-color: var(--primary);
	transform: translateY(-6px);
	box-shadow: 0 16px 36px rgba(0, 136, 164, 0.12);
}

.hollis-nano-feature-card .feat-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(0, 136, 164, 0.12) 0%, rgba(2, 14, 40, 0.08) 100%);
	color: var(--primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	margin-bottom: 18px;
}

/* Mobile Filter Bar Styles */
.mobile-filter-wrapper .card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.mobile-filter-select {
	font-family: var(--font-family-base) !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	color: #0f172a !important;
	background-color: #f8fafc !important;
	border: 1.5px solid #cbd5e1 !important;
	padding: 8px 24px 8px 10px !important;
	border-radius: 10px !important;
	cursor: pointer;
	transition: all 0.25s ease !important;
}

.mobile-filter-select:focus {
	background-color: #ffffff !important;
	border-color: var(--primary) !important;
	box-shadow: 0 0 0 0.2rem rgba(0, 136, 164, 0.18) !important;
	outline: none !important;
}