*{
    margin: 0px;
    padding: 0px;
}
body{
    font-family: "Inter", serif;
}
h1{
    font-size: 48px;
}
h2{
    font-size: 36px;
}
h3{
    font-size: 28px;
}
h4{
    font-size: 26px;
}
h5{
    font-size: 24px;
}
h6{
    font-size: 20px;
}
p{
    font-size: 15px;
}
:root{
    --primary-color:#4a4a4a;
    --white-color:#ffffff;
    --accent-color:#7ada5d;
    --red-color:#f00;
}
.spt{
    padding-top: 80px;
}
.spb{
    padding-bottom: 80px;
}
.top_header{
    background-color:var(--primary-color) ;
    padding: 8px 0px;
}
.top_left ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}
.top_left ul li {
    display: inline-block;
    margin: 0px 10px 0px 0px;
}
.top_left ul li a{
    color: var(--white-color);
    text-decoration: none;
}
.top_left ul li a i {
    background-color: var(--accent-color);
    width: 30px;
    position: relative;
    display: inline-block;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    line-height: 30px;
}
.top_right ul{
    list-style: none;
    margin-bottom: 0px;
}
.top_right ul li{
    display: inline-block;
    margin: 0px 0px 0px 10px;
    color: var(--white-color);
}
.top_right ul li a{
    color: var(--white-color);
    text-decoration: none;
}
.top_right ul li i{
    background-color: var(--accent-color);
    width: 30px;
    position: relative;
    display: inline-block;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    line-height: 30px;
}


.navbar-brand img{
    width: 200px;
}
.navbar-nav li {
    padding: 0px 10px 0px 10px;
}
.dropdown-menu.show {
    /* display: block; */
    border: 0;
}
.dropdown-item {
    font-size: 14px;
    padding: 6px 0px;
    border-bottom: 1px #ddd dotted;
}
.accout_section .dropdown .dropdown-menu {
    padding: 10px 15px;
}
/* Ensure the dropdown menu is visible on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem; 
}
/* .dropdown:hover .dropdown-menu {
    display: block;
} */
.header_section .navbar-expand-lg .navbar-collapse {
    display: flex!important;
    flex-basis: auto;
    justify-content: flex-end;
}
.main_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.accout_section.d-flex {
    display: flex!important;
    grid-gap: 20px;
}
.accout_section .dropdown-toggle::after {
    display: none;
}
.accout_section .dropdown-toggle {
    border: 0;
    background: transparent;
}
.accout_section a{
    display: inline-block;
}
.accout_section  i{
    background-color: var(--accent-color);
    width: 35px;
    position: relative;
    display: inline-block;
    height: 35px;
    text-align: center;
    border-radius: 50%;
    line-height: 37px;
    color: var(--white-color);
}
.cart_top a{
    position: relative;
    display: inline-block;
    text-decoration: none;
}
.cart_number {
    color: #ffffff;
    position: absolute;
    right: 6px;
    font-size: 12px;
    top: 2px;
    font-weight: 600;
}
.heading_text h3{
    font-weight: 700;
    text-transform: uppercase;
}
.our_advantage_img img{
    width: 100%;
}
.our_advantage {
    display: flex;
    grid-gap: 15px;
    margin-bottom: 40px;
}
.left_advantage {
    width: 75%;
}
.left_advantage h6{
    font-weight: 600;
}
.left_advantage_img {
    background: var(--accent-color);
    padding: 5px;
    border-radius: 26px 0px;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 65px;
}
.left_advantage_img img {
    width: 54px;
}

.category_tab{
    display: flex;
    flex-wrap: wrap;
}
.tabs_with_accordion_wrapper {
    width: 26%;
}
.tabs_with_accordion_wrapper_content {
    width: 74%;
}
.tabs_with_accordion_wrapper ul {
    display: flex;
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    height: 100%;
    align-content: stretch;
    align-items: center;
}
.tabs_with_accordion_wrapper ul li {
    width: 100%;
    position: relative;
    border-right: 1px solid #818181;
    height: 100%;
    display: flex;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden;
}
.tabs_with_accordion_wrapper ul li::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 70%);
    top: 0px;
    position: absolute;
}
.tabs_with_accordion_wrapper ul li a {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    width: 100%;
    padding: 0px 0px 0px 13px;
    text-align: center;
    margin: 0 auto;
    color: var(--white-color);
    text-decoration: none;
    font-size: 20px;
}
.tabs_with_accordion_wrapper ul li:hover {
    filter: invert(1);
}

.tabs_with_accordion_wrapper ul li:nth-last-child(1){
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.tabs_with_accordion_wrapper ul li:nth-child(1){
    border-left: 1px #818181 solid;
}
.tabs_with_accordion_wrapper ul li.active  a{
    background-color: var(--accent-color);
}
.tabs_with_accordion_wrapper ul li.active{
    filter: inherit;
}
.tabs_inner {
    position: relative;
    display: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
}
.tabs_inner:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(159deg, rgba(74,74,74,1) 3%, rgba(105,190,226,0) 75%);
}

.tabs_inner.active {
    display: block;
}
.tabs_inner img {
    width: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.tabs_inner_conetnt {
    position: absolute;
    top: 40px;
    left: 25px;
}
.tabs_inner_conetnt h3 {
    text-transform: uppercase;
    font-size: 55px;
    color: #fff;
    font-weight: 900;
}
.tabs_inner_conetnt p{
    color: var(--white-color);
}
.btn_theme {
    background-color: var(--accent-color);
    color: var(--white-color);
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 17px 0px;
    font-size: 18px;
    display: inline-block;
    border: 0px;
}


.featured_product{
    position: relative;
    background-color: #f7f7f7;
}

.slick-slider .element{
   
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
            margin:0px 10px;
  }
  .slick-slider .slick-disabled {
    opacity : 0; 
    pointer-events:none;
  }
  .related_product {
    position: relative;
}
  .related_product_slider .element{
   
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
            margin:0px 10px;
  }
  .related_product_slider .slick-disabled {
    opacity : 0; 
    pointer-events:none;
  }
.home_cart{
    background-color: var(--white-color);
    position: relative;
}
.shop_page_product {
    background-color: #f7f7f7;
    margin-bottom: 25px;
}
  .single_product_img img{
    width: 100%;
  }
  .single_product_img {
    padding: 5px 10px;
}
.single_product_content {
    border-bottom: 1px #ddd solid;
    padding: 5px 10px;
}
.single_product_content h6 {
    font-size: 20px;
    margin-bottom: 5px;
}
.price_right h5 {
    font-size: 18px;
    color: var(--red-color);
    padding-right: 10px;
}
.price_right h5 del {
    color: #757575;
    font-size: 14px;
}
.single_product_content p{
    margin-bottom: 5px;
}   
.single_product_content p a{
    color: var(--primary-color);
    text-decoration: none;
}
.add_to_cart{
    padding: 5px 10px;
}
.add_to_cart a {
    color: var(--primary-color);
    font-size: 18px;
    margin: 0px 8px 0px 8px;
    transition: 0.4s;
}
.add_to_cart a:hover{
    color: var(--red-color);
    transition: 0.4s;
}
.price_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.promo_banner {
    position: relative;
    background: url(../image/banner-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 220px 0px;
    background-position: right center;
}
.promo_banner::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 56%);
}
.promo_banner img{
    width: 100%;
}

.promo_content h2 {
    text-transform: uppercase;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 2px 2px #373636;
}
.promo_content p{
    color: #ffffff;
    
}
.offer_section {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--accent-color);
    width: 50px;
    height: 50px;
    line-height: 44px;
    border-radius: 50%;
    outline: 1px var(--accent-color) dashed;
    padding: 2px;
    border: 2px #fff solid;
}
.offer_section p{
    margin-bottom: 0px;
    color: var(--white-color);
}
.blog_section {
    position: relative;
    width: 100%;
    padding: 60px 0px;
    background: #ededed;
}
.blog_section {
    position: relative;
    width: 100%;
    padding: 75px 0px;
    background: #ededed;
}
.rs-blog-2__item {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}
.rs-blog-2__item.blog_inner {
    border: 1px #ddd solid;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}
.rs-blog-2__item .rs-content {
    position: relative;
    padding: 22px 30px 20px;
    background-image: url(../image/curve-cloud.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: auto;
}
.rs-blog-2__item .rs-content .rs-category a {
    display: inline-block;
    background: linear-gradient(130deg, #7ada5d 0%, #212529 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 12px;
    padding: 5px 12px 5px 12px;
    border-radius: 50px 50px 50px 50px;
    text-decoration: none;
}
.rs-thumb img{
    width: 100%;
}
.rs-blog-2__item .rs-content .title {
    margin-top: 15px;
    margin-bottom: 15px;
}
.rs-blog-2__item .rs-content .title a {
    color: #002559;
    font-size: 20px;
    line-height: 26px;
    transition: all linear 0.3s;
    text-decoration: none;
    display: inline-block;
}
.rs-blog-2__item .rs-content p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
    padding-bottom: 0px;
}
.rs-blog-2__item .rs-content .rs-blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #0025591A;
    padding: 25px 0px 0px 0px;
}
.rs-blog-2__item .rs-content .rs-blog-footer span {
    font-size: 14px;
    font-weight: 400;
    color: #606060;
}
.rs-blog-2__item .rs-content .rs-blog-footer a {
    color: #2f4e71;
    font-size: 16px;
    font-weight: 600;
    transition: all linear 0.3s;
}
.rs-blog-single-page__content {
    padding: 20px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 20px;
}
.rs-blog-single-page__content p{
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    overflow-x: hidden;
    color: #454545;
}
.rs-blog-single-page__content ul{
	list-style: none;
    padding-left: 0px;
}
.rs-blog-single-page__content ul li{
	position: relative;
	padding-left: 30px;
	font-size: 16px;
    font-weight: 400;
    color: #454545;
    padding-bottom: 6px;
}
.rs-blog-single-page__content ul li:before {
    top: 5px;
    content: "";
    background: url(../image/share.png);
    height: 14px;
    background-position: center;
    position: absolute;
    left: 0;
    width: 14px;
    background-repeat: no-repeat;
    background-size: cover;
}
.rs-blog-single-page__content .rs-thumb img {
    margin-bottom: 35px;
    border-radius: 15px;
}
.rs-blog-single-page__content .title {
    font-size: 24px;
    line-height: 34px;
    color: #000;
}
.rs-blog-standard-page__sidebar .rs-blog-common {
    background: #f7f7f7;
    padding: 30px 30px;
    border-radius: 10px;
}
.rs-blog-standard-page__sidebar {
    padding: 20px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    background: #fff;
}
.rs-blog-standard-page__sidebar .rs-blog-common .rs-sidebar-title {
    font-size: 24px;
    line-height: 26px;
    color: #002559;
    margin-bottom: 28px;
    font-weight: 600;
}
.rs-blog-sidebar-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.rs-blog-sidebar-item .rs-thumb {
    margin-right: 15px;
    width: 200px;
    border-radius: 5px;
    overflow: hidden;
}
.rs-blog-sidebar-item .rs-thumb img{
	width: 100%;
	height: 100px;
	object-fit: cover;
}

.rs-blog-sidebar-item .rs-thumb a{
	display: inline-block;
}
.rs-blog-sidebar-item .rs-content .title {
    font-size: 16px;
    color: #002559;
    font-weight: 700;
    margin-bottom: 0px;
}
.rs-blog-sidebar-item .rs-content .title a{
	color: #002559;
}
.rs-blog-sidebar-item .rs-content span {
    display: block;
    color: #656567;
    font-size: 14px;
    margin-top: 6px;
}
.rs-blog-sidebar-item .rs-content span img{
	width: 16px;
}
.quick_view {
    display: flex;
    grid-gap: 30px;
    padding: 15px;
}
.quick_view_img {
    background: #f7f7f7f7;
    padding: 10px;
}
.quick_view_img img{
    width: 100%;
}
.quick_view_left {
    width: 50%;
    border-right: 1px #ddd solid;
    padding-right: 15px;
}
.quick_view_right{
    width: 50%;
}
.quick_view_right h4{
    font-size: 20px;
}
.rating_box_left p{
    margin-bottom: 5px;
    font-size: 14px;
}
.rating_box_left p a{
    color: var(--primary-color);
    text-decoration: none;
}
.rating_box_left ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 10px;
}
.rating_box_left ul li{
    display: inline-block;
    color: #FFDF00;
}
.popup_des p {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}
.color_variable {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.color-picker {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-left: 10px;
}
.variable_label p {
    margin-bottom: 5px;
}
.color-picker label {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.color-picker input[type="radio"] {
    display: none;
}

.color-picker .color {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-block;
    transition: border-color 0.3s ease;
}

.color-picker .color.red {
    background-color: red;
}

.color-picker .color.blue {
    background-color: blue;
}

.color-picker .color.green {
    background-color: green;
}

.color-picker .color.yellow {
    background-color: yellow;
}

.color-picker input[type="radio"]:checked + .color {
    border: 1px solid #ccc;
}
.sku_section {
    padding-top: 15px;
}
.sku_section p{
    margin-bottom: 5px;
}
.sku_section p a{
    color: var(--primary-color);
    text-decoration: none;
}
.quantity-input {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
}

.quantity-input button {
    width: 36px;
    height: 36px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quantity-input button:hover {
    background-color: var(--accent-color);
}

.quantity-input input {
    width: 50px;
    height: 36px;
    text-align: center;
    font-size: 16px;
    border: 0;
    appearance: none;
    outline: 0;
}
.quantity::-webkit-inner-spin-button,
.quantity::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
  input[type="number"] {
    -webkit-appearance: none; /* Remove spinners in WebKit-based browsers */
    -moz-appearance: textfield; /* Remove spinners in Firefox */
    appearance: none; /* Standard property */
    margin: 0; /* Reset margin */
}
.quantity_section {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 15px 0px;
    border-bottom: 1px #ddd solid;
}
.cart_btn {
    background-color: var(--accent-color);
    color: var(--white-color);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 4px;
    display: inline-block;
}
button.btn-close {
    position: absolute;
    right: 2px;
    top: 2px;
    opacity: 1;
}

.footer_section{
    background-color: #191919;
}
.pre-footer {
    background-color: var(--accent-color);
    padding: 20px 0px 5px;
}
.pre-footer_inner p {
    position: relative;
    padding-left: 60px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}
.pre-footer_inner p img {
    position: absolute;
    left: 0;
    width: 45px;
}
.usefull_links{
    padding: 35px 0px;
}
.usefull_links h4{
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}
.usefull_links ul{
    list-style: none;
    padding-left: 0px;
}
.usefull_links ul li {
    font-size: 14px;
    margin-bottom: 10px;
}
.usefull_links ul li a {
    text-decoration: none;
    color: #a6a6a6;
}
.footer_bottom{
    padding: 30px 0px;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}
.footer_logo a{
    display: block;
}
.footer_logo a img{
    width: 235px;
}
.footer_address h4{
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}
.footer_address p{
    color: #a6a6a6;
}
.footer_address ul{
    list-style: none;
    padding-left: 0px;
}
.footer_address ul li{
    font-size: 15px;
}
.footer_address ul li a{
    color: #a6a6a6;
    text-decoration: none;
}
.newsletter_section h2{
    font-weight: 600;
    color: var(--white-color);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.newsletter_section h2 span{
    color: var(--accent-color);
}
.newsletter_form input {
    width: 70%;
    border: 1px #ddd solid;
    background-color: #fff;
    padding: 12px 15px;
}
.newsletter_form input:focus{
    outline: none;
}
.newsletter_form button {
    background-color: var(--accent-color);
    color: var(--white-color);
    width: auto;
    padding: 12px 20px;
    border: 0px;
}
.copy_right{
    padding: 30px 0px;
    border-top: 1px solid rgba(151, 151, 151, 0.4);
}
.copy_right_right ul{
    list-style: none;
    margin-bottom: 0px;
}
.copy_right_right ul li{
    display: inline-block;
    margin: 0px 0px 0px 10px;
    color: var(--white-color);
}
.copy_right_right ul li a{
    color: var(--white-color);
    text-decoration: none;
}
.copy_right_right ul li i{
    background-color: var(--accent-color);
    width: 30px;
    position: relative;
    display: inline-block;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    line-height: 30px;
}
.copy_right_inner p{
    color: #a6a6a6;
    margin-bottom: 0px;
}
.copy_right_inner p a{
    color:var(--accent-color);
    text-decoration: none;
}
.testimonials-slider-box{
    background-color: #f7f7f7;
    padding: 15px;
    border-radius: 10px;
    border-bottom: 4px var(--accent-color) solid;
}
.testimonails_img{
    margin-bottom: 20px;
}
.testimonails_img img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonails_content {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.testimonails_content_left h4 {
    font-size: 18px;
    margin-bottom: 2px;
}
.testimonails_content_left p {
    font-size: 12px;
    text-transform: uppercase;
}
.testimonails_content_review ul{
    list-style: none;
    padding-left: 0px;
}
.testimonails_content_review ul li {
    color: #FFDF00;
    display: inline-block;
}


/* =========== Product  Category =================*/
.breadcrumb_sectiion{
    /* background: url(../image/breadcrumb-1.jpg); */
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 15px 0px;
    background-color: var(--accent-color);
}
/* .breadcrumb_sectiion::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: rgb(0 0 0 / 65%);
} */
.breadcrumb_inner{
    position: relative;
}
.breadcrumb_inner h2{
    color: var(--white-color);
}
.breadcrumb_inner ul {
    list-style: none;
    margin-bottom: 0;
    text-align: left;
    padding-left: 0;
}
.breadcrumb_inner ul li {
    color: var(--white-color);
    display: inline-block;
    margin: 8px 6px;
}
.breadcrumb_inner ul li a{
    text-decoration: none;
    color: var(--white-color);
}
.filter_section {
    border: 1px #ddd solid;
    border-radius: 6px;
}
.filter_section h3 {
    font-size: 16px;
    padding: 8px 12px 0px;
}
.filter_innner_section {
    border-top: 1px #ddd solid;
    padding: 5px 12px;
}
.form-check-section {
    position: relative;
    margin-bottom: 8px;
}
.filter_innner_section h3 {
    padding: 5px 0px !important;
}
.form-check-section label {
    font-size: 15px;
    padding-left: 5px;
}
.form-check-section  span {
    position: absolute;
    right: 0px;
}
.color_filter .form-check-input[type=checkbox] {
    border-radius: 50% !important;
    border-color: transparent;
}
.form-check-input:focus {
    box-shadow: none;
}
#red.form-check-input[type=checkbox] {
    border-radius: .25em;
    background-color: var(--red-color);
}
#black.form-check-input[type=checkbox] {
    border-radius: .25em;
    background-color: #000;
}
#blue.form-check-input[type=checkbox] {
    border-radius: .25em;
    background-color: #0000FF;
}
#green.form-check-input[type=checkbox] {
    border-radius: .25em;
    background-color: #008000;
}
#grey.form-check-input[type=checkbox] {
    border-radius: .25em;
    background-color: #808080;
}
#brown.form-check-input[type=checkbox] {
    border-radius: .25em;
    background-color: #964B00;
}
.main_price_range {
    padding: 0px 10px;
}
.range-slider {
    --range-slider-value-low-fallback: calc(var(--range-slider-value-low, 0) * 1%);
    --range-slider-value-high-fallback: calc(var(--range-slider-value-high, 100) * 1%);
    --range-slider-thumb-size: 18px;
    --range-slider-thumb-radius: calc(var(--range-slider-thumb-size) / 2);
    position: relative;
    width: 100%;
    height: 22px;
    margin: 35px 0px 10px;
}
  @media (max-width: 500px) {
    .range-slider {
      --range-slider-thumb-size: 36px;
    }
  }
  .range-slider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    margin-top: -2px;
    border-radius: 100vmax;
    background-color: #ebebeb;
    background-image: linear-gradient(to right, transparent var(--range-slider-value-low-fallback), #7ada5d var(--range-slider-value-low-fallback), #7ada5d var(--range-slider-value-high-fallback), transparent var(--range-slider-value-high-fallback));
    pointer-events: none;
}
  .range-slider__display {
    pointer-events: none;
  }
  .range-slider__display::before, .range-slider__display::after {
    content: attr(data-span);
    position: absolute;
    color: #000;
    white-space: nowrap;
    transform: translateX(-50%) translateX(calc(var(--range-slider-thumb-radius) * calc(-0.02 * var(--pos) + 1)));
    z-index: -1;
  }
  .range-slider__display::before {
    --pos: var(--range-slider-value-low);
    content: attr(data-low);
    bottom: 100%;
    margin-bottom: calc(var(--range-slider-thumb-size) / 4);
    left: var(--range-slider-value-low-fallback);
  }
  .range-slider__display::after {
    --pos: var(--range-slider-value-high);
    content: attr(data-high);
    bottom: 100%;
    margin-top: calc(var(--range-slider-thumb-size) / 4);
    left: var(--range-slider-value-high-fallback);
  }
  .range-slider__input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    margin: 0;
    padding: 0;
    transform: translateY(-50%);
    background-color: transparent;
    pointer-events: none;
  }
  @supports selector(:focus-visible) {
    .range-slider__input:focus-visible {
      outline: none;
    }
    .range-slider__input:focus-visible::-webkit-slider-thumb {
      outline: 2px solid blue;
      outline-offset: 2px;
    }
    .range-slider__input:focus-visible::-moz-range-thumb {
      outline: 2px solid blue;
      outline-offset: 2px;
    }
  }
  @supports not selector(:focus-visible) {
    .range-slider__input:focus {
      outline: none;
    }
    .range-slider__input:focus::-webkit-slider-thumb {
      outline: 2px solid blue;
      outline-offset: 2px;
    }
    .range-slider__input:focus::-moz-range-thumb {
      outline: 2px solid blue;
      outline-offset: 2px;
    }
  }
  .range-slider__input:active::-webkit-slider-thumb {
    transform: scale(1.3);
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
  .range-slider__input:active::-moz-range-thumb {
    transform: scale(1.3);
    cursor: grabbing;
  }
  .range-slider__input::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border-radius: 0;
  }
  .range-slider__input::-moz-range-track {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border-radius: 0;
  }
  .range-slider__input::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    pointer-events: all;
    position: relative;
    width: var(--range-slider-thumb-size);
    height: var(--range-slider-thumb-size);
    background-color: var(--accent-color);
    border-radius: 50%;
    border: none;
    box-shadow: none;
    cursor: -webkit-grab;
    cursor: grab;
    -webkit-transition: transform 300ms cubic-bezier(0.47, 1.64, 0.41, 0.8);
    transition: transform 300ms cubic-bezier(0.47, 1.64, 0.41, 0.8);
  }
  .range-slider__input::-moz-range-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    pointer-events: all;
    position: relative;
    width: var(--range-slider-thumb-size);
    height: var(--range-slider-thumb-size);
    background-color: var(--accent-color);
    border-radius: 50%;
    border: none;
    box-shadow: none;
    cursor: grab;
    -moz-transition: transform 300ms cubic-bezier(0.47, 1.64, 0.41, 0.8);
    transition: transform 300ms cubic-bezier(0.47, 1.64, 0.41, 0.8);
  }



.search-container {
    position: relative;
}

.search-input {
    height: 50px;
    border-radius: 30px;
    padding-left: 35px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding-right: 70px;
}

.search-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: var(--white-color);
    border: 0px;
    height: 50px;
    background-color: var(--accent-color);
    padding: 15px 24px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
.pagination {
    justify-content: center;
}
.page-item:first-child .page-link {
    background: var(--accent-color);
    color: var(--white-color);
}
.page-item:last-child .page-link {
    background: var(--accent-color);
    color: var(--white-color);
}
.page-item a{
    color: var(--primary-color);
}
.signal_product_img img {
    width: 100%;
    border: 1px #ddd solid;
    margin-bottom: 20px;
}
.slide_thumb .signal_product_img img{
    margin-bottom: 0px;
}
.slide_thumb.slick-initialized .slick-slide {
    padding: 0px 10px;
}
.single_product_content_right{
    position: relative;
}
.woocommerce_breadcrumb ul {
    list-style: none;
    padding-left: 0px;
}
.woocommerce_breadcrumb ul li {
    color: #000;
    display: inline-block;
    position: relative;
    padding: 0px 14px 0px 0px;
    font-size: 15px;
}
.woocommerce_breadcrumb ul li a{
    text-decoration: none;
    color: var(--primary-color);
}
.woocommerce_breadcrumb ul li::after{
    content: "/";
    position: absolute;
    right: 0;

}
.woocommerce_breadcrumb ul li:nth-last-child(1):after{
    display: none;
}
.wishlist_inner a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 15px;
    padding: 10px 0px;
    display: inline-block;
}
.single_star {
    display: flex;
    grid-gap: 20px;
}
.instock ul{
    list-style: none;
    padding-left: 0px;
}
.instock ul li{
    display: inline-block;
}
.instock ul li a{
    text-decoration: none;
    color: var(--primary-color);
    font-size: 14px;
}
.instock ul li:nth-child(3) a {
    color: #4CAF50;
    font-weight: 600;
}
.product_section{
    position: relative;
    background-color: #f7f7f7;
}
.specifications_section .nav-tabs {
    border-bottom: 0px;
    gap: 20px;
}
.specifications_section  .nav-link.active {
    background-color: var(--accent-color);
    color: var(--white-color);
    border-radius: 8px;
}
.specifications_section  .nav-link {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-radius: 8px;
}
.review_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.review_section_left h3{
    font-size: 22px;
}
.review_section_left h3 span{
    color: #454545;
    font-size: 15px;
}
.review_section_right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.write_review button{
    background-color: var(--accent-color);
    color: var(--white-color);
    border: 0px;
    padding: 8px 12px;
}
.write_review button:hover{
    background-color: var(--primary-color);
    color: var(--white-color);
}
.review_sorting select {
    padding: 6px 25px 6px 8px;
    border: 1px #ddd solid;
    border-radius: 8px;
    font-size: 15px;
    color: #222;
}
.review_popup label{
 width: 100%;
}
.review_popup label sup{
    color: var(--red-color);
}
.review_popup input {
    width: 100%;
    padding: 8px 12px;
    border: 1px #ddd solid;
    margin-bottom: 15px;
}
.review_popup textarea{
    width: 100%;
    padding: 8px 12px;
    border: 1px #ddd solid;
    margin-bottom: 15px;
}
.review_popup button{
    background-color: var(--accent-color);
    color: var(--white-color);
    border: 0px;
    padding: 8px 12px;
}
.review_popup button.btn-close {
    position: absolute;
    right: 12px;
    top: 8px;
    opacity: 1;
    background-color: transparent !important;
}
.review_text {
    background: #fff;
    border: 1px #ddd solid;
    border-radius: 12px;
    padding: 10px;
}
.review_text ul{
    list-style: none;
    padding-left: 0px;
}
.review_text ul li{
    display: inline-block;
    color: #FFDF00;
}
.review_text h4{
    font-size: 20px;
}
.review_text h4 i{
    color: #008000;
}
.review_text p{
    font-size: 14px;
}
.review_text h6{
    font-size: 15px;
}
.related_product_slider .related_product{
    background-color: #f7f7f7;
    margin-bottom: 25px;
}
.related_product_slider .slick-slide {
    padding: 0px 10px 0px 0px;
}
.cart_inner {
    display: grid;
    grid-template-columns: 25% 45% 25%;
    grid-gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px #ddd solid;
    padding-bottom: 25px;
}

.cart_inner_img {
    background: #f7f7f7;
    border-radius: 8px;
    padding: 12px;
}
.cart_inner_img img {
    width: 100%;
    height: 95px;
    object-fit: contain;
}
.cart_inner_content h4 {
    font-size: 22px;
}
.cart_inner_content h5 {
    color: var(--red-color);
    font-size: 24px;
}
.cart_inner_quantity {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 20px;
}
.delete_cart a{
    position: relative;
}
.delete_cart a i {
    color: var(--red-color);
    font-size: 25px;
}
.return_section {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 25px;
}
.return_section a {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    padding: 12px 20px;
    display: inline-block;
    border-radius: 8px;
}
.promo_code {
    border-top: 1px #ddd solid;
    padding-top: 25px;
}
.promo_code input{
    width: 50%;
    border: 1px #ddd solid;
    padding: 10px 15px;
}
.promo_code button{
    background-color: var(--accent-color);
    color: var(--white-color);
    width: auto;
    padding: 12px 20px;
    border: 0px;
}
input:focus{
    outline: none;
}
.order_summary h4 {
    font-size: 22px;
    border-bottom: 1px #ddd solid;
    padding-bottom: 8px;
}
.order_summary table{
    width: 100%;
}
.order_summary table tr td h6 {
    font-size: 17px;
    font-weight: 400;
}
.order_summary table tr td h5 {
    font-size: 15px;
    font-weight: 700;
}
.order_summary table tr td h5 span{
    color: var(--red-color);
}
.order_summary table tr td {
    border-bottom: 1px #ddd solid;
    padding: 12px 0px 8px;
}
.order_summary table tr th {
    font-size: 18px;
    padding: 12px 0px 8px;
}
.order_summary img {
    width: 100px;
    height: 60px;
    object-fit: contain;
}
.theme_button{
    background-color: var(--accent-color);
    text-decoration: none;
    color: var(--white-color);
    padding: 10px 20px;
}
.proceed_checkout {
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-top: 25px;
}

.checkout_inner h3{
    font-size: 22px;
}
.checkout_inner label{
    width: 100%;
    font-size: 14px;
}
.checkout_inner label sup{
    color: var(--red-color);
}
.checkout_inner input{
    width: 100%;
    margin-bottom: 15px;
    border: 1px #ddd solid;
    padding: 5px 12px;
}
.checkout_inner input::placeholder{
    font-size: 12px;
}
.checkout_inner select {
    width: 100%;
    margin-bottom: 15px;
    border: 1px #ddd solid;
    padding: 10px 12px;
    font-size: 14px;
}
.checkout_inner textarea{
    width: 100%;
    border: 1px #ddd solid;
    padding: 5px 12px;
}
.checkout_billing {
    background-color: #f7f7f7;
    padding: 30px;
    position: relative;
}
.checkout_billing::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    height: 10px;
    background-image: radial-gradient(farthest-side, transparent 6px, #f7f7f7 0);
    background-size: 15px 15px;
    top: -8px;
    background-position: -2px -6px, 0 0;
}
.checkout_billing::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    height: 10px;
    background-image: radial-gradient(farthest-side, transparent 6px, #f7f7f7 0);
    background-size: 15px 15px;
    bottom: -8px;
    
}
.checkout_billing h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
}
.payment_option h3 {
    text-align: left;
    border-top: 1px #ddd solid;
    padding-top: 20px;
    margin-bottom: 14px;
}
.payment_terms p {
    font-size: 14px;
    border-top: 1px #ddd solid;
    border-bottom: 1px #ddd solid;
    padding: 10px 0px;
}
.payment_terms label {
    font-size: 14px;
}
.order_complete_headeing h3 {
    text-align: center;
    background-color: #f7f7f7;
    padding: 30px;
    position: relative;
    color: #4CAF50;
}
.order_complete_headeing h3::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    height: 10px;
    background-image: radial-gradient(farthest-side, transparent 6px, #f7f7f7 0);
    background-size: 15px 15px;
    top: -8px;
    background-position: -2px -6px, 0 0;
}
.order_complete_headeing h3::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    height: 10px;
    background-image: radial-gradient(farthest-side, transparent 6px, #f7f7f7 0);
    background-size: 15px 15px;
    bottom: -8px;
    
}
.order_details ul{
    list-style: none;
    padding-left: 0px;
    text-align: center;
}
.order_details ul li {
    display: inline-block;
    padding: 10px 30px 10px;
    position: relative;
}
.order_details ul li p{
    margin-bottom: 5px;
    font-size: 14px;
}
.order_details ul li h6 {
    margin-bottom: 0px;
    font-size: 16px;
    color: var(--primary-color);
}
.order_details ul li:after {
    border-right: 1px #ddd solid;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}
.order_details ul li:nth-last-child(1)::after{
    border-right: 0px;
}

.complete_order_details h4 {
    font-size: 22px;
    padding-bottom: 8px;
}
.complete_order_details table{
    width: 100%;
}
.complete_order_details table tr td h6 {
    font-size: 17px;
    font-weight: 400;
}
.complete_order_details table tr td h5 {
    font-size: 15px;
    font-weight: 700;
}
.complete_order_details table tr td h5 span{
    color: var(--red-color);
}
.complete_order_details table tr td {
    border-bottom: 1px #ddd solid;
    padding: 12px 0px 8px;
}
.complete_order_details table tr th {
    font-size: 18px;
    padding: 12px 0px 8px;
    border-bottom: 1px #ddd solid;
}
.billing_address h4{
    font-size: 22px;
    padding-bottom: 8px;
}
.billing_address p{
    margin-bottom: 5px;
}

.sign_up_section {
    position: relative;
    
}
.sign_up_section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: url(../image/sign-up.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px;
    background-position: center center;
}
.sign_up_heading h2{
    text-align: center;
}
.sign_up_heading p{
    text-align: center;
    font-size: 16px;
}
.sign_up_heading p a{
    text-decoration: none;
}
.sign_up_form label{
    width: 100%;
    font-size: 14px;
}
.sign_up_form input {
    width: 100%;
    border: 1px #ddd solid;
    padding: 10px 12px;
    margin-bottom: 20px;
}
.sign_up_form input::placeholder{
    font-size: 14px;
}
.sign_up_form button{
    
}
.password_sec{
    position: relative;
}
.password_sec #showPass {
    position: absolute;
    right: 10px;
    top: 10px;
}
.other_option p {
    position: relative;
}
.other_option p span{
    position: relative;
    background-color: var(--accent-color);
    display: inline-block;
    color: var(--white-color);
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 9;
}
.other_option p:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--accent-color);
    position: absolute;
    left: 0;
    bottom: 15px;
    z-index: 1;
}
.other_option_sign_up_inner {
    display: flex;
    grid-gap: 20px;
    justify-content: center;
}
.other_option_sign_up_inner a {
    text-decoration: none;
    display: inline-block;
    color: #000;
    padding: 10px 16px;
    border: 1px #ddd solid;
    border-radius: 8px;
    position: relative;
}
.other_option_sign_up_inner a img {
    width: 18px;
    margin-right: 5px;
}
.remember_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.remember_left input{
    width: auto;
}
.remember_left label{
    width: auto;
}
.remember_left a{
    color: var(--red-color);
}
.about_us_img img{
    width: 100%;
    border-radius: 10px;
}
.about_us_img{
    position: relative;
}
.years_experience {
    background-color: var(--accent-color);
    position: absolute;
    top: 0;
    border-radius: 10px;
    text-align: center;
    padding: 18px 25px 10px;
}
.years_experience h2 {
    color: #fff;
    font-weight: 900;
    text-shadow: 2px 2px #373636;
}
.years_experience p {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}
.about_us_content h2{
    font-weight: 600;
    font-size: 32px;
}
.why_choose_us{
    background: url(../image/bg_pattern_square.png);
    position: relative;
    background-size: 100px auto;
}
.why_choose_us:before {
    background-color: transparent;
    content: "";
    background-image: radial-gradient(at center center, #1A1A1ACC 0%, #1a1a1a 60%);
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
}
.why_choose_us_heading {
    z-index: 9;
    position: relative;
}
.why_choose_us_heading h2 {
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
}
.why_choose_us_heading_main {
    position: relative;
    z-index: 2;
}
.why_choose_us_heading_main h2 {
    color: rgb(255 255 255 / 5%);
    font-size: 110px;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: -94px;
}
.why_choose_us_box {
    position: relative;
    z-index: 9;
    background-color: #4b4b4b;
    padding: 25px;
    margin-bottom: 20px;
}
.why_choose_us_box h5 {
    color: var(--accent-color);
    font-size: 18px;
}
.why_choose_us_box p {
    color: var(--white-color);
    font-size: 14px;
    margin-bottom: 0px;
}
.dm-flip-card {  
    position:relative; 
    width : 100%;
    height : 350px;
    background:transparent;
    transform-style: preserve-3d;
    perspective: 2000px;
    cursor: pointer;
      
  }
.mission_section{
    position: relative;
    background-color: #f7f7f7;
}  
  .dm-front-card {    
     position:absolute;
     height:100%;
     width:100%;   
     backface-visibility: hidden;
     transition: transform 1s;
     background-color: var(--primary-color);
     justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 15px;     
  }  
  .dm-front-card:after {    
    content:'';
    position:absolute;
    height:100%;
    width:100%;
    background:var(--primary-color);
    top:0;
    left:0;
    opacity:0.5;
    
  }    
  .dm-back-card {    
     position:absolute;
     height:100%;
     width:100%;
     background:var(--accent-color);
     backface-visibility: hidden;
     transform:rotateY(180deg); 
     transition: transform 1s;
     justify-content:center;
     align-items:center;
     display:flex;
     flex-direction:column;
     padding: 15px;        
  }  
  .dm-flip-card:hover .dm-front-card {          
      transform: rotateY(-180deg);           
  }      
  .dm-flip-card:hover .dm-back-card {          
      transform:rotateY(0deg);          
  }
  .dm-front-card h4, .dm-back-card h4 {
    text-align: center;
    color: #fff;
    z-index: 9;
    font-weight: 700;
}
  .dm-front-card p, .dm-back-card p {
    text-align: center;
    color: #fff;
    z-index: 9;
}
.vission_img {
    background-color: var(--accent-color);
    z-index: 9;
    width: 94px;
    height: 94px;
    margin-bottom: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 80px;
    outline: 2px var(--accent-color) solid;
    border: 5px #ffffff solid;
}
.vission_img img {
    width: 50px;
    filter: invert(1);
}
.value_section h6{
color: var(--accent-color);
}
.value_section h2 {
    font-weight: 700;
    font-size: 32px;
}
.contact_section {
    position: relative;
    background: url(../image/world_map.png) no-repeat center center;
    background-size: contain;
}
.contact_section::before {
    width: 100%;
    position: absolute;
    content: "";
    left: 0;
    height: 100%;
    top: 0;
    background: rgb(255 255 255 / 95%);
}
.contact_inner {
    position: relative;
}
.contact-us-heading {
    border-bottom: 1px #ddd solid;
}
.contact-us-heading h2 {
    font-size: 30px;
    font-weight: 800;
}
.contact_addres {
    padding-top: 25px;
}
.contact_addres ul{
    list-style: none;
    padding-left: 0px;
}
.contact_addres ul li{
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}
.contact_addres ul li span{
    font-weight: 500;
    display: block;
}
.contact_addres ul li i {
    position: absolute;
    left: 0;
    background: var(--accent-color);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: var(--white-color);
    border-radius: 50%;
    top: 7px;
}
.contact_addres ul li a{
    text-decoration: none;
    color: var(--primary-color);
}
.contact_social h5 {
    font-size: 18px;
}
.contact_social ul{
    list-style: none;
    margin-bottom: 0px;
    padding-left: 0px;
}
.contact_social ul li{
    display: inline-block;
    margin: 0px 10px 0px 0px;
    color: var(--white-color);
}
.contact_social ul li a{
    color: var(--white-color);
    text-decoration: none;
}
.contact_social ul li i{
    background-color: var(--accent-color);
    width: 30px;
    position: relative;
    display: inline-block;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    line-height: 30px;
}
.contact_addres_form{
    padding-top: 20px;
}
.contact_addres_form input {
    width: 100%;
    margin-bottom: 15px;
    border: 1px #ddd solid;
    padding: 10px 12px;
}
.contact_addres_form textarea {
    width: 100%;
    margin-bottom: 15px;
    border: 1px #ddd solid;
    padding: 10px 12px;
}
.event_gallery{
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 15px;
}
.event_gallery img {
    width: 100%;
    height: 350px;
    
    border-radius: 15px;
    object-fit: cover;
    transition: all 0.5s ease-out;
}
.event_gallery a{
    display: block;
    position: relative;
    overflow: hidden;

}
.event_gallery a::after {
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    content: "";
    z-index: 1;
}
.event_gallery:hover a::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.event_gallery:hover a img{
    transform: scale(1.1);
}
.faq_content .accordion-button:not(.collapsed) {
    color: #121212;
    background-color: #cdcdcd;
    box-shadow: inherit !important;
}
.faq_content .accordion-button {
    
    font-weight: 600;
}
.career_text h2{
    text-transform: uppercase;
    font-weight: 600;
}
.career_text h4{
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 25px;
}
.carrer_box{
    text-align: center;
    border: 1px #ddd solid;
    padding: 15px;
    border-radius: 10px;
}
.carrer_box img{
    width: 70px;
}
.carrer_box h5{
    font-size: 20px;
    margin-top: 15px;
}
.opening_job{
    position: relative;
    background-color: #fbfbfb;
}
.opening_job_heading h2 {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 28px;
}
.opening_job_box h4{
    font-weight: 600;
    font-size: 20px;
}
.opening_job_box ul{
    list-style: none;
    padding-left: 0px;
}
.opening_job_box ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 15px;
}
.opening_job_box ul li::before {
    content: "\F26F";
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    height: 14px;
    width: 20px;
    color: var(--accent-color);
}
.career_table table{
    width: 100%;
    margin-bottom: 25px;
}
.career_table table tr th {
    border: 1px #ddd solid;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 15px;
}
.career_table table tr td {
    border: 1px #ddd solid;
    padding: 8px 15px;
    font-weight: 400;
    font-size: 15px;
}
.apply_job_form select{
    width: 100%;
    border: 1px #ddd solid;
    padding: 8px 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--primary-color);
}
.apply_job_form input{
    width: 100%;
    border: 1px #ddd solid;
    padding: 8px 12px;
    margin-bottom: 15px;
}
.apply_job_form input::placeholder{
    font-size: 14px;
    color: var(--primary-color);
}
#jobopening button.btn-close {
    position: absolute;
    right: 8px;
    top: 8px;
    opacity: 1;
}
.custom-rangeslider { 
    position:relative;
    margin-top:40px;
    padding:0;
  }
 .calculator_wrapper input[type="range"] {
    -webkit-appearance: none;
    appearance: none; 
    width: 100%;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    border-radius: 16px;
  }
  
 .calculator_wrapper input[type="range"]::-webkit-slider-runnable-track {
    height: 15px;
    background: #ccc;
    border-radius: 16px;
  }
  
 .calculator_wrapper input[type="range"]::-moz-range-track {
    height: 15px;
    background: #ccc;
    border-radius: 16px;
  }
  
  /* Thumb: webkit */
 .calculator_wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none; 
    height: 15px;
    width: 15px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    box-shadow: -407px 0 0 400px var(--accent-color);
  }
  
 .calculator_wrapper input[type="range"]::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
    box-shadow: -407px 0 0 400px var(--accent-color);
  } 
.calculator_form  .input-group-text {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.calculator_section .card{
    height: 100%;
}
.emi_details_heading h2 {
    background-color: var(--accent-color);
    color: var(--white-color);
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    padding: 6px 12px;
}
.emi_details_box {
    border-bottom: 1px #ddd solid;
    padding: 15px 0px 10px;
}
.emi_details_box:nth-last-child(1){
    border-bottom: 0px;
}
.emi_details_box p{
    margin-bottom: 5px;
}
.emi_details_box h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {
    display: initial;
}

@media (max-width:1220px){
    .navbar-brand img {
        width: 160px;
    }
    .navbar-nav li {
        padding: 0px 5px 0px 6px;
    }
    .accout_section.d-flex {
        grid-gap: 8px;
    }
    .tabs_with_accordion_wrapper ul li a {
        padding: 0px 0px 0px 4px;
        font-size: 16px;
    }
    .promo_banner {
        padding: 85px 0px;
    }
}



@media (max-width:992px){
    .nav-item.dropdown:hover .dropdown-menu {
        display: none;
        position: static;
        top: 100%;
        left: 0;
        margin-top: 0.5rem; 
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .navbar-nav li {
        border-bottom: 1px #ddd solid;
    }
    .navbar-nav .dropdown-menu {
        background-color: #f7f7f7;
    }
    .header_section .navbar-expand-lg .navbar-collapse {
        display: none !important;
        flex-basis: 100%;
        justify-content: flex-start;
    }
    .navbar-collapse.collapse.show {
        display: block !important;
        position: absolute;
        top: 70px;
        background: #fff;
        width: 100%;
        z-index: 9;
        left: 0;
    }
    .nav-item.dropdown .dropdown-menu.show {
        display: block;
    }
    .navbar-brand img {
        width: 88px;
    }
    .accout_section.d-flex {
        display: flex!important;
        grid-gap: 6px;
    }
    .accout_section  i {
        width: 27px;
        height: 27px;
        line-height: 27px;
        font-size: 12px;
    }
    .top_left {
        text-align: center;
    }
    .top_left ul li {
        margin: 0px 10px 3px 0px;
    }
    .top_right.text-end{
        text-align: center !important;
    }
    .top_right ul {
        padding-left: 0px;
    }
    .accout_section .dropdown{
        position: inherit;
    }
    .accout_section .dropdown .dropdown-menu {
        padding: 10px 15px;
        width: 100%;
        left: 0;
    }
    .usefull_links_footer{
        padding-top: 25px;
    }
   .usefull_links{
    padding:8px 0px;
   }
    
}

@media (max-width:767px){
    h3 {
        font-size: 20px;
    }
    .newsletter_form input {
        width: 100%;
       margin-bottom: 15px;
    }
    .usefull_links h4 {
        font-size: 16px;
    }
    .pre-footer_inner p img {
        width: 30px;
    }
    .pre-footer_inner p {
        padding-left: 40px;
        font-size: 12px;
    }
    .newsletter_section h2 {
        margin-bottom: 14px;
        font-size: 16px;
    }
    .copy_right_inner {
        text-align: center;
    }
    .copy_right_right.text-end{
        text-align: center !important;
    }
    .copy_right_right ul {
        padding-left: 0px;
        margin-top: 15px;
    }
    .copy_right_right ul li {
        margin: 0px 10px 0px 0px;
    }
    .category_tab {
        flex-direction: column-reverse;
    }
    .tabs_with_accordion_wrapper_content {
        width: 100%;
    }
    .tabs_with_accordion_wrapper {
        width: 100%;
    }
    .tabs_with_accordion_wrapper ul li {
        margin-bottom: 2px;
    }
    .tabs_with_accordion_wrapper ul li:nth-last-child(1) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .tabs_inner {
        border-radius: 10px;
    }
    .tabs_inner img {
        border-radius: 10px;
    }
    .tabs_inner_conetnt h3 {
        font-size: 22px;
    }
    .tabs_inner_conetnt {
        top: 20px;
        left: 15px;
    }
    .tabs_inner_conetnt p {
        font-size: 13px;
        margin-bottom: 5px;
    }
    .tabs_inner_conetnt .btn_theme {
        padding: 8px 32px;
    }
    .tabs_with_accordion_wrapper ul {
        display: inline-block;
        height: auto;
        width: 100%;
    }
    .tabs_with_accordion_wrapper ul li a {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
        width: 100%;
        font-size: 16px;
        padding: 8px;
    }
    .breadcrumb_inner h2 {
        font-size: 24px;
        margin-bottom: 0px;
    }
    .about_us_content h2 {
        font-size: 24px;
        margin-top: 15px;
    }
    .dm-flip-card {
        margin-bottom: 25px;
    }
    .why_choose_us_heading_main h2 {
        font-size: 42px;
    }
    .why_choose_us_heading h2 {
        font-size: 26px;
    }
    .review_section {
        
        flex-wrap: wrap;
    }
}

