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

body{
    font-family: "Scada", sans-serif !important;
}

:root{
    --grey: #696967;
    --grey1: #d2d2d2;
    --grey2: #8f8f8f;
    --black: #313130;
    --purple: #98857c;
    --white: #fff;
    --red: #05aebc;
    --blue: #091428;
    --TAN-fnts: "Nexa";
}

@font-face {
    font-family: 'Nexa';
    src: url('../fonts/Nexa-Heavy.eot');
    src: url('../fonts/Nexa-Heavy.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Nexa-Heavy.woff2') format('woff2'),
        url('../fonts/Nexa-Heavy.woff') format('woff'),
        url('../fonts/Nexa-Heavy.ttf') format('truetype'),
        url('../fonts/Nexa-Heavy.svg#Nexa-Heavy') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Global css */

/* colors */
.txt-red{
    color: var(--red);
}
.bg-red{
    background-color: var(--red);
}
.txt-blue{
    color: var(--blue);
}
.bg-blue{
    background-color: var(--blue);
}
.txt-whites{
    color: var(--white);
}
.bg-whites{
    background-color: var(--white);
}
.txt-grey{
    color: var(--grey);
}
.bg-grey{
    background-color: var(--grey);
}

/* heading and paragraph */
h1{
    font-weight: 800;
    font-size: 80px;
}
h2{
    font-size: 45px;
    line-height: 45px;
    font-weight: 700;
    color: var(--red);
}
h3{
    font-size: 22px;
    line-height: 24px;
    font-weight: 400;
    color: var(--blue);
}
p{
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    color: var(--blue);
}

/* cbuttons */
.cta-btns{
    background-color: var(--red);
    padding: 3px 5px 3px 10px;
    border-radius: 12px;
    color: var(--white);
    font-size: 18px;
    font-weight: 300;
    line-height: 18px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.cta-btns i{
    font-size: 35px;
    line-height: 0;
}
.cta-btns:hover{
    background-color: var(--blue);
    color: var(--white);
}

/* category cards */
.category-cards{
    position: relative;
    width: 100%;
    transition: 0.5s;
}
.category-cards:hover{
    transform: translateY(-15px);
    width: 100%;
}
.category-cards img{
    border-radius: 10px;
    border: 2px solid var(--red);
}
.category-cards .cards{
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 0 18px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content:space-between;
}
.category-cards .cards h3{
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}
.category-cards .cards .btns{
    font-size: 30px;
    color: var(--white);
}

/* shipping-cards */
.shipping-cards{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.shipping-cards img{
    width: 40px;
    height: 44px;
    margin-right: 10px;
    object-fit: contain;
}
.shipping-cards .cards h3{
    font-size: 18px;
    font-weight: 600;
}
.shipping-cards .cards p{
    font-size: 18px;
    line-height: 20px;
}

/* product-cards */
.product-cards, .products .product-card{
    background-color: var(--white);
    width: 100%;
    height: 100%;
    transition: 0.5s;
    padding: 35px 10px 20px;
    border: 1px solid var(--grey1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.product-cards .text-Offers1{
    position: absolute;
    background-color: var(--blue);
    color: var(--white);
    font-size: 18px;
    line-height: 18px;
    border-radius: 0  0 10px 10px;
    width: 45px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px 8px;
    top: -1px;
    right: 65px;
}
.product-cards .text-Offers2{
    position: absolute;
    background-color: var(--red);
    color: var(--white);
    font-size: 18px;
    line-height: 18px;
    border-radius: 0  0 10px 10px;
    width: 45px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px 8px;
    top: -1px;
    right: 15px;
}
.product-cards:hover{
    transform: translateY(-15px);
}
.product-cards h3, li.product-card .woocommerce-loop-product__title{
    color: var(--red);
    font-size: 22px;
    line-height: 24px;
    margin-top: 20px;
}
.product-cards p, li.product-card p{
    font-size: 22px;
    margin-top: 20px;
}
.product-cards .cta-btns .cart-icon{
    width: 35px;
}
.product-cards .btns-stars{
    font-size: 18px;
}

/* hvr-grow-shadow */
.hvr-grow-shadow{
    transition: 0.5s;
}
.hvr-grow-shadow:hover{
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* hvr-float-shadow */
.hvr-float-shadow{
    transition: 0.5s;
}
.hvr-float-shadow:hover{
    transform: translateY(-15px);
}

/* borders */
.sky-brdrs-rads{
    border: 4px solid var(--red);
    border-radius: 10px;
}
.sky-brdrs{
    border-image: linear-gradient(to right, rgba(255,0,0,0), var(--red), rgba(255,0,0,0)) 1;
    border-top: 4px solid var(--red);
    border-bottom: 4px solid var(--red);
}

/* tabs navs */
.nav-pills .nav-link{
    background-color: var(--blue);
    color: var(--white);
    border-radius: 15px;
    padding: 11px 30px !important;
    margin: 10px;
    font-size: 24px;
    line-height: 27px;
}
.nav-pills .nav-link.active{
    color: var(--blue);
    background-color: var(--white);
}
.nav-pills .nav-link:hover{
    color: var(--blue);
    background-color: var(--white);
}

/* accordions */
.accordions{
    position: relative;
    padding: 0 0 20px;
}
.accordions::before{
    content: "";
    position: absolute;
    border-left: 3px solid var(--red);
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: 26px;
}
.accordions .card{
    background-color: transparent;
    border: 0;
}
.accordions .card-header{
    margin-top: 20px;
    padding: 0;
    border-bottom: 0;
}
.accordions .card-body{
    font-size: 18px;
    padding-top: 0;
}
.accordions .card-header a{
    background-color: var(--blue);
    border-bottom: 0;
    color: var(--white);
    font-size: 21px;
    line-height: 24px;
    padding: 18px 30px 18px 49px;
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.accordions .card-header a.collapsed::before{
    content: "";
    position: absolute;
    background: url(../../assets-new/images/accordion-radio.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 100px;
    width: 24px;
    height: 24px;
    padding: 2px;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
}
.accordions .card-header a:not(.collapsed)::before{
    content: "";
    position: absolute;
    background: url(../../assets-new/images/accordion-radio-active.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 100px;
    width: 24px;
    height: 24px;
    padding: 2px;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
}
.accordions .card-header a.collapsed::after{
    content: "\F231";
    font-size: 14px;
    font-family: 'bootstrap-icons';
    line-height: 0;
    transition: 0.5s;
    color: var(--red);
    right: 12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.accordions .card-header a:not(.collapsed)::after{
    content: "\F229";
    font-family: 'bootstrap-icons';
    font-size: 14px;
    line-height: 0;
    transition: 0.5s;
    color: var(--white);
    right: 12px;
    position: absolute;
    top: 50%;
}
.accordions .card-header a:not(.collapsed){
    background-color: var(--red);
    border-radius: 10px 10px 0 0;
    color: var(--white);
}
.accordions .show{
    background-color: var(--red);
    border-radius: 0 0 10px 10px;
    transition: 0.5s;
    color: var(--white);
}

/* menu mobile accordions */
.mobile-acordions .card{
    background-color: transparent;
    border: 0;
}
.mobile-acordions .card-header{
    margin-top: 5px;
    padding: 0;
    border-bottom: 0;
}
.mobile-acordions .card-header-unset{
    margin-top: 5px;
    padding: 0;
    border-bottom: 0;
}
.mobile-acordions .card-body{
    padding: 0 10px 0;
}
.mobile-acordions .card-body a{
    background-color: var(--red);
    border-bottom: 0;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
    padding: 8px 18px;
    border-radius: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.mobile-acordions .card-header-unset a{
    background-color: var(--red);
    border-bottom: 0;
    color: #fff;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.mobile-acordions .card-header-unset a:not(.collapsed){
    background-color: var(--red);
    border-radius: 0;
    color: var(--white);
}
.mobile-acordions .card-header a{
    background-color: var(--red);
    border-bottom: 0;
    color: #fff;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.mobile-acordions .card-header a:not(.collapsed){
    background-color: #007f9f;
    border-radius: 0;
    color: var(--white);
}
.mobile-acordions .card-header a.collapsed::after{
    content: "»";
    font-size: 20px;
    line-height: 0;
    transition: 0.5s;
    color: #fff;
    right: 12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.mobile-acordions .card-header a:not(.collapsed)::after{
    content: "»";
    transform: translateY(-50%) rotate(90deg);
    content: "»";
    font-size: 20px;
    line-height: 0;
    transition: 0.5s;
    color: var(--white);
    right: 12px;
    position: absolute;
    top: 50%;
}
.mobile-acordions .show{
    background-color: #032050;
    border-radius: 0;
    transition: 0.5s;
    color: var(--white);
}

/* owl pagination */
.owl-theme .owl-dots .owl-dot span {
    background: var(--blue) !important;
    width: 7px;
    height: 7px;
    margin: 5px 3px;
}
.owl-theme .owl-dots .owl-dot.active span {
    background: var(--red) !important;
    width: 20px;
    height: 7px;
}
/* .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: -50px;
    z-index: 99;
    position: relative;
} */

/* top menue */
.top-menue{
    padding: 20px 0 10px;
}
.top-menue .icons2 a{
    color: var(--blue);
    font-size: 16px;
    padding: 10px 10px;
    text-decoration: none;
}
.top-menue .icons2 a:hover{
    /* background-color: var(--red); */
    color: var(--red);
}
.top-menue .phone{
    display: flex;
    text-align: right;
}
.top-menue .phone i{
    color: var(--blue);
    font-size: 16px;
    margin-right: 7px;
    line-height: 0;
}
.top-menue .phone a{
    color: var(--blue);
    font-size: 16px;
}
.top-menue .phone a:hover{
    color: var(--red);
}
.top-menue .bg-search{
    background-color: var(--grey1);
    height: 30px;
}
.bg-search input::placeholder{
    font-size: 16px;
    color: var(--blue);
}

/* main menue */
.navs .logos img{
    /* width: 70%; */
    display: block;
    margin-right: auto;
    position: relative;
}
.navs .navbar-toggler{
    z-index: 99;
}
.navs ul{
    /* display: flex; */
    margin: 0;
    padding: 0;
}
.navs ul li{
    padding: 0px 8px;
    list-style-type: none;
}
.navs ul li a{
    color: var(--blue);
    font-size: 16px;
    position: relative;
    font-weight: 500;
    text-decoration: none !important;
    /* padding: 20px 0 20px 2px !important; */
}
.navs ul li a:hover{
    color: var(--red);
}
.navs .phone{
    display: flex;
    text-align: right;
    position: relative;
}
.navs .phone span{
    position: absolute;
    top: -7px;
    right: -4px;
    background-color: var(--red);
    width: 16px;
    height: 16px;
    display: flex;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    font-size: 9px;
    line-height: 0;
}
.navs .phone i{
    color: var(--blue);
    font-size: 20px;
    /* margin-right: 7px; */
    line-height: 0;
}
.navs .phone a{
    color: var(--blue);
    font-size: 18px;
}
.navs .phone a:hover{
    color: var(--red);
}
.navs .login-icons{
    margin-left: auto;
}

.navs-top{
    position: fixed;
    background-color: var(--white);
    width: 100%;
    top: 0;
    z-index: 99;
    padding-top: 0;
    padding-bottom: 10px;
    animation: anim 0.5s;
}
@keyframes anim{
    from {top: -200px;}
    to {top: 0px;}
}

/* banners */
.banners{
    position: relative;
}
.banners .backgrd-video::after{
    content: "";
    background-color: #d3c8beb2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banners .banner-content{
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.banners .banner-content h1{
    font-weight: 100;
    font-size: 40px;
    line-height: 42px;
    letter-spacing: 1px;
    color: var(--white);
}
.banners .banner-content h1 b{
    font-family: system-ui !important;
    font-weight: 100 !important;
}

.banners .banner-content h1 .span1 {
	font-family: var(--TAN-fnts);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -2px;
	font-size: 80px;
	line-height: 86px;
	text-shadow: 0px 2px 20px #05adbcf1;
	color: #00293cc2;
	display: block;
	-webkit-text-stroke: 1px var(--white);
	/* -moz-transform: matrix( 4.12074897423752,-4.32647169136934e-16,0,4.12543710995644,0,0); */
	/* -webkit-transform: matrix( 4.12074897423752,-4.32647169136934e-16,0,4.12543710995644,0,0); */
}
.banners .banner-content h1 .span2 {
	font-family: var(--TAN-fnts);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -8px;
	font-size: 142px;
	line-height: 145px;
	text-shadow: 0px 2px 20px #05adbcf1;
	color: #00293cbd;
	display: block;
	-webkit-text-stroke: 1px var(--white);
	/* -moz-transform: matrix( 4.12074897423752,-4.32647169136934e-16,0,4.12543710995644,0,0); */
	/* -webkit-transform: matrix( 4.12074897423752,-4.32647169136934e-16,0,4.12543710995644,0,0); */
}
.banners .banner-content .brd-bottm{
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
}
.banners .banner-content p{
    color: var(--white);
}
/* owl pagination */
.banners .owl-theme .owl-dots .owl-dot span {
    background: var(--grey1) !important;
    width: 7px;
    height: 7px;
}
.banners .owl-theme .owl-dots .owl-dot.active span {
    background: var(--red) !important;
    width: 20px;
    height: 7px;
}
.banners .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: -50px;
    z-index: 99;
    position: relative;
}

/* Shop-By-Category-sec */
.Shop-By-Category-sec{
    background-image: url("../../assets-new/images/category-bg-img.jpg");
    background-position: center top;
    background-repeat: no-repeat, repeat;
    background-size: cover;
    margin-top: 30px;
    padding-top: 20px;
}
.Shop-By-Category-sec img{
    border-radius: 10px;
    border: 2px solid var(--red);
}

/* free-shipping-sec */
.free-shipping-sec{
    margin-top: 50px;
}
.free-shipping-sec .col-md-4::after{
    content: "";
    border-right: 1px solid #cac9c9;
    position: absolute;
    background-color: var(--white);
    height: 100%;
    top: 0;
    left: 0;
}
.free-shipping-sec .col-md-4:first-child::after{
    display: none;
}

/* free-shipping-sec */
.Best-Sellers-sec{
    margin-top: 50px;
}
.Best-Sellers-sec .row .col-lg-3.col-6.mt-4 {
	padding: 0 6px;
}
/* Pouches-pups-sec */
.Pouches-pups-sec h2{
    font-size: 60px;
    line-height: 47px;
    font-weight: 700;
}
.Pouches-pups-sec h3{
    font-size: 50px;
    line-height: 47px;
    font-weight: 700;
}
.Pouches-pups-sec .sub-text{
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    color: var(--red);
}


/* What-Clients-Say-sec */
.What-Clients-Say-sec{
    margin-top: 50px;
}
.What-Clients-Say-sec .cards{
    padding: 20px 20px;
    border-radius: 12px;
    background-color: var(--red);
    position: relative;
    max-width: 400px;
    opacity: 0.3;
}
.What-Clients-Say-sec .cards .person-imgs img{
    width: 75px;
    margin-right: 15px;
    border-radius: 100%;
    border: 3px solid var(--white);
}
.What-Clients-Say-sec .cards .person-content h3{
    color: var(--white);
    font-size: 40px;
    line-height: 40px;
    font-weight: bold;
}
.What-Clients-Say-sec .cards .person-content p{
    color: var(--white);
    font-size: 22px;
    line-height: auto;
}
.What-Clients-Say-sec .cards p{
    color: var(--white);
    font-size: 18px;
    line-height: 25px;
}
.What-Clients-Say-sec .owl-theme .owl-dots .owl-dot span {
    background: var(--white);
}
.What-Clients-Say-sec .owl-carousel .owl-stage-outer {
    padding: 50px 0 50px;
}
.What-Clients-Say-sec .owl-carousel .owl-item.center .item {
    transform: scale(1.200) translateZ(30px);
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); */
}
.What-Clients-Say-sec .owl-carousel .owl-item.center .item .cards {
    background-color: var(--blue);
    opacity: 1;
}
.What-Clients-Say-sec .owl-carousel .owl-item.center .item .cards h3 {
    color: var(--red);
}

/* Brands-We-Carry-sec */
.Brands-We-Carry-sec .card{
    padding: 15px;
    text-align: center;
    border: 1px solid var(--red);
}
.Brands-We-Carry-sec .card img{
    width: 117px;
    height: auto;
    margin: auto;
    object-fit: contain;
}
.Brands-We-Carry-sec .owl-brds{
    position: relative;
}
.Brands-We-Carry-sec .owl-carousel .item{
    padding: 30px 0;
}
.Brands-We-Carry-sec .owl-brds::after{
    content: "";
    position: absolute;
    background-color: var(--red);
    height: 10px;
    width: 100%;
    z-index: -1;
    top: 40%;
    transform: translateY(-50%);
}

/* leave-review-sec */
/*.leave-review-sec .item h2 {
    letter-spacing: 2px;
    font-size: 114px;
    line-height: 100px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 0;
    white-space: nowrap;
}*/
:root{
  --main_color:#35a0d0;
  --sub_color:#1f3340;
}
.news_strip{
  background: var(--sub_color);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
.news_strip:before,
.news_strip:after{
  width: 100%;
  height: 5px;
  left: 0;
  position: absolute;
  content: "";
  background: linear-gradient(90deg,
    rgba(31,51,64,1) 0%,
    rgba(32,83,105,1) 33%,
    rgba(34,126,164,1) 44%,
    rgba(35,160,208,1) 50%,
    rgba(31,37,45,1) 100%);
}
.news_strip:before{ top: 0; }
.news_strip:after{ bottom: 0; }
.news_strip h2{
  color:#fff;
  font-size:114px;
  line-height:100px;
  margin:0;
  font-weight:700;
  white-space:nowrap;
  padding-right:120px; 
}
.news_strip h2 span{
  color:var(--main_color);
}
.marquee{
  width:100%;
  overflow:hidden;
}
.marquee__inner{
  display:flex;
  width:max-content;
  animation:scrollLoop 18s linear infinite;
}
@keyframes scrollLoop{
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}
.news_strip:hover .marquee__inner{
  animation-play-state: paused;
}
@media(max-width:768px){
  .news_strip h2{
    font-size:48px;
    line-height:56px;
    padding-right:60px;
  }
}
.whats-more-sec .right-sec {
	margin-top: 36px !important;
}
.whats-more-sec .cards h3{
    font-size: 18px;
    line-height: 24px;
}
.whats-more-sec .cards .btns a{
    font-size: 18px;
    line-height: 18px;
}

/* footer */
.footers{
    /* background-image: linear-gradient(to right, var(--white),var(--white), #001638, #001638); */
    background-image: url("../../assets-new/images/footer-bg-img.jpg");
    background-position: center;
    background-repeat: no-repeat, repeat;
    background-size: cover;
}
.footers p{
    color: var(--white) !important;
}
.top-footer p{
    font-size: 30px;
    line-height: 30px;
}
footer .middle-footer{
    border-image: linear-gradient(to right, rgba(255,0,0,0), #fff, rgba(255,0,0,0)) 1;
    border-top: 2px solid var(--black);
}
footer .middle-footer .col-lg-3{
    position: relative;
}
footer .middle-footer .col-lg-3::after{
    content: "";
    border-right: 1px solid var(--dark);
    position: absolute;
    background-color: var(--white);
    height: 100%;
    top: 0;
    left: 0;
}
footer .middle-footer .col-lg-3:first-child::after{
    display: none;
}
footer ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
footer ul li{
    padding: 10px 0 0 0;
}
footer ul li a{
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    position: relative;
    text-decoration: none !important;
}
footer ul li a:hover{
    color: var(--blue);
}
footer .logos{
    width: 250px;
}
footer .cta-btns{
    background-color: var(--red) !important;
    border-color: var(--red) !important;
    color: var(--white) !important;
    text-decoration: none;
    border-radius: 15px;
    font-size: 14px;
    padding: 8px 26px;
}
footer h3{
    color: var(--white);
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 20px !important;
    margin-top: 8px;
    position: relative;
}
footer h3::after{
    content: "";
    width: 80px;
    height: 2px;
    position: absolute;
    display: block;
    background-color: var(--white);
    bottom: -13px;
}
footer .icons{
    display: flex;
}
footer .icons a{
    color: var(--white);
    padding: 0 15px 0 0;
    font-size: 17px;
    text-decoration: none;
    word-break: break-all;
}
footer .icons a:hover{
    color: var(--blue);
}

footer .btom-foot{
    border-top: 1px solid var(--black);
}
footer .btom-foot .icons .img {
    width: 28px;
}
footer .btom-foot .icons .img1 {
    width: 55px;
}
footer .btom-foot .icons .img2 {
   width: 40px;
}
footer .btom-foot .icons .img3 {
    width: 20px;
}





/* scroll top */
.scroll-top{
    position: fixed;
    bottom: 25px;
    right: 5px;
    background-color: var(--blue);
    border-radius: 100px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white) !important;
    z-index: 99;
}

/* loader */
.modals{
    /* position: relative; */
    background-color: #ffffffe3;
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 1999;
}
.spiners {
  width: 30px;
  height: 30px;
  background-color: #be871b;
  position: relative;
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
@keyframes example {
  0%   {background-color:#98857c; left:0px; top:0px;}
  25%  {background-color:#be871b; left:70px; top:0px;}
  50%  {background-color:#eeca70; left:70px; top:70px;}
  75%  {background-color:#98857c; left:0px; top:70px;}
  100% {background-color:#be871b; left:0px; top:0px;}
}

/* HTML: <div class="loader"></div> */
/* .loader {
  width: 60px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side,#000 90%,#0000);
  background: 
    var(--_g) 0%   50%,
    var(--_g) 50%  50%,
    var(--_g) 100% 50%;
  background-size: calc(100%/3) 50%;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
    20%{background-position:0%   0%, 50%  50%,100%  50%}
    40%{background-position:0% 100%, 50%   0%,100%  50%}
    60%{background-position:0%  50%, 50% 100%,100%   0%}
    80%{background-position:0%  50%, 50%  50%,100% 100%}
} */

/* HTML: <div class="loader"></div> */
.loader {
  width: 60px;
  aspect-ratio: 4;
  --_g: no-repeat radial-gradient(circle closest-side,#05aebc 90%,#0000);
  background: 
    var(--_g) 0%   50%,
    var(--_g) 50%  50%,
    var(--_g) 100% 50%;
  background-size: calc(100%/3) 100%;
  animation: l7 1s infinite linear;
}
@keyframes l7 {
    33%{background-size:calc(100%/3) 0%  ,calc(100%/3) 100%,calc(100%/3) 100%}
    50%{background-size:calc(100%/3) 100%,calc(100%/3) 0%  ,calc(100%/3) 100%}
    66%{background-size:calc(100%/3) 100%,calc(100%/3) 100%,calc(100%/3) 0%  }
}

@media (max-width: 1499px) {
   h1{
    font-size: 30px !important;
   } 
   h2{
    font-size: 30px !important;
    line-height: 36px !important;
   }
   h3{
    font-size: 20px !important;
   }
   p{
    font-size: 16px !important;
    line-height: 18px !important;
   }
   /* .navs ul li a {
        padding: 20px 0 20px 10px !important;
    } */
   .navs a{
    font-size: 14px !important;
   }
   .top-menue a{
    font-size: 14px !important;
   }
    footer a {
        font-size: 14px !important;
    }
   .bg-search input::placeholder{
        font-size: 12px;
    }
   .banners .banner-content h1 .span1{
    font-size: 80px;
    line-height: 80px;
   }
   .banners .banner-content h1 .span2{
    font-size: 130px;
    line-height: 120px;
    letter-spacing: -4px;
   }
   .category-cards .cards h3{
    font-size: 18px !important;
   }
   .product-cards h3{
    font-size: 18px !important;
    line-height: 22px !important;
   }
   .product-cards .btns-stars {
        font-size: 14px;
    }
   .cta-btns{
        font-size: 14px;
        line-height: 13px;
   }
   .product-cards .cta-btns .cart-icon{
        width: 25px;
   }
   .cta-btns i {
        font-size: 25px;
        line-height: 0;
    }
    .product-cards .text-Offers1{
        font-size: 14px;
        line-height: 14px;
        font-weight: 600;
    }
    .product-cards .text-Offers2{
        font-size: 14px;
        line-height: 14px;
        font-weight: 600;
    }
    .nav-pills .nav-link {
        padding: 6px 24px !important;
        font-size: 16px;
    }
    .Pouches-pups-sec h3 {
        font-size: 30px !important;
        line-height: 30px !important;
    }
    .Pouches-pups-sec .sub-text {
        font-size: 22px !important;
        line-height: 26px !important;
    }
    .leave-review-sec .item h2 {
        font-size: 84px !important;
        line-height: 100px !important;
    }
    .accordions .card-header a{
        font-size: 18px;
        line-height: 22px;
    }
    .accordions .card-body {
        font-size: 14px;
    }
    .whats-more-sec .cards h3 {
        font-size: 18px !important;
        line-height: 20px;
    }
    .whats-more-sec .cards .btns a {
        font-size: 14px;
        line-height: 16px;
    }
    .top-footer p {
        font-size: 22px !important;
        line-height: 26px !important;
    }
    .What-Clients-Say-sec .cards .person-content h3 {
        font-size: 25px !important;
        line-height: 28px !important;
    }
    .What-Clients-Say-sec .owl-carousel .owl-item.center .item .cards p {
        font-size: 12px !important;
    }
    .What-Clients-Say-sec .cards p{
        font-size: 13px !important;
    }
    .shipping-cards .cards h3 {
        font-size: 14px !important;
    }
}
@media screen and (min-width: 1500px){
    .container {
        max-width: 1654px !important;
    }
    .What-Clients-Say-sec .cards{
        max-width: 700px;
    }
}

@media screen and (min-width: 1200px){
    .container {
        max-width: 1200px;
    }
}

@media screen and (max-width: 992px){
   .banners .banner-content {
        top: 50%;
        transform: translateY(-50%);
    }
    .banners .banner-content h1 .span1{
        font-size: 65px !important;
        line-height: 80px;
    }
    .banners .banner-content h1 .span2{
        font-size: 80px;
        line-height: 55px;
    }
    footer .logos {
        width: 180px;
    }
    .leave-review-sec .item h2 {
        font-size: 76px;
    }
}
@media screen and (max-width: 1199px){
    /* Override Bootstrap collapse styles */
    .navs .navbar-collapse {
        position: fixed;
        top: 0;
        bottom: 0;
        left: -250px; /* Hidden off-screen */
        width: 250px;
        height: 100vh !important;
        background: #093c48 !important;
        overflow-y: auto;
        transition: all 0.3s ease;
        z-index: 999 !important;
        padding-top: 10px;
    }

    /* Show when active */
    .navs .navbar-collapse.show {
        left: 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    }
    /* .navs ul {
        margin-top: 70px;
    } */

    /* Optional: cover the screen when menu is open */
    .navbar-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 99;
        transition: all 0.3s ease;
    }
    .navs .login-icons{
        margin-left: auto;
        margin-right: auto;
    }
}
@media screen and (max-width: 768px){
    .banners .banner-content {
        top: 50%;
        transform: translateY(-50%);
    }
    .banners .banner-content h1 .span1{
        font-size: 45px !important;
        line-height: 60px !important;
    }
    .banners .banner-content h1 .span2{
        font-size: 80px !important;
        line-height: 50px !important;
    }
    .navs ul {
        margin-top: 10px;
    }
    .navs ul li{
        padding-bottom: 0;
    }
    .navs .logos img {
        width: 100px;
    }
    .navs .icons a {
        font-size: 20px !important;
        padding: 12px 15px !important;
    }
    /* Override Bootstrap collapse styles */
    .navs .navbar-collapse {
        left: -1000px; /* Hidden off-screen */
        width: 100% !important;
        height: 100% !important;
    }
    .modal-backdrop {
        width: 100%;
        height: 100%;
    }
    .banners .banners-images img{
        height: 486px;
        object-fit: cover;
    }
    footer .middle-footer .col-lg-3::after{
        display: none;
    }
    .leave-review-sec .item h2 {
        font-size: 65px;
    }
    .login-icons{
        padding-right: 0;
    }
}


@media screen and (max-width: 576px){
    .navs .phone a {
        font-size: 12px !important;
    }
    .navs .phone i {
        font-size: 14px !important;
    }
    .banners .banner-content h1 {
        font-size: 25px !important;
        line-height: 25px !important;
        margin-top: 0;
    }
    .banners .banner-content h1 b {
        margin-left: 0;
    }
    .banners .banner-content h1 span {
        font-size: 40px !important;
        line-height: 40px !important;
        margin-top: 10px;
    }
    .banners .banner-content .btns a {
        padding: 4px 8px !important;
        font-size: 12px !important;
    }
    .banners .banner-content p {
        font-size: 12px !important;
        line-height: 16px !important;
        margin: 0 auto 8px;
        width: auto;
    }
    .banners .banner-content .btns a i {
        font-size: 20px !important;
    }
    .banners .banner-content {
        top: unset;
        transform: unset;
        bottom: 50px;
        text-align: center;
    }
    .banner-content img{
        width: 175px !important;
        margin: auto;
    }
    .footers{
        text-align: center;
    }
    footer h3::after {
        left: 50%;
        transform: translateX(-50%);
        display: none;
    }
    footer h3 {
		font-size: 20px !important;
		margin: 0px !important;
	}
	.shipping-cards .cards h3 {
	font-size: 16px !important;
	line-height: 20px;
	margin-bottom: 7px !important;
}
    .top-footer p {
        font-size: 24px !important;
    }
    .free-shipping-sec .col-md-4::after{
        display: none;
    }
     .What-Clients-Say-sec .cards{
        max-width: 250px;
    }
    .leave-review-sec .item h2 {
        font-size: 47px !important;
    }
    .cta-btns{
        font-size: 16px !important;
    }
    .nav-pills .nav-link{
        margin: 4px;
    }
    .What-Clients-Say-sec .cards{
        text-align: center;
    }
    .shipping-cards {
        flex-direction: column;
        text-align: center;
    }
    .shipping-cards .cards h3 {
        margin-top: 15px;
    }
    .category-cards .cards {
        padding: 0 10px;
    }
    .category-cards .cards .btns {
        font-size: 20px !important;
    }
    .category-cards .cards h3{
        font-size: 12px !important;
        line-height: 14px !important;
    }
    .whats-more-sec .cards h3 {
        font-size: 20px !important;
        line-height: 24px !important;
    }
    .accordions .card-header a {
        font-size: 20px !important;
    }
    .accordions .card-body {
        font-size: 16px !important;
    }
    .What-Clients-Say-sec .cards .person-content h3 {
        font-size: 24px !important;
        line-height: 28px !important;
    }
    .What-Clients-Say-sec .cards .person-content p{
        font-size: 18px !important;
    }
    h2 {
        font-size: 38px !important;
        line-height: 38px !important;
    }
    .product-cards h3 {
        font-size: 18px !important;
        line-height: 20px !important;
    }
    .nav-pills .nav-link {
        padding: 11px 26px !important;
        font-size: 18px !important;
        line-height: 22px !important;
    }
    .Pouches-pups-sec h2 {
	font-size: 36px !important;
	line-height: 42px !important;
}
.Pouches-pups-sec h3 {
	font-size: 30px !important;
	line-height: 34px !important;
}
    .whats-more-sec .right-sec > .row > div:nth-child(3) {
	display: none;
}
.whats-more-sec .right-sec .cta-btns {
	margin: 0 auto;
	display: table;
	line-height: 28px;
}
.Shop-By-Category-sec .row .col-lg-3.col-6.mt-4 {
	padding: 0 6px;
}

}


/*
Project: Test
File: CSS 
*/
.needsclick.kl-private-reset-css-Xuajs1 {
	min-height: 0px !important;
}
.nav-bar{display: none;}
/* header nav{background: none; z-index: 1000; width: 100%;  float: left;} */
header nav ul{display: flex; gap: 15px; margin-bottom: 0; justify-content: flex-end; align-items: center;}
header nav ul li{/* display: inline-block; */position: relative;}
header nav:after{content: ""; display: block; clear: both;}
header nav ul li a{color: #fff; display: block; position: relative; font-size: 16px; font-weight: 500; position: relative;}
header nav ul li a:after{position: absolute; content: ""; bottom: 0; left: 0; width: 0; height: 3px; opacity: 0; transition: 0.3s ease-in-out;
    background: rgb(35,168,218);
background: linear-gradient(90deg, rgba(35,168,218,1) 0%, rgba(32,89,114,1) 68%, rgba(31,51,64,1) 86%, rgba(31,37,45,1) 100%);
}
header nav > ul > li > a:hover:after, header nav ul li a.active_menu:after{opacity: 1; width: 100%;}
header nav ul li a:hover, header nav ul li a.active_menu{color: var(--main_color);}
.sub-menu li a:after{display: none;}
header nav ul li:last-child a{margin-right: 0;}

@media (min-width: 768px) {
header nav ul li ul.sub-menu{left: 0;}

}

@media (min-width: 992px) {
    .mobile_menu{display: block; }
/* header nav ul li:hover .down-icon{border: #000 solid; border-width: 0 2px 2px 0;} */

} 

header nav ul li .sub-menu li{margin: 0; /*float: none;*/ display: block!important; width: 100%;    border-bottom: 1px solid #dbdbdb;}
header nav ul li .sub-menu li:last-child{border-bottom: 0;}
header nav ul li .sub-menu li a{padding: 7px 15px!important; display: block!important; color: var(--blue)!important; margin: 0!important; font-size: 16px;}
header nav ul li .sub-menu li a:hover{color: var(--red)!important;}
header nav ul li .sub-menu li a:before{display: none;}
header nav ul li .children span{display: none; }
header nav ul li .children li{display: block; width: 100%; border-bottom: 1px solid #ffffff99;}
header nav ul li .children li a{margin-left: 30px; }
header nav ul li .fa-angle-down{position: relative;  top: 3px;}
header nav ul li a svg{width: 30px; height: 20px; float: right; margin-top: 3px;}
.mobile-logo,.mobile-footer{display: none;}
/****************start new CSS****************/
.down-icon{position: absolute; content: ""; top: 7px; right: 6px; border: #000 solid; border-width: 0 2px 2px 0; padding: 2px; transform: rotate(45deg); z-index: 99; width: 6px; height: 6px;
transition: all 500ms ease-in-out;}
/**************start 2nd step_menu*************/
header nav ul li ul.sub-menu{display: none; background: var(--white);box-shadow: 0 4px 20px #00000029; border-radius: 10px; position: absolute; width: 200px; z-index: 1000; margin: 0; transition: all 500ms ease-in-out;}
header nav ul li:hover > .sub-menu{display: block;}
/*header nav ul li:hover > .sub-menu li:hover{background: var(--red);}*/
header nav ul li:hover ul.sub-menu li ul.sub-menu{position: absolute; left: 200px !important; top: 0; background: var(--white);}
header nav ul li:last-child .sub-menu{left: -95px;}
.whats-more-sec h3 a {
    color: var(--blue);
    text-decoration: none;
}
.showDesktop {
	display: block;
}
.showMobile {
	display: none;
}

/*Category page css start*/
.te_default_woo-page {
	margin-top: 50px;
	padding-block: 40px;
}
/*---------------Product Category Page Add-ons -start 22/12/24---------------*/
.coa-wrap{margin: 60px 0px;}
.coa-wrap h2{margin-bottom: 15px;}
.coa-wrap p{
   font-size: 20px;
   line-height: 26px;
   margin-top: revert;
}
.coa-wrap .accordion {
   background-color: #eee;
   color: #444;
   cursor: pointer;
   padding: 18px;
   width: 100%;
   border: none;
   text-align: left;
   outline: none;
   font-size: 18px;
   transition: 0.4s;
   font-family: var(--font-heading);
   margin-top: 20px;
   display: flex;
   justify-content: space-between;  /* Align the content to both ends */
   align-items: center;  /* Center the content vertically */
}
.coa-wrap .accordion.active, .coa-wrap .accordion:hover {
   background-color: #ccc;
}
.coa-wrap .accordion span {
   font-weight: bold;
   font-size: 24px;
   color: #777;
}
.coa-wrap .accordion.active span {
   content: "\2212"; /* Minus sign */
}
.coa-wrap .panel {
   padding: 0 18px;
   background-color: white;
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.2s ease-out;
}
.coa-wrap h3{margin: 15px 0px;}
/*---------------Product Category Page Add-ons -end 22/12/24---------------*/

.product-rating span {
	color: #ebb01e;
	font-size: 20px;
}
.te_default_woo-page {
	margin-top: 50px;
	/*margin-top: 0px;*/
	padding-block: 40px;
}

.filters-container form > div {
	margin-bottom: 20px;
	background-color: #f5f5f5;
  	box-shadow: 0 0 14px #c6c6c6;
  	border-radius: 15px;
}
.filters-container h4 {
	background-color: var(--main_color);
    font-size: 18px;
    line-height: 23px;
    color: #fff !important;
    padding: 12px 15px;
    font-weight: 600;
    text-transform: uppercase;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    font-family: var(--font-heading);
    position: relative;
}
.filters-container li {
	border-bottom: 1px solid #ccc;
	padding: 9px 10px;
}
.filter-content .show-more {
	text-align: left;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	display: block;
	padding: 10px 10px;
}
.filter-content .show-more:hover, .filter-content .show-morefocus-within {
	color: var(--color-navy-blue);
}
.te_woo-addon-cat {
	width: 90%;
	margin: 40px auto;
}
.category-info, .woo-addon-cat-content {
	display: block;
	margin-bottom: 50px;
	box-shadow: 0 0 14px #d0d0d0;
	border-radius: 15px;
	padding: 15px 15px 20px;
}
.category-info h2, .woo-addon-cat-content h2 {
	font-family: var(--font-heading);
	font-size: 28px;
	color: var(--color-dark);
	line-height: 32px;
	margin: 10px 0px 15px;
}
.category-info h2 b, .woo-addon-cat-content h2 b{font-weight: 500 !important;}
.category-info p, .woo-addon-cat-content p {
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 15px;
	/*text-align: justify;*/
}
.woo-addon-cat-content ul, .woo-addon-cat-content li,.woo-addon-cat-content ol {
	padding: 0 20px;
	margin: 0;
	list-style: disc;
}
.woo-addon-cat-content li {
	padding: 0px;
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 15px;
	/*text-align: justify;*/
}
.te_woo-addon-cat .read-more-btn,#collection-top-seo-cont {
	width: auto;
	text-align: center;
	padding: 10px 25px;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	background-color: var(--main_color);
	border-radius: 12px;
	border: 2px solid transparent;
	display: table;
	margin: 15px auto;
}
.te_woo-addon-cat .read-more-btn:hover, .te_woo-addon-cat .read-more-btn:focus-within,#collection-top-seo-cont:hover,#collection-top-seo-cont:focus-within {
	background: transparent;
	border-color: var(--main_color);
	color: var(--main_color);
}
.coa-wrap.catgory-page-faq {
	width: 90%;
	margin: 30px auto 40px;
}
.coa-wrap.catgory-page-faq h2,.collection-top-seo-cont h2{
  font-size: 34px;
  font-weight: 700;
  color: var(--main_color);
  margin-bottom: 10px;
}
.collection-top-seo-cont {
	width: 90%;
	margin: 0 auto 40px;
	text-align: center;
}
.woocommerce ul.products li.product_card {
	background-color: var(--white);
	height: 100%;
	transition: .5s;
	padding: 35px 10px 20px !important;
	border: 1px solid var(--grey1);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative !important;
}
.woocommerce ul.products li.product .button {
	background-color: var(--red);
	padding: 3px 5px 3px 10px;
	border-radius: 12px;
	color: var(--white);
	font-size: 18px;
	font-weight: 300;
	line-height: 18px;
	text-transform: uppercase;
	display: inline-flex !important;
	align-items: center;
	gap: 10px;
	width: 148px;
	margin: 0 auto;
}
.woocommerce ul.products li.product .button .cart-icon {
	width: 35px;
	margin: 0px !important;
}
.woocommerce ul.products li.product .button:hover {
	background-color: var(--blue);
	color: var(--white);
}
.woocommerce ul.products li.product_card h3 {
	color: var(--red);
	font-size: 22px !important;
	line-height: 24px;
	margin: 10px 0px !important;
	text-align: center;
	min-height: 70px;
}
.woo-product-grid h1 {
	font-size: 45px;
	line-height: 45px;
	font-weight: 700;
	color: var(--red);
}
.woocommerce ul.products li.product_card span.price {
	font-size: 22px;
	line-height: 25px;
	font-weight: 400;
	color: var(--blue);
	text-align: center;
	margin: 15px 0px 0px;
}
.woocommerce ul.products li.product .star-rating {
	font-size: .857em;
	text-align: center;
	margin: 0 auto;
}
.blog-wraper .accordions p {
	color: #fff;
	font-size: 17px;
}
.blog-wraper .right-sec .btns a {
	font-size: 18px;
	line-height: 18px;
}
.blog-wraper .right-sec h3 {
	font-size: 18px;
	line-height: 24px;
}
.blog-wraper .right-sec h3 a {
	color: var(--blue);
	text-decoration: none;
}

/*Category page css end*/
/*Blog listing page css start*/
.blog-wraper {
    padding: 60px 0px;
}
.blog-wraper p {
    margin-bottom: 0px;
}
.blog-wraper.blog-listing-page fieldset {
    min-height: 520px;
    margin-bottom: 30px;
}
.blog-wraper fieldset {
    position: relative;
    box-shadow: 0 0 14px #eaeaea;
    transition: all ease 0.3s;
    min-height: 450px;
    border-radius: 15px;
    margin-bottom: 20px;
    transform: scale(1);
    border-bottom: 6px solid #fff;
}
.blog-wraper fieldset:hover {
    transform: scale(1.05);
    border-bottom: 6px solid var(--main_color);
    transition: all ease 0.3s;
}
.blog-wraper fieldset .blog-pic-holder {
    height: 200px;
    width: 100%;
    display: block;
    position: relative;
}
.blog-wraper fieldset .blog-pic-holder img {
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.blog-wraper fieldset .blog-pic-holder .post-date {
    background: #000;
    padding: 5px 15px;
    font-weight: 700;
    color: #fff;
    font-size: 12px;
}
.blog-wraper fieldset .blog-content-holder {
    padding: 15px 20px;
}
.blog-wraper fieldset .blog-content-holder h3 {
    font-size: 22px;
    color: var(--main_color);
    font-weight: 700;
    text-align: center;
    line-height: 27px;
    min-height: 55px;
    font-family: var(--font-heading);
}
.blog-wraper fieldset .blog-content-holder h3 a {
    color: var(--main_color);
}
.blog-wraper fieldset .blog-content-holder h3 a:hover {
    color: var(--main_color);
    text-decoration: underline;
}
.blog-wraper fieldset .blog-content-holder p {
    font-size: 14px;
    color: #819291;
    font-weight: 600;
    line-height: 20px;
    min-height: 82px;
    text-align: center;
}
.blog-wraper fieldset .blog-content-holder .btn-theme {
    width: 150px;
    margin: 0 auto;
    display: table;
}
/*Blog listing page css end*/
.inner-banner-wrap .showDesktop {
	height: 224px;
	object-fit: cover;
	width: 100%;
}
/*responsive nav style*/
@media all and (max-width: 1200px) {
header nav ul {
    display: flex;
    flex-direction: column;
}    
.mobile_menu{
    position: relative;
}
.nav-bar{display: block; width: auto; position: absolute;   font-size: 26px;      top: 50%;
        right: 0;
        transform: translateY(-50%);}
.main_header.fixed-theme .nav-bar{top: 14px;}

.nav-bar span{float: left; font-size: 20px; padding: 20px; color: #fff;}
.nav-bar .fa-bars{display: block; padding:7px 10px; color: #fff; overflow: hidden; font-size: 24px; float: right;cursor: pointer;}
nav .fa-times{        position: absolute;
        right: 0;
        top: 19px;
        padding: 10px;
        font-size: 30px;
        color: var(--red);cursor: pointer;}

header nav{width: 100%; height: auto; position: fixed; right: 100%; top : 0; overflow: hidden; height: 100%; margin: auto;  
background: #fff;z-index: 2;}
header nav ul li{margin: 0; display: block; width: 100%;}
header nav ul li a{color: #252525!important; text-transform: uppercase; padding: 10px 16px!important;}
header nav ul li i{margin-right: 0;}
header nav ul li.current-menu-item a{color:#ae1408;}
header ul li a{display: block;}
header nav ul li .sub-menu{width: 100%; position: relative; overflow: hidden; display: none;}
header nav ul li:hover .sub-menu{display: none;}
/* header nav ul li ul li:first-child{border-top: 1px solid #ffffff99;} */
header nav ul li .sub-menu span{display: inline-block;}
header nav ul li .sub-menu a{color: #fff!important;}
header nav ul li .fa-angle-down{position: relative; top: 3px;}
header nav ul li:hover:before, header nav ul li.current-menu-item a:before{display: none;}
.mobile-logo,.mobile-footer{display: block;}
.mobile-logo{background: #fff; text-align: center; padding: 20px 10px; border-bottom: #e1e1e1 1px solid;}
.mobile-footer{text-align: center; position: absolute; bottom: 0; width: 100%; background: #000; padding: 10px 19px;}
.mobile-footer ul{width: 100%; margin-top: 0;}
.mobile-footer ul li{border: none; color: #fff; font-size: 18px;}
.mobile-footer ul li a{display: inline-block; text-transform: inherit!important;}
.noscroll{background: rgba(255,255,255,0.9); position: fixed; z-index: 1000000; top: 0; left: 0; width: 100%; height: 100%;
opacity: 1; -webkit-transition: .5s ease; -moz-transition: .5s ease; -ms-transition: .5s ease; -o-transition: .5s ease;
transition: .5s ease;}
header nav ul li:last-child{border-bottom: none;}

}



@media (min-width: 320px) and (max-width: 991px) {

header nav ul li a svg{fill: #fff;}
header nav ul li .sub-menu{min-width: 100%; background: #f7941e;}
header nav ul li .sub-menu ul{background: #0567a6;}
.mobile-footer ul li a{text-transform: inherit; padding: 0!important; margin: 0!important; color: #fff!important;
background: none !important;}
header nav ul li a{margin: 0; margin-right: 40px;}
.sub-menu li a{margin-right: 0;}
#cssmenu .menu{margin: 0 auto; overflow: hidden; overflow-y: scroll; height: calc(100vh - 145px);}
.mobile-logo img{max-width: 180px;}
#cssmenu .menu li:last-child a{background: #f5aa56; color: #fff; margin: 0 16px 16px 16px; display: inline-block;
color: #fff!important;}
#menu-item-49{margin-bottom: 20px;}

header nav ul.menu{height: calc(100vh - 183px); overflow: auto; margin-top: 0;}
.menu-header-main-menu-container ul li a{display: block!important; margin: 0!important; text-align: left;
font-size: 15px!important; color: #000!important;}
.down-icon i{font-size: 16px;}
header nav ul li .sub-menu li a{text-transform: inherit;}
header nav ul{display: block;}
header nav ul li ul.sub-menu{transition: none!important;}
.showDesktop {
	display: none;
}
.showMobile {
	display: block;
}

}

@media (min-width: 992px) {

/* .down-icon{display: none;} */

}
/****************end new CSS****************/



@media (min-width: 1300px) {

header nav ul li ul.sub-menu .down-icon{display: block; transform: rotate(-45deg); border: var(--blue) solid;
border-width: 0 1px 1px 0; top: 13px !important;right: 10px;background: none;}

header nav ul li ul.sub-menu li:hover .down-icon{display: block; transform: rotate(-45deg); border: var(--white) solid;
border-width: 0 1px 1px 0; top: 13px !important;right: 10px;background: none;}
}

/*responsive nav style*/
@media (min-width: 320px) and (max-width: 1199px) {

header nav ul li:hover .sub-menu { display: none; max-height: 300px; overflow-y: auto; overflow-x: hidden;}
header nav ul li:hover:before, header nav ul li.current-menu-item a:before{display: none;}
header nav ul li:hover ul.sub-menu li ul.sub-menu{position: inherit; left: 0 !important; top: 0; background: var(--white);}
header nav ul li ul.sub-menu{position: relative;}

.down-icon{right: 0; border:none; border-width: 0; width: 60px; height: 44px; margin: 0; cursor: pointer; top: 0; 
transform: rotate(0deg); position: absolute;}
.down-icon:after{content: ""; position:absolute; right: 17px; border: #212529 solid; border-width: 0 2px 2px 0; 
width: 10px; height: 10px; cursor: pointer; top: 13px; transform: rotate(45deg);}

.sub-menu span.down-icon{right: 0; border:none; border-width: 0; width: 100%; height: 100%; margin: 0; cursor: pointer;
top: 0; transform: rotate(0deg); position: absolute; z-index: 999; display: block;}
.sub-menu span.down-icon:after{content: ""; position:absolute; right: 11px; border: #212529 solid; border-width: 0 2px 2px 0; 
width: 12px; height: 12px; margin: 5px; cursor: pointer; top: 8px; transform: rotate(45deg);}
header nav ul li:last-child .sub-menu{left: 0px;}
header nav ul li ul.sub-menu{left: 0;}

}

/**************end 2nd step_menu*************/
@media (min-width: 576px) and (max-width: 767px) {
/* .nav-bar{top: 35px; transition: 0.8s;} */
.fixed-theme .nav-bar{top: 27px;}
.woocommerce ul.products li.product_card h3 {
	font-size: 18px !important;
	line-height: 24px;
	min-height: 67px;
}
.te_default_woo-page {
	margin-top: 0px;
	padding-block: 10px;
}
}

@media (min-width: 992px) and (max-width: 1199px) {
header nav ul li a{font-size: 12px;}
.down-icon{top: 5px; right: 7px;}
header nav ul{gap: 0;}
.down-icon{top: 6px !important; right: -12px !important;}
.header_btm{margin-top: 10px;}



}

@media (min-width: 1200px) and (max-width: 1499px) {
header nav ul li a{font-size: 16px;}
.down-icon{top: 7px !important;}




}

@media (min-width: 992px){
.down-icon{border: none; background: url(https://electronicpuffs.com/wp-content/themes/Electronicpuffs/assets/images/icon_downArrow.png) no-repeat; width: 10px; height: 10px; top: 10px; transform: rotate(0); right: -6px;}



}
