

/*
  Template Name: Daily Shop
  Author : MarkUps
  Author URI: http://www.markups.io/
  Version: 1.0
  Tags: light, white, ecommerce, online store, multi page, custom-colors, Bootstrap,responsive, html5, css3, Sass, template, web template

*/

/* Table of Content
==================================================
#BASIC TYPOGRAPHY
#HEADER SECTION
#NAVBAR SECTION
#SLIDER SECTION
#PROMO SECTION
#PRODUCT SECTION
#BANNER SECTION
#POPULAR SECTION
#SUPPORT SECTION
#TESTIMONIAL SECTION
#LATEST BLOG SECTION
#CLIENT BRAND SECTION
#PRODUCT PAGE
#PRODUCT DETAILS PAGE
#CART VIEW PAGE
#CHECKOUT PAGE
#MY ACCOUNT  PAGE
#BLOG ARCHIVE  PAGE
#BLOG DETAILS  PAGE
#CONTACT  PAGE
#ERROR  PAGE
#FOOTER SECTION
#RESPONSIVE DESIGN

*/

/* BASE - Base tyles, Variables, Mixins, etc. */
body {
    background-color: #ffffff;
    font-family: "Lato", sans-serif;
    color: #333333;
    font-size: 16px;
    overflow-x: hidden;
}

.no-padding {
    padding: 0;
}
a{
    text-decoration: none !important;
}
/* ===================top-header============================ */
.top-header{
    background: rgb(1, 31, 51);
    height: 30px;
}
.left-header{
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.item1{
    color: white;
    font-size: 13px;
    font-weight: 300;
}
.item1 i{
    color: rgb(226, 38, 38);
    font-size: 15px;
    font-weight: 300;
}
.icon1::after {
    content: "|";
    color: white;
}
.right-header{
    height: 30px;
    display: flex;
    justify-content: space-between;
}
.icon a{
    line-height: 30px;
    color: rgb(226, 38, 38);
    font-size: 15px;
    font-weight: 300;
    text-decoration: none;
}


@media screen and (max-width: 480px){
    .item1{
        color: white;
        font-size: 10px;
        font-weight: 300;
    }
    .item1 i{
        color: rgb(226, 38, 38);
        font-size: 12px;
        font-weight: 300;
    }
    .right-header{
        height: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .icon a{
        color: rgb(226, 38, 38);
        font-size: 12px;
        font-weight: 300;
        text-decoration: none;
    }
}




/* ======================logo-section============================ */
.logo-section{
    height: 70px;
    background: rgb(226, 227, 227);
}
.logo img{
    height: 70px;
    width: 70px;
}

.search-item{
    height: 70px;
}

.search{
    height: 40px;
    width: 100%;
    margin-top: 15px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border: 1px solid gray;
    float: left;
}
.search-icon button{
    width: 50px;
    height: 40px;
    margin-top: 15px;
    background: rgb(1, 31, 51);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.search-icon button i{
    margin-left: 7px;
}
@media screen and (max-width:767px) {
    .logo img{
        height: 70px;
        width: 70px;
        float: left;
    }
    .search{
        height: 35px;
        width: 50%;
        margin-top: 15px;
        margin-left: 6rem;

    }
    .search-icon button{
        width: 50px;
        height: 35px;
    }
}
@media screen and (max-width: 700px){
    .search{
        height: 35px;
        width: 50%;
        margin-top: 15px;
        margin-left: 3rem;
    }
    .search-icon button{
        margin-top: 14px;
    }
}
@media screen and (max-width: 480px){
    .search{
        height: 30px;
        width: 50%;
        margin-top: 18px;
        margin-left: 3rem;
    }
    .search-icon button{
        width: 40px;
        height: 30px;
        margin-top: 17px;
    }
}
@media screen and (max-width: 360px){
    .search{
        height: 30px;
        width: 50%;
        margin-top: 18px;
        margin-left: 2rem;
    }
    .search-icon button{
        width: 40px;
        height: 30px;
        margin-top: 17px;
    }
}

/* ====================menu========================= */
.menu{
    height: 40px;
}
.cat-menu{
    height: 40px;
}
.cat-menu ul{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.cat-menu ul li{
    line-height: 40px;
}
.cat-menu ul li a{
    color: black;
    font-size: 20px;
    text-decoration: none;
    /* font-weight: 650; */

}
.cat-menu ul li{
    position: relative;
}
.cat-menu ul li ul{
    position: absolute;
    margin: 0;
    padding: 0;
    flex-direction: column;
    display: none;
}
.cat-menu ul li ul li a{
    font-size: 15px;
    font-weight: 200;
}
.cat-menu{
    z-index: 200;
}
.cat-menu ul li:hover ul{
    display: block;

}
.cat-menu ul:hover ul{
    background: burlywood;
}
.cat-menu ul li ul li{

    text-align: left;
    width: 260px;
    background: white;
    padding-left: 10px;
    font-family: Sans-Serif;
    font-size: 16px;
}
.cat-menu ul li ul li a{
    text-decoration: none;
}
.cat-menu i{
    line-height: 40px;
    margin-right: 20px;
}

.main-menu{
    height: 40px;
    /* background: rgb(3, 135, 139); */
}
.main-menu ul{
    list-style: none;
    display: flex;
    justify-content: space-around;
    height: 40px;
    align-items: center;
}
.main-menu ul li a{
    color: black;
    font-family: Sans-Serif;
    font-size: 16px;
    text-decoration: none;
}
.main-menu ul li a:hover{
    border-bottom: 3px solid rgb(226, 38, 38);
}
@media screen and (max-width:767px) {
    .menu{
        height: 40px;
    }
    .cat-menu{
        height: 40px;
        float: left;
    }
    .cat-menu ul{
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .cat-menu ul li{
        line-height: 40px;
    }
    .cat-menu ul li a{
        color: black;
        font-size: 15px;
        text-decoration: none;
        /* font-weight: 650; */

    }
    .cat-menu ul li{
        position: relative;
    }
    .cat-menu ul li ul{
        position: absolute;
        margin: 0;
        padding: 0;
        flex-direction: column;

    }
    .cat-menu ul li ul li a{
        font-size: 15px;
        font-weight: 200;
    }
    .cat-menu{
        z-index: 200;
    }
    .cat-menu ul li:hover ul{
        display: block;

    }
    .cat-menu ul:hover ul{
        background: burlywood;
    }
    .cat-menu ul li ul li{

        text-align: left;
        width: 240px;
        background: white;
        padding-left: 5px;
        font-family: Sans-Serif;
        font-size: 14px;
    }
    .cat-menu ul li ul li a{
        text-decoration: none;
    }
    .cat-menu i{
        line-height: 40px;
        margin-right: 20px;
    }

    .main-menu{
        height: 40px;
        /* background: rgb(3, 135, 139); */
    }
    .main-menu ul{
        list-style: none;
        display: flex;
        justify-content: space-around;
        height: 40px;
        align-items: center;
    }
    .main-menu ul li a{
        color: black;
        font-family: Sans-Serif;
        font-size: 14px;
        text-decoration: none;
    }
    .main-menu ul li a:hover{
        border-bottom: 3px solid rgb(226, 38, 38);
    }

}
@media screen and (max-width:480px) {
    .menu{
        height: 40px;
    }
    .cat-menu{
        height: 40px;
        float: left;
    }
    .cat-menu ul{
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .cat-menu ul li{
        line-height: 40px;
    }
    .cat-menu ul li a{
        color: black;
        font-size: 12px;
        text-decoration: none;
        /* font-weight: 650; */

    }
    .cat-menu ul li{
        position: relative;
        display: none;
    }
    .cat-menu ul li ul{
        position: absolute;
        margin: 0;
        padding: 0;
        flex-direction: column;

    }
    .cat-menu ul li ul li a{
        font-size: 12px;
        font-weight: 200;
    }
    .cat-menu{
        z-index: 50;
    }
    .cat-menu ul li:hover ul{
        display: block;

    }
    .cat-menu ul:hover ul{
        background: burlywood;
    }
    .cat-menu ul li ul li{

        text-align: left;
        width: 200px;
        background: white;
        /*padding-left: px;*/
        font-family: Sans-Serif;
        font-size: 11px;
    }
    .cat-menu ul li ul li a{
        text-decoration: none;
    }
    .cat-menu i{
        line-height: 40px;
        margin-right: 5px;
    }

    .main-menu{
        height: 40px;
        /* background: rgb(3, 135, 139); */
    }
    .main-menu ul{
        margin-left: 20px;
        list-style: none;
        display: flex;
        justify-content: space-between;
        height: 40px;
        align-items: center;
    }
    .main-menu ul li a{
        color: black;
        font-family: Sans-Serif;
        font-size: 12px;
        text-decoration: none;
    }
    .main-menu ul li a:hover{
        border-bottom: 3px solid rgb(226, 38, 38);
    }

}
/* =====================slider======================== */
#aa-slider .aa-slider-area{
    height: 500px;
    /*background: blue;*/
}
#aa-slider .aa-slider-area img{
    height: 500px;
}
@media screen and (max-width:480px) {
    #aa-slider .aa-slider-area{
        height: 200px;
        /*background: blue;*/
    }
    #aa-slider .aa-slider-area img{
        height: 200px;
    }
}
@media screen and (max-width:390px) {
    #aa-slider .aa-slider-area{
        height: 150px;
        /*background: blue;*/
    }
    #aa-slider .aa-slider-area img{
        height: 150px;
    }
    #aa-slider .aa-slider-area .seq .seq-next {
        display: none;
    }
    #aa-slider .aa-slider-area .seq .seq-next:hover, #aa-slider .aa-slider-area .seq .seq-next:focus {
        display: none;
    }
    #aa-slider .aa-slider-area .seq .seq-prev {
        display: none;
    }
    #aa-slider .aa-slider-area .seq .seq-prev:hover, #aa-slider .aa-slider-area .seq .seq-prev:focus {
        display: none;
    }
}

@media screen and (max-width:767px) {
    #aa-slider .aa-slider-area{
        height: 200px;
        /*background: blue;*/
    }
    #aa-slider .aa-slider-area img{
        height: 200px;
    }
    #aa-slider .aa-slider-area .seq .seq-next {
        display: none;
    }
    #aa-slider .aa-slider-area .seq .seq-next:hover, #aa-slider .aa-slider-area .seq .seq-next:focus {
        display: none;
    }
    #aa-slider .aa-slider-area .seq .seq-prev {
        display: none;
    }
    #aa-slider .aa-slider-area .seq .seq-prev:hover, #aa-slider .aa-slider-area .seq .seq-prev:focus {
        display: none;
    }
}
/* ====================catagories==================== */
.abc{
    height: auto;
    background: rgb(241, 239, 239);

}
.header-cat{
    height: 40px;
    background: rgb(241, 239, 239);
    /* border-bottom: 2px solid rgb(112, 111, 111); */
    margin-top: 30px;
    margin-bottom: 20px;
}
.title-cat{
    margin-top: 4px;
    font-size: 25px;
    font-weight: 480;
    color: rgb(59, 59, 57);

}
.catagories{
    margin-top: 20px;
    margin-bottom: 10px;

}
.box{
    height: 190px;
    width: 15%;
    background: white;
    float: left;
    margin-right: 19px;
    margin-bottom: 15px;
    /* background: rgb(250, 246, 246); */
    /* transition: transform .2s; */
    border-right: 1px solid rgb(107, 105, 105);
    border-bottom: 1px solid rgb(107, 105, 105);
}
.box:hover{
    /* transform: scale(0.9); */
    box-shadow: 5px 5px 5px 5px rgb(151, 150, 150);
}
.box a{
    color: black;
    font-size: 17px;
}
.sub-box img{
    height: 150px;
    width: 90%;
    margin-left: 9px;
    border: 0.5px solid rgb(184, 182, 182);

}


.sub-box p{
    margin-top: 10px;
    text-align: center;
    font-size: 15px;
}

@media screen and (max-width:767px){
    .abc{
        height: auto;
        background: rgb(241, 239, 239);

    }
    .header-cat{
        height: 30px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .title-cat{
        margin-top: 3px;
        font-size: 18px;
        margin-left: 15px;
    }
    .catagories{
        height: 100px;
    }
    .box{
        height: 125px;
        width: 17%;
        margin-right: 20px;
    }
    .box a{
        color: black;
        font-size: 16px;
    }
    .sub-box p{
        margin-top: 6px;
        text-align: center;
        font-size: 12px;
    }
    .sub-box img{
        height: 100px;
        width: 90%;
        margin-right: 13px;
        border:0.5px solid rgb(184, 182, 182);

    }
}
@media screen and (max-width:520px){

    .box{
        height: 130px;
        width: 29%;
        margin-right: 16px;
    }
    .box a{
        color: black;
        font-size: 16px;
    }
    .sub-box img{
        height: 100px;
        width: 90%;
        margin-right: 13px;
        border:0.5px solid rgb(184, 182, 182);

    }
}
@media screen and (max-width:580px){

    .box{
        height: 150px;
        width: 29%;
        margin-right: 16px;
    }
    .box a{
        color: black;
        font-size: 16px;
    }
    .sub-box img{
        height: 120px;
        width: 90%;
        margin-right: 13px;
        border:0.5px solid rgb(184, 182, 182);

    }
}
@media screen and (max-width:620px){

    .box{
        height: 150px;
        width: 27%;
        margin-right: 22px;
    }
    .box a{
        color: black;
        font-size: 16px;
    }
    .sub-box img{
        height: 120px;
        width: 90%;
        margin-right: 13px;
        border:0.5px solid rgb(184, 182, 182);

    }
}
@media screen and (max-width:680px){

    .box{
        height: 140px;
        width: 20%;
        margin-right: 18px;
    }
    .box a{
        color: black;
        font-size: 16px;
    }
    .sub-box img{
        height: 110px;
        width: 90%;
        margin-right: 13px;
        border:0.5px solid rgb(184, 182, 182);

    }
}
@media screen and (max-width:720px){

    .box{
        height: 140px;
        width: 20%;
        margin-right: 18px;
    }
    .box a{
        color: black;
        font-size: 16px;
    }
    .sub-box img{
        height: 110px;
        width: 90%;
        margin-right: 13px;
        border:0.5px solid rgb(184, 182, 182);

    }
}
@media screen and (max-width:480px){
    .abc{
        height: auto;
        background: rgb(241, 239, 239);

    }
    .header-cat{
        height: 25px;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .title-cat{
        margin-top: 3px;
        font-size: 16px;
    }
    .box{
        height: 125px;
        width: 27%;
        margin-right: 16px;
    }
    .box a{
        color: black;
        font-size: 16px;
    }
    .sub-box p{
        margin-top: 6px;
        text-align: center;
        font-size: 12px;
    }
    .sub-box img{
        height: 90px;
        width: 85%;
        margin-right: 13px;
        border:0.5px solid rgb(184, 182, 182);

    }
}
@media screen and (max-width:500px){

    .box{
        height: 130px;
        width: 29%;
        margin-right: 16px;
    }
    .box a{
        color: black;
        font-size: 16px;
    }
    .sub-box img{
        height: 100px;
        width: 90%;
        margin-right: 13px;
        border:0.5px solid rgb(184, 182, 182);

    }
}
@media screen and (max-width:460px){

    .box{
        height: 130px;
        width: 29%;
        margin-right: 16px;
    }
    .box a{
        color: black;
        font-size: 16px;
    }
    .sub-box img{
        height: 100px;
        width: 90%;
        margin-right: 13px;
        border:0.5px solid rgb(184, 182, 182);

    }
}
@media screen and (max-width:440px){

    .box{
        height: 150px;
        width: 37%;
        margin-right: 20px;
        margin-left: 15px;
    }
    .box a{
        color: black;
        font-size: 16px;
    }
    .sub-box img{
        height: 110px;
        width: 85%;
        margin-right: 15px;
        margin-top: 5px;
        border:0.5px solid rgb(184, 182, 182);

    }
}
@media screen and (max-width:420px){
    .box{
        height: 145px;
        width: 40%;
        margin-right: 15px;
        margin-left: 8px;
    }
    .box a{
        color: black;
        font-size: 16px;
    }
    .sub-box p{
        margin-top: 6px;
        text-align: center;
        font-size: 12px;
    }
    .sub-box img{
        height: 110px;
        margin-top: 5px;
        width: 85%;
        margin-right: 13px;
        border:0.5px solid rgb(184, 182, 182);

    }
}
@media screen and (max-width:380px){
    .box{
        height: 130px;
        width: 40%;
        margin-right: 20px;
        margin-left: 10px;
    }
    .box a{
        color: black;
        font-size: 16px;
    }
    .sub-box p{
        margin-top: 6px;
        text-align: center;
        font-size: 12px;
    }
    .sub-box img{
        height: 100px;
        width: 90%;
        margin-right: 13px;
        border:0.5px solid rgb(184, 182, 182);
    }
}
@media screen and (max-width:360px){
    .box{
        height: 130px;
        width: 40%;
        margin-right: 17px;
        margin-left: 6px;
    }

    .sub-box img{
        height: 100px;
        width: 90%;
        margin-right: 13px;
        border:0.5px solid rgb(184, 182, 182);
    }
}
/* ==================new-arrival======================== */
.product{
    height: auto;
}
.new-arrival{
    height: auto;
    margin-bottom: 20px;
}
.box12{
    height: 290px;
    width: 18%;
    background: white;
    float: left;
    margin-left: 2px;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-top: 10px;
    border-right: 1px solid rgb(107, 105, 105);
    border-bottom: 1px solid rgb(107, 105, 105);
    border-left: 1px solid rgb(107, 105, 105);
    border-top: 1px solid rgb(107, 105, 105);
    border-radius: 10px;
}
.box12:hover{
    /* transform: scale(0.9); */
    box-shadow: 2px 2px 2px 2px rgb(151, 150, 150);
}
.box12 a{
    color: black;
    font-size: 17px;
}
.sub-box12 img{
    height: 200px;
    width: 90%;
    margin-left: 9px;
    transition: transform .2s;
    margin-top: 12px;
}
.sub-box12 img:hover{
    transform: scale(1.1);
}

.sub-box12 p{
    margin-top: 10px;
    text-align: center;
    font-size: 17px;
}
.sub-box12 h4{
    text-align: center;
    font-size: 14px;
    color: rgb(226, 38, 38);
    margin: 0;
    padding: 0;
}
.browse{
    height: 40px;
    width: 180px;
    background: rgb(212, 79, 79);
    margin: auto;
}
.browse a{
    color: black;
    text-decoration: none;
    line-height: 40px;
    margin-left: 15px;
}
.browse:hover{
    background: #e8e6e6;
}
@media screen and (max-width:767px){
    .product{
        height: auto;
    }
    .new-arrival{
        height: auto;
    }
    .box12{
        height: 250px;
        width: 25%;
        margin-right: 25px;
        margin-left: 25px;
    }
    .box12 a{
        color: black;
        font-size: 12px;
    }
    .sub-box12 img{
        height:160px;
        width: 90%;
        margin-left: 8px;
        transition: transform .2s;
        margin-top: 8px;
    }
    .sub-box12 img:hover{
        transform: scale(1.1);
    }

    .sub-box12 p{
        text-align: center;
        font-size: 14px;
        margin-top: 30px;
    }
    .sub-box12 h4{
        text-align: center;
        font-size: 12px;
    }
}
@media screen and (max-width:680px){
    .product{
        height: auto;
    }
    .new-arrival{
        height: auto;
    }
    .box12{
        height: 220px;
        width: 26%;
        margin-right: 20px;
        margin-left: 20px;
    }
    .box12 a{
        color: black;
        font-size: 8px;
    }
    .sub-box12 img{
        height:130px;
        width: 95%;
        margin-left: 8px;

    }
    .sub-box12 p{
        text-align: center;
        font-size: 12px;
    }
    .sub-box12 h4{
        text-align: center;
        font-size: 12px;
    }
}
@media screen and (max-width:600px){
    .product{
        height: auto;
    }
    .new-arrival{
        height: auto;
    }
    .box12{
        height: 200px;
        width: 28%;
        margin-right: 11px;
        margin-left: 11px;
    }
    .box12 a{
        color: black;
        font-size: 8px;
    }
    .sub-box12 img{
        height:120px;
        width: 90%;
        margin-left: 8px;

    }
    .sub-box12 p{
        text-align: center;
        font-size: 12px;
    }
    .sub-box12 h4{
        text-align: center;
        font-size: 12px;
    }
}
@media screen and (max-width:560px){
    .product{
        height: auto;
    }
    .new-arrival{
        height: auto;
    }
    .box12{
        height: 190px;
        width: 27%;
        margin-right:11px;
        margin-left: 13px;
    }
    .box12 a{
        color: black;
        font-size: 8px;
    }
    .sub-box12 img{
        height:110px;
        width: 90%;
        margin-left: 8px;

    }
    .sub-box12 p{
        text-align: center;
        font-size: 12px;
    }
    .sub-box12 h4{
        text-align: center;
        font-size: 12px;
    }
}
@media screen and (max-width:480px){
    .product{
        height: auto;
    }
    .new-arrival{
        height: auto;
    }
    .box12{
        height: 190px;
        width: 27%;
        margin-right: 11px;
        margin-left: 11px;
    }
    .box12 a{
        color: black;
        font-size: 8px;
    }
    .sub-box12 img{
        height:110px;
        width: 90%;
        margin-left: 8px;

    }
    .sub-box12 p{
        text-align: center;
        font-size: 12px;
    }
    .sub-box12 h4{
        text-align: center;
        font-size: 12px;
    }
}
@media screen and (max-width:440px){

    .box12{
        height: 225px;
        width: 40%;
        margin-right: 15px;
        margin-left: 16px;
    }
    .box12 a{
        color: black;
        font-size: 8px;
    }
    .sub-box12 img{
        height:140px;
        width: 90%;
        margin-left: 8px;

    }
    .sub-box12 p{
        text-align: center;
        font-size: 12px;
    }
    .sub-box12 h4{
        text-align: center;
        font-size: 12px;
    }
}
@media screen and (max-width:420px){
    .product{
        height: auto;
    }
    .new-arrival{
        height: auto;
    }
    .box12{
        height: 225px;
        width: 40%;
        margin-right: 15px;
        margin-left: 15px;
    }
    .box12 a{
        color: black;
        font-size: 8px;
    }
    .sub-box12 img{
        height:140px;
        width: 90%;
        margin-left: 8px;

    }
    .sub-box12 p{
        text-align: center;
        font-size: 12px;
    }
    .sub-box12 h4{
        text-align: center;
        font-size: 12px;
    }
}

@media screen and (max-width:380px){
    .box12{
        height: 200px;
        width: 38%;
        margin-right: 17px;
        margin-left: 17px;
    }
    .box12 a{
        color: black;
        font-size: 8px;
    }
    .sub-box12 img{
        height:120px;
        width: 90%;
        margin-left: 8px;

    }
    .sub-box12 p{
        text-align: center;
        font-size: 12px;

    }
    .sub-box12 h4{
        text-align: center;
        font-size: 12px;
    }
}
/* ======================Offer================ */

.as{
    height: auto;
    background:  rgb(241, 239, 239);
}
.add{
    height: auto;
    background-color:  rgb(241, 239, 239);
    margin-bottom: 20px;
}
.add1{
    height: 240px;
    width: 100%;
    background: white;
    margin-top: 10px;


}
.add1 a{
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.add2{
    height: 210px;
    background: rgb(142, 142, 218);
    margin-top: 15px;
    border-radius: 20px;
    display: flex;
}
.image{
    height: 210px;

}
.add2 p{
    margin-top: 60px;
}

.add2 img{
    height: 130px;
    width: 130px;
    margin-top: 40px;
    margin-left: 30px;
}

/* .about-section{
    height: 500px;
    background: red; */


@media screen and (max-width:767px) {

    .as {
        height: auto;
    }

    .add {
        height: auto;
        width: 100%;
        background-color: rgb(241, 239, 239);

    }

    .add1 {
        height: 140px;
        width: 29%;
        background: white;
        margin-top: 15px;
        float: left;
        margin-right: 30px;
        margin-bottom: 15px;

    }

    .add1 a {
        font-size: 11px;
    }

    .add2 {
        height: 110px;
        margin-top: 15px;
    }

    .add2 p {
        margin-top: 8px;
        font-size: 10px;

    }

    .add2 img {
        height: 70px;
        width: 80px;
        margin-top: 15px;

    }

    @media screen and (max-width: 480px) {

        .as {
            height: auto;
        }

        .add {
            height: auto;
            width: 100%;
            background-color: rgb(241, 239, 239);

        }

        .add1 {
            height: 140px;
            width: 50%;
            background: white;
            margin-top: 15px;
            float: left;
            margin-right: 30px;
            margin-bottom: 15px;

        }

        .add1 a {
            font-size: 11px;
        }

        .add2 {
            height: 110px;
            margin-top: 15px;
        }

        .add2 p {
            margin-top: 8px;
            font-size: 10px;

        }

        .add2 img {
            height: 70px;
            width: 80px;
            margin-top: 15px;

        }
    }
}

/* ===================Banner================= */
.banner3 {
    height: 200PX;
    margin-bottom: 20px;
}

.banner-last {
    height: 200px;
    width: 100%;
}

@media screen and (max-width: 480px) {
    .banner3 {
        height: 100PX;
        margin-bottom: 2px;
    }

    .banner-last {
        height: 100px;
        width: 97%;
    }
}

@media screen and (max-width: 480px) {
    .banner3 {
        height: 100PX;
        margin-bottom: 2px;
    }

    .banner-last {
        height: 100px;
        width: 97%;
    }
}

/*-----------shipping------*/
.shipping-a {
    background: rgb(235, 232, 232);
    height: 200px;
}

.shipping-title {
    margin-top: 15px;
    font-size: 17px;
    font-weight: bold;
}

.shipping img {
    height: 150px;
    margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
    .shipping-a {
        background: rgb(235, 232, 232);
        height: 110px;
        margin-top: 5px;
    }

    .shipping-title {
        margin-top: 10px;
        font-size: 15px;
        font-weight: bold;
    }

    .shipping img {
        height: 70px;
        width: 90%;
    }
}
@media screen and (max-width: 480px) {
    .shipping-a {
        background: rgb(235, 232, 232);
        height: 110px;
        margin-top: 5px;
    }

    .shipping-title {
        margin-top: 10px;
        font-size: 15px;
        font-weight: bold;
    }

    .shipping img {
        height: 70px;
        width: 90%;
    }
}
/*------footer----------*/
.footer{
    height: 320px;
    background: rgb(51, 48, 48);
    margin-top: 20px;
}
.footer-menu ul{
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin-top: 70px;
    width: 300px;

}
.footer-menu ul li{
    color: white;


}
.footer-menu ul li ul{
    flex-direction: column;
    margin-top: 20px;
    margin: 0;
    padding: 0;
}
.footer-menu ul li ul li{
    margin-top: 15px;
    color: rgb(153, 150, 150);
    font-size: 13px;
    overflow: hidden;

}
.footer-menu ul li ul li i{
    margin-right: 10px;
}
.footer-menu ul li ul li a{
    color: rgb(153, 150, 150);
    font-size: 13px;

}
.ftr{
    background: #dfdfe2;
}

.footer-btn p{
    margin-left: 60rem;
    color: rgb(51, 51, 51);
    font-size:13px ;
}

@media screen and (max-width:767px){
    .footer{
        height: auto;
    }
    .footer-menu ul{
        margin-top: 5px;

    }
    .footer-menu ul li{
        font-size: 15px;

    }
    .footer-menu ul li ul{
        margin-top: 10px;
        margin: 0;
        padding: 0;

    }
    .footer-menu ul li ul li{
        margin-top: 5px;
        font-size: 13px;
    }
    .footer-menu ul li ul li i{
        margin-right: 5px;
    }
    .footer-menu ul li ul li a{
        font-size: 13px;
    }
    .ftr{
        background: #dfdfe2;
    }

    .footer-btn p{
        margin-left: 18rem;
        color: rgb(51, 51, 51);
        font-size:13px ;
    }

}
@media screen and (max-width:480px){
    .footer-btn p{
        margin-left: 8rem;
        color: rgb(51, 51, 51);
        font-size:10px ;
    }
}
@media screen and (max-width:460px){
    .footer-btn p{
        margin-left: 6rem;
        color: rgb(51, 51, 51);
        font-size:10px ;
    }
}
@media screen and (max-width:420px){
    .footer-menu ul li ul li a{
        font-size: 11px;
    }
    .footer-btn p{
        margin-left: 4rem;
        color: rgb(51, 51, 51);
        font-size:10px ;
    }
}
@media screen and (max-width:380px){
    .footer-menu ul li ul li a{
        font-size: 11px;
    }
    .footer-btn p{
        margin-left:1rem;
        color: rgb(51, 51, 51);
        font-size:10px ;
    }
}



/*--------login page-------*/
.login{
    background: whitesmoke;
}
.login_content {
    background: white;
    height: auto;
    width: 30%;
    margin-top: 4rem;
    margin-bottom: 4rem;
    margin-left: 50rem;
    padding: 2rem 4rem 2rem 4rem ;
}
.login_content h3{
    margin-bottom: 3rem;
    font-weight: bold;
}
.login_content i{
    color: rgb(226, 38, 38);
}
label{
    font-family: sans-serif;
    font-size: 16px;
    font-weight: lighter;
}
span{
    color: rgb(226, 38, 38);
    font-size: 22px;
}
.login_content a{
    color: rgb(226, 38, 38);
    text-decoration: none;
}

.login_content button{
    border-radius: 2rem;
    font-size:16px ;
    background: rgb(248, 98, 98);
}
@media screen and (max-width:767px){
    .login_content {
        background: white;
        height: auto;
        width: 60%;
        margin-top: 4rem;
        margin-bottom: 4rem;
        margin-left: 18rem;
        padding: 2rem 4rem 2rem 4rem ;
    }
    .login_content h3{
        margin-bottom: 2rem;
        font-weight: bold;
    }

    label{
        font-size: 16px;
        font-weight: lighter;
    }
    span{
        font-size: 18px;
    }
    .login_content button{
        border-radius: 2rem;
        font-size:14px ;
    }
    p{
        font-size: 14px;
    }
}
@media screen and (max-width:480px){
    .login_content {
        background: white;
        height: auto;
        width: 80%;
        margin-top: 4rem;
        margin-bottom: 4rem;
        margin-left: 5rem;
        padding: 2rem 4rem 2rem 4rem ;
    }
    .login_content h3{
        margin-bottom: 2rem;
        font-weight: bold;
    }

    label{
        font-size: 10px;
        font-weight: lighter;
    }
    span{
        font-size: 18px;
    }
    .login_content button{
        border-radius: 2rem;
        font-size:14px ;
    }
    p{
        font-size: 12px;
    }
}

/*Registration Page*/
.register{
    background: whitesmoke;
}
.register-content {
    background: white;
    height: auto;
    width: 40%;
    margin-top: 4rem;
    margin-bottom: 4rem;
    margin-left: 43rem;
    padding: 2rem 4rem 2rem 4rem ;
}
.register-content h3{
    margin-bottom: 3rem;
    font-weight: bold;
}
.register-content i{
    color: rgb(226, 38, 38);
}
label{
    font-family: sans-serif;
    font-size: 16px;
    font-weight: lighter;
}
span{
    color: rgb(226, 38, 38);
    font-size: 22px;
}
.register-content a{
    color: rgb(226, 38, 38);
    text-decoration: none;
}

.register-content button{
    border-radius: 2rem;
    font-size:16px ;
    background: rgb(248, 98, 98);
}
@media screen and (max-width:767px) {
    .register-content {
        background: white;
        height: auto;
        width: 70%;
        margin-top: 4rem;
        margin-bottom: 4rem;
        margin-left: 12rem;
        padding: 2rem 4rem 2rem 4rem;
    }

    .register-content h3 {
        margin-bottom: 2rem;
        font-weight: bold;
    }

    .register-content i {
        color: rgb(226, 38, 38);
    }

    label {
        font-family: sans-serif;
        font-size: 12px;
        font-weight: lighter;
    }

    span {
        color: rgb(226, 38, 38);
        font-size: 18px;
    }

    .register-content button {
        border-radius: 2rem;
        font-size: 12px;
        background: rgb(248, 98, 98);
    }

    .p {
        font-size: 14px;
    }
}
@media screen and (max-width:480px){
    .register-content {
        background: white;
        height: auto;
        width: 80%;
        margin-top: 4rem;
        margin-bottom: 4rem;
        margin-left: 5rem;
        padding: 2rem 4rem 2rem 4rem ;
    }
    .register-content h3{
        margin-bottom: 2rem;
        font-weight: bold;
    }
    .register-content i{
        color: rgb(226, 38, 38);
    }
    label{
        font-family: sans-serif;
        font-size: 12px;
        font-weight: lighter;
    }
    span{
        color: rgb(226, 38, 38);
        font-size: 18px;
    }

    .register-content button{
        border-radius: 2rem;
        font-size:12px ;
        background: rgb(248, 98, 98);
    }
    .p{
        font-size: 14px;
    }
}

/*customer-dashboard*/
. my-account1 h4{
    color: rgb(248, 98, 98);
}
.dashboard_wrapper{
    margin-top: 20px;
    margin-bottom: 20px;
}
.dashboard_sidebar{
    height: auto;
}
.dashboard_sidebar ul{
    list-style: none;
}
.dashboard_sidebar ul li{
    font-size: 17px;
    color: black;
    margin-top: 10px;
}
.dashboard_sidebar ul li a{
    color: black;
}


