* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Jost', sans-serif !important; */
    /* font-family: 'avenir_next_lt_proregular' !important; */
    font-family: 'futura_md_btmedium' !important;
    /* font-family: 'itc_cheltenham_stdbold' !important; */
}

.bold-font {
    font-family: 'itc_cheltenham_stdbold' !important;
    /* font-family: 'avenir_next_lt_probold' !important; */
    /* font-family: 'yasmenregular' !important; */
    /* font-family: "Katibeh", serif !important;
    font-weight: 700; */
}

/* .katibeh-regular {
    font-family: "Katibeh", serif;
    font-weight: 400;
    font-style: normal;
  } */


 

html {
    scroll-behavior: smooth;
}

.bg-light-gray {
    background: #F1F1F9 !important;
}

.bg-gray {
    background: #D9D9D9 !important;
}

@font-face {
    font-family: 'avenir_next_lt_probold';
    src: url('../fonts/avenirnextltpro-bold-webfont.woff2') format('woff2'),
        url('../fonts/avenirnextltpro-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'futura_md_btmedium';
    src: url('../fonts/futumd-webfont.woff2') format('woff2'),
         url('../fonts/futumd-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'avenir_next_lt_proitalic';
    src: url('../fonts/avenirnextltpro-it-webfont.woff2') format('woff2'),
        url('../fonts/avenirnextltpro-it-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'itc_cheltenham_stdbold';
    src: url('../fonts/cheltenhamstdbold-webfont.woff2') format('woff2'),
         url('../fonts/cheltenhamstdbold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'avenir_next_lt_proregular';
    src: url('../fonts/avenirnextltpro-regular-webfont.woff2') format('woff2'),
        url('../fonts/avenirnextltpro-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'media_gothicregular';
    src: url('../fonts/md_gothic11-webfont.woff2') format('woff2'),
        url('../fonts/md_gothic11-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


a,
a:hover {
    text-decoration: none !important;
}



p {
    margin-top: 0;
}

ul {
    padding: 0;
}

ul li {
    list-style: none;
}

.com-heading {
    font-size: 36px;
}

.bg-img {
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-black {
    background-color: #000 !important;
}

.text-black {
    color: #000 !important;
}

.w-600 {
    font-weight: 600;
}

.w-500 {
    font-weight: 500;
}

.w-700 {
    font-weight: 700;
}

.lt-space {
    letter-spacing: 0.9px !important;
}

.form-control:focus {
    outline: 0;
    box-shadow: none;
}

.panel-space {
    padding: 60px 0;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    position: relative;
    z-index: 2;
}

a {
    display: inline-block;
    -webkit-transition: color 300ms, background-color 300ms;
    -moz-transition: color 300ms, background-color 300ms;
    -o-transition: color 300ms, background-color 300ms;
    transition: color 300ms, background-color 300ms;
    text-decoration: none;
}


.bennietic-header {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    padding: 3px 0;
    background-color: #fff;
    /* box-shadow: 0 1px 5px -2px rgb(42 42 42 / 40%); */
}

.logo-section {
    display: flex;
    align-items: center;
}

button:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

.navbar-brand img {
    width: 100px;
}

.fixed-header {
    background-color: #fff;
    box-shadow: 0 1px 5px -2px rgb(42 42 42 / 40%);
}



.fixed-header .admission-btn {
    padding: 6px 22px 11px;
    font-size: 14px;
}

.cart-search a {
    margin-left: 14px;
}



.navbar-brand img {
    width: 190px;
}

.navbar-nav .nav-item .nav-link {
    color: #000;
    font-size: 15px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    margin: 0 10px 0 0;
    position: relative;
    padding: 9px 20px 9px 0 !important;
}

.nav-dropdown .nav-link {
    margin-right: 0 !important;
}

/* drop down meni */
.nav-item {
    position: relative;
}

.drop-down {
    padding: 34px 0 0 0;
    position: absolute;
    top: 28px;
    left: 0;
    width: 236px;
    perspective: 1000px;
    display: none;
    animation: rotateMenu 800ms ease-in-out forwards;
    transform-origin: top center;
}


.nav-dropdown:hover .drop-down {
    display: block;
}


@-moz-keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg);
    }

    70% {
        transform: rotateX(20deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

@-webkit-keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg);
    }

    70% {
        transform: rotateX(20deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

@-o-keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg);
    }

    70% {
        transform: rotateX(20deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

@keyframes rotateMenu {
    0% {
        transform: rotateX(-90deg);
    }

    70% {
        transform: rotateX(20deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

.drop-down-list {
    padding: 9px 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 5px -2px rgb(42 42 42 / 40%);
}

.drop-down-list .nav-item .nav-link {
    color: #000;
    padding: 4px 14px !important;
    margin: 0;
}

.drop-down-list .nav-item .nav-link:hover {
    background-color: #000;
    color: #fff !important;
}

.fixed-header .navbar-nav .nav-item .nav-link {
    color: #000;
}

/* drop down meni */


/* banner */
.banner,
.cms-banner,
.product_detail {
    margin-top: 45px;
}

.banner.bg-img {
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-position: center;
    background-color: #000;
    background-attachment: fixed;
}

.banner-slider {
    width: 100%;
}

.banner {
    height: 800px;
    padding-bottom: 98px;
}

.shoe-img {
    position: absolute;
    right: 0;
    top: -170px;
}

.banner .item {
    height: 761px;
    display: flex;
    align-items: center;
}
.banner-content {
    position: relative;
    z-index: 1;
}
.shoe-img img {
    width:100% !important;
    max-width: 100% !important;
    height: auto !important;
}

.banner-subtitle {
    font-size: 22px;
    font-weight: 400;
    font-family: 'media_gothicregular';
    margin-bottom: 0;
}

.banner-title {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 23px;
}

.banner-cnt {
    font-size: 18px;
}


.banner .owl-dots {
    position: absolute;
    bottom: -31px;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .owl-theme .owl-dots .owl-dot span, .cms-banner .owl-theme .owl-dots .owl-dot span {
    background: #878787 !important;
    width: 12px !important;
    height: 12px !important;
    margin: 5px 12px !important;
}


.banner .owl-theme .owl-dots .owl-dot.active span, .cms-banner .owl-theme .owl-dots .owl-dot.active span {
    background: #fff !important;
    width: 15px !important;
    height: 15px !important;
}



.cms-banner .owl-theme .owl-controls {
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
}




.top-line {
    width: 369px;
    text-align: end;
    position: absolute;
    top: -126px;
    right: 0;
}

.top-line img {
    margin-right: 113px;
    margin-top: 8px;
}


.top-line span {
    text-align: left;
    font-size: 14px;
}

.link-btn {
    background-color: #fff;
    padding: 10px 22px;
    color: #000;
    font-size: 20px;
    margin-top: 30px;
}

.bottom-line {
    position: absolute;
    bottom: -172px;
    width: 636px;
}

.bottom-line span {
    font-size: 14px;
}

.bottom-line img {
    width: 280px;
}

.cat-panel p {
    font-size: 30px;
    top: 20% !important;
    text-align: center;
    background: rgb(0 0 0 / 30%);
}

.cat-panel .link-btn {
    bottom: 25px;
    right: 25px;
    font-size: 14px;
}

.brand-name span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
}

.brand-name p {
    font-size: 20px;
    margin: 2px 0;
}

.seller-product figure a {
    width: 100%;
    box-shadow: 5px 5px 34.2px 0px rgba(166, 171, 189, 0.58), -5px -5px 10px 0px #FAFBFF;
    margin-top: 6px;
    height: 365px;
    display: block;
    overflow: hidden;
}

.seller-product figure a img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    max-width: 100% !important;
    transition: all 0.3s ease-in-out;
}
.seller-product:hover img {
    transform: scale(1.3);
}

.seller-product {
    padding: 25px;
}

.seller-product p {
    color: #727272 !important;
    font-size: 18px;
}

.seller-product {
    padding: 25px;
    padding-right: 0;
}

.view-all {
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: #FFF;
    box-shadow: 5px 5px 34.2px 0px rgba(166, 171, 189, 0.58), -5px -5px 10px 0px #FAFBFF;
    padding: 6px 20px;
}

.best-seller {
    background: #FAFAFC;
}


.midil-box {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f1f1f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.midil-box img {
    width: 82%;
}

.sampal-box {
    border-radius: 20px;
    background: #F1F1F9;
    font-size: 30px;
    text-align: center;
}

.sampla3 {
    width: 100%;
    height: 280px;
    border-radius: 20px;
}

.sampla3 img {
    width: 100%;
    height: 100%;
}

.sampal-box ul li {
    list-style: disc;
    font-size: 20px;
    text-align: left;
    margin-top: 11px;
}

.right-side-sample {
    height: 100%;
    padding: 10px;
}

.sample-persentage {
    font-size: 36px;
}

.sampal-box .sample-laether {
    font-size: 21px;
}


.why-bannetic {
    height: 512px;
}

.why-bannetic h3 {
    font-size: 36px;
    font-family: 'media_gothicregular';
}

.why-bannetic p {
    width: 441px;
    margin-top: 36px;
    font-size: 15px;
    margin-bottom: 4px;
}

.shoe-care-box p {
    position: absolute;
    bottom: 0;
    left: 12px;
    font-size: 20px;
    width: 250px;
}

.blog {
    background: #FAFAFC;
}

.blog .seller-product p {
    color: #727272 !important;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog .seller-product figure {
    width: 100%;
    /* border: 1px solid rgba(255, 255, 255, 0.40); */
    box-shadow: 5px 5px 34.2px 0px rgba(166, 171, 189, 0.58), -5px -5px 10px 0px #FAFBFF;
    margin-top: 0;
    overflow: hidden;
  
}
.blog .seller-product figure img{
    transition: all 0.3s;
}




.team-cnt {
    font-size: 14px;
    color: #000;
}

.team-pdtl {
    color: #727272;
}

/*.bewslatter {*/
/*    height: 570px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*}*/

.bewslatter {
    height: 547px;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.uer-link {
    height: 100%;
}

.footer-logo {
    position: absolute;
    bottom: 0;
}

.footer ul {
    padding: 0;
}

.footer ul li a {
    color: #fff;
    padding: 4px 0;
}

.social-link {
    margin: 25px 0 21px;
}

.social-link ul li {
    display: inline-block;
    margin-right: 30px;
}

.social-link ul li a img {
    width: 30px;
}

.work-track {
    border-radius: 10px;
    background: #020202;
    padding: 13px 17px;
}

.work-track img {
    width: 40px;
}

.work-track img {
    width: 40px;
    margin-right: 17px;
}

.work-track p {
    font-size: 20px;
}

.review-panel {
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: #FFF;
    box-shadow: 5px 5px 34.2px 0px rgba(166, 171, 189, 0.58), -5px -5px 10px 0px #FAFBFF;
    width: 510px;
    margin: auto;
    padding: 0 10px;
}

.review-box {
    text-align: center;
    padding: 20px 0;
    margin: 0 auto;
}

.review-star {
    padding: 25px 0 0 0;
}

.review-box p {
    font-size: 18px;
}



.review .owl-nav {
    position: absolute;
    top: 24%;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 155%;
    height: 0;
}

.review .owl-next:before {
    background-image: url(../images/right.png);
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    width: 80px;
    height: 80px;
    content: '' !important;
}

.review .owl-prev:before {
    background-image: url(../images/right.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    width: 80px;
    height: 71px;
    content: '' !important;
    transform: rotate(180deg);
}




.cms-banner-title {
    letter-spacing: 4px;
    font-size: 50px;
}

.cms-banner-subtitle {
    letter-spacing: 2px;
    font-size: 18px;
}

.product-link a {
    margin: 0 21px;
    font-size: 18px;
}

.product-link h2 {
    margin-bottom: 20px;
}

.all-product .seller-product {
    padding: 0;
    padding-right: 0;
}



.modal-fullscreen .modal-content {
    height: auto !important;
}


.search-input .wp-block-search .wp-block-search__label {
    display: none;
}

.search-input .wp-block-search__inside-wrapper {
    height: 50px;
}

.search-input .wp-block-search .wp-block-search__input {
    padding: 6px 15px;
    line-height: 1.8;
    flex-grow: 1;
    border: 1px solid #D0D5DD !important;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.search-input .wp-block-search button.wp-block-search__button {
    display: flex;
    align-items: center;
    margin: 0;
    cursor: pointer;
    padding: 0 0.5em;
    position: relative;
    overflow: hidden;
    border: 0;
    font-size: 18px;
    padding: 0 40px;
    font-weight: 500;
    background: #000 !important;
    color: #fff;
    transition: all .5s ease-in-out;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.search-input .wp-block-search {
    max-width: 100%;
    width: 100%;
}


.seller-product .price {
    color: #000 !important;
    font-size: 16px;
}

.seller-product .price del,  .wc-block-components-product-price__regular{
    display: none;
}

.seller-product h6 {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: 'futura_md_btmedium' !important;
}

.seller-product .price {
    color: #000 !important;
    font-size: 16px;
    margin-bottom: 0;
    margin-left: 5px;
    text-decoration: none;
}

.seller-product ins {
    text-decoration: none;
}

.products .seller-product figure a {
    height: 270px;
}





/* ********* sumit kumar********* */

.blank-panel,
.cnt-panel {
    height: 481px;
}
.blank-panel img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
.text-font {
    font-size: 20px;
}

.special-form .form-control {
    border-radius: 0;
    padding: 13px;
}

.special-form .form-label {
    font-weight: 700;
}

.color-grayy {
    color: var(--Gray-500, #667085);
}

.form-button .btn {
    width: 100%;
    background: #000;
    border-radius: 0;
    background: #000;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    padding: 21px;
    font-weight: 700;
    color: #fff;
}

.Prefer-lonch {
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: #FFF;
    box-shadow: 5px 5px 34.2px 0px rgba(166, 171, 189, 0.58), -5px -5px 10px 0px #FAFBFF;
    padding: 30px 28px;
    min-height: 213px;
}

.heading-three {
    font-size: 26px;
}

.high-quality {
    padding: 50px 0;
}

.Policy-page {
    width: 800px;
    margin: 0 auto;
}

.Shipping-Policy {
    padding: 30px 20px;
    background: #F1F1F9;

}

.table-panel tr th {
    font-weight: 400;
}

.table-panel tr td {
    /* font-family: 'avenir_next_lt_probold' !important; */
    font-family: 'futura_md_btmedium' !important;
}

.refer-size {
    font-size: 32px;
}


.our-team figure {
    width: 246px;
    height: 246px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
}

.team-dtl {
    text-align: center;
    width: 300px;
    margin: 10px auto 0;
}


.cms-banner .post-thumbnail {
    width: 100%;
}

.cms-banner .post-thumbnail img {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

.cms-banner {
    /* height: 450px; */
    background-color: #000
}

.woocommerce div.product div.images.woocommerce-product-gallery {
    position: relative;
    padding-left: 86px !important;
}

.flex-viewport {
    /* border: 1px solid rgba(255, 255, 255, 0.40);
    background: transparent !important;
    box-shadow: 5px 5px 34.2px 0px rgba(166, 171, 189, 0.58), -5px -5px 10px 0px #FAFBFF;
    background-color: #fff !important; */
}

.product_detail .flex-control-thumbs {
    width: 100px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    overflow-y: auto;
    cursor: grab;
    height: 480px;
}

.product_detail .flex-control-thumbs li img {
    opacity: 1;
    border: 1px solid transparent;
    transition: 300ms ease;
}

.product_detail .images .flex-control-thumbs li {
    width: 70% !important;
    padding: 0 0 10px !important;
    float: none !important;
}



/* .woocommerce-tabs.wc-tabs-wrapper {
    display: none;
} */

.shoe-cnt p:first-child {
    line-height: 25px;
}

.shoe-cnt p {
    line-height: 30px;
}

.wp-block-tnp-minimal {
    padding: 0 !important;
}

.tnp-subscription-minimal {
    width: 64%;
    box-sizing: border-box;
    margin: 23px 0 0 0;
}

.tnp-subscription-minimal input.tnp-email,
.tnp-subscription-minimal input.tnp-name {
    width: 100%;
    max-width: 75%;
    border: 0;
    background-color: #f6ede3;
    color: #000;
    margin-right: 0;
    border-bottom: 2px solid #000;
    padding: 10px 43px;
}

.tnp-subscription-minimal input.tnp-submit {
    width: 29%;
    border-color: #000;
    background-color: #000;
    margin: 0;
    border-bottom: 2px solid #000;
    text-transform: uppercase;
    /* font-family: 'avenir_next_lt_probold' !important; */
    font-family: 'futura_md_btmedium' !important;
}

.newslatters p {
    display: none;
}

.newslatters {
    position: relative;
}

.newslatters img {
    position: absolute;
    top: 8px;
    left: 8px;
}

.post-thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    max-width: 100% !important;
}

/* .e-con-inner {
    width: 100% !important;
    max-width: 100% !important;
} */


.elementor *,
.elementor :after,
.elementor :before {
    font-family: 'avenir_next_lt_proregular' !important;
}


.footer .nav-item .nav-link {
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.9px;
    margin: 0;
    position: relative;
    font-weight: 400 !important;
    text-transform: capitalize;
    padding: 4px 0 !important;
}


.our-materials-temp .row:nth-child(odd) {
    flex-direction: row-reverse;
}


.single_add_to_cart_button {
    background: #111 !important;
    opacity: 1 !important;
    padding: 17px 12px !important;
    display: block;
    width: 100%;
    font-size: 20px !important;
}

.variable-item {
    border: 1.5px solid #C3C3C3;
    box-shadow: none !important;
    padding: 20px 11px !important;
}

.variable-item.selected {
    border: 1.5px solid #000;
}

.components-button {
    background-color: #000 !important;
    display: flex !important;
    color: #fff !important;
}


.page-template-homepage .wp-block-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.page-template-homepage .wp-block-video {
    height: 600px;
    width: 100%;
}
.cart-search {
    position: relative;
}

.cart-no {
    display: flex;
    background-color: #000;
    width: 22px;
    border-radius: 50%;
    height: 22px;
    font-size: 12px;
    text-align: center;
    color: #fff;
    position: absolute;
    top: -7px;
    left: 30px;
    align-items: center;
    justify-content: center;
}

.product-template-default .seller-product {
    padding: 0 !important;
}

.product_title {
    font-size: 28px;
    font-weight: 700;
}

.product_detail {
    background-color: #F5F5F7 !important;
    padding-top: 60px;
}

.product_detail del {
    color: #727272;
    font-weight: 900;
}

.product_detail ins {
    color: #000;
}

.product_detail .price {
    font-size: 18px !important;
    color: #212529 !important;
    font-family: 'futura_md_btmedium' !important;
}

.product_detail ul {
    padding: 0 0 0 16px;
}

.product_detail ul li {
    list-style: disc;
}








.sidebar {
    width: 40%;
    /* Set your desired width */
    position: fixed;
    top: 0;
    right: -100%;
    /* Off-screen initially */
    height: 100%;
    background-color: #f8f9fa;
    /* Set your desired background color */
    padding: 15px;
    transition: right 0.5s ease;
    z-index: 1050;
}

.sidebar.show {
    right: 0;
    /* Move on-screen */
}

.overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent overlay */
    z-index: 1040;
    display: none;
}

.overlay.show {
    display: block;
}


.pro-btn {
    border: 0;
    background-color: transparent;
    color: #2568EF;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.sta-raiting {
    margin-top: -3px;
    margin-right: 7px;
    width: 19px;
}




.form-check p {
    display: flex;
    align-items: center;
}

.wpcf7-list-item {
    display: flex;
    margin: 0 0 0 0;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.wpcf7-list-item-label {
    margin-right: 5px;
}

.wpcf7-list-item input {
    margin-right: 7px;
}

.text-are-box {
    height: 135px;
}


.about-page-link {
    text-align: center;
    margin-top: 0;
    position: relative;
    background: #000;
    border-top: 1px solid #ffffffa1;
    display: flex;
    justify-content: center;
}

.about-page-link a:hover,
.about-page-link .link-active {
    background-color: #fff;
    color: #000;
}

.about-page-link a {
    padding: 20px 26px;
    color: #fff;
}

.about-page-link a:nth-child(2) {
    border: 1px solid #ffffffa1;
    border-top: 0;
    border-bottom: 0;
}

.our-materials-temp .bg-gray img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    max-width: 100% !important;
}


.product-reviews {
    background-color: #f1f1f9;
}

.cr-meta-author-title .woocommerce-review__author {
    font-weight: 700 !important;
    color: #000 !important;
    font-size: 20px !important;
}

.product-reviews .review {
    background-color: #fff;
    padding: 20px !important;
}

.cr-all-reviews-shortcode .cr-summaryBox-wrap, .cr-reviews-grid .cr-summaryBox-wrap {
    background-color: #fff !important;
}

.cr-all-reviews-shortcode .cr-count-row, #reviews.cr-reviews-ajax-reviews .cr-count-row {
    background-color: #fff !important;
}
.cr-all-reviews-shortcode ol.commentlist li:last-child, .cr-all-reviews-shortcode ol.commentlist {
    margin-bottom: 0 !important;
}


.sub-menu-toggle {
    display: none;
}
.menu-item-has-children {
    position: relative;
}
.sub_menu_dropdown {
    position: absolute;
    top: 25px;
    padding: 32px 0 0 0;
    width: 216px;
    opacity: 0;
    display: inherit;
    visibility: hidden;
    z-index: -1;
    display: none;
}

.menu-item-has-children:hover .sub_menu_dropdown {
    visibility: visible;
    opacity: 1;
    z-index: inherit;
    margin-top: 0px;
    z-index: 999;
    display: block;
}

.sub_menu_dropdown .sub-menu {
    background-color: #fff;
    box-shadow: 0px 4px 5px rgb(0 0 0 / 15%);
    padding: 0 0 9px 0;
    transition: all .2s ease-in-out;
    border-top: 3px solid #000;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.menu-item-has-children:after {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    font-size: 0;
    z-index: 1;
    position: absolute;
    top: 13px;
    right: 14px;
    transform: rotate(45deg);
    border-color: #000;
    transition: all .2s ease-in-out;
    content: '';
}
.menu-item-has-children:hover:after {
    border-color: #000 !important;
    transform: rotate(225deg);
    top: 17px;
}

.sub-menu li a {
    display: block;
    padding: 5px 16px !important;
    position: relative;
}
.sub_menu_dropdown .sub-menu .nav-link {
    padding: 15px 16px 0 !important;
}


.fixed-header .sub_menu_dropdown {
    padding: 32px 0 0 0;
}

#reviews div.iv-comment-image img, div.iv-comment-image img {
    display: inline-block !important;
}


.sub-menu li a:hover:before {
    background: #000;
    margin-right: 5px;
    width: 15px;
}

.sub-menu li a::before {
    content: "";
    position: relative;
    top: -5px;
    width: 0px;
    height: 1px;
    display: inline-block;
    transition: all .5s ease-in-out;
}

.seller-product del {
    display: none !important;
}

.text-black a {
    color: #000;
    font-weight: 700;
}

.cr-all-reviews-shortcode ol.commentlist li .comment-text {
    border-bottom: 0 !important;
    padding: 0 !important;
}


.flex-direction-nav {
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    height: 510px;
    padding: 0;
    margin: 0;
}
.flex-direction-nav .flex-nav-prev{
    list-style: none;
}


.product-thum-panel {
    /* height: 535px; */
}



.flags img {
    width: 100%;
}

.our-team figure img {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
}


.wc-block-components-formatted-money-amount {
    font-weight: 700;
}




.page-id-7 .cms-banner, .page-id-8 .cms-banner{
    margin-top: 0;
}

.wc-block-components-form .wc-block-components-text-input.has-error input, .wc-block-components-form .wc-block-components-text-input.has-error input:active, .wc-block-components-form .wc-block-components-text-input.has-error input:focus, .wc-block-components-form .wc-block-components-text-input.has-error input:hover, .wc-block-components-text-input.has-error input, .wc-block-components-text-input.has-error input:active, .wc-block-components-text-input.has-error input:focus, .wc-block-components-text-input.has-error input:hover {
    border-color: #ced4da !important;
}

.wc-block-components-form .wc-block-components-text-input input[type=email], .wc-block-components-form .wc-block-components-text-input input[type=number], .wc-block-components-form .wc-block-components-text-input input[type=tel], .wc-block-components-form .wc-block-components-text-input input[type=text], .wc-block-components-form .wc-block-components-text-input input[type=url], .wc-block-components-text-input input[type=email], .wc-block-components-text-input input[type=number], .wc-block-components-text-input input[type=tel], .wc-block-components-text-input input[type=text], .wc-block-components-text-input input[type=url], .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input, .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {

    border: 1px solid #ced4da !important;
}

.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus, .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input[aria-expanded=true], .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus, .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input[aria-expanded=true] {
    box-shadow: 0 0 0 1px #ced4da !important;

}

.wc-block-components-title.wc-block-components-title {
    font-weight: 900;
}

.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
    border: 1px solid #000 !important;
}
.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:hover {
    background-color: transparent !important;
    border: 1px solid #000;
    color: #000 !important;
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    outline: 0;
    line-height: normal;
    border-radius: 0;
    padding: 13px;
    border: 1px solid #ced4da;
    background: #fff !important;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
    float: left;
    margin-right: 1em;
    background-color: #000;
    color: #fff;
    border-radius: 0;
}
.wc-item-meta {
    padding-left: 0;
}

.woocommerce-customer-details address {
    min-height: 177px;
}

.woocommerce-column__title, .woocommerce-order-details__title, .woocommerce-account .addresses .title h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.woocommerce ul.order_details {
    list-style: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    width: 80%;
    margin: 36px auto 3em;
}
.woocommerce ul.order_details li {
    padding: 25px 22px;
}

.button, .wc-block-components-notice-banner__content a.button.wc-forward {
    background: #000 !important;
    border-radius: 0;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    padding: 21px !important;
    font-weight: 700;
    color: #fff !important;
    opacity: 1 !important;
}


/**
 * My Account
 */

 .woocommerce-account .woocommerce-MyAccount-navigation {
	width: 20%;
}

.woocommerce-account .woocommerce-MyAccount-content {
  display: inline-block;
  float: left;
  margin-left: 5%;
  width: 75%;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    padding: 0;
	border-top: 1px solid #eee;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
	list-style: none;
	border-bottom: 1px solid #eee;
	padding-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a:before {
	opacity: 1;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
	padding: 10px 5px;
	display: block;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:before {
	margin-right: 20px;
    /* opacity: .25; */
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover:before {
	opacity: 1;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a:before {
    font-family: 'FontAwesome';
	content: "\f0e4";
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a:before {
    font-family: 'FontAwesome';
	content: "\f291";
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a:before {
    font-family: 'FontAwesome';
	content: "\f1c6";
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a:before {
    font-family: 'FontAwesome';
	content: "\f015";
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods a:before {
    font-family: 'FontAwesome';
	content: "\f09d";
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a:before {
    font-family: 'FontAwesome';
	content: "\f007";
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:before {
    font-family: 'FontAwesome';
	content: "\f08b";
}

.woocommerce-account .woocommerce-MyAccount-content h2 {
	font-size: 25px;
    text-align: center;
	font-weight: 600;
}

.woocommerce-account p.order-again {
    text-align: right;
}

.woocommerce-account .woocommerce-EditAccountForm input[type="submit"] {
    margin-top: 50px;
    float: right;
}


.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    color: #000;
    padding: 10px 10px !important;
}


.is-active a {
    background-color: #000;
    color: #fff !important;
}

.order a {
    color: #000;
    font-weight: 700;
}

.logged-in .wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #000 !important;
    border: 0;
    color: #fff!important;
    float: right;
    margin: 0;
    opacity: 1 !important;
    padding: 0!important;
    text-decoration-line: underline;
    text-underline-position: under;
    padding: 10px 12px !important;
}


.woocommerce-MyAccount-content a {
    color: #000;
    font-weight: 600;
}

.woocommerce span.onsale{
    display: none;
}

.wc-block-components-product-price__value.is-discounted {
    margin-left: 0 !important;
}

.product_detail del {
    display: none !important;
}

.wc-block-product-new{
    display: none;
}

.wp-block-woocommerce-empty-cart-block h2:first-child {
    display: block;
}

.bennietic-header .navbar-nav li:last-child a {
    padding-right: 0 !important;
    margin-right: 0 !important;
}

.product_detail .com-heading {
    font-size: 27px;
    margin-bottom: 14px;
}


.wp-block-woocommerce-cart-order-summary-coupon-form-block.wc-block-components-totals-wrapper, .wp-block-woocommerce-checkout-order-summary-coupon-form-block.wc-block-components-totals-wrapper {
    display: none !important;
}




.logo-section {
    margin-right: 15%;
}

#reviews.cr-reviews-ajax-reviews .cr-ajax-search, .cr-all-reviews-shortcode .cr-ajax-search {

    background-color: #fff !important;
    padding: 15px 19px;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
    height: 507px;
    overflow: hidden;
}



.product-listing .com-heading {
    text-align: center;
}


.team-dtl>p {
    margin-bottom: 6px;
    margin-top: 4px;
    /* font-family: 'avenir_next_lt_probold' !important; */
    text-transform: uppercase;
}


.inline-listing li {
    float: left;
    width: 50%;
    padding-right: 16px;
    margin-bottom: 7px;
}



@media (hover:hover) {
    .cat-panel p:after {
        content: " ";
        display: block;
        width: 0;
        height: 2px;
        background: #fff;
        transition: width .15s cubic-bezier(.4, 0, .2, 1)
    }

    .category-panel a:hover .cat-panel p:after {
        width: 100%
    }
}

.blog .seller-product {
    padding: 0;
    padding-right: 0;
}


.blog .owl-theme .owl-controls .owl-nav div {
    height: 45px !important;
    width: 45px !important;
    color: #000 !important;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: #fff;
    border-radius: 50%;
}

.blog .owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog .owl-theme .owl-controls {
    position: absolute;
    width: 109%;
    top: 40%;
    transform: translate(-50%, -50%);
    left: 50%;
}

.blog  .owl-prev:before, .blog  .owl-next:before {
    font-size: 15px;
}

.blog.shoe-care .owl-theme .owl-controls {
    top: 50%;
}


.flags img {
    width: 50%;
}



.best-seller-slider .seller-product h6 {
    font-family: 'futura_md_btmedium' !important;
}


.team-dtl>p {
    font-weight: 600;
}

.team-cnt p {
    color: #727272 !important;
}



.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item {
    width: 143px !important;
    margin: 0 !important;
    border: 0.1px solid #C3C3C3 !important;
    border-radius: 0 !important;
}

.woocommerce div.product form.cart .button {
    text-transform: capitalize !important;
}


.entry-content ul li {
    list-style: disc;
}

.woocommerce .woocommerce-breadcrumb{
    display: none !important;
}

.product_meta {
    display: none;
}

.seller-product figure {
    background-color: #fff;
}

.coppy-right a {
    color: #000;
}

.blog .seller-product figure img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    max-width: 100% !important;
    transition: all 0.3s ease-in-out;
}



.shoe-care-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    max-width: 100% !important;
}

.navigation.post-navigation {
    display: none;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item.selected:not(.no-stock) {
    background-color: #000;
    color: #fff;
}


.woo-variation-swatches [data-wvstooltip]:before, .wvs-has-image-tooltip:after, [data-wvstooltip]:after{
display: none;
}

.video-slider .owl-controls{
    text-align:center;
}

.post-template-default .post .container,
.post-template-default .entry-content .container {
    padding-left: 10%;
    padding-right: 10%;
}
figure.post-thumbnail,
figure.wp-block-image{
    text-align: center;
}
.post-thumbnail img{
    max-width: 500px !important;
}
.wp-block-image img {
    max-width: 500px;
}
.shoe-care .wp-block-image img {
    max-width: 100%;
}

@media screen and (max-width:767px){
    .post-thumbnail img{
        max-width: 100% !important;
    }
    .wp-block-image img {
        max-width: 100%;
    }
    .shoe-care .row > div {
        box-shadow: 0 0px 5px 2px rgb(0 0 0 / 15%);
        margin-bottom: 40px;
        padding-top: 10px;
    }
    
}

/* comment form css */
.comments-area {
    background: #fff;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 12px;
}
@media screen (max-width:767px) and (min-width: 576px) {
    .comments-area {
        max-width: 540px;
    }
}
.comments-area textarea#comment, 
.comments-area input[type="text"],
.comments-area input[type="email"],
.comments-area input[type="url"] {
    max-width: 100%;
    border-radius: 0;
    vertical-align: baseline;
    margin-bottom: 10px;
    background: #FAFAFA;
    border: 1px solid #dddddd;
    line-height: normal;
    padding: 4px 6px;
    display: block;
}
#comments .submit {
    padding: 15px 25px;
    border-radius: 0;
    border: 0;
    color: #fff;
    background-color: #000;
}
.comments-area textarea:focus-visible {
    border-radius: 0;
    background: #FAFAFA;
    border: 1px solid #dddddd;
}