/* Theme Name: Codi Keys */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--font-family-heading: "Poppins", sans-serif;
	--font-family-para: "Poppins", sans-serif;
	--primary-color: #014FA1;
	--secondary-color: #FFD353;
	--bg-color: #EFF1F5;
	--secondary-heading-color: #222529;
	--accent-text-color: #777777;
	--dark-color: #000000;
	--white-color: #ffffff;
}
body {
	font-family: var(--font-family-para);
	color: var(--secondary-heading-color);
	background-color: var(--white-color);
	font-size: 14px;
	font-weight: 400;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
p {
	font-size: 14px;
	color: var(--accent-text-color);
	margin-bottom: 0;
	font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-heading);
	color: var(--secondary-heading-color);
}
ul,
ol {
	margin-bottom: 0;
	padding-left: 0;
	list-style: none;
}
a {
	text-decoration: none;
	color: var(--dark-color);
}
a:hover {
	color: var(--dark-color);
}
/*  */
.topbar{
	padding: 14px 0;
	border-bottom: 1px solid #E7E7E7;
}
.topbar-wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.topbar-info{
	font-weight: 500;
	font-size: 14px;
	line-height: 1;
	color: var(--accent-text-color);
	display: flex;
	align-items: center;
	gap: 7px;
}
.topbar-info span {
	display: inline-block;
	background: var(--primary-color);
	color: var(--white-color);
	padding: 5px 12px;
	border-radius: 20px;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 12px;
}
.help-btn{
	background-color: #F1F2FE;
	padding: 4px 10px 4px 10px;
	border-radius: 8px 8px 8px 8px;
	font-size: 12px;
	font-weight: 600;
	text-transform: capitalize;
}
header{ 
	padding: 19px 0;
}
.header-wrapper{
	display: flex;
	align-items: center;
	gap: 20px;
}
.header-logo img{
	width: 100%;
	max-width: 150px;
}
.search-bar{
	border-radius: 25px;
	line-height: 40px;
	border: 1px solid #E7E7E7;
	display: flex;
	align-items: center;
	flex: 1;
	position: relative;
}
.search-bar input{
	padding: 0 15px 0 20px;
	border-radius: 25px;
	height: 48px;
	line-height: 48px;
	width: 100%;
	border: none;
	outline: none;
	font-size: 13px;
}
.search-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	line-height: 48px;
	padding: 0 12px;
	font-size: 19px;
	color: #333333;
	cursor: pointer;
}
.search-results-wrapper{
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    z-index: 1;
    width: 100%;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #dcdcdc;
    height: auto;
    max-height: 450px;
    overflow-x: hidden;
    overflow-y: scroll;
    display: none;
}
#search-results a{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	border-radius: 12px;
	transition: 0.3s all;
}
#search-results a:hover{
	background: #f9f9f9;
}
#search-results a .item-wrap{
	display: flex;
	align-items: center;
	gap: 10px;
}
#search-results a .price{
	font-size: 16px;
	font-weight: 600;
	color: #444444;
	line-height: 1;
}
#search-results a .price del{
	font-size: 14px;
	color: red;
}
#search-results a .item-wrap img{
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 4px;
}
#search-results a .title{
	font-size: 16px;
}
.search-bar input[type="search"]::-webkit-search-cancel-button {
	display: none;
}
.search-btn .loader {
	width: 18px;
	height: 18px;
	border: 2px solid #ccc;
	border-top: 2px solid #000;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	display: none;
}
@keyframes spin {
	100% { transform: rotate(360deg); }
}
.search-btn .loader:before{
	display: none;
}
.header-btn{
	display: flex;
	align-items: center;
	gap: 20px;
}
.mobile_SidebarOpen{
	display: none;
}
.mobile_SidebarOpen i{
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
}
.my-account-btn{
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
}
.my-account-btn i{
	border-radius: 8px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 22px;
	color: #222529;
	background: #F1F2FE;
}
.headerMob_SearchBar{
	position: relative;
	padding: 15px 0px;
	border-bottom: 1px solid #E7E7E7;
	display: none;
}
.header-menus{
	background-color: rgb(249, 249, 249);
	padding: 17px 0;
}
.header-menus ul{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
}
.header-menus ul li{
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}
.header-menus ul li a{
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}
.header-menus ul li .sub-menu{
	position: absolute;
	top: 100%;
	flex-flow: column;
	gap: 0;
	background: #fff;
	z-index: 1;
	display: none;
}
.header-menus ul li .sub-menu li a{
	font-size: 13px;
	padding: 10px 15px;
	width: 330px;
	display: block;
	transition: 0.3s all;
}
.header-menus ul li .sub-menu li a:hover{
	background: var(--secondary-color);
	color: var(--primary-color);
}
.header-menus ul li:hover .sub-menu{
	display: flex;
}
.header-menus ul li.menu-item-has-children:after{
	content: '\f107';
	font-family: "FontAwesome";
}
.hero-sec{
	padding-top: 28px;
}
.hero-title{
	font-size: 36px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 20px;
}
.hero-banner{
	background-color: #EFF1F5;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 32px;
	margin-bottom: 48px;
	border-radius: 10px;
	display: flex;
	gap: 20px;
	height: 480px;
}
.hero-content{
	padding: 51.8px 46.2px;
	margin-top: 32.784px;
	margin-left: 32.784px;
	background-position: top left;
	background-repeat: no-repeat;
	width: 44%;
}
.hero-content h2{
	font-size: 42px;
	color: var(--dark-color);
	font-weight: 700;
}
.hero-content p{
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
}
.hero-btn{
    font-size: 16px;
    font-weight: 600;
    padding: 12px 22px;
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    text-transform: capitalize;
    border-radius: 30px;
}
.hero-img{
	margin: 0 31.418px -58.4px -56px;
}
.hero-img img{
	width: 100%;
	max-width: 564px;
}
/*  */
.category-sec{
	margin-bottom: 63px;
}
.category-box{
	background-color: #f4f4f4;
	border: 3px solid #f4f4f4;
	border-radius: 10px;
	display: flex;
	flex-flow: column;
}
.category-box img{
    max-width: 45px;
    height: auto;
    margin: 0 auto;
    padding: 18px 0px;
}
.category-box .category-box-title{
	padding: 15px 12px 20px;
	background-color: var(--white-color);
	border-radius: 0 0 10px 10px;
}
.category-box-title p{
	font-size: 15px;
	font-weight: 500;
	text-align: center;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.category-wrapper{
	position: relative;
}
.cat-button-prev , .cat-button-next{
	height: 50px;
	width: 50px;
	line-height: 50px;
	display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid #dcdcdc;
	color: var(--secondary-heading-color);
	font-size: 20px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	transition: 0.4s all;
}
.cat-button-prev{
	left: -25px;
}
.cat-button-next{
	right: -25px;
}
.cat-button-prev:hover , .cat-button-next:hover{
	background: var(--primary-color);
	color: var(--white-color);
}
.swiper-button-disabled{
	opacity: 0.5;
	cursor: default;
}
.section-info {
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.section-info h2{
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 0;
	text-transform: capitalize;
}
.section-info ul{
	display: flex;
	align-items: center;
	gap: 12px;
}
.section-info ul li{
	display: flex;
	align-items: center;
	gap: 5px;
	border: 1px solid #ccc;
	background: var(--white-color);
	padding: 4.8px 19.2px;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	transition: 0.3s all;
}
.section-info ul li img , .section-info ul li svg{
	width: 14px;
	transition: 0.3s all;
}
.section-info ul li:hover , .section-info ul li.current{
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--white-color);
}
.section-info ul li:hover svg  , .section-info ul li.current svg{
	fill: var(--white-color);
}
/*  */
.product-sec{
	padding-bottom: 60px;
	margin-bottom: 60px;
	border-bottom: 1px solid #E7E7E7;
}
.product-slider .swiper-slide{
	height: auto;
}
.product-card{
	background-color: #f4f4f4;
	border: 3px solid #f4f4f4;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	margin-bottom: 24px;
	overflow: hidden;
	transition: .4s all;
}
.product-img{
    position: relative;
    overflow: hidden;
}
.product-img img{
	width: 100%;
	height: auto;
	transform: scale(1);
	transition: .4s all;
}
.product-img:hover img{
	transform: scale(1.04);
}
.product-content{
	padding: 15px 20px 20px;
	background-color: var(--white-color);
	border-radius: 0 0 10px 10px;
	display: flex;
	flex-flow: column;
	gap: 10px;
	text-align: center;
}
.product-cat a{
	font-size: 10px;
	text-transform: uppercase;
	color: #999999;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.product-title{
	font-size: 15px;
	text-transform: capitalize;
	margin-bottom: 0;
	height: 36px;
	overflow: hidden;
}
.product-price{
	font-size: 18px;
	font-weight: 600;
	color: #444444;
	line-height: 1;
}
.product-btn a:before{
	content: '\f07a';
	font-family: "FontAwesome";
	font-size: 16px;
}
.product-btn a.product_type_variable:before{
	content: '\f1de';
}
.product-btn a , .product-btn button{
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 10px !important;
	border-radius: 25px !important;
	background: var(--secondary-color) !important;
	color: var(--primary-color) !IMPORTANT;
	text-transform: uppercase;
	font-size: 12px !IMPORTANT;
	font-weight: 600 !IMPORTANT;
	transition: 0.3s all;
}
.product-btn a:hover , .product-btn button:hover{
	background: var(--primary-color) !important;
	color: var(--secondary-color) !important;
}
.tab-content{
	position: relative;
	display: none;
}
.tab-content.current , .tab-content.active{
	display: block;
}
.prod-button-prev , .prod-button-next{
	height: 50px;
	width: 50px;
	line-height: 50px;
	border-radius: 50%;
	display: flex;
    align-items: center;
    justify-content: center;
	background: var(--white-color);
	border: 1px solid #dcdcdc;
	color: var(--secondary-heading-color);
	font-size: 20px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	transition: 0.3s all;
}
.prod-button-prev:hover , .prod-button-next:hover{
	background: var(--primary-color);
	color: var(--white-color);
}
.prod-button-prev{
	left: -25px;
}
.prod-button-next{
	right: -25px;
}
.featured-sec{
	padding-bottom: 36px;
}
.featured-sec .product-card{
	margin-bottom: 24px;
	height: auto;
}
.view-all-cat a{
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	gap: 7px;
	max-width: max-content;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--white-color);
	border-radius: 25px;
	padding: 4px 4px 4px 15px;
	margin: auto;
}
.view-all-cat a i {
	width: 28px;
	height: 28px;
	line-height: 28px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--white-color);
	color: var(--primary-color);
	transform: rotate(45deg);
}
.featured-sec-2{
	padding: 60px 0 40px;
}
/*  */
.brand-sec{
	padding: 60px 0;
	display: none;
}
.brand-box-wrapper{
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	border-left: 1px solid #E7E7E7;
	border-top: 1px solid #E7E7E7;
}
.brand-box{
	padding: 32px 16px;
	border-right: 1px solid #E7E7E7;
	border-bottom: 1px solid #E7E7E7;
}
.brand-slider-sec{
	padding: 20px 0;
	border-top: 1px solid #E7E7E7;
	border-bottom: 1px solid #E7E7E7;
}
.brand-box img{
	width: 100%;
}
.brand img{
	width: 100%;
	filter: grayscale(1) opacity(.4);
	transition: all .4s ease;
	aspect-ratio: 1/0.4;
	object-fit: contain;
	cursor: pointer;
}
.brand img:hover{
	filter: none;
}
/*  */
.digital-sec{
	padding: 60px 0;
}
.section-info-2{
	margin-bottom: 20px;
	text-align: center;
}
.section-info-2 h2{
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 7px;
	text-transform: capitalize;
}
.section-info-2 p{
	font-size: 18px;
	font-weight: 500;
}
.digital-box-wrapper{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.digital-box{
	background: #F9F9F9;
	border-radius: 10px;
	padding: 0 22px 22px;
	margin-top: 60px;
}
.digital-box .icon-box{
    background-color: var(--primary-color);
    font-size: 30px;
    border-radius: 9px;
    height: 65px;
    width: 65px;
    line-height: 84px;
    text-align: center;
    color: var(--white-color);
    position: relative;
    top: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.digital-box .icon-box i{
	font-size: 22px;
}
.digital-box span{
	font-size: 16px;
	color: var(--primary-color);
}
.digital-box h3{
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
}
.digital-box p{
	font-size: 14px;
	color: #777777;
}
/*  */
.payment-sec{
	padding: 40px 0;
	background: #F9F9F9;
}
.card-wrapper{
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}
.card-wrapper h2{
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 0;
	text-transform: capitalize;
}
.card-wrapper img{
	max-width: 100%;
}
.payment-wrapper{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
}
.payment-wrapper img{
	width: 100%;
}
/*  */
.delivery-sec{
	padding: 15px 0;
	background: #424242;
}
.delivery-wrapper{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.deliver-box{
	font-size: 16px;
	color: var(--white-color);
	display: flex;
	align-items: center;
	gap: 7px;
	line-height: 1;
}
/*  */
.info-box-wrapper{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	padding: 45px 0;
}
.info-box{
	background: var(--secondary-color);
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 30px 40px;
}
.info-box img{
	max-width: 100%;
	height: auto;
}
.info-box h2{
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 7px;
	color: var(--white-color);
}
.info-box p{
	font-size: 16px;
	color: #FFFFFFB3;
}
.contact-box{
	border-radius: 10px;
	padding: 30px 40px;
	border: 1px solid #E7E7E7;
	display: block;
}
.contact-btn{
	display: inline-block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	background: #F1F2FE;
	border-radius: 6px;
	margin-bottom: 15px;
}
.contact-info p{
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 0px;
}
.contact-info a{
	font-size: 16px;
	font-weight: 500;
	color: #944CF5;
	border-bottom: 1px solid #944CF5;
}
.newsletter-wrapper{
	display: flex;
	align-items: center;
	border: 1px solid #E7E7E7;
	border-radius: 30px;
	overflow: hidden;
	margin-bottom: 15px;
}
.newsletter-wrapper input[type=email]{
	font-size: 14px;
	height: 48px;
	line-height: 48px;
	border: none;
	outline: none;
	padding: 8px 12px 8px 16px;
	width: 100%;
}
.newsletter-wrapper input[type=submit]{
	font-size: 12px;
	font-weight: 600;
	text-transform: capitalize;
	background-color: #222529;
	border: none;
	outline: none;
	color: var(--white-color);
	border-radius: 20px;
	padding: 0 12px;
	height: 32px;
	margin: 8px;
}
.newsletter-wrapper input[type=submit]:focus{
	box-shadow: 0 0 0 0.25rem rgba(0, 182, 122, 0.25);
}
footer h3{
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
	text-transform: capitalize;
}
.quick-links ul{
	display: flex;
	flex-flow: column;
	gap: 7px;
}
.quick-links ul li a{
	font-size: 14px;
	font-weight: 500;
	color: #777777;
}
.newsletter p{
	font-size: 14px;
}
.newsletter p a{
	color: var(--accent-text-color);
	border-bottom: 1px solid var(--accent-text-color);
}
.footer-logo img{
	width: 100%;
	max-width: 180px;
}
.footer-social{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}
.footer-social a{
	display: inline-block;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	background: var(--secondary-color);
	color: var(--white-color);
}
.footer-copyright{
	padding: 10px 0;
	text-align: center;
	background: #424242;
	margin-top: 40px;
}
.footer-copyright p{
	font-size: 14px;
	font-weight: 500;
	color: var(--white-color);
}
.active-category-title{
	font-size: 25px;
	margin-bottom: 15px;
	text-transform: capitalize;
	font-weight: 600;
}
.product-tabs{
	display: flex;
	flex-flow: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 15px;
}
.product-tabs li{
	padding: 10px 20px;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	cursor: pointer;
	transition: 0.3s all;
}
.product-tabs li.active , .product-tabs li:hover{
	background: var(--primary-color);
	color: var(--secondary-color);
}
a.added_to_cart.wc-forward {
	display: none !important;
}
.custom-breadcrumb{
	padding: 15px 0;
	background: var(--primary-color);
}
.custom-breadcrumb h1{
	font-size: 30px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
	color: #fff;
}
.custom-breadcrumb ul{
	display: flex;
	align-items: center;
	gap: 10px;
}
.custom-breadcrumb ul li , .custom-breadcrumb ul li a{
	color: #fff;
	text-transform: capitalize;
}
.custom-breadcrumb ul li a{
	display: flex;
	align-items: center;
	gap: 10px;
}
.custom-breadcrumb ul li a:after{
	content: "\f105";
	font-family: "FontAwesome";
}
.shop-sec{
	padding: 40px 0;
}
.product-price del {
	font-size: 14px;
	color: red;
}
.category-header{
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	gap: 15px;
}
.category-title {
	font-size: 30px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 0;
}
.product-category-page{
	padding: 40px 0;
}
.product_title.entry-title {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 10px;
}
.entry-summary .price {
	font-size: 22px !important;
	font-weight: 500;
	color: #777777 !important;
	margin-bottom: 10px;
}
.entry-summary .price del{
	font-size: 18px !important;
	color: red !important;
}
.woocommerce-product-details__short-description p{
	margin-bottom: 18px;
}
.cart{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px !important;
}
.variations_form.cart{
	flex-flow: wrap;
}
.cart:before{
	display: none !important;
}
.variations_form.cart .variations{
	flex: 0 0 100%;
	margin-bottom: 0;
}
.quantity{
	width: 80px;
	border-radius: 25px;
	background-color: #F8F8F8 !important;
	border: 1px solid #EAEAEA !important;
	height: 40px;
	display: flex;
	align-items: center;
	overflow: hidden;
	margin: 0 !important;
}
.quantity input{
	border: none;
	outline: none;
	width: 100% !important;
	height: 100%;
	background: transparent;
}
.woocommerce-variation-add-to-cart{
	display: flex;
	align-items: center;
	gap: 10px;
}
button.single_add_to_cart_button.button.alt {
	width: 100%;
	height: 40px;
	border-radius: 25px;
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	background: var(--primary-color);
}
.single_variation_wrap{
	width: 100%;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li{
	border: 1px solid var(--primary-color);
	border-radius: unset;
	margin: 0;
	background: transparent;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before , .woocommerce div.product .woocommerce-tabs ul.tabs li.active::after , .woocommerce div.product .woocommerce-tabs ul.tabs::before , .woocommerce div.product .woocommerce-tabs ul.tabs::after , .woocommerce div.product .woocommerce-tabs ul.tabs li::after , .woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before{
	display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active{
	background: var(--primary-color);
	color: var(--secondary-color);
	border-bottom-color: var(--primary-color);
}
.woocommerce div.product .woocommerce-tabs ul.tabs{
	padding: 0;
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: 1px dashed var(--primary-color);
	padding-bottom: 20px;
}
.woocommerce-Tabs-panel h2 , .related.products h2{
	font-size: 24px;
	margin-bottom: 10px;
	font-weight: 600;
	text-transform: capitalize;
}
.woocommerce-Tabs-panel ul , .woocommerce-Tabs-panel p{
	margin-bottom: 10px;
}
.woocommerce-Tabs-panel ul:last-child , .woocommerce-Tabs-panel p:last-child{
	margin-bottom: 0;
}
.woocommerce-tabs.wc-tabs-wrapper {
	border-top: 1px dashed var(--primary-color);
	border-bottom: 1px dashed var(--primary-color); 
	padding: 20px 0;
}
.woocommerce div.product .woocommerce-tabs .panel , .woocommerce table.shop_attributes{
	margin: 0 !important;
}
section.related.products {
	padding-top: 40px;
}
.woocommerce-page ul.products{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 0;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{
	background-color: #f4f4f4;
	border: 3px solid #f4f4f4;
	border-radius: 10px;
	overflow: hidden;
	margin: 0;
	width: unset;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title{
	font-size: 15px;
	text-transform: capitalize;
	margin-bottom: 0;
	height: 36px;
	overflow: hidden;
	padding: 0;
}
.woocommerce ul.products li.product .price {
	font-size: 18px;
	font-weight: 600;
	color: #444444;
	line-height: 1;
	margin-bottom: 0;
}
.woocommerce ul.products li.product .price del{
	font-size: 14px;
	color: red;
}
.woocommerce ul.products li.product .button {
	display: block;
	margin-top: 0;
	text-align: center;
	padding: 10px;
	border-radius: 25px;
	color: var(--secondary-color);
	background: var(--primary-color);
	font-weight: 600;
	text-transform: uppercase;
}
.woocommerce ul.products li.product a{
	position: relative;
	overflow: hidden;
}
.woocommerce ul.products li.product a img{
	margin-bottom: 0;
	transform: scale(1);
	overflow: hidden;
	transition: .4s all;
}
.woocommerce ul.products li.product a:hover img{
	transform: scale(1.04);
}
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
	display: flex;
	align-items: center;
	flex-flow: column;
	gap: 10px;
	margin-bottom: 10px;
	text-align: center;
}
.woocommerce ul.products li.product .onsale , .woocommerce span.onsale{
	top: 5px;
	right: auto;
	left: 5px;
	margin: 0;
	font-size: 10px;
	padding: 3px 10px;
	border-radius: 4px;
	background: var(--primary-color);
	line-height: unset;
	min-width: unset;
	min-height: unset;
}
.woocommerce-product-details__short-description ul{
	margin-bottom: 10px;
}
.single-product-wrapper{
	padding: 40px 0;
}
.inner-sec-content{
	padding: 40px 0;
}
.inner-sec-content p , .inner-sec-content ul{
	margin-bottom: 12px;
	color: #777777;
	font-size: 14px;
}
.global-banner{
	padding: 40px 0;   
	background-color: transparent;
	background-image: radial-gradient(at bottom center, #014FA2 0%, #000000 60%);
}
.global-content{
	text-align: center;
}
.global-content h1{
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #fff;
}
.global-content p , .global-content ul{
	font-size: 16px;
	color: #fff;
	margin-bottom: 20px;
}
.global-btns{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 25px;
}
.global-btns a{
	display: flex;
	align-items: center;
	gap: 7px;
	max-width: max-content;
	color: #fff;
	border: 1px solid #fff;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	padding: 4px 4px 4px 15px;
	border-radius: 25px;
}
.global-btns a i{
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--white-color);
	color: var(--primary-color);
	font-size: 20px;
}
.global-btns a:last-child i{
	color: #25D366;
}
.resources-wrapper{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}
.resources{
	display: flex;
	align-items: center;
	gap: 10px;
}
.resources .icon{
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    font-size: 18px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.resources span{
	font-size: 16px;
	color: #fff;
	flex: 1;
}
.global-sub-content{
	padding: 24px;
	background: linear-gradient(180deg,#f8fbff, #f3f6fb);
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
.global-sub-content h2{
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 10px;
}
.global-sub-content ul{
	font-size: 16px;
	padding-left: 32px;
	margin-bottom: 16px;
	list-style: disc;
}
.small-note{
	display: flex;
	align-items: center;
	gap: 10px;
}
.small-note-content p{
	font-size: 13px;
	font-weight: 600;
}
.small-note-content span{
	font-size: 12px;
}
.sub-content-sec{
	padding: 60px 0;
}
.global-work-wrapper{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.global-work-box{
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0,0,0,.06);
	padding: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.global-work-box i{
	flex: 0 0 45px;
	height: 45px;
	width: 45px;
	line-height: 45px;
	text-align: center;
	border-radius: 50%;
	background: var(--secondary-color);
	color: #fff;
	font-size: 20px;
}
.global-work-sec h2{
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 20px;
	text-align: center;
}
.activation-wrapper{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.activation-box{
	display: flex;
	flex-flow: column;
	gap: 10px;
	padding: 24px;
	border-left: 4px solid var(--primary-color);
	background: #eef7ff;
}
.activation-box-details{
	flex: 1;
}
.activation-box h3{
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 0
}
.activation-time , .ideal-for{
	font-size: 15px;
}
.activation-box h4{
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0
}
.activation-box ul{
	font-size: 15px;
	list-style: disc;
	padding-left: 32px;
}
.activation-box a{
	background: var(--primary-color);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 25px;
	color: #fff;
	padding: 10px;
	text-align: center;
}
.activation-sec{
	position: relative;
	padding: 0px 0px 60px;
}
.activation-info{
	margin-bottom: 25px;
	text-align: center;
}
.activation-info h2{
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 10px;
}
.activation-addon{
	text-align: center;
	margin-top: 25px;
}
.activation-addon h4{ 
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
}
.activation-addon ul{
	margin-bottom: 10px;
}
.activation-addon p{
	font-size: 12px;
}
.faqContentBox {
	position: relative;
	width: 100%;
	background: transparent;
	border-radius: 20px;
	padding: 20px;
	display: flex;
	align-items: flex-start;
	gap: 18px;
	line-height: 1;
	cursor: pointer;
}
.faqContentBox .imgWraps .minusImg {
	display: none;
}
.faqContentBox .imgWraps .plusImg img , .faqContentBox .imgWraps .minusImg img {
	max-width: 100%;
	height: auto;
}
.faqContentBox .contentWrap {
	flex: 1;
}
.faqContentBox .contentWrap h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
}
.faqContentBox .contentWrap p {
	margin-top: 10px;
	color: #535353;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	display: none;
}
.faqContentBox.shrinked {
	background-color: #ffffff;
}
.faq-wrapper{    
	padding: 24px;
	background: linear-gradient(180deg,#f8fbff, #f3f6fb);
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
.faq-sec{
    position: relative;
    padding: 60px 0px;
    background-image: linear-gradient(180deg, #014a9661 0%, #ffffff00 100%);
}
.faq-sec h2 {
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 20px;
	text-align: center;
}
.faq-Box{
	padding: 20px;
	cursor: pointer;
	border-radius: 20px;
}
.faq-Box.active{
	background: #fff;
}
.faq-Box h3{
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
}
.faq-answer p{
	font-size: 14px;
	margin-bottom: 10px;
}
.faq-answer ul{
	font-size: 14px;
	margin-bottom: 10px;
}
.faq-answer ul:last-child , .faq-answer p:last-child{
	margin-bottom: 0;
}
.faq-box-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

/* customer_serviceBanner start */
.customer_serviceBanner{
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.customer_serviceBgVideo{
    position: absolute;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.customer_serviceBgVideo::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(at bottom center, #000000d6 0%, #00000061 90%);
    z-index: 1;
}
.customer_serviceBgVideo video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}
.customer_serviceContent{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    padding: 100px 0px;
    z-index: 2;
}
.customer_serviceContent h3{
    margin-bottom: 0px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
}
.customer_serviceContent p{
    margin-bottom: 0px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}
.customer_serviceButns{
    display: flex;
    align-items: center;
    gap: 12px;
}
.customer_serviceButns .butnWrapper a{
    display: flex;
    align-items: center;
    gap: 7px;
    max-width: max-content;
    color: #fff;
    border: 1px solid #fff;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    padding: 4px 4px 4px 15px;
    border-radius: 25px;
}
.customer_serviceButns .butnWrapper a i{
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background-color: var(--white-color);
    color: var(--primary-color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* customer_serviceBanner start */

/* faqsec_Bannner start */
.faqsec_Bannner{
    position: relative;
    padding: 80px 0;
    background-image: radial-gradient(at bottom center, #014FA2 0%, #000000 60%);
}
.faqsec_BannnerContent{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.faqsec_BannnerContent .iconBox{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    background: #ffffff;
}
.faqsec_BannnerContent .iconBox i{
    color: var(--primary-color);
    font-size: 32px;
}
.faqsec_BannnerContent h3{
    margin-bottom: 0px;
	text-align: center;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
}
.faqsec_BannnerContent p{
    margin-bottom: 0px;
	text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}
/* faqsec_Bannner end */

/* contactSec_Bannner start */
.contactSec_Bannner{
    position: relative;
    padding: 80px 0;
    background-image: radial-gradient(at bottom center, #014FA2 0%, #000000 60%);
}
.contactSec_BannnerContent{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.contactSec_BannnerContent .iconBox{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    background: #ffffff;
}
.contactSec_BannnerContent .iconBox i{
    color: var(--primary-color);
    font-size: 32px;
}
.contactSec_BannnerContent h3{
    margin-bottom: 0px;
	text-align: center;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
}
.contactSec_BannnerContent p{
    margin-bottom: 0px;
	text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}
.contactSec_BannnerContent a{
    color: var(--secondary-color);
    font-size: 32px;
    font-weight: 700;
}
/* contactSec_Bannner end */

/* clientFeedback_Sec start */
.clientFeedback_Sec{
    position: relative;
    padding: 60px 0px;
    background: #ffffff;
}
.clientFeedback_Banner{
    position: relative;
    width: 100%;
}
.clientFeedback_Banner img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}
.clientFeedback_Slider{
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    background: #ffffff;
    box-shadow: 0px 2px 5px 0px #dcdcdc;
    border-radius: 12px;
    padding: 24px;
    margin-top: -150px;
}
.clientFeedback_Content{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
	justify-content: flex-start;
    gap: 18px;
}
.clientFeedback_Content p{
    font-size: 16px;
    font-weight: 500;
    text-align: left;
}
.clientFeedback_Details{
    display: flex;
    align-items: center;
    gap: 12px;
}
.clientFeedback_Details .imgBox img{
    width: 70px;
    height: 70px;
    object-fit: cover;
    background: #f7f7f7;
    padding: 8px;
    border-radius: 12px;
}
.clientFeedback_Details .contentBox span{
    display: block;
    color: #014fa1;
    font-size: 14px;
    font-weight: 600;
}
/* clientFeedback_Sec end */

/* contactUs_Banner start */
.contactUs_Banner{
    position: relative;
    padding: 80px 0;
    background-image: radial-gradient(at bottom center, #014FA2 0%, #000000 60%);
}
.contactUs_BannerContent{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.contactUs_BannerContent h3,
.contactUs_BannerContent h4{
    margin-bottom: 0px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
}
.contactUs_BannerContent p{
    margin-bottom: 0px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;	
}
.contactUs_BannerContent p strong a{
	color: var(--fkcart-toggle-count-font-color);
}
.contactUs_BannerContent ul li{
    margin-bottom: 0px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}
/* contactUs_Banner end */

/* contactUs_map start */
.contactUs_map{
    position: relative;
    padding: 40px 0px;
    background: #ffffff;
}
.contactUs_mapWrap iframe{
    width: 100%;
    height: 350px;
    border-radius: 12px;
}
/* contactUs_map end */

/* contactUs_Sec start */
.contactUs_Sec{
    position: relative;
    padding: 80px 0px;
    background: #f9f9f9;
}
.contactUs_FormBox h3{
    margin-bottom: 15px;
    color: #000;
    font-size: 32px;
    font-weight: 700;
}
.contactUs_FormBox form .inputWrap{
    position: relative;
    margin-bottom: 18px;
}
.contactUs_FormBox form .inputWrap label{
    display: block;
    color: #242424;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 4px;
}
.contactUs_FormBox form .inputWrap input,
.contactUs_FormBox form .inputWrap textarea{
    display: block;
    width: 100%;
    background: #ffffff;
    color: #777;
    font-size: 14px;
    font-weight: 400;
    border-radius: 50px;
    outline: none;
    border: 1px solid #e6e6e6;
    padding: 8px 15px;
}
.contactUs_FormBox form .submit_Button input{
    display: flex;
    align-items: center;
    gap: 7px;
    max-width: max-content;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
	outline: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    padding: 12px 50px;
    border-radius: 25px;
}
/* contactUs_Sec end */

/* mobile_Sidebar start */
.mobile_Sidebar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
	display: none;
}
.mobile_SidebarMain{
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100%;
    background: #ffffff;
    padding: 24px;
    border-radius: 0px;
    overflow-x: hidden;
    overflow-y: auto;
    transition: 0.4s all;
}
.mobile_SidebarMain.active{
	right: 0;
}
.mobile_SidebarClose{
    position: absolute;
    top: 15px;
    left: auto;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 12px;
    cursor: pointer;
	z-index: 1;
}
.mobile_SidebarClose i{
    color: #ffffff;
    font-size: 18px;
}
.mobile_SidebarLogo{
	position: relative;
	margin-bottom: 22px;
}
.mobile_SidebarLogo a img{
    max-width: 150px;
    height: auto;
}
.mobile_Sidebarlist{
	margin-bottom: 22px;
}
.mobile_Sidebarlist ul li{
    position: relative;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.mobile_Sidebarlist ul li:last-child{
	border-bottom: none;
	padding-bottom: 0px;
	margin-bottom: 0px;
}
.mobile_Sidebarlist ul li.menu-item-has-children i{
    position: absolute;
    right: 0;
    top: calc(50% - 4px);
    transform: translateY(-50%);
    cursor: pointer;
    color: #242424;
    font-size: 12px;
}
.mobile_Sidebarlist ul li .sub-menu{
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    width: 100%;
    height: auto;
    background: #fafafa;
    padding: 15px;
    border-radius: 0px;
    display: none;
}
.mobile_Sidebarlist ul li a{
    color: #242424;
    font-size: 12px;
    font-weight: 500;
}
.mobile_SidebarMain .topbar-info{
	margin-bottom: 22px;
}
/* mobile_Sidebar end */

/* checkout_Popup start */
.checkout_Popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 99999;
	display: none;
}
.checkout_PopupBox{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
    height: auto;
    background: #ffffff;
    border-radius: 12px;
	overflow: hidden;
    z-index: 1;
}
.checkout_PopupClose{
    position: relative;
    text-align: right;
    padding: 16px 24px;
    background: var(--primary-color);
    line-height: 1;
}
.checkout_PopupClose i{
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
}
.checkout_PopupContent{
    position: relative;
    padding: 24px;
    display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.checkout_PopupContent h3{
    margin-bottom: 0px;
    text-align: center;
    color: #6d6c6c;
    font-size: 18px;
    font-weight: 400;
}
.checkout_PopupContent h2{
    margin-bottom: 0px;
    text-align: center;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
}
.checkout_PopupSubContent p{
    margin-bottom: 0px;
    text-align: center;
    color: #6d6c6c;
    font-size: 16px;
    font-weight: 400;
}
.checkout_PopupBtns{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}
.checkout_PopupYesBtns,
.checkout_PopupYesBtns{
    position: relative;
    display: flex;
    align-items: center;
    gap: 0px;
    max-width: max-content;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    padding: 8px 48px 8px 22px;
    border-radius: 25px;
    cursor: pointer;
}
.checkout_PopupYesBtns i,
.checkout_PopupYesBtns i{
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    line-height: 35px;
    border-radius: 50px;
    background-color: var(
    --primary-color);
    color: var(
    --white-color);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* checkout_Popup end */

/* custom_list css start */
.product-custom-list{
    margin: 0 0 18px;
    padding: 0;
}
.product-custom-list li{
    padding-bottom: 12px;
    color: #777;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
}
.product-custom-list li:last-child{
	padding-bottom: 0px;
}
.product-custom-list li i{
    position: relative;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50px;
    color: #ffffff;
    font-size: 8px;
}
/* custom_list css end */

/* site responsive start */
@media(max-width: 1200px){
	.hero-content{
		margin: 0px;
		padding: 0px;
	}
	.hero-img{
		margin: 0px;
	}
	.hero-content h2{
		font-size: 36px;
	}
	.hero-btn{
		font-size: 14px;
    	font-weight: 600;
	}
	.deliver-box{
		font-size: 14px;
	}
}

@media(max-width: 1024px){}

@media(max-width: 991px){
	.hero-content h2{
		font-size: 26px;
	}
	.digital-box-wrapper{
		grid-template-columns: repeat(2, 1fr);
	}
	.delivery-wrapper{
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	.info-box-wrapper{
		grid-template-columns: repeat(1, 1fr);
	}
	.footer-logo img{
		max-width: 150px;
    	margin-bottom: 15px;
	}
	footer .quick-links{
		margin-bottom: 15px;
	}
	.header-menus{
		display: none;
	}
	.topbar{
		display: none;
	}
	header{
		border-bottom: 1px solid #E7E7E7;
	}
	.mobile_SidebarOpen{
		display: block;
	}
	.faq-box-wrapper{
		grid-template-columns: repeat(1, 1fr);
	}
	.search-bar{
		display: none;	
	}
	.headerMob_SearchBar .search-bar{
		display: flex !important;
	}
	.header-wrapper .header-logo{
		flex: 1;
	}
	.headerMob_SearchBar{
		display: block;
	}
	.global-work-box{
		display: block;
    	text-align: center;
	}
	.global-work-box i{
		margin-bottom: 15px;
	}
	.activation-box h3{
		font-size: 16px;
	}
	.product-tabs{
		position: sticky;
		top: 0;
		background: #ffffff;
		padding: 12px 0px;
		z-index: 1;
		width: 100%;
		-webkit-overflow-scrolling: touch;
		overflow-y: hidden;
		overflow-x: scroll;
		flex-flow: unset;
		align-items: unset;
		justify-content: unset;
	}
	.product-tabs li{
		flex: 0 0 auto;
		white-space: nowrap;
		max-width: fit-content;
		padding: 10px 12px;
	}
	.woocommerce ul.products li.product .button{
		font-size: 10px;
	}
	.woocommerce ul.products li.product .woocommerce-loop-product__title{
		font-size: 12px;
	}
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{
		width: 100% !important;
		margin: 0px !important;
	}
}

@media(max-width: 768px){
	.woocommerce-page ul.products{
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}
}

@media(max-width: 767px){
	.hero-banner{
		display: block;
    	height: auto;
	}
	.hero-content{
		width: 100%;
	}
	.section-info{
		display: block;
	}
	.section-info h2{
		margin-bottom: 15px;
	}
	.brand-box-wrapper{
		grid-template-columns: repeat(4, 1fr);
	}
	.digital-box-wrapper{
		grid-template-columns: repeat(1, 1fr);
	}
	.section-info ul{
		gap: 8px;
	}
	.global-work-wrapper,
	.activation-wrapper{
		grid-template-columns: repeat(1, 1fr);
	}
	.resources span{
		font-size: 14px;
	}
	.resources-wrapper{
		gap: 22px;
	}
	.clientFeedback_Slider{
		max-width: 335px;
	}
}

@media(max-width: 576px){
	.cat-button-prev,
	.prod-button-prev{
		left: 0;
	}
	.cat-button-next,
	.prod-button-next{
		right: 0;
	}
	.cat-button-prev,
	.cat-button-next{
		height: 30px;
    	width: 30px;
		font-size: 14px;
	}
	.prod-button-prev,
	.prod-button-next{
		height: 30px;
    	width: 30px;
		font-size: 14px;
	}
}

@media(max-width: 575px){
	.hero-title,
	.section-info h2,
	.section-info-2 h2,
	.card-wrapper h2,
	.contactSec_BannnerContent h3,
	.customer_serviceContent h3,
	.faqsec_BannnerContent h3,
	.contactUs_BannerContent h3,
	.contactUs_BannerContent h4,
	.contactUs_FormBox h3,
	.global-content h1,
	.global-sub-content h2,
	.global-work-sec h2,
	.global-sub-content h2,
	.activation-info h2,
	.faq-sec h2,
	.category-title{
		font-size: 26px;
	}
	.deliver-box{
		font-size: 12px;
	}
	.payment-wrapper{
		grid-template-columns: repeat(3, 1fr);
	}
	.brand-box-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
	.header-logo img{
		max-width: 100px;
	}
	.resources-wrapper{
		display: block;
	}
	.resources{
		justify-content: center;
    	max-width: 180px;
    	margin: 0 auto 15px;
	}
	.resources:last-child{
		margin-bottom: 0px;
	}
	.global-btns{
		display: block;
	}
	.global-btns a{
		margin: 0 auto 15px;
	}
	.global-btns a:last-child{
		margin-bottom: 0px;
	}
	.faqContentBox .contentWrap h3,
	.faqContentBox .contentWrap p{
		font-size: 14px;
	}
	.product-category-page .row,
	.featured-sec .row,
	.featured-sec-2 .row,
	.shop-sec .row{
		--bs-gutter-x: 0.5rem;
	}
	.product-content{
		padding: 15px 6px 20px;
	}
	.product-title{
		font-size: 13px;
	}
	.product-btn a,
	.product-btn button{
		font-size: 10px !important;
		padding: 10px 6px !important;
	}
	.product-btn a:before{
		font-size: 12px;
	}
	.woocommerce-page ul.products{
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
}

@media(max-width: 375px){
	.info-box h2{
		font-size: 18px;
	}
	.info-box p{
		font-size: 12px;
	}
}
/* site responsive end */