/* Figtree */
@font-face {
    font-family: 'Figtree';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('assets/fonts/Figtree/Figtree-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Figtree';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/Figtree/Figtree-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Figtree';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('assets/fonts/Figtree/Figtree-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Figtree';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('assets/fonts/Figtree/Figtree-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Figtree';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('assets/fonts/Figtree/Figtree-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Figtree';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('assets/fonts/Figtree/Figtree-ExtraBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Figtree';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('assets/fonts/Figtree/Figtree-Black.ttf') format('truetype');
}

/* Pangea Afrikan */
@font-face {
    font-family: 'Pangea Afrikan';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('assets/fonts/Pangea-Afrikan/PangeaAfrikanTrial-Light.otf') format('opentype');
}

@font-face {
    font-family: 'Pangea Afrikan';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/Pangea-Afrikan/PangeaAfrikanTrial-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Pangea Afrikan';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('assets/fonts/Pangea-Afrikan/PangeaAfrikanTrial-Medium.otf') format('opentype');
}

@font-face {
    font-family: 'Pangea Afrikan';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('assets/fonts/Pangea-Afrikan/PangeaAfrikanTrial-SemiBold.otf') format('opentype');
}

@font-face {
    font-family: 'Pangea Afrikan';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('assets/fonts/Pangea-Afrikan/PangeaAfrikanTrial-Bold.otf') format('opentype');
}

:root {
    /* Font Families */
    --font-family-heading: "Pangea Afrikan", sans-serif;
    --font-family-para: "Figtree", sans-serif;
    /* Colors */
    --primary-color: #0478be;
    --secondary-color: #F5F5DC;
    --secondary-heading-color: #19191A;
    --accent-text-color: #474C59;
    --dark-color: #000000;
    --white-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-para);
    color: var(--secondary-heading-color);
    text-align: left;
    font-size: 15px;
}

p {
    font-size: 15px;
    columns: var(--accent-text-color);
    margin-bottom: 0;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-heading);
}

ul,
ol {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--secondary-heading-color);
}

a:hover {
    color: var(--secondary-heading-color);
}

/* Header Styling Start */
.top-bar {
    background-color: var(--secondary-color);
    padding: 10px 0;
}

.top-bar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-menus ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-menus ul li a {
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 7px;
}

.middle-bar {
    background-color: var(--primary-color);
    padding: 10px 0;
    text-align: center;
}

.middle-bar p {
    color: var(--white-color);
}

.middle-bar p span {
    font-weight: 600;
}

.menus-bar {
    padding: 20px 0;
    border-bottom: 1px solid #E5E5E5;
}

.menus-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    max-width: 160px;
}
.header-menus {
    position: relative;
}
.header-menus ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.header-menus ul li a {
    font-size: 16px;
	position: relative;
    text-decoration: none; 
	font-weight: 500 ;
	color: #000 ;
}

.header-menus ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* Adjust this value to position the line */
    width: 0;
    height: 2px; /* Thickness of the line */
   background-color: var(--primary-color);
    transition: width 0.3s ease; /* Animation speed and style */
}

.header-menus ul li a:hover::after {
    width: 100%; /* Full width on hover */
}


.header-btns ul {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-btns ul li a img {
    max-width: 100%;
}
.bottom_bar {
    padding: 16px 0;
}

.search_container {
    max-width: 350px;
    height: 42px;
    min-width: 350px ;
	position: relative ;
}
.search_container input {
    width: 100%;
    height: 100%;
    padding: 10px 10px 10px 40px;
    border-radius: 8px;
    border: 1px solid #000;
	transition: 0.3s ease-in-out ;
}

.search_container input:focus{
	border-color: blue ;
	outline: none ;
}

.search_container i {
    position: absolute;
    left: 12px;
    top: 13px;
    font-size: 16px;
    color: #000;
}
.header-btns {
	display: flex ;
	align-items: center;
	gap: 10px;
}
.side_menus ul li a {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    position: relative;
}
.side_menus ul li a::before {
	content: "";
	position: absolute;
	left: 0px;
	bottom: -2px;
	width: 0px;
	height: 2px;
	background-color: var(--primary-color);
	transition: width 0.3s;
}
.side_menus ul li a:hover::before {
    width: 100%;
}
/* Banner Section Styling */

.banner-sec {
    height: 80vh;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.banner-sec::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: #00000073;
	z-index: -1;
}


.banner-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-content h1 {
    color: var(--white-color);
    text-align: center;
    font-size: 60px;
}

.banner-content p {
    color: var(--white-color);
    text-align: center;
    max-width: 520px;
    margin: 0 auto 20px auto;
}

.banner-content a {
    padding: 16px 70px;
    background-color: #E2E2E266;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    color: var(--white-color);
    backdrop-filter: blur(30px)
}

.banner-content {
    margin: 0 auto;
    max-width: 847px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 10px;
}


/* why Choose Section  */
.why_choose_sec {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-top: 45px;
}

.why_choose {
    padding: 30px 0;
    background-color: var(--primary-color);
    border-radius: 16px;
}

.why_choose_card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 5px;
    border-right: 1px solid #474C5929;
}

.why_choose_card_content h6 {
    font-weight: 500;
    font-size: 14px;
    color: var(--white-color);
    margin-bottom: 0;
}

.why_choose_card_content span {
    font-weight: 400;
    font-size: 12px;
    color: var(--white-color);
    font-weight: 400;
}


/* category section css */
.categories_sec {
	padding-top: 60px;
	padding-bottom: 20px;
	position: relative;
}
.Categories_main {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.categories_sec .mySwiperCategories {
    overflow: inherit !important;
    padding-bottom: 80px;
}
.categories_sec .mySwiperCategories .swiper-button-next, .swiper-button-prev {
	top: 38% !important;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #0478be;
}
.categories_sec .mySwiperCategories .swiper-button-next:after, .swiper-button-prev:after {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 14px;
	color: #fff;
}
.swiper-button-next:after {
  content: '\f054';
}

.swiper-button-prev:after {
  content: '\f053'; 
}


.categories_sec .hr {
    width: 100%;
    max-width: 1300px;
    height: 1px;
    background-color: #E5E5E5;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}


.category_card {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s ease-in-out;
}

.category_card:hover .category_content span {
    color: var(--primary-color);
}

.category_img {
    width: 100%;
    height: 150px ;
    border-radius: 4px;
    position: relative;
    z-index: 0;
	overflow: hidden ;
	
}


.category_img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #0000008c;
    z-index: 1;
	border-radius: 4px ;
	visibility: hidden;
	opacity: 0 ;
	transition: all 0.3s ease-in-out;
}
.category_img:hover::before {
    visibility: visible;
    opacity: 1;
}

.category_img img {
	border-radius: 4px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease-in-out ;
}
a.category_card:hover .category_img img {
	transform: scale(1.1);
}

.category_content {
    background-color: var(--white-color);
    padding: 13px 0;
}

.category_content span {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: var(--secondary-heading-color);
}

.category_content h6 {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: var(--secondary-heading-color);
	margin-bottom: 0 ;
}

/* best selling prodcuts section css start */
.best_selling {
    padding: 30px 0;
}

.title h2 {
    font-weight: 500;
    font-size: 36px;
    text-align: center;
}

.title p {
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: var(--accent-text-color);
}


/* product card css  */
.best_selling .mySwiperBest_product {
    padding: 25px 0 20px;
}

.best_selling .mySwiperBest_product .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.best_selling .mySwiperBest_product .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.product_card {
	position: relative;
	width: 100%;
	height: 100% ;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	transition: 0.3s ease-in-out;
	padding: 10px;
	border-radius: 8px;
	background: #F8F8F8;
}

.product_card_img {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 4px;
    background-color: #F8F8F8;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.product_card_img .add_to_cart_btn {
	display: none;
}


.product_card_content .add_to_cart_btn {
	display: block;
	visibility: visible;
	opacity: 1;
	position: relative;
	bottom: 0;
	margin-top: 15px;
}
.add_to_cart_btn button {
	border-radius: 25px;
}
.off_tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 2px 8px;
    border-radius: 4px;
    background-color: var(--primary-color);
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
	color: #fff ;
}

.wishlist_icon {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist_icon i {
    color: #474C595C;
}

.add_to_cart_btn {
    width: 100%;
    height: 44px;
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.ajax-add-to-cart.loading {
    position: relative;
    pointer-events: none;
    background-color: #000 !important;
    z-index: 11;
    font-size: 0px !important;
}

.ajax-add-to-cart.loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    margin: -7.5px 0 0 -7.5px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.product_card:hover .add_to_cart_btn {
    visibility: visible;
    opacity: 1;
    bottom: 0;
}

.add_to_cart_btn button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    color: var(--white-color);
    background-color: var(--primary-color);
    border: none;
}
.add_to_cart_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    color: var(--white-color);
    background-color: var(--primary-color);
    border: none;
}
.product_card_content {
    width: 100%;
    padding: 10px 0;
}

.product_card_content h6 {
    font-weight: 600;
    font-size: 16px;
    color: var(--secondary-heading-color);
}

.product_card_content p{
    font-weight: 700;
    font-size: 14px;
    color: #000 !important;
}



.reviews {
    display: flex;
    align-items: end;
    gap: 5px;
    margin-top: 5px;

}

.reviews_star img {
    width: 15px;
}

.reviews span {
    font-weight: 500;
    font-size: 12px;
    text-decoration: none;
    line-height: 20px;
    color: var(--accent-text-color);
}


/* shop Call Banner Section css Start */
.shop_call_banner {
    padding: 60px 0 40px;
}

.shop_collection_card {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 404px;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    padding: 40px;
	z-index: 1  ;
}
/* .shop_collection_card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000004f;
    z-index: -1;
} */

.shop_collection_card_content {
    max-width: 305px;
}

.shop_collection_card_content p {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
}

.shop_collection_card_content h1 {
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    color: #fff ;
    margin-bottom: 20px;
}

.shop_collection_card_content a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.shop_collection_card_content a span {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.03px;
    color: #fff;
}
.shop_collection_card_content a img {
    filter: brightness(0) invert(1);
}

/* feature product section start */
.feature_prodcut_sec {
    padding: 40px 0 40px;
}

.feature_prodcut_sec .mySwiperFeature_product {
    padding: 25px 0 0;
}
.feature_prodcut_sec .title p{
	margin-bottom: 25px ;
}

.sold_status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.status_line {
    width: 40%;
    height: 5px;
    background-color: #EEEEEE;
    border-radius: 10px;
}

.status_line_fill {
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.sold_status_content {
    font-weight: 500;
    font-size: 14px;
    color: var(--accent-text-color);
}

.sold_status_content span {
    color: var(--primary-color);
    text-decoration: none;
}

.load_more_btn{
	border: none;
	padding: 8px 25px;
	border-radius: 4px;
	background: #0478be;
	color: #fff;
	font-size: 14px;
	transition: 0.3s ease-in-out ;
}
.load_more_btn:hover{
	background: #115177;
}

.sticky-whatsapp-icon {
    position: fixed;
	bottom: 125px;
	right: 40px;
    z-index: 1;
    animation-name: happy-jump;
    animation-duration: 1s;
    transform-origin: 50% 50%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.sticky-whatsapp-icon a img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

@keyframes happy-jump {
	0% {
		transform: scale(1, 1) translateY(0);
	}
	10% {
		transform: scale(1.1, .9) translateY(0);
	}
	30% {
		transform: scale(.9, 1.1) translateY(-10px);
	}
	50% {
		transform: scale(1.05, .95) translateY(0);
	}
	57% {
		transform: scale(1, 1) translateY(-7px);
	}
	64% {
		transform: scale(1, 1) translateY(0);
	}
	100% {
		transform: scale(1, 1) translateY(0);
	}
}

/* Testinonials Section start */
.testimonials_sec {
    padding: 70px 0;
}

.testimonials_content {
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-right: 20px;
    position: relative;
}

.testimonials_content h1 {
    font-weight: 500;
    font-size: 36px;
    color: var(--secondary-heading-color);
}

.testimonials_img {
    width: 100%;
    height: 320px;
    border-radius: 6px;
}

.testimonials_img img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.testimonials_profile {
    display: flex;
    align-items: center;
    gap: 10px;
	margin-bottom: 30px ;
}

.testimonials_profile_img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
}

.testimonials_profile_img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimonials_profile_content h6 {
    font-weight: 500;
    font-size: 16px;
    color: #23262F;
    margin-bottom: 0;
}

.testimonials_profile_content span {
    font-weight: 400;
    font-size: 12px;
    color: var(--accent-text-color);
	margin-bottom: 20px;
}

.cleint_say p {
    font-weight: 400;
    font-size: 16px;
    color: var(--accent-text-color);
    max-width: 100%;
	
}


.testimonial_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.testimonial_btn button {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background-color: var(--white-color);
    box-shadow: 0px 4px 10px 0px #0F1B330D;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.testimonial_btn button:hover {
    background-color: var(--primary-color);
}

.testimonial_btn button:hover img {
    filter: invert(1) contrast(2);
}

.testimonials_sec .testimonials_content .mySwiperTestimonials {
    width: 100%;
}

.testimonials_sec .testimonials_content .swiper-button-prev:after {
    content: '' !important;
    font-size: 0px;
}

.testimonials_sec .testimonials_content .swiper-button-next:after {
    content: '' !important;
    font-size: 0px;
}

.testimonials_sec .testimonials_content .swiper-button-next {
    left: 70px !important;
}



/* call Action Banner Css Start */
.call_action_banner_Sec {
    width: 100%;
    padding: 40px 0;
}

.call_action_banner {
    height: 520px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px;
}

.call_action_banner_content span {
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--white-color);
    text-transform: uppercase;
}

.call_action_banner_content {
    margin-bottom: 80px;
}

.call_action_banner_content h1 {
    font-weight: 500;
    font-size: 44px;
    line-height: 53px;
    color: var(--white-color);
    max-width: 350px;
}

.call_action_banner_content a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.call_action_banner_content a span {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: -0.03px;
    color: var(--white-color);
    text-transform: none;
}

.subscribe_form {
    max-width: 360px;
}

.subscribe_form_field {
    position: relative;
}

.subscribe_form_field input {
    width: 100%;
    padding: 5px 20px 5px 0;
    font-weight: 400;
    font-size: 12px;
    color: var(--white-color);
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--white-color);
}

.subscribe_form_field input:focus {
    outline: transparent;
}

.subscribe_form_field input::placeholder {
    font-weight: 400;
    font-size: 12px;
    color: var(--white-color);
}

.subscribe_form_field_icon {
	position: absolute;
	right: 0;
	top: 3px;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-direction: row-reverse;
	color: #fff ;
}
.subscribe_form_field_icon input {
    width: auto;
    border: none;
    padding: 0;
    color: #fff;
}
.subscribe_form p {
    font-weight: 400;
    font-size: 12px;
    color: var(--white-color);
    margin-top: 15px;
}


/* blog Section Css start */
.blog_sec {
    width: 100%;
    padding: 40px 0 80px;
}

.blog_sec hr {
    background-color: #E5E5E5;
}

.blog_card {
    width: 100%;
    position: relative;
    transition: 0.3s ease-in-out;
}

.blog_card_img {
    width: 100%;
    height: 188px;
    border-radius: 4px;
}

.blog_card_img img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.blog_card_content {
    padding: 15px 20px;
    text-align: center;
}

.blog_card_content span {
    font-weight: 600;
    font-size: 12px;
    color: #EB7700;
}

.blog_card_content h6 {
    font-weight: 500;
    font-size: 16px;
    columns: var(--secondary-heading-color);
    margin-top: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.blog_card_content p {
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: var(--accent-text-color);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.blog_card_content a {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    margin-top: 7px;
}

.blog_card_content a span {
    color: var(--secondary-heading-color);
    font-weight: 600;
    font-size: 12px;
    transition: 0.3s ease-in-out;
}

.blog_card_content a img {
    transition: 0.3s ease-in-out;
}

.blog_card:hover .blog_card_content a span {
    color: #EB7700;
}

.blog_card:hover .blog_card_content a img {
    filter: invert(48%) sepia(100%) saturate(1000%) hue-rotate(359deg) brightness(97%) contrast(101%);
}

.blog_sec .mySwiperBlogs {
    padding-top: 40px;
}


/* subscribe Banner Css Start */
.subscribe_banner {
    padding: 40px 0;
    background-color: var(--primary-color);
}

.subscribe_content span {
    font-weight: 700;
    font-size: 18px;
    color: #EB7700;
}

.subscribe_content h2 {
    font-weight: 500;
    font-size: 32px;
    color: var(--white-color);
    margin-top: 5px;
}

.subscribe_content p {
    font-weight: 400;
    font-size: 14px;
    color: var(--white-color);

}

.subscribe_form_Sec {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}


/* footer Css Start */
footer {
    background-color: #23262F;
    position: relative;
    z-index: 1;
}

footer::before {
    content: '';
    background-image: url('./assets/images/footer-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.footer_top {
    padding: 40px 0 25px;
}



.footer_logo {
    margin-bottom: 20px;
}
.footer_logo img {
    max-width: 180px;
}
.footer_content p {
    font-weight: 400;
    font-size: 12px;
    color: var(--white-color);
    max-width: 290px;
    margin-bottom: 20px;
}

.social_links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social_links a img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    transition: 0.3s ease-in-out;
}

.social_links a:hover img {
    transform: translateY(-5px);
}

.footer_menu h6 {
    font-weight: 500;
    font-size: 14px;
    color: var(--white-color);
}

.footer_menu ul {
    padding-left: 0;
    list-style-type: none;
}

.footer_menu ul li a {
    font-weight: 400;
    font-size: 12px;
    color: var(--white-color);
    transition: 0.3s ease-in-out;
    display: inline-block;
}

.footer_menu ul li a:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.contact_area h6 {
    font-weight: 500;
    font-size: 14px;
    color: var(--white-color);
}

.contact_area ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;

}

.contact_area ul li span {
    font-weight: 400;
    font-size: 12px;
    color: var(--white-color);
    max-width: 250px;
    transition: 0.3s ease-in-out;
}

.contact_area ul li a span {
    display: inline-block;
}

.contact_area ul li img {
    width: 15px;
}

.contact_area ul li:hover span {
    color: var(--primary-color);
    transform: translateX(5px);
}

.copy_right {
    width: 100%;
    padding: 15px;
    text-align: center;
    border-top: 1px solid #3E3E3E;
}

.copy_right span {
    font-weight: 400;
    font-size: 12px;
    color: var(--white-color);
}

.menu_bar {
    display: none;
    cursor: pointer;
}

.menu_bar img {
    width: 30px;
}

/* single page Css Start */
.single_product_section {
    padding: 40px 0 0;
}

.top_action {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background-color: #0478be21;
    padding: 7px 6px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.top_action_title {
    display: flex;
    align-items: center;
    gap: 15px;

}

.top_action_title img {
    width: 18px;
    margin-left: 10px;
}

.top_action_title h6 {
    font-weight: 500;
    font-size: 18px;
    color: var(--secondary-heading-color);
    margin-bottom: 0;
    margin-top: 3px;
}

.top_action_btn button {
    padding: 8px 30px;
    background-color: var(--primary-color);
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    color: var(--white-color);
    border: none;
}

.single_page_wraper {
    margin-bottom: 120px;
}

.image_gallery {
    overflow: hidden;
}

.gallery_images {
    height: 400px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery_images img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
    cursor: pointer;
    border: 1px solid #F8F8F8;
    background-color: #F8F8F8;
}

.gallery_images img.slick-slide.slick-current.slick-active {
    border: 1px solid var(--primary-color);
}

.gallery_images img:last-child {
    margin-bottom: 0;
}

.gallery_images::-webkit-scrollbar {
    display: none;
}

.feature_image {
    background-color: #F8F8F8;
    border: 1px solid var(--primary-color);
}

.feature_image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
	
}

.reviews_container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.views_count {
    font-weight: 500;
    font-size: 12px;
    vertical-align: middle;
    color: #EB7700;
    margin-top: 7px;
}

.product_desc p {
    font-weight: 400;
    font-size: 12px;
    color: var(--accent-text-color);
    margin-bottom: 15px;
}

.product_desc h3 {
    font-weight: 700;
    font-size: 28px;
    color: var(--secondary-heading-color);
}

.product_action_container {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.product_action_container button {
    width: 90%;
    height: 38px;
    background-color: var(--primary-color);
    border: none;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    text-transform: capitalize;
    color: var(--white-color);
    border-radius: 8px;
    transition: 0.3s ease-in-out;
}

.wishlist a {
	display: inline-block ;
    padding: 10px 12px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    transition: 0.3s ease-in-out;
}

.wishlist a:hover {
    background-color: var(--primary-color);
}

.wishlist a:hover i {
    color: var(--white-color);
}

.wishlist a i {
    font-size: 16px;
    color: var(--primary-color);
}

.colors h6 {
    font-weight: 500;
    font-size: 12px;
    line-height: 24px;
    vertical-align: middle;
    color: var(--secondary-heading-color);
}

.colors h6 span {
    font-weight: 400;
}

.features ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.features ul li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.features ul li i {
    font-size: 14px;
    color: var(--primary-color);
}

.features ul li span {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    vertical-align: middle;
    color: #474C59;

}

.tabs {
    display: flex;
    list-style-type: none;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 20px;
}

.tab {
    text-align: center;
    padding: 10px 17px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
    font-size: 14px;
    color: var(--accent-text-color);
    border-bottom: 2px solid #E5E5E5;
}

.tab:hover {
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.tab.active {
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content-main h4 {
    font-weight: 700;
    font-size: 20px;
    text-transform: capitalize; 
}

.tab-content-main ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-content-main ul li i {
    font-size: 14px;
    color: var(--primary-color);
}

.tab-content-main ul li span {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    vertical-align: middle;
    color: var(--accent-text-color);
}

.more_detail_container {
    padding-bottom: 60px;
}

.single_product_section hr{
    background-color: #cbcbcb;
}


.dimention_container{
    padding: 40px;
    background-color: var(--secondary-color);
    border-radius: 2rem;
}


.dimention_table_container table{ 
    font-size: 14px;
    width: 100%;
}
.dimention_table_container table tr:nth-of-type(even){ 
    background-color: var(--secondary-color);
}
.dimention_table_container table tr:nth-of-type(odd){ 
    background-color: var(--white-color);
}
.dimention_table_container table tr td{ 
    padding: 10px;
    width: 50%;
}
.dimention_table_container table tr td h6{ 
    margin-bottom: 0;
}
/* delivery */
.Delivery_container{
    padding: 40px;
    background-color: var(--secondary-color);
    border-radius: 2rem;
	overflow-x: auto ;
}
.Delivery_container p {
    margin: 10px;
}

.Delivery_container table{ 
    font-size: 14px;
    width: 100%;
}
.Delivery_container table tr:nth-of-type(even){ 
    background-color: var(--secondary-color);
}
.Delivery_container table tr:nth-of-type(odd){ 
    background-color: var(--white-color);
}
.Delivery_container table tr td{ 
	white-space: nowrap ;
    padding: 10px;
}
.Delivery_container table tr th{ 
	white-space: nowrap ;
    padding: 10px;
    background-color: var(--secondary-color);
}
.Delivery_container table tr td h6{ 
    margin-bottom: 0;
}
.price span.regular-price{
    text-decoration: line-through;
    color: #999;
    margin-left: 5px;
}

button.single_add_to_cart_button.button.alt.disabled.wc-variation-selection-needed {
    opacity: 0.7;
}

.quantity {
    display: none !important;
}
.woocommerce-variation-price .price{
	display: flex;
	align-items: center;
	gap: 15px;
	flex-direction: row-reverse;
	justify-content: left;
	margin: 10px 0;
}

table.variations tbody tr {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

form.variations_form.cart.th-var-active {
    width: 90%;
}
.product_action_container .cart{
	width: 90% ;
}

/* shop page */

.breadcrumbs_Sec {
    width: 100%;
    height: 250px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
	position:relative ;
	z-index: 1 ;
}

.breadcrumbs_Sec::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #00000059;
    z-index: -1;
}

.breadcrumbs_content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.breadcrumbs_content h1 {
    font-weight: 500;
    font-size: 50px;
    line-height: 40px;
    text-align: center;
    color: #fff ;
}


.checkbox-wrapper-21 .control {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-family: Figtree;
    font-weight: 400;
    font-size: 12px;
    line-height: 25px;
    vertical-align: middle;
    color: var(--accent-text-color);

}

.checkbox-wrapper-21 .control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.checkbox-wrapper-21 .control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #e6e6e6;
    border-radius: 4px;

}

.checkbox-wrapper-21 .control:hover input~.control__indicator,
.checkbox-wrapper-21 .control input:focus~.control__indicator {
    background: #ccc;
}

.checkbox-wrapper-21 .control input:checked~.control__indicator {
    background: var(--primary-color);
}

.checkbox-wrapper-21 .control:hover input:not([disabled]):checked~.control__indicator,
.checkbox-wrapper-21 .control input:checked:focus~.control__indicator {
    background: var(--primary-color);
}

.checkbox-wrapper-21 .control input:disabled~.control__indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.checkbox-wrapper-21 .control__indicator:after {
    content: '';
    position: absolute;
    display: none;
}

.checkbox-wrapper-21 .control input:checked~.control__indicator:after {
    display: block;
}

.checkbox-wrapper-21 .control--checkbox .control__indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-wrapper-21 .control--checkbox input:disabled~.control__indicator:after {
    border-color: #7b7b7b;
}


.shop_section {
    padding: 60px 0;
}

.filter_sec {
    position: relative;
}

.filter_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E5E5E5;
}

.filter_top_heading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter_top_heading img {
    width: 20px;
}

.filter_top_heading h6 {
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 0;
    margin-top: 2px;
}

.reset_btn {
    display: inline-block;
    font-weight: 500;
    font-size: 12px;
    vertical-align: middle;
    color: #EB7700;
}

.filter_field_col{
	padding: 15px 0;
    border-bottom: 1px solid #E5E5E5;
}
.apply_btn button {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 500;
	 background-color: var(--primary-color);
	color: #fff ;
}

.apply_btn {
    margin-top: 20px;
}
.filter_field {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    margin: 5px 0;
	 
}

.count_products {
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    vertical-align: middle;
    color: var(--accent-text-color);

}
.price_field{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.price_range{
    display: flex;
    align-items: center;
    gap: 10px;
}
.price_range input{
    width: 50%;
    padding: 5px 10px;
    border: 1px solid #E5E5E5;
}
.price_range input:focus{
    outline-color: var(--primary-color);
}


span.in_Stock {
    text-decoration: none;
	color: var(--primary-color) ;
	font-weight: 500 ;
	font-size: 12px ;
}
span.out_Stock {
    text-decoration: none;
	color: #FF0000 ;
	font-weight: 500 ;
	font-size: 12px ;
}

.range-slider {
    position: relative;
    width: 100%;
    height: 10px;
    margin: 10px 0;
}

.slider-track {
    position: absolute;
    height: 5px;
    background: #4CAF50; /* Green Background */
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
}


/* single page Css  */

.showing_product_sec {
    padding: 0 15px;
}
.top_showing_text{
	padding-bottom: 14px;
    border-bottom: 1px solid #E5E5E5;
}
.all_products {
    padding: 20px 0;
}


/* cart page Css */
td.product-thumbnail img {
    width: 80px;
}

.woocommerce a.remove{
	color: var(--primary-color) !important;
	transition: 0.3s ease-in-out ;
}
.woocommerce a.remove:hover {
    color: #fff !important;
    background: var(--primary-color) !important;
}

input#coupon_code {
    width: 140px;
    padding: 8px 20px;
}
input#coupon_code:focus {
	outline-color: var(--primary-color)  ;
}
.coupon button {
    padding: 14px 20px !important;
    margin-left: 10px !important;	
	background-color: var(--primary-color) !important;
	color: #fff !important;
}

td.actions button {
    padding: 15px 20px !important;
	background-color: var(--primary-color) !important;
	color: #fff !important;
}
.woocommerce-message {
    border-top-color:  var(--primary-color) !important;
}
.woocommerce-message::before {
    color: var(--primary-color) !important;
}
tr.order-total th {
    font-size: 22px;
    font-weight: bold;
}
tr.order-total td {
    font-size: 22px;
}

td.product-quantity .quantity{
	display: block !important;
}

td.product-quantity .quantity input {
    width: 100px !important;
    padding: 10px;
    border-radius: 25px;
	border: 2px solid var(--primary-color) ;
}
td.product-quantity .quantity input:focus{
	outline: none ;
}

a.checkout-button.button.alt.wc-forward {
    padding: 15px 20px;
	background-color: var(--primary-color) !important ;
	
}


.woocommerce-info {
    border-top-color: var(--primary-color) !important;
}

.woocommerce-info::before {
    color: var(--primary-color) !important;
}


.filter_bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    max-width: fit-content;
    padding: 10px;
    background: #ffff;
    box-shadow: 0px 0px 8px -3px #ccc;
    border-radius: 8px;
	cursor: pointer ;
	display: none ; 
}

.filter_icon img {
    width: 20px;
}
.filter_bar h6 {
    margin-bottom: 0;
    line-height: 24px;
    margin-top: 2px;
}

.close_filter{
	display: none ;
	
}
.filter_action_res{
	display: flex ;
	align-items: center ;
	gap: 10px ;
}





#wpgs-gallery .wcgs-carousel .wcgs-spswiper-arrow, #wpgs-gallery .wcgs-carousel .wcgs-spswiper-arrow {
    background-color: #C2B280 !important;
    border-radius: 50% !important;
}

.header-btns ul li img {
    width: 22px;
}
.head_wishlist_icon{
	padding: 10px;
	transition: 0.3s ease-in-out ;
}
.head_wishlist_icon:hover{
	background-color: #ccc ;
}
.mob_btn {
    display: none;
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    font-size: 18px;
}
.mob_menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    background-color:#fff;
    z-index: 2;
    overflow: auto;
    box-shadow: 0px 0px 15px 1px #00000094;
}
.mob_menu.active {
    visibility: visible;
    opacity: 1;
    left: 0;
}
.close_bar {
    padding: 15px 15px;
    background-color: #fff;
    cursor: pointer;
    max-width: 100%;
    text-align: end;
    justify-self: end;
    width: 100%;
	 box-shadow: 0px 2px 7px 0px #00000059;
	
}
.close_bar i {
    color: var(--primary-color);
    font-size: 25px;
}
.mob_nav_links ul {
    padding-left: 0;
    list-style-type: none;
}
.mob_nav_links ul li {
    width: 100%;
	position: relative ;
}
.mob_nav_links ul li a {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    border-bottom: 1px solid #ccc;
    display: block;
    padding: 10px 0px 10px 15px;
}


/* Hide submenu initially */
.mob_nav_links .sub-menu {
	display: none;
	padding-left: 0px;
}
.mob_nav_links .sub-menu li.menu-item-has-children a {
	color: #ddd !important;
}
/* Style the toggle button */
.mob_nav_links .submenu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    position: absolute;
    right: 0px;
    top: 0;
    width: 46px;
    height: 42px;
    border-left: 1px solid #cccccc9c;
}

/* Rotate icon when active (optional) */
.mob_nav_links .submenu-toggle.active .arrow i{
	transform: rotate(180deg);
	transition: transform 0.3s ease;
}














/* about section css start */
.about_us {
    padding: 60px 0;
}

.about_tabs {
    display: flex;
    list-style-type: none;
    padding: 0;
    align-items: center;
    gap: 13px;
	flex-wrap: wrap ;
    margin-bottom: 20px;
	color: #fff ;
}

.about_tab {
    cursor: pointer;
    padding: 8px 18px;
    border-radius: 4px;
    border: 1px solid rgba(224, 227, 235, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: rgba(136, 139, 151, 1);
    transition: 0.3s ease-in-out;
}

.about_tab:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
    border-color: transparent;
}

.about_tab.active {
    background-color: var(--primary-color);
    color: var(--text-color);
    border-color: transparent;
}

.about_tab_content {
    display: none;
}

.about_tab_content.active {
    display: block;
}

.about_tab_content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #767C8C;
}

.about_content_list {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.about_content_list li {
    padding: 17px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0px 9px 32px 0px #595CDB0D;
    margin-top: 20px;
    transition: 0.3s ease-in-out;
}

.about_content_list li:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.about_content_list li:hover .about_content_list_icon {
    background-color: #fff;
}

.about_content_list li:hover .about_content_list_content h6 {
    color: #fff;
}

.about_content_list_icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
}

.about_content_list_icon img {
    width: 12px;
}

.about_content_list_content h6 {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    color: #373B40;
}



.about_images {
    position: relative;
    width: 100%;
    z-index: 1;
}

.shape-about {
    width: 320px;
    height: 360px;
    background: #0478be3b;
    border-radius: 4px;
    position: absolute;
    bottom: -40px;
    transform: translate(50%);
    z-index: -1;
}

.about_image_ful {
    width: 100%;
}

.about_image_ful img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: 12px;
}

.about_image_half img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 17px;
}

.about_image_content {
    padding: 20px;
    border-radius: 12px;
    background-color: var(--primary-color);
    height: 220px;
}

.about_image_content_img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_image_content_img img {
    width: 55px !important;
    height: auto !important;
    margin-bottom: 0;
}

.about_image_content h6 {
    font-weight: 500;
    font-size: 28px;
    line-height: 35px;
    color: var(--text-color);
    margin-top: 15px;
}

.about_content {
    padding-left: 30px;
}

.about_content .title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.about_content .title .title_img {
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_content .title .title_img img {
    width: 20px;
}

.about_content .title span {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: var(--primary-color);
}

.about_content h2 {
    font-weight: 500;
    font-size: 36px;
    line-height: 35px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.about_call_action {
    width: 100%;
    height: 313px;
    position: relative;
    padding: 20px;
    background-color: #010001;
}

.about_call_action_content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about_call_action_content h2 {
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
    text-align: center;
    color: #fff;
}

.about_call_action_content h2 span {
    color: var(--primary-color);
}

.about_call_action_content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    color: #C8CCD9;
}

.about_shape1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: left;
}

.about_shape1 img {
    padding-left: 30px;
}

.about_shape2 {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 100%;
    height: 100%;
    text-align: right;
}

.about_shape2 img {
    padding-right: 30px;
}

/* contact page start */
/* contact section start */
.contact_us {
    padding: 60px 0;
}

.contact_content {
    padding-right: 100px;
}

.contact_content .title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.contact_content .title .title_img {
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_content .title .title_img img {
    width: 20px;
}

.contact_content .title span {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: var(--primary-color);
}

.contact_content h2 {
    font-weight: 500;
    font-size: 28px;
    line-height: 32px;
    color: #373B40;
}

.contact_content h2 span {
    font-size: 35px;
}

.contact_content p {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: #767C8C;
}

.contact_list ul {
    margin-bottom: 0;
    list-style-type: none;
    padding: 20px 0;
    border-top: 1px solid #F0F3FD;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact_list ul li {
    display: flex;
    align-items: start;
    gap: 15px;
}

.contact_list_icon {
    width: 45px;
    height: 45px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_list_icon i {
    color: #fff;
    font-size: 20px;
}

.contact_list_content h6 {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0;
    color: var(--text-color);
}

.contact_list_content p {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: #767C8C;
    margin-bottom: 0;
}

.contact_list_content p a {
    color: #767C8C;
    transition: 0.3s ease-in-out;
}

.contact_list_content p a:hover {
    color: var(--primary-color);
}

.contact_social_links {
    padding: 15px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact_social_links a {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--text-color);
    transition: 0.3s ease-in-out;
}

.contact_social_links a:hover {
    color: var(--primary-color);
}

.contact_form {
    padding: 35px;
    background-color: #0478be3b;
    border-radius: 12px;
}

.contact_form h2 {
    font-weight: 500;
    font-size: 28px;
    line-height: 40px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.contact_field {
    width: 100%;
    position: relative;
}

.contact_field input {
    width: 100%;
    padding: 9px 10px 9px 45px;
    font-weight: 300;
    font-size: 14px;
    color: #767C8C80;
    border-radius: 8px;
    border: none;
}

.contact_field input::placeholder {
    color: #767C8C80;
}

.contact_field select {
    width: 100%;
    padding: 10px 10px 10px 13px;
    font-weight: 300;
    font-size: 14px;
    color: #767C8C80;
    border-radius: 8px;
    border: none;
}

.contact_field textarea {
    width: 100%;
    height: 165px;
    padding: 15px;
    font-weight: 300;
    font-size: 14px;
    color: #767C8C80;
    border-radius: 8px;
    border: none;
    transition: 0.3 ease-in-out;
}

.contact_field textarea:focus {
    outline-color: var(--primary-color);
}

.contact_field input:focus {
    outline-color: var(--primary-color);
}

.contact_field select:focus {
    outline-color: var(--primary-color);
}

.contact_field textarea::placeholder {
    color: #767C8C80;
}

.contact_field_icon {
    position: absolute;
    left: 20px;
    top: 9px;
}

.contact_field_icon i {
    color: var(--primary-color);
    font-size: 16px;
}

.contact_submit_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 170px;
    height: 40px;
    position: relative;
	background-color: var(--primary-color);
	border-radius: 50px ;
}

.contact_submit_btn input {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    line-height: 12px;
    border: none;
    padding-left: 30px;
    text-align: left;
	color: #fff ;
    background-color: var(--primary-color);
    transition: 0.3s ease-in-out;
}

.contact_submit_btn input:hover .contact_submit_btn{
    background-color: var(--secondary-color);
}

.contact_submit_icon {
    position: absolute;
    right: 30px;
	color: #fff ;
    top: 9px;
}

.contact_map {
    padding: 10px 0 80px 0;
}



a.next.page-numbers {
    background-color: var(--primary-color);
    padding: 0px 15px;
    border-radius: 50%;
    font-size: 33px;
    color: #fff;
}

a.prev.page-numbers {
    background-color: var(--primary-color);
    padding: 0px 15px;
    border-radius: 50%;
    font-size: 33px;
    color: #fff;
}
.page-numbers {
    font-size: 18px;
    padding: 10px 20px;
    background: #cccccc59;
    border-radius: 50%;
    color: #000;
}
.page-numbers.current{
     background-color: var(--primary-color);
    color: #fff;
}
.pagination{
	gap: 10px;
    flex-wrap: wrap;
}

ul#menu-primary-menu {
    position: relative;
}
.header-menus ul li.menu-item-has-children .sub-menu {
    position: absolute;
    top: 130%;
    display: block;
    z-index: 3;
    padding: 15px;
    box-shadow: 0px 0px 3px 0px #0000001a;
    background-color: #fff;
	visibility: hidden ;
	opacity: 0 ;
	transition: 0.3s ease-in-out ;
}
.header-menus ul li.menu-item-has-children:hover .sub-menu{
	visibility: visible ;
	opacity: 1 ;
}



.header-menus ul li.menu-item-has-children .sub-menu li {
    margin-bottom: 12px;
	transition: 0.3s ease-in-out ;
}
.header-menus ul li.menu-item-has-children .sub-menu li:last-child {
    margin-bottom: 0px;
}
.header-menus ul li.menu-item-has-children .sub-menu li a{
    font-size: 14px ;
}
.header-menus ul li.menu-item-has-children .sub-menu li:hover a{
	color: var(--primary-color) ;
}
.header-menus ul li.menu-item-has-children .sub-menu li a::after{
	display: none ;
}
.header-menus ul li.menu-item-has-children .submenu-toggle {
    border: none;
    background: none;
    margin-left: 5px;
}



.mob_tabs {
	display: flex;
	list-style-type: none;
	padding: 0;
	margin-bottom: 20px;
	margin-top: -1px ;
}

.mob_tab {
	flex: 1;
	text-align: center;
	padding: 10px;
	background-color: #ddd;
	cursor: pointer;
	transition: background-color 0.3s;
}

.mob_tab.active {
    background-color: #ccc;
    border-bottom: 2px solid #0478be;
}

.mob_tab-content {
	display: none;
}

.mob_tab-content.active {
	display: block;
}



.single_top_main {
    padding: 20px 0;
}

.single_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.single_top h1 {
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 15px;
}

.single_top_title ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
}


.single_top_title ul li:first-child {
    background-color: #F0F1F5;
    border-radius: 8px;
    border: none;
}

.single_top_title ul li {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    padding: 8px 20px;
    color: #373B40;
    border-right: 2px solid #E0E3EB;
}

.single_top_title ul li i {
    margin-left: 5px;
}

.single_top_title ul li:last-child {
    border: none;
}

.single_top_price ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
}

.single_top_price ul li a {
    padding: 15px 20px;
    font-weight: 300;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #373B40;
    background-color: #F0F1F5;
    border-radius: 8px;
}

.single_top_price ul li:first-child a {
    padding: 11px 20px;
    font-weight: 300;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #373B40;
    background-color: #F0F1F5;
    border-radius: 8px;
}

.single_images {
    padding: 0 0 20px;
}

.gallery_images {
    height: 580px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery_images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
}

.gallery_images img:last-child {
    margin-bottom: 0;
}

.gallery_images::-webkit-scrollbar {
    display: none;
}
.post_feature_image {
	background-color: #F8F8F8;
	border: 1px solid var(--primary-color);
	text-align: center;
	border-radius: 8px;
	margin-top: 20px;
}

.post_feature_image img {
    width: auto;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
	max-width: 100%;
	max-height: 400px ;
}

.single_info .house_details {
    max-width: 100%;
}

.single_info h6 {
    font-weight: 500;
    font-size: 24px;
    line-height: 40px;
    color: var(--text-color);
}

.single_info p {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: #767C8C;
    margin-bottom: 25px;
}

.house_features {
    padding-top: 20px;
    border-top: 2px solid #F0F3FD;
}

.house_features h6 {
    font-weight: 500;
    font-size: 24px;
    line-height: 40px;
    color: var(--text-color);
}

.house_features p {
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
    color: #767C8C;
}

.house_details h6 {
    font-weight: 500;
    font-size: 18px;
    line-height: 40px;
    color: var(--text-color);
}







.single_page_forms {
    width: 100%;
    position: relative;
}

.recently_post {
    width: 100%;
	background-color: hsl(202.58deg 95.88% 38.04% / 14%);
	padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}


.recently_post ul li {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 0px ;
	border-bottom: 1px solid #ccc ;
}

.recently_post_img {
    width: 50px;
    height: 50px;
}
.recently_post_img img{
    width: 100%;
    height: 100%;
	object-fit: cover ;
}

.recently_post_content h6 {
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
	font-size: 16px ;
	
}





.single_info_main{
    padding: 10px 0 80px;
}


.our_values {
	padding-bottom: 60px;
}
.value_card{
	color: #363534;
	background: #f2f2f2;
	height: 317px ;
	transition: 0.3s ease-in-out ;
}
.value_card:hover{
	border: 1px dashed #363534 ;
}
.value_card_img {
    text-align: center;
    padding: 35px 10px 5px;
}

.value_card_content {
    padding: 20px;
    text-align: center;
}

.value_card_content h6 {
	font-size: 20px;
	font-weight: 600;
	color: #000;
}
.value_card_content p {
	font-size: 16px;
	padding: 0px 10px;
}


.side_menus {
	display: flex;
	align-items: center;
	gap: 20px;
}
section.my_account {
	padding: 50px 0;
	border-top: 1px solid #ccc;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
	float: left;
	margin-right: 1em;
	padding: 15px 30px;
	background: #0478be;
	color: #fff;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover{
	background-color: #0478be ;
	color: #fff ;
}
button.woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit {
	float: left;
	margin-right: 1em;
	padding: 15px 30px;
	background: #0478be;
	color: #fff;
}
button.woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit:hover {
	background: #0478be;
	color: #fff;
}

button.woocommerce-Button.button {
	padding: 15px 30px;
	background: #0478be;
	color: #fff;
	transition: 0.3s ease-in-out ;
}
button.woocommerce-Button.button:hover{
	background: #0478be;
	color: #fff;
}


.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
	padding: 15px;
	border: 1px solid #ccc;
}
.woocommerce form .form-row .input-text:focus{
	outline: none ;
	border-color: #0478be ;
}
p.woocommerce-LostPassword.lost_password a {
	margin-top: 20px;
	display: inline-block;
	color: red;
}
nav.woocommerce-MyAccount-navigation ul {
	padding: 15px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	align-items: center;
}
nav.woocommerce-MyAccount-navigation ul li {
	margin: 10px 0;
	text-align: center;
}

nav.woocommerce-MyAccount-navigation ul li a{
	font-size: 16px ;
	font-weight: 500
}
nav.woocommerce-MyAccount-navigation ul li a {
	padding: 10px;
	display: inline-block;
	border: 1px solid #0478be;
	max-width: 200px;
	min-width: 200px;
	color: #0478be ;
	transition: 0.3s ease-in-out
}
nav.woocommerce-MyAccount-navigation ul li a:hover{
	background-color: #0478be ;
	color: #fff ;
}

.woocommerce-MyAccount-content {
	padding: 30px 15px;
	border-radius: 60px;
	text-align: center;
	box-shadow: 0px 0px 11px 0px #ccc;
}
li.woocommerce-MyAccount-navigation-link.is-active a {
	background: #0478be;
	color: #fff;
	border: none;
}
.financial_banner{
	max-width: 1240px ;
	margin: 0 auto ;
	background-color: #f4f4f4;
	padding: 20px;
}

.financial_banner_image{
	height: 400px ;
	width: 100% ;
	padding: 20px;
}


.financial_banner_content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px;
}

.financial_banner_content h2 {
	font-size: 48px;
}
.financial_banner_content h2 span{
	color: #0679bf ;
}

.financial_banner_image img {
	rotate: 51deg;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.table_container table tr th {
	width: 50%;
	background-color: #0478BE;
	padding: 10px;
	color: #fff;
	font-size: 18px;
}
.table_container table tbody tr td {
	border-bottom: 1px solid #ccc;
	padding: 10px;
}
.table_container table tr td button {
    border: none;
    padding: 6px 15px;
    border-radius: 8px;
    background: #0478be;
    color: #fff;
    margin-top: 10px;
}

.table_container {
	padding: 40px 0;
	max-width: 800px;
	margin: 0 auto;
}
td.shade {
    background: #cccccc69;
}
/* faqs */
.accordion .accordion-item {
	border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item button[aria-expanded='true'] {
	border-bottom: 1px solid #03b5d2;
}
.accordion button {
	position: relative;
	display: block;
	text-align: left;
	width: 100%;
	padding: 1em;
	color: #7288a2;
	font-size: 1.15rem;
	font-weight: 400;
	border: none;
	background: none;
	outline: none;
}
.accordion button:hover,
.accordion button:focus {
	cursor: pointer;
	color: #03b5d2;
}
.accordion button:hover::after,
.accordion button:focus::after {
	cursor: pointer;
	color: #03b5d2;
	border: 1px solid #03b5d2;
}
.accordion button .accordion-title {
	padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
	display: inline-block;
	position: absolute;
	top: 18px;
	right: 12px;
	width: 22px;
	height: 22px;
	border: 1px solid;
	border-radius: 22px;
}
.accordion button .icon::before {
	display: block;
	position: absolute;
	content: '';
	top: 9px;
	left: 5px;
	width: 10px;
	height: 2px;
	background: currentColor;
}
.accordion button .icon::after {
	display: block;
	position: absolute;
	content: '';
	top: 5px;
	left: 9px;
	width: 2px;
	height: 10px;
	background: currentColor;
}
.accordion button[aria-expanded='true'] {
	color: #03b5d2;
}
.accordion button[aria-expanded='true'] .icon::after {
	width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
	opacity: 1;
	max-height: 15em;
	transition: all 200ms linear;
	will-change: opacity, max-height;
}
.accordion .accordion-content {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 200ms linear, max-height 200ms linear;
	will-change: opacity, max-height;
}
.accordion .accordion-content p {
	font-size: 1rem;
	font-weight: 300;
	margin: 1rem;
}

section.faqs_Section h2 {
	text-align: center;
}
section.faqs_Section {
	padding-bottom: 40px;
}
.financial_content_Sec {
	padding: 30px;
	margin: 40px;
	border-radius: 30px;
	box-shadow: 0px 0px 18px #ccc;
}
.highlight h2 {
	margin-top: 19px;
}
section.help_banner {
	max-width: 1240px;
	margin: 0 auto;
	height: 150px;
	display: flex	;
	align-items: center;
	justify-content: center;
	background-color: #f4f4f4;
	padding: 20px;
}

.help_banner_content h2 {
	font-size: 48px;
	text-align: center ;
}
.help_banner_content h2 span{
	color: #0679bf ;
}

section.help_services {
	padding: 40px 0;
}
.help_services_card {
	display: flex	;
	flex-direction: column;
	align-items: center;
	height: 200px;
	background: #f4f4f4;
	justify-content: center;
	gap: 20px;
	transition: 0.3s ease-in-out ;
}
.help_services_card:hover {
	border: 1px dashed #ccc ;
	
}
.help_services_card_content{
	text-align: center;
	padding: 10px 15px;
}
.help_services_card_img img {
	height: 50px;
}

.help_services .title {
    margin-bottom: 25px;
}
.help_content_Section {
    padding: 20px 0px 40px;
}

.help_content_Section .container {
	padding: 25px;
	box-shadow: 0px 0px 12px #ccc;
	border-radius: 12px;
}

.offer-section h2 {
    margin-top: 15px;
}

.faqs_col {
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0px 0px 10px #ccc;
	border-radius: 12px;
}
.faqs_page {
	padding: 40px 0;
}

.brands_Sec {
    padding: 20px 0 20px;
}
.brands_Sec .title{
	margin-bottom:20px ;
}



.brand_card_img img {
	width: 100%;
	max-height: 450px;
	aspect-ratio: 0.75 / 1;
	object-fit: cover;
}
.brand_card_content {
	padding: 20px;
	text-align: center;
}
.brand_card_content h6 {
	font-size: 18px;
	text-decoration: underline;
	font-weight: 600;
	margin-bottom: 0;
}

.mySwiperBrands {
	padding-bottom: 40px;
}
.brands_Sec .mySwiperBrands  .swiper-button-next, .swiper-button-prev {
	top: 38% !important;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #0478be;
}
.brands_Sec .mySwiperBrands  .swiper-button-next:after, .swiper-button-prev:after {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 14px;
	color: #fff;
}

.brands_Sec .mySwiperDeals .swiper-button-next, .swiper-button-prev {
	top: 38% !important;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #0478be;
}
.brands_Sec .mySwiperDeals .swiper-button-next:after, .swiper-button-prev:after {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 14px;
	color: #fff;
}
.mySwiperDeals {
    padding-bottom: 40px;
}



.best_selling .mySwiperBest_product  .swiper-button-next, .swiper-button-prev {
	top: 38% !important;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #0478be;
}
.best_selling .mySwiperBest_product  .swiper-button-next:after, .swiper-button-prev:after {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 14px;
	color: #fff;
}
.swiper-button-next:after {
	content: '\f054'; /* Chevron right icon */
}

.swiper-button-prev:after {
	content: '\f053'; /* Chevron left icon */
}

.order-tracking-page .container {
	padding: 20px;
	box-shadow: 0px 0px 11px #ccc;
	border-radius: 12px;
}
.order-tracking-page {
	padding: 40px 0;
	border-top: 1px solid #ccc;
}
	p.error_msg {
		padding: 15px !important;
		text-align: center !important;
		margin: 10px !important; 
		border-radius: 12px !important; 
		box-shadow: 0px 0px 8px #0000006e !important;
	}
	p.error_msg a {
		text-decoration: underline !important;
		font-weight: bold !important;
		transition: 0.3s ease-in-out !important;
	}
	p.error_msg a:hover{
		color:  #0478be  !important;
	}


table.tinvwl-table-manage-list tr th {
	background: #0478be;
	color: #fff;
}
table.tinvwl-table-manage-list tbody tr td {
	border-bottom: 1px solid #ccc;
}

td.product-action button {
    font-size: 14px !important;
    background: #0478be !important;
}
span.tinvwl-input-group-btn button {
	background: #0478be !important;
	color: #fff !important;
	padding: 11px 15px !important;
}

section.wishlist_page {
	padding: 0px 0px 40px;
}
.tinvwl-to-right.look_in button {
	background: #0478be;
	color: #fff;
	padding: 13px 15px;
	transition: 0.3s ease;
}
.tinvwl-to-right.look_in button:hover {
	background: #0478be;
	color: #fff;
}
.social-buttons ul li {
	background: #0478be;
	color: #fff;
	transition: 0.3s ease-in-out ;
}


.social-buttons ul li:hover {
	border-radius : 50% ;
}
.social-buttons ul li a {
    color: #fff;
}

.button.tinvwl_button_close{
	background: #0478be;
	color: #fff;
	border: none ;
	border-radius: 25px ;
	padding: 15px 20px ;
}
.button.tinvwl_button_view.tinvwl-btn-onclick{
	background: #0478be;
	color: #fff;
	border: none ;
	border-radius: 25px ;
	padding: 15px 20px ;
}


.more_pages {
	padding: 40px 0;
}



.sub_popup_main {
	height: 100vh;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: #000000a8;
	z-index: 11111111111;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden ;
	opacity: 0 ;
	transition: 0.3s ease-in-out ;
}
.sub_popup_main.active{
	visibility: visible ;
	opacity: 1 ;
	
}


.sub_popup{
	box-shadow: 0 0 0 .5px rgba(18, 21, 26, .08), 0 4px 8px rgba(18, 21, 26, .04), 0 8px 16px -2px rgba(18, 21, 26, .04), 0 16px 32px -4px rgba(18, 21, 26, .04);
	display: -webkit-box;
	display: -webkit-flex;
	display: flex	;
	position: relative;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	align-items: stretch;
	border-radius: 12px;
	overflow: hidden;
	width: 692px;
}
.sub_popup_img {
	width: 35%;
}
.sub_popup_img img{
	width: 100%;
	height: 100%;
	object-fit: cover ;
}

.sub_popup_content {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	text-align: center;
	width: 65%;
	padding: 60px 48px;
	background: #fff;
}

.sub_popup_content_head h6{
	font-size: 29px;
	line-height: 150%;
	margin-bottom: 16px;
}
.sub_popup_content_head p{
	line-height: 150%;
	font-size: 14px;
	margin-bottom: 24px;
} 
.sub_popup_content_form {
	width: 100%;
}

.sub_popup_content_form input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #00000066;
    width: 100%;
	margin-bottom: 15px ;
}
.sub_popup_content_form input:focus{
	outline: none ;
}

.sub_popup_short_content p {
	font-size: 10px;
	line-height: 11px;
	font-weight: bold;
}
.sub_popup_form_btn input {
	background: #0478BE;
	color: #fff;
	border: none;
	transition: 0.3s ease;
}
.sub_popup_form_btn input:hover {
	background: #024974 ;
}

.close_sub_popup {
	position: absolute;
	top: 15px;
	right: 20px;
	color: #6c757d;
	font-size: 25px;
	cursor: pointer ;
}



section.video_gallery_Sec {
	padding: 40px 0;
}
.video_container {
    height: 850px;
    width: 100%;
    display: block;
    opacity: 1;
}
.video_container img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.video_container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.call_images {
	height: 100%;
	width: 100%;
}
.image_con.one img {
	height: 576px;
	width: 100%;
	object-fit: cover;
}
.image_con img {
	height: 250px;
	width: 100%;
	object-fit:cover ;
}

.image_con {
	height: 100%;
	width: 100%;
	position: relative;
}

.off_box {
	width: 135px;
	height: 126px;
	background: #0478be;
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}
.off_box p {
    font-size: 16px;
    margin-bottom: 8px;
}
.off_box h6 {
	margin-bottom: 0;
	font-size: 25px;
	font-weight: 700;
	font-family: math;
}

.off_box span {
	font-size: 18px;
}
.copy_right span a {
	color: #0478be;
	transition: 0.3s ease;
}
.copy_right span a:hover{
	text-decoration: underline ;
}

@media (max-width: 1200px) {
    .header-menus ul li a {
        font-size: 14px;
    }

    .header-menus ul {
        gap: 16px;
    }
	.shop_collection_card{
		height: 320px;
	}
	.category_img{
		height: 120px;
	}
}

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

@media (max-width: 991px) {
    .header-menus {
        display: none;
    }
	.mob_btn {
		display: block ;
	}
    .why_choose_card {
        padding: 10px 5px;
    }

    .why_choose {
        padding: 18px 10px;
    }

    .why_choose_card {
        justify-content: left;
    }

    .why_choose_card {
        border-right: none;
    }

    .why_choose .col-lg-3.col-6:first-child {
        border-right: 1px solid #FFFFFF38;
    }

    .why_choose .col-lg-3.col-6:last-child {
        border-left: 1px solid #FFFFFF38;
    }
	
	.contact_content {
        padding-right: 15px;
    }
	.filter_sec {
		position: fixed;
		top: 0;
		left: -300px;
		background: #fff;
		padding: 20px;
		width: 320px;
		height: 100vh;
		z-index: 111;
		visibility: hidden ;
		opacity: 0 ;
		transition: 0.3s ease-in-out ;
		overflow-y: auto ;
	}
	.filter_sec.active{
		left: 0 ;
		visibility: visible ;
		opacity: 1 ;
	}
	.filter_bar{
		display: flex ;
	}
	
	.close_filter {
		display: flex;
		width: 37px;
		height: 31px;
		background-color: var(--primary-color);
		border-radius: 8px;
		align-items: center;
		justify-content: center;
	}
	.close_filter i{
		color: #fff;
		font-size: 16px ;
	}
	
	.product_card_img{
		height : 200px ;
	}
	.shop_collection_card{
		height: 485px;
	}
	.bottom_bar{
		display: none ;
	}
	.search_container {
		display: none;
	}
	.side_menus {
		display: none;
	}
	.value_card_content p{
		font-size: 13px;
	}
	.value_card_content h6 {
		font-size: 16px;
	}
	.Categories_main {
		display: grid	;
		grid-template-columns: repeat(5, 1fr);
		gap: 20px;
	}
	.video_container {
		height: 640px;
		width: 100%;
		display: block;
		opacity: 1;
	}
	.image_con.one img {
		height: 367px;
	}
}

@media (max-width: 768px) {
    .top-bar {
        background-color: var(--white-color);
        padding: 0;
        position: relative;
        z-index: 1;
    }

    .top-bar::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #F5F5DC;
        z-index: -1;
        width: 100%;
        height: 50%;
    }


    .middle-bar p {
        font-size: 12px;
    }

    .top-bar-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .top-bar-menus {
        padding: 7px;
    }

    .top-bar-menus ul {
        justify-content: center;
    }

    .header-logo {
        display: flex;
        align-items: center;
        gap: 20px;
    }
	
    .banner-content h1 {
        font-size: 36px;
    }

    .why_choose_card_img img {
        width: 25px;
    }

    .title h2 {
        font-size: 22px;
    }

    .shop_call_banner {
        padding: 0;
    }

    .shop_collection_card {
        height: 363px;
    }

    .testimonials_content h1 {
        font-size: 22px;
        text-align: center;
    }

    .testimonials_img {
        display: none ;
    }

    .testimonial_btn {
        margin-top: 20px;
    }

    .testimonials_sec {
        padding: 20px 0;
    }

    .call_action_banner {
        height: 232px;
        padding: 20px;
    }

    .call_action_banner_content h1 {
        font-size: 22px;
        line-height: 25px;
    }

    .call_action_banner_content {
        margin-bottom: 10px;
    }

    .call_action_banner_Sec {
        padding: 40px 0 0;
		display: none ;
    }

    .blog_sec {
        padding: 40px 0 0px;
    }

    .subscribe_form_Sec {
        justify-content: left;
    }
	.gallery_images{
		height: 250px ;
	}
	.feature_image img {
   		 height: 250px;
	}
	.top_action{
		flex-direction: column ;
	}
	
	.breadcrumbs_content h1{
		font-size: 36px ;
		
	}
	
	.all_products .product_card .product_card_img img{
		height: 100% ;
		width: 100% ;
	}
	.showing_product_sec{
		padding: 0px ;
	}
	
	
	.product_card_content .add_to_cart_btn {
		display: block;
		visibility: visible;
		opacity: 1;
		position: relative ;
		bottom: 0;
		margin-top: 15px;
	}
	.add_to_cart_btn a{
		border-radius : 25px ;
	}
	
	.shape-about {
        width: 50%;
    }
	.best_selling{
		padding: 20px 0px;
	}
	.categories_sec .mySwiperCategories {
		padding-bottom: 60px;
	}
	.best_selling .mySwiperBest_product {
		padding: 25px 0 20px;
	}
	 .shop_collection_card_content h1 {
        font-size: 22px;
        font-weight: 700;
        line-height: 27px;
        margin-bottom: 8px;
    }
	.feature_prodcut_sec {
		padding: 20px 0 0;
	}
	.about_us {
		padding: 25px 0;
	}
	.contact_us {
		padding: 25px 0;
	}
	.single_page_wraper {
		margin-bottom: 25px;
	}
	.more_detail_container {
		padding-bottom: 20px;
	}
	.single_top{
		flex-direction: column;
		align-items: start;
		gap: 20px;
	}
	.single_top_price ul{
		justify-content: start;
		flex-wrap: wrap;
	}
	.single_top_title ul{
		flex-wrap: wrap;
	}
	.brand_card_content h6{
		font-size: 16px ;
	}
	.financial_content_Sec{
		margin: 0 ;
	}
	.financial_content_Sec{
		padding: 12px;
	}
	.accordion button{
		font-size: 14px ;
	}
	.accordion button{
		padding: 1em 3em 1em 1em;
	}
	.accordion .accordion-content p {
		font-size: 12px;
		font-weight: 300;
		margin: 12px;
	}
	section.faqs_Section{
		padding-top: 30px ;
	}
	.order-tracking-page .container {
		padding: 12px;
	}
	.sub_popup_img {
		display: none;
	}
	.sub_popup_content{
		width: 70%;
		padding: 31px 40px;
	}
	.sub_popup_content_head h6 {
		font-size: 24px;
		margin-bottom: 6px;
	}
	.sub_popup_form_btn input{
		margin-bottom: 0 ;
	}
	.Categories_main {
		grid-template-columns: repeat(3, 1fr);
	}
	
}

@media (max-width: 576px) {
	.about_image_ful {
        text-align: center;
    }

    .about_image_ful img {
        width: 40%;
        height: 250px;
    }

    .about_image_half {
        text-align: center;
    }

    .about_image_half img {
        width: 80%;
        height: 300px;
    }

    .about_image_content h6 {
        text-align: left;
    }

    .about_content {
        padding: 0;
    }

    .about_content_list_content h6 {
        font-size: 14px;
        line-height: 19px;
    }

    .about_shape1 img {
        padding: 0;
    }

    .about_shape2 img {
        padding: 0;
    }
	.banner-sec {
		height: 50vh;
	}
    .banner-content h1 {
        font-size: 29px;
    }

    .why_choose_card_content span {
        font-size: 10px;
    }

    .why_choose_card_content h6 {
        font-size: 12px;
    }

   

    .shop_collection_card {
        padding: 20px 60px 20px 20px;
    }
	
	.product_card_img{
		height: 135px ;
	}
	
	
	.all_products .product_card .product_card_img{
		height: 138px ;
	}
	.all_products .product_card .product_card_img img{
		height: 100% ;
		width: 100% ;
	}
	.all_products .product_card .product_card_img .off_tag{
		top: 2px;
		left: 3px;
	}
	.all_products .product_card .product_card_img .wishlist_icon{
		width: 25px;
		height: 25px;
		top: 2px;
		right: 2px;
	}
	.all_products .product_card .product_card_content h6{
		font-size:14px ;
	}
	.all_products .product_card .product_card_content p{
		font-size:12px ;
	}
	.all_products .product_card .product_card_content p .woocommerce-Price-amount.amount:last-of-type{
		font-size:12px ;
	}
	.all_products .product_card .product_card_content .reviews_star img {
		width: 11px;
	}
	.financial_banner_image img{
		rotate: 0deg;
	}
	.financial_content_Sec{
		margin: 0 ;
	}
	.financial_content_Sec{
		padding: 12px;
	}
	.sub_popup_content_head h6 {
		font-size: 20px;
	}
	.sub_popup_content_head p {
		font-size: 12px;
		margin-bottom: 14px;
	}
	
}
@media (max-width: 500px) {
	.shop_collection_card {
		height: 315px;
	}
	.category_img img{
		min-height: 200px ;
	}
	.Categories_main {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px ;
	}
}


@media (max-width: 425px) {
    .subscribe_content h2 {
        font-size: 20px;
    }
	.sticky-whatsapp-icon a img {
		width: 50px;
		height: 50px;
	}
	.sticky-whatsapp-icon {
		right: 39px;
	}
	.shop_collection_card {
		height: 273px;
	}
	.product_card_content h6{
		font-size: 12px ;
	}
}

@media (max-width: 375px) {
	.shop_collection_card {
		height: 233px;
	}
}