@import url("https://use.typekit.net/aoc8zca.css");

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

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

:root{
    --dark-blue--: #031130;
    --blue--: #0033A0;
    --red--: #ED1F29;
    --green--: #31BC7C;
    --yellow--: #FF9F1C;
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

p{
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-style: normal;
}

body{
    font-family: "new-science", sans-serif;
    font-style: normal;
    font-size: 16px;
}

.prealoader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999999;
    background-color: #fff;
    display: grid;
    place-items: center;
}

.prealoader img{
    width: 200px;
    animation: zoomInOut 3s infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1); /* Original size */
    }
    50% {
        transform: scale(1.2); /* Zoomed in */
    }
    100% {
        transform: scale(1); /* Back to original size */
    }
}

h1,h2,h3,h4,h5,h6{
    color: #000;
    margin: 0;
}

section{
    overflow: hidden;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


.top_header{
    padding: 10px 5%;
    background: #F9F9F9;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.top_header .left_side ul{
    display: flex;
    gap: 4px 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.top_header .left_side ul li a{
    transition: 0.3s;
}

.top_header .left_side ul li a:hover{
    color: var(--yellow--);
}

.top_header .left_side ul li a i{
    padding-right: 5px;
}

.top_header .right_side ul{
    display: flex;
    gap: 20px;
    justify-content: center;
}

.top_header .right_side ul li a{
    transition: 0.3s;
}

.top_header .right_side ul li a:hover{
    color: var(--yellow--);
}

.ser_btn_sec{
    display: none;
}

header{
    /* display: flex;
    justify-content: space-between; */
    padding: 0 0;
    /* align-items: center; */
    width: 100%;
    position: sticky;
    left: 0;
    top: 0;
    z-index: 99;
    background: #fff;
    transition: 0.5s ease-in;
}

header.active{
    transform: translateY(-93px);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

header .t_header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    border-bottom: 1px solid #ECECEC;
    position: relative;
}

header .t_header form{
    flex: 1;
}

header .t_header .input-group{
    width: 280px;
    /* border: 1px solid #E1E1E1; */
    /* border-radius: 5px 5px 0 0; */
    /* border-bottom: 2px solid #000; */
}

header .t_header .input-group .input-group-text{
    background: none;
    border: none;
}

header .t_header .input-group .form-control{
    /* border: none; */
    box-shadow: none;
    /* padding-left: 0; */
    border-radius: 50px !important;
}

header .header_search_btn .input-group{
    width: 100%;
    max-width: 280px;
    /* border: 1px solid #E1E1E1; */
    /* border-radius: 5px 5px 0 0; */
    /* border-bottom: 2px solid #000; */
}

header .header_search_btn .input-group .input-group-text{
    background: none;
    border: none;
}

header .header_search_btn .input-group .form-control{
    /* border: none; */
    box-shadow: none;
    /* padding-left: 0; */
    border-radius: 50px !important;
}

header .right_side{
    display: flex;
    gap: 20%;
    align-items: center;
}

header nav{
    padding: 10px 5%;
}
header nav ul{
    display: flex;
    gap: 30px;
    justify-content: center;
}

header > nav > ul > li > a{
    white-space: nowrap;
    color: #000;
    transition: 0.3s;
}

header nav ul li a:hover{
    color: var(--yellow--);
}

header nav ul li.drop_menu_btn > a{
    padding: 10px 0;
}

header nav ul li.drop_menu_btn > a::after{
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    padding-left: 6px;
}

header nav .header_search_btn{
    font-size: 22px;
    color: #000;
    display: none;
    cursor: pointer;
}

header nav .menu_btn{
    font-size: 22px;
    color: #000;
    display: none;
    cursor: pointer;
}

header .left_side{
    display: flex;
    /* gap: 34px; */
    align-items: center;
    align-items: end;
    /* width: 280px; */
    justify-content: end;
    gap: 30px;
    flex: 1;
}


header .left_side .location a{
    color: #000;
    position: relative;
}

header .left_side .location a::after{
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    padding-left: 6px;
}

header .left_side .location a i{
    padding-right: 5px;
    font-size: 20px;
    color: var(--green--);
}

header .left_side .user{
    position: relative;
}

header .left_side .user span{
    position: absolute;
    right: -12px;
    top: -5px;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    background: var(--red--);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
}

header .left_side .user a{
    color: #000;
    font-size: 20px;
}

header .left_side .search a{
    color: #000;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

header nav .mega_menu{
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #fff;
    padding: 20px;
    display: flex;
    /* height: calc(100vh - 120px); */
    height: auto;
    max-height: calc(100vh - 120px);
    transform: rotateX(-90deg);
    transform-origin: top;
    transition: 0.5s;
}

header nav ul li.drop_menu_btn:hover .mega_menu{
    transform: rotateX(0);
}

header nav .mega_menu .side_bar_menu h3{
    font-size: 20px;
}

header nav .mega_menu .menu{
    width: 100%;
}

header nav .mega_menu .menu h3{
    font-size: 18px;
}

header nav .mega_menu .menu h3 > i{
    display: none;
}

header nav .mega_menu ul{
    flex-direction: column;
    gap: 10px 0 !important;
}

header nav .mega_menu ul li a{
    color: #9b9b9b !important;
    font-weight: 300;
    padding-bottom: 1px;
    border-bottom: 1px solid transparent;
    transition: 0.3s
}

header nav .mega_menu ul li a:hover, header nav .mega_menu ul li a.active{
    color: var(--yellow--) !important;
    border-bottom: 1px solid var(--yellow--);
}

header nav .mega_menu .side_bar_menu ul{
    overflow-y: scroll;
    height: 95%;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--yellow--) #ffffff;
    justify-content: flex-start;
}

/* width */
header nav .mega_menu .side_bar_menu ul::-webkit-scrollbar {
    width: 2px;
}
  
/* Track */
header nav .mega_menu .side_bar_menu ul::-webkit-scrollbar-track {
    background: transparent; 
}
   
/* Handle */
header nav .mega_menu .side_bar_menu ul::-webkit-scrollbar-thumb {
    background: var(--yellow--); 
}
  
/* Handle on hover */
/* header .mega_menu .side_bar_menu ul::-webkit-scrollbar-thumb:hover {
    background: #555; 
} */

header nav .mega_menu .menu{
    scrollbar-width: thin;
    scrollbar-color: var(--yellow--) #ffffff;
    overflow-y: scroll;
    height: 95%;
}

/* width */
header nav .mega_menu .menu::-webkit-scrollbar {
    width: 5px;
}
  
/* Track */
header nav .mega_menu .menu::-webkit-scrollbar-track {
    background: transparent; 
}
   
/* Handle */
header nav .mega_menu .menu::-webkit-scrollbar-thumb {
    background: var(--yellow--); 
}

header nav .mega_menu .side_bar_menu ul li a{
    /* display: block; */
    padding: 5px 0;
}

header nav .mega_menu .menu{
    padding: 0 20px;
}
header nav .mega_menu .menu .grid_item{
    position: relative;
}

header nav .mega_menu .menu .grid_item > ul{
    position: absolute;
    width: 200px;
    right: -120px;
    top: 0;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 2;
    height: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
    transition: .6s cubic-bezier(.175, .885, .32, 1.275);
}

header nav .mega_menu .menu .grid_item:hover > ul {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}

header nav ul li.dropdown_btn, header nav ul li.dropdown_btn_new{
    position: relative;
}

header nav ul li.dropdown_btn_new > i{
    display: none;
}

header nav ul li.dropdown_btn > a::after, header nav ul li.dropdown_btn_new > a::after {
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-left: 5px;
    font-size: 16px;
    display: inline-block;
    transition: .3s;
}


header nav ul li.dropdown_btn:hover > a::after, header nav ul li.dropdown_btn_new:hover > a::after {
    transform: rotateX(180deg);  
}

header nav ul li.dropdown_btn > .drop_menu, header nav ul li.dropdown_btn_new > .drop_menu {
    position: absolute;
    background: #fff;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
    transition: .6s cubic-bezier(.175, .885, .32, 1.275);
    z-index: 3;
    box-shadow: rgba(100,100,111,.2) 0 7px 29px 0;
}

header nav ul li.dropdown_btn:hover > .drop_menu, header nav ul li.dropdown_btn_new:hover > .drop_menu {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}

header nav ul li.dropdown_btn > .drop_menu ul, header nav ul li.dropdown_btn_new > .drop_menu ul {
    flex-direction: column;
    gap: 0;
}

header nav ul li.dropdown_btn > .drop_menu ul li:not(:last-child), header nav ul li.dropdown_btn_new > .drop_menu ul li:not(:last-child) {
    border-bottom: 1px solid var(--yellow--);
}

header nav ul li.dropdown_btn > .drop_menu ul li a, header nav ul li.dropdown_btn_new > .drop_menu ul li a {
    position: relative;
    padding: 20px;
    display: block;
    white-space: nowrap;
    color: #000;
    transition: .3s;
}

header nav ul li.dropdown_btn_new > .drop_menu ul li > i{
    display: none;
}

header nav ul li.dropdown_btn > .drop_menu ul li a:hover, header nav ul li.dropdown_btn_new > .drop_menu ul li a:hover {
    background: var(--yellow--);
    color: #fff;
}

header nav ul li.dropdown_btn > .drop_menu ul li a::before, header nav ul li.dropdown_btn_new > .drop_menu ul li a::before{
    display: none;
}

header nav ul li.dropdown_btn_new .drop_menu li.dropdown_btn_new_1{
    position: relative;
}

header nav ul li.dropdown_btn_new .drop_menu li.dropdown_btn_new_1 ul{
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
    transition: .6s cubic-bezier(.175, .885, .32, 1.275);
}

header nav ul li.dropdown_btn_new .drop_menu li.dropdown_btn_new_1:hover ul{
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}

.mobile_menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    border-right: 2px solid #000;
    overflow: auto;
    transform: translateX(-100%);
    transition: 0.5s;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.mobile_menu.active{
    transform: translateX(0);
}

.mobile_menu > ul{
    flex: 1;
}

.mobile_menu > ul > li > a{
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid #E2E2E2;
}

.mobile_menu > ul > li.drop_menu_btn > a{
    display: flex;
    justify-content: space-between;
}

.mobile_menu > ul > li.drop_menu_btn > a::after{
    /* content: '\2b'; */
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    padding-left: 6px;
}

.mobile_menu > ul > li.drop_menu_btn > a.active::after{
    content: '\f106';
}

.mobile_menu > ul > li.drop_menu_btn > .mega_menu .side_bar_menu > h3{
    display: none;
}

.mobile_menu > ul > li.drop_menu_btn > .mega_menu .side_bar_menu ul li a{
    padding: 10px 20px;
    display: flex;
    border-bottom: 1px solid #E2E2E2;
    justify-content: space-between;
}

.mobile_menu > ul > li.drop_menu_btn > .mega_menu .side_bar_menu ul li:last-child a{
    /* border-bottom: none; */
}

.mobile_menu > ul > li.drop_menu_btn > .mega_menu > .side_bar_menu > ul > li > a::after{
    content: '\2b';
    /* content: '\f107'; */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    padding-left: 6px;
}

.mobile_menu > ul > li.drop_menu_btn > .mega_menu > .side_bar_menu > ul > li > a.active::after{
    content: '\f068';
}

.mobile_menu > ul > li.drop_menu_btn > .mega_menu .side_bar_menu ul li a:hover{
    color: var(--yellow--);
}

.mobile_menu > ul > li.drop_menu_btn > .mega_menu .side_bar_menu ul li{
    padding: 0 10px;
}

.mobile_menu > ul > li > a:hover{
    color: var(--yellow--);
}

.mobile_menu > ul > li.drop_menu_btn > .mega_menu > .side_bar_menu > ul > li a{
    position: relative;
    z-index: 1;
}

.mobile_menu > ul > li.drop_menu_btn > .mega_menu > .side_bar_menu > ul > li h3 a{
    display: block;
    width: 100%;
}

.mobile_menu > ul > li.drop_menu_btn > .mega_menu > .side_bar_menu > ul > li h3{
    font-size: 16px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.mobile_menu > ul > li.drop_menu_btn > .mega_menu > .side_bar_menu > ul > li h3 i{
    position: absolute;
    right: 0px;
    top: 0;
    bottom: 0;
    aspect-ratio: 1/1;
    border-left: 1px solid #E2E2E2;
    display: grid;
    place-items: center;
    z-index: 3;
    cursor: pointer;
}

.mobile_menu > ul > li.drop_menu_btn > .mega_menu .side_bar_menu ul li ul{
    display: none;
}

.mobile_menu > ul > li.drop_menu_btn > .mega_menu .side_bar_menu ul li ul li a:last-child{
    border-bottom: 1px solid #E2E2E2;
}

.mobile_menu > ul > li.drop_menu_btn > .mega_menu .side_bar_menu ul li > .row > div{
    margin-bottom: 0 !important;
}

.mobile_menu .menu_close_btn{
   text-align: end;
}

.mobile_menu .menu_close_btn i{
    font-size: 20px;
    cursor: pointer;
    margin-left: auto;
}

.mobile_menu .mega_menu .menu{
    display: none;
}

.mobile_menu > ul > li.drop_menu_btn > .mega_menu > .side_bar_menu > ul > li > .row{
    display: none;
}
.mobile_menu .mega_menu{
    display: none;
}

.mobile_menu ul > li.dropdown_btn .drop_menu, .mobile_menu ul > li.dropdown_btn_new .drop_menu{
    display: none;
}

.mobile_menu ul > li.dropdown_btn .drop_menu ul, .mobile_menu ul > li.dropdown_btn_new .drop_menu ul{
    margin: 0 15px;
    /* border-top: 1px solid var(); */
}

.mobile_menu ul li.dropdown_btn > a, .mobile_menu ul li.dropdown_btn_new > a{
    display: flex;
    justify-content: space-between;
}

.mobile_menu ul li.dropdown_btn_new {
    position: relative;
}

.mobile_menu ul li.dropdown_btn_new > i{
    position: absolute;
    right: 0px;
    top: 0;
    /* bottom: 0; */
    aspect-ratio: 3 / 2;
    border-left: 1px solid #E2E2E2;
    display: grid;
    place-items: center;
    z-index: 3;
    cursor: pointer;
    height: 37px;
}

.mobile_menu ul li.dropdown_btn_new.active > i{
    transform: rotateX(180deg);
    color: var(--yellow--);
}

.mobile_menu ul li.dropdown_btn_new.active > a{
    color: var(--yellow--);
}

.mobile_menu > ul > li.dropdown_btn_new > ul li {
    padding: 0 10px;
}

.mobile_menu > ul > li.dropdown_btn_new > .drop_menu ul li a{
    padding: 10px 20px;
    display: flex;
    border-bottom: 1px solid #E2E2E2;
    justify-content: space-between;
}

.mobile_menu > ul > li.dropdown_btn_new > .drop_menu > ul > li{
    position: relative;
}

.mobile_menu > ul > li.dropdown_btn_new > .drop_menu > ul > li.dropdown_btn_new_1 ul{
    display: none;
}

.mobile_menu > ul > li.dropdown_btn_new > .drop_menu > ul > li > i{
    position: absolute;
    right: 0px;
    top: 0;
    /* bottom: 0; */
    aspect-ratio: 3 / 2;
    border-left: 1px solid #E2E2E2;
    display: grid;
    place-items: center;
    z-index: 3;
    cursor: pointer;
    height: 37px;
}

.mobile_menu ul li.dropdown_btn > a::after{
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-left: 5px;
    font-size: 16px;
    display: inline-block;
    transition: .3s;
    justify-content: space-between;
}

.mobile_menu ul li.dropdown_btn.active > a::after, .mobile_menu ul li.dropdown_btn_new.active > a::after {
    transform: rotateX(180deg);  
}

.mobile_menu .logo{
    display: flex;
    justify-content: space-between;
    padding: 10px 20px; 
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 99;
    background: #fff;
}

.mobile_menu .copy_right{
    border-top: 1px solid #000;
    position: sticky;
    bottom: 0;
    z-index: 99;
    background: #fff;
    padding: 10px;
}

.mobile_menu .copy_right p{
    font-size: 12px;
}

.banner_sec{
    position: relative;
}

/* .banner_sec::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #031130;
    opacity: 0.7;
    z-index: 1;
} */

.banner_slider{
    position: relative;
}

.banner_slider .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--yellow--);
    color: #fff;
    border-radius: 50%;
    border: none;
    z-index: 2;
}

.banner_slider .slick-arrow.slick-prev{
    left: 2%;
}

.banner_slider .slick-arrow.slick-next{
    right: 2%;
}

.banner_slider .slick-dots{
    position: absolute;
    display: flex;
    gap: 5px;
    bottom: 0;
    left: 50%;
    transform: translate(-50% , -10px);
}

.banner_slider .slick-dots li button{
    width: 10px;
    height: 10px;
    font-size: 0;
    background: var(--yellow--);
    border: none;
    border-radius: 50%;
}

.banner_slider .slick-dots li.slick-active button{
    background: #fff;
}

.heading span{
    color: #000;
}

.heading h2{
    font-size: 28px;
    font-weight: 600;
}

.heading h2.heading_border{
    position: relative;
    padding-bottom: 10px;
}

.heading h2.heading_border::before{
    content: '';
    position: absolute;
    width: 30%;
    height: 2px;
    background: var(--yellow--);
    left: 0;
    bottom: 0;
}

.about_content p{
    color: #586580;
}

.know_more_btn{
    padding: 10px 20px;
    background: var(--yellow--);
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    transition: 0.3s;
}

.know_more_btn:hover{
    transform: scale(1.1);
    color: #fff;
}

.about_sec_bg{
    background: #F9F9F9;
}

.all_categories_btn{
    font-size: 18px;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    transition: 0.3s;
}

.all_categories_btn:hover{
    color: var(--yellow--);
    border-bottom: 1px solid var(--yellow--);
}

.all_categories_btn i{
    font-size: 14px;
}

.categories{
    position: relative;
}

.categories p{
    position: absolute;
    left: 20px;
    bottom: 0px;
    font-size: 20px;
    color: #000;
}

.categories img{
    border-radius: 10px;
}

.categories_slider{
    position: relative;
}

.categories_slider .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--yellow--);
    color: #fff;
    border-radius: 50%;
    border: none;
    z-index: 2;
}

.categories_slider .slick-arrow.slick-prev{
    left: 0;
}

.categories_slider .slick-arrow.slick-next{
    right: 0;
}

.breadcrumb_border{
    border-top: 1px solid #F1F1F1;
}

.breadcrumb ul{
    display: ruby;
/*     display: flex; */
/* 	flex-wrap: wrap; */
}

.breadcrumb ul li {
    float: left;
}

.breadcrumb ul li::after{
    content: '/';
    padding: 0 5px;
}

.breadcrumb ul li a{
    color: #000;
}

.main_heading h1{
    font-size: 28px;
}

.product_filter ul{
    display: flex;
    justify-content: center;
    gap: 20px;
    justify-content: space-between;
}

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

.product_filter ul li a{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    padding: 10px 15px;
    border: 1px solid #141414 !important;
    border-radius: 5px;
}

.product_filter ul li a:hover{
    color: #000;
}

.product_filter ul li a span{
    width: 16px;
    height: 2px;
    background: #000;
    display: inline-block;
    position: relative;
    margin: 0px 5px;
}

.product_filter ul li a span::after{
    content: '';
    width: 22px;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 0;
    background: #000;
    transform: translate(-50%, -5px);
}

.product_filter ul li a span::before{
    content: '';
    width: 8px;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 0;
    background: #000;
    transform: translate(-50%, 5px);
}

.all_categories_card_1{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 1px solid #7a7a7a38;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.all_categories_card{
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.all_categories_card .all_categories_card_img{
    overflow: hidden;
}

.all_categories_card .all_categories_card_img img{
    overflow: hidden;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: 0.5s;
}

.all_categories_card .all_categories_card_img img.categories_card_img_2{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.all_categories_card:hover .all_categories_card_img img.categories_card_img_2{
    opacity: 1;
}

.all_categories_card_1:hover .all_categories_card .all_categories_card_img img{
    transform: scale(1.1);
}

.all_categories_card > span{
    position: absolute;
    top: 4%;
    left: 4%;
    display: inline-block;
    padding: 7px 20px;
    background: var(--green--);
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
}

.all_categories_card > span.new{
    background: var(--red--);
}

.all_categories_card p{
    /* position: absolute;
    bottom: 4%;
    left: 4%; */
    color: #000;
    border-radius: 5px;
    font-size: 18px;
    padding: 10px;
}

.all_categories_card p.pro_price{
    font-size: 20px;
    font-weight: 600;
    padding-left: 15px;
    font-family: "new-science", sans-serif;
}

.all_categories_card p.pro_price span{
    color: #ddd;
    font-size: 14px;
    text-decoration: line-through;
}

.all_categories_card p.pro_price span.per_day{
    color: #000;
    font-size: 14px;
    text-decoration: none;
}

.all_categories_card_1{
    position: relative;
}

.all_categories_card ul, .all_categories_card_1 ul{
    position: absolute;
    right: 4%;
    top: 4%;
    z-index: 2;
}

.all_categories_card ul li, .all_categories_card_1 ul li{
    margin-bottom: 5px;
}

.all_categories_card ul li a, .all_categories_card ul li span, .all_categories_card_1 ul li span{
    background: #fff;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #A7A7A7;
    border-radius: 50%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    font-size: 12px;
    text-align: center;
    line-height: 1.15;
}

.product_detail_img img{
    aspect-ratio: 5/3;
    object-fit: cover;
}

.product_detail_img_slider_sec{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.product_detail_img_slider_sec .product_detail_thumb_slider_arrows{
    position: absolute;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 5%;
}

.product_detail_img_slider_sec .product_detail_thumb_slider_arrows .slick-arrow{
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.product_detail_thumb_slider .product_detail_img img{
    border-radius: 5px;
}

.content p{
    margin-bottom: 10px;
}

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

.product_info .pro_heading h2{
    font-size: 24px;
}

.product_info .pro_heading span{
    color: #586580;
}

.product_info .pro_amount p{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product_info .pro_amount p span{
    color: #ddd;
    font-size: 16px;
    text-decoration: line-through;
}

.read_more_btn{
    font-size: 16px;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    transition: 0.3s;
    display: inline-block;
}

.read_more_btn:hover{
    color: var(--yellow--);
    border-bottom: 1px solid var(--yellow--);
}

.read_more_btn i{
    font-size: 14px;
}

.color_details h3{
    font-size: 22px;
    font-weight: 600;
}

.check_box input{
    position: absolute;
    visibility: hidden;
}

.check_box{
    display: flex;
    gap: 35px;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid #E2E2E2;
    cursor: pointer;
    padding-left: 10px;
}

.checkmark{
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border: 1px solid #BCBCBC;
    border-radius: 50%;
    position: relative;
}

.checkmark::before{
    content: '';
    width: 12px;
    height: 12px;
    background: var(--yellow--);
    border-radius: 50%;
    transform: scale(0);
    transition: 0.3s ease-in-out;
}

.check_box input:checked ~ .checkmark::before{
    transform: scale(1);
}

.check_box input:checked ~ .checkmark{
    border: 1px solid var(--yellow--);
}

.color_details ul{
    display: flex;
    gap: 10px 20px;
    flex-wrap: wrap;
}

.product_info_detail{
    display: flex;
    gap: 30px;
}

.wish_list_compare ul{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.wish_list_compare ul li a{
    color: #8F8F8F;
}

.wish_list_compare ul li a.active{
    color: var(--yellow--);
}

.add_to_cart_btn{
    padding: 10px 20px;
    background: var(--yellow--);
    color: #000;
    font-weight: 600;
    max-width: 300px;
    width: 100%;
    border: 1px solid var(--yellow--);
    border-radius: 5px;
}

.product_info .share{
    display: flex;
    gap: 30px;
    align-items: center;
}

.product_info .share span{
    font-weight: 600;
}

.product_info .share .links{
    display: flex;
    gap: 10px;
    align-items: center;
}

.product_info .share .links a:hover{
    color: var(--yellow--);
}

.related_product_slider{
    position: relative;
}

.related_product_slider .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--yellow--);
    color: #fff;
    border-radius: 50%;
    border: none;
    z-index: 2;
}

.related_product_slider .slick-arrow.slick-prev{
    left: 0;
}

.related_product_slider .slick-arrow.slick-next{
    right: 0;
}

.related_product_bg{
    border-top: 1px solid #DFDFDF;
}

.breadcrumb_bg{
    background: var(--dark-blue--);
}

.breadcrumb_bg .breadcrumb ul li a{
    color: #fff;
}

.vid_sec_bg{
    background: var(--dark-blue--);
}

.vid_sec{
    position: relative;
}

.vid_sec img{
    border-radius: 5px;
}

.vid_sec .vid_play_btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.vid_play_btn{
    display: inline-block;
    /* position: relative; */
}

.vid_play_btn i{
    width: 60px;
    height: 60px;
    background: var(--blue--);
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 28px;
    padding-left: 5px;
}

.vid_play_btn span{
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--blue--);
    border-radius: 50%;
    z-index: -1;
    left: 0;
    top: 0;
    animation: vid_play_btn 3s infinite linear;
}

.vid_play_btn span:nth-child(2){
    animation-delay: 1s;
}

.vid_play_btn span:nth-child(3){
    animation-delay: 2s;
}

@keyframes vid_play_btn{
    0%{
        transform: scale(1);
        opacity: 1;
    }
    /* 50%{
        transform: scale(1);
    } */
    100%{
        transform: scale(2.2);
        opacity: 0;
    }
}

.about_inner_sec{
    display: flex;
    align-items: center;
}

.about_inner_sec .vid_sec{
    width: 50%;
}

.about_inner_sec .content{
    width: 60%;
    padding: 20px 25px;
    background: #fff;
    margin-left: -10%;
    z-index: 2;
    border-radius: 20px;
}

.about_inner_sec .content .about_head h2{
    font-size: 32px;
    color: var(--yellow--);
    font-weight: 700;
}

.about_inner_sec .content .about_head p{
    font-size: 22px;
}

.vision_mission_card{
    display: flex;
    align-items: center;
    gap: 20px;
    height:100%;
}
.vision_mission_card .content{
    height: 100%;
}

.vision_mission_card img{
    width: 80px;
}

.vision_mission_card .content h2{
    font: 22px;
}

.counter{
    text-align: center;
}

.counter .count{
    font-size: 24px;
    font-weight: 600;
}

.counter p{
    font-weight: 500;
}

.counter_row .counter_border:nth-child(3n+1) .counter .count{
    color: var(--blue--);
}

.counter_row .counter_border:nth-child(3n+2) .counter .count{
    color: var(--yellow--);
}

.counter_row .counter_border:nth-child(3n+3) .counter .count{
    color: var(--red--);
}

.counter_row .counter_border:not(:last-child){
    border-right: 1px solid #D6D6D6;
}

.blue_text{
    color: var(--blue--);
}

.yellow_text{
    color: var(--yellow--);
}

.red_text{
    color: var(--red--);
}

.member_card img{
    border-radius: 0 10px 10px 10px;
}

.member_card .content .name span{
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid #707070;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
}

.member_card .content .designation{
    font-size: 18px;
}

.member_card .content .mail a{
    color: var(--yellow--);
}

.team_sec_bg{
    background: #F8F8F8;
}

.blog_card{
    cursor: pointer;
}

.blog_card img{
    border-radius: 10px;
}

.blog_card h3{
    font-size: 22px;
}

.blog_info{
    display: flex;
    gap: 15px;
}

.blog_info span{
    color: #000;
}

.blog_info span.date{
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog_info span.date i{
    font-size: 8px;
}

.blog_detail_img img{
    width: 100%;
    aspect-ratio: 7/3;
    object-fit: cover;
    border-radius: 20px;
}

.blog_detail_content h1{
    font-size: 24px;
}

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

.read_content .content{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: 0.3s;
}

.read_content.active .content{
    -webkit-line-clamp: inherit;
}

.categories_bg{
    background: #F9F9F9;
}

.categories_type{
    cursor: pointer;
}

.categories_type .categories_img{
    /* padding: 20px; */
    background: #fff;
    text-align: center;
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid #E5E5E5;
    transition: 0.3s;
    overflow: hidden;
}

.categories_type:hover .categories_img{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.categories_type .categories_img::before{
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 40px solid #fff;
    top: 100%;
    position: absolute;
    transform: translateY(-30%);
    opacity: 0;
    transition: 0.3s;
    display: none;
}

.categories_type:hover .categories_img::before{
    opacity: 1;
}

.categories_type .categories_img::after{
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 40px solid #E5E5E5;
    top: 100%;
    position: absolute;
    transform: translateY(-25%);
    z-index: -1;
    opacity: 0;
    transition: 0.3s;
}

.categories_type:hover .categories_img::after{
    opacity: 1;
}

.categories_type .categories_img img{
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
}

.categories_type h3{
    font-size: 20px;
    text-align: center;
    margin-top: 25px;
}

.categories_type_slider{
    position: relative;
}

.categories_type_slider .slick-arrow.slick-disabled{
    display: none !important;
}

.categories_type_slider .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--yellow--);
    color: #fff;
    border-radius: 50%;
    border: none;
    z-index: 2;
}

.categories_type_slider .slick-arrow.slick-prev{
    left: 0;
}

.categories_type_slider .slick-arrow.slick-next{
    right: 0;
}

.home_card svg, .home_card img{
    width: 100px;
    margin: 0 auto;
    filter: invert(0) brightness(2);
}

.home_card svg path{
    transition: 0.5s;
}

.home_card:hover svg path{
    fill: #FF9F1C !important;
}

.home_card{
    padding: 20px;
    transition: 0.5s;
    border-radius: 10px;
}

.home_card:hover{
    transform: scale(1.1);
    box-shadow: rgba(255, 255, 255, 0.2) 0px 8px 24px;
}

.home_card h3{
    font-size: 28px;
}

.text_red{
    color: var(--red--) !important;
}

.all_categories_card_new{
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.all_categories_card_new .categories_card_new_img{
    position: relative;
    border: 1px solid #D2D2D2;
    border-radius: 10px;
    overflow: hidden;
}

.all_categories_card_new .categories_card_new_img span{
    position: absolute;
    top: 4%;
    left: 4%;
    display: inline-block;
    padding: 7px 20px;
    background: var(--green--);
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
}

.all_categories_card_new .categories_card_new_img span.new{
    background: var(--red--);
}

.all_categories_card_new p{
    bottom: 4%;
    left: 4%;
    color: #000;
    border-radius: 5px;
    font-size: 18px;
    text-align: center;
}

.all_categories_card_new .categories_card_new_img ul{
    position: absolute;
    /* right: 4%; */
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
}

.all_categories_card_new .categories_card_new_img ul li{
    /* margin-bottom: 5px; */
}

.all_categories_card_new .categories_card_new_img ul li a{
    background: var(--yellow--);
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    transform: scale(0);
    transition: 0.5s;
}

.all_categories_card_new:hover .categories_card_new_img ul li a{
    transform: scale(1);
}

.all_categories_card_new ul.stars{
    display: flex;
    justify-content: center;
    gap: 2px;
    color: var(--yellow--);
}

.categories_slider .slick-arrow.slick-disabled{
    display: none !important;
}

.inventory_recently_bg{
    background: #212E25;
    border-bottom: 1px solid #7E7E7E;
}

.movie_card_slider .slick-list{
    overflow: visible !important;
}

.movie_card_slider_nav{
    display: flex;
    align-items: center;
    gap: 10px;
}

.movie_card_slider_arrows{
    display: flex;
    gap: 5px;
}

.movie_card_slider_arrows .slick-arrow{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: none;
    border: 1px solid var(--yellow--);
    font-size: 22px;
    color: var(--yellow--);
}

.movie_card_slider_dots{
    width: 100%;
}

.movie_card_slider_dots .slick-dots{
    display: flex;
    width: 100%;
    border: 1px solid #ECECEC;
    padding: 2px;
    border-radius: 50px;
}

.movie_card_slider_dots .slick-dots li{
    width: 100%;
    display: flex;
    align-items: center;
}

.movie_card_slider_dots .slick-dots li button{
    width: 100%;
    font-size: 0;
    height: 6px;
    border: none;
    border-radius: 50px;
    background: none;
    transition: 0.3s;
}

.movie_card_slider_dots .slick-dots li.slick-active button{
    background: var(--yellow--);
}

footer{
    background: #212E25;
}

footer .footer_head h3{
    color: #fff;
    font-size: 22px;
}

footer .footer_menu ul li{
    margin-bottom: 5px;
}

footer .footer_menu ul li a{
    color: #fff;
    transition: 0.3s;
}

footer .footer_menu ul li a:hover{
    color: var(--yellow--);
}

.footer_social_media ul{
    display: flex;
    gap: 20px;
}

.footer_social_media ul li a{
    color: #fff;
    transition: 0.3s;
    font-size: 22px;
}

.footer_social_media ul li a:hover{
    color: var(--yellow--);
}

.location_modal .modal-content{
    border-radius: 20px;
    padding: 20px 20px;
}

.location_modal .modal-header{
    border: none;
    text-align: center;
    position: relative;
}

.location_modal .modal-header img{
    width: 140px;
    margin: 0 auto;
}

.location_modal .modal-header .btn-close{
    position: absolute;
    opacity: 1;
    right: 20px;
    top: 20px;
}

.location_modal .location_heading h3{
    font-size: 24px;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.location_modal .location_heading h3::before{
    content: '';
    position: absolute;
    width: 120%;
    height: 4px;
    background: var(--yellow--);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.location_modal .modal-body ul.locations{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
}

.location_modal .modal-body ul.locations li{
    width: 50%;
    padding: 0 5px;
}

.location_modal .modal-body ul.locations li a{
    padding: 15px 0;
    display: block;
    color: #000;
    border: 1px solid #DEDEDE;
    border-radius: 5px;
    text-align: center;
    transition: 0.3s;
}

.location_modal .modal-body ul.locations li a:hover, .location_modal .modal-body ul.locations li a.active{
    color: var(--yellow--);
    border: 1px solid var(--yellow--);
}

.book_now_form .input-group{
    background: none;
    border: 1px solid #dedede;
    border-radius: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.book_now_form .input-group i{
    color: var(--green--);
    font-size: 22px;
}

.book_now_form .input-group-text{
    background: none;
    border: none;
}

.book_now_form .form-control{
    border: none;
    box-shadow: none !important;
    padding-left: 0;
}

.book_now_form .form-label{
    font-weight: 500;
}

.book_now_form button{
    width: 100%;
    padding: 10px 20px;
    background: var(--green--);
    color: #fff;
    font-size: 20px;
    border-radius: 5px;
    border: none;
    /* border-radius: 0 20px 20px 0; */
}

.check_box_green{
    border-radius: 5px;
}

.check_box_green .checkmark::before{
    background: var(--green--);
}

.check_box.check_box_green input:checked ~ .checkmark {
    border: 1px solid var(--green--);
}

.otp-input-container {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: auto;
}

.otp-input {
    width: 100%;
    /* height: 40px; */
    text-align: center;
    font-size: 22px;
    margin: 5px;
    border: 1px solid #dedede;
    border-radius: 4px;
    aspect-ratio: 1 / 1;
}

.otp-input:focus {
    border-color: var(--green--);
    outline: none;
    box-shadow: 0 0 5px var(--green--);
}

.resend_otp a{
    color: var(--green--);
    text-decoration: underline !important;
}

.change_num{
    color: var(--green--) !important;
    text-decoration: underline !important;
    font-size: 12px;
}

.profile_name{
    display: flex;
    align-items: center;
    gap: 30px;
}

.profile_name .profile_img{
    padding: 10px;
    background: #00A6516B;
    border-radius: 50%;
}

.profile_name .profile_img img{
    width: 40px;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.profile_name .name span{
    font-size: 18px;
}

.profile_name .name p{
    font-size: 24px;
    font-weight: 600;
}

.profile_border{
    padding: 20px;
    border: 1px solid #dedede;
    border-radius: 10px;
}

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

.account_setting .account_setting_head i{
    font-size: 24px;
    color: var(--green--);
}

.account_setting .account_setting_head h4{
    font-size: 20px;
}

.account_setting .account_setting_nav li{
    padding: 10px 5px 10px 40px;
    border-radius: 5px;
    transition: .3s;
    cursor: pointer;
}

.account_setting .account_setting_nav li.active{
    background: #31BC7C21;
    color: var(--green--);
}

.book_now_form .disabled_input.active{
    background: #e9ecef;
}

.book_now_form .disabled_input.active i{
    color: #595959;
}

.book_now_form .disabled_input.active .form-control{
    color: #595959;
}

/* .book_now_form .disabled_input.active input{
    
} */

.disabled_input.active{
    color: #595959;
}

.disabled_input.active input:checked ~ .checkmark{
    border: 1px solid #595959;
}

.disabled_input.active .checkmark::before {
    background: #595959;
}

.edit_btn{
    background: var(--yellow--) !important;
}
.cancel_btn{
    background: var(--red--) !important;
}

.add_address_btn{
    padding: 10px 20px;
    background: var(--dark-blue--);
    color: #fff;
    border: none;
    border-radius: 5px;
}

.addresses_sec{
    border-top: 1px solid #dedede;
    padding-top: 10px;
}

.addresses_sec .addresses_type{
    display: flex;
    justify-content: space-between;
}

.addresses_sec .addresses_type span{
    padding: 3px 10px;
    background: #e9ecef;
    color: #595959;
    border-radius: 2px;
}

.addresses_sec .addresses_btns button{
    padding: 3px 10px;
    border: none;
    color: #fff;
    border-radius: 2px;
}

.addresses_sec .addresses_btns button.addresses_btns_edit{
    background: var(--yellow--);
}

.addresses_sec .addresses_btns button.addresses_btns_del{
    background: var(--red--);
}

.addresses_sec .name{
    display: flex;
    gap: 20px;
}

.addresses_sec .name p{
    color: #000;
}

.your_cart{
    display: flex;
    gap: 20px;
}

.your_cart .your_cart_img{
    width: 30%;
    flex: 0 0 auto;
}

.your_cart .your_cart_img img{
    border-radius: 5px;
    height: 100%;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.your_cart .your_cart_detail .pro_name a{
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: 0.3s;
}

.your_cart .your_cart_detail .pro_name a:hover{
    color: var(--yellow--);
}

.your_cart .your_cart_detail .pro_name span{
    color: #586580;
}

.your_cart .your_cart_detail .amount p{
    font-size: 24px;
    font-weight: 500;
    display: flex;
    gap: 10px;
    align-items: flex-end;
    line-height: 1;
}

.your_cart .your_cart_detail .amount p span.dis_amount{
    font-size: 18px;
    color: #586580;
    text-decoration: line-through;
}

.your_cart .your_cart_detail .amount p span.discount{
    color: var(--green--);
    font-size: 22px;
}

.input_plus{
    width: 179px !important;
    border: 1px solid #E2E2E2 !important;
}

.input_plus .input_number{
    border: none;
    width: 90px;
    outline: none;
    text-align: center;
    margin-left: 0 !important;
}

.input_plus .input-group-btn{
    /* border: 1px solid #707070 !important; */
    color: #000;
    /* border-radius: nob !important; */
    background: #dedede;
}

.input_plus .input-group-btn button{
    box-shadow: none !important;
    height: 40px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    font-size: 15px;
}

.input_plus .input-group-btn button:focus{
    box-shadow: none !important;
}

.your_cart{
    padding: 20px 20px;
}

.your_cart_border .your_cart:not(:first-child){
    border-top: 1px solid #E2E2E2;
}

.your_cart_detail{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.your_cart_detail .your_cart_btns{
    display: flex;
    gap: 25px;
    /* justify-content: end; */
}


.your_cart_detail .your_cart_btns a{
    color: #000;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.your_cart_detail .your_cart_btns a:hover{
    color: var(--yellow--);
}

.your_cart_border{
    border: 1px solid #E2E2E2;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.place_order{
    padding: 20px 20px;
    box-shadow: 0 -2px 10px 0 rgba(0, 0, 0, .1);
}

.place_order button{
    padding: 10px 25px;
    background: var(--yellow--);
    color: #000;
    font-weight: 600;
    border: 1px solid var(--yellow--);
    border-radius: 5px;
}

.save_later_heading{
    padding: 10px 20px;
}

.save_later_heading h3{
    font-size: 24px;
}

.side_filter{
    position: fixed;
    width: 300px;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transform: translateX(-100%);
    transition: 0.5s;
}

.side_filter.active{
    transform: translateX(0);
}

.side_filter .close_tab{
    position: absolute;
    top: 12px;
    right: 20px;
    cursor: pointer;
}

.side_filter .close_tab i{
    font-size: 22px;
    color: #717171;
    transition: 0.3s;
}

.side_filter .close_tab:hover i{
    color: #000;
}

.side_filter h2{
    font-size: 24px;
    padding: 10px 20px;
    border-bottom: 1px solid #E2E2E2;
    text-align: center;
}

.side_filter .filter_tabs{
    padding: 0 20px;
    border-bottom: 1px solid #E2E2E2;
}

.side_filter .filter_tabs h3{
    font-size: 18px;
    padding: 10px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    color: #717171;
}

.side_filter .filter_tabs ul li{
    margin-bottom: 5px;
}

.side_filter .filter_tabs .hide_sec{
    display: none;
}

.side_filter .filter_tabs_btns{
    display: flex;
    gap: 1px;
    background: #717171;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.side_filter .filter_tabs_btns button{
    width: 100%;
    padding: 10px;
    background: #fff;
    border: none;
}

.side_filter .filter_element{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0 5px;
    border-bottom: 1px solid #E2E2E2;
    padding-bottom: 10px;
}

.side_filter .filter_element button{
    padding: 5px 10px;
    font-size: 14px;
    background: #c8c3c3;
    color: #393939;
    border: none;
    border-radius: 5px;
}

.side_filter .filter_element button:hover{
    text-decoration: line-through;
}

.side_filter .filter_element button i{
    padding-right: 5px;
}

.side_filter .filter_div{
    height: calc(100vh - 145px);
    overflow: auto;
}

.sub_btn_new {
    background: var(--green--);
    /* width: 100%; */
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff !important;
    display: inline-block;
}

.contact_card{
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #E9E9E9;
    height: 100%;
}

.contact-info {
    background: #F3F3F3;
    padding: 20px 30px;
    border-radius: 5px;
}
.contact-info .icon{
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    /* background: var(--shaded-blue--); */
    background: var(--green--);
    margin-top: 5px;
    border-radius: 5px;
}

.contact-info .icon i{
    color: #fff;
    font-size: 24px;
}

.contact-info .info h4{
    font-size: 22px;
    color: #000;
    margin-bottom: 3px;
    font-weight: bold;
}

.contact-info .info p{
    font-size: 14px;
    margin: 0;
    color: #000;
    font-weight: 500;
}

.contact-info .info p a{
    font-size: 14px;
    color: #000;
}

.contact-form {
    background: #F3F3F3;
    padding: 20px 25px;
    padding-top: 35px;
    height: 100%;
    border-radius: 5px;
}

.contact-form h3{
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 400;
}

.contact-form form input{
    width: 100%;
    height: 50px;
    background: #fff;
    border: 1px solid #E5E5E5;
    padding: 0 10px;
    outline: none;
}

.contact-form form textarea{
    width: 100%;
    height: 100px;
    background: #fff;
    border: 1px solid #E5E5E5;
    padding: 0 10px;
    padding-top: 10px;
}

.contact-form form input[type="submit"]{
    /* background: var(--shaded-blue--); */
    background: var(--green--);
    color: #fff;
    border-radius: 5px;
}

.map iframe{
    width: 100%;
    aspect-ratio: 5/2;
    border-radius: 20px;
}

.faq .accordion-item .accordion-button{
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq .accordion-item .accordion-button::after{
    display: none;
}

.faq .accordion-item .accordion-button:not(.collapsed){
    background: var(--green--);
    color: #fff;
}

.faq .accordion-item .accordion-button i{
    transition: 0.3s;
}

.faq .accordion-item .accordion-button:not(.collapsed) i{
    transform: rotateX(180deg);
    transition: 0.3s;
}

.categories_card_btns{
    display: flex;
    gap: 10px;
    padding: 0 10px;
    padding-bottom: 20px;
    /* align-items: center; */
}

.categories_card_btns .card_btn{
    width: 100%;
    padding: 5px 0;
    /* background: #A7A7A7; */
    background: none;
    border: none;
    border-radius: 5px;
    color: #A7A7A7;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 2;
    font-size: 22px;
}

.place_order_btn_new{
    display: inline-block;
    padding: 10px 20px;
    background: var(--yellow--);
    color: #000;
    border-radius: 5px;
    border: none;
}

.whats-app{
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 80px;
    right: 3%;
    /* bottom: 15%;
    right: 3%; */
    background: #01c83c;
    z-index: 99;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 1px 1px 8px 2px #959595;
}

.whats-app a{
    color: #fff;
    font-size: 25px;
}

.home_card_sec_bg{
    background: #818181;
}

.h_vid_sec_bg{
    background: #F9F9F9;
}

.h_vid_sec{
    position: relative;
}

.h_vid_sec img{
    border-radius: 5px;
    aspect-ratio: 5/3;
    object-fit: cover;
}

.h_vid_sec .vid_play_btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.client_slider img{
    aspect-ratio: 3/1;
    object-fit: contain;
    padding: 0 5px;
}
.categories_card_btns .card_btn.active {
    color: var(--yellow--);
}

.drift-open{
    z-index: 99;
}

.pro_num{
    font-size: 16px;
    color: #A7A7A7;
}

/* Writen by himanchal  */

/* SweetAlert smaller size */
.swal-small {
    width: 280px !important;
    padding: 1.2em !important;
    font-size: 14px;
    text-align: center;
}

/* Smaller text style */
.swal-text-small {
    font-size: 14px !important;
}

/* One-line heart + text */
.swal-heart-line {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    gap: 8px;
    color: #444;
}

/* Heart icon styles */
.swal-heart-line i {
    font-size: 18px;
    color: #999;
}

/* Yellow heart when added */
.swal-heart-line .added {
    color: #f4c542;
}

/* Wishlist icon yellow when active */
.card_btn.active i {
    color: #f4c542 !important;
}

/* Default heart color when not active */
.card_btn i {
    color: #ccc;
}

/* One-line icon + text layout */
.swal-cart-line {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    gap: 8px;
    color: #444;
}

/* Make the cart icon yellow */
.swal-cart-line i {
    font-size: 18px;
    color: #f4c542; /* Yellow */
}

.product_info_detail ul{
    display: table;
    gap: 10px;
}

.product_info_detail ul li{
    display: table-row;
}

.product_info_detail ul strong, .product_info_detail ul li span{
    display: table-cell;
    padding-bottom: 10px;
}
.product_info_detail ul strong{
    padding-right: 10px;
}

/* Writen by himanchal  */