#breadcrumbs{
    display: none!important;
}

/*--------------------------
Hero
--------------------------*/

#hero .container-fluid{
    padding: 0;
}

#hero .slick-slide{
    height: 800px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

#hero .inner {
    width: 600px;
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#hero h1{
    color: #3D2A1B;
    text-align: center;
    margin: 0 0 20px;
}

#hero .content p{
    color: #3D2A1B;
    text-align: center;
}

#hero .slick-slider{
    margin: 0;
}

#hero .slick-dots{
    bottom: 0px;
    margin: 0;
}

#hero .slick-dots li button{
    content: '';
    border: 1px solid #3D2A1B;
    border-radius: 4px;
    width: 15px;
    height: 15px;
}

#hero .slick-dots li.slick-active button{
    background: #E3B75A;
}

#hero .slick-prev:before{
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    content: "\f053";
    color: #000;
    opacity: 1;
}

#hero .slick-prev{
    right: 80px;
    left: auto;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #3D2A1BA3;
    top: 90%;
    color: #000;
    background: #FFFFFF80;
    z-index: 999;
}

#hero .slick-next:before{
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    content: "\f054";
    color: #000;
    opacity: 1;
}

#hero .slick-next{
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #3D2A1BA3;
    top: 90%;
    color: #000;
    background: #FFFFFF80;
    z-index: 999;

}

#hero .slick-dots li button:before{
    content: '';
}

#hero .slick-prev:hover,
#hero .slick-next:hover{
    background: #FFFFFF80;
    color: #000;
    border: 1px solid #3D2A1BA3;
}

@media(max-width:991px){
    #hero .slick-slide{
        height: 700px;
    }
}

@media(max-width:767px){
    #hero .inner{
        width: 90%;
    }
}

@media(max-width:576px){
    #hero .slick-next,
    #hero .slick-prev{
        display: none;
    }
}

/*--------------------------
IL
--------------------------*/

#il{
    padding: 50px 0;
}

#il .wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

#il .no1{
    width: 29%;
}

#il .no2{
    width: 69%;
}

#il .bg{
    height: 250px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: end;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    background-repeat:no-repeat;
    background-size: cover;
}

#il .bg::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: transparent linear-gradient(180deg, #3D2A1B00 0%, #3D2A1B0B 36%, #402D1FED 72%, #402D1F 100%) 0% 0% no-repeat padding-box;
    opacity: .6;
    z-index: -1;
    border-radius: 10px;
}

#il .title p{
    font-size: 20px;
    color: #fff;
    margin: 0;
}

#il a.inner{
    transition: .3s all ease;
}

#il a.inner:hover{
    transition: .3s all ease;
    transform: scale(1.03);
}

@media(max-width:767px){
    #il .inner{
        width: 46%;
        margin: 0 10px;
    }
    
    #il .wrap{
        justify-content: center;
    }
}

@media(max-width:576px){
    #il .inner{
        width: 100%;
    }
}

/*--------------------------
Best
--------------------------*/

#best .products{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#best .inner{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

#best li.product{
    width: 48%;
    margin: 0 10px;
}

#best .left {
    width: 40%;
    padding-right: 20px;
    padding-left: 20px;
}

#best .right{
    width: 60%;
    height: 400px;
    overflow: hidden;
}

#best img{
    height: 400px;
    width: 100%;
    object-fit: cover;
    transition: .3s all ease;
}

#best img:hover{
    transform: scale(1.05);
    transition: .3s all ease;
}

#best .cat h3{
    color: #3D2A1B;
    font-size: 14px;
    font-weight: 500;
    min-height: 56px;
    font-family: 'Montserrat', sans-serif;
    text-transform: capitalize;
}

#best .cat h3 small{
    font-size: 14px;
}

#best .prodTitle p{
    color: #141414;
    font-size: 16px;
    min-height: 78px;
}

#best hr{
    background-color: #70707045;
    width: 100px;
    opacity: 1;
    margin: 20px auto;
    display: block;
}

#best .price{
    display: flex;
    align-items: center;
    justify-content: center;
}

#best .price p{
    font-size: 17px;
    font-weight: 500;
    color: #141414;
}

#best .price p:nth-child(2){
    margin-left: 20px;
}

#best h2{
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    position: relative;
}

#best h2::before{
    content: '';
    height: 1px;
    width: 100px;
    background: #3D2A1B;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: 420px;
}

#best h2::after{
    content: '';
    height: 1px;
    width: 100px;
    background: #3D2A1B;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    right: 420px;
    opacity: 1;
}

@media(max-width:1400px){
    #best h2::before{
        left: 320px;
    }
    #best h2::after{
        right: 320px;
    }
}

@media(max-width:1200px){
    #best h2::before{
        left: 220px;
    }
    #best h2::after{
        right: 220px;
    }
    #best .inner{
        margin-bottom: 20px;
    }
}

@media(max-width:991px){
    #best h2::before{
        left: 120px;
    }
    #best h2::after{
        right: 120px;
    }
}

@media(max-width:767px){
    #best h2::before{
        left: 20px;
    }
    #best h2::after{
        right: 20px;
    }
}

@media(max-width:576px){
    #best h2::before{
        display: none;
    }
    #best h2::after{
        display: none;
    }
    #best .left{
        order: 2;
    }
    
    #best .left .cat{
        margin-top: 20px;
    }
    
    #best .right{
        order: 1;
    }
}

@media(max-width:1200px){
    #best .left,
    #best .right{
        width: 50%;
    }
}

@media(max-width:991px){
    #best li.product{
        width: 100%;
    }
}

@media(max-width:576px){
    #best .inner{
        flex-direction: column;
    }
    #best .left,
    #best .right{
        width: 100%;
    }
    #best .prodTitle p{
        min-height: 0;
    }
    #best .left{
        padding: 0;
        margin-bottom: 20px
    }
}

/*--------------------------
IB
--------------------------*/

#ib{
    padding: 70px 0;
    background-size: cover;
}

#ib .inner{
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

#ib h2{
    color: #3D2A1B;
}

#ib p{
    color: #3D2A1B
}

#ib .btn{
    width: 100%;
}

/*--------------------------
POPULAR
--------------------------*/
/*Category*/
#popular{
    padding: 50px 0;
}

#popular .innerCat{
    height: 400px;
}

#popular .innerCat .image{
    position: relative;
    height: 400px;
}

#popular .innerCat img{
    width: 100%;
    border-radius: 10px;
    height: 400px;
    object-fit: cover;
}

#popular .innerCat .image .title {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgb(255 255 255 / 95%);
    width: 100%;
    border-radius: 0 0 10px 10px;
    padding: 20px 0;
}

#popular .innerCat .title h3 {
    font-size: 20px;
    color: #3D2A1B;
    font-weight: 600;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

#popular mark{
    display: none;
}

#popular h2{
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    position: relative;
}

#popular h2::before{
    content: '';
    height: 1px;
    width: 100px;
    background: #3D2A1B;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: 320px;
}

#popular h2::after{
    content: '';
    height: 1px;
    width: 100px;
    background: #3D2A1B;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    right: 320px;
    opacity: 1;
}

#popular .title h3{
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

#popular .title h3:before{
    content: '';
    height: 1px;
    width: 100px;
    background: #3D2A1B;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: -130px;
}

#popular .title h3:after{
    content: '';
    height: 1px;
    width: 100px;
    background: #3D2A1B;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    right: -130px;
}

@media(max-width:1200px){
    #popular .title h3:before,
    #popular .title h3:after{
        display: none;
    }
}

@media(max-width:991px){
    #popular .title h3:before,
    #popular .title h3:after{
        display: block;
    }
}

@media(max-width:767px){
    #popular .title h3:before,
    #popular .title h3:after{
        display: none;
    }
}

@media(max-width:1400px){
    #popular h2::before{
        left: 220px;
    }
    #popular h2::after{
        right: 220px;
    }
}

@media(max-width:1200px){
    #popular h2::before{
        left: 120px;
    }
    #popular h2::after{
        right: 120px;
    }
    #popular .inner{
        margin-bottom: 20px;
    }
}

@media(max-width:991px){
    #popular h2::before{
        left: 20px;
    }
    #popular h2::after{
        right: 20px;
    }
}

@media(max-width:767px){
    #popular h2::before{
        left: -50px;
    }
    #popular h2::after{
        right: -50px;
    }
}

@media(max-width:576px){
    #popular h2::before{
        display: none;
    }
    #popular h2::after{
        display: none;
    }
}

/*Product*/
#popular .slide .inner {
    display: flex;
    align-items: center;
    min-height: 400px;
    border: 1px solid #dfdfdf;
    border-radius: 10px;
}

#popular .slide .image{
    width: 100%;
    min-height: 400px;
}

#popular .slide .inner .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    padding: 10px;
}

#popular .slide .inner .left {
    width: 45%;
    padding-right: 20px;
    padding-left: 20px;
}

#popular .slide .inner .right{
    width: 55%;
    display: flex;
    min-height: 400px;
}

#popular .slide .catName h3{
    text-align: center;
    color: #3D2A1B;
    font-weight: 500;
	font-family: 'Montserrat', sans-serif;
}

#popular .slide .catName h3 small{
	font-size:14px;
}

#popular .slide .title{
    text-align: center;
    color: #141414;
}

#popular .slide .title p{
    min-height: 78px;
}

#popular .slide .price{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#popular .slide .price p{
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    color: #141414;
    margin: 0 10px;
}

#popular .slide hr{
    border-top: 1px solid #70707045;
    width: 100px;
    margin: 20px auto;
}

#popular .slick-next:before{
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    content: "\f054";
    color: #000;
    font-size: 15px;
    opacity: 1;
}

#popular .slick-next{
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #3D2A1BA3;
    top: 90%;
    color: #000;
    background: #ffffffc2;
    z-index: 999;
}

#popular .slide .click .btn{
    width: 100%;
}

@media(max-width:1200px){
    #popular .slide .price{
        flex-direction: column;
        align-items: center
    }
    #popular .slick-next{
        top: 85%;
    }
}

@media(max-width:991px){
    
    #popular .slick-slide{
        height: 400px;
    }
    #popular .slick-slider{
        margin: 0;
    }
    #popular .evenLeft{
        order: 2!important;
    }
    
    #popular .evenRight{
        order: 1!important;
    }
    #popular .slick-next{
        top: 90%;
    }
}

@media(max-width:576px){
    #popular .slide .inner{
        flex-direction: column;
        height: 500px;
    }
    #popular .slide .title p{
        min-height: 0;
    }
    #popular .slide .image{
        min-height: 100%;
    }
    #popular .slide .inner .right{
        height: 50%;
        min-height: auto;
        order: 1!important;
        width: 100%;
    }
    #popular .slide .inner .left{
        height: 50%;
        min-height: auto;
        order: 2!important;
        width: 100%;
        margin-top: 20px;
        padding: 0;
    }
    #popular .slick-slide{
        height: 500px;
    }
    #popular .slick-next{
        top: 38%;
    }
    
}


/*--------------------------
ILB
--------------------------*/

#ilb{
    padding: 50px 0;
    background: rgba(223, 223, 223, .25);
}

#ilb .inner{
    height: 250px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: end;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    background-size: cover;
}

#ilb a .inner{
    transition: .3s all ease;
}

#ilb a:hover .inner{
    transition: .3s all ease;
    transform: scale(1.03);
}

#ilb .inner:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: transparent linear-gradient(180deg, #3D2A1B00 0%, #3D2A1B0B 36%, #402D1FED 72%, #402D1F 100%) 0% 0% no-repeat padding-box;
    opacity: .6;
    z-index: -1;
    border-radius: 10px;
}

#ilb a{
    color: #fff;
    font-size: 22px;
}

@media(max-width:767px){
	#ilb .inner{
		margin: 0 10px 20px;
	}
}

/*--------------------------
Blog
--------------------------*/

#blog{
    padding: 50px 0;
}

#blog .mainHeader{
    text-align: center;
    margin: 0 0 50px;
}

#blog .mainHeader h2{
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #3D2A1B;
}

#blog .inner{
    padding: 0 20px;
}

#blog .inner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    object-position: top;
}

#blog .inner .image{
    height: 200px;
}

#blog h3{
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin: 10px 0;
}

#blog .date p{
    color: #3D2A1B;
    text-align: center;
    font-weight: 500;
    margin: 0 0 10px;
}

#blog .content p{
    color: #3D2A1B;
    text-align: center;
}

#blog h2::before{
    content: '';
    height: 1px;
    width: 100px;
    background: #3D2A1B;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: 420px;
}

#blog h2::after{
    content: '';
    height: 1px;
    width: 100px;
    background: #3D2A1B;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    right: 420px;
    opacity: 1;
}

#blog .mainHeader{
    position: relative;
}

@media(max-width:1400px){
    #blog h2::before{
        left: 320px;
    }
    #blog h2::after{
        right: 320px;
    }
}

@media(max-width:1200px){
    #blog h2::before{
        left: 220px;
    }
    #blog h2::after{
        right: 220px;
    }
}

@media(max-width:991px){
    #blog h2::before{
        left: 120px;
    }
    #blog h2::after{
        right: 120px;
    }
}

@media(max-width:767px){
    #blog h2::before{
        left: 20px;
    }
    #blog h2::after{
        right: 20px;
    }
	#blog .btn-alt{
		width: 100%;
	}
}

@media(max-width:576px){
    #blog h2::before{
        display: none;
    }
    #blog h2::after{
        display: none;
    }
}


