/* ***** Common Css **** */
:root {
    scroll-behavior: initial;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
img {
    display: ;
}
a,button {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.main-wrpper {
    height: 100%;
    width: 100%;
}
.container{
    max-width: 1440px;
}
/* ***** End Common Css **** */

/* **** Header **** */
header {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
header.nav-new{
    padding: 15px 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
.navbar .container .navbar-brand,
.navbar .container-fluid .navbar-brand {
    margin-left: 0;
}
.navbar-brand {
    float: none;
    height: auto;
    padding: 0;
}
.navbar-brand img {
    max-width: 100%;
    height: 50px;
}
.navbar {
    background: transparent;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.nav-row{
    display: flex;
    align-items: center;
    width: 100%;
}
.navbar-light .navbar-nav {
    margin: 0 0 0 90px;
}
.navbar-light .navbar-nav li {
    margin-right: 40px;
}
.navbar-light .navbar-nav li:last-child {
    margin-right: 0;
}
.navbar-light .navbar-nav .nav-link{
    padding: 10px 0px;
    color: #1A1A1A;
    font-size: 18px;
    font-weight: 500;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar-light .navbar-nav .nav-link i{
    margin: 0 0 0 10px;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover {
    color: #5E2421;
}
.dropdown-toggle::after{
    display: none;
}
.navbar-light .navbar-nav li .dropdown-menu{
    padding: 0;
    background: #fff;
    border-radius: 0;
    border: 1px solid #ddd;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
.navbar-light .navbar-nav li a.show i{
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.navbar-light .navbar-nav li .dropdown-menu li{
    margin: 0;
}
.navbar-light .navbar-nav li .dropdown-menu li a{
    display: block;
    padding: 10px;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    border-bottom: 1px solid #ddd;
}
.navbar-light .navbar-nav li .dropdown-menu li:last-child a{
    border: none;
}
.navbar-light .navbar-nav li .dropdown-menu li a:hover{
    background: #5E2421;
    color: #fff;
}

ul.enter-nav{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 0 0 auto;
}
ul.enter-nav li{
    margin-right: 50px;
}
ul.enter-nav li:last-child{
    margin: 0;
}
ul.enter-nav li a{
    display: block;
    text-align: center;
    padding: 10px 0;
    color: #5E2421;
    font-size: 18px;
    font-weight: 500;
}
ul.enter-nav li a i{
    margin: 0 10px 0 0;
}
ul.enter-nav li a:hover{
    color: #333;
}
/* **** End Header **** */


/* **** toggler **** */
.navbar-light .navbar-toggler {background-color: transparent;border-radius: 0;outline: none;box-shadow: none;border: none;height: 40px;width: 50px;padding: 0;}
.navbar-light .navbar-toggler:focus {box-shadow: none;outline: none; }
.navbar-light .navbar-toggler .navbar-toggler-icon {background-image: unset;}
.navbar-toggler:active, .navbar-toggler:focus { outline: none; }
.navbar-light .navbar-toggler-icon {width: 24px;height: 18px;background-image: none;position: relative;border-bottom: 2px solid #000;transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {width: 24px;position: absolute;height: 2px;background-color: #000;top: 0;left: 0;content: "";z-index: 2;transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after {top: 8px;}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {transform: rotate(45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {transform: translateY(8px) rotate(-45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {border-color: transparent;}
/* **** End toggler **** */

/* **** Home Pager **** */
.hero-block{
    position: relative;
    margin: 90px 0 0;
}
.hero-block:after{
    position: absolute;
    content: '';
    background: radial-gradient(50% 50% at 50% 50%, rgba(94, 36, 33, 0) 0%, rgba(94, 36, 33, 0.7) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.hero-block img{
    width: 100%;
    height: calc(100vh - 90px);
    object-fit: cover;
    object-position: top;
}
.hero-center-row{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1;
}
.banner-data{
    margin: 0 auto;
    max-width: 750px;
    width: 100%;
}
.banner-data h3{
    font-size: 60px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto 10px;
}
.banner-data h2,.banner-data h1{
    font-size: 100px;
    font-weight: normal;
    color: #fff;
    text-align: center;
    margin: 0 auto 35px;
    text-transform: uppercase;
}
.banner-data .btn-group{
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-data .btn-group .btn-main,
.banner-data .btn-group .btn-secondary{
    max-width: 200px;
    padding: 20px;
    text-align: center;
    width: 100%;
}
.btn-secondary{
    padding: 20px 40px;
    background: #fff;
    display: table;
    font-size: 18px;
    font-weight: 400;
    border: 1px solid #5E2421;
    color: #000000;
    text-transform: uppercase;
}
.btn-secondary:hover{
    background: #333;
    border-color: #333;
    color: #fff;
}
.btn-main{
    padding: 20px 40px;
    background: #5E2421;
    display: table;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    border: none;
}
.btn-main:hover{
    background: #000;
    color: #fff;
}
.banner-data .btn-group .btn-secondary{
    margin-right: 30px;
}
.hero-slider .slick-prev,
.hero-slider .slick-next{
    position: absolute;
    right:30px;
    left: auto;
    border: none;
    color: transparent;
    background-color: transparent;   
    width: auto;
    height: auto;
    font-size: 0;
    z-index: 10;
    color: transparent;
    z-index: 5;
    top:50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    transition: .4s linear;
}
.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
    width: 50px;
    height: 50px;
    content: "\f054";
    font-family: 'Font Awesome 5 Pro';
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    font-weight:400;
    line-height: 50px;
    display: block;
    border-radius:6px;
    text-align: center;
    font-size:18px;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.hero-slider .slick-prev {
    left:30px;
    right: auto;
}
.hero-slider .slick-prev:before {
    content: "\f053";
}
.hero-slider .slick-prev:hover:before,
.hero-slider .slick-next:hover:before{
    color:#fff;
    background:#5E2421;
}

.populer-wrp{
    padding: 100px 0 0;
    background: #FDF7EB;
}
.populer-wrp h2{
    margin: 0 auto 45px;
    font-weight: 400;
    font-size: 35px;
    line-height: 41px;
    text-align: center;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #000000;
}
.categories-row{
    max-width: 1000px;
    margin: -150px auto 0;
    width: 100%;
    position: relative;
    bottom: -150px;
    z-index: 5;
}
.categories-row ul{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.categories-row ul li{
    width: 33.33%;
    padding: 0 15px;
}
.categories-img{
    position: relative;
    width: 100%;
    height: 315px;
    margin: 0 auto 25px;
    overflow: hidden;
    border: 2px solid #fff;
}
.categories-img img{
    width: 100%;
    height: 315px;
    object-fit: cover;
    transition: .4s linear;
    -webkit-transition: .4s linear;
    transform: scale(1);
    -webkit-transform: scale(1);
}
.categories-block h3{
    font-size: 24px;
    font-weight: normal;
    color: #000;
    line-height: 32px;
    text-align: center;
    margin: 0 auto;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.categories-row ul li:hover .categories-img img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
.categories-row ul li:hover .categories-block h3{
    color: #5E2421;
}

.new-collect-wrp{
    position: relative;
    padding: 250px 0 100px;
    overflow: hidden;
}
.titlebar{
    margin: 0 auto 50px;
}
.titlebar h2{
    font-size: 42px;
    font-weight: normal;
    color: #000;
    text-align: center;
    line-height: 50px;
    margin: 0 auto;
    text-transform: uppercase;
}

.new-collect-slider .slick-slide {
    margin: 0 15px;
}
.new-collect-slider .slick-list {
    margin: 0 -15px;
}
.collection-img{
    position: relative;
    overflow: hidden;
}
.collection-img img{
    width: 100%;
}
.collection-img ul{
    position: absolute;
    bottom: -100%;
    right:0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.6s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
    -webkit-transition: bottom 0.6s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
}
.collection-img ul li{
    margin: 0 0;
}
.collection-img ul li a{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5E2421;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.10);
    color: #fff;
    font-size: 14px;
}
.collection-img ul li a:hover{
    color: #5E2421;
    background: #fff;
}
.collection-block:hover .collection-img ul{
    bottom: 25px;
}
.btn-wish.active {
    font-weight: bold;
}
.btn-wish.active i:before{
    content: "\f004";
    font-weight: bold;
}

.collection-data{
    padding: 15px 0 0;
    display: flex;
}
.collection-data h3{
    margin: 0;
    font-size: 24px;
    line-height: 26px;
    font-weight: normal;
    color: #000;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.collection-data h3 span{
    display: block;
    font-size: 14px;
    font-weight: normal;
    color: #666666;
}
.collection-data h4{
    margin: 0 0 0 auto;
    font-size: 18px;
    font-weight: normal;
    color: #C29310;
}
.collection-block:hover .collection-data h3{
    color: #5E2421;
}

.festival__arrows,
.collection__arrows{
    margin: 35px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.festival__arrows .festival__arrow,
.collection__arrows .collection__arrow{
    width: 50px;
    height: 50px;
    background: #FDF7EB;
    line-height: 50px;
    text-align: center;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    color: #333;
    display: block;
    cursor: pointer;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.festival__arrows .festival__arrow:hover,
.collection__arrows .collection__arrow:hover{
    background: #5E2421;
    color: #fff;
}

.about-row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #FDF7EB;
}
.about-img{
    width: 55%;
}
.about-img img{
    width: 100%;
}
.about-data{
    width: 45%;
}
.abt-dt-block{
    max-width: 630px;
    margin: 0 auto;
    width: 100%;
}
.abt-dt-block h3{
    margin: 0 0 30px;
    font-size: 35px;
    font-weight: 600;
    color: #333333;
    line-height: 40px;
}
.abt-dt-block p{
    margin: 0;
    font-size: 18px;
    font-weight: normal;
    color: #707070;
    line-height: 28px;
}

.festive-collection-wrp{
    padding: 100px 0;
    position: relative;
}
.festival-collect-slider .slick-slide {
    margin: 0 15px;
}
.festival-collect-slider .slick-list {
    margin: 0 -15px;
}

.festival-collect-slider .collection-block .collection-data{
    justify-content: center;
}
.festival-collect-slider .collection-block .collection-data h3{
    font-size: 28px;
    color: #1A1A1A;
    line-height: 36px;
    margin: 0 auto;
}


.blog-wrp{
    padding: 75px 0;
    background: #FDF7EB;
    position: relative;
    overflow: hidden;
}
.blog-wrp .container-fluid{
    width: calc(1440px - 24px + (100vw - 1440px)/2);
    margin-right: 0;
    padding: 0;
}

.blog-slider .slick-slide{
    margin: 0 25px;
}
.blog-slider .slick-list{
    margin: 0 -25px;
}
.blog-data{
    max-width: 300px;
}
.blog-data h2{
    font-size: 34px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 25px;
    padding: 0 0 15px;
    position: relative;
}
.blog-data h2:after{
    position: absolute;
    content: '';
    width: 45px;
    height: 1px;
    background: #707070;
    bottom: 0;
    left: 0;
}
.blog-data p{
    margin: 0 0 30px;
    font-size: 18px;
    font-weight: normal;
    color: #707070;
    line-height: 26px;
}
.blog-block h3{
    font-size: 26px;
    font-weight: 500;
    color: #333333;
    line-height: 36px;
    margin: 0 0 15px;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.blog-block:hover h3{
    color: #5E2421;
}
.blog-block p{
    font-size: 18px;
    font-weight: normal;
    color: #707070;
    line-height: 26px;
    margin: 0 0 25px;
}
.blog-foot{
    display: flex;
    align-items: center;
    padding: 15px 0 0;
    border-top: 1px solid #707070;
}
.blog-foot h6{
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    color: #333333;
    text-transform: uppercase;
}
.blog-foot .btn-read{
    margin: 0 0 0 auto;
    font-size: 20px;
    color: #000;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.blog-foot .btn-read:hover{
    transform: rotate(0);
    -webkit-transform: rotate(0);
    color: #5E2421;
}
.blog__arrows{
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}
.blog__arrows .blog__arrow{
    width: 40px;
    height: 40px;
    background: #fff;
    line-height: 42px;
    text-align: center;
    border: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    border-radius: 100%;
    font-size: 16px;
    color: #333;
    display: block;
    cursor: pointer;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.blog__arrows .blog__arrow:hover{
    background: #5E2421;
    color: #fff;
}

.lets-join-wrp{
    position: relative;
    padding: 150px 0;
    background: url('../images/add-banner.png') 0 0 no-repeat;
    background-size: cover;
}
.lets-join-wrp:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.70);
    top: 0;
    left: 0;
    right: 0;
}
.lets-join-wrp .container{
    position: relative;
    z-index: 1;
}
.lets-join-wrp h2{
    font-size: 85px;
    font-weight: normal;
    color: #fff;
    line-height: 95px;
    margin: 0 auto 45px;
    text-align: center;
}
.lets-join-wrp .btn-main{
    margin: 0 auto;
}
.lets-join-wrp .btn-main:hover{
    background: #fff;
    color: #5E2421;
}

.insta-wrp{
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.insta-wrp .slick-slide {
    margin: 0 15px;
}
.insta-wrp .slick-list {
    margin: 0 -15px;
}
.insta-block img{
    width: 100%;
}

footer{
    background: #E7E1D8;
    position: relative;
}
.footer-top{
    padding: 60px 0;
    border-bottom: 1px solid #000;
}
.foot-bx{
    display: flex;
    align-items: center;
}
.foot-bx figure{
    min-width: 85px;
    max-width: 85px;
    margin: 0 25px 0 0;
}
.foot-bx figure img{
    width: 100%;
}
.foot-crtdt h3{
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    line-height: 26px;
    margin: 0 0 5px;
}
.foot-crtdt p{
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    color: #666666;
    line-height: 26px;
}
.subscribe-box h3{
    font-size: 28px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.subscribe-box .form-group{
    margin: 0;
    display: flex;
    border-bottom: 1px solid #707070;
}
.subscribe-box .form-group .form-control{
    padding: 15px 0;
    border: none;    
    height: auto;
    box-shadow: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 300;
    color: #666666;
    background: transparent;
}
.subscribe-box .form-group button{
    background: transparent;
    border: none;
    font-size: 16px;
    color: #000000;
}
.subscribe-box .form-group button:hover{
    color: #5E2421;
}

.foot-middle{
    padding: 70px 0;
}
.footer-about{
    max-width: 350px;
}
.footer-about img{
    height: 50px;
    margin: 0 0 25px;
}
.footer-about p{
    margin: 0 0 25px;
    font-size: 16px;
    line-height: 26px;
    color: #666666;
    font-weight: 400;
}
.social-bx{
    display: flex;
    align-items: center;
}
.social-bx a{
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    margin-right: 10px;
}
.social-bx a:last-child{
    margin: 0;
}
.social-bx a:hover{background: #5E2421;color: #fff;border-color: #5E2421;}

.quicklinks h3{
    margin: 0 0 30px;
    font-size: 24px;
    font-weight: 500;
    color: #000;
    line-height: 30px;
}
.quicklinks ul li{
    margin: 0 0 15px;
}
.quicklinks ul li:last-child{
    margin: 0;
}
.quicklinks ul li a{
    display: block;
    font-size: 18px;
    font-weight: 300;
    color: #666666;
    line-height: 26px;
}
.quicklinks ul li a:hover{
    color: #000;
}
.quicklinks p{
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    color: #666666;
    line-height: 26px;
}

.copyright{
    padding: 30px 0;
    border-top: 1px solid #000;
}
.copyright .row{
    align-items: center;
}
.copyright p{
    margin: 0;
    font-size: 20px;
    font-weight: 300;
    color: #000;
}
.card-bx{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.btn-top{
    position: fixed;
    bottom: -100%;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #5E2421;
    border-radius: 100%;
    border: none;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    transition: bottom 0.8s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
    -webkit-transition: bottom 0.8s cubic-bezier(0.46, 0.03, 0.52, 0.96), box-shadow 0.3s ease-out;
}
.btn-top:hover{
    background: #333;
    color: #fff;
}
.btn-top.show{
    bottom: 30px;
}
/* **** End Home Pager **** */

/* **** Login & Register Popup **** */  
.modal{
    background: rgba(94, 36, 33, 0.50);
    backdrop-filter: blur(10px);
}
.modal-dialog{
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
}
.modal-content{
    padding: 50px 25px;
    background: #fff;
    border-radius: 0;
    border: none;
    box-shadow: none;
}
.login-block figure img{
    margin: 0 auto 15px;
    height: 50px;
}
.login-block h2{
    font-size: 32px;
    font-weight: normal;
    color: #000;
    text-align: center;
    line-height: 40px;
    margin: 0 auto 30px;
    text-transform: uppercase;
}
.login-frm{
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}
.login-frm .form-group{
    margin: 0 0 20px;
}
.login-frm .form-group .form-control{
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius:0;
    box-shadow: none;
    height: auto;
    font-size: 15px;
    background: #f9f9f9;
    font-weight: normal;
    color: #333;
}

.login-rw{
    display: flex;
    align-items: center;
    margin: 0 0 25px;
}
.custom-chackbx .styled-checkbox {
    position: absolute;
    opacity: 0;
}
.custom-chackbx .styled-checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    color: #333;
}
.custom-chackbx .styled-checkbox + label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    min-width: 20px;
    width: 20px;
    height: 20px;
    background: #F5F5F5;
}
.custom-chackbx .styled-checkbox:checked + label:after {
    content:"\f00c";
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    left: 0;
    top: 0;
    background: #5E2421;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    font-size: 12px;
}
.login-rw .btn-forgot{
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin: 0 0 0 auto;
}
.login-rw .btn-forgot:hover{
    color: #5E2421;
}

.login-frm button{
    margin: 0 auto 15px;
    display: table;
    padding: 15px 40px;
}
.login-frm h6{
    text-align: center;
    font-size: 14px;
    font-weight: normal;
    color: #333;
    margin: 0 auto;
}
.login-frm h6 a{
    color: #5E2421;
    font-weight: 600;
}
.login-frm h6 a:hover{
    color: #777;
}

.btn-close{
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background: #f5f5f5;
    color: #333;
    font-size: 18px;
    font-weight: 300;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    border-radius: 0;
}
.btn-close:hover{
    background: #5E2421;
    color: #fff;
    opacity: 1;
}
/* **** End Login & Register Popup **** */  

/* **** Product Page **** */
.inner-populer{
    padding: 150px 0 0;
}
.inner-populer h1{
    margin: 0 auto 25px;
    font-weight: 400;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #000000;
}
.product-wrps{
    padding: 220px 0 100px;
}
.inner-populer .categories-row{
    max-width: 850px;
}
.inner-populer .categories-row .categories-block .categories-img,
.inner-populer .categories-row .categories-block .categories-img img{
    height: 260px;
    border-radius: 10px;
}
.inner-populer .categories-row .categories-block h3{
    font-size: 20px;
}
.filter-row {
    margin: 0 0 30px;
}
.filter-row .row {
    align-items: center;
}
.filter-lst-rw {
    display: flex;
    align-items: center;
}
.filter-lst-rw .btn-filter {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #6c000d;
    margin: 0 0;
    display: none;
}
.filter-lst-rw .btn-filter i {
    margin-right: 5px;
}
.filter-lst-rw .btn-filter:hover {
    color: #333;
}
.sort-rw {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.sort-rw label {
    margin: 0 15px 0 0;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}
.sort-rw .form-control {
    padding: 5px 45px 5px 15px;
    width: fit-content;
    display: table;
    border: 1px solid rgb(233 233 233);
    border-radius: 6px;
    height: auto;
    box-shadow: none;
    font-size: 14px;
    font-weight: normal;
    color: #000;
    -webkit-appearance: none;
    background-image: url(../images/down.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center right 15px;
}
.product-listing-wrp .collection-block{
    margin: 0 0 30px;
}
.pagination-rw{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0;
}
.pagination-rw ul{
    display: flex;
    align-items: center;
}
.pagination-rw ul li{
    margin-right: 10px;
}
.pagination-rw ul li:last-child{
    margin: 0;
}
.pagination-rw ul li a{
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 100%;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.pagination-rw ul li a:hover{
    color: #5E2421;
}
.pagination-rw ul li.active a{
    background: #5E2421;
    color: #fff;
}
/* **** End Product Page **** */


/* ***** Filter Sidebar ***** */
.filter-sidebar {
    position: sticky;
    top: 100px;
    left: 0;
    width: 100%;
    max-width: 320px;
    overflow: hidden;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    /*border-right: 1px solid rgb(0, 0, 0 , 0.15);*/
}
.filter-inner {
    background-color: #FDF7EB;
    width: 100%;
    padding: 25px;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}
.filter-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 30px;
}
.filter-top h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    color: #5E2421;
    margin: 0;
}
.filter-close {
    font-size: 20px;
    color: #1F1F1F;
    display: none;
}
.filter-close:hover {
    opacity: 0.5;
}
.filter-price .middle {
    position: relative;
    width: 100%;
    display: inline-block;
}
.filter-price .slider {
    position: relative;
    z-index: 1;
    height: 5px;
}
.filter-price .slider>.track {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    background: #ECECEC;
}
.filter-price .slider>.range {
    position: absolute;
    z-index: 2;
    left: 25%;
    right: 25%;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    background: #1F1F1F;
}
.filter-price .slider>.thumb {
    position: absolute;
    z-index: 3;
    width: 16px;
    height: 16px;
    background: #1F1F1F;
    border-radius: 50%;
}
.filter-price .slider>.thumb.left {
    left: 25%;
    transform: translate(-15px, -5px);
    -webkit-transform: translate(-15px, -5px);
}
.filter-price .slider>.thumb.right {
    right: 25%;
    transform: translate(15px, -5px);
    -webkit-transform: translate(15px, -5px);
}
.filter-price .range2 {
    position: absolute;
    pointer-events: none;
    -webkit-appearance: none;
    z-index: 2;
    height: 5px;
    width: 100%;
    opacity: 0;
}
.filter-price .range2::-webkit-slider-thumb {
    pointer-events: all;
    width: 30px;
    height: 30px;
    border-radius: 0;
    border: 0 none;
    cursor: pointer;
    -webkit-appearance: none;
}
.filter-price #multi_range {
    margin: 16px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.filter-price #multi_range p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #1F1F1F;
    margin: 0;
}
.filter-price,
.filter-type {
    margin: 0 0 30px;
    padding: 0 0 30px;
    border-bottom: 1px solid rgb(233 233 233);
}
.filter-inner .title {
    margin: 0 0 16px;
}
.filter-inner .title h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}
.filter-color form ul {
    display: flex;
    flex-wrap: wrap;
}
.filter-color form ul li {
    margin: 0 10px 10px 0;
}
.filter-color .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
.filter-color .form-group label {
    position: relative;
    cursor: pointer;
    border: 1px solid #E9E9E9;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 5px 15px;
    border-radius: 50px;
}
.filter-color .form-group input:checked+label {
    border-color: #5E2421;
    background: #5E2421;
    color: #fff;
}
.filter-type .accordion-item {
    margin: 0 0 10px;
    padding: 0 0 10px;
    border: none;
    border-bottom: 1px solid rgb(0, 0, 0 , 0.15);
    box-shadow: none;
    background: transparent;
    border-radius: 0;
}
.filter-type .accordion-item:last-child {
    margin: 0;
    border: none;
}
.filter-type .accordion-button {
    padding: 0;
    box-shadow: none !important;
    border: 0 !important;
    outline: 0;
    font-size: 16px;
    line-height: 26px;    
    font-weight: 400;
    color: rgb(105 108 112);
    border-radius: 0 !important;
    background: transparent !important;
}
.filter-type .accordion-header {
    font-family: "Open Sans", sans-serif;
}
.filter-type .accordion-button::after {
    background-size: 14px;
    background-position: center;
}
.filter-type .accordion-body {
    padding: 10px 0 0;
}
.filter-type .accordion-body ul {
    padding-left: 20px;
}
.filter-type .accordion-body ul li {
    margin: 0 0 6px;
    list-style: circle;
}
.filter-type .accordion-body ul li:last-child {
    margin: 0;
}
.filter-type .accordion-body ul li a {
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    color: #1F1F1F;
}
.filter-type .accordion-body ul li a:hover {
    color: #6c000d;
}
/* ***** End Filter Sidebar ***** */

/* ***** Product Details Page ***** */
.inner-banner{
    padding: 150px 0 60px;
    background: #FDF7EB;
}
.inner-banner h1{
    font-size: 40px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto 15px;
    letter-spacing: 4px;
}
.inner-banner ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-banner ul li{
    margin-right: 25px;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}
.inner-banner ul li:after{
    position: absolute;
    content: '/';
    font-size: 14px;
    color: #333;
    font-weight: normal;
    right: -15px;
    top: 0;
}
.inner-banner ul li:last-child{
    margin: 0;
}
.inner-banner ul li:last-child:after{display: none;}
.inner-banner ul li a{
    color: #333;
    font-weight: 500;
}
.inner-banner ul li a:hover{
    color: #5E2421;
}

.product-details-wrp{
    padding: 50px 0;
}
.product-details-data {
    position: relative;
}
.product-details-data h6 {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #5E2421;
    margin: 0 0 3px;
    padding: 0 60px 0 0;
}
.product-details-data h2{
    font-size: 40px;
    font-weight: 500;
    color: #5E2421;
    padding: 0 60px 0 0;
    line-height: 52px;
    margin: 0 0 20px;
}
.product-details-data .btn-wish {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
}
.product-details-data .btn-wish::before {
    content: '\f004';
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    font-size: 18px;
    line-height: 1.1;
    color: #B95350;
}
.product-details-data .btn-wish:hover::before,
.product-details-data .btn-wish.active::before {
    color: #6c000d;
    font-weight: 900;
}
.product-details-data .rating {
    margin: 0 0 25px;
}
.product-details-data .rating i {
    color: rgb(236 176 24);
    font-size: 12px;
    margin: 0 3px 0 0;
}
.product-details-data .rating span {
    font-size: 14px;
    color: #000;
}
.product-details-data .price {
    display: flex;
    align-items: center;
    margin: 0 0 6px;
}
.product-details-data .price p {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    color: #862600;
    margin: 0;
    display: flex;
    align-items: center;
}
.product-details-data .price p span {
    color: #D09E9E;
    display: inline-block;
    position: relative;
    margin: 0 0 0 30px;
    font-size: 18px;
    font-weight: 600;
}
.product-details-data .price p span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #D09E9E;
    z-index: 1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.product-details-data .price p span::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: -15px;
    width: 2px;
    height: 15px;
    background: #f7ebe7;
}
.product-details-data .sale {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: #FFFFFF;
    background: #E0665B;
    border-radius: 12px;
    display: table;
    padding: 4px 8px;
    margin: 0 0 0 20px;
}
.product-small-dt {
    margin: 18px 0 40px;
}
.product-small-dt p {
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    color: #65463d;
    line-height: 24px;
}
.colors-box {
    margin: 0 0 40px;
}
.quantity-row h5,
.colors-box h5,
.specifications-list h5 {
    font-size: 18px;
    font-weight: 700;
    color: #5E2421;
    margin: 0 0 20px;
}
.colors-box ul {
    display: flex;
    align-items: center;
}
.colors-box ul li {
    margin-right: 10px;
}
.colors-box ul li:last-child {
    margin: 0;
}
.color-bx [type="radio"]:checked,
.color-bx [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.color-bx [type="radio"]:checked+label,
.color-bx [type="radio"]:not(:checked)+label {
    position: relative;
    padding: 0;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
.color-bx [type="radio"]:checked+label figure img,
.color-bx [type="radio"]:not(:checked)+label figure img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid transparent;
}
.color-bx [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.color-bx [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.color-bx [type="radio"]:checked+label figure img {
    border: 2px solid #6c000d;
}
.color-bx {
    position: relative;
}
.color-bx span {
    padding: 2px 8px;
    background: #000;
    border-radius: 6px;
    font-size: 10px;
    color: #fff;
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: table;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.color-bx span:after {
    position: absolute;
    content: '';
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: table;
}
.color-bx [type="radio"]:checked+label span {
    opacity: 1;
    visibility: visible;
}
.quantity-rw {
    display: flex;
    margin: 0 -10px;
}
.quty-bx {
    padding: 0 10px;
    width: 200px;
}
.quty-cart {
    width: 100%;
    padding: 0 10px;
}
.qty-input {
    color: #000;
    background: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgb(233 233 233);
    border-radius: 0px;
    max-width: 200px;
}
.qty-input .product-qty,
.qty-input .qty-count {
    background: transparent;
    color: inherit;
    font-weight: bold;
    font-size: inherit;
    border: none;
    display: inline-block;
    min-width: 0;
    height: 48px;
    line-height: 1;
}
.qty-input .product-qty:focus,
.qty-input .qty-count:focus {
    outline: none;
}
.qty-input .product-qty {
    width: 50px;
    min-width: 0;
    display: inline-block;
    text-align: center;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}
.qty-input .product-qty::-webkit-outer-spin-button,
.qty-input .product-qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}
.qty-input .qty-count {
    padding: 0;
    cursor: pointer;
    width: 2.5rem;
    font-size: 1.25em;
    text-indent: -100px;
    overflow: hidden;
    position: relative;
}
.qty-input .qty-count:before,
.qty-input .qty-count:after {
    content: "";
    height: 2px;
    width: 10px;
    position: absolute;
    display: block;
    background: #000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.qty-input .qty-count--add:after {
    transform: rotate(90deg);
}
.qty-input .qty-count:disabled {
    color: #ccc;
    background: #f2f2f2;
    cursor: not-allowed;
    border-color: transparent;
}
.qty-input .qty-count:disabled:before,
.qty-input .qty-count:disabled:after {
    background: #ccc;
}
.btn-cart {
    padding: 11px 15px;
    border: 1px solid #1F1F1F;
    border-radius: 0;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1F1F1F;
    width: 100%;
}
.btn-cart:hover {
    background: #1F1F1F;
    color: #fff;
}
.product-details-data .btn-main {
    display: block;
    width: 100%;
    text-align: center;
    margin: 15px auto 40px;
}
.product-details-data .payment-row {
    padding: 25px 30px 30px;
    border: 1px solid #e0e0e0;
    margin: 50px auto 30px;
    display: table;
    position: relative;
    border-radius: 10px;
}
.product-details-data .payment-row p {
    margin: 0 auto;
    padding: 0 15px;
    background: #fff;
    font-weight: 600;
    font-size: 18px;
    color: #000;
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    display: table;
    z-index: 1;
}
.product-details-data .payment-row ul {
    margin: 0 auto;
}
.product-details-data .payment-row ul li {
    width: 65px;
    height: 30px;
}
.delivery-row h4 {
    font-size: 28px;
    font-weight: 600;
    color: #5E2421;
    margin: 0 0 20px;
}
.del-rw{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.del-block {
    display: flex;
    align-items: center;
    margin: 0 0 20px;
    padding: 0 10px;
    width: 50%;
}
.del-ic {
    min-width: 50px;
    margin-right: 10px;
}
.del-ic i {
    font-size: 30px;
    color: #1f1f1f;
}
.del-dt h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1f1f1f;
    line-height: 24px;
    margin: 0 0;
    text-transform: capitalize;
}
.del-dt p {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    color: #696c70;
    line-height: 22px;
}

.product-slider{
    display: flex;
    flex-wrap: wrap;
    flex-flow: row-reverse;
    margin: 0 -10px;
    padding: 0 25px 0 0;
}
.slider-single{
    width: 85%;
    padding: 0 10px;
}
.slider-single img{
    width: 100%;
}
.slider-nav{
    width: 15%;
    padding: 0 10px;
}
.slider-nav img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    border: 2px solid transparent;
}
.slider-nav .slick-current.slick-active{
    border: 2px solid #5E2421;
}
.slider-nav .slick-slide {
    margin: 10px 0px;
}
.slider-nav .slick-list {
    margin: -10px 0px;
}

.slider-single .slick-prev,
.slider-single .slick-next{
    position: absolute;
    right:40px;
    left: auto;
    border: none;
    color: transparent;
    background-color: transparent;   
    width: auto;
    height: auto;
    font-size: 0;
    color: transparent;
    z-index: 5;
    top:50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    transition: .4s linear;
}
.slider-single .slick-prev:before,
.slider-single .slick-next:before {
    width: 50px;
    height: 50px;
    content: "\f054";
    font-family: 'Font Awesome 5 Pro';
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    font-weight:400;
    line-height: 50px;
    display: block;
    border-radius: 50%;
    text-align: center;
    font-size:16px;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.slider-single .slick-prev {
    left:40px;
    right: auto;
}
.slider-single .slick-prev:before {
    content: "\f053";
}
.slider-single .slick-prev:hover:before,
.slider-single .slick-next:hover:before{
    color: #fff;
    background: #5E2421;
}
/* ***** End Product Details Page ***** */

/* **** Cart Page **** */
.cart-pg {
    position: relative;
    width: 100%;
    padding: 100px 0;
}
.cart-pg-left table thead th {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
    background: #FDF7EB;
    white-space: nowrap;
    padding: 16px;
    text-align: center;
    border: 0;
}
.cart-pg-left table .name {
    display: flex;
    align-items: center;
}
.cart-pg-left table .name figure {
    width: 100px;
    min-width: 100px;
    height: 130px;
    border-radius: 8px;
    margin: 0 20px 0 0;
    overflow: hidden;
}
.cart-pg-left .table-responsive {
    overflow-x: initial;
}
.cart-pg-left table .name figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-pg-left table tbody td {
    text-align: center;
    border-bottom: 1px solid rgb(233 233 233);
    padding: 20px 0;
}
.cart-pg-left table tbody td a{
    color: #333;
}
.cart-pg-left table tbody td p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}
.cart-pg-left table tbody td .qty-input {
    width: fit-content;
    margin: 0 auto;
    background: rgb(247 247 247);
}
.cart-pg-left table tbody td .qty-input .qty-count--minus,
.cart-pg-left table tbody td .qty-input .qty-count--add {
    border: 0;
}
.cart-pg-left table tbody td .qty-input .product-qty {
    width: 35px;
}
.cart-pg-left table tbody td .btn-remove {
    font-size: 24px;
    color: #111;
}
.cart-pg-left table tbody td .btn-remove:hover{
    color: #5E2421;
}
.voucher-wrp {
    position: relative;
    width: 100%;
    padding: 15px 0 0;
}
.voucher-code .form-control {
    padding: 10px 150px 10px 16px;
    border-radius: 8px;
    border: none;
    border-radius: 0;
    background: rgb(247 247 247);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    box-shadow: none;
    outline: 0;
}
.voucher-code .form-control:focus {
    border-color: #1F1F1F;
}
.voucher-wrp .form-group {
    position: relative;
}
.voucher-code .btn-main{
    position: absolute;
    top: 3px;
    right: 3px;
    padding: 9px 16px;
    font-size: 16px;
}
.voucher-code {
    margin: 0 0 30px;
}
.voucher-row {
    display: flex;
    align-items: center;
}
.voucher-card {
    position: relative;
    padding: 8px 0;
    border: 1px solid rgb(233 233 233);
    border-radius: 8px;
    margin: 0 20px 0 0;
    max-width: 235px;
    width: 100%;
}
.voucher-top {
    position: relative;
    padding: 0 12px 8px 12px;
    border-bottom: 1px dashed rgb(233 233 233);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.voucher-top::before,
.voucher-top::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-right: 1px solid #E9E9E9;
    border-radius: 50%;
    left: -11px;
    bottom: -8px;
}
.voucher-top::after {
    left: unset;
    right: -11px;
    border-right: none;
    border-left: 1px solid #E9E9E9;
}
.voucher-top p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin: 0;
}
.voucher-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px 0;
}
.voucher-bottom p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}
.btn-code {
    font-size: 12px;
    line-height: 16px;
    padding: 4px 10px;
    text-transform: capitalize;
    border-radius: 12px;
    background: #1F1F1F;
    color: #fff;
    display: table;
}
.btn-code:hover,
.summary-box .btn-main:hover {
    background: #5E2421;
}
.cart-pg-right {
    padding-left: 40px;
}
.summary-box {
    padding: 24px;
    background: #FDF7EB;
    border-radius: 16px;
}
.summary-box h2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: #5E2421;
    text-transform: capitalize;
    margin: 0 0 15px;
}
.summary-box ul li {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgb(233 233 233);
}
.summary-box ul li:last-child {
    border-bottom: 0;
}
.summary-box ul li p,
.summary-box ul li .price {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}
.summary-check-row {
    display: flex;
    justify-content: space-between;
    margin: 0 0 5px;
}
.summary-check-row .custome-rdbx {
    padding-right: 40px;
}
.summary-check-row .custome-rdbx [type="radio"]:checked+label,
.summary-check-row .custome-rdbx [type="radio"]:not(:checked)+label {
    padding-left: 20px;
}
.summary-check-row:last-child {
    margin: 0;
}
.summary-box ul li.total p,
.summary-box ul li.total .price {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}
.summary-box .btn-main{
    width: 100%;
    text-align: center;
    display: table;
    margin: 20px 0;
}
.summary-box .btn-main:hover{
    background: #000;
    color: #fff;
}
.summary-box .btn-secondary{
    width: 100%;
    display: block;
    background: #FDF7EB;
    text-align: center;
}
.summary-box .btn-secondary:hover{
    background: #5E2421;
    color: #fff;
    border-color: #5E2421;
}

.custome-rdbx [type="radio"]:checked,
.custome-rdbx [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.custome-rdbx [type="radio"]:checked+label,
.custome-rdbx [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    line-height: 20px;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    color: #101010;
}
.custome-rdbx [type="radio"]:checked+label:before,
.custome-rdbx [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    border: 1px solid #333;
    border-radius: 100%;
    background: #FDF7EB;
}
.custome-rdbx [type="radio"]:checked+label:after,
.custome-rdbx [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 8px;
    height: 8px;
    background: #5E2421;
    position: absolute;
    top: 6px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.custome-rdbx [type="radio"]:checked+label:before,
.custome-rdbx [type="radio"]:not(:checked)+label:before {
    border: 1px solid #6c000d;
}
.custome-rdbx [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.custome-rdbx [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
/* **** End Cart Page **** */

/* **** Checkout Page **** */
.checkout-pg {
    position: relative;
    width: 100%;
    padding: 100px 0;
}
.login-accordion .accordion-button {
    padding: 15px 20px;
    background: rgb(247 247 247);
    border-radius: 0 !important;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #1F1F1F;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
}
.login-accordion .accordion-item {
    box-shadow: none !important;
    border: 0 !important;
    outline: 0 !important;
}
.login-accordion .accordion-button::after {
    background-size: 15px;
    background-position: center;
}
.login-accordion .accordion-button a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
    color: #1F1F1F;
    margin: 0 0 0 16px;
}
.login-accordion .accordion-button a:hover {
    text-decoration: underline;
}
.login-accordion .accordion-body {
    padding:30px;
    border: 1px solid #ddd;
    border-radius: 0;
    margin: 16px 0 0;
}
.checkout-pg .form-control,
.address-details .form-control,
.setting-box .form-control {
    padding: 15px 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0;
    box-shadow: none;
    height: auto;
    font-size: 15px;
    background: #f9f9f9;
    font-weight: normal;
    color: #333;
    resize: none;
    outline: none;
}
.checkout-pg .form-control::placeholder,
.address-details .form-control::placeholder,
.setting-box .form-control::placeholder {
    color: #1F1F1F;
}
.checkout-pg .form-control:focus,
.address-details .form-control:focus,
.setting-box .form-control:focus {
    border-color: #1F1F1F;
}
.login-accordion .accordion-body form .form-group {
    margin: 0 0 12px;
}
.login-accordion .accordion-body form .btn-main {
    border: 0;
    padding: 15px 35px;
    font-size: 16px;
}
.login-accordion .accordion-body form .btn-main:hover {
    background: #1F1F1F;
}
.login-accordion .accordion-body form .row {
    margin: 0 -10px;
}
.login-accordion .accordion-body form .col-lg-6 {
    padding: 0 10px;
}
.login-accordion {
    margin: 0 0 20px;
}
.checkout-pg .title h1,
.checkout-pg .title h2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    color: #1F1F1F;
    margin: 0 0 20px;
}
.information-wrp .form-group,
.address-details .form-group,
.setting-box .form-group {
    margin: 0 0 20px;
}
.information-wrp .row,
.address-details .row,
.setting-box .row {
    margin: 0 -8px;
}
.information-wrp .col-md-6,
.information-wrp .col-md-12,
.address-details .col-md-6,
.address-details .col-md-12,
.setting-box .col-md-6,
.setting-box .col-md-12 {
    padding: 0 8px;
}
.information-wrp {
    margin: 0 0 20px;
}
.order-wrp ul li {
    position: relative;
    padding: 20px 0;
    border-bottom: 1px solid rgb(233 233 233);
}
.order-wrp ul li:last-child {
    border: 0;
}
.order-box {
    display: flex;
    align-items: center;
}
.order-box figure {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 24px 0 0;
}
.order-box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.order-data h3,
.order-data p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}
.order-data h3 a, .order-data p a{
    color: #333;
}
.total-rw .order-data h3,
.total-rw .order-data p {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
}
.order-data h3 span {
    color: rgb(105 108 112);
    margin: 8px 0 0;
    display: table;
}
.order-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.box-pay {
    width: 100%;
    margin: 0 0 20px;
    background: #f7f7f7;
    padding: 14px 20px;
    border-radius: 8px;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}
.inner-cardfrm .form-group {
    margin: 15px 0 0;
}
.inner-cardfrm {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}
.custome-rdbx [type="radio"]:checked~.inner-cardfrm {
    opacity: 1;
    visibility: visible;
    max-height: 100%;
}
.inner-cardfrm .form-control {
    background-color: transparent;
}
.chackout-sidebar .cart-cheackbx {
    padding: 0 0 0 30px;
}
.chackout-sidebar .cart-cheackbx h3 {
    border-top: 1px solid #e0e0e0;
    padding: 15px 0 0;
}
select.form-control {
    -webkit-appearance: none;
    background-image: url('../images/down.svg') !important;
    background-repeat: no-repeat !important;
    background-size: 13px !important;
    background-position: center right 15px !important;
}
.paycheckbx .btn-main {
    border: 0;
    background: #5E2421;
    color: #fff;
    width: 100%;
    text-align: center;
    margin: 30px 0 0;
}
.paycheckbx .btn-main:hover {
    background: #000;
}
.checkout-right{
    background: #FDF7EB;
    padding: 25px;
}
/* **** End Checkout Page **** */

/* **** Contact Page **** */
.contact-wrp {
    position: relative;
    width: 100%;
    padding: 100px 0 100px;
}
.contact-form {
    padding-right: 80px;
    border-right: 1px solid #ddd;
}
.contact-form .comman-title,
.contact-detail .comman-title {
    text-align: left;
    margin: 0 0 24px;
}
.contact-form .comman-title h1,
.contact-detail .comman-title h2 {
    margin: 0 0 12px;
    text-transform: unset;
    color: #5E2421;
}
.contact-form .comman-title p {
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #65463d;
}
.contact-form .form-control {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #000;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid #5E2421;
    border-radius: 0;
    box-shadow: none;
    outline: 0;
    resize: none;
}
.contact-form .form-control::placeholder {
    color: #333;
}
.contact-form .form-group {
    margin: 0 0 30px;
}
.contact-form .btn-main {
    border: 0;
    background: #5E2421;
    color: #fff;
    border-radius: 0;
}
.contact-form .btn-main:hover {
    background: #333;
}
.contact-detail {
    padding-left: 60px;
}
.contact-detail-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #5E2421;
    margin: 0 0 10px;
}
.contact-detail-box h3 i {
    width: 25px;
    font-size: 20px;
}
.contact-detail-box p,
.contact-detail-box p a {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}
.contact-detail-box p {
    margin: 0 0 10px;
}
.contact-detail-box p a:hover,
.contact-detail-box p a:hover strong {
    color: #5E2421;
}
.contact-detail-box p a strong {
    color: #333;
}
.contact-detail-box {
    margin: 0 0 35px;
}
.contact-detail-box:last-child {
    margin: 0;
}
.corporat-wrp {
    padding: 50px 0 100px;
}
.corporat-row {
    background: #FDF7EB;
    padding: 50px;
}
.corporat-wrp .contact-detail-box h4 {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    color: #333;
    font-weight: normal;
}
.corporat-wrp .contact-detail {
    padding: 0 30px 0 0;
}
.corporat-wrp .contact-form {
    padding: 0 0 0 60px;
    border: none;
    border-left: 1px solid #ddd;
}
.corporat-wrp .contact-form p {
    color: #5E2421;
}
/* **** End Contact Page **** */

/* ***** About Page ***** */
.our-story-wrp {
    padding: 50px 0 0;
}

.about-banner {
    position: relative;
    padding: 0 0 50px;
}

.about-banner figure img {
    width: 100%;
    margin: 0 0 50px;
}

.about-banner h1 {
    font-size: 45px;
    font-weight: 600;
    color: #783d3d;
    text-align: center;
    margin: 0 auto 25px;
}

about-banner h2 {
    font-size: 38px;
    font-weight: 600;
    color: #783d3d;
    text-align: center;
    margin: 0 auto 25px;
}

.about-banner p {
    margin: 0 auto;
    font-size: 18px;
    font-weight: normal;
    color: #783d3d;
    line-height: 26px;
    text-align: center;
    max-width: 85%;
}

.story-row-wrp {
    padding: 50px 0;
    position: relative;
}

.story-row-wrp .row {
    align-items: center;
}

.story-img img {
    width: 100%;
}

.story-data {
    padding: 0 0 0 50px;
}

.vission-block h2,
.story-data h2 {
    margin: 0 0 25px;
    font-size: 40px;
    font-weight: 600;
    color: #783d3d;
}

.vission-block h3,
.story-data h3 {
    font-size: 22px;
    font-weight: 600;
    color: #783d3d;
    line-height: 30px;
    margin: 0 0 15px;
}

.vission-block p,
.story-data p {
    margin: 0;
    font-size: 17px;
    font-weight: normal;
    line-height: 26px;
    color: #783d3d;
}

.about-wrp {
    padding: 50px 0;
    position: relative;
}

.about-title {
    max-width: 700px;
    margin: 0 auto 50px;
}

.about-title h2 {
    margin: 0 0 15px;
    font-size: 40px;
    font-weight: 600;
    color: #783d3d;
    text-align: center;
}

.about-title p {
    font-size: 16px;
    font-weight: normal;
    color: #783d3d;
    line-height: 26px;
    text-align: center;
    margin: 0 auto;
}

.our-story-wrp .about-img {
    width: 100%;
    margin: 0 0 30px;
    height: calc(100% - 30px);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.our-story-wrp .about-data {
    width: 100%;
    padding: 50px;
    background: #ddeae7;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: calc(100% - 30px);
    margin: 0 0 30px;
}

.about-data h3 {
    font-size: 40px;
    font-weight: 600;
    color: #783d3d;
    margin: 0 0 15px;
    font-family: "Playfair Display", serif;
}

.about-data h4 {
    font-size: 20px;
    font-weight: 600;
    color: #783d3d;
    line-height: 28px;
    margin: 0 0 15px;
}

.about-data p {
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    color: #783d3d;
}

.inner-row-story .row:nth-child(even) {
    flex-flow: row-reverse;
}

.inner-row-story .row:nth-child(even) .about-data {
    background: #ecf2f6;
}

.vision-mission-wrp {
    padding: 50px 0 100px;
}

.vision-mission-row {
    margin: 0 0 50px;
}

.vision-mission-row:last-child {
    margin: 0;
}

.vision-mission-row .row {
    align-items: center;
}

.vission-img img {
    width: 100%;
}

.vission-block {
    padding: 0 60px 0 0;
}

.vision-mission-row:nth-child(even) .row {
    flex-flow: row-reverse;
}

.vision-mission-row:nth-child(even) .row .vission-block {
    padding: 0 0 0 60px;
}

/* ***** End About Page ***** */

/* **** My Account Page **** */
.account-pg {
    position: relative;
    width: 100%;
    padding: 100px 0;
}
.account-left {
    padding-right: 50px;
    position: sticky;
    top: 100px;
}
.account-left-box {
    padding: 35px 35px;
    border-radius: 0;
    background: #FDF7EB;    
}

.account-profile {
    text-align: center;
    margin: 0 0 40px;
}

.account-profile figure {
    width: 140px;
    height: 140px;
    border-radius: 140px;
    overflow: hidden;
    margin: 0 auto 16px;
}

.account-profile figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-profile h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 4px;
}

.account-profile .email {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: rgb(105 108 112);
}

.account-profile .email:hover {
    color: #1F1F1F;
}

.account-left-box .nav-tabs {
    flex-direction: column;
    border: 0;
}

.account-left-box .nav-tabs .nav-link {
    width: 100%;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    color: #1F1F1F;
    padding: 16px 20px;
    border-radius: 8px;
    text-align: left;
    border: 0;
    box-shadow: none;
    outline: 0;
}

.account-left-box .nav-tabs .nav-link i {
    font-size: 18px;
    margin: 0 10px 0 0;
    width: 20px;
}

.account-left-box .nav-tabs li {
    margin: 0 0 6px;
}

.account-left-box .nav-tabs li:last-child {
    margin: 0;
}

.account-left-box .nav-tabs .nav-link.active,
.account-left-box .nav-tabs .nav-link:hover {
    background: #fff;
}

.account-right .tab-pane {
    padding: 28px;
    border: 1px solid rgb(233 233 233);
    border-radius: 0;
}

.account-right .title h1,
.account-right .title h2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 12px;
}

.orders-status .product-filters ul {
    width: 100%;
    margin: 0 auto 20px;
}

.orders-status .product-filters ul li {
    width: 20%;
    text-align: center;
    border-radius: 0;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    border-bottom: 1px solid rgb(233 233 233);
    overflow: hidden;
}

.orders-status .product-filters ul li::before {
    box-shadow: none;
    height: 2px;
    top: auto;
    bottom: 0;
    background: rgb(31 31 31);
    border-radius: 0;
}

.orders-status-box {
    width: 100%;
    border-radius: 0;
    border: 1px solid rgb(233 233 233);
    box-shadow: 0px 2px 2px 0px rgba(28, 36, 51, 0.1019607843);
    margin: 0 0 20px;
    transition-duration: 0s !important;
}

.orders-status-box:last-child {
    margin: 0;
    border-bottom: none;
}

.status-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgb(233 233 233);
}

.status-top p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}

.status-top p strong {
    font-weight: 700;
    margin: 0 0 0 5px;
    text-transform: uppercase;
}

.status-top p .tag {
    color: rgb(134 132 212);
    font-weight: 600;
    padding: 6px 16px;
    background: rgba(134 132 212 / 0.1);
    font-size: 14px;
    line-height: 22px;
    border-radius: 30px;
    margin: 0 0 0 5px;
}

.delivery .status-top p .tag {
    color: rgb(134 132 212);
    background: rgba(134 132 212 / 0.1);
}

.pending .status-top p .tag {
    color: rgb(236 176 24);
    background: rgba(236 176 24 / 0.1);
}

.completed .status-top p .tag {
    color: rgb(61 171 37);
    background: rgba(61 171 37 / 0.1);
}

.canceled .status-top p .tag {
    color: rgb(219 68 68);
    background: rgba(219 68 68 / 0.1);
}

.status-inner {
    padding: 0 20px 20px;
}

.status-inner .order-wrp ul li:last-child {
    border-bottom: 1px solid rgb(233 233 233);
}

.status-inner .cart-btns {
    margin-bottom: 0;
}

.status-inner .order-wrp {
    margin: 0 0 20px;
}

.status-inner .cart-btns{
    display: flex;
    align-items: center;
}
.status-inner .cart-btns li{
    width: auto;
    margin-right: 15px;
}
.status-inner .cart-btns li:last-child{
    margin: 0;
}

.address-details .form-group label,
.setting-box .form-group label {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0 0 8px;
}

.address-details .form-group label span,
.setting-box .form-group label span {
    color: rgb(219 68 68);
}

.address-details .accordion-button {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    text-transform: capitalize;
    background: none !important;
    box-shadow: none !important;
    outline: 0;
    border-radius: 0 !important;
    border: 0;
    padding: 0 0 6px;
    border-bottom: 1px solid rgb(233 233 233);
    font-family: "Open Sans", sans-serif;
    color: #1F1F1F !important;
}

.address-details .accordion-item {
    border-radius: 0;
    border: 0;
    margin: 0 0 20px;
}

.address-details .accordion-item:last-child {
    margin: 0;
}

.address-details .accordion-button::after {
    background-size: 18px;
}

.address-details .accordion-body {
    padding: 20px 0 0;
}

.address-details .btn-main{
    margin: 30px 0 0;
}

.address-details .btn-primary {
    margin: 40px 0 0;
}

.choose-file-img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 20px 0 0;
}

.choose-file-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choose-file-row {
    display: flex;
    align-items: center;
}

.choose-file-data p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 12px;
}

.choose-file-data p span {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin: 4px 0 0;
    color: rgb(105 108 112);
}

.choose-file-input {
    padding: 8px 12px;
    border: 1px solid rgb(233 233 233);
    border-radius: 4px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    position: relative;
    cursor: pointer;
}

.choose-file-input input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}

.setting-box .choose-file-input label {
    padding: 4px 12px;
    border-radius: 4px;
    background: rgb(233 233 233);
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    margin: 0 12px 0 0;
}

.setting-box .title2 {
    margin: 20px 0;
}

/* **** End My Account Page **** */

/* **** Blog Detail Page **** */
.blog-detail-pg {
    position: relative;
    width: 100%;
    padding: 60px 0 80px;
}

.blog-detail-data .comman-title {
    text-align: left;
    margin: 0 0 16px;
}

.blog-detail-data .comman-title h1 {
    font-family: "Open Sans", sans-serif;
    color: #1F1F1F;
}

.blog-author figure {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    overflow: hidden;
    margin: 0 16px 0 0;
}

.blog-author img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-author {
    display: flex;
    align-content: center;
    margin: 0 0 30px;
}

.blog-author h6{
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #111;
    line-height: 24px;
}
.blog-author h6 span{
    font-weight: normal;
    display: block;
    font-size: 14px;
}

.blog-detail-img {
    margin: 0 0 30px;
}

.blog-detail-img-row {
    margin: 30px 0 0;
}

.blog-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-data p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin: 0 0 12px;
}

.blog-detail-data h3 {
    font-size: 30px;
    line-height: 42px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 16px;
}

.blog-detail-bottom {
    margin: 32px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-detail-bottom p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin: 0 15px 0 0;
}

.blog-detail-tags,
.blog-detail-share,
.blog-detail-tags ul,
.blog-detail-share ul {
    display: flex;
    align-items: center;
}

.blog-detail-bottom li {
    margin: 0 12px 0 0;
}

.blog-detail-bottom li:last-child {
    margin: 0;
}

.blog-detail-tags ul li a {
    padding: 6px 16px;
    background: rgb(247 247 247);
    border-radius: 30px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1F1F1F;
}

.blog-detail-tags ul li a:hover,
.blog-detail-share ul li a:hover {
    background: #1F1F1F;
    color: #fff;
}

.blog-detail-share ul li a {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: rgb(247 247 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #1F1F1F;
}

.page-nav {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid rgb(233 233 233);
    border-bottom: 1px solid rgb(233 233 233);
}

.page-nav-box a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    color: #1F1F1F;
}

.page-nav-box a span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(160 160 160);
    margin: 0 0 8px;
    display: inline-block;
}

.page-nav-box:last-child {
    text-align: right;
}

.blog-detail-data {
    position: relative;
    margin: 0;
}

.news-insight .blog-box-img {
    margin: 0 0 28px;
}

.news-insight .blog-box-data h6 {
    margin: 0;
}