*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family:"Nunito Sans", serif;
}
html{
    scroll-behavior: smooth;
    position: relative;
    overflow-x: hidden;
}
:root{
    --orange:#FF7486;
    --primarybg:#e85450;
    --secBg:#00C9C8;
    --textcolor:#646464;
    --textwhite:#FFF5F9;
    --textblack:#2E1C19;
    --greybg:#DFE0DF;
    --blue:#008FFF;
    --orange1:#ff7400;
    --darkblue: rgb(0, 11, 67);
}

/* background gradients */
.mybg{
    background-color:var(--orange) !important;
    color: var(--textwhite);
}
.bg-2{
    background-color: var(--darkblue) !important;
    color: var(--textwhite) !important;
}
.bg-1{
    background-color: var(--secBg) !important;
}
.blue{
    color: var(--blue) !important;
}
.green{
    color: var(--textcolor) !important;
}
.dgreen{
    color: var(--secBg) !important;
}
.orange{
    color: var(--primarybg) !important;
}
.bg-grey{
    background-color: var(--greybg) !important;
}
.orange1{
    color: var(--orange1) !important;
}
.myborder{
    border:2px solid var(--orange1) !important;
}
.bg-orange{
    background-color: var(--orange1) !important;
}
img{
    width: 100%;
}
.container{
    padding: 0px !important;
}
a{
    text-decoration: none !important;
}
.section-padding{
    padding: 2.5rem 5rem;
}
.section-margin{
    margin: 5rem 0;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 800 !important;
}
.bold-text{
    font-weight: 900 !important;
}

button{ 
    text-transform: capitalize;
    border: 1px solid transparent;
    cursor: pointer !important;
}
/* navigation start here */
.logo{
    width: 80px;
    height: 80px;
}
.mynav{
    display: flex;
    padding: 0rem 2rem;
    width: 100%;
    /* background-color: #ffffff; */
    background-color:#FFF5F9;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top:0px;
    z-index: 100;
    box-shadow: 0px 0px 15px 4px rgba(232, 231, 231, 0.279);

}
/* logo */
.mynav .mobile{
    display:none;
}
.mynav-links{
    flex: .6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header{
    /* background: linear-gradient(10deg,var(--secBg),#0091ff); */
    background-color:#DFE0DF;
}
header small{
    color: #010101;
}
.header-text{
    font-size: 12px;
}
.mynav-links ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    padding: 0px !important;
    margin: 0px !important;
}
.mynav-links ul li{
    list-style-type: none;
    margin-left: 1rem;
    padding: 8px;
    position: relative;
    transition: all .3s ease-in-out;
}
.mynav-links ul li::after{
    content: "";
    width:0%;
    height: 2px;
    background-color: #fdffff;
    position: absolute;
    bottom: 2px;
    left: 8px;
    margin: auto;
    transition: all .3s ease-in-out;
}
.mynav-links ul li:hover::after{
     width: 60%;
}
.mynav-links ul li a{
    text-decoration: none;
    color: var(--textblack);
    text-transform: uppercase;
    transition: color .4s ease-in-out;
    font-weight: 500;
    font-size: 14px;
}
.mynav-links ul li a:hover{
    color: #FEBE10;
}
.cart{
    flex: .25;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-around;
}
.cart a{
    display: block;
}
.cart button{
    background-color: transparent;
}
.viewcart{
    padding: 5px;
    /* border: 1px solid #ffffff; */
    border-radius: 5px;
}

.viewcart i{
    font-size: 24px;
    
}
.cart-badge{
    background-color:darkorange;
    
}
.view-wishlist{
    padding: 5px;
    border-radius: 5px;

}
.view-wishlist i{
    font-size: 22px;
    color: #000000;

}
.wish-badge{
    margin-left:1px;
    background-color: var(--orange1);
}
.client-menu{
    font-size: 38px;
    cursor: pointer;
    display: none;
    color: #000000;
}
.client-close{
    position: absolute;
    right: 15px;
    font-size: 28px;
    color:orange;
    display: none;
    z-index: 100;
    top: 5px;
}

.backtop-btn{
    /* width: 40px;
    height: 40px; */
    /* border-radius: 50%; */
    position: fixed;
    bottom: 20px;
    right:10px;
    color: var(--orange1);
    display: none;
    font-size: 38px;
    background-color:transparent !important ;
    
}
.whatsapp-btn{
    position: fixed;
    
}
.whatsapp-btn i{
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    text-align: center;
    font-size: 26px;
    line-height: 50px !important;
    text-align: center;
    background-color: #00d9be !important;  
    position: fixed;
    left: 0px;
    bottom: 20px;
    color: white !important;
    animation: ping 2s ease-in-out 3s infinite both;
}
/* end of navigation */

/* start of landing */
.landing{
    padding:2.5rem 5rem;
    background:var(--greybg);
    height: 100vh !important;
    background: linear-gradient(rgba(225, 254, 252, 0.959),rgba(78, 78, 78, 0.566)),url(/images/livingroom.jpg);
    background-position: center;
    background-size: cover;
}
.slider{
    transform: translateY(100px);
    opacity: 0;
    transition: transform 1s ease-in-out;
    visibility: hidden;

}
.content{
    /* display: flex; */
    gap: 1rem;
    height: 100%;
    width: 100%;
}
.slider.slideup{
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

.slider .click-contact{
    background-color: var(--textwhite);
    padding: 5px;
    border-radius: 4px;
    transition-delay:.3s ;
    transition: transform .5s ease-in-out;
    opacity: 1;

}
.click-contact a{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.content h1{
    color:var(--textcolor);
    text-transform: uppercase;
    font-size: 4rem;
    font-weight: 700;
}
.content p{
    color:var(--textwhite);
    font-size: 2rem;
    margin: 2rem 0;
}
.content p span{
    color: var(--textcolor);
    font-weight: 900;
}
.shop-btn{
    background:var(--secBg) !important ;
    color: var(--textwhite) !important;
    font-weight: 500;
    padding: .8rem  !important;
    transition: all .6s ease-in-out;
    text-transform: capitalize;
    width: 80%;
    border-radius: 30px !important;
    box-shadow: 0px 0px 5px 5px  rgba(201, 199, 199, 0.457);
}
 .shop-btn:hover{
    transform: scale(1.05);
}
.left-bottom * p{
    margin: 0;
    color: var(--textcolor);
}


.right{
   flex:.4;
}
.img-container{
    width: 100%;
    
}
.right img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}

/* products featured */
.products{
    background-color: var(--greybg);
}
.text h1{
    text-align: center;
    /* background:linear-gradient(to right,,var(--blue)) ;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
    font-weight: 600;
    text-transform: uppercase;
}
.text p{
    text-align: center;
    margin: 2.5rem 0;
    color: var(--textcolor);
    font-weight: 400;
}
/* .products-container{
     display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center; 

} */
.product-card{
    /* box-shadow: 0px 0px 15px 5px var(--greybg); */
    border-radius: 8px;
    overflow: hidden;
    /* flex: 1 0 25%; */
    /* transition: transform .5s ease-in; */
    /* background-color: var(--textwhite); */
    opacity: 0.5;
    visibility: hidden;
    transform: translateY(150px);
    transition: opacity 2s,visibility 2s,transform 2s,box-shadow .3s;
    transform: scale(0.5);
    height: 100%;
}

.product-card.show{
    opacity: 1;
    visibility:visible;
    transform: translateY(0px);
    transform: scale(1);
    /* animation: roll-in-left 1.6s ease-out both; */
}
.product-card:hover{
    box-shadow: 0px 0px 15px 5px rgba(194, 194, 194, 0.822);
    transform: scale(1.01);
   
}
.product-card:hover img{
   opacity: 1;
}
.product-card img{
    width: 100%;
    transition: all 300ms ease-in-out;
    min-height: 350px !important;
    opacity: .99;
    object-fit: cover;
}
.product-text{
    padding: 1rem;
}
.product-icons i{
    color:var(--orange);
    margin-left:5px ;
}
.product-text a{
    /* background-color: #ff7400; */
    background-color: var(--orange);
    transition: all .3s ease-in-out;
    color: var(--textwhite);
    font-weight: 500;
}

/* banner */
.banner-container{
    height: 40vh;
    /* background:linear-gradient(to right, #005b60e8,#00c9c9b6),url(/images/living.jpg); */
    /* background: linear-gradient(#ffaa4e,#8d6496); */
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    transition: all 1s ease-in-out;
}
/* cta- babber button */
.cta-btn{
    background-color: #FF7F50 !important;
    color: white !important;
}
.banner-height{
    height: 40vh;
}
.banner{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.banner h1{
    color: var(--textwhite);
    font-weight: 800;
}
.banner h2{
    font-size: 18px;
    margin: 2rem 0;
    color: var(--textwhite);
}
.icon-container{
    transition: all 1sec ease-in;
}
.icon-container i{
    background-color:var(--secBg);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;   
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 20px;
    cursor: pointer;
    color: rgb(255, 255, 255);
}
.icon-round{
    background-color:var(--secBg);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;   
    border-radius: 50%;
}
.lg-icon-round{
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background-color: #d41464;
    font-size: 30px;
}
/* end of banner */
/* why choose us */
.why-container{
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.why-container .child{
    flex: .75;
}
.instagram-color{
    color: #d41464;
}

/* end of why us */
/* footer */
.footer-links{
    margin-left: 0px;
    padding: 0px;
}
.footer-links li{
    list-style-type: none;
    padding: .75rem 0;
}
.footer-links li a{
    color: var(--textwhite);
    transition: all .9s ease-in-out;
}
.footer-links li a:hover{
    color: var(--textcolor);
    text-decoration: underline !important;
    padding-left: 5px;
}
/* footer contacts */
.contact-container{
    display: flex;
    align-items: center;
}
.contact-container h5{
    color: white;
    width: 50px;
    height: 50px;
    background-color: var(--textcolor);
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}
.contact-container h5 i{
    font-size: 14px;
}
.contact-container p{
    margin-left: 15px;
}
textarea{
    resize: none;
}



/* end of main page */
 /* */
.about-us{
    height: 100% !important;
    background-position: center;
    background-size: cover;
}
.about-us .about-card p{
    line-height: 28px;
    color: var(--textcolor);
}

/* contact section banner */
.contact-banner{
    background:linear-gradient(60deg,var(--secBg),#0091ffbf), url(/images/customeragent.jpg);
    background-position: center;
    background-size: cover;
}
/* cabout banner */
.about-banner{
    background:linear-gradient(60deg,var(--secBg),#0091ffbf), url(/images/furn.jpg);
    background-position: center;
    background-size: cover;
    box-shadow: 0px 0px 15px 5px rgba(128, 128, 128, 0.26);
}
/* products banner */
.products-banner{ 
     background-size: cover;
     /* background: linear-gradient(-180deg,rgba(223, 167, 82, 0.9),#ff7400),url(../images/logo.jpeg); */
     background-position: center;
     background-repeat: no-repeat;
     /* background:rgba(1, 52, 55, 0.902); */
     background:linear-gradient(45deg,#e2dfdcbd,#e2dfdc83) ,url(../images/office-home-banner.jpg);
}
.select-category,#filter-categories{
    border: 1px solid #ff7400 !important;
}
/* home page deals banner */
.deals-banner{
   background:linear-gradient(15deg,var(--secBg),rgba(245, 244, 244, 0.861)),url(../images/products-banner.jpg);
   background-position: center;
   background-size: cover;
}
.deals-banner h1{
    color: var(--textblack);
}
.deals-banner h2{
    color: var(--textblack);
}
.deals-banner h1 span{
    color: var(--orange1);
}

/*  */
/* map */
.map{
    height: 100%;
    position: relative;
}
.map iframe{
    width: 100%;
}


/* Start of admin pages styles */
.admin-nav{
    width: 200px;
    /* background-color: var(--textwhite); */
    height: 100vh;
    padding: .5rem;
    box-shadow: 0px 0px 10px rgba(128, 128, 128, 0.192);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 10;
    background-color:var(--secBg);
}
.admin-nav ul{
    padding-left: 0px;
    margin: 0px;
    flex: 1;
}
.admin-nav ul li{
    list-style-type: none;
    padding: .5rem;
    margin: 1rem 0;
    display: block;
    width: 100%;
}
.admin-nav ul li a{
    color: var(--textblack);
    font-size: 14px;
    padding: inherit;
    display: block;
    width: 100%;
    transition: all .3s ease-in-out;
    border-radius: 30px;
}
.admin-nav ul li a:hover,.myactive{
    background-color: white;
    color: var(--textblack);
}
.myactive{
    background-color: white !important;
    color: var(--textblack);
}
/* admin content section */
.main-admin-secton{
    margin-left: 200px;
    padding: 1rem;
    height:auto;
}
.close-icon, .open-menu{
    display: none;
    cursor: pointer;
}
.close-icon{
    color: #FFF5F9;
}
.menu-icon-container{
    display: none;
}
.wishlist-btn{
    top: 10px;
    right: 10px;
    /* background-color: var(--orange1); */
    transition:transform .5s ease;
    color: rgb(3, 3, 3);
    height: 40px !important;
    width: 40px !important;
    line-height: 40px !important;
    border-radius: 50% !important;
    background-color: #f6f3f3;
}
.card-save-amount{
    top: 10px;
    right: 15px; 
    background-color:#ffaa4e;
    padding: 3px 8px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
}

.wishlist-btn:hover{
    transform: scale(1.2);
    color: var(--textblack);
}

/* animation */


/* admindash cards */
.admin-dash-card{
    border-radius: 8px;
    /* box-shadow: 0px 0px 15px 2px rgba(194, 194, 194, 0.308); */
    text-align: center;
    position: relative;
    /* background-color: #ffffff; */
}
.admin-dash-card h3{
    margin: .5rem 0;
    font-size: 20px;
    /* color: #ff7400; */
    color: var(--textblack);
}
.admin-dash-card p{
    font-size: 12px;
}
.admin-dash-icon-round{
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color:var(--textwhite);
    color: var(--orange);
    font-size: 16px;
}

/* cart read more btn */
.read-more-btn{
    color: #005B60 !important;
    font-size: 14px !important;
    transition: color .8s ease-in-out !important;
    border-radius: 10px !important;
    transition: transform .4s ease-in !important;
}
.read-more-btn:hover{
    transform: translateX(10px) !important;
}
.add-cart-card{
    box-shadow: 0px 0px 15px 4px rgba(190, 188, 188, 0.379); 
    background-color: #ffffff !important;
    transition: all .3s ease-in-out !important;
    border: 2px solid transparent !important;
    border-radius: 8px !important;
    overflow: hidden;
    padding: .5rem;
}
.add-cart-card:hover{
    box-shadow: 0px 0px 15px 4px rgba(171, 168, 168, 0.338);
    transform: scale(1.01);
    border: 2px solid var(--orange1) !important;
}
.cart-btn{
    color: #ffffff !important;
    transition: color .6s ease-in-out !important;
    background-color: #00d9be !important;
    /* background:linear-gradient(to right,#f88072,#ffaa4e) !important; */
}

#cart-btn{
    color: #ffffff !important;
    transition: color .6s ease-in-out !important;
    background-color: #00d9be !important;
    /* background:linear-gradient(to right,#f88072,#ffaa4e) !important; */
}
.cart-btn:hover{
    color: var(--textblack) !important;
}
#cart-btn:hover{
    color: var(--textblack) !important;
}

/* contact form */
.contact-form{
    background:linear-gradient(var(--primarybg),rgba(13, 9, 85, 0.63))
}
.contact-form .contact-form-text h1{
    text-align: center;
    font-weight: 600;
}
.contact-form-text p{
    text-align: center;
    margin: 2.5rem 0;
    color: var(--textwhite);
}
/* image product preview */
.main-product-view{
    height: 450px !important;
    cursor: pointer;
    max-width: 100% !important;
}
.swiper-slide img{
    object-fit: cover !important;
}
.swiper-button-prev,.swiper-button-next{
    color:darkorange;
}
#main-image{
    height: 100% !important;
    width: 100% !important;
}
.img-preview{
    height: 100px;
    cursor: pointer;
}
.img-preview img{
    height: 100%;
    max-width: 100% !important;
    object-fit: contain;
}
.single-product-description p::first-letter{
    text-transform: capitalize;
}
.product-image{
    max-height: 200px !important;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px  !important;
}
.home-furn-btn{
    background-color: #00C9C8 !important;
    color: #ffffff !important;
    transition: background-color .4s ease-in-out !important;
}
.home-furn-btn:hover{
    background-color: var(--orange1) !important;
}
.office-furn-btn{
    color: white !important;
    transition: background-color .4s ease-in-out !important;
    background-color:var(--orange1) !important;
}
.office-furn-btn:hover{
    background-color: var(--secBg) !important;
    color: var(--textwhite) !important;
}

/* adjusting cart image */
.modal-cart-img{
    width: 100px;
    height: 100px ;
    object-fit: cover;
}
/* gallery images */
.gallery-img{
    max-height: 300px;
    object-fit: cover;
    margin-bottom: 12px;
}
#updateproductsform label{
    color: #00C9C8 !important;
}

/* checkout form*/
#checkoutform label{
    color: #ff7400 !important;
}

/* login form left */
.login-left{
    background:linear-gradient(10deg,rgba(128, 128, 128, 0.146),rgba(255, 102, 0, 0.224)) ,url(../images/logo.jpeg);
    height: auto;
    background-size: cover;
    background-position: center;
}
#mycarousel{
    max-height: 500px; 
   overflow: hidden;
} 
.carousel-img {
    height: 100%;
    /* object-fit: cover; */
  }

/* .carousel-inner{
    height: 90vh !important;
}
.carousel-item{
    height: 100%;
} */

.myleftmove{
    transform: translateX(-250px);
    opacity: 0 !important;
    transition: transform 2s,opacity 2s;
    visibility: hidden;

}
.myrightmove{
    transform: translateX(250px);
    opacity: 0 !important;
    transition: transform 2s,opacity 2s;
    visibility: hidden;
    transition-delay: 2s;

}
.myleftmove.reveal,.myrightmove.reveal{
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible;
}
/* most popular section */
.most-popular{
    /* background: linear-gradient(#ffaa4e,#8d6496); */
    background-color: var(--textwhite);

}
/* buy via whatsapp btn */
.buy-via-whatsapp{
    background-color:#00d9be !important ;
}
.view-more{
    background-color:var(--secBg) !important;
    color: var(--textwhite)!important;
    transition:transform .4s ease !important;
    font-weight: 500 !important;
    border-radius: 50px !important;
    padding: 1rem !important;
    text-transform: uppercase;
    transition: 1s ease-in-out !important;
}
.view-more:hover{
    background:var(--textwhite) !important ;
    color: var(--darkblue) !important;
    transform: scale(1.01);
}
.d-mobile{
    display: none;
}
.latest{
    background: url(../images/my-background.jpg);
    background-position: center;
    background-size: cover;
}
.search-input{
    border: 1px solid #ff7400 !important;
}
.search-input::placeholder{
    font-size: 14px;
    color: #ff7400 !important;
}


.search-btn{
   border-radius: 0px 5px 5px 0px !important;
   background-color: var(--orange1) !important;
   margin-left: -10px;
   color: white !important;
   font-weight: 600 !important;
}

/* return policy styles */
.return-card{
    padding: 2rem;
    background-color: #DFE0DF;
    border-radius: 8px;
    
}
.return-card h3{
    font-size: 2rem;
}

.policy-btn{
    padding: 1rem;
    border: 1px solid rgb(53, 162, 157);
    border-radius: 8px;
    font-weight: 900;
    transition: transform .3s ease-in-out;
    text-align: center;
}
.policy-btn:hover{
    transform: scale(1.05);
}
.policy-banner{
    background:linear-gradient(60deg,var(--secBg),var(--blue)), url(/images/customeragent.jpg);
    background-position: center;
    background-size: cover;
}





/* animations */

.tracking-in-contract {
	-webkit-animation: tracking-in-contract 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	animation: tracking-in-contract 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}


/**
 * ----------------------------------------
 * animation tracking-in-contract
 * ----------------------------------------
 */
 @-webkit-keyframes tracking-in-contract {
    0% {
      letter-spacing: 1em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      letter-spacing: normal;
      opacity: 1;
    }
  }
  @keyframes tracking-in-contract {
    0% {
      letter-spacing: 1em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      letter-spacing: normal;
      opacity: 1;
    }
  }


  /* animations 2 */

  .heartbeat {
	-webkit-animation: heartbeat 3s ease-in-out infinite both;
	animation: heartbeat 3s ease-in-out infinite both;
}

/**
 * ----------------------------------------
 * animation heartbeat
 * ----------------------------------------
 */
 @-webkit-keyframes heartbeat {
    from {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-transform-origin: center center;
              transform-origin: center center;
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    10% {
      -webkit-transform: scale(0.91);
              transform: scale(0.91);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    17% {
      -webkit-transform: scale(0.98);
              transform: scale(0.98);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    33% {
      -webkit-transform: scale(0.87);
              transform: scale(0.87);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    45% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }
  @keyframes heartbeat {
    from {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-transform-origin: center center;
              transform-origin: center center;
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    10% {
      -webkit-transform: scale(0.91);
              transform: scale(0.91);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    17% {
      -webkit-transform: scale(0.98);
              transform: scale(0.98);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    33% {
      -webkit-transform: scale(0.87);
              transform: scale(0.87);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    45% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }


  .color-change-2x {
	-webkit-animation: color-change-2x 2s linear infinite alternate both;
	animation: color-change-2x 2s linear infinite alternate both;
}

/**
 * ----------------------------------------
 * animation color-change-2x
 * ----------------------------------------
 */
 @-webkit-keyframes color-change-2x {
    0% {
      /* background: #19dcea; */
      background: var(--secBg);
    }
    100% {
      /* background: #b22cff; */
      background: var(--orange1);
    }
  }
  @keyframes color-change-2x {
    0% {
        /* background: #19dcea; */
        background: var(--secBg);
      }
      100% {
        /* background: #b22cff; */
        background: var(--orange1);
      }
  }



  .bounce-in-left {
	-webkit-animation: bounce-in-left 1.1s both;
	animation: bounce-in-left 1.5s both;
}
/* ----------------------------------------------
 * Generated by Animista on 2024-10-9 16:23:19
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation bounce-in-left
 * ----------------------------------------
 */
 @-webkit-keyframes bounce-in-left {
    0% {
      -webkit-transform: translateX(-600px);
              transform: translateX(-600px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 0;
    }
    38% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
    55% {
      -webkit-transform: translateX(-68px);
              transform: translateX(-68px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    72% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    81% {
      -webkit-transform: translateX(-28px);
              transform: translateX(-28px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    90% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    95% {
      -webkit-transform: translateX(-8px);
              transform: translateX(-8px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }
  @keyframes bounce-in-left {
    0% {
      -webkit-transform: translateX(-600px);
              transform: translateX(-600px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 0;
    }
    38% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
    55% {
      -webkit-transform: translateX(-68px);
              transform: translateX(-68px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    72% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    81% {
      -webkit-transform: translateX(-28px);
              transform: translateX(-28px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    90% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    95% {
      -webkit-transform: translateX(-8px);
              transform: translateX(-8px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }


  .bounce-in-top {
	-webkit-animation: bounce-in-top 1.5s 1.5s 2 both;
	animation: bounce-in-top 1.5s 1.5s 2 both;
}



/**
 * ----------------------------------------
 * animation bounce-in-top
 * ----------------------------------------
 */
 @-webkit-keyframes bounce-in-top {
    0% {
      -webkit-transform: translateY(-500px);
              transform: translateY(-500px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 0;
    }
    38% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
    55% {
      -webkit-transform: translateY(-65px);
              transform: translateY(-65px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    72% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    81% {
      -webkit-transform: translateY(-28px);
              transform: translateY(-28px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    90% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    95% {
      -webkit-transform: translateY(-8px);
              transform: translateY(-8px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }
  @keyframes bounce-in-top {
    0% {
      -webkit-transform: translateY(-500px);
              transform: translateY(-500px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 0;
    }
    38% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
    55% {
      -webkit-transform: translateY(-65px);
              transform: translateY(-65px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    72% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    81% {
      -webkit-transform: translateY(-28px);
              transform: translateY(-28px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    90% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    95% {
      -webkit-transform: translateY(-8px);
              transform: translateY(-8px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }


  .bounce-in-right {
	-webkit-animation: bounce-in-right 1.1s 3s both;
	 animation: bounce-in-right 1.1s 3s both;
}
/* ----------------------------------------------
 * Generated by Animista on 2024-10-9 16:33:15
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation bounce-in-right
 * ----------------------------------------
 */
 @-webkit-keyframes bounce-in-right {
    0% {
      -webkit-transform: translateX(600px);
              transform: translateX(600px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 0;
    }
    38% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
    55% {
      -webkit-transform: translateX(68px);
              transform: translateX(68px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    72% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    81% {
      -webkit-transform: translateX(32px);
              transform: translateX(32px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    90% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    95% {
      -webkit-transform: translateX(8px);
              transform: translateX(8px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }
  @keyframes bounce-in-right {
    0% {
      -webkit-transform: translateX(600px);
              transform: translateX(600px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 0;
    }
    38% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
    55% {
      -webkit-transform: translateX(68px);
              transform: translateX(68px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    72% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    81% {
      -webkit-transform: translateX(32px);
              transform: translateX(32px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    90% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    95% {
      -webkit-transform: translateX(8px);
              transform: translateX(8px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }


  .roll-in-left {
	-webkit-animation: roll-in-left 0.6s ease-out both;
	 animation: roll-in-left 0.6s ease-out both;
}

/**
 * ----------------------------------------
 * animation roll-in-left
 * ----------------------------------------
 */
 @-webkit-keyframes roll-in-left {
    0% {
      -webkit-transform: translateX(-800px) rotate(-540deg);
              transform: translateX(-800px) rotate(-540deg);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0) rotate(0deg);
              transform: translateX(0) rotate(0deg);
      opacity: 1;
    }
  }
  @keyframes roll-in-left {
    0% {
      -webkit-transform: translateX(-800px) rotate(-540deg);
              transform: translateX(-800px) rotate(-540deg);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0) rotate(0deg);
              transform: translateX(0) rotate(0deg);
      opacity: 1;
    }
  }

  .ping {
	-webkit-animation: ping 2s ease-in-out 3s infinite both;
	animation: ping 2s ease-in-out 3s infinite both;
}



/**
 * ----------------------------------------
 * animation ping
 * ----------------------------------------
 */
 @-webkit-keyframes ping {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
    }
    80% {
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
      opacity: 0.8;
    }
    100% {
      -webkit-transform: scale(2.2);
              transform: scale(2.2);
      opacity: 0;
    }
  }
  @keyframes ping {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
    }
    80% {
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
      opacity: 0.8;
    }
    100% {
      -webkit-transform: scale(2.2);
              transform: scale(2.2);
      opacity: 0;
    }
  }


  .pulsate-fwd {
	-webkit-animation: pulsate-fwd 3s ease-in-out infinite both;
	 animation: pulsate-fwd 3s ease-in-out infinite both;
}



/**
 * ----------------------------------------
 * animation pulsate-fwd
 * ----------------------------------------
 */
 @-webkit-keyframes pulsate-fwd {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    50% {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes pulsate-fwd {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    50% {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }


  /* review card */

  .review-bg{
    background-color: #AFDBF5;
  }
  .preview-profile-image{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 100% 10%; 
    border: 6px solid transparent;
    border-bottom: 6px solid white;
    border-top: 6px solid #81D8D0;
    border-left: 6px solid #FEBE10 ;
    border-right: 6px solid #FF7F50 ;
  }
  .reviewcard{
    cursor: pointer;
    transition: all .3s ease-in-out;
    &:hover{
        transform: scale(1.04);
    }
   h5{
    color:  #FF7F50;
    text-transform: capitalize;
  }}
  .reviewtext{
    font-size: 14px;
  }
  .login-btn{
    background-color: #FF7F50 !important;
  }

  /* colors */
  .purple{
    background-color: #CCCCFF;
  }
  .u-blue{
    background-color: #AFDBF5;
  }
  .t-blue{
    background-color: #81D8D0;
  }
  .coral-red{
    background-color: #FF7F50;
  }
  .madridgold{
    background-color: #FEBE10;
  }
  .gold{
    background-color: #FFD700;
  }
  .tea-green{
    background-color: #D0F0C0;
  }
  .aquagreen{
    background-color: #66CDAA;
  }

  .review-icons i{
    font-size: 28px;
  }
  .review-span{
    /* color: #FF7F50; */
    color:  #ffa94eb2;
  }


  
  
  
  /* review slider */

  .swiper-container{
    height: auto;
  }
  
















/* mobile responsiveness */
@media screen and (max-width:360px) {
    .card-price{
        font-size: 20px !important;
    }
}

@media screen and (max-width:750px) {
    .mynav{
        padding: .25rem;
        position: relative;
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .mynav-links{
        position: fixed;
        top: 0;
        left:-250px;
        width: 250px;
        height: 100%;
        /* background:linear-gradient(60deg,var(--orange1),var(--orange)),url(/images/cbg10.png); */
        background-size: cover;
        background-color: var(--greybg);
        background-position:center ;
        flex-direction: column;
        justify-content:space-between;
        align-items: flex-start;
        padding: 1.5rem 1rem;
        transform: scale(.5);
        box-shadow: 0px 0px 15px 5px rgba(76, 165, 172, 0.463);
        z-index: 100;
        transition: all .3s ease-in-out;
    }
    .reveal{
        transform: scale(1);
        left: 0px;
        display: block;
    }
    .mynav .mynav-links ul{
        flex-direction: column;
        width: 100%;
        justify-content: flex-start;
        flex: .65;
    }
    .mynav-links ul li{
        margin-left:0;
        width: 100%;
        flex: 1;
        padding: 10px;
        margin: 10px 0;
        border-bottom: 1.2px solid rgb(255, 255, 255);

    }
    .mynav-links ul li a{
        /* color: var(--textwhite); */
        display: block;
        color: var(--textblack);
    }
    .mynav-links .mobile{
        display: block;
        z-index: 30;
    }
    .cart{
        flex: .8;
    }

    .landing{
        padding: 1.5rem;
        height: auto;
    }
    .content{
        flex-direction: column;
    }

    .content  h1{
        font-size: 1.5rem;
    }
    .content p{
        font-size: 1rem;
    }
    .left-top .shop-btn{
        padding: 1rem;
    }
   
    .why-container{
        height: auto;
    }
    .icon-container{
        display: flex; 
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    .icon-container i{
        margin-bottom: 0px;
    }
    .section-padding{
        padding: 2rem;
    }
    .banner h2{
        margin: 1rem 0;
        font-size: .85rem;
    }
    .banner h1{
        font-size: 18px;
    }
    .left-bottom{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .about-us{
        height: auto !important;
    }
    /* .icon-round{
        height: 20px;
        width: 20px;
        line-height: 20px;
        font-size: 10px;
    } */
    /* admin nav */
    .admin-nav{
        left:-250px;
        transform: scale(0.5);
        transition: all .3s ease-in-out;
        opacity:0;
    }
    .main-admin-secton{
        margin-left: 0px;
        padding: 1rem;
    }
    .open-menu{
        font-size: 24px;
    }
    .close-icon{
        font-size: 24px;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .show{
        transform: scale(1);
        opacity: 1;
        left: 0;
    }
    .open-menu,.close-icon{
        display: block;
    }
    .open-menu{
        height: 40px;
        width: 40px;
        background-color: var(--secBg);
        line-height: 40px;
        text-align: center;
        border-radius: 4px;
        color: white;
    }
    .menu-icon-container{
        display: block;
    }
    .client-close,.client-menu{
        display: block;
    }
    .mynav-links ul li::after{
        display: none;
    }
    .product-image{
       min-height:300px !important;
        object-fit: cover;
    }
    .login-left{
        height: 400px;
    }
    
    .carousel-inner{
        height: auto !important;
    }
    .carousel-item{
        height: auto !important;
    }
    .product-image{
        min-height: 200px !important;
    }
    .carousel-img {
        height: 100%;
        object-fit: cover;
      }
    .d-mobile{
        display: block;
    }
    .read-more-btn{
        font-size: 12px;
    }
    .cart-btn{
        padding: 5px!important;
    }
    .card-price{
        font-size: 30px;
    }
    .policy-btn{
        padding: .85rem;
    }
    #main-image{
        object-fit: cover;
    }
    .whatsapp-btn i{
        background-color:#00d9c0 !important;
        color: white !important;
    }
  .swiper-container{
    height: auto;
  }
  
    
}

