:root {
	--theme-primary-color: #f5ab35;
	--theme-secondary-color: #282828;
	--text-color: #444;
	--text-size: 1rem;
}

.theme-text-content {
	color: var(--text-color) !important;
}

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

li {
	margin-bottom: 3px;
}

.page-link {
	--bs-pagination-color: var(--theme-secondary-color);
	--bs-pagination-active-bg: var(--theme-primary-color);
	--bs-pagination-active-color: var(--theme-secondary-color);
	--bs-pagination-active-border-color: var(--theme-secondary-color);
}

input:focus,
.form-control:focus,
.form-select:focus {
	box-shadow: none !important;
}

.color-inherit {
	color: inherit !important;
}

::selection {
	background: var(--theme-primary-color);
	color: var(--theme-secondary-color);
}

/* ==== Common - CSS Start ==== */
.bg-cover{
	background-size: cover;
}
.bg-center{
	background-position: center;
}
* {
	font-family: "Montserrat", sans-serif;
}

a {
	text-decoration: none;
}

body{
	user-select: none;
}
.text-theme-primary {
	color: var(--theme-primary-color) !important;
}

.text-theme-secondary,
.text-theme-secondary-all * {
	color: var(--theme-secondary-color) !important;
}

p {
	color: var(--text-color);
	font-size: var(--text-size);

}

.mt-10 {
	margin-top: calc(3rem * 2);
}

.theme-btn {
	padding: .5rem 1rem;
	border: 1px solid var(--theme-secondary-color);
	border-radius: .35rem;
	font-size: 1rem;
	transition: .3s ease;
	display: inline-block;
	text-align: center;
}

/* ==== Animated Button - CSS Start ==== */
.animated-btn {
	--fontSize: 16px;
	display: inline-flex;
	position: relative;
	font-weight: 500;
	font-size: var(--fontSize);
	letter-spacing: 0.02em;
	border-radius: 100px;
	border: none;
	background: var(--theme-primary-color);
	color: #fff;
	overflow: hidden;
}

.animated-btn.light-button {
	color: #282828;
}

.animated-btn.light-button::before {
	background: #fff;
}

.animated-btn.theme-button {
	background-color: #282828;
}

.animated-btn.theme-button.hover-light {
    background: #fff;
    color: #282828 !important;
}

.animated-btn.theme-button:hover,
.animated-btn.light-button:hover {
	color: #fff;
}

.animated-btn.theme-button::before {
	background: var(--theme-primary-color);
}

.animated-btn span {
	position: relative;
	z-index: 1;
	transition: color 0.4s;
	display: inline-flex;
	align-items: center;
	padding: 0.6em 1.3em 0.6em 1.3em;
}

.animated-btn::before,
.animated-btn::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.animated-btn::before {
	content: "";
	background: #282828;
	width: 120%;
	left: -10%;
	transform: skew(30deg);
	transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.animated-btn:hover::before {
	transform: translate3d(100%, 0, 0);
}

.animated-btn:hover {
	color: #000;
}

/* ==== Animated Button - CSS End ==== */

.theme-btn-primary {
	background: var(--theme-primary-color);
	color: var(--theme-secondary-color);
}

.theme-btn-primary:hover {
	background: var(--theme-secondary-color);
	color: var(--theme-primary-color);
}

.theme-btn-secondary {
	background: var(--theme-secondary-color);
	color: #fff;
}

.theme-btn-secondary:hover {
	background: var(--theme-primary-color);
	color: var(--theme-secondary-color);
}

.theme-btn-sm {
	padding: .4rem 2rem;
	font-size: .8rem;
}

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

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

.theme-bg-light {
	background-color: #f7f7f7;
}

.underline-hover {
	display: inline;
	background-image: linear-gradient(to bottom, #000 0%, #000 98%);
	background-repeat: no-repeat;
	background-position: left 100%;
	background-size: 0% 1px;
	transition: all 0.8s ease-in-out;
}

.underline-hover:hover {
	background-size: 100% 1px;
}

.fs-14 {
	font-size: 14px !important;
}

.fs-1rem {
	font-size: 1rem !important;
}

.fs-18 {
	font-size: 18px !important;
}

.theme-border-light {
	border-color: #a3a3a3;
}

.title h3 {
	--main-title-size: 34px;
	position: relative;
	margin-bottom: 30px;
	font-size: var(--main-title-size);
	font-weight: 700;
	color: #282828;
}

.title h3::before {
	position: absolute;
	content: "";
	height: 2px;
	width: 100px;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: #dedede;
}

.title h3:after {
	position: absolute;
	content: "";
	height: 8px;
	width: 8px;
	border-radius: 50px;
	background-color: var(--theme-primary-color);
	right: 0px;
	left: 50%;
	bottom: -13px;
	transform: translateX(-50%);
	animation: pulseX 5s ease infinite alternate;
}

@keyframes pulseX {
	0% {
		transform: translateX(calc(-50% + -50px));
	}

	100% {
		transform: translateX(calc(-50% + 50px));
	}
}

/* ==== Common - CSS End ==== */
/* ==== Topbar - CSS Start ==== */
.info-head {
	text-align: left;
	padding: 5px 0;
	background-color: var(--theme-primary-color);
	position: relative;
	z-index: 99;
}

.info-head::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--theme-secondary-color);
	top: 0;
	left: 0;
	--bg-clip: 64%;
	clip-path: polygon(var(--bg-clip) 0%, 100% 0, 100% 100%, calc(var(--bg-clip) + 5%) 100%);
}

.info-head ul {
	padding: 5px 0;
	margin: 0;
}

.info-head ul li {
	list-style: none;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	--list-space: 10px;
	padding-left: var(--list-space);
	color: #fff;
}

.info-head ul li:first-child {
	--list-space: 0;
}

.info-head .icon-list-round li i {
	--iconSize: 30px;
	width: var(--iconSize);
	height: var(--iconSize);
	line-height: var(--iconSize);
	text-align: center;
	border-radius: 50%;
	font-size: 14px;
	background-color: transparent;
	transition: .3s ease;
	color: #FFF !important;
}

.top-social-icons li i {
    --iconFontSize: 20px;
    font-size: var(--iconFontSize) !important;
    background: #fff !important;
}

.info-head .icon-list li a span {
	color: #FFF !important;
}

.info-head .icon-hover-secondary li a:hover i {
	background-color: var(--theme-secondary-color);
	color: #fff !important;
}

.info-head .icon-hover-primary li a:hover i {
	background-color: var(--theme-primary-color);
	color: var(--theme-secondary-color) !important;
}

.info-head ul li a {
	color: #fff;
	transition: all .3s ease-in-out;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}

.top-social-icons {
	position: relative;
}

.info-head .top-social-icons li a:hover i {
	color: #FFF !important;
}

/* ==== Topbar - CSS End ==== */
/* ==== Site Header - CSS Start ==== */
.site-header {
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px;
	position: sticky;
	top: 0;
	z-index: 999;
	background: #fff;
}

.site-header .navbar .navbar-brand img {
	width: 100%;
	--site-logo: 270px;
	max-width: var(--site-logo);
}

.site-header li.nav-item:not(:last-child) {
	--site-nav-gap: 10px;
	margin-right: var(--site-nav-gap);
}

.site-header .nav-item .nav-link {
    --bs-nav-link-font-size: 1.1rem;
    --bs-nav-link-font-weight: 500;
    --bs-nav-link-hover-color: var(--theme-primary-color);
	--bs-navbar-active-color: var(--theme-primary-color);
    --bs-nav-link-color: #282828;
    --bs-nav-link-padding-y: 4px;
    position: relative;
}

.site-header .nav-item .nav-link:hover {
	color: var(--theme-primary-color);
}

.site-header .nav-item .nav-link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	--nav-animate-width: 0%;
	width: var(--nav-animate-width);
	height: 2px;
	background: var(--theme-secondary-color);
	transition: .3s ease;
}
.add-to-cart-btn i {
	color: var(--theme-secondary-color);
    font-size: 22px;
}
.add-to-cart-btn .items-count {
	background-color: var(--theme-primary-color);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    display: grid;
    place-items: center;
    position: absolute;
    top: -11px;
    right: -9px;
}

/* ==== Site Header - CSS End ==== */

/* ==== Home Hero Slider - CSS Start ==== */
.home-hero-slider {
	--swiper-pagination-bullet-inactive-color: #fff;
	--swiper-pagination-bullet-inactive-opacity: 0.4;
	--swiper-pagination-bullet-size: 13px;
	--swiper-pagination-color: var(--theme-primary-color);
	cursor: grab;
	--swiper-navigation-size: 19px;
	--swiper-navigation-color: var(--theme-primary-color);
	--swiper-navigation-sides-offset: 25px;
	--swiper-pagination-bottom: 15px;
}

.home-hero-slider .swiper-button-prev,
.home-hero-slider .swiper-button-next {
	width: 40px;
	height: 40px;
	border-radius: 100px;
	background: #fff;
	font-weight: 900;
}

.home-hero-slider .swiper-button-prev::before,
.home-hero-slider .swiper-button-next::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	border-radius: 100px;
	outline: 1px dashed #fff;
	outline-offset: 3px;
	animation: spin 8s infinite linear;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.home-hero-slider .swiper-button-prev:hover:before,
.home-hero-slider .swiper-button-next:hover:before {
	animation-play-state: paused;
}

.home-hero-slider .slide-item {
	--hero-slide-height: 550px;
	height: var(--hero-slide-height);
	width: 100%;
	position: relative;
	display: grid;
	place-content: center;
}

.slide-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(rgba(20, 20, 20, 0.70), rgba(20, 20, 20, 0.70));
}

.slide-item.overlay-none::before{
	display: none;
}
.object-fit-contain{
	object-fit: contain;
}
.home-hero-slider .slide-item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.home-hero-slider .slide-text {
	--hero-content-width: 1100px;
	position: relative;
	z-index: 1;
	max-width: var(--hero-content-width);
}

.home-hero-slider .slide-text .slide-heading {
	--hero-heading-font-size: 60px;
	font-size: var(--hero-heading-font-size);
	color: var(--theme-primary-color);
	line-height: 1.2;
	font-weight: 600;
}

.home-hero-slider .slide-text .slide-content {
	--hero-content-font-size: 20px;
	font-size: var(--hero-content-font-size);
	color: #fff;
	max-width: 700px;
	margin: 20px auto 0;
}

/* ==== Home Hero Slider - CSS End ==== */

/* ==== About Section - CSS Start ==== */
.about-section-main {
	padding: 50px 0;
}

.about-img-all img {
	max-width: 440px;
	width: 100%;
}

.about-img-all {
	text-align: center;
}

.about-sub-heading {
	color: #234076;
	font-size: 34px;
}

.about_heading {
	font-size: 26px;
	color: var(--theme-primary-color);
	font-weight: 600;
}

.about_description {
	color: #333;
	font-size: 15px;
	line-height: 26px;
	padding-top: 10px;
}

.about-section-main img.about-img-2,
.about-section-main img.about-img-3 {
	position: absolute;
	width: 110px;
}

.about-section-main img.about-img-2 {
	--img2-right: -40px;
	--img2-top: -20px;
	right: var(--img2-right);
	top: var(--img2-top);
}

.about-section-main img.about-img-3 {
	left: -50px;
	bottom: -20px;
}

.floating-Y {
	animation: floatingY 5s linear infinite;
}

.floating-X {
	animation: floatingX 5s linear infinite;
}

@keyframes floatingY {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(20px);
	}

	100% {
		transform: translateY(0px);
	}
}

@keyframes floatingX {
	0% {
		transform: translateX(0px);
	}

	50% {
		transform: translateX(20px);
	}

	100% {
		transform: translateX(0px);
	}
}

/* ==== About Section - CSS End ==== */

/* ==== Services - CSS Start ==== */
.expert-section {
	padding-top: 70px;
	padding-bottom: 60px;
}

.base-header h3 {
	letter-spacing: 4px;
	text-transform: uppercase;
	padding-bottom: 20px;
	position: relative;
	font-size: 30px;
}

.base-header small {
	color: var(--theme-primary-color);
}

.base-header small {
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 500;
	display: block;
	line-height: 0.8;
	letter-spacing: 3px;
	margin-bottom: 15px;
	position: relative;
}

.expert-item {
	padding: 40px 20px 23px 25px;
	position: relative;
	margin-top: -10px;
	background: #fff;
	margin-bottom: 40px;
	transition: all 0.3s ease-in-out;
}

.expert-item::before {
	position: absolute;
	content: '';
	height: 30px;
	width: 30px;
	bottom: 0;
	right: 0;
	background: #fbfbfb;
	background: linear-gradient(315deg, #e9ecef 45%, #c5852c 50%, #dba251 56%);
}

.expert-item .icon {
    width: 50px;
    height: 50px;
    mask-size: 50px;
    mask-position: center center;
    mask-repeat: no-repeat;
    background-color: var(--theme-primary-color);
}

.animated-readMore a {
	display: block;
	font-weight: 500;
	transform: translateX(-78px);
	color: var(--theme-primary-color);
	transition: .5s cubic-bezier(0.4, 0, 0.2, 1);
}

.animated-readMore svg {
	font-size: 24px;
}

.animated-readMore a:hover,
.expert-item:hover .animated-readMore a {
	transform: translateX(0)
}

/* ==== Services - CSS End ==== */

/* ==== Products Section - CSS Start ==== */
.products {
	background: url('../images/product-bg.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.products.no-bg{
    background: none !important;
}

.products h3 {
	text-align: center;
	color: var(--theme-primary-color);
}

.products .cards {
	border: 1px solid #eee;
	box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}

.products .cards img {
	transition: .3s;
}

span.sale-item {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
	width: 45px;
	height: 45px;
	border-radius: 100px;
	background: var(--theme-primary-color);
	color: #ffffff;
	display: grid;
	place-content: center;
	font-size: 14px;
	font-weight: 600;
}
span.sale-item::before{
	content: '';
	position: absolute;
	background: var(--theme-primary-color);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 100px;
	animation: video-toggle-animate 1.2s ease-in infinite forwards;
	z-index: -1;
}

.products .cards:hover img {
	transform: scale(1.05) rotate(2deg);
}

.products .cards img {
    border-radius: 5px 5px 0px 0px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.products .cards .package-img {
    height: 300px;
    object-fit: contain;
    background-color: #fff;
}

.products .cards .box {
	padding: 20px 15px;
	background: #FFF;
	text-align: center;
}

.products .cards .box h5 {
    color: var(--theme-primary-color);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.products .cards .box span:not(a>span) {
	font-weight: 600;
	font-size: 18px;
}

.flip-hover-card .overlay {
	--opacity-rgb: 80%;
	--theme-color-rgb: 245 171 53;
	background: rgb(var(--theme-color-rgb) / var(--opacity-rgb));
	text-align: center;
	position: absolute;
	left: 10px;
	top: 10px;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	color: #fff;
	opacity: 0;
	transition: all 450ms ease-out 0s;
	transform: rotateY(180deg) scale(0.5, 0.5);
}

.flip-hover-card .overlay .inner-box {
	position: relative;
	display: table;
	height: 100%;
	width: 100%;
	text-align: center;
}

.flip-hover-card .overlay .inner-box .content-box {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.flip-hover-card .overlay a {
	position: relative;
	color: var(--theme-primary-color);
	height: 45px;
	width: 45px;
	border: 1px solid #fff;
	line-height: 43px;
	text-align: center;
	border-radius: 50%;
	transition: 0.5s ease;
	background: #fff;
	display: inline-grid;
    place-content: center;
}

.flip-hover-card .overlay a::before {
	content: "";
	position: absolute;
	background: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 100px;
	animation: video-toggle-animate 1.2s ease-in infinite forwards;
	z-index: -1;
}

.flip-hover-card:hover .sale-item{
	display: none;
}

@keyframes video-toggle-animate {
	0% {
	  width: 45px;
	  height: 45px;
	  opacity: 0.8;
	}

	100% {
	  width: 70px;
	  height: 70px;
	  opacity: 0;
	}
  }

.flip-hover-card:hover .overlay {
	opacity: 1;
	transform: rotateY(0deg) scale(1, 1);
}

/* ==== Products Section - CSS End ==== */

/* ==== CTA Banner - Start ==== */
.cta-banner {
	position: relative;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.cta-banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #282828;
}
.cta-banner.page-banner::before{
	opacity: .5;
}

.cta-banner .cta-title{
	font-size: 45px;
	font-weight: 600;
	color: #fff;
}
.cta-banner .cta-content{
	color: #fff;
}
/* ==== CTA Banner - End ==== */

/* ==== Contact Section - CSS Start ==== */
.get-touch-area .get-touch-box {
	display: flex;
	align-items: flex-start;
}

.get-touch-area .social-links li a{
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: inline-grid;
    place-content: center;
    font-size: 20px;
}

.get-touch-area .get-touch-box .icon {
	margin-right: 8px;
}

.get-touch-area .get-touch-box-content span,
.get-touch-area .get-touch-box-content a {
	color: var(--text-color);
	font-size: 14px;
}
.get-touch-area .get-touch-box-content a:hover {
	color: var(--theme-primary-color);
}

.contact-form-widget label {
	font-size: 14px;
	color: var(--theme-secondary-color);
	font-weight: 600;
	display: block;
	margin-bottom: 8px;
}

.contact-form-widget .form-control {
	background-color: transparent;
	height: 48px;
	color: #9199a1;
	font-size: 14px;
	font-weight: 400;
	border: 1px solid #ebebeb;
	padding-right: 20px;
	padding-left: 20px;
}

.contact-form-widget textarea.form-control {
	height: inherit;
}

.contact-form-widget .form-control:focus {
	border-color: var(--theme-primary-color);
}

.contact-form-widget .policy-text {
	font-size: 14px;
	font-weight: 400;
	color: #4c5267;
	line-height: 22px;
}

/* ==== Contact Section - CSS End ==== */

/* ==== Footer - CSS Start ==== */
.footer-shape::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-image: url('../images/Footer-BG.png');
	background-position: center left;
	background-size: cover;
	background-repeat: no-repeat;
}

footer {
	position: relative;
	background-color: #111117;
	color: #e0e0e0;
}

footer p {
	color: #e0e0e0 !important;
	font-size: 15px;
}

footer h4 {
	font-size: 20px;
}

footer .card h4.title {
	margin: 1.5rem 0;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: #e0e0e0;
}

footer .card {
	background-color: transparent !important;
	padding: 0;
}

footer .card i {
	margin-right: 10px;
	color: #e0e0e0;
}

footer .items .card h4 {
	color: #FFF;
}

footer .items .card a {
	margin: 0 0 0.5rem;
	color: inherit;
	font-size: 14px;
	color: #FFF;
}

footer .items .card a:hover {
	color: var(--theme-primary-color);
}

footer .navbar-brand img {
	max-width: 50px;
}

footer .navbar-brand .featured .first {
	position: relative;
	margin-right: -10px;
}

footer .brand .logo {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 0.8;
}

footer .brand a:hover {
	text-decoration: none;
}

footer .title {
	margin-top: 0;
}

footer .nav-item {
	margin: 0;
}

footer .nav-item .nav-link {
	font-weight: 400;
	line-height: 1.4;
	color: inherit;
}

footer .nav-item .nav-link:hover {
	color: var(--theme-primary-color);
}

footer .copyright p {
	font-size: 14px;
	line-height: 1.8;
}

.copyright {
	border-top: 1px solid #4c4c4c;
}

/* ==== Footer - CSS End ==== */
.modal button.close-btn-modal {
	position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--theme-secondary-color);
    color: #000;
    opacity: 1;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    display: grid;
    place-items: center;
    font-size: 0px;
}
.modal button.close-btn-modal:hover {
	background-color: var(--theme-primary-color);
}
.modal button.close-btn-modal i {
	font-size: 20px !important;
	color: #fff;
	z-index: 1;
}
.modal h1.modal-title {
	font-size: 24px !important;
	color: var(--theme-secondary-color);
    font-weight: 600;
	text-transform: uppercase;
}
.modal .contact-form-widget input.form-control {
	height: 44px !important;
}
.modal .contact-form-widget .form-control {
	padding-left: 12px !important;
	border: 1px solid #e1d3d3;
}
/* .get-in-touch-modal .animated-btn span {
	padding: 0.5em 1em 0.5em 1em !important;
} */
.modal .modal-header {
	justify-content: center;
    /* border-bottom: 0px; */
    padding: 10px;
}
@media (min-width: 576px){
	.sign-up-popup .modal-dialog, .contact-us-popup .modal-dialog {
		--bs-modal-width: 650px;
	}
}
.what-we-do-section {
	background: url('../images/what-we-do-bg-image.webp');
}
.what-we-do-section .what-we-do-overlay {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}
.what-we-do-section {
	background-repeat: no-repeat;
    background-size: cover;
}
.get-in-touch-form-widget label {
	display: none;
}
.icon-group .icon {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    display: grid;
    place-content: center;
    cursor: pointer;
}
/* Product page css starts from here */
.product-detail-section .product-image-container img {
	width: 100%;
    border-radius: 10px;
}
.product-detail-section .product-name {
	--product-title-size: 30px;
    position: relative;
    margin-bottom: 10px;
    font-size: var(--product-title-size);
    font-weight: 700;
    color: var(--text-color);
}
.product-detail-section .product-price {
	--product-price-size: 27px;
    position: relative;
    margin-bottom: 10px;
    font-size: var(--product-price-size);
    font-weight: 700;
    color: var(--text-color);
}
.product-detail-main-section {
	color: var(--text-color);
}
.custom-counter-product-detail {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0px;
	max-width: 200px;
	/* margin: auto; */
}
.custom-counter-product-detail .counter-input {
	width: 50px;
	text-align: center;
	border: 1px solid var(--theme-primary-color);
	height: 35px;
    border-radius: 0px;
    font-size: 18px;
}
.custom-counter-product-detail .counter-input:focus-visible {
	border: 1px solid var(--theme-primary-color) !important;
}
.custom-counter-product-detail .counter-minus {
	background-color: var(--theme-primary-color);
    min-height: 35px;
    display: grid;
    place-items: center;
    color: var(--text-color);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.custom-counter-product-detail .counter-plus {
	background-color: var(--theme-primary-color);
    min-height: 35px;
    display: grid;
    place-items: center;
    color: var(--text-color);
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
/* Tabs Css Starts */
.product-detail-tabs li.nav-item button[aria-selected="true"] {
	background-color: var(--theme-primary-color);
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
	line-height: 1.7em;
	transition: 0.5s;
}
.product-detail-tabs li.nav-item button[aria-selected="true"]:hover {
	background-color: #282828;
}
.product-detail-tabs li.nav-item button[aria-selected="false"] {
	color: var(--text-color);
    font-weight: 600;
	line-height: 1.7em;
}
.product-detail-tabs li.nav-item button:hover {
	border-radius: 10px;
	line-height: 1.7em;
}
/* Tabs Css Ends */
/* Product page css ends from here */

/* ==== Floating Buttons - CSS Start ==== */
.floating-buttons {
    position: fixed;
    z-index: 99;
}
.floating-buttons.bottom-right{
    bottom: var(--offset);
    right: var(--offset);
}

.floating-buttons ul{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: calc(var(--offset) - 10px);
    list-style: none
}
.floating-buttons ul li a{
    width: 45px;
    height: 45px;
    display: inline-grid;
    place-content: center;
    border-radius: 100px;
    color: #fff;
    font-size: 18px;
	animation: zoom-in .75s ease infinite alternate;
	animation-delay: .5s;
}
.mobile-banner{
	display: none !important;
}
@media(min-width:990px) and (max-width: 1150px){
	.site-header a.nav-link {
		font-size: 14px !important;
	}
	.site-header .navbar .navbar-brand img {
		--site-logo: 200px !important;
	}
}
@media(max-width:767px){
	.desktop-banner{
		display: none;
	}
	.mobile-banner{
		display: block !important;
	}
	.site-header .navbar .navbar-brand img{
		--site-logo: 210px !important;
	}
	.info-head::before{
		--bg-clip: 52% !important;
	}
}
@keyframes zoom-in {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}
/* ==== Floating Buttons - CSS End ==== */
