body {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    color: var(--primary-color);
    background: var(--background-color);
    font-size: 14px;
    line-height: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*----------------------------------------------*/
/* General Style */
/*----------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 500;
    /*text-transform: capitalize;*/
    text-transform: inherit;
}
/* Override the bootstrap defaults */
h1 {
    font-size: 33px;
}
h2 {
    font-size: 28px;
}
h3 {
    font-size: 21px;
}
h4 {
    font-size: 16px;
}
h5 {
    font-size: 12px;
}
h6 {
    font-size: 10.2px;
}
hr {
    border-color: var(--border-color);
}
a {
    color: var(--primary-color);
}
a:hover {
    text-decoration: none;
}
.fa {
    font-size: 14px;
}
legend {
    font-size: 18px;
    padding: 7px 0px;
    border-color: var(--border-color);
}
label {
    font-size: 14px;
    font-weight: normal;
}
select.form-control, textarea.form-control, input[type="text"].form-control, input[type="password"].form-control, input[type="datetime"].form-control, input[type="datetime-local"].form-control, input[type="date"].form-control, input[type="month"].form-control, input[type="time"].form-control, input[type="week"].form-control, input[type="number"].form-control, input[type="email"].form-control, input[type="url"].form-control, input[type="search"].form-control, input[type="tel"].form-control, input[type="color"].form-control {
    font-size: 14px;
}
.input-group input, .input-group select, .input-group .dropdown-menu, .input-group .popover {
    font-size: 14px;
}
.input-group .input-group-addon {
    font-size: 14px;
    height: 30px;
}

/* Fix some bootstrap issues */
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {display: inline;}
a:focus, a:hover, div:focus, img:focus {
    text-decoration: none;
    outline: none;
    color: var(--primary-color);
}
div.required .control-label:before {
    content: '* ';
    color: #F00;
    font-weight: bold;
}
.btn.focus:active, .btn:active:focus, .btn:focus, .addcart:focus {
    outline: none;
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus, button:focus,
input:focus, select:focus, textarea:focus, div:focus, img:focus, .form-control:focus, i:focus{
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

/*----------------------------------------------*/
/* scrollToTop */
/*----------------------------------------------*/
.scrollToTop {
    position: fixed;
    right: 30px;
    bottom: 140px;
    z-index: 5;
    height: 44px;
    width: 44px;
    line-height: 44px;
    border-radius: 0;
    text-align: center;
    overflow: hidden;
    color: var(--primary-color);
    border: 1px solid var(--primary-hover-color);
}
.scrollToTop::after {
    content: '';
    position: absolute;
    top: 70px;
    right: 100%;
    width: 200px;
    height: 200px;
    z-index: -1;
    transform: rotate(45deg);
    background-color: var(--primary-hover-color);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition: all 0.5s cubic-bezier(.69,.26,.28,.95) 0s;
    transition: all 0.5s cubic-bezier(.69,.26,.28,.95) 0s;
}
.scrollToTop:hover::after {
    top: 0;
    right: 0;
}
.scrollToTop i{
    font-size: 20px;
    line-height: 44px;
}
.scrollToTop:hover,
.scrollToTop:focus{
    color: var(--secondary-color);
}
@media (max-width: 991px){
    .scrollToTop{
        height: 34px;
        width: 34px;
        line-height: 34px;
        right: 15px;
/*        bottom: 40px;*/
        bottom: 140px;
    }
    .scrollToTop i{
        font-size: 16px;
        line-height: 34px;
    }
    .scrollToTop::after {
        width: 100px;
        height: 100px;
        right: 20%;
    }
}

/*----------------------------------------------*/
/* loader */
/*----------------------------------------------*/
.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../image/mahardhi/ajax_loader.gif') 50% 50% no-repeat rgb(255,255,255);
    opacity: 1;
    background-size: 5%;
}

/*----------------------------------------------*/
/* QuickView Loader*/
/*----------------------------------------------*/
 .quickview-wrapper {
    background-color: var(--secondary-color);
    display: none;
    height: 80vh;
    left: 0;
    margin: 0 auto;
    overflow: auto;
    padding: 20px 5px;
    position: fixed;
    right: 0;
    top: 7%;
    width: 70%;
    z-index: 9999;
}
.quickview-overlay {
    display: none;
    background-color: rgba(0,0,0,0.8);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    position: fixed;
    z-index: 99;
}
.quickview-btn {
    position: absolute;
    z-index: 200;
    top: 0;
    right: 0;
    font-size: 12px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    color: var(--primary-color);
    background: var(--background-color);
    border-radius: 0;
}
.quickview-btn:hover{
    background: var(--primary-color);
    color: var(--secondary-color);
}
.quickview-loader{
    display: none;
    position: fixed;
    top: 0;
    width: 50px;
    height: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 9999;
    margin: auto;
    background-color: transparent;
    line-height: 50px;
}
.quickview-loader-inner{
    font-size: 16px;
}
@media (max-width: 991px){
    .quickview-wrapper{
        width: 90%;
    }
}

/*----------------------------------------------*/
/* alert */
/*----------------------------------------------*/
.alert.alert-success {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    border-radius: 0;
    margin: 0 0 20px 0;
}
.alert {
    padding: 9px 30px 9px 15px;
    border-radius: 0;
    text-align: center;
    position: relative;
    line-height: 20px;
    z-index: 1;
}
.alert-dismissable .close,
.alert-dismissible .close {
    font-size: 22px;
    opacity: 1;
    /*position: absolute;*/
    position: relative;
    right: 10px;
    /*top: 0;*/
    top: -10px;
    bottom: 0; /*added by nirmal*/
    line-height: 38px;
    text-shadow: none;
}
.newsletterblock .alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 11;
}
#form-review .alert.alert-success,
#post_comment .alert{
    position: relative;
}

/*----------------------------------------------*/
/* Start Newsletter Popup */
/*----------------------------------------------*/
.modal-backdrop.fade.in {
    opacity: 0.8;
}
.newsletter-popup-img {
    position: relative;
}
.newsletter-logo img {
    margin: auto;
}
.newsletter-content {
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--secondary-color);
}
.newsletter-content-innner {
    width: 58%;
}
.newsletter-innner {
    display: flex;
    align-items: center;
}
.newsletter-popup-img {
    position: relative;
    background: url(../image/mahardhi/newsletter-popup.jpg) no-repeat center center;
    background-size: cover;
    width: 33.1%;
    height: 250px;
}
#newsletter-popup .modal-content {
    background: transparent;
    box-shadow: none;
}
.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.modal-content{
    border: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: var(--secondary-color);
    background-clip: padding-box;  
    border-radius:0;  
}
.newsletter-popup .modal-dialog{
    width: 100%;
    margin: 30px auto 0;
    position: fixed;
    right: 0;
    bottom: 0;
    transform: unset!important;
    transition: unset!important;
}
.newsletter-btn-close.close{
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 1;
    z-index: 1;
    text-shadow: none;
    background: transparent;
    color: var(--primary-color);
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}
.newsletter-btn-close.close i {
    display: block;
    font-size: 12px;
    font-weight: 600;
}
.newsletter-btn-close.close:hover {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
}
.newsletter-popup .modal-body {
    padding: 0; 
    z-index: 1;
}
.newsletter-content-innner h3 {
    position: relative;
    font-size: 30px;
    line-height: 44px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1.3px;
    text-transform: capitalize;
}
.newsletter-popup-text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin: 10px 0 0;
    color: var(--secondary-light-color);
}
.newsletter-text {
    padding: 0 50px 0 0;
}
.newsletter-popup-text span {
    font-size: 24px;
    font-weight: 500;
}
.newsletter-content #frmnewsletterpopup {
    display: flex;
    align-items: center;
    margin: 0 0 25px;
    padding: 0 0 4px;
    width: 550px;
    background: transparent;
    border-bottom: 1px solid var(--border-color);
}
.newsletter-content-innner .newsletter_usr_popup_email {
    height: 40px;
    border: none;
    padding: 5px 15px;
    background: transparent;
    border-radius: 0;
    width: 100%;
    color: var(--secondary-light-color);
}
.newsletter-content-innner .newsletter_usr_popup_email::placeholder {
    color: var(--secondary-light-color);
}
#frmnewsletterpopup button {
    padding: 15px 32px;
    font-size: 14px;
    border: none;
    box-shadow: none;
    overflow: visible;
    text-transform: capitalize;
    color: var(--secondary-color);
    background: var(--primary-color);
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}
#frmnewsletterpopup button:hover {
    background: var(--primary-hover-color);
}
.newsletter-content-innner .alert {
    margin: 15px 0 10px;
    display: table;
    position: relative;
    width: 100%;
}
.newsletter-content-bottom label {
    margin: 0;
    color: var(--secondary-light-color);
}


/* Popup model */
#krshna2milk-app{ margin: 0 auto; overflow: visible;}
#krshna2milk-app .app-box img { width: 100%; }
#krshna2milk-app .close { opacity: 1; position: absolute; right: -20px; top: -20px; margin: 0; padding: 0; outline: none; }
#krshna2milk-app .close .img-close-box { width: 40px; height: 40px; border-radius: 50%; background-color: #ffffff; position: relative; display: inline-block; padding: 4px; }
#krshna2milk-app .modal-dialog { max-width: 100%; margin: 0 auto; width: 450px; border-radius: 10px; top: 50%; transform: translateY(-50%) !important; }



@media (max-width: 1800px) {
    .newsletter-content #frmnewsletterpopup {
        width: 425px;
    }
}
@media (max-width: 1440px) {
    .newsletter-popup-img {
        width: 38%;
    }
    .newsletter-text {
        padding: 0 30px 0 0;
    }
    .newsletter-content-innner h3 {
        font-size: 26px;
        line-height: 36px;
    }
    .newsletter-content #frmnewsletterpopup {
        width: 350px;
        margin: 0 0 15px;
    }
    #frmnewsletterpopup button {
        padding: 10px 20px;
    }
}
@media (max-width: 1199px) {
    .newsletter-content {
        padding: 20px 30px;
    }
    .newsletter-innner {
        display: block;
    }
    .newsletter-popup-text {
        margin: 10px 0 20px;
    }
    .newsletter-content #frmnewsletterpopup {
        width: 425px;
    }
    .newsletter-innner {
        float: right;
    }
    .newsletter-text {
        padding: 0;
    }
}
@media (max-width: 767px) {
    .newsletter-content #frmnewsletterpopup {
        width: 100%;
    }
    .newsletter-content {
        padding: 15px;
    }
    .newsletter-content-innner h3 {
        font-size: 22px;
        line-height: 30px;
    }
    .newsletter-popup-text {
        margin: 10px 0;
    }
    #frmnewsletterpopup button {
        padding: 7px 15px;
    }
}
@media (max-width: 540px) {
    .newsletter-popup-img {
        display: none;
    }
    .newsletter-content-innner {
        width: 100%;
        text-align: center;
    }
    .newsletter-innner {
        float: unset;
    }
    .newsletter-btn-close.close {
        width: 24px;
        height: 24px;
    }
    .newsletter-content #frmnewsletterpopup {
        width: 95%;
    }
    .newsletter-popup-text {
        margin: 10px 0;
    }
}

/*----------------------------------------------*/
/* Start header */
/*----------------------------------------------*/
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -webkit-animation: fadeInDown 0.5s ease-out forwards;
    -moz-animation: fadeInDown 0.5s ease-out forwards;
    -o-animation: fadeInDown 0.5s ease-out forwards;
    animation: fadeInDown 0.5s ease-out forwards;
    z-index: 9;  
    border: none;
    background: var(--secondary-color);
    -webkit-box-shadow: 0 1px 3px rgb(0 0 0 / 11%);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
    box-shadow: 0 1px 3px rgb(0 0 0 / 11%);
}
.common-home header.header-fixed {
    position: fixed;
    background: var(--secondary-color);
}
.header-fixed .btn_search,
.header-fixed .btn_search:after,
.header-fixed .welcome-text {
    display: none;
}

/*header*/
header {
    position: relative;
    z-index: 999;
}
.header-top {
    padding: 9px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-left,
.header-right {
    width: 40%;
}
.header-center {
    width: 20%;
}

/*logo*/
.header-center {
    text-align: center;
}
#logo {
    vertical-align: top;
    display: inline-block;
}
#logo img {
    image-rendering: -webkit-optimize-contrast;
}

/*header search*/
.btn_search{
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 7px 0 6px;
    width: 100%;
}
.btn_search:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}
.btn_search .form-control{
    padding: 2px 10px;
    border: none;
    height: 40px;
}
.btn_search .search-btn {
    display: block;
}
#mahardhiSearch .input-lg,
#search .input-lg{
    height: 40px;
    border: none;
    width: 158px;
}
#mahardhiSearch .input-lg{
    padding: 0;
    font-size: 16px;
    font-weight: 500;
}
.category-search {
    position: relative;
}
.category-search:after {
    border-left: 1px solid var(--border-color);
    content: "";
    height: 25px;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 9;
    margin: auto;
}
/*-- mahardhi edit --*/
#mahardhiSearch,
#search{
    display: flex;
    position: relative;
    align-items: center;
}
#mahardhiSearch > *,
#search > *{
    background: transparent;
    color: var(--primary-color);
    display: block; }
#mahardhiSearch .btn-search,
#search .input-group-btn{
    width: auto;
    background: transparent;
}
#mahardhiSearch .btn-search button,
#search .input-group-btn button{
    padding: 10px;
    border: none;
    background: transparent;
    color: var(--primary-color);
}
#mahardhiSearch .btn-search button:hover, 
#search .input-group-btn button:hover {
    background: transparent;
    color: var(--primary-color);
}
.ui-autocomplete.ui-menu .ui-menu-item {
    list-style-image: none;
}
.ui-autocomplete .mahardhi-search {
    position: relative;
    display: table;
    width: 100%;
    padding: 5px 0px;
}
ul#ui-id-1 {
    /*right: 0 !important;*/
    /*left: unset !important;*/
}
.ui-autocomplete .mahardhi-search > div {
    font-size: 14px;
    display: table-cell;
    vertical-align: top;
}
.ui-autocomplete .mahardhi-search .images {
    width: 80px;
    padding-right: 10px;
}
.ui-autocomplete .mahardhi-search .product-detail .price-old {
    color: var(--secondary-light-color);
    text-decoration: line-through;
    margin-left: 10px;
}
#mahardhiSearch select.form-control.input-lg {
    border: none;
    padding: 5px;
    line-height: 1.42857143;
    width: auto;
    background: transparent;
    color: var(--primary-color);
}
#mahardhiSearch .input-lg::placeholder{
    color: var(--primary-color);
}

/*header right*/
.welcome-text{
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    padding: 10px 0 19px;
    text-align: right;
    border-bottom: 1px solid var(--border-color);
}
.header-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-links div + div {
    margin-left: 35px;
}
#header_ac > a span {
    margin: 0 10px;
}
.btn_search .search-btn i {
    font-size: 16px;
    display: block;
}
#header_ac > a i {
    font-size: 20px;
    display: block;
}
#header_ac > a{
    display: flex;
    align-items: center;
    font-size: 16px;
    padding: 26px 0;
    font-weight: 500;
    color: var(--primary-color);
}
#header_ac .dropdown-menu {
    padding: 7px 15px;
    width: 200px;
}
#form-currency .dropdown-toggle, #form-language .dropdown-toggle {
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    padding: 5px 0;
    margin: 2px 0;
    border-radius: 0;
    font-weight: 500;
    color: var(--primary-color);
}
.language-dropdown, .currency-dropdown {
    padding: 0;
}
.language-dropdown li, .currency-dropdown li {
    display: block;
}

/*account*/
#header_ac .dropdown-menu>li>a {
    padding: 5px 0;
    color: var(--secondary-light-color);
}
#header_ac button{
    text-align: left;
    padding: 5px 10px;
    text-transform: capitalize;
    border: none;
    color: var(--secondary-light-color);
}
#header_ac button:hover,
#header_ac .dropdown-menu>li>a:hover{
    color: var(--primary-color);
}
.header_wish a {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    padding: 26px 0;
}
.header_wish a i {
    font-size: 20px;
    margin-right: 10px;
}

/*cart*/
.header_cart {
    position: relative;
}
#cart {
    vertical-align: top;
}
#cart > .btn {
    background: transparent;
    padding: 26px 0;
    border: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    box-shadow: none;
}
#cart-total {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
}
#cart > .btn:before{
    content: "\e954";
    font-family: 'Mahardhi-Fonts';
    font-size: 20px;
    margin-right: 10px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
#cart .dropdown-menu {
    overflow: hidden;
    display: none;
    margin: 0;
    padding: 0px;
    width: 300px;
}
#cart .dropdown-menu li {
    float: none;
    padding: 0px 20px;
}
#cart .dropdown-menu li p {
    margin: 0;
    font-size: 14px;
    color: var(--primary-color);
}
#cart .dropdown-menu li p .btn {
    padding: 9px 15px;
}
.product-cart-empty {
    padding: 20px 0;
}
.header_cart i.fa.fa-shopping-cart {
    display: none;
}
#cart .dropdown-menu .cart-content-product {
    max-height: 241px;
    overflow-y: auto;
    overflow-x: hidden;
}
#cart .dropdown-menu table {
    margin-bottom: 10px;
    border: none;
}
.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: transparent;
}
#cart .dropdown-menu > li.cart-content-product .table > tbody > tr:last-child {
    border-bottom: none;
    padding-bottom: 10px;
    margin-bottom: 0px;
}
#cart .dropdown-menu > li.cart-content-product .table > tbody > tr {
    padding-bottom: 20px;
    padding-top: 20px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    display: block;
}
#cart .dropdown-menu .table>tbody>tr>td,
#account-address .table>tbody>tr>td {
    vertical-align: top;
}
#cart .dropdown-menu table td.product-cart-thumb {
    padding: 0;
}
#cart .dropdown-menu table td {
    background: none;
    border: none;
    padding: 5px 4px;
    color: var(--primary-color);
}
#cart .dropdown-menu li td,
td.cart-total-price {
    font-size: 14px;
    font-weight: 500;
}
#cart .img-thumbnail {
    padding: 0;
    border-radius: 0;
    max-width: unset;
}
#cart .dropdown-menu table td.product-cart-details {
    padding-left: 10px;
    padding-right: 10px;
}
#cart .dropdown-menu .product-item-name,
#cart .product-cart-info .product-cart-qty {
    font-weight: normal;
    color: var(--primary-color);
    display: inline-block;
}
.product-cart-info {
    margin-top: 8px;
}
#cart .product-cart-info .product-cart-price,
.product-cart-total {
    color: var(--primary-hover-color);
}
#cart .dropdown-menu li tr:last-child td:last-child,
tr:last-child td.cart-total-price:last-child {
    font-size: 16px;
    color: var(--primary-hover-color);
}
#cart .dropdown-menu table td.product-cart-close,
#cart .dropdown-menu table td.voucher-close {
    position: absolute;
    top: 20px;
    right: 0;
    padding: 0;
}
#cart .dropdown-menu .btn-danger {
    background: transparent;
    color: var(--primary-color);
    border-radius: 0;
    line-height: 20px;
    font-size: 12px;
    padding: 0;
    border: none;
    box-shadow: none;
    -webkit-box-shadow: none;
}
#cart .dropdown-menu li + li {
    border-top: 1px solid var(--border-color);
    padding: 10px 20px 0px 20px;
}
#cart .dropdown-menu li td strong,
#cart .dropdown-menu li small,
td.cart-total-title {
    font-size: 14px;
    font-weight: 500;
}
.product-cart-button {
    padding: 0px 0px 20px 0px;
}

@media (min-width: 992px) {
    .common-home header {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        z-index: 11;
        background: #f3f5f0;
    }
}
@media only screen and (max-width: 1440px){
    #logo img {
        width: 70px;
    }
}
@media only screen and (max-width: 1199px){
    .header-top {
        padding: 15px 0;
    }
}
@media only screen and (max-width: 991px){
    .btn_search {
        width: 100%;
    }
    .btn_search:after {
        left: unset;
        width: 50%;
    }
    #cart > .btn{
        padding: 10px 0 10px 10px;
    }
    #mahardhiSearch {
        justify-content: right;
    }
    #logo img {
        width: 60px;
    }
    #cart .dropdown-menu li p .btn {
        font-size: 12px;
        padding: 4px 15px;
    }
}
@media (max-width: 680px) {
    .btn_search:after {
        width: 60%;
    }
}
@media (max-width: 540px) {
    #mahardhiSearch select.form-control.input-lg {
        max-width: 90px;
    }
    .btn_search:after {
        width: 80%;
    }
}
@media (max-width: 480px) {
    #mahardhiSearch select.form-control.input-lg {
        max-width: 70px;
    }
    #mahardhiSearch .input-lg, #search .input-lg {
        width: 140px;
    }
    #mahardhiSearch .input-lg {
        width: 100%;
    }
    #cart .dropdown-menu {
        right: -40px;
    }
}
@media (max-width: 375px) {
    .header-top{
        padding: 10px 0;
    }
    .btn_search:after {
        width: 100%;
    }
}

/*----------------------------------------------*/
/* menu start */
/*----------------------------------------------*/
#menu {
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    min-height: unset;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}
#menu .nav > li > a {
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    background: transparent;
    text-transform: capitalize;
    color: var(--primary-color);
}
#menu .nav > li {
    padding: 25px 0;
}
#menu .nav > li + li {
    margin: 0 0 0 38px;
}
#menu .dropdown-inner,
#navCategory .dropdown-inner {
    display: table;
}
#menu .dropdown-inner ul,
#navCategory .dropdown-inner > ul {
    display: table-cell;
}
#menu .menulist .dropdown-menu a {
    font-size: 14px;
    text-transform: capitalize;
}
#menu .dropdown-inner ul.mega-dropdown-menu.childs_1 > li > a:hover,
#menu .nav.navbar-nav li:hover > span,
#menu .dropdown-inner li:hover > a,
#navCategory .dropdown-inner li a:hover,
.vertical-category ul > li:hover > a,
#menu #topCategoryList .dropdown-inner li:hover > a,
#menu .nav > li:hover > a{
    color: var(--primary-color);
    background-color: transparent;
}
#menu .dropdown-inner .dropdown-submenu,
#navCategory .dropdown-inner .dropdown-submenu {
    position: relative;
}
#menu .column-1 .dropdown-inner li.dropdown-submenu > .fa {
    position: absolute;
    right: 10px;
    top: 0;
    padding: 8px 0;
}
#menu .see-all {
    display: block;
    margin-top: 0.5em;
    border-top: 1px solid #ddd;
    padding: 3px 20px;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 3px 3px;
    font-size: 12px;
}
#menu .see-all:hover,
#menu .see-all:focus {
    text-decoration: none;
    color: var(--primary-hover-color);
    background-color: #229ac8;
    background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
    background-repeat: repeat-x;
}
@media (min-width: 992px) {
    #menu .nav > li > a:after {
        content: "";
        background: var(--primary-color);
        width: 0;
        height: 2px;
        left: 0;
        right: 0;
        margin: auto;
        display: block;
        position: absolute;
        margin-top: 5px;
        transition: all 350ms ease-out 0s;
        -moz-transition: all 350ms ease-out 0s;
        -o-transition: all 350ms ease-out 0s;
        -webkit-transition: all 350ms ease-out 0s;
    }
    #menu .nav > li:hover > a:after {
        width: 100%;
    }
    #menu .dropdown-menu.navcol-menu.item-column .dropdown-submenu.sub-menu-item > a {
        font-weight: 600;
    }
    #menu .dropdown-inner a {
        display: block;
        padding: 5px 15px;
        font-size: 14px;
        font-weight: 400;
        text-transform: capitalize;
        min-width: 200px;
        text-align: left;
        color: var(--secondary-light-color);
    }
    #menu ul li.hiden_menu .dropdown-inner .dropdown-menu {
        display: none;
    }
    #menu .dropdown-menu,
    #menu .hiden_menu.menu_drop .dropdown-inner{
        display: block;
        top: 50px;
        left: 0px;
        min-width: 200px;
        z-index: 999;
        text-align: left;
        right: auto;
        padding: 10px 0;
    }
    #menu .dropdown-menu,
    #menu .hiden_menu.menu_drop .dropdown-inner,
    #menu .column-1 .dropdown-inner .dropdown-submenu ul.sub-menu{
        position: absolute;
        top: 100px;
        padding: 8px 0;
        visibility: hidden;
        background: var(--secondary-color);
        opacity: 0;
        -khtml-opacity: 0;
        -webkit-opacity: 0;
        -moz-opacity: 0;
        filter: alpha(opacity=0);
        transform-origin: 15% 15% 0;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        filter: alpha(opacity=0);
        transform-origin: center top 0;    
        box-shadow: 0 1px 5px rgba(0,0,0,0.11);
        -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.11);
        -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.11);
        margin-left: 0!important;
    }
    #menu .dropdown:hover .dropdown-menu,
    #menu ul li.hiden_menu.menu_drop:hover .dropdown-inner,
    #menu .column-1 .dropdown-inner .dropdown-submenu:hover ul.sub-menu{
        display: block;
        top: 100%;
        visibility: visible;
        opacity: 1;
        -khtml-opacity: 1;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        visibility: visible;
        filter: alpha(opacity=100);
    }     
    #menu .column-1 .dropdown-inner .dropdown-submenu ul.sub-menu {
        left: 100%;
        top: 100%;
    }
    #menu .column-1 .dropdown-inner .dropdown-submenu:hover ul.sub-menu {  
        top: 0px;
    }
    #menu ul.nav .item-column ul.list-unstyled li {
        margin: 0 10px;
    }
    #menu .dropdown-menu.navcol-menu.item-column .dropdown-submenu.sub-menu-item > a {
        border-bottom: 1px solid var(--border-color);
        color: var(--primary-color);
        font-size: 14px;
        font-weight: 500;
        padding-bottom: 7px;    
        margin: 0 10px 3px;
    }
    #menu ul.nav .item-column ul.list-unstyled li a {
        padding-left: 0;
        padding-right: 0;
    }
}
@media (max-width: 1600px) {
    .btn_search {
        padding: 0;
    }
    .header-top {
        padding: 0;
    }
    .header-fixed .header-top {
        padding: 10px 0;
    }
    .welcome-text {
        padding: 10px 0;
    }
    #menu .nav > li,
    #cart > .btn,
    .header_wish a,
    #header_ac > a {
        padding: 20px 0;
    }
    #menu .nav > li + li,
    .header-links div + div {
        margin: 0 0 0 25px;
    }
}
@media (max-width: 1440px) {
    #menu .nav > li + li,
    .header-links div + div {
        margin: 0 0 0 20px;
    }
}
@media (max-width: 1199px) {
    #menu .nav > li > a,
    #mahardhiSearch .input-lg,
    #header_ac > a,
    .header_wish a,
    #cart-total,
    .welcome-text {
        font-size: 14px;
    }
    #menu .nav > li,
    #cart > .btn,
    .header_wish a,
    #header_ac > a {
        padding: 10px 0;
    }
    #menu .nav > li + li,
    .header-links div + div {
        margin: 0 0 0 17px;
    }
}
@media (max-width: 991px) {
    header .row {
        margin: 0 -5px;
    }
    header .col-lg-4 {
        padding: 0 5px;
    }
    .header-left {
        width: 40%;
    }
    .header-right {
        width: 60%;
    }
    .header-center {
        width: 0;
        display: none;
    }
    #menu .nav > li + li {
        margin: 0;
    }
    .welcome-text {
        display: none;
    }
    #header_ac > a span {
        margin: 0 0 0 5px;
    }
    #header_ac > a i:last-child {
        display: none;
    }
    #cart > .btn:before,
    #header_ac > a i,
    .header_wish a i {
        margin-right: 5px;
    }
    #mahardhiSearch .btn-search button {
        padding-right: 0;
    }
    .header-links div + div,
    .header-links div + nav#menu {
        margin: 0 0 0 15px;
    }
    #topCategoryList {
        background: var(--secondary-color);
        display: block!important;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        max-width: 350px;
        z-index: 999;
        margin: 0;
        -webkit-transform: translate(-400px,0);
        -moz-transform: translate(-400px,0);
        -ms-transform: translate(-400px,0);
        -o-transform: translate(-400px,0);
        transform: translate(-400px,0);
        -moz-transition-property: -moz-transform;
        -o-transition-property: -o-transform;
        -webkit-transition-property: -webkit-transform;
        transition-property: transform;
        -moz-transition-duration: .5s;
        -o-transition-duration: .5s;
        -webkit-transition-duration: .5s;
        transition-duration: .5s;
        overflow: auto;
    }
    #topCategoryList.box-menu {
        -webkit-transform: translate(0,0);
        -moz-transform: translate(0,0);
        -ms-transform: translate(0,0);
        -o-transform: translate(0,0);
        transform: translate(0,0);
    }
    .menu-close {
        background: var(--primary-color);
        color: var(--secondary-color);
        padding: 12px 15px;
        font-weight: 600;
        font-size: 16px;
        display: flex;
        justify-content: space-between;
    }
    .menu-close i{
        line-height: 20px;
        font-size: 12px;
    }
    #menu .btn-navbar.open-menu:after {
        top: 0;
        left: 0;
        content: "";
        width: 100%;
        display: block;
        position: fixed;
        height: 100%;
        background: rgba(0,0,0,.5);
        z-index: 99;
        transition: opacity 0.2s cubic-bezier(0,0,.3,1);
        transition-delay: 0.1s;
    }
    #menu .btn-navbar span:before,
    #menu .btn-navbar span:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--primary-color);
        left: 0;
        transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -webkit-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
    }
    #menu .btn-navbar span:after {
        top: 6px;
    }
    #menu .btn-navbar span:before {
        top: -6px;
    }
    #menu .btn-navbar span {
        position: absolute;
        width: 18px;
        height: 2px;
        background: var(--primary-color);
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        text-align: center;
    }
    #menu .nav > li > a,
    #menu #topCategoryList .dropdown-inner a{
        color: var(--secondary-light-color);
        font-weight: 400;       
        padding: 6px 30px 6px 15px;
        display: block;
        font-size: 14px;
        text-transform: capitalize;
    }
    #menu .nav > li > a,
    #menu #topCategoryList .menu_drop > .dropdown-inner > li > a {
        font-size: 14px;
    }   
    #menu #topCategoryList ul {
        float: none;
        display: block;
        text-align: left;
        margin: 0;
        background: transparent;
    }
    #menu #topCategoryList > ul{
        margin: 10px 0;
    }
    #menu #topCategoryList ul.category-list {
        margin-bottom: 10px;
    }
    #menu .dropdown-inner,
    #navCategory .dropdown-inner {
        display: block; 
    }
    #topCategoryList .dropdown.menulist .dropdown-menu .dropdown-inner {
        display: block;
        padding: 0 15px;
    }
    #topCategoryList .dropdown.menulist .dropdown-menu {
        position: relative;
        float: none;
        background-color: transparent;
        border: none;
        box-shadow: none;
        display: none;
        padding: 0;
    }
    #menu #topCategoryList .dropdown-inner .dropdown-submenu ul.sub-menu {
        display: none; 
        position: unset;
        border: none;
        padding: 0 15px;
    }
    #topCategoryList li .toggle-menu {
        position: absolute;
        right: 5px;
        top: 0;
        padding: 6px 11px;
    }
    #topCategoryList .dropdown-submenu > .fa {
        display: none;
    }
    #topCategoryList ul li {
        float: none;
    }
    #topCategoryList #more_cat {
        display: none;
    }    
    #menu .btn-navbar {
        display: block;
        margin: 10px 0;
        border: none;
        z-index: 2;
        padding: 9px 10px;
    }
    .category-list .menu-item.dropdown .dropdown-menu {
        position: relative;
        box-shadow: none;
        width: 100%;
        border: none;
        padding: 0 15px;
        float: none;
    }
    #menu .nav > li{
        padding: 0
    }   
}
@media (max-width: 767px){
    #header_ac > a span,
    .header_wish a span,
    .cart-item {
        display: none;
    }
}
@media (max-width: 540px){
    #header_ac > a i,
    #cart > .btn:before,
    .header_wish a i {
        font-size: 18px;
    }
}
@media (max-width: 480px){
    .header-links div + div,
    .header-links div + nav#menu {
        margin: 0 0 0 10px;
    }
    #topCategoryList {
        max-width: 280px;
    }
}

/*----------------------------------------------*/
/* slider start */
/*----------------------------------------------*/
.common-home .swiper-viewport, .common-landing_krsnamilk .swiper-viewport {
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}
.slideshow img {
    width: 100%;
}

/*----------------------------------------------*/
/* banners */
/*----------------------------------------------*/
.html1{overflow: hidden;}
.html1-inner,
.banners {
    position: relative;
    overflow: hidden;
}
.html1 .html1-inner
{
    display: flex;
}
.banner1 {
    padding: 40px 50px 0 30px;
    z-index: 1;
    margin-bottom: 100px;
}
.banner1::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: auto;
    left: 0;
    top: 0;
    border: 0;
    height: 90.5%;
    width: 66.3%;
    background: var(--primary-hover-color);
}
.banner2 {
    position: absolute;
    right: 15px;
    bottom: 0;
    z-index: 2;
    border-left: 20px solid var(--background-color);
    border-top: 20px solid var(--background-color);
}
.banners > a::after {
    content: "";
    position: absolute;
    background: rgba(255,255,255,0.7) none repeat scroll 0 0;
    height: 0;
    width: 0;
    opacity: 1;
    top: 50%;
    left: 50%;
    bottom: 50%;
    right: 50%;
}
.banners > a:hover::after {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition-duration: 0.8s;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.html1 .promo-text-box {
    margin: 142px 0 0 100px;
    padding-right: 50px;
}
.html1 .promo-text-box .promo-desc {
    position: relative;
    display: inline-block;
    font-size: 26px;
    line-height: 30px;
    font-weight: 500;
    color: var(--primary-hover-color);
    margin: 0 0 30px;
    padding-right: 22px;
    /*text-transform: capitalize;*/
}
.html1 .promo-text-box .promo-desc:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    width: 50px;
    height: 1px;
    background: var(--primary-hover-color);
}
.html1 .promo-text-box .promo-title {
    font-size: 40px;    
    font-weight: 600;
    line-height: 50px;    
    margin: 0 0 22px;
    /*text-transform: capitalize;*/
    text-transform: inherit;
}
.html1 .promo-text-box .promo-text {
    font-size: 18px;
    line-height: 30px;
    color: var(--secondary-light-color);
    margin-bottom: 37px;
}
.html1 .button {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 11px 39px;
    border: 1px solid var(--primary-hover-color);
    text-transform: uppercase;
    background: transparent;
}
@media only screen and (max-width: 1800px) {
    .html1 .promo-text-box {
        margin: 60px 0 0 80px;
        padding-right: 20px;
    }
    .html1 .promo-text-box .promo-title {
        font-size: 35px;    
        line-height: 45px;
    }
}
@media only screen and (max-width: 1440px) {
    .banner1 {
        margin-bottom: 50px;
    }
    .banner2 img {
        width: 400px;
    }
    .html1 .promo-text-box {
        margin: 40px 0 0;
    }
    .html1 .promo-text-box .promo-desc {
        font-size: 24px;
        margin: 0 0 18px;
    }
}
@media only screen and (max-width: 1199px) {
    .banner1 {
        padding: 20px 30px 0 20px;
    }
    .banner2 {
        border-left: 10px solid var(--background-color);
        border-top: 10px solid var(--background-color);
    }
    .banner2 img {
        width: 300px;
    }
    .html1 .promo-text-box {
        margin: 20px 0 0;
    }
    .html1 .promo-text-box .promo-desc {
        font-size: 20px;
        line-height: 20px;
        margin: 0 0 10px;
    }
    .html1 .promo-desc {
        font-size: 18px;
        margin: 0 0 15px;
    }
    .html1 .promo-text-box .promo-text {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 25px;
    }
    .html1 .promo-text-box .promo-title {
        margin: 0 0 15px;
    }
}
@media only screen and (max-width: 991px) {
    .html1 .html1-inner {
        display: block;
    }
    .html1 .inner1,
    .html1 .inner2 {
        padding: 0 5px;
        width: 100%;
    }
    .banner2 img {
        width: 400px;
    }
    .html1 .row {
        margin: 0 -5px;
    }
    .banner2 {
        right: 5px;
    }
    .html1 .promo-text-box .promo-title {
        font-size: 26px;
        line-height: 32px;
    }
    .html1 .button {
        font-size: 12px;
        padding: 4px 15px;
    }

}
@media (max-width: 680px) { 
    .html1 .promo-desc {
        font-size: 14px;
    }
    .html1 .promo-title {
        font-size: 20px;
        line-height: 30px;
    }
}
@media (max-width: 600px) {
    .banner2 img {
        width: 300px;
    }
}
@media (max-width: 540px) {
    .html1 .promo-text-box .promo-title {
        font-size: 20px;
        line-height: 28px;
        margin: 0 0 5px;
    }
    .html1 .promo-text-box .promo-desc {
        font-size: 18px;
    }
}
@media (max-width: 425px) {
    .banner2 img {
        width: 200px;
    }
    .banner1 {
        margin-bottom: 30px;
    }
}

/*----------------------------------------------
/* buttons 
/*----------------------------------------------*/
.buttons {
    margin: 1em 0;
}
#tab-review .buttons {
    margin: 1em 0 0;
}
.btn {
    position: relative;
    font-size: 14px;
    line-height: 20px;
    padding: 9px 30px;
    border: 1px solid var(--primary-hover-color);
    border-radius: 0;
    z-index: 1;
    color: var(--primary-hover-color);
    overflow: hidden;
    white-space: inherit;
    transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
}
.btn.focus, .btn:focus, .btn:hover {
    color: var(--secondary-color);
}
.btn-xs {
    font-size: 9px;
}
.btn-sm {
    font-size: 10.2px;
}
.btn-lg {
    padding: 8px 20px;
    font-size: 14px;
}
.btn-group > .btn,
.btn-group > .dropdown-menu,
.btn-group > .popover {
    font-size: 14px;
}
.btn-group > .btn-xs {
    font-size: 9px;
}
.btn-group > .btn-sm {
    font-size: 10.2px;
}
.btn-group > .btn-lg {
    font-size: 14px;
}
#cart .text-right .addtocart-btn,
#cart .text-right .checkout-btn,
.btn-default,
.btn-primary {
    width: auto;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 30px;
    border: none;
    color: var(--secondary-color);
    background: var(--primary-color);
    border-radius: 0;
    font-weight: 500;
    outline: none;
}
.btn-warning {
    color: var(--secondary-color);
    background-color: #faa732;
    border-radius: 5px;
}
.btn-danger {
    color: var(--secondary-color);
    background-color: #da4f49;
    text-transform: uppercase;
    padding: 10px 30px;
    border: none;
    border-radius: 0;
}
.btn-success {
    color: var(--secondary-color);
    background-color: #5bb75b;
    background-repeat: repeat-x;
    border-radius: 5px;
}
.btn-info {
    color: var(--secondary-color);
    background: var(--primary-color);
    border: none;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 0;
    font-weight: 500;
}
.btn-link {
    border-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    color: var(--primary-color);
    border-radius: 5px;
}
.btn-link,
.btn-link:active,
.btn-link[disabled] {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    box-shadow: none;
}
.btn-inverse {
    color: var(--primary-color);
    background-color: #363636;
    background-repeat: repeat-x;
    border-color: var(--primary-color) var(--primary-color) #000000;
}
.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
    background-color: var(--primary-color);
}
.btn-link:focus,
.btn-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
    outline: none;
}
#cart .text-right .addtocart-btn:hover,
#cart .text-right .addtocart-btn:focus,
#cart .text-right .checkout-btn:hover,
#cart .text-right .checkout-btn:focus,
.open>.dropdown-toggle.btn-primary.focus,
.open>.dropdown-toggle.btn-primary:focus,
.open>.dropdown-toggle.btn-primary:hover,
.btn-primary[disabled].active,
.btn-primary[disabled].focus,
.btn-primary[disabled]:active,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default:active:hover,
.btn-default:active:before,
.btn-default:active:focus,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled],
.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled],
.btn-info.focus,
.btn-info:focus,
.btn-info:active:focus,
.btn-info:active:hover{ 
    color: var(--secondary-color);
    border-color: var(--primary-hover-color);
    background-color: var(--primary-hover-color);
    box-shadow: none;
}
#cart .dropdown-menu li p .btn::before,
#cart .text-right .addtocart-btn::before,
#cart .text-right .checkout-btn::before,
.html1 .button::before,
.news .subscribe-btn::before,
.blog-read::before,
.blog-block .zoom-post a::after,
.product-list .product-thumb .addcart::before {
    content: '';
    position: absolute;
    top: 70px;
    right: 100%;
    width: 200px;
    height: 200px;
    z-index: -1;
    transform: rotate(45deg);
    background-color: var(--primary-hover-color);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition: all 0.5s cubic-bezier(.69,.26,.28,.95) 0s;
    transition: all 0.5s cubic-bezier(.69,.26,.28,.95) 0s;
}
#cart .dropdown-menu li p .btn:hover::before,
#cart .text-right .addtocart-btn:hover::before,
#cart .text-right .checkout-btn:hover::before,
.html1 .button:hover::before,
.news .subscribe-btn:hover::before,
.blog-read:hover::before,
.blog-block .zoom-post a:hover::after,
.product-list .product-thumb .addcart:hover::before {
    top: 0;
    right: 0;
}
#cart .text-right .addtocart-btn,
#cart .text-right .checkout-btn {
    color: var(--primary-color);
    background: transparent;
    border: 1px solid var(--primary-hover-color);
}
#cart .text-right .addtocart-btn:hover,
#cart .text-right .checkout-btn:hover {
    color: var(--secondary-color);
    background: transparent;
}
#list-view.btn-default::before,
#grid-view.btn-default::before,
#mahardhiSearch .btn-search button::before, 
#search .input-group-btn button::before,
#frmnewsletterpopup button::before {
    display: none;
}
.product-list .product-thumb .addcart:hover,
.blog-read:hover {
    color: var(--secondary-color);
}

/* list group */
.list-group a {
    border: none;
    color: var(--secondary-light-color);
    padding: 8px 12px;
}
.list-group a.active,
.list-group a.active:hover,
.list-group a:hover {
    color: var(--primary-color);
    background: transparent;
}
@media (max-width: 991px) {
    #cart .text-right .addtocart-btn,
    #cart .text-right .checkout-btn,
    .btn-default,
    .btn-primary {
        padding: 6px 20px;
    }
    .btn-danger,
    .btn-info {
        padding: 7px 20px;
    }
    #cart .dropdown-menu li p .btn::before,
    #cart .text-right .addtocart-btn::before,
    #cart .text-right .checkout-btn::before,
    .html1 .button::before, 
    .news .subscribe-btn::before,
    .blog-read::before,
    .blog-block .zoom-post a::after,
    .product-list .product-thumb .addcart::before {
        width: 125px;
        height: 125px;
        right: 75%;
    }
}

/*----------------------------------------------*/
/* products */
/*----------------------------------------------*/
.owl-item.active.center .row-items,
.owl-item.active .image-additional,
.owl-item.active .product-layout,
.owl-item.active .category-layout {
    -moz-animation: zoomIn 500ms ease;
    -o-animation: zoomIn 500ms ease;
    -webkit-animation: zoomIn 500ms ease;
    animation: zoomIn 500ms ease;
}
.page-title {
    position: relative;
}
.page-title h3{
    position: relative;
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 50px;
    text-align: center;
    text-transform: capitalize;
    color: var(--primary-color);
}
.product-thumb {
    position: relative;
    margin-bottom: 30px;
}
.product-thumb .image {
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--background-color);
}
.product-thumb .image a {
    display: block;
    background: #fff;
}
.product-thumb .image img {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.product-thumb .button-group{    
    position: absolute;
    visibility: hidden;
    left: 0;
    right: 0;
    bottom: 30px;
    margin: 0 auto;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.product-thumb:hover .button-group {
    visibility: visible;
    opacity: 1;
}
.product-thumb .button-group button {
    position: relative;
    font-size: 16px;
    height: 44px;
    width: 44px;
    line-height: 44px;
    border: 1px solid var(--primary-hover-color);
    margin: 0;
    padding: 0;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    border-radius: 0;
    background: transparent;
    transform: rotate(-90deg) scale(0);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.product-thumb:hover .button-group button {
    transform: rotate(0deg) scale(1.0);
}
.product-thumb .button-group button:after {
    content: '';
    position: absolute;
    top: 70px;
    right: 100%;
    width: 200px;
    height: 200px;
    z-index: -1;
    transform: rotate(45deg);
    background-color: var(--primary-hover-color);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition: all 0.5s cubic-bezier(.69,.26,.28,.95) 0s;
    transition: all 0.5s cubic-bezier(.69,.26,.28,.95) 0s;
}
.product-thumb .button-group button:hover::after {
    top: 0;
    right: 0;
}
.product-thumb .button-group button + button {
    margin: 0 0 0 10px;
}
.product-thumb .button-group button i {
    display: block;
}
.product-thumb .button-group button:hover {
    background: transparent;
    color: var(--secondary-color);
}
.product-thumb .sale-text {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    opacity: 0;
    color: var(--primary-color); 
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}
.product-thumb:hover .sale-text {
    opacity: 1;
}
.product-thumb .description {
    color: var(--secondary-light-color);
    line-height: 24px;
    margin: 12px 0 0;
}
.thumb-description {
    position: relative;
}
.product-thumb .caption {
    padding: 27px 10px 20px;
    text-align: center;
    position: relative;
    background: var(--background-color);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.product-thumb .price {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}
.product-thumb .price-new {
    margin-right: 10px;
    padding: 7px 16px;
    display: inline-block;
    color: var(--secondary-color);
    background: var(--primary-hover-color);
}
.product-thumb .price-old {
    text-decoration: line-through;
    color: var(--primary-color);
    display: inline-block;
}
.product-thumb .product-title {
    margin: 0 0 12px;
}
.product-thumb .product-title a{
    text-transform: capitalize;
    font-size: 18px;
    line-height: 20px;
    /*text-transform: uppercase;*/
    text-transform: inherit;
    font-weight: 500;
    color: var(--primary-color);
}
.product-thumb .product-title a:hover {
    color: var(--primary-hover-color);
}
.product-thumb .price-tax{
    display: none;
}
.product-thumb .rating{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
    margin: 0 auto;
    font-size: 0;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}
.product-thumb:hover .rating{
    visibility: hidden;
    opacity: 0;
}
.product-list .product-thumb .caption {
    padding: 25px 117px 20px 0;
    text-align: left;
    background: transparent;
}
#product-page .nav-tabs li {
    margin: 0 25px;
}
#product-page .nav-tabs>li> a{
    padding: 0 0 15px 0;
}
#product-page .nav-tabs>li> a:after {
    content: "";
    background: var(--primary-color);
    width: 0;
    height: 2px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    position: absolute;
    bottom: -1px;
    transition: all 350ms ease-out 0s;
    -moz-transition: all 350ms ease-out 0s;
    -o-transition: all 350ms ease-out 0s;
    -webkit-transition: all 350ms ease-out 0s;
}
#product-page .nav-tabs>li:hover> a:after,
#product-page .nav-tabs>li.active> a:after{
    width: 100%;
}
#product-page .nav-tabs>li.active>a,
#product-page .nav-tabs>li:hover> a {
    color: var(--primary-color);
}

.nav-tabs>li> a {
    text-transform: capitalize;
    padding: 12px 25px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    border: none;
    margin: 0;
    line-height: 20px;
    color: var(--secondary-light-color);
}
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover,
.nav-tabs>li>a:hover,
.nav>li>a:focus,
.nav>li>a:hover{
    background: transparent;
    color: var(--primary-color);
    border: none;
}

/*product hover */
.product-thumb .hover-img {
    bottom: 0;
    left: 0;
    margin: 0 auto;
    opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
}
.product-thumb:hover .hover-img {
    opacity: 1;
    -moz-opacity: 1;
    -webkit-opacity: 1;
}

/*category tab*/
.category-tab .nav-tabs {
    border: none;
    margin: -2px 0 50px;
    padding: 0;
    text-align: center;
}
.category-tab .nav-tabs>li {
    float: none;
    display: inline-block;
}
.category-tab .nav-tabs>li> a {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    padding: 0 0 8px;
    margin: 0;
    border: none;
    text-transform: uppercase;
    background: transparent;
}
.category-tab .nav-tabs>li> a:hover,
.category-tab .nav-tabs>li> a:focus,
.category-tab .nav-tabs>li.active a {
    background: transparent;
    color: var(--primary-color);
}
.category-tab .nav-tabs > li + li {
    margin: 0 0 0 55px;
}
.category-tab .nav-tabs>li> a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 2px;
    width: 0;
    background-color: var(--primary-color);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.category-tab .nav-tabs>li> a:hover::after,
.category-tab .nav-tabs>li> a:focus::after,
.category-tab .nav-tabs>li.active a::after {
    width: 100%;
}
@media (max-width: 1440px) {
    .product-list .product-thumb .caption {
        padding: 20px 50px 20px 0;
    }
    .product-thumb .button-group button {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    .category-tab .nav-tabs > li + li {
        margin: 0 0 0 35px;
    }
    .product-thumb .button-group button + button {
        margin: 0 0 0 5px;
    }
    .product-thumb .sale-text {
        top: 15px;
        right: 15px;
    }
}
@media (max-width: 1199px) {
    .page-title h3,
    .mblog .page-title h3 {
        font-size: 24px;
        margin: 0 0 20px;
    }
    .category-tab .nav-tabs > li + li {
        margin: 0 0 0 15px;
    }
    .category-tab .nav-tabs>li> a {
        font-size: 14px;
    }
    .category-tab .nav-tabs {
        margin: -2px 0 30px;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: auto;
    }
    .category-tab .nav-tabs::-webkit-scrollbar {
        display: none;
    }
    .category-tab .nav-tabs::before {
        display: none;
    }
    .product-thumb .caption {
        padding: 20px 5px;
    }
    .product-thumb .product-title a {
        font-size: 16px;
    }
    .product-list .product-thumb .caption {
        padding: 20px 0;
    }
}
@media (max-width: 991px) {
    .page-title h3 {
        font-size: 20px;
        margin: 0 0 15px;
    }
    .category-tab .nav-tabs {
        margin: -2px 0 20px;
    }
    .mblog .page-title h3 {
        font-size: 20px;
        margin: 0 0 25px;
    }
    #product-page .nav-tabs li {
        margin: 0 15px;
    }
    .product-thumb {
        margin-bottom: 20px;
    }
    .row.category-row,
    .category-featured .row,
    .box .row,
    .blog-category-inner.row {
        margin: 0 -5px;
    }
    .product-layout,
    .category-layout,
    .blog-category {
        padding: 0 5px;
    }
    .product-thumb .sale-text {
        top: 10px;
        right: 10px;
        font-size: 10px;
        padding: 0 8px;
    }
    .product-thumb .caption {
        padding: 15px 5px;
    }
    .product-thumb .caption .price {
        font-size: 14px;
    }
    .product-thumb .price-new {
        padding: 4px 10px;
        margin-right: 5px;
    }
    .product-thumb .rating{
        display: none;
    }
    .product-thumb:hover .button-group,
    .product-thumb .button-group {
        visibility: visible;
        opacity: 1;
        bottom: 15px;
    }   
    .product-thumb .button-group button {
        transform: unset;
    }
    .product-thumb .button-group button:after {
        width: 125px;
        height: 125px;
        right: 15%;
    }
    .product-thumb .button-group button + button {
        margin: 0 0 0 2px;
    }
    .product-thumb .product-title a {
        font-size: 14px;
    }
    .product-thumb .button-group button {
        font-size: 14px;
        height: 30px;
        width: 30px;
    }     
    .product-list .product-thumb .rating {
        margin: 7px 0 0 0;
    }
    .product-list .product-thumb .price {
        margin: 12px 0 0;
    }
    .product-thumb .description {
        margin: 5px 0 0;
    }
    .product-list .product-thumb .product-title a {
        font-size: 16px;
    }
    .product-list .product-thumb .caption {
        padding: 10px 0;
    }
    #product-page .nav-tabs>li> a {
        font-size: 14px;
        padding: 0 0 5px 0;
    }
    .product-list .product-thumb .thumb-description .addcart {
        margin: 10px 0 0 0;
        padding: 4px 15px;
        font-size: 12px;
    }
}
@media (max-width: 767px) {
    .mblog .page-title h3 {
        margin: 0 0 20px;
    }
    .product-thumb .product-title {
        margin: 0 0 6px;
    }
}
@media (max-width: 680px) {
    .product-list .product-thumb .image img {
        width: auto;
        margin: 0;
    }  
    .product-list .product-thumb .caption {
        padding: 10px 0 0;
    }
}
@media (max-width: 480px) {
    .page-title h3 {
        margin: 0 0 10px;
        font-size: 18px;
    }
    .product-thumb .button-group button {
        width: 28px;
        height: 28px;
    }
    .product-thumb .button-group button:after {
        right: 5%;
    }
    .product-thumb .button-group button + button {
        margin: 0;
    }
}

/*----------------------------------------------
/* swiper pager */
/*----------------------------------------------*/
.swiper-viewport .swiper-pager > div,
.owl-carousel.owl-theme .owl-nav div,
.category-featured .owl-nav div {
    display: inline-block;
    height: 44px;
    width: 44px;
    line-height: 44px;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-hover-color);
    padding: 0;
    text-align: center;
    overflow: hidden;
    border-radius: 0;
    z-index: 2;
    margin: 0;
    opacity: 1;
    cursor: pointer;
    text-shadow: none;
    transition: all .3s ease;
    position: relative;
    box-shadow: none;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
}
.swiper-viewport .swiper-pager > div::after,
.owl-carousel.owl-theme .owl-nav div::after,
.category-featured .owl-nav div::after {
    content: '';
    position: absolute;
    top: 70px;
    right: 100%;
    width: 200px;
    height: 200px;
    z-index: -1;
    transform: rotate(45deg);
    background-color: var(--primary-hover-color);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition: all 0.5s cubic-bezier(.69,.26,.28,.95) 0s;
    transition: all 0.5s cubic-bezier(.69,.26,.28,.95) 0s;
}
.swiper-viewport .swiper-pager > div:hover,
.owl-carousel.owl-theme .owl-nav div:hover,
.category-featured .owl-nav div:hover {
    color: var(--secondary-color);
    background: transparent;
}
.quickview-wrapper .owl-carousel.owl-theme .owl-nav div:hover {
    color: var(--primary-color);
}
.swiper-viewport .swiper-pager > div:hover::after,
.owl-carousel.owl-theme .owl-nav div:hover::after,
.category-featured .owl-nav div:hover::after {
    top: 0;
    right: 0;
}
.owl-carousel.owl-theme .owl-nav .owl-next,
.category-featured .owl-nav .owl-next {
    margin-left: 10px;
}
.owl-carousel.owl-theme .owl-nav .disabled{
    opacity: 0.6;
}
.swiper-viewport {
    border: unset;
}
.swiper-pagination {
    display: none;
}
.swiper-viewport .swiper-button-prev:before,
.swiper-viewport .swiper-button-next:before{
    content:"";
}
.owl-carousel.owl-theme .owl-nav .fa,
.category-featured .owl-nav .fa,
.swiper-viewport .fa {
    font-size: 18px;
    line-height: 42px;
    display: block;
}

/*carousel*/
.owl-carousel.owl-theme .owl-nav{
    margin: 0;
}
.carousel .swiper-viewport:hover .swiper-button-next,
.carousel .swiper-viewport:hover .swiper-pager .swiper-button-prev{
    opacity: 1;
}

/*dots*/
.owl-theme .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 5px;
    margin: 0 5px;
    box-shadow: none;
    border-radius: 0;
    background: var(--primary-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.owl-theme .owl-dots .owl-dot.active span {
    height: 5px;
    width: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--primary-hover-color);
}
.owl-theme .owl-nav.disabled+.owl-dots{
    margin: 20px 0 0;
    line-height: 5px;
}
.testimonial-block .owl-theme .owl-nav.disabled+.owl-dots {
    margin: 12px 0 0 0;
}
.mblog .owl-theme .owl-dots .owl-dot span {
    display: none;
}
.mblog .owl-theme .owl-nav.disabled+.owl-dots {
    margin: 0;
    line-height: 20px;
    margin: 0 6px 12px 0;
}
.mblog .owl-theme .owl-dots {
    display: flex;
    flex-direction: column;
    position: relative;
    counter-reset: dots;
}
.mblog .blogs-block .owl-dot {
    position: relative;
}
.mblog .blogs-block .owl-dot + .owl-dot {
    margin-top: 34px;
}
.mblog .blogs-block .owl-dot:before {
    counter-increment: dots;
    content: "0"counter(dots);
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-hover-color);
    opacity: 0.5;
}
.mblog .blogs-block .owl-dot.active:before,
.mblog .blogs-block .owl-dot:hover:before {
    opacity: 1;
}
/*.mblog .blogs-block .owl-dot:after {*/
.mblog .blogs-block .owl-dot.active:after,
.mblog .blogs-block .owl-dot:hover:after {
    content: '';
    width: 28px;
    height: 2px;
    position: absolute;
    top: 35%;
    left: -2px;
    background: var(--primary-hover-color);
    transform: rotate(-30deg);
}

/*slideshow*/
.swiper-horizontal>.swiper-pagination-bullets, 
.swiper-pagination-bullets.swiper-pagination-horizontal, 
.swiper-pagination-custom, .swiper-pagination-fraction{
    display: block;
    bottom: 30px!important;
    width: auto!important;
    left: 73px!important;
}
.slideshow .swiper-viewport .swiper-pager > div{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 1;
}
.slideshow .swiper-viewport .swiper-pager .swiper-button-prev{
    left: 20px;
}
.slideshow .swiper-viewport .swiper-pager .swiper-button-next{
    right: 20px;
}
.swiper-pagination span {
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 24px;
    font-weight: 500;
    border: none;
    box-shadow: none;
    color: var(--primary-hover-color);
    border-radius: 0;
    opacity: 0.5;
    margin: 0;
    display: inline-block;
    background: transparent;
    outline: none;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0!important;
    display: inline-block;
    vertical-align: middle;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin: 0 0 0 18px!important;
}
.swiper-pagination span.swiper-pagination-bullet-active, 
.swiper-pagination span:hover {
    position: relative;
    background: transparent;
    opacity: 1;
}
.swiper-pagination span.swiper-pagination-bullet-active:after,
.swiper-pagination span:hover:after {
    content: '';
    width: 32px;
    height: 2px;
    position: absolute;
    top: 45%;
    left: 4px;
    background: var(--primary-hover-color);
    transform: rotate(-30deg);
}

/* slick-carousel */
.slick-carousel > button {
    border: none;
    background: transparent;
    padding: 2px 7px;
}
.slick-carousel > button i {
    font-size: 20px;
}
@media (max-width: 1440px) {
    .swiper-horizontal>.swiper-pagination-bullets, 
    .swiper-pagination-bullets.swiper-pagination-horizontal, 
    .swiper-pagination-custom, .swiper-pagination-fraction{
        bottom: 40px!important;
        left: 40px!important;
    }
}
@media (max-width: 991px){
    .swiper-viewport .swiper-pager > div,
    .owl-carousel.owl-theme .owl-nav div,
    .category-featured .owl-nav div {
        height: 36px;
        width: 36px;
        line-height: 36px;
    }
    .owl-carousel.owl-theme .owl-nav .fa,
    .category-featured .owl-nav .fa, .swiper-viewport .fa {
        font-size: 16px;
        line-height: 34px;
    }
    .mblog .blogs-block .owl-dot:before {
        font-size: 18px;
    }
    .swiper-viewport .swiper-pager > div::after,
    .owl-carousel.owl-theme .owl-nav div::after,
    .category-featured .owl-nav div::after {
        width: 125px;
        height: 125px;
        right: 45%;
    }
    .swiper-horizontal>.swiper-pagination-bullets, 
    .swiper-pagination-bullets.swiper-pagination-horizontal, 
    .swiper-pagination-custom, .swiper-pagination-fraction {
        bottom: 20px!important;
        left: 45px!important;
    }
    .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet + .swiper-pagination-bullet {
        margin: 0 0 0 8px!important;
    }
    .swiper-pagination span {
        height: 28px;
        width: 28px;
        line-height: 28px;
        font-size: 14px;
    }
    .swiper-pagination span.swiper-pagination-bullet-active:after,
    .swiper-pagination span:hover:after {
        width: 20px;
    }
    .owl-theme .owl-nav.disabled+.owl-dots,
    .mblog .owl-theme .owl-nav.disabled+.owl-dots {
        margin: 5px 0 0;
    }
}
@media (max-width: 767px) {
    .swiper-horizontal>.swiper-pagination-bullets, 
    .swiper-pagination-bullets.swiper-pagination-horizontal, 
    .swiper-pagination-custom, .swiper-pagination-fraction {
        left: 15px!important;
    }
    .owl-theme .owl-nav.disabled+.owl-dots {
        margin: 0;
    }
}
@media (max-width: 480px) {
    .swiper-horizontal>.swiper-pagination-bullets, 
    .swiper-pagination-bullets.swiper-pagination-horizontal, 
    .swiper-pagination-custom, .swiper-pagination-fraction {
        bottom: 10px!important;
    }
}

/*----------------------------------------------*/
/* Featured Category */
/*----------------------------------------------*/
.category-featured {
    background: var(--secondary-color);
}
.category-featured .box-heading {
    display: flex;
    align-items: center;
    padding: 100px 0;
}
.category-featured .category-title {
    width: 20.3%;
    padding: 0 100px 0 0;
}
.category-featured .category-box {
    width: 79.7%;
}
.category-title .page-title {
    font-size: 42px;
    line-height: 48px;
    font-weight: 600;
    margin: 0;
    color: var(--primary-color);
}
.category-description {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    margin: 17px 0 16px;
    color: var(--secondary-light-color);
}
.category-thumb {
    position: relative;
    padding: 0 0 16px;
}
.category-thumb:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 53%;
    background: var(--background-color);
    z-index: -1;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.category-thumb:hover:after {
    height: 100%;
}
.category-thumb .cat-title {
    font-size: 24px;
    font-weight: 500;
    display: block;
    margin: 28px 0 10px;
    text-align: center;
    text-transform: capitalize;
    transition: all .3s ease;
}
.category-thumb .cat-title a:hover {
    color: var(--primary-hover-color);
}
.number-product {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: var(--primary-color);
}
@media (min-width: 992px) {
    .category-title .page-title span {
        display: block;
    }
}
@media (max-width: 1440px) {
    .category-featured .box-heading {
        padding: 70px 0;
    }
    .category-featured .category-title {
        padding-right: 55px;
    }
    .category-thumb .cat-title {
        font-size: 18px;
        margin: 18px 0 8px;
    }
}
@media (max-width: 1199px) {
    .category-featured .box-heading {
        padding: 60px 0;
    }
    .category-thumb {
        padding: 15px;
    }
    .category-featured .category-title {
        padding-right: 20px;
    }
    .category-title .page-title {
        font-size: 32px;
        line-height: 38px;
    }
    .number-product {
        font-size: 14px;
    }
}
@media (max-width: 991px) {
    .category-featured .box-heading {
        display: block;
        text-align: center;
        padding: 50px 0;
    }
    .category-featured .category-title,
    .category-featured .category-box {
        width: 100%;
        padding: 0;
    }
    .category-thumb {
        margin-bottom: 20px;
    }
    .category-title .page-title {
        font-size: 24px;
        line-height: 24px;
    }
    .category-description {
        font-size: 14px;
        line-height: 20px;
        margin: 12px 0 20px;
    }
}
@media (max-width: 767px) {
    .category-featured .box-heading {
        padding: 30px 0;
    }
}
@media (max-width: 680px) {
    .category-thumb {
        padding: 10px 5px;
    }
    .category-thumb .cat-title {
        font-size: 14px;
        margin: 10px 0 5px;
    }
    .number-product {
        font-size: 12px;
    }
}

/*----------------------------------------------*/
/* blog */
/*----------------------------------------------*/
.mblog {
    position: relative;
    padding: 100px 0 70px;
}
.mblog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 36%;
    display: block;
    background: var(--secondary-color);
}
.mblog .page-title h3 {
    font-size: 24px;
    color: var(--primary-hover-color);
    text-transform: uppercase;
    margin: 0 0 41px;
    line-height: 25px;
}
.mblog .page-title .heading-desc {
    font-size: 36px;
    font-weight: 600;
    margin: 0;
    text-transform: none;
}
.mblog .box-content {
    display: flex;
    align-items: center;
}
.mblog .box-content .page-title {
    width: 15.4%;
    margin-left: -87px;
    transform: rotate(-90deg);
}
.mblog .box-content .block_box {
    margin-left: 0;
    width: 89.8%;
}
.blog-info .image {
    overflow: hidden;
    position: relative;
}
.blog-block{
    margin-bottom: 30px;
    position: relative;
}
.blog-block .zoom-post a {
    position: relative;
    overflow: hidden;
    display: block;
    height: 40px;
    width: 40px;
    margin: 5px 0;
    z-index: 1;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-hover-color);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.blog-block .zoom-post a:hover {
    color: var(--secondary-color);
    border: 1px solid var(--primary-hover-color);
}
.blog-block .zoom-post {
    position: absolute;
    left: -50px;
    top: 10px;   
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
}
.blog-block:hover .zoom-post {
    left: 15px;
}
.mblog .blog-block .zoom-post {
    left: auto;
    right: -50px;
    top: 40px;
}
.mblog .blog-block:hover .zoom-post {
    left: auto;
    right: 15px;
}
.blog-block .hover-zoom::before,
.blog-block .hover-post:before {
    font-family: FontAwesome;
    font-size: 14px;
    margin: 0;
    display: block;
    text-align: center;
    line-height: 40px;
}
.blog-block .hover-zoom::before {
    content: "\f002";
}
.blog-block .hover-post:before {
    content: '\f0c1';
}
.blog-block:hover .hover-post:before,
.blog-block:hover .hover-zoom::before {
    opacity: 1;
}
.product-list .blog-block.product-thumb .image {
    box-shadow: none;
    margin: 0;
}
.blog-block .blog-content-title,
.blog-category .blog-title,
h3.article-page-title {
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    margin: 15px 0 0;
    text-transform: capitalize;
}
.blog-block .blog-content-title:hover a {
    color: var(--primary-hover-color);
}
.blog-read {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 11px 39px;
    border: 1px solid var(--primary-hover-color);
    overflow: hidden;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}
.mblog .box-content .blog-block {
    display: flex;
}
.mblog .caption {
    position: relative;
    width: 45%;
    margin-top: 128px;
}
.mblog .blog-block .blog-content-title {
    font-size: 28px;
    line-height: 30px;
    margin: 21px 0 0;
}
.mblog .blog-block .blog-content-title a {
    color: var(--primary-hover-color);
}
.mblog .blog-text{
    margin: 20px 0 37px;
}
.mblog .link_info {
    margin: 0 0 0 100px;
    text-align: left;
}
.mblog .blog-info .image {
    position: relative;
    padding: 30px 0 0 30px;
}
.mblog .blog-info .image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 30px;
    bottom: 30px;
    display: block;
    background: var(--background-color);
    z-index: -1;
}

/*----------------------------------------------*/
/* blog page */
/*----------------------------------------------*/
.mblog .blogs-block {
    display: flex;
    align-items: center;
}
.blog-category .blog-img {
    position: relative;
    overflow: hidden;
    display: block;
}
h4.article-page-title{
    margin: 20px 0 15px;
}
.caption-blog  p,
.info_blog p{
    margin: 20px 0 0;
}
.blog-block img,
#content-blogs .thumbnails .thumbnail img{
    width: 100%;
}
.blog-category .blog-description {
    padding: 25px 0 0;
}
.blog-text {
    color: var(--secondary-light-color);
    margin: 12px 0;
    line-height: 24px;
    font-size: 16px;
}
.blog-comment,
.block-date {
    font-size: 16px;
    color: var(--secondary-light-color);
    margin: 0 5px 0 0;
    padding: 0 7px 0 0;
    display: inline-block;
}
.blog-comment i,
.block-date i{
    padding: 0 7px 0 0;
}
.blog-category .block-date {
    border-right: 1px solid var(--border-color);
}
.blog-category .blog-comment, 
.blog-category .block-date {
    font-size: 14px;
}
.blog-category.col-sm-6:nth-child(2n+1) {
    clear: left;
}

/*----------------------------------------------*/
/* article blog page */
/*----------------------------------------------*/
.article-container .image {
    position: relative;
}
.article-container .blog-block {
    margin-bottom: 0;
}
.article-container .caption-blog {
    padding: 20px 0 0 0;
}
.article-container .article-inner,
.article-container .shop-content  {
    padding: 20px;
    background: var(--secondary-color);
}
#content-blogs .thumbnails .thumbnail {
    border: unset;
    margin: 0;
    padding: 0;
}
.article-container .page-title {
    margin-bottom: 20px;
}
.article-container .shop-content > h3 {
    line-height: 20px;
    margin: 0 0 20px;
    font-size: 16px;
    border-radius: 5px;
    text-transform: uppercase;
}
.article-container #commnt_form > div > div:last-child .form-group {
    margin-bottom: 0;
}
.article-container #commnt_form.form-horizontal .form-group {
    margin-right: 0;
    margin-left: 0;
}
#post_comment #commnt_form.form-horizontal .control-label {
    text-align: left;
}
.comment_cust h4 {
    margin-bottom: 20px;
}
.commentlist ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}
.commentlist ul li:last-child {
    padding-bottom: 0;
}
.commentlist ul li {
    padding-bottom: 20px;
}
.comment_cust .comment-text .user_img {
    float: left;
    height: 60px;
    width: 60px;
    background-color: var(--secondary-color);
    text-align: center;
    color: var(--primary-color);
    border-radius: 50px;
}
.comment_cust .comment-text .user_img i {
    font-size: 26px;
    line-height: 60px;
}
.comment_cust .comment-desc {
    padding-left: 80px;
    line-height: 26px;
}
.comment_cust .comment-desc .name {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 16px;
}
.comment_cust .comment-desc .date {
    color: var(--secondary-light-color);
}
.comment-dis {
    color: var(--secondary-light-color);
    line-height: 22px;
}
.comment-text {
    padding: 15px;
    border: none;
    border-radius: 0;
    background: var(--background-color);
}
.singblog-description.blog-text {
    margin: 15px 0 0;
}
@media (max-width: 1199px) and (min-width: 992px) {
    .mblog .link_info {
        margin: 0 20px;
        padding: 20px;
        bottom: 20px;
    }
    .mblog .caption.blog-description:hover .link_info {
        bottom: 20px;
    }
}
@media (max-width: 1800px) {
    .mblog .box-content .page-title {
        width: fit-content;
    }
    .mblog .box-content .block_box {
        width: 87.5%;
    }
    .mblog .link_info {
        margin: 0 0 0 50px;
        padding: 0 30px 0 0;
    }
    .mblog .caption {
        margin-top: 90px;
    }
}
@media (max-width: 1599px) {
    .blog-category .blog-info,
    .blog-category .caption-blog {
        width: 100%;
    }
    .blog-category .blog-description {
        padding: 15px 0 0;
    }
}
@media (max-width: 1440px){
    .mblog {
        padding: 70px 0 40px 0;
    }
    .mblog .caption {
        width: 60%;
    }
    .mblog .box-content .block_box {
        width: 84.5%;
    }
    .mblog .page-title h3 {
        margin: 0 0 30px;
    }
}
@media (max-width: 1199px){
    .mblog .box-content .block_box {
        width: 89.5%;
    }
    .mblog .link_info {
        margin: 0 0 0 30px;
        padding: 0 20px 0 0;
    }
    .mblog .page-title h3 {
        font-size: 22px;
        margin: 0 0 20px;
    }
    .mblog .page-title .heading-desc {
        font-size: 26px;
    }
    .mblog .blog-text {
        margin: 10px 0 20px;
    }
    .mblog .blog-block .blog-content-title {
        font-size: 24px;
        margin: 10px 0 0;
    }
    .mblog .caption {
        width: 100%;
        margin-top: 30px;
    }
    .mblog .blogs-block .owl-dot + .owl-dot {
        margin-top: 25px;
    }
}
@media (max-width: 991px){
    .mblog {
        padding: 50px 0 30px 0;
    }
    .blog-block{
        margin-bottom: 20px;
    }
    .mblog .box-content {
        display: block;
    }
    .mblog .box-content .page-title {
        width: unset;
        transform: unset;
        margin: 0 0 20px;
        text-align: center;
    }
    .mblog .page-title h3 {
        font-size: 18px;
        margin: 0 0 15px;
    }
    .mblog .page-title .heading-desc {
        font-size: 22px;
    }
    .mblog .box-content .block_box {
        width: 100%;
    }
    .mblog .link_info {
        margin: 0 0 0 20px;
    }
    .mblog .block-date {
        font-size: 14px;
    }
    .mblog .blog-info .image {
        padding: 15px 0 0 15px;
    }
    .mblog .caption {
        margin: 30px 15px 0 0;
    }
    .blog-comment, .block-date {
        font-size: 14px;
    }
    .blog-text,
    .mblog .blog-text {
        margin: 8px 0 12px;
    }
    .blog-block .blog-content-title {
        font-size: 18px;
        margin: 10px 0 0;
    }
    .article-container .caption-blog {
        padding: 15px 0 0 0;
    }
    .singblog-description.blog-text{
        margin: 8px 0 0;
    }
    .blog-block h4,
    h3.article-page-title {
        margin: 10px 0 0;
        font-size: 16px;
    }
    .blog-read {
        font-size: 12px;
        padding: 4px 15px;
    }
    .blog-block .zoom-post {
        left: 15px;
        top: 5px;
    }
    .mblog .blog-block .zoom-post {
        right: 15px;
        top: 20px;
    }
    .blog-block .zoom-post a{
        height: 30px;
        width: 30px;
    }
    .blog-block .hover-zoom::before,
    .blog-block .hover-post:before{
        line-height: 30px;
    }
    .blog-block .zoom-post a::after {
        right: 15%;
    }
    .article-container .article-inner, 
    .article-container .shop-content {
        padding: 15px;
    }
    .article-container .shop-content > h3 {
        margin: 0 0 15px;
    }
    .mblog .blogs-block {
        display: block;
    }
    .mblog .owl-theme .owl-dots {
        display: block;
    }
    .mblog .blogs-block .owl-dot + .owl-dot {
        margin: 0 0 0 15px;
    }
}
@media (max-width: 767px){
    .mblog {
        padding: 30px 0;
    }
    .blog-category .caption.blog-description {
        padding-top: 15px;
    }
}
@media (max-width: 680px){
    .mblog::before {
        right: 0;
    }
    .mblog .caption {
        margin: 20px 0 0;
    }
    .mblog .box-content .blog-block {
        display: block;
    }
}
@media (max-width: 540px){
    .mblog .blog-block .blog-content-title {
        font-size: 18px;
        line-height: 20px;
    }
    .mblog .page-title .heading-desc {
        font-size: 22px;
    }
    .blog-comment, .block-date {
        margin: 0;
        padding: 0 3px 0 0;
    }
    .comment-text {
        padding: 10px;
    }
    .comment_cust .comment-desc {
        padding-left: 70px;
    }
}

/*----------------------------------------------*/
/* newsletter block */
/*----------------------------------------------*/
.news {
    position: relative;
    z-index: 1;
}
.newsletter-form {
  /*  text-align: center;
    background: var(--background-color);*/
}
/*.subscribe-form {
    position: relative;
    max-width: 500px;
    min-width: 500px;
    width: 100%;
    margin: auto;
}*/
/*.news .title-text {
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 38px;
    color: var(--primary-color);
    text-transform: capitalize;
}*/
.news .news-description {
    padding: 0 0 35px;
    line-height: 24px;
    font-size: 16px;
    color: var(--secondary-light-color);
}
/*.subscribe-form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--primary-color);
}*/
.subscribe-form i {
    font-size: 20px;
    color: var(--secondary-light-color);
    line-height: 40px;
}
.subscribe-form #newsletter_usr_email{
    height: 40px;
    padding: 5px 15px;
    border: none;
    text-align: left;
    background: transparent;
    color: var(--secondary-light-color);
    border-radius: 0;
    background: transparent;
    color: var(--secondary-light-color);
    border-bottom: 1px solid #3b3b3b;
}
.subscribe-form #newsletter_usr_email::placeholder{
    color: var(--secondary-light-color);
}
/*.news .subscribe-btn {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--primary-color);
    background: transparent;
    padding: 10px 0 6px;
    border: none;
    overflow: visible;
}*/
.news .subscribe-btn:before {
    content: none;
}
@media (max-width: 1440px) {
    .news .title-text {
        margin-bottom: 25px;
    }
}
@media (max-width: 991px){
    .news .title-text {
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 20px;
    }
    .news .subscribe-btn{
        font-size: 12px;
    }
    .news .news-description {
        padding: 0 0 20px;
    }
    .subscribe-form i {
        font-size: 16px;
    }
}
@media (max-width: 540px){
    .subscribe-form {
        max-width: unset;
        min-width: unset;
    }
    .news .title-text {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    .news .news-description {
        padding: 0 0 15px;
        line-height: 20px;
        font-size: 14px;
    }
}

/*----------------------------------------------*/
/* footer start */
/*----------------------------------------------*/
footer{
    background: var(--secondary-color);
}
.footer-top{
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-light-color);
}
footer h5,
footer h4 {
    text-transform: uppercase;
    font-size: 18px;
    margin: -2px 0 17px;
    position: relative;
    font-weight: 500;
    color: var(--primary-color);
}
footer .footer-content a{
    padding: 8px 0;
    position: relative;
    display: inline-block;
    color: var(--secondary-light-color);
}
footer .footer-content a::after{
    content: "";
    height: 1px;
    width: 0;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    bottom: 8px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
footer .footer-content a:hover::after{
    width: 100%;
}
footer a:hover,
footer a:focus {
    color: var(--primary-color);
}
.footer-desc {
    line-height: 24px;
    margin: 27px 0;
}

/* footer right */
.position-footer-right h5 {
    margin: -2px 0 20px;
}
.position-footer-right li .contact_site a {
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    display: initial;    
    color: var(--secondary-light-color);
}
.contact_title {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin-right: 5px;
    color: var(--secondary-color);
}
.position-footer-right li > div {
    display: flex;
    align-items: center;
    padding: 8px 0;
    line-height: 20px;
    font-size: 16px;
}
.position-footer-right li > div i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary-hover-color);
    color: var(--secondary-color);
}
.contact_site {
    color: var(--secondary-light-color);
    margin-left: 15px;
}

/* footer bottom*/
.footer_bottom {
    padding: 28px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}
footer .footer_bottom p{
    font-weight: 500;
    margin: 0 0 17px;
    color: var(--secondary-light-color);
    text-align: center;
}
footer .footer_bottom p a{
    color: var(--secondary-light-color);
}
.toggled.active .fa-chevron-down:before {
    content: "\f077";
}

/* social media*/
.social-media > a {
    display: inline-block;
}
.social-media a i {
    height: 34px;
    width: 34px;
    line-height: 34px;
    border-radius: 50px;
    color: var(--secondary-color);
    text-align: center;
}
.social-media a + a {
    margin: 0 0 0 7px;
}
.social-media a .fa-facebook {
    background: #3b5998;
}
.social-media a .fa-twitter {
    background: #00acee;
}
.social-media a .fa-youtube-play {
    background: #c4302b;
}
.social-media a .fa-google-plus {
    background: #db3236;
}
.social-media a .fa-pinterest-p {
    background: #c8232c;
}
@media (min-width: 992px){
    .footer-top > div {
        padding: 27px 28px 27px 28px;
    }
    /*.footer-top {
        display: flex;
    } */ 
}
@media (max-width: 1199px) and (min-width: 992px) {
    .footer-top > div {
        padding: 50px 15px 41px 30px;
    }
}
@media (max-width: 1440px) {
    /*.footer-top > div {
        padding-left: 15px;
    }*/
}
@media (max-width: 1199px) {
    .social-media a + a {
        margin: 0 0 0 3px;
    }
    .social-media a i {
        height: 30px;
        width: 30px;
        line-height: 30px;
    }
    .footer_bottom {
        padding: 20px 0;
    }
    footer .footer_bottom p {
        margin: 0 0 15px;
    }
}
@media (max-width: 991px) {
    .footer-top {
        font-size: 14px;
        padding: 15px 0;
    }    
    .social-media .list-unstyled {
        display: block!important;
        text-align: center;
    }   
    footer h5,
    .position-footer-right h5 {
        margin: 0 0 10px;
        font-size: 14px;
    }
    .position-footer-right li > div {
        font-size: 14px;
    }
    .contact_site {
        margin-left: 10px;
    }
    .footer-top .col-sm-3,
    .footer-top .col-sm-2 {
        width: 100%;
        float: unset;
        margin: 15px 0;
    }
    footer .col-sm-2 a{
        padding: 4px 0;
    }
    .footer-desc{
        margin: 12px 0 7px;
    }
    .footer_aboutus,
    .social-media {
        text-align: center;
    }
    .footer-top > div > div {
        padding-left: 0;
    }
}
@media (max-width: 767px){
    .footer_bottom {
        padding: 15px 0;
    }
    .footer-top {
        padding: 10px 0;
    }
}

/*----------------------------------------------*/
/* service */
/*----------------------------------------------*/
.service-box {
    overflow: hidden;
    margin-left: 100px;
}
.service-item:nth-child(3),
.service-item:nth-child(4),.service-item:nth-child(5), .service-item:nth-child(6) {
    margin-top: 20px;
}
.service {
    display: flex;
    align-items: center;
    text-align: left;
}
.service-icon {
    position: relative;
    font-size: 35px;
    margin: 0 15px 0 0;
}
.service .service-icon i {
    color: var(--secondary-color);
    padding: 22.5px;
    display: inline-block;
}
.service-item .service-icon:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: url(../image/mahardhi/shape.png) no-repeat transparent;
    margin: auto;
    z-index: -1;
    background-size: cover;
}
.service:hover .service-icon i {
    -webkit-animation: tada 1s linear infinite;
    -moz-animation: tada 1s linear infinite;
    -ms-animation: tada 1s linear infinite;
    animation: tada 1s linear infinite;
}
.service .promo-title {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    font-weight: 600;
}
.service .promo-desc {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-light-color);
}
@media (max-width: 1800px) {
    .service-box {
        margin-left: 80px;
    }
}
@media (max-width: 1440px) {
    .service-box {
        margin-left: 0;
    }
    .service-box .service-item {
        width: 25%;
    }
    .service-box .col-lg-6:nth-child(2n+1) {
        clear: unset;
    }
    .service-item:nth-child(3),
    .service-item:nth-child(4) {
        margin-top: 0;
    }
    .service {
        flex-direction: column;
        text-align: center;
    }
    .service-icon {
        margin: 0 0 15px;
    }
    .service .promo-title {
        font-size: 16px;
    }
    .service .promo-desc {
        font-size: 14px;
    }
}
@media (max-width: 1199px) {
    .service .promo-title {
        font-size: 14px;
        margin: 0 0 3px;
    }
    .service .promo-desc {
        font-size: 12px;
    }
}
@media (max-width: 991px) {
    .service-item{
        padding: 0 5px;
    }
    .service-box .row{
        margin: 0 -5px;
    }
}
@media (max-width: 767px) {
    .service-box .service-item {
        width: 50%;
    }
    .service-item:nth-child(3),
    .service-item:nth-child(4) {
        margin-top: 10px;
    }
    .service-icon {
        margin: 0 0 10px 0;
    }
    .service .service-icon i {
        font-size: 26px;
        padding: 20px;
    }
}
@media (max-width: 480px) {
    .service .promo-title {
        font-size: 12px;
        margin: 0;
    }
    .service .promo-desc {
        font-size: 10px;
    }
}

/*----------------------------------------------*/
/* pagetitle */
/*----------------------------------------------*/
.page_title {
    font-size: 16px;
    text-transform: uppercase;
    margin: 0 0 15px;
    display: block;
    vertical-align: top;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 20px;
}
@media (max-width: 991px) {
    .page_title {
        font-size: 14px;
        margin: 0 0 10px;
    }
}

/*----------------------------------------------*/
/* breadcrumb */
/*----------------------------------------------*/
.breadcrumb-back {
    background: var(--secondary-color);
    margin: 0 0 50px 0;
    padding: 20px 0;
}
.breadcrumb {
    padding: 0;
    border: none;
    background: transparent;
    margin: 0;
    font-size: 16px;
    text-transform: capitalize;
    text-align: center;
}
.breadcrumb > li {
    position: relative;
}
.breadcrumb > li .fa-home {
    font-size: 15px;
}
.breadcrumb li a,
.breadcrumb a{
    font-weight: 500;
    color: var(--secondary-light-color);
}
.breadcrumb li:last-child a,
.breadcrumb a:hover{
    color: var(--primary-color);
}
.breadcrumb > li + li:before {
    content: "/";
    font-family: FontAwesome;
    color: var(--primary-color);
    padding: 0px 8px 0px 5px;
    font-size: 16px;
    line-height: 19px;
}
@media (max-width: 1440px){
    .breadcrumb-back{
        margin: 0 0 30px 0;
    }
}
@media (max-width: 1199px){
    .breadcrumb-back {
        padding: 15px 0;
    }
}
@media (max-width: 991px){
    .breadcrumb-back{
        margin: 0 0 20px 0;
        padding: 15px 0;
    }
    .breadcrumb{
        font-size: 14px;
    }
}

/*----------------------------------------------*/
/* column-left-right */
/*----------------------------------------------*/
#column-left > div,
#column-right > div {
    margin: 50px 0 0;
    padding: 20px;
    box-shadow: none;
    width: auto;
    background: var(--secondary-color);
    border: none;
}
#column-left > div.swiper-viewport,
#column-right > div.swiper-viewport{
    border: none;
    padding: 0;
}
#column-left > div:first-child,
#column-right > div:first-child{
    margin-top: 0;
}
#column-left h3,
#column-right h3,
#column-left .box-content h3,
#column-right .box-content h3 {
    display: block;
    margin: -3px 0 0 0;
    padding: 0 0 14px;
    font-size: 16px;
    text-align: left;
    text-transform: uppercase;
    position: relative;
    color: var(--primary-color);
    background: transparent;
    font-weight: 500;
    line-height: 20px;
    border: none;
    border-bottom: 1px solid var(--border-color);
}
a.list-group-item.active,
a.list-group-item.active:focus,
a.list-group-item.active:hover,
a.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus,
button.list-group-item:hover {
    color: var(--primary-color);
    text-decoration: none;
    background-color: transparent;
}
.filter_box,
#column-left .block_box,
#column-right .block_box,
.category-list #selectMe-desk,
.account-content .list-unstyled,
.sidebar .list-unstyled{
    margin: 25px 0 0 0;
}
#column-left .box .container,
#column-right .box .container{
    width: auto;
    padding: 0;
}
.category-list .list-group-item,
.sidebar li, .account-content .list-group a{
    border: none;
    border-radius: 0;
    margin: 0;
    background: transparent;
    padding: 8px 0;
    text-transform: capitalize;
    color: var(--secondary-light-color);
    font-size: 14px;
}
.category-list .list-group-item {
    padding: 5px 20px 6px 0;
}
.category-list .child-categories .list-group-item {
    padding: 3px 20px 3px 0;
}
.category-list ul#selectMe-desk > li:first-child > a.list-group-item,
.account-content .list-group ul > li:first-child a,
.sidebar li:first-child {
    padding-top: 0;
    margin-top: -4px;
}
.category-list .box-category > ul>li:last-child>a.list-group-item, 
.account-content .list-group ul > li:last-child a,
.sidebar li:last-child {
    padding-bottom: 0;
    margin-bottom: -4px;
}
.sidebar li a{
    color: var(--secondary-light-color);
}
.category-list .has-more-category .toggled {
    position: absolute;
    right: 0;
    padding: 0 5px;
}
.child-categories { display: none; }
.main-item.active .toggled > .fa-plus:before,
.toggle-menu.active > .fa-plus:before {
    content: "\f068";
}

/*sidebar category*/
.box-category .list-unstyled.childs_1 {
    display: none;
}
.parent li .toggled span {
    color: var(--primary-color);
    font-size: 12px;
    position: absolute;
    right: 5px;
    padding: 0 5px;
}
.parent .active .open-menu::after {
    color: var(--primary-color);
    content: "\f068";
    font-family: "FontAwesome";
    font-size: 14px;
}
.parent .open-menu::after {
    color: var(--primary-color);
    content: "\f067";
    font-family: "FontAwesome";
    font-size: 14px;
}

/*REFINE SEARCH*/
.list-group-filter {
    margin-bottom: 27px;
}
.panel-default.filter {
    border: none;
}
.panel {
    border-radius: 0;
    box-shadow: none;
}
.filter_box .list-group a {
    color: var(--primary-color);
    text-transform: capitalize;
    margin: -4px 0 13px;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
}
.filter_box .checkbox,
.filter_box .checkbox .radio {
    margin: 10px 0;
    color: var(--secondary-light-color);
}
.filter_box .list-group-item {
    border: none;
    padding: 0px;
    background: transparent;
}
.filter_box .list-group-items + .list-group-items {
    margin: 28px 0 0;
}
.checkbox label, .radio label {
    text-transform: capitalize;
}
#filter .panel-footer {
    text-align: left;
    padding: 0;
    background: transparent;
}

/*banner*/
#column-left .swiper-slide img,
#column-right .swiper-slide img{
    width: 100%;
}

/*INFORMATION*/
.sidebar li a:hover,
.account-content .list-group a:hover{
    color: var(--primary-color);
}
.account-content .list-group{
    margin: 0;
}

/*product*/
#column-left .product-layout:last-child .product-thumb,
#column-right .product-layout:last-child .product-thumb {
    margin: 0;
}
#column-left .product-layout,
#column-right .product-layout{
    width: 100%;
    padding: 0;
}
#column-left .product-thumb,
#column-right .product-thumb{
    padding: 0;
    border: none;
    box-shadow: none;
    background: var(--secondary-color);
}
#column-left .product-thumb > .image,
#column-right .product-thumb > .image {
    float: left;
    width: 80px;
    margin-right: 15px;
    border: none;
}
#column-left .product-thumb > .thumb-description,
#column-right .product-thumb > .thumb-description {
    float: left;
    width: 64.7%;
    border: none;
    margin: 0;
}
#column-left .sale-text,
#column-right .sale-text,
#column-left .product-thumb .image .price, 
#column-right .product-thumb .image .price,
#column-left .product-thumb .button-group,
#column-right .product-thumb .button-group,
#column-left .product-thumb .addcart,
#column-right .product-thumb .addcart,
#column-left .product-thumb .product-btn-quantity,
#column-right .product-thumb .product-btn-quantity{
    display: none;
}
#column-left .product-thumb .caption,
#column-right .product-thumb .caption {
    padding: 0;
    text-align: left;
    background: transparent;
}
#column-left .product-thumb .product-title a,
#column-right .product-thumb .product-title a {
    font-size: 16px;
    margin: 0 0 9px;
}
#column-left .product-thumb .price-new,
#column-right .product-thumb .price-new {
    color: var(--primary-color);    
    padding: 0;
    background: unset;
}
#column-left .product-thumb .price-old,
#column-right .product-thumb .price-old {
    font-size: 14px;
}
.product-thumb .side-rating {
    display: none;
}
#column-left .product-thumb .rating,
#column-right .product-thumb .rating {
    display: none;
}
#column-left .product-thumb .rating.side-rating,
#column-right .product-thumb .rating.side-rating {
    float: unset;
    display: block;
    margin: 8px 0 0 0;
    opacity: 1;
    visibility: visible;
    position: unset;
}
@media (min-width: 1200px){
    #column-left,
    #column-right {
        width: 20%;
    }
    #content.col-sm-9 {
        width: 80%;
    }
}
@media (min-width: 1601px) and (max-width: 1800px){
    #column-left .product-thumb > .thumb-description,
    #column-right .product-thumb > .thumb-description {
        width: 63.5%;
    }
    #column-left .product-thumb > .image,
    #column-right .product-thumb > .image{
        width: 75px;
        margin-right: 10px;
    }
}
@media (min-width: 1441px) and (max-width: 1600px){
    #column-left .product-thumb > .thumb-description,
    #column-right .product-thumb > .thumb-description {
        width: 60.3%;
    }
    #column-left .product-thumb > .image,
    #column-right .product-thumb > .image{
        width: 70px;
        margin-right: 10px;
    }
}
@media (min-width: 1200px) and (max-width: 1440px){
    #column-left .product-thumb > .thumb-description,
    #column-right .product-thumb > .thumb-description {
        width: 53.9%;
    }
    #column-left .product-thumb > .image,
    #column-right .product-thumb > .image{
        width: 70px;
        margin-right: 10px;
    }
}
@media (min-width: 992px) and (max-width: 1199px){
    #column-left .product-thumb > .image,
    #column-right .product-thumb > .image{
        width: 60px;
        margin-right: 5px;
    }
    #column-left .product-thumb > .thumb-description,
    #column-right .product-thumb > .thumb-description {
        width: 63.4%;
    }
    #column-left .product-thumb .price,
    #column-right .product-thumb .price{
        margin: 4px 0 0 0;
        font-size: 14px;
    }
    #column-left .product-thumb .rating,
    #column-right .product-thumb .rating{
        margin: 2px 0 0 0;
    }
}
@media only screen and (max-width: 1440px){
    .filter_box,
    #column-left .block_box,
    #column-right .block_box,
    .category-list #selectMe-desk,
    .account-content .list-unstyled,
    .sidebar .list-unstyled {
        margin: 15px 0 0 0;
    }
    #column-left > div,
    #column-right > div {
        margin: 30px 0 0;
        padding: 15px 10px;
    }
    #column-left .product-thumb .product-title a, #column-right .product-thumb .product-title a {
        font-size: 14px;
    }
    #column-left .product-thumb .product-title,
    #column-right .product-thumb .product-title {
        margin: 0 0 6px;
    }
    #column-left .product-thumb .rating.side-rating, #column-right .product-thumb .rating.side-rating {
        margin: 4px 0 0 0;
    }
   
}
@media only screen and (max-width: 1199px){
    .filter_box,
    #column-left .block_box,
    #column-right .block_box,
    .category-list #selectMe-desk,
    .account-content .list-unstyled,
    .sidebar .list-unstyled{
        margin: 20px 0 0 0;
    }
    .list-group-filter {
        margin-bottom: 15px;
    }
     #column-left .product-thumb .product-title a,
    #column-right .product-thumb .product-title a {
        font-size: 14px;
    }
}
@media only screen and (max-width: 991px){
    #column-left .product-thumb > .thumb-description,
    #column-right .product-thumb > .thumb-description{
        width: 63%;
    }
    .filter_box,
    #column-left .block_box,
    #column-right .block_box,
    .category-list #selectMe-desk,
    .account-content .list-unstyled,
    .sidebar .list-unstyled{
        margin: 15px 0 0 0;
    }
    .toggled .toggle-open {
        position: absolute;
        right: 0;
    }
    #selectMe-desk {
        display: none;
    }
    #column-left .swiper-viewport,
    #column-right .swiper-viewport {
        display: none;
    }
    #column-left > div:first-child,
    #column-right > div:first-child{
        margin: 20px 0 0;
    }
    #column-left > div,
    #column-right > div{
        margin: 15px 0 0;
        padding: 10px 15px;
    }
    #column-left h3,
    #column-right h3,
    #column-left .box-content h3,
    #column-right .box-content h3 {
        font-size: 14px;
        margin: 0;
        padding: 0;
        border: none;
    }
    .filter_box .list-group a {
        margin: 0 0 10px;
    }
}

/*----------------------------------------------*/
/* category page */
/*----------------------------------------------*/
.category-block {
    padding: 20px;
    margin: 0 0 28px;
    background: var(--secondary-color);
}
.cat-banner {
    border: none;
    padding:0;
    background: transparent;
    border-radius: 0;
    margin: 0 0 14px;
}
.cat-description p {
    margin: 0;
    color: var(--secondary-light-color);
    line-height: 24px;
}
.cat_info {
    margin: 0 0 30px;
    padding: 9px 20px;
    background: var(--secondary-color);
}
.refine-search {
    margin: 0 0 20px;
}
#content .refine-text {
    font-size: 16px;
    margin: 0 0 12px;
    font-weight: 500;
}
.cat-name {
    padding: 0;
    margin: 0;
    text-transform: capitalize;
}
.cat-name li {
    display: inline-block;
}
.cat-name li a {
    border-radius: 0;
    background: transparent;
    color: var(--secondary-light-color);
    padding: 6px 20px;
    display: inline-block;
    margin: 0 6px 10px 0;
    border: 1px solid var(--border-color);
}
.cat-name li a:hover{
    color: var(--secondary-color);
    background: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
}
#list-view.btn-default i,
#grid-view.btn-default i{
    font-size: 18px;
    display: block;
}
#list-view.btn-default,
#grid-view.btn-default {
    height: 40px;
    width: 40px;
    text-align: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    box-shadow: none;
}
#grid-view.btn-default.active,
#list-view.btn-default.active,
#grid-view.btn-default:hover,
#list-view.btn-default:hover {
    background: var(--primary-hover-color);
    color: var(--secondary-color);
}
#grid-view.btn-default {
    margin: 0 10px 0 0;
}
#compare-total.btn.btn-link {
    text-decoration: none;
    outline: none;
    padding: 8px 0;
    border: none;
    text-transform: capitalize;
    font-weight: 400;
    color: var(--primary-color);
}
.cat-pagination-right {
    text-align: right;
}
.cat-pagination-right > div {
    display: inline-block;
    vertical-align: top;
}
.cat-pagination-right .cat-show {
    padding-left: 20px;
}
.text-right.show-text {
    padding: 0px 5px;
}
.text-right.show-text,
.text-right.show-select{
    width: auto;
    float: left;
}
.text_limit,
.text_sort{
    margin: 8px 0;
}
.select-filter-sort,
.select-filter-show {
    position: relative;
}
.cat-pagination-right .form-control {
    padding: 4px 25px 4px 10px;
    margin: 0;
    height: 40px;
    border-radius: 0;
    background: transparent;
    border: 1px solid var(--border-color);
}
select.form-control,
.form-control {
    appearance: none;
    -o-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.form-control:focus{
    border-color: var(--border-color);
}
.select-filter-show::after,
.select-filter-sort::after {
    font-family: 'fontawesome';
    content: '\f0dd';
    font-size: 16px;
    position: absolute;
    right: 10px;
    top: 4px;
    pointer-events: none;
    color: var(--primary-color);
}
.product-grid .button-group.button-list,
.product-grid .rating.rating-list {
    display: none;
}
.product-list .button-group,
.product-list .rating {
    display: none;
}
.product-list .button-group.button-list,
.product-list .rating.rating-list {
    display: block;
    position: unset;
    opacity: 1;
    visibility: visible;
    margin: 12px 0 0 0;
}
.product-list .button-group.button-list {
    margin: 16px 0 0 0;
}
.product-list .button-group.button-list button {
    transform: unset;
}
.product-list .button-group.button-list .addcart-btn {
    width: unset;
    height: unset;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 11px 29px;
    text-transform: uppercase;
}
.product-grid .description,
.product-grid .pro_description {
    display: none;
}
.product-list .product-thumb,
.product-list .thumb-description{
    overflow: hidden;
    background: unset;
}
.rating .fa-stack,
#tab-review .fa-stack{
    font-size: 8px;
}
.rating .fa-star-o,
#tab-review .fa-star-o{
    color: var(--primary-hover-color);
}
.rating .fa-star,
.rating .fa-star + .fa-star-o,
#tab-review .fa-star + .fa-star-o,
#tab-review .fa-star{
    color: var(--primary-hover-color);
}
@media (min-width: 992px) {
    .product-grid .product-thumb .caption .price, {
        display: none;
    }
}
@media (min-width: 681px) {
    .product-list .product-thumb .image {
        float: left;
        margin-right: 30px;
    }
}
@media (max-width: 1440px){
    .product-list .button-group.button-list .addcart-btn {
        padding: 9px 29px;
    }
}
@media (max-width: 1199px){
    .cat-pagination-right .cat-show {
        padding-left: 10px;
    }
    .cat_info {
        padding: 9px 10px;
    }
    #grid-view.btn-default {
        margin: 0px 5px 0 0;
    }
    #list-view.btn-default, #grid-view.btn-default {
        height: 36px;
        width: 36px;
    }
}
@media (max-width: 991px){
    .category-block {
        padding: 15px;
        margin: 0 0 15px;
    }
    .product-list .product-thumb .btn-list{
        margin: 12px 0 10px;
    }
    .refine-search {
        margin: 0 0 10px;
    }
    .cat-name li a {
        font-size: 13px;
        padding: 3px 10px;
    }
    .cat_info {
        margin: 0 0 20px;
        padding: 9px 15px;
    }
    .product-list .product-thumb .image{
        margin-right: 20px;
    }
    .product-list .button-group.button-list .addcart-btn {
        padding: 6px 20px;
    }
    .product-list .product-thumb .button-group button:after {
        width: 150px;
        height: 150px;
        right: 50%;
    }
    .product-list .product-thumb .button-group button.addcart-btn:after {
        right: 85%;
    }
    .product-list .product-thumb .button-group button {
        height: 34px;
        width: 34px;
    }
    #list-view.btn-default i,
    #grid-view.btn-default i{
        font-size: 16px;
    }
    #list-view.btn-default,
    #grid-view.btn-default {
        height: 34px;
        width: 34px;
    }
    .cat-pagination-right .form-control {
        height: 34px;
    }
}
@media (max-width: 767px){
    .cat-pagination-right{
        text-align: left;
        margin: 5px 0 0;
        padding: 0 10px;
    }
    .cat_list_gird {
        padding: 0 10px;
    }
}
@media (max-width: 680px) {
    .product-list .product-thumb .image{
        display: inline-block;
        margin: 0;
    }
    .com-total {
        padding: 0;
    }
}
@media (max-width: 480px){
    .cat-pagination-right > * {
        display: inline-block;
        vertical-align: top;
        width: 100%;
    }
    .cat-pagination-right .cat-show{
        padding: 5px 0 0 0;
    }
    .cat-pagination-right{
        display: block;
        text-align: left;
    }
    #compare-total.btn.btn-link{
        font-size: 13px;
    }
}

/*----------------------------------------------*/
/* pagination css */
/*----------------------------------------------*/
.pro_pagination {
    clear: both;
    padding: 9px 20px;
    background: var(--secondary-color);
}
.pro_pagination .text-left {
    margin: 10px 0;
    float: left;
}
.pagination {
    padding: 0;
    margin: 0;
    vertical-align: top;
}
.pro_pagination .pagination > li.active > span,
.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    color: var(--secondary-color);
    background: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
    cursor: pointer;
    z-index: 2;
    border-radius: 0;
}
.pagination>li>a:last-child {
    border-radius: 0;
}
.pagination>li>a,
.pagination>li>span {
    color: var(--secondary-light-color);
    background-color: transparent;
    float: left;
    margin-left: 10px;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    padding: 0;
    position: relative;
    text-decoration: none;
    border: 1px solid var(--border-color);
    font-size: 14px;
}
@media (max-width: 991px){
    .pro_pagination .text-left,
    .pro_pagination .text-right{
        width: 100%;
        float: unset;
        text-align: center;
        clear: both;
    }
    .pro_pagination .text-right {
        padding-top: 7px;
    }
    .pro_pagination .text-left{
        margin: 0;
    }
    .pagination>li>a,
    .pagination>li>span{
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    .pagination>li>a,
    .pagination>li>span{
        width: 30px;
        height: 30px;
        line-height: 28px;
    }
}

.pagination>.active>span
{
    background-color: #fec146 !important;
    border-color: #fec146 !important;
}

/*----------------------------------------------*/
/* product page */
/*----------------------------------------------*/
.thumbnails {
    overflow: auto;
    clear: both;
    list-style: none;
    padding: 0;
    margin: 0;
}
a.thumbnail {
    padding: 0;
    border: none;
    margin: 0;
}
.product-img .thumbnails {
    display: flex;
    align-items: center;
}
.pro-image img {
    width: 100%;
}
#product-page .product-additional {
    text-align: center;
    position: relative;
    max-width: 80px;
    width: 100%;
    float: left;
}
#product-page .pro-image {
    margin: 0 0 0 30px;
    float: left;
}
#additional-carousel .image-additional {
    margin: 10px 0;
}
#quick-carousel.owl-carousel.owl-theme .owl-nav{
    position: unset;
    margin: 0;
}
.quickview-container .pro-image {
    margin-bottom: 20px;
}
#quick-carousel .image-additional a {
    margin: 0 10px;
    display: block;
}
#quick-carousel {
    max-width: 440px;
    margin: auto;
    padding: 0 20px;
}
#additional-carousel .owl-nav div,
#quick-carousel .owl-nav div {
    top: 0;
    bottom: 0;
    margin: auto;
    height: 30px;
    border: none;
    width: 30px;
    background: transparent;
    position: absolute;
    box-shadow: none;
}
#quick-carousel .owl-nav .owl-prev,
#additional-carousel .owl-nav .owl-prev{
    left: 0;
    right: auto;
}
#quick-carousel .owl-nav .owl-next,
#additional-carousel .owl-nav .owl-next{
    right: 0;
    left: auto;
}
#additional-carousel .owl-nav div::before,
#additional-carousel .owl-nav div::after,
#quick-carousel .owl-nav div::before,
#quick-carousel .owl-nav div::after{
    display: none;
}
#additional-carousel.owl-carousel.owl-theme .owl-nav .fa,
#quick-carousel.owl-carousel.owl-theme .owl-nav .fa{
    font-size: 22px;
    line-height: 30px;
}
.right_info h1, .quick-product-right h1 {
    font-size: 24px;
    text-transform: capitalize;
    margin: 0 0 15px;
    font-weight: 500;
    color: var(--primary-color);
}
.rating .product-rating {
    float: left;
    margin-right: 20px;
}
.rating .write-review {
    padding: 0 0 0 15px;
    margin: 0 0 0 15px;
    position: relative;
}
.pro-deatil .rating .write-review:before {
    content: "";
    background: var(--border-color);
    height: 14px;
    width: 1px;
    position: absolute;
    left: 0;
    margin: auto;
    top: 0;
    bottom: 0;
}
.rating .fa-pencil {
    padding-right: 5px;
    color: var(--primary-color);
}
.right_info .disc {
    color: var(--primary-color);
    margin-right: 5px;
    line-height: 27px;
    min-width: 125px;
    display: inline-block;
}
.right_info .disc1 {
    color: var(--secondary-light-color);
    margin-right: 10px;
}
.pro_price {
    font-size: 24px;
    display: inline-block;
    font-weight: 500;
}
.pro_oldprice {
    color: var(--secondary-light-color);
    margin-left: 10px;
    font-size: 16px;
}
.right_info .tax {
    margin: 7px 0 5px;
    color: var(--secondary-light-color);
}
.product-options h3 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
}
.right_info .control-label {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    text-transform: capitalize;
    margin-bottom: 0;
}
.right_info .checkbox,
.right_info .radio {
    margin-top: 0;
}
.product-options .alert {
    margin-top: 15px;
}
.product-btn-quantity .minus-plus{
    margin: 0 20px 0 0;
    display: inline-flex;
    border: 1px solid var(--border-color);
}
#product .minus-plus > * {
    text-align: center;
    border: none;
/*    background: transparent;*/
    padding: 0 5px;
    font-size: 13px;
    width: 37px;
    height: 38px;
}
.product-btn-quantity #input-quantity{
    width: 44px;
}
.right_info .control-label.qty {
    margin: 0 0 10px 0;
    display: block;
}
#button-cart,
#quick-cart{
    border-color: var(--primary-color);
    margin: 0 10px 0 0;
}
#button-cart:hover,
#quick-cart:hover {
    border-color: var(--primary-hover-color);
}
button.pro_wish,
button.pro_comper{
    height: 40px;
    width: 40px;
    line-height: 40px;
    margin: 0 5px 0 0;
    padding: 0;
    border: 1px solid var(--primary-color);
    text-align: center;
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
button.pro_wish i,
button.pro_comper i {
    font-size: 16px;
    line-height: 40px;
}
button.pro_wish:hover,
button.pro_comper:hover{
    background: var(--primary-color);
    color: var(--secondary-color);
}
#product .product-btn-quantity {
    float: left;    
}
.tab-content #tab-description {
    font-size: 15px;
}
#product-page #tab-description ul:last-child,
#product-page #tab-specification .table {
    margin: 0;
    border-color: var(--border-color);
}
.propage-tab h2 {
    font-size: 18px;
    margin: 25px 0 15px 0;
}
#form-review.form-horizontal .control-label {
    padding: 0;
}
.quickview-wrapper-inner.container {
    width: auto;
}
#button-upload222 {
    margin-left: 10px;
}
.related-products-block{
    clear: both;
    padding-top: 100px;
}
.propage-tab {
    margin-top: 100px;
    padding: 20px;
    border: 1px solid var(--border-color);
    background: var(--secondary-color);
}
#product-page .nav-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}
#product-page .tab-content{
    padding: 28px 0 0;
    color: var(--secondary-light-color);
}
#product-page .tab-content strong {
    font-weight: 500;
    text-transform: capitalize;
}
@media (min-width: 768px) {
    .pro-deatil .product-img {
        position: sticky;
        top: 10px;
    }
}
@media (max-width: 1440px) {
    .related-products-block {
        padding-top: 70px;
    }
    .propage-tab {
        margin-top: 70px;
    }
}
@media (max-width: 1199px) {
    #additional-carousel {
        max-width: 410px;
    }
    .rating .product-rating {
        width: 100%;
        margin: 0 0 15px 0;
    }
    .propage-tab {
        margin-top: 60px;
    }
    .related-products-block{
        padding-top: 40px;
    }
    .right_info h1,
    .quick-product-right h1 {
        margin: 0 0 8px;
        font-size: 18px;
    }
    .pro_price {
        font-size: 20px;
    }
    .related-products-block {
        padding-top: 60px;
    }
}
@media (max-width: 991px) {
    #additional-carousel {
        max-width: 290px;
    }
    .propage-tab {
        margin-top: 50px;
        padding: 20px 15px;
    }
    #product-page .pro-image {
        margin: 0 0 0 15px;
    }
    button.pro_wish,
    button.pro_comper {
        width: 34px;
        height: 34px;
        line-height: 34px;
    }
    button.pro_wish i, button.pro_comper i {
        font-size: 14px;
        line-height: 34px;
    }
    #product .product-btn-quantity {
        float: unset;
        margin-bottom: 15px;
    }
    #product-page .tab-content {
        padding: 15px 0 0;
    }
    .related-products-block {
        padding-top: 50px;
    }   
} 
@media (max-width: 767px) {
    .product-img {
        width: 480px;
        margin: 0 auto;
    }
    .related-products-block {
        padding-top: 30px;
    }
    .right_info,
    .propage-tab {
        margin-top: 30px;
    }
}
@media (max-width: 540px) {
    .product-img {
        width: auto;
    }    
}
@media only screen and (max-width: 480px) {   
    #product-page .nav-tabs li {
        margin: 0 8px;
    }
}

/*----------------------------------------------*/
/* Contact Us */
/*----------------------------------------------*/
.information-contact .contact-left .title i.fa {
    background: var(--background-color);
    font-size: 16px;
    height: 34px;
    line-height: 34px;
    margin: 0px 10px 10px 0;
    text-align: center;
    width: 34px;
}
.information-contact .contact-left .title{
    font-size: 16px;
    color: var(--primary-color);
}
.content-address{
    margin-bottom: 15px;
}
.contact-left .btn-info i {
    font-size: 16px;
}
.content-details {
    padding: 15px;
    border: 1px solid var(--border-color);
    color: var(--secondary-light-color);
    border-radius: 0;
}
.contact-left .content-details > div{
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}
.contact-left .content-details .comment-info{
    border: none;
    padding:0;
    margin: 0px;
}
#information-contact .panel-body .col-sm-3 {
    float: left;
    width: 100%;
    padding: 15px;
    line-height: 25px;
}
.contact-title {
    margin: 0 0 20px 0;
    font-size: 20px;
}
.location-info .btn-info {
    padding: 8px 20px;
}
@media(max-width: 991px){
    .contact-left{
        margin-bottom: 30px;
    }
}

/*----------------------------------------------*/
/* checkout-cart */
/*----------------------------------------------*/
#accordion .panel-heading h4.panel-title a i.fa-caret-down {
    float: right;
}
#accordion.panel-group .panel{
    border-radius: 4px;
}
#accordion.panel-group .panel+.panel {
    margin-top: 15px;
}
#accordion.panel-group .panel-default>.panel-heading{
    background: var(--secondary-color);
    padding: 10px 15px;
    color: var(--primary-color);
    border: none;
}
#accordion.panel-group .panel-default>.panel-heading .panel-title {
    line-height: 20px;
    text-transform: uppercase;
}
.checkout .input-group .form-control {
    z-index: 1;
    background: transparent;
}

/*----------------------------------------------*/
/* other page */
/*----------------------------------------------*/
#button-search {
    margin: 25px 15px 0px 0;
}

#button-reset {
    margin: 25px 0 0px 0;
}
h3.search-criteria {
    font-size: 17px;
}
#product-search #input-search {
    margin-bottom: 10px;
}

/* manufacture page */
.manufacturer-list {
    margin-bottom: 20px;
    padding: 5px;
    border: 1px solid var(--border-color);
    background: var(--secondary-color);
}
.manufacturer-heading {
    background: var(--background-color);
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 6px;
    padding: 5px 8px;
}
.manufacturer-content {
    padding: 8px;
}
.manufacturer-content a:hover {
    color: var(--primary-hover-color);
}

/*account*/
#account-account .account-list-content {
    margin-bottom: 20px;
}
#account-account .account-list-content:last-child {
    margin-bottom: 0;
}
.well {
    padding: 19px;
    border-radius: 0;
    border: 1px solid var(--border-color);
    background: var(--secondary-color);
    box-shadow: none;
}
.well h2 {
    margin: 0px;
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}
.well strong {
    font-weight: 500;
}
.account-list-heading {
    font-size: 18px;
    margin: 0 0 10px;
}
.account-list-content li a {
    padding: 3px 0;
    display: inline-block;
    color: var(--secondary-light-color);
}
.account-list-content li a:hover {
    color: var(--primary-color);
}

/*sitemap*/
#information-sitemap #content .row li > a {
    padding: 5px 0;
    display: block;
}

/*compare*/
#product-compare .table-responsive>.table>tbody>tr>td,
#product-compare .table-responsive>.table>tbody>tr>th,
#product-compare .table-responsive>.table>tfoot>tr>td,
#product-compare .table-responsive>.table>tfoot>tr>th,
#product-compare .table-responsive>.table>thead>tr>td,
#product-compare .table-responsive>.table>thead>tr>th {
    white-space: unset;
}
#product-compare .table {
    display: inherit;
    border-style: solid none none none;
    overflow: auto;
}
.product-compare .btn-primary {
    margin: 5px 0 5px;
}
#product-compare .table>tbody+tbody {
    border-top: 1px solid #ddd;
}

/*checkout*/
#checkout-cart .img-thumbnail {
    border: none;
    padding: 0;
}

/*about us*/
#information-information #content .about-us {
    padding: 20px 5px;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
}
.about-us img{
    width: 100%;
}
.about-us h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 400;
}
.about-us h4 {
    font-size: 16px;
    color: var(--primary-hover-color);
    margin: 15px 0;
    font-weight: 400;
}
.about-us p{
    line-height: 26px;
    color: var(--secondary-light-color);
}
@media (max-width: 767px){
    .cms-block{
        margin-bottom: 15px;
    }
}

/*----------------------------------------------*/
/* common css */
/*----------------------------------------------*/
.mt-100{
    margin-top: 100px;
}
.mt-60{
    margin-top: 60px;
}
.mt-50{
    margin-top: 50px;
}
.img-thumbnail {
    border: none;
}
#content {
    min-height: 600px;
}
.common-home #content {
    min-height: unset;
}
#content > h3 {
    margin-top: 0;
    font-size: 18px;
}
.relative {
    position: relative;
}
.m-auto {
    margin: 0px auto;
}
.m-image-auto {
    width: auto !important;
}
ul.list-unstyled{
    margin: 0;
}
.owl-carousel {
    touch-action: manipulation;
}
.dropdown-menu {
    background: var(--secondary-color);
/*    z-index: 1001;*/
    z-index: 9999;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: 0 1px 5px rgba(0,0,0,0.11);
    -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.11);
    -webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.11);
}
.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
    background-color: transparent;
}
.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    padding: 10px 15px;
    vertical-align: middle;    
    border-color: var(--border-color);
}
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border-bottom-width: 1px;
}
.table>tbody>tr>td {
    border-top: none;
}
.form-group {
    margin-bottom: 20px;
}
.form-control {
    display: block;
    width: 100%;
    height: 40px;
    padding: 6px 15px;
    font-size: 15px;
    line-height: 20px;
    color: var(--secondary-light-color);
    background: var(--secondary-color);
    background-color: var(--secondary-color);
    background-image: none;
    border: 1px solid var(--border-color);
    box-shadow: none;
    border-radius: 0;
}

/* fixed mobile cart quantity input */
.input-group .form-control[name^=quantity] {
    min-width: 60px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        width: auto;
        padding: 0 30px;
    }
}
@media (min-width: 768px) and (max-width: 1800px) {
    .container {
        width: auto;
        padding: 0 50px;
    }
}
@media (min-width: 1801px) {
    .container {
        width: 1780px;
    }
}
@media (min-width: 1200px) {
    .col-lg-2:nth-child(6n+1),
    .col-lg-3:nth-child(4n+1),
    .col-lg-4:nth-child(3n+1),
    .col-lg-6:nth-child(2n+1){
        clear: left;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .col-md-2:nth-child(6n+1),
    .col-md-3:nth-child(4n+1),
    .col-md-4:nth-child(3n+1),
    .col-md-6:nth-child(2n+1){
        clear: left;
    }
}
@media (min-width: 601px) and (max-width: 991px) {
    .col-sm-2:nth-child(6n+1),
    .col-sm-3:nth-child(4n+1),
    .col-sm-4:nth-child(3n+1),
    .col-sm-6:nth-child(2n+1) {
        clear:left;
    }
}
@media (max-width: 600px) and (min-width: 320px){
    .block_box :not(.owl-carousel) .col-xs-4,
    .product-layout.product-grid.col-xs-4{
        width: 50%;
    }
    .col-xs-2:nth-child(6n+1),
    .col-xs-3:nth-child(4n+1),
    .col-xs-4:nth-child(2n+1),
    .col-xs-6:nth-child(2n+1) {
        clear:left;
    }
}
@media screen and (max-width: 319px){
    .block_box :not(.owl-carousel) .col-xs-4,
    .product-layout.product-grid.col-xs-4{
        width: 100%;
    }
}
@media (max-width: 991px) and (min-width: 600px) {
    /* Mahardhi */
    #content, #column-left, #column-right {
        width: 100%;
    }
}
@media (max-width: 991px) {
    .form-control {
        height: 34px;
    }
}
@media screen and (max-width: 767px){
    .table-responsive>.table-bordered>tbody>tr>td:first-child,
    .table-responsive>.table-bordered>tbody>tr>th:first-child,
    .table-responsive>.table-bordered>tfoot>tr>td:first-child,
    .table-responsive>.table-bordered>tfoot>tr>th:first-child,
    .table-responsive>.table-bordered>thead>tr>td:first-child,
    .table-responsive>.table-bordered>thead>tr>th:first-child {
        border-left: 1px solid #ddd;
    }
    .table-responsive>.table-bordered>tbody>tr>td:last-child,
    .table-responsive>.table-bordered>tbody>tr>th:last-child,
    .table-responsive>.table-bordered>tfoot>tr>td:last-child,
    .table-responsive>.table-bordered>tfoot>tr>th:last-child,
    .table-responsive>.table-bordered>thead>tr>td:last-child,
    .table-responsive>.table-bordered>thead>tr>th:last-child{
        border-left: 0;
    }
}
/* mahardhi */
@media (max-width: 1440px) {
    .mt-100{
        margin-top: 70px;
    }    
}
@media (max-width: 1199px) {
    .mt-100{
        margin-top: 60px;
    }
    .mt-60{
        margin-top: 40px;
    }
    .mt-50{
        margin-top: 40px;
    }
}
@media (max-width: 991px) {
    .mt-100{
        margin-top: 50px;
    }
    .mt-60{
        margin-top: 30px;
    }
    .mt-50{
        margin-top: 30px;
    }
    #krshna2milk-app .modal-dialog { width: 340px; top: 50%; }
}
@media (max-width: 767px) {
    #column-left,
    #column-right {
        display: block !important;
    }
    .mt-100{
        margin-top: 30px;
    }
    .mt-60{
        margin-top: 20px;
    }
    .mt-50{
        margin-top: 20px;
    }
    #krshna2milk-app .modal-body {padding: 10px;}
#krshna2milk-app .modal-dialog { width: 310px; transform: none !important; top: 20%; }
#krshna2milk-app .close .img-close-box { width: 30px; height: 30px; padding: 2px; }
#krshna2milk-app .close .img-close-box img {width: 12px;}
}

/** Added By Developer 23-08-2022 Khushbu**/

footer {
    background: var(--primary-color);
}
.footer-top {
    position: relative;
    background: #2F4450;
    margin-top: 80px;
}

.position-footer-top {
    position: relative;
    overflow: hidden;
}

.footer-top-inner .contact_icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-top-inner i {
    display: block;
    font-size: 30px;
    font-weight: 500;
    padding: 0 30px 0 0;
    color: var(--secondary-color);
}

.footer-top-inner h4 {
    font-size: 18px;
    line-height: 20px;
    margin: 0;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.footer-top-inner .footer-items:first-child .contact_site {
    padding-top: 5px;
}

.footer-top-inner .contact_site {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 15px;
    margin-top: 12px;
    text-align: center;
    color: var(--secondary-light-color);
    border-top: 1px solid #454545;
}


.footer-top-inner .contact_site a {
    color: var(--secondary-light-color);
}

.footer-top-inner .phones .contact_site {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.footer-top-inner .footer-items + .footer-items::before {
    content: '';
    width: 1px;
    height: 90px;
    position: absolute;
    background: #454545;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.footer-inner {
    font-size: 16px;
    font-weight: 500;
    padding: 80px 0;
    color: var(--secondary-light-color);
}

.footer-left-inner {
    position: relative;
    overflow: hidden;
}

.footer-items > div {
  padding: 0 45px;
}

footer h5 {
    text-transform: uppercase;
    font-size: 18px;
    margin: -2px 0 17px;
    position: relative;
    font-weight: 500;
    color: var(--secondary-color);
}

footer .footer-content a {
    padding: 8px 0;
    position: relative;
    display: inline-block;
    color: var(--secondary-light-color);
}

footer a:hover, footer a:focus {
    color: var(--secondary-color);
}

footer .footer-content a::after {
    content: "";
    height: 1px;
    width: 0;
    background: var(--secondary-color);
    position: absolute;
    left: 0;
    bottom: 8px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.subscribe-form {
    position: relative;
    width: 100%;
}

.news .subscribe-btn {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border: none;
    margin-top: 20px;
    border-radius: 25px;
    text-transform: uppercase;
    color: var(--secondary-color);
    background: transparent;
}

.news .subscribe-btn:hover {
    color: var(--secondary-color);
    background: transparent;
}

.news .subscribe-btn:hover::before{
  width: 100%;
  opacity: 1;
  border-radius: 25px;
}

.news .subscribe-btn::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  opacity: 0.7;
  z-index: -1;
  background-color: var(--primary-hover-color);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
  border-radius: 25px;
  transform: rotate(0);
}

.news .title-text {
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    margin: -2px 0 19px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

footer .footer-bottom p {
    font-size: 14px;
    font-weight: 500;
    /*margin: 0 0 29px;*/
    color: var(--secondary-color);
    /*text-align: center;*/
}
footer .footer-bottom p.powered{text-align: left;}
footer .footer-bottom p.design{text-align: right;}
footer .footer-bottom p a {
    color: var(--secondary-color);
}

.footer-bottom {
    padding: 28px 0;
    text-align: center;
    border-top: 1px solid #3b3b3b;
}

.healthy-choice .html1-inner .banner1 img.img-responsive {width: 100%;}
.mt-70 { margin-top: 70px; }

.healthy-milk-box.banner-outer.container-outer.html1::before { left: 0; width: 31%; background: url(../image/mahardhi/happy-cow-bg.png) no-repeat center; background-size: auto; background-size: cover; }
.healthy-milk-box.banner-outer.container-outer.html1::after {
  right: 0;
  width: 69.1%;
 /* background: url(../image/mahardhi/bg-jewellary-banner-1.jpg) no-repeat center;*/
    background-size: auto;
  background-size: cover;
}

.healthy-milk-box.banner-outer.container-outer.html1::before, .healthy-milk-box.banner-outer.container-outer.html1::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0}


  .healthy-milk-box .html1 .images-bg,   .healthy-milk-box .html1 .img-text {
  display: flex;
  align-items: center;
}

  .healthy-milk-box .inner2 {
  width: 30%;
}

.healthy-milk-box.html1, .healthy-milk-box .banners {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.healthy-milk-box .banners a {
  display: block;
}

.healthy-milk-box .banners img {
  width: 100%;
}
.healthy-milk-box .banners > a::after {display: none; content: none;}
.healthy-milk-box .banner1::afte {display: none; content: none;}

.healthy-milk-box .inner3 {
  width: 70%;
}

.healthy-milk-box .inner3 .promo-text-box {
  margin: 0 30% 0 100px;
  padding-right: 0;
}
.healthy-milk-box.html1 .promo-text-box .promo-title{
  font-size: 36px;
  line-height: 36px;
  font-weight: 600;
  margin: 0 0 35px;
  text-transform: capitalize;
  color: var(--primary-color);
}

.healthy-milk-box.html1 .promo-text-box .promo-desc{padding: 0;position: unset;display: block; }
.healthy-milk-box  h3.promo-title {
  font-size: 36px;
  line-height: 36px;
  font-weight: 600;
  margin: 0 0 35px;
  text-transform: capitalize;
  color: var(--primary-color);
}


.healthy-milk-box .promo-desc p {
  font-size: 18px;
  line-height: 30px;
/*  font-weight: 500;*/
  margin: 0;
  color: var(--secondary-light-color);
}

.healthy-milk-box  .promo-desc > p + p {
  margin-top: 15px;
}

.healthy-milk-box .banner1::after {display: none; content: none;}

.healthy-milk-box .banner1{padding: 0; margin: 0;}

.healthy-milk-box.html1 .images-bg, .healthy-milk-box.html1 .img-text {display: flex;align-items: center;}
.healthy-milk-box .html1-inner { margin-left: 14.96%; position: relative; z-index: 1; display: flex; }
.healthy-milk-box .promo-text-box ul {padding-left: 0; margin-top: 30px; margin-bottom: 0;}
.healthy-milk-box .promo-text-box ul li {font-size: 18px; padding-bottom: 20px;color: var(--secondary-light-color); font-weight: 500;}
.healthy-milk-box .promo-text-box ul li:last-child {padding-bottom: 0;}

.footer-top-inner .contact_site {color: #fff; border-top-color: #fff;}
.footer-inner, .footer-top-inner .contact_site a, footer .footer-content a {color: #fff;}
.footer-inner .news .news-description {color: #fff;}

.footer-bottom {border-top-color: #fff;}
.subscribe-form #newsletter_usr_email {color: #fff; border-bottom-color: #fff;}

.scrollToTop {color: var(--primary-hover-color);}

.left-box-content {display: inline-block; width: 50%; margin-left: -5px; vertical-align: middle;}
.right-box-img {display: inline-block; width: 50%; vertical-align: middle;} 
.common-content-box {padding:0 200px; }
.common-content-box h2 {font-size: 40px; margin-top: 0; color: #3A515F; margin-bottom: 20px; font-weight: 600; font-family: 'Jost';}
.common-content-box p {font-size: 18px;line-height: 30px;  font-family: 'Jost'; margin-bottom: 25px; width: 80%;}
/*.common-content-box .common-btn{background: #3A515F; padding: 10px 30px; color: #fff; font-family: 16px; border-radius: 8px;}
*/.left-box-img  {display: inline-block; width: 50%;  vertical-align: middle;}
.right-box-content {display: inline-block; width: 50%; vertical-align: middle; margin-left: -5px;}
.left-box-img img, .right-box-img img{width: 100%;}
.fresh-organic-box { background: var(--secondary-color); padding: 100px 0;}
.mb-100 {margin-bottom: 100px;}



/*Testimonial*/
.testimonial-section { /*margin-top: 100px;*/ margin-bottom: 155px; position: relative; background: url(/catalog/view/theme/mahardhi/image/mahardhi/testimonial-bg.png); height: 525px; background-size: cover; background-repeat: no-repeat; }
.testimonial-section .testimonial-box { position: absolute; bottom: -155px; left: 0; right: 0; text-align: center; background: #FFF9EE; border: 4px solid #FEC156; padding: 70px 150px; width: 65%; margin: 0 auto; }
.testimonial-section .testimonial-box h2 { margin-bottom: 25px; font-size: 40px; font-family: Jost; font-weight: 600; color: #3A515F; }
.testimonial-section .testimonial-box .slider-content-box h5 { padding: 0 30px; position: relative; font-size: 24px; font-weight: 400; line-height: 35px; color: #3A515F; margin-bottom: 25px; }
.testimonial-section .testimonial-box .slider-content-box h5:before { content: url(/catalog/view/theme/mahardhi/image/mahardhi/up.png); position: absolute; top: 0; left: 0; }
.testimonial-section .testimonial-box .slider-content-box h5:after { content: url(/catalog/view/theme/mahardhi/image/mahardhi/down.png); position: absolute; bottom: -15px; right: 200px; }
.testimonial-section .testimonial-box .slider-content-box h4 { font-size: 24px; font-weight: 600; color: #3A515F; margin-bottom: 10px; }
.testimonial-section .testimonial-box .slider-content-box p { font-size: 18px; color: #3A515F; margin-bottom:0; }
.testimonial-section .owl-theme .owl-nav [class*="owl-"] { font-size: 22px; height: 44px; width: 44px; color: var(--primary-hover-color); border-radius: 0; margin: 0 15px; }
.testimonial-section .testimonial-box h2 {margin-top: 0;}
.top-category-box.category-featured .category-title {width: 30%;}
.top-category-box.category-featured .category-box {width: 70%;}
.testimonial-section .owl-carousel.owl-theme .owl-nav {margin-top: 30px;}

.healthy-milk-box.html1 {background: #F3F5F0;}


/*Trust Backbone*/
.trust-backbone-section {padding: 100px 0; background: #fff;}
.title h2 {margin-top: 0; font-family: 'Jost'; font-weight: 600; font-size: 40px; margin-bottom: 50px; text-align: center; color: #3A515F;;}
.trust-backbone-section .trust-backbone {position: relative;}
.trust-backbone-section .trust-backbone img {width: 100%; }
.trust-backbone-section .trust-backbone .content-box {position: absolute; width: 75%; left: 30px; padding: 30px; background: #fff; bottom: 30px; height: 220px;}
.trust-backbone-section .trust-backbone .content-box h3 {text-transform: capitalize; color:  #3A515F; font-family: 'Jost'; font-size: 26px; margin-bottom: 20px; margin-top: 0;}
.trust-backbone-section .trust-backbone .content-box p {font-size: 18px; font-family: 'Jost'; margin-bottom: 0; width: 88%;line-height: 26px;}
.custom-container {padding: 0 150px;}
.trust-backbone-section .row {margin: 0;}

.service .service-icon i {z-index: 99;position: relative;}
.banner-outer.container-outer.html1.mt-100.mb-100.healthy-choice {background: #FFF9EE; margin: 0; padding: 100px 0;}
.service-item .service-icon::before {z-index: 1;}
.banner-outer.container-outer.html1.mt-100.mb-100.healthy-choice .img-responsive {width: 90%;}
.banner-outer.container-outer.html1.mt-100.mb-100.healthy-choice .promo-text-box {margin: 0 !important;}

/*Benefits Of Krsna A2 Milk*/

.benefits-section {padding-top: 100px;background: #fff;}
.benefits-section .benefits-slider-box {position: relative;}
.benefits-section .benefits-slider-box .slider-cont  {position: absolute; width: 80%; right: 0; padding: 30px; background: #FFE8EE; bottom: 0px; height: 160px; transition: 0.8s all ease;}
.benefits-section .benefits-slider-box .slider-cont h5 {margin-top: 0; font-size: 24px; font-family: 'Jost'; margin-bottom: 0; color: #FFF;line-height: 33px;}
.benefits-section .benefits-slider-box .slider-cont h5 p {margin-bottom: 0;}
.benefits-section .benefits-slider-box .slider-cont.pink {background: rgb(254, 193, 70,0.8);}
.benefits-section .benefits-slider-box .slider-cont.blue {background: #D8F4FF;}
.benefits-section .benefits-slider-box .slider-cont.yellow {background: #F2F5C0;}
.benefits-section .benefits-slider-box .slider-cont.green {background: #E6FFF3;}
.benefits-section .benefits-slider-box .slider-cont.brown {background: #F6EEE1;}



.category-featured .owl-nav .fa {color: #fec146;}
.category-featured .owl-nav div:hover .fa {color: #fff;}
.healthy-milk-box .inner3 .promo-text-box {margin: 0 20% 0 100px;}

footer .footer-bottom p.design, footer .footer-bottom p {margin-bottom: 0 !important; }


/*Inner-About-Us*/

.inner-banner-section { position: relative; background: url(../images/about-us-banner.png); background-size: cover; background-repeat: no-repeat no-repeat; height: 400px; background-position:center; }
.inner-banner-section .inner-banner-title { z-index: 9; position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); text-align: center; }
.inner-banner-section .inner-banner-title h2 { font-size: 60px; margin: 0; color: #fff; }
.inner-banner-section:before { content: ''; position: absolute; width: 100%; height: 100%; background: rgba(58, 81, 95, 0.58); }
.about-us-section .left-box-img { padding-right: 80px; display: inline-block; width: 50%; vertical-align: middle; }
.about-us-section .right-box-content { display: inline-block; width: 50%; vertical-align: middle; margin-left: -5px; }
.about-us-section .left-box-img img { width: 100%; }
.about-us-section .common-content-box { padding: 0 !important; }
.about-us-section .common-content-box h4 { font-size: 26px; margin-bottom: 15px; margin-top: 0; }
.about-cow-section .about-cow-box h4 { font-size: 26px; margin-bottom: 15px; }
.about-cow-section .about-cow-box h2 { font-family: 'Jost'; font-weight: 600; font-size: 40px; margin-bottom: 20px; color: #3A515F; }
.about-cow-section .about-cow-box p { font-size: 18px; margin-bottom: 30px; line-height: 30px;}
.common-section { padding: 100px 0; }
.about-cow-section .about-cow-box .services-box  p { width: 70%; margin-bottom: 0 !important; font-size: 22px; display: inline-block; padding-left: 20px; vertical-align: middle; }
.about-cow-section .about-cow-box  img.cow-img { margin-bottom: 40px; width: 100%;}
.about-cow-section .about-cow-box .services-box img { width: auto; margin-bottom: 0; }
.cow-block-section .cow-box { position: relative; overflow: hidden; box-shadow: 0 0 5px #ddd; }
.cow-block-section .cow-box:before { z-index: 1; content: ''; background: rgba(0, 0, 0, 0.45); height: 100%; width: 100%; position: absolute; left: 0; right: 0; transition: all .2s ease-in-out; -webkit-transition: all 0.5s linear; transition: all 0.5s linear; }
.cow-block-section .cow-box img { width: 100%; transition: all .2s ease-in-out; -webkit-transition: all 0.5s linear; transition: all 0.5s linear; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); }
.cow-block-section .cow-box .cont-box { position: absolute; bottom: 30px; left: 0; right: 0; text-align: center; z-index: 10; }
.cow-block-section .cow-box .cont-box h2 { color: #fff; margin: 0; font-size: 40px; }
.cow-block-section .cow-box:hover img { -webkit-transform: scale3d(1.2, 1.2, 1); transform: scale3d(1.2, 1.2, 1); }
.cow-block-section .cow-box:hover:before { background: rgba(0, 0, 0, 0.2); }
.cow-block-section {padding-top: 100px;}
.mission-vision-section { background: #F3F5F0;  }
.insta-post-section.common-section {padding-bottom: 0;}
.common-list {padding: 0;}
.mission-vision-section .common-content-box h3 { font-size: 26px; margin-bottom: 20px; margin-top: 0; }
.mission-vision-section .common-content-box .common-list li { position: relative; list-style: none; font-size: 18px; margin-bottom: 15px; color: #3A515F; padding-left: 30px; }
.mission-vision-section .common-content-box .common-list li:last-child { margin-bottom: 0; }
.mission-vision-section .common-content-box .common-list li:before { content: ''; position: absolute; top: 10px; background: #fec156; height: 8px; width: 8px; border-radius: 50%; left: 0; }
.mission-vision-section .common-content-box { padding: 0 !important; }
.mission-vision-section .common-content-box .mission-box { margin-bottom: 30px; }
.mission-vision-section .common-content-box .mission-box:last-child  { margin-bottom:0; }
.milk-difference-section .common-content-box .title h2 { text-align: left; }
.milk-difference-section {padding: 100px 0; background: #fff;}
.common-pt { padding-top: 100px; }
/*.common-btn:hover { background: #fec156; color: #fff !important; }*/
.insta-post-section img { width: 100%; transition: all .2s ease-in-out; -webkit-transition: all 0.5s linear; transition: all 0.5s linear; }
.insta-post-section img:hover { box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; }

/*Breadcrumb*/

.custom-breadcrumb {padding: 0 !important; background: transparent !important; display: block !important;margin-bottom: 0 !important;}
.custom-breadcrumb li {font-size: 26px; color: #fec156; display: inline-block; }
.custom-breadcrumb li a {color: #fff; text-decoration: none; }
.custom-breadcrumb li a:hover {color:#fec156;}
.custom-breadcrumb > li + li::before { padding: 0 5px; color: #ccc; content: "/\00a0"; }
.custom-breadcrumb > li + li a {color: #fec156;}

.common-btn::before { content: ''; position: absolute; top: 70px; right: 100%; width: 200px; height: 200px; z-index: -1; transform: rotate(45deg); background-color: var(--primary-hover-color); -webkit-transform-origin: 100% 50%; transform-origin: 100% 50%; -webkit-transition: all 0.5s cubic-bezier(.69, .26, .28, .95) 0s; transition: all 0.5s cubic-bezier(.69, .26, .28, .95) 0s; }

.common-btn{font-size: 14px;
font-weight: 500;
position: relative;
padding: 11px 39px;
border: 1px solid var(--primary-hover-color);
text-transform: uppercase;
background: transparent;}
.common-btn:hover::before {top: 0;right: 0;}

.testimonial-section .testimonial-box .slider-content-box p span {font-family: 'Jost', sans-serif !important;}

/*.thumbnail {background: transparent !important; border: 1px solid #d5d4d4 !important;}
#additional-carousel .image-additional { border: 1px solid #d5d4d4 !important;}
.product-thumb .image img { border: 1px solid #d5d4d4 !important;}*/



.faq-container h1 { text-align: center; background: #3A515F; color: #fff; padding: 12px; margin: 0; font-size: 40px; font-family: 'Jost'; margin-bottom: 50px; }

/*.faq-heading { border-bottom: #777; padding: 20px 60px; }*/
.faq-container { display: flex; justify-content: center; flex-direction: column; }
/*.hr-line { width: 60%; margin: auto; }*/
/* Style the buttons that are used to open and close the faq-page body */
.faq-page {color: #444; cursor: pointer; padding: 30px 20px; transition: 0.4s; margin: auto; background: transparent !important; border-top: 1px solid #3A515F; position: relative; font-size: 32px; font-weight: 500;/* background-color: #eee; */ /*width: 60%;*/ /*   padding-bottom: 0;*/  }
.faq-body { margin: auto;padding: auto; /* text-align: center; */   /*width: 50%; */ }

.faq-container .active, .faq-container .faq-page:hover { background-color: #F9F9F9; }

/* Style the faq-page panel. Note: hidden by default */
.faq-container .faq-body { padding: 0 18px; display: none; overflow: hidden; }
.faq-container .faq-body p { font-size: 18px; line-height: 30px; margin-bottom: 20px; color: #000000; }
.faq-container .faq-page:after { content: '\02795';    /* Unicode character for "plus" sign (+) */ font-size: 13px; color: #777; position: absolute; right: 30px; top: 50%; transform: translateY(-50%); margin-left: 0; border: 1px solid #000; border-radius: 50%; height: 30px; width: 30px; padding: 7px 6px; text-align: center; }
.faq-container .active:after { content: "\2796";    /* Unicode character for "minus" sign (-) */ }



.faq-container .accordion-item {border-top: 1px solid #3A515F;}
.faq-container .accordion button {position: relative;display: block;text-align: left;width: 100%;padding: 1em 0;/*color: #7288a2;*/font-size: 2rem;font-weight: 400;border: none;background: none;outline: none;}
.faq-container .accordion button:hover,.faq-container .accordion button:focus {cursor: pointer;/*color: #fec156;*/}
.faq-container .accordion button:hover::after,.faq-container .accordion button:focus::after {cursor: pointer;/*color: #03b5d2;*//*border: 1px solid #03b5d2;*/}
.faq-container .accordion button .accordion-title {padding: 1em 1.5em 1em 0;font-size: 32px;font-weight: 500;}
.faq-container .accordion button .icon {display: inline-block;position: absolute;top: 18px;right: 0;width: 31px;height: 30px;border: 1px solid;border-radius: 22px;}
.faq-container .accordion button .icon::before {display: block;position: absolute;content: '';top: 13px;left: 8px;width: 15px;height: 2px;background: currentColor;}
.faq-container .accordion button .icon::after {display: block;position: absolute;content: '';top: 7px;left: 14px;width: 2px;height: 14px;background: currentColor;}
.faq-container .accordion button[aria-expanded='true'] .icon::after {width: 0;}
.faq-container .accordion button[aria-expanded='true'] + .accordion-content {opacity: 1;max-height: 100%;transition: all 200ms linear;will-change: opacity, max-height;}
.faq-container .accordion .accordion-content {opacity: 0;max-height: 0;overflow: hidden;transition: opacity 200ms linear, max-height 200ms linear;will-change: opacity, max-height;font-size: 18px;line-height: 30px;margin-bottom: 20px;color: #000000;}
.faq-container .accordion {margin-bottom: 100px;}
.faq-container .accordion:last-child{margin-bottom: 0;}


/*Contact-Us*/

.contact-us-banner-section { position: relative; background: url(../image/contact-us-banner.png); background-size: cover; background-repeat: no-repeat no-repeat; height: 400px; background-position: 100% 100%; }
.contact-us-section .left-box-img { padding-right: 50px; display: inline-block; width: 45%; vertical-align: middle; }
.contact-us-section .contact-form-box { display: inline-block; width: 55%; vertical-align: middle; margin-left: -5px; }
.contact-us-section .left-box-img img { width: 100%; }
.contact-us-section .contact-form-box .form-group .form-control { height: 65px; border: none; background: #F0F1ED; padding: 20px; border-radius: 0; }
.contact-us-section .contact-form-box .form-group textarea.form-control { height: 195px; resize: none; }
.contact-us-section .contact-form-box .form-group {margin: 0; margin-bottom: 20px; }
.contact-us-section .contact-form-box .form-group label { font-size: 18px; padding-top: 0; margin-bottom: 8px;}
.contact-us-section .contact-form-box .common-btn { font-size: 18px; /*color: #fec146; */position: relative; padding: 11px 39px; border: 1px solid #fec146; background: transparent; border-radius: 0; }
/*.contact-us-section .contact-form-box .common-btn:hover { background: #fec146; color: #fff; }*/
.contact-us-section {background: #fff;}
.map-section { position: relative; }
.map-section .address-box { position: absolute; right: 150px; transform: translateY(-50%); top: 50%; background: #3A515F; width: 30%; text-align: center; padding: 80px; }
.map-section .address-box h3 { color: #fff; font-size: 22px; margin-top: 0;}
.map-section .address-box  p { color: #fff; font-size: 22px; line-height: 1.5;margin-bottom: 0; }
.map-section .address-box .icon-box { height: 55px; width: 55px; border-radius: 50%; border: 1px solid #fff; padding: 16px; margin: 0 auto; margin-bottom: 10px; }
.map-section .address-box .icon-box i { font-size: 22px; color: #fff; }
.call-email-section .call-mail-box { background: #F0F1ED; padding: 40px; /* height: 423px; */ height:auto !important; }
.call-email-section .call-mail-box h2 { font-size: 40px; margin-top: 0; color: #3A515F; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 2px solid #3A515F; }
.call-email-section .call-mail-box p { font-size: 22px; margin-bottom: 15px; font-weight: 500; color: #3A515F; }
.call-email-section .call-mail-box ul { padding: 0;margin: 0;}
/*.call-email-section .call-mail-box ul.top-list { margin-bottom: 20px !important; }*/
.call-email-section .call-mail-box ul li { display: block; padding-bottom: 15px; }
.call-email-section .call-mail-box ul li:last-child { padding-bottom: 0; }
.call-email-section .call-mail-box ul li a { color: #3A515F; font-size: 22px; }
.call-email-section .call-mail-box ul li a:hover { color: #fec146; text-decoration: none; }
.call-email-section .call-mail-box ul li a:hover i { border-color: #fec146; }
.call-email-section .call-mail-box ul li a i { border: 1px solid #3A515F;font-size: 22px; border-radius: 50%; width: 44px; height: 44px; text-align: center; padding: 10px; margin-right: 10px; }
.faq-container .accordion .accordion-content p {margin-bottom: 0;}
.faq-container .accordion-item:last-child {border-bottom: 1px solid #3A515F;}

#products-shop-banner.inner-banner-section { background-image: url(/image/catalog/banners/product-banner.png); margin-bottom:28px;}

.ajax-loader{width:30px; display:none; margin-right:35px;}

#subscription-form #is_collect_bottles {margin-right: 7px;}
#subscription-form h5 {font-size: 14px;}
#subscription-form .common-label {font-size: 14px; font-weight: 400;}
#buy_once_div {margin-top: 15px;}
#subscription_div {margin-top: 15px; }
.schedule-box {margin-bottom: 15px}
.schedule-box label.common-label {display: block;}
.schedule-box input {margin: 0 7px;}
p.note-box {color: #d94c4c; margin-top: 10px}
.week_days input {margin:0 7px;}
.week_days {font-size: 16px;}

.zoomContainer:hover {background: #fff;}
#vactaion-post-form #order-display-text {font-size: 18px; margin-top: 10px; margin-bottom: 30px;}
#vactaion-post-form #products-div .card {box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;padding: 20px;margin-bottom: 20px;}
#vactaion-post-form #products-div .card  span {display: block;
margin-bottom: 8px;

font-size: 16px;}
#vactaion-post-form #products-div .card  h5 {background: #FFF9EE;
padding: 10px;
text-align: center;
margin: 0;
color: #FEC156;
font-size: 14px;}
#vactaion-post-form #products-div .card p {color: #58b2e4;}
#vactaion-post-form #products-div .card img {border: 1px solid #f0f0f0;}

#vactionPopup {height:650px;}
.week-days #dates_ul  {padding: 0; margin-top: 30px;}
.week-days #dates_ul li {text-align: center; cursor: pointer; display: inline-block; list-style: none; font-size: 18px; background: #3a515f; color: #fff;padding: 20px 67px; }
.week-days #dates_ul li p {margin-bottom: 0;margin-top: 10px;border: 1px solid #fff;padding: 5px;border-radius: 50px;}
.week-days #dates_ul li:hover { background: #ffff; color:#3a515f; }
.week-days #dates_ul li:hover p {color:#3a515f; border-color:#3a515f; }
.week-days #dates_ul li.active { background: #ffff; color:#3a515f; }
.week-days #dates_ul li.active p{color:#3a515f; border-color:#3a515f; }
#edit-div p {border: 1px solid #3a515f; padding: 7px 30px; display: inline-block; cursor:pointer; }
.product-btn-quantity button { background: #3a515f; border: none; box-shadow: none; padding: 0 10px; color: #fff; }
.product-btn-quantity input {text-align: center;}


#calender_orders .card { box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; padding: 20px; margin-bottom: 20px; width: 83%; background: #fff; }
#calender_orders .card h4 {font-size: 22px;}

#calender_orders .card span {font-size: 18px;}
#calender_orders .card p {font-size: 18px; margin-top: 10px; margin-bottom: 0;}
#calender_orders .card img {border: 1px solid #e4e4e4;}
.edit-products{margin: 19px -32px 19px -15px;}

.image-additional.slick-slide {background: #fff;}
button#btn-damange-pay{ background: var(--primary-color); }

#update-quantity-form .row.edit-products .col-md-12 { display: grid; grid: auto auto / 30% auto auto auto; }

.account-content .list-group ul > li:first-child a {padding: 8px 0;}
.account-content  #menu {margin: 25px 0 0 0;}

.service .service-icon i img {width: 35px !important;}


.testimonial-section .testimonial-box .slider-content-box h5::before, .testimonial-section .testimonial-box .slider-content-box h5::after {display: none;}


.testimonial-section .testimonial-box .slider-content-box p span.fa {font-family: FontAwesome !important;font-size: 22px;color: #fec146;}

.testimonial-section .testimonial-box .slider-content-box p span.fa.fa-quote-left {padding-right: 10px;}

.testimonial-section .testimonial-box .slider-content-box p span.fa.fa-quote-right {padding-left: 10px;}

.shop-btn {display: none;}
/*.about-cow-section .about-cow-box .services-box .abt-icon-box {position: relative; background: #fec146; text-align: center; border-radius: 50px; padding: 16px; width: 70px; height: 70px; display: inline-block; }*/


.about-cow-section .about-cow-box .services-box .abt-icon-box {position: relative; padding: 23px; display: inline-block; }

.about-cow-section .about-cow-box .services-box .abt-icon-box:before { content: ""; position: absolute; top: 0; bottom: 0; right: 0; left: 0; background: url(../image/mahardhi/shape.png) no-repeat transparent; background-size: auto; margin: auto; z-index: -1; background-size: cover; }

.about-cow-section .about-cow-box .services-box .abt-icon-box img {width: auto !important;}


 .common-home header {background: #f3f5f0;}
 .fresh-organic-box .right-box-img {padding-left: 0 !important;}


.privacy-policy-section h3 { font-size: 32px; font-weight: 600; line-height: 50px; text-transform: capitalize; }
.privacy-policy-section p { font-size: 18px; line-height: 28px; color: var(--secondary-light-color); }
.privacy-policy-section ul li { font-size: 18px; margin-bottom: 15px; color: var(--secondary-light-color);}

#menu .nav > li.active > a::after {width: 100%;}

footer .footer-content h5, .news .title-text {position: relative; color: #fec146;}
footer .footer-content h5::before, .news .title-text::before { content: ''; position: absolute; bottom: -5px; left: 0; width: 60px; height: 2px; opacity: 0.7; background-color: var(--primary-hover-color); -webkit-transform-origin: 100% 50%; transform-origin: 100% 50%; -webkit-transition: all .3s ease-in-out 0s; transition: all .3s ease-in-out 0s; border-radius: 25px; transform: rotate(0); }

.footer-top a:hover {color: #fec146; }
.customer-profile .col-sm-4 {margin-bottom: 20px;}
.customer-profile .col-sm-4 .account-list-heading { position: relative;  margin-bottom: 20px;}
.customer-profile .col-sm-4 .account-list-heading::before { content: ''; position: absolute; bottom: -5px; left: 0; width: 60px; height: 2px; opacity: 0.7; background-color:var(--primary-color); -webkit-transform-origin: 100% 50%; transform-origin: 100% 50%; -webkit-transition: all .3s ease-in-out 0s; transition: all .3s ease-in-out 0s; border-radius: 25px; transform: rotate(0); }

.customer-profile .col-sm-4  ul li {position: relative; font-size: 18px; margin-bottom: 10px;}
/*.customer-profile .col-sm-4  ul li:before {content: '\f0a4'; font-family:'FontAwesome'; position: absolute; left: 0;}*/

.account-main.customer-profile {
  padding-top: 20px;
}

.input-group.date.delivery_date {width: 50%;}
#order_type{width: 50%;margin-top: 10px;}
.applicationbox{
    margin-bottom: 20px;
}
.applicationbox a {
    display: block;
    margin-bottom: 15px;
    padding: 5px 0;
}

/*Added by Developer 18-01-2024*/

.call-to-action-section{ position: relative;padding: 100px 0; background: url(../image/mahardhi/cta-bg-k2m.png); background-size: cover; background-repeat: no-repeat no-repeat; background-position: 100% 100%; }
.call-to-action-section .cta-box {display: grid; text-align: center; justify-content: center; align-items: center; grid-template-columns: repeat(3, 1fr);}
.call-to-action-section .cta-box .common-box h3, .call-to-action-section .cta-box .common-box h3 a{margin-bottom: 0 !important; color: #fff; margin-top:0; }
.call-to-action-section .cta-box .common-box h3 a {color: #fec156;}
.call-to-action-section .cta-box .common-box h3 a:hover {text-decoration: none; color: #fff;}
.call-to-action-section .cta-box .common-box span {display: inline-block;background: #fec156;padding: 17px 0;border-radius: 50%; height: 75px;width: 75px;font-size: 32px;margin: 0 auto;text-align: center;margin-bottom: 30px;}
.home-shop-btn {  background: #fff9ee; padding-top: 50px; }
