/* 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: 170px;
}
.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%;
}
#search-results a{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	transition: 0.3s all;
}
#search-results a:hover{
	background: #E7E7E7;
}
#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;
}
.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;
}
.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: 18px;
	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: 52px;
	color: var(--dark-color);
	font-weight: 700;
}
.hero-content p{
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
}
.hero-btn{
	font-size: 19.992px;
	font-weight: 600;
	padding: 13.7945px 37.385px;
	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{
	width: 100%;
}
.category-box span{
	padding: 15px 20px 20px;
	background-color: var(--white-color);
	border-radius: 0 0 10px 10px;
	font-size: 15px;
	font-weight: 500;
	text-align: center;
}
.category-wrapper{
	position: relative;
}
.cat-button-prev , .cat-button-next{
	height: 50px;
	width: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	background: #ffffff;
	color: var(--secondary-heading-color);
	font-size: 20px;
	position: absolute;
	top: 35%;
	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: 20px;
}
.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;
	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;
}
.product-img img{
	width: 100%;
	height: auto;
}
.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;
	text-align: center;
	border-radius: 50%;
	background: var(--white-color);
	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;
}
.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 35px 35px;
	margin-top: 60px;
}
.digital-box .icon-box{
	background-color: var(--primary-color);
	font-size: 30px;
	border-radius: 9px;
	height: 84px;
	width: 84px;
	line-height: 84px;
	text-align: center;
	color: var(--white-color);
	position: relative;
	top: -42px;
}
.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 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: flex;
	align-items: center;
	justify-content: space-between;
}
.contact-btn{
	display: inline-block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	background: #F1F2FE;
	border-radius: 6px;
}
.contact-info p{
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 15px;
}
.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: 200px;
}
.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: 10px;
}
.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 img{
	margin-bottom: 0;
}
.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);
}
.resources span{
	font-size: 16px;
	color: #fff;
}
.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 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-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{
	padding: 60px 0;
}
.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{
	    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);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}