@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&amp;display=swap');
:root{
    --c1:#83512f;
    /* --c1:#ff6f00;  */
    --c2:#f2f2f2;
}
a{
    text-decoration: none !important;
    color: black;
}
.c1{
    color: var(--c1) !important;
}
.top{
    background-color: #000000;
    color: #fff;
}
.t-bx i{
    color: #fff;
}
.final-i i{
    font-size: 14px;
    margin-right: 18px;
}
body{
    /* font-family: 'Roboto', sans-serif !important; */
    font-family: 'Poppins', sans-serif !important;
}
/* nav bar */
.navbar{
    transition: all .5s;
}
.logo{
    width: 120px;
    /* height: 70px; */
}

.newnav{
    position: fixed !important;
    top: 0% !important;
    left: 0%;
    width: 100%;
    z-index: 50;
    background: #ffffff !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    animation: mymove .5s ;
}
@keyframes mymove {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translatey(0%);
    }
  }
.dropdown-item{
    color: black !important;
}

.search-bx{
    width: 40%;
}
.serc-btn{
    background-color: var(--c1) !important;
    color: #fff !important;
}
.nav-item{
    padding: 0px 10px;
}
.nav-link{
    color: #000 !important;
}
.nav-active{
    color: var(--c1) !important;
    font-weight: bold !important;
}
.nv-icon{
    /* background-color: #ff6f00; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.icon-div img{
    width: 30px;
}
.nv-icon p{
    margin-bottom: 0% !important;
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: unset !important;
}
.dropdown:hover .dropdown-menu {
    transform: scale(1);
}
.dropdown-item{
    background-color: unset !important;
    transition: all .5s;
    font-size: 13px;
}
.dropdown-item i{
    margin-right: 6px;
}
.dropdown-item:hover{
    transform: translateX(10px);
    transition: all .5s;
}
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  }
  
  @-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
  }
  
  .slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
  }
  .animate {
    animation-duration: 1s;
    -webkit-animation-duration:1s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
  .get{
    background-color: var(--c1) !important;
    color: #fff !important;
  }
/* hero */
.mob-baner{
    display: none !important;
}
.desk-baner{
    display: block;
}
.hero{
    /* height: 80vh; */
    overflow: hidden;
}
.hero-slider{
    height: 100% !important;
}
.hero-crd{
    width: 100%;
}
.hero-crd img{
    width: 100%;
    height: 100%;
    object-fit: contain;

}
.navs-slidr{
    opacity: 0 !important;
    transition: all .5s;
}
.h-sl:hover .navs-slidr{
    opacity: 1 !important;
    transition: all .5s;
}
.pre{
    font-size: 40px;
    color: #000 !important;
    font-weight: 900;
}
.next{
    font-size: 40px;
    color: #000 !important;
    font-weight: 900;
}
.title{
    text-transform: capitalize;
    margin-bottom: 0% !important;
}
.more-btn{
    border: 3px solid var(--c1) !important;
    border-radius: 0% !important;
}
.more-btn:hover{
    background-color: var(--c1) !important;
    color: #fff !important;
    transition: all ease-in .5s;
}
/* categories */
.cat-bx{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.cat-bx img{
    width: 100%;
}
.cat-bx p{
    font-weight: bold;
    font-size: 15px;
}
.cat-bx:hover{
    color: var(--c1);
}
.cat-bx:hover .cat-imgs{
    animation: gelatine 0.8s;
}

@keyframes gelatine {
    from, to { transform: scale(1, 1); }
    25% { transform: scale(0.9); }
    50% { transform: scale(1.1); }
    75% { transform: scale(0.95); }
  }

/* product card */
.product-card{
    width: 100%;
    min-height: 260px;
    overflow: hidden;
    padding: 2%;
    /* background-color: #ff6f00 !important; */
}
.product-img{
    width: 100%;
    height: 240px ;
    position: relative;
    overflow: hidden;
    transition: all .5s;
}
.product-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-card:hover{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all .5s;
}
.pro-car-wis-bx{
    position: absolute;
    top: 2%;
    right: 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    transition: all .5s;
}
.ovl-cart{
    background-color: rgb(255, 255, 255,.5) !important;
    /* border: 2px solid var(--c1) !important; */
    border-radius: 50% !important;
    color: var(--c1) !important;
    font-weight: bold !important;
}
/* .product-card:hover .pro-car-wis-bx{
    position: absolute;
    bottom: 1%;
    transition: all .5s;
} */
.star{
    font-size: 20px;
    margin-bottom: 0% !important;
}
.color{
    color: rgb(232, 146, 25);
}
.un-color{
    color: #bebcbc;
}
.product-name{
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}
.price{
    font-size: 17px;
    color: var(--c1);
    letter-spacing: 1px;
    display: none;
}
.strik{
    color: #787777;
}


/* liv room and dining room section */
.re-direct{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}
.liv-bg{
    background-image: url(../images/liv-room-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.din-bg{
    background-image: url(../images/kitchen-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.re-d-box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 5px solid #fff;
}
.re-d-box p{
    font-size: 16px;
    color: #fff;
}
.re-d-box h3{
    font-size: 38px;
    color: #fff;
}
.sn-btn{
    background-color: var(--c1) !important;
    color: #fff !important;
    font-weight: bold !important;
}

/* timer */
.time-brd{
    border: 2px solid var(--c1);
    border-radius: 12px;
  }
  .tim-ovl{
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
  }
  .title-two{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background-color: #fff;
    width: 50%;
  }
  .ti-t{
    font-size: 21px;
    margin-right: 15px;
  }
  .wrap-countdown{
    background-color: var(--c1);
    border-radius: 18px;
  }
  .timer{
    /* text-transform: uppercase; */
    font-size: 21px;
    color: #fff;
    /* background-color: var(--c1); */
    border-radius: 5px;
  }

  /*///////////////////////// footer //////////////////////////*/
  footer{
    background-color: #000;
  }
  .foot-top{
    background-color: var(--c1);
  }
  .w{
    color: #fff;
  }
  .foot-top i{
    color: #fff;
  }
.foot-btn{
    background-color: var(--c2) !important;
    color: var(--c1) !important;
}
/*************footer End*****************/

/* cutom furniture */
.cutom{
    width: 100%;
}
.cus-txt{
    font-size: 40px;
}
.cus-pp{
    color: #787777;
}
.call-div{
    display: flex;
    align-items: center;
  }
  .call-bx{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background-color: var(--c1);
  }
  .call-bx i{
    color: #fff ;
    font-size: 30px;
  }
  .emi{
    /* background-image: url(../images/emi-bg.jpg); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
  }
  .emi-img{
    width: 180px;
  }
.pro-car-wis-bx{
    display: none;
}
.js{
    text-align: justify;
}
/* make it responsive */
@media screen and (max-width:1240px) {
    .product-img {
        height: 204px;
    }
  }

@media screen and (max-width:1030px) {
    .product-img {
        height: 162px;
    }
  }

@media screen and (max-width:920px) {
    body{
        width: 100%;
        padding: 0% !important;
        margin: 0% !important;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    .offcanvas {
        width: 80% !important;
    }
    .top-one{
        display: none;
    }
    .search-bx{
        width: 80%;
    }
    .mob-wish-cart{
        display: none !important;
    }
    /* hero */
    .mob-baner{
        display: block !important;
    }
    .desk-baner{
        display: none !important;
    }
    /* product card */
    /* .pro-car-wis-bx{
        position: absolute;
        
    } */
    .time-brd{
        border: 2px solid var(--c1);
        border-radius: 12px;
      }
      .tim-ovl{
        -webkit-transform: translateY(-150%);
        transform: translateY(-150%);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .title-two{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 50px;
        background-color: #fff;
        
        width: 70%;
      }
      .ti-t{
        font-size: 21px;
        margin-right: 15px;
      }
      .wrap-countdown{
        background-color: var(--c1);
        border-radius: 18px;
      }
      .timer{
        /* text-transform: uppercase; */
        font-size: 21px;
        color: #fff;
        /* background-color: var(--c1); */
        border-radius: 5px;
      }    
      /* footer */
      .foot-con{
        justify-content: center;
      }
      .emi-img {
        width: 123px;
    }
}
@media screen and (max-width:620px) {
    .cus-txt {
        font-size: 24px;
    }
    /* product card */
    .mob-log-box{
        background-color: var(--c1);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mob-log-box img{
        width: 55%;
        object-fit: contain;
    }
    .product-img {
        width: 100%;
        height: 165px ;
    }
    .product-name{
        font-size: 14px;
    }
    .price{
        font-size: 13px;
    }
    .star{
        font-size: 15px;
    }
    .ovl-cart{
        font-size: 12px !important;
    }

    /* timer */
    .tim-ovl{
        -webkit-transform: translateY(-137%);
        transform: translateY(-137%);
      }
    .ti-t {
        font-size: 12px;
        margin-right: 15px;
    }
    .timer{
        font-size: 12px;
    }
}

@media screen and (max-width:370px) {
    .ovl-cart {
        font-size: 11px !important;
    }
}