html {
    --primary-color: #ff544a;
    --secondary-color: #1f2241;
    --dark-color: #4e4f54;
    --text-color: #4e4f54;
    --light-color: #fff;
    --white-color: #fff;
    --ternary-color: #FFE219;
}

body {
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: 15px;
    letter-spacing: 0;
    color: var(--dark-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    text-rendering: optimizeLegibility;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: grayscale;
    --text-opacity: 1;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -ms-touch-action: auto;
    touch-action: auto;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    padding: 0;
    margin: 0;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: var(--primary-color);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-decoration: none;
    outline: none;
    border: none;
}

a:hover,
a:active,
a:focus {
    color: var(--secondary-color);
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

button {
    border: none;
    outline: 0;
}

button:focus,
input:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

img {
    image-rendering: -webkit-optimize-contrast
}

.main-heading {
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
}

.main-heading h2 {
    margin-bottom: 10px;
    padding-bottom: 15px;
    font-size: 32px;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}

.main-heading h2::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    display: block;
    width: 200px;
    height: 3px;
    border-radius: 10px;
    background-color: var(--primary-color);
    z-index: -1;
}

@media (max-width: 767px) {
    .main-heading h2 {
        font-size: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .main-heading h2 {
        font-size: 24px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .main-heading h2 {
        font-size: 28px;
    }
}

.main-heading p {
    margin-bottom: 0;
}

.main-heading.heading-dark h2 {
    color: var(--primary-color);
}

.main-heading.heading-dark p {
    color: var(--dark-color);
}

.main-heading.heading-light h2 {
    color: var(--light-color);
}

.main-heading.heading-light p {
    color: var(--light-color);
}

.page-banner-section {
    padding-top: 75px !important;
    padding: 75px 0;
    background-position: center 33%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

@media (max-width:767px) {
    .page-banner-section {
        padding-top: 50px !important;
        padding: 50px 0;
    }
}

.page-banner-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(0 0 0 / .55);
    display: block;
    z-index: -1
}

.page-banner-section .vc_column-inner {
    padding: 0px !important
}

.page-banner-section h1 {
    font-size: 28px;
    color: var(--light-color);
    text-transform: capitalize
}

@media (max-width:767px) {
    .page-banner-section h1 {
        font-size: 20px
    }
}

@media (min-width:768px) and (max-width:991px) {
    .page-banner-section h1 {
        font-size: 22px
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .page-banner-section h1 {
        font-size: 24px
    }
}

.other-banner-section {
    position: relative;
}

.other-banner-section .other-banner-title {
	position: absolute;
	bottom: 0px;
	left: 0;
	background-color: rgba(0,0,0,0.55);
	padding: 6px;
	width: 100%;
}

.other-banner-section .other-banner-title h1 {
	color: var(--light-color);
	margin: 0;
	padding: 0;
}

.other-banner-section .vc_column-inner {
    padding: 0px !important
}

.other-banner-section h1 {
    margin-top: 40px;
    font-size: 32px;
    color: var(--dark-color);
    text-transform: capitalize
}

@media (max-width:767px) {
    .other-banner-section h1 {
        font-size: 20px
    }
}

@media (min-width:768px) and (max-width:991px) {
    .other-banner-section h1 {
        font-size: 22px
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .other-banner-section h1 {
        font-size: 24px
    }
}

.general-page-section {
    background-color: #f9f9f9;
    padding: 75px 0;
    padding-top: 75px !important;
    position: relative;
}

@media (max-width:767px) {
    .general-page-section {
        padding: 50px 0;
        padding-top: 50px !important;
    }
}

.woocommerce-page-setting {
    position: relative;
}

.woocommerce-page-setting.is-woocommerce {
    padding: 0 0 50px;
}

.woocommerce-page-setting.is-woocommerce .woocommerce ul.products li.product a img {
    border-radius: 5px !important;
}

body.is-category-page .woocommerce-page-setting .term-description,
body.is-subcategory-page .woocommerce-page-setting .term-description {
    display: none;
}

body.is-category-page .woocommerce-page-setting ul.products {
    display: none;
}

body.is-category-page .woocommerce-page-setting ul.subcategory-list.products {
    display: flex;
}

.woocommerce-page-setting .product-category-img img {
    border: 4px solid #e2e2e2;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    filter: brightness(114%) opacity(94%);
    transition: filter 0.3s ease;
}

.woocommerce-page-setting .product-category-img:hover img {
    filter: brightness(100%) opacity(100%);
}

@media (max-width: 767px) {
    .woocommerce-page-setting .product-category-img {
        margin-top: 30px;
    }
}

.woocommerce-page-setting ul.products {
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
    margin-bottom: 0;
    padding: 0;
}

.woocommerce-page-setting ul.products li.product a img {
    margin: 0 !important;
    overflow: hidden;
}

.woocommerce-page-setting ul.products li {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 5px;
    padding-left: calc(var(--bs-gutter-x) * .5) !important;
    padding-right: calc(var(--bs-gutter-x) * .5) !important;
    text-align: center;
    margin: 0 !important;
    margin-top: 10px !important;
    margin-bottom: 20px !important;
    width: 25% !important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.woocommerce-page-setting ul.products.subcategory-list li {
    width: 16.66% !important;
}

body.is-subcategory-page .woocommerce-page-setting ul.products li {
    width: 16.66% !important;
}

.woocommerce-page-setting ul.products li .count {
    display: none !important;
}

.woocommerce-page-setting ul.products li a {
    overflow: hidden;
    display: block;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.woocommerce-page-setting ul.products li h2 {
    text-transform: capitalize !important;
    color: var(--primary-color) !important;
    font-size: .875rem !important;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 0.5em !important;
    overflow: hidden
}

.woocommerce-page-setting ul.products.subcategory-list li h2 {
    font-size: .75rem !important;
    min-height: 52px;
}

.woocommerce-page-setting.is-woocommerce .woocommerce-pagination {
    margin-top: 20px;
}

.woocommerce-page-setting.is-woocommerce .woocommerce-pagination ul {
    border: 1px solid #cfc8d8;
    margin: 0px;
}

.woocommerce-page-setting.is-woocommerce .woocommerce-pagination ul li {
    padding: 0;
    border-right: 0px;
}

.woocommerce-page-setting.is-woocommerce .woocommerce-pagination ul li span,
.woocommerce-page-setting.is-woocommerce .woocommerce-pagination ul li a {
    padding: 7px 10px;
    background-color: #f9f9f9;
    border: 1px solid transparent;
}

.woocommerce-page-setting.is-woocommerce .woocommerce-pagination ul li a:hover,
.woocommerce-page-setting.is-woocommerce .woocommerce-pagination ul li a:active,
.woocommerce-page-setting.is-woocommerce .woocommerce-pagination ul li a:focus {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.woocommerce-page-setting.is-woocommerce .woocommerce-pagination ul li span.current {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--light-color);
}

@media (max-width: 767px) {
    .woocommerce-page-setting ul.products li {
        width: 50% !important;
    }

    .woocommerce-page-setting ul.products.subcategory-list li {
        width: 50% !important;
    }

    body.is-subcategory-page .woocommerce-page-setting ul.products li {
        width: 50% !important;
    }

    .woocommerce-page-setting ul.products li h2 {
        padding: 10px 1px !important;
        font-size: 12px !important;
        letter-spacing: 0px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .woocommerce-page-setting ul.products.subcategory-list li {
        width: 33.33% !important;
    }

    body.is-subcategory-page .woocommerce-page-setting ul.products li {
        width: 33.33% !important;
    }
}

.woocommerce-page-setting button.wc-block-components-checkout-place-order-button {
    background-color: var(--primary-color) !important;
    color: var(--light-color) !important;
    border: 1px solid var(--primary-color) !important;
    border-radius: 5px;
}

.woocommerce-page-setting button.wc-block-components-checkout-place-order-button:hover,
.woocommerce-page-setting button.wc-block-components-checkout-place-order-button:focus,
.woocommerce-page-setting button.wc-block-components-checkout-place-order-button:active {
    background-color: var(--secondary-color) !important;
    color: var(--light-color) !important;
    border: 1px solid var(--secondary-color) !important;
}

.woocommerce-page-setting a.wc-block-components-checkout-return-to-cart-button {
    background-color: var(--secondary-color) !important;
    border: 1px solid var(--secondary-color) !important;
    color: var(--light-color) !important;
    display: block;
    height: 52px;
    line-height: 50px;
    border-radius: 5px;
    padding: 0 35px;
}

.woocommerce-page-setting a.wc-block-components-checkout-return-to-cart-button:hover,
.woocommerce-page-setting a.wc-block-components-checkout-return-to-cart-button:focus,
.woocommerce-page-setting a.wc-block-components-checkout-return-to-cart-button:active {
    background-color: var(--primary-color) !important;
    color: var(--light-color) !important;
    border: 1px solid var(--primary-color) !important;
}

.woocommerce-page-setting .woocommerce #btn-razorpay,
.woocommerce-page-setting .woocommerce #btn-razorpay-cancel {
    background-color: var(--secondary-color) !important;
    border: 1px solid var(--secondary-color) !important;
    color: var(--light-color) !important;
    display: block;
    height: 52px;
    line-height: 50px;
    border-radius: 5px;
    margin-right: 10px;
    display: inline-block;
    padding: 0 15px;
    min-width: 90px;
}

.woocommerce-page-setting.is-woocommerce .woocommerce ul.order_details {
    border: 2px solid #ddd;
    margin-top: 20px;
    padding: 0;
}

.woocommerce-page-setting.is-woocommerce .woocommerce ul.order_details li {
    padding: 15px;
    margin: 0;
}

.slider-arrow .carousel-item {
    position: relative;
}

.slider-arrow .carousel-control-prev {
    left: 15px;
}

.slider-arrow .carousel-control-next {
    right: 15px;
}

.slider-arrow .carousel-control-prev,
.slider-arrow .carousel-control-next {
    color: var(--dark-color);
    opacity: 1;
    width: 50px;
    height: 50px;
    top: 50%;
    z-index: 2;
}

@media (max-width: 767px) {

    .slider-arrow .carousel-control-prev,
    .slider-arrow .carousel-control-next {
        width: 30px;
        top: 30%;
    }
}

.slider-arrow .carousel-control-prev .carousel-control-prev-icon {
    background-image: url("../images/slider-prev.svg");
}

.slider-arrow .carousel-control-next .carousel-control-next-icon {
    background-image: url("../images/slider-next.svg");
}

.slider-arrow .carousel-control-prev .carousel-control-prev-icon,
.slider-arrow .carousel-control-next .carousel-control-next-icon {
    height: 50px;
    line-height: 47px;
    width: 50px;
    background-color: var(--primary-color);
    background-size: 40%;
    background-repeat: no-repeat;
    border-radius: 50%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
}

@media (max-width: 767px) {

    .slider-arrow .carousel-control-prev .carousel-control-prev-icon,
    .slider-arrow .carousel-control-next .carousel-control-next-icon {
        height: 30px;
        width: 30px;
        line-height: 27px;
    }
}

.slider-arrow .carousel-control-prev .carousel-control-prev-icon::before,
.slider-arrow .carousel-control-next .carousel-control-next-icon::before {
    position: absolute;
    content: '';
    display: block;
    color: var(--light-color);
    left: 0;
    right: 0;
}

.slider-arrow .carousel-control-prev .carousel-control-prev-icon:hover,
.slider-arrow .carousel-control-next .carousel-control-next-icon:hover {
    background-color: var(--secondary-color);
}

@-webkit-keyframes moveBounce {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes moveBounce {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes off-on {
    0% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes off-on {
    0% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.theme-btn a {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 20px !important;
    min-width: 165px;
    border-radius: 30px !important;
    text-transform: capitalize;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 767px) {
    .theme-btn a {
        padding: 8px 15px;
        min-width: 125px;
        font-size: 14px;
    }
}

.theme-btn.primary-btn a {
    color: var(--light-color) !important;
    border: 1px solid var(--primary-color) !important;
    background-color: var(--primary-color) !important;
}

.theme-btn.primary-btn a:hover,
.theme-btn.primary-btn a:focus,
.theme-btn.primary-btn a:active {
    color: var(--light-color) !important;
    border: 1px solid var(--secondary-color) !important;
    background-color: var(--secondary-color) !important;
}

.theme-btn.secondary-btn a {
    color: var(--light-color) !important;
    border: 1px solid var(--secondary-color) !important;
    background-color: var(--secondary-color) !important;
}

.theme-btn.secondary-btn a:hover,
.theme-btn.secondary-btn a:focus,
.theme-btn.secondary-btn a:active {
    color: var(--light-color) !important;
    border: 1px solid var(--primary-color) !important;
    background-color: var(--primary-color) !important;
}

.theme-btn.white-btn a {
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    background-color: var(--white-color) !important;
}

.theme-btn.white-btn a:hover,
.theme-btn.white-btn a:focus,
.theme-btn.white-btn a:active {
    color: var(--secondary-color) !important;
    border: 1px solid var(--secondary-color) !important;
    background-color: var(--white-color) !important;
}

.site-header {
    background: #f9f9f961;
    position: relative;
    z-index: 11;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .site-header {
        background-color: #f9f9f9;
    }
}

@media (max-width: 991px) {
    .site-header .container {
        padding: 0;
        max-width: 100%;
    }
}

.site-header .header-top {
    background-color: var(--primary-color);
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .site-header .header-top {
        display: none;
    }
}

.site-header .navbar-brand {
    margin: 0;
    padding: 0;
}

.site-header .navbar-brand img {
    max-width: 150px;
    width: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .site-header .navbar-brand img {
        max-width: 125px;
    }
}

.site-header .header-bottom {
    padding: 5px 0;
}

.site-header .navbar {
    margin: 0;
    padding: 0;
    border-radius: 0;
    border: 0;
}

@media (max-width: 991px) {
    .site-header .navbar {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .site-header .navbar .navbar-nav {
        margin: 0;
    }
}

.site-header .navbar .navbar-nav li {
    display: inline-block;
}

.site-header .navbar .navbar-nav li.dropdown:nth-last-child(2) .dropdown-menu,
.site-header .navbar .navbar-nav li.dropdown:last-child .dropdown-menu {
    left: auto;
    right: 0;
}

@media (max-width: 767px) {
    .site-header .navbar .navbar-nav li {
        display: block;
    }
}

.site-header .navbar .navbar-nav li a {
    text-transform: capitalize;
    padding: 10px;
    font-size: 16px;
    line-height: 48px;
    font-weight: 600;
    color: var(--dark-color);
    display: block;
    text-align: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.site-header .navbar .navbar-nav li a:hover,
.site-header .navbar .navbar-nav li a:active,
.site-header .navbar .navbar-nav li a:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--light-color);
    background: var(--primary-color);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .site-header .navbar .navbar-nav li a {
        color: var(--dark-color);
        font-size: 16px;
        line-height: 24px !important;
        border-top: 1px solid #eee;
    }

    .site-header .navbar .navbar-nav li a:hover,
    .site-header .navbar .navbar-nav li a:active,
    .site-header .navbar .navbar-nav li a:focus {
        outline: 0 !important;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .site-header .navbar .navbar-nav li a {
        font-size: 13px;
        padding: 10px 7px;
    }
}

@media (max-width: 991px) {
    .site-header .navbar .navbar-nav li:last-child a {
        border-bottom: 1px solid #eee;
    }
}

@media (min-width: 992px) {
    .site-header .navbar .navbar-nav li.dropdown:hover .dropdown-menu {
        display: block;
    }
}

.site-header .navbar .navbar-nav li .dropdown-menu {
    border: none;
    border-top: none;
    border-bottom: none;
    top: 68px;
    background-color: var(--light-color);
    border-radius: 0;
    padding: 0;
    min-width: 13rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 0px;
}

@media (max-width: 991px) {
    .site-header .navbar .navbar-nav li .dropdown-menu {
        margin: 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .site-header .navbar .navbar-nav li .dropdown-menu {
        left: auto;
        right: 0;
    }
}

.site-header .navbar .navbar-nav li ul li {
    display: block;
}

.site-header .navbar .navbar-nav li ul li a {
    padding: 15px;
    font-size: 14px;
    line-height: 1;
    background: var(--primary-color);
    color: var(--light-color);
    border-bottom: 1px dotted var(--light-color);
    display: block;
    text-align: left;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.site-header .navbar .navbar-nav li ul li a:hover {
    color: var(--seconadry-color);
    background: var(--light-color);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 992px) {
    .site-header .navbar .navbar-nav li ul li a {
        text-align: center;
    }
}

.site-header .navbar .navbar-nav li ul li:last-child a {
    border-bottom: 0px dotted var(--light-color);
}

.site-header .navbar .navbar-toggler {
    background: transparent;
    border-radius: 0;
    outline: none;
    padding: .25rem;
    border: 0;
}

.site-header .navbar .navbar-toggler:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.site-header .navbar .navbar-toggler .icon-bar {
    width: 22px;
    height: 2px;
    background-color: var(--primary-color);
    display: block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    margin: 4px 0;
}

.site-header .navbar .navbar-toggler .top-bar {
    -webkit-transform: rotate(-42deg);
    transform: rotate(-42deg);
    -webkit-transform-origin: 90% 90%;
    transform-origin: 90% 90%;
}

.site-header .navbar .navbar-toggler .middle-bar {
    opacity: 0;
}

.site-header .navbar .navbar-toggler .bottom-bar {
    -webkit-transform: rotate(42deg);
    transform: rotate(42deg);
    -webkit-transform-origin: 90% 10%;
    transform-origin: 90% 10%;
}

.site-header .navbar .navbar-toggler.collapsed .top-bar {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.site-header .navbar .navbar-toggler.collapsed .middle-bar {
    opacity: 1;
}

.site-header .navbar .navbar-toggler.collapsed .bottom-bar {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.site-header .navbar-collapse {
    position: relative;
}

@media (max-width: 991px) {
    .site-header .navbar-collapse {
        position: absolute;
        top: 70px;
        left: -100%;
        padding: 0;
        width: 100%;
        text-align: center;
        overflow-y: scroll;
        height: calc(100vh - 70px);
        display: block;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        overflow-y: scroll;
    }

    .site-header .navbar-collapse.collapsing {
        height: calc(100vh - 70px);
        margin-right: 50%;
        display: block;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }

    .site-header .navbar-collapse.show {
        left: 0;
        background: var(--light-color);
    }
}

.site-header .menu-main-menu-container {
    margin-left: auto;
}


#header li a.dropdown-toggle::after {
    border: none;
    position: relative;
    top: 1px;
    margin-left: 4px;
    height: 6px;
    width: 6px;
    border-right: 2px solid var(--light-color);
    border-bottom: 2px solid var(--light-color);
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
    transform: translate3d(0, 0, 0) rotate(45deg);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out
}

#header li a:hover.dropdown-toggle::after {
    border-right: 2px solid var(--light-color);
    border-bottom: 2px solid var(--light-color)
}

@media (max-width:991px) {
    #header li a.dropdown-toggle::after {
        border-right: 2px solid var(--primary-color);
        border-bottom: 2px solid var(--primary-color)
    }

    #header li a:hover.dropdown-toggle::after {
        border-right: 2px solid var(--primary-color);
        border-bottom: 2px solid var(--primary-color)
    }

    #header li.show .dropdown-toggle::after {
        transform: rotate(228deg);
        top: 3px;
        transform: rotate(135deg);
    }

    #header li a:hover.dropdown-toggle::after {
        top: 1px
    }

    #header .dropdown .dropdown-menu {
        width: 100%;
        text-align: center
    }
}

@media (min-width:992px) {
    #header li a:hover.dropdown-toggle::after {
        top: 4px;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg)
    }

    #header li.menu-item-has-children:hover .sub-menu.dropdown-menu {
        display: block
    }
}

@media(min-width:992px) {
    #header .sub-menu {
        display: none
    }
}

#header .sub-menu.dropdown-menu {
    border: none;
    border-top: none;
    border-bottom: none;
    border-radius: 0;
    padding: 0;
    top: 48px;
    background-color: var(--light-color);
    min-width: 200px;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 0
}

#header .sub-menu li {
    cursor: pointer;
    display: block
}

#header .sub-menu li:last-child a,
#header .sub-menu li:last-child a:hover {
    border-bottom: 0px;
}

#header .sub-menu li a {
    background: var(--primary-color);
    color: var(--light-color);
    border-bottom: 1px dotted var(--light-color);
    width: 100%;
    font-size: 13px;
    letter-spacing: .5px;
    line-height: 1;
    padding: 11px;
    border-radius: 0;
    display: inline-block;
    text-align: left;
    text-transform: capitalize;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer
}

@media (max-width:991px) {
    #header .sub-menu li a {
        text-align: center
    }
}

#header .sub-menu li a:hover,
#header .sub-menu li a:active,
#header .sub-menu li a:focus {
    background: #f9f9f9;
    color: var(--primary-color);
    border-bottom: 1px dotted var(--light-color);
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer
}

.site-header .wc-login-cart {
    display: flex;
    align-items: center;
    margin-left: 25px;
}

@media (max-width: 991px) {
    .site-header .wc-login-cart {
        margin-left: 0px;
        margin-right: 10px;
    }

    .site-header .wc-login-cart.mobile-view {
        display: none;
    }
}

.site-header .wc-login-cart a {
    text-align: center;
    position: relative;
    display: block;
    height: 30px;
    width: 30px;
    border-radius: 5px;
    text-align: center;
    line-height: 28px;
    margin-left: 10px;
}

.site-header .wc-login-cart a.login-box {
    background-color: var(--primary-color);
}

.site-header .wc-login-cart a.cart-box {
    background-color: var(--secondary-color);
}

.site-header .wc-login-cart a .cart-value {
    position: absolute;
    right: -8px;
    top: -4px;
    background-color: var(--primary-color);
    color: var(--light-color);
    display: block;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    line-height: 17px;
    text-align: center;
}

.contact-info ul {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 0;
}

.contact-info ul li {
    display: inline-block;
}

.contact-info ul li a {
    font-size: 15px;
    font-weight: 500;
    display: block;
    color: var(--light-color);
    margin-right: 15px;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.contact-info ul li a:hover {
    text-decoration: underline;
}

.contact-info ul li a img {
    margin-right: 5px;
    max-width: 16px;
    position: relative;
    top: -3px;
}

.contact-info ul li:last-child a {
    margin-right: 0;
}

.contact-social ul {
    margin: 0;
    padding: 0;
    font-size: 0;
}

.contact-social ul li {
    display: inline-block;
    padding-left: 5px;
}

.contact-social ul li a {
    display: block;
    text-align: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.contact-social ul li a img {
    max-width: 25px;
}

.site-footer {
    background-image: url("../images/footer-section.jpg");
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.site-footer .pre-footer {
    padding: 40px 0;
}

.site-footer .pre-footer .footer-logo {
    max-width: 160px;
    display: block;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .site-footer .footer-menu {
        margin: 15px 0;
    }
}

.site-footer .footer-menu .widget-title {
    color: var(--ternary-color);
    text-transform: capitalize;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    z-index: 1;
    position: relative;
}

.site-footer .footer-menu .textwidget p {
    color: var(--light-color);
    margin-bottom: 0;
    line-height: 1.9;
    font-size: 15px;
    max-width: 445px;
    width: 100%;
}

@media (max-width: 991px) {
    .site-footer .footer-menu .textwidget p {
        max-width: 100%;
    }
}

.site-footer .footer-menu ul {
    padding-left: 15px;
}

.site-footer .footer-menu ul li {
    list-style: square;
    color: var(--light-color);
    padding: 3px 0;
}

.site-footer .footer-menu ul li:hover {
    color: var(--primary-color);
}

.site-footer .footer-menu ul li a {
    font-size: 15px;
    position: relative;
    color: var(--light-color);
    display: inline-block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 500;
}

@media (max-width: 991px) {
    .site-footer .footer-menu ul li a {
        font-size: 13px;
        text-transform: capitalize;
        padding: 3px 0;
    }
}

.site-footer .footer-menu ul li a::before {
    position: absolute;
    content: '';
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--light-color);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    display: inline-block;
}

.site-footer .footer-menu ul li a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

.site-footer .footer-menu ul li a:hover::before {
    width: 100%;
    background-color: var(--primary-color);
}

.site-footer .copyright-footer {
    background-color: var(--secondary-color);
    padding: 25px 0;
}

@media (max-width: 767px) {
    .site-footer .copyright-footer {
        text-align: center;
    }
}

.site-footer .copyright-footer .copyright-footer-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

@media (max-width: 767px) {
    .site-footer .copyright-footer .copyright-footer-inner {
        display: block;
    }
}

.site-footer .copyright-footer p {
    margin-bottom: 0;
    color: var(--light-color);
    font-size: 15px;
    line-height: 1.5;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 767px) {
    .site-footer .copyright-footer p {
        margin-top: 25px;
    }
}

.site-footer .copyright-footer p a {
    color: var(--primary-color);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.site-footer .copyright-footer p:hover a {
    color: var(--light-color);
    text-decoration: underline;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.site-footer .copyright-footer .footer-bottom-menu ul li {
    display: inline-block;
    margin-left: 10px;
}

.site-footer .copyright-footer .footer-bottom-menu ul li:first-child {
    margin-left: 0;
}

.scrollToTop {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    bottom: 20px;
    display: block;
    height: 32px;
    width: 32px;
    opacity: 1;
    position: fixed;
    right: 20px;
    line-height: 30px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    z-index: 100;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.scrollToTop:hover,
.scrollToTop:focus,
.scrollToTop:active {
    background-color: var(--secondary-color);
    color: var(--light-color);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.home-slider-section {
	position: relative;
	z-index: 1;
}

.home-slider-section img {
    border-radius: 10px;
}

.popular-product-section {
    padding: 40px 0 20px;
    padding-top: 40px !important;
    position: relative;
}

.popular-product-section .slider-arrow {
    overflow: hidden;
}

.popular-product-section .slider-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 2s ease-in-out;
    will-change: transform;
}

.popular-product-section .slider-track .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

@media (max-width: 991px) {
    .popular-product-section .slider-track .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .popular-product-section .products li.product.col-md-3 {
        width: 50% !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .popular-product-section .products li.product.col-md-3 {
        width: 33.33% !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .popular-product-section .products li.product.col-md-3 {
        width: 25% !important;
    }
}

.popular-product-section .products .product-subcategories,
.popular-product-section .products span.price,
.popular-product-section .products .add_to_cart_button,
.popular-product-section .products span.onsale {
    display: none !important;
}

.popular-product-section .products img {
    border-radius: 5px !important;
}

.kidy-facility-section {
    padding: 50px 0 75px;
    padding-top: 50px !important;
    position: relative;
}

@media (max-width: 767px) {
    .kidy-facility-section {
        padding: 15px 0;
        padding-top: 15px !important;
    }
}

.kidy-facility-section .facility-line {
    position: relative;
    z-index: 1;
}

.kidy-facility-section .facility-line::after {
    content: '';
    position: absolute;
    right: 4px;
    bottom: -3px;
    width: 15px;
    height: 66px;
    background-image: url("../images/facility.png");
    background-position: center;
    background-size: contain;
    display: block;
    z-index: 0;
    background-repeat: no-repeat;
}

@media (max-width: 991px) {
    .kidy-facility-section .facility-line::after {
        background-image: none;
        width: 0;
        height: 0;
    }
}

.kidy-facility-section .facility-line:last-child::after {
    width: 0;
    height: 0;
    background-image: none;
}

.kidy-facility-section .kidy-facility-wrapper>.vc_column-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.kidy-facility-section .kidy-facility-wrapper>.vc_column-inner>.wpb_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .kidy-facility-section .kidy-facility-wrapper>.vc_column-inner>.wpb_wrapper {
        margin: 5px 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .kidy-facility-section .kidy-facility-wrapper>.vc_column-inner>.wpb_wrapper {
        display: block;
        background-color: var(--light-color);
        border-radius: 5px;
        -webkit-box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.07);
        box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.07);
        padding: 10px;
        min-height: 150px;
    }
}

.kidy-facility-section .kidy-facility-wrapper .kidy-facility-image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 60px;
    margin-right: 15px;
}

.kidy-facility-section .kidy-facility-wrapper .kidy-facility-image img {
    width: 60px;
}

@media (max-width: 767px) {
    .kidy-facility-section .kidy-facility-wrapper .kidy-facility-image {
        width: 45px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .kidy-facility-section .kidy-facility-wrapper .kidy-facility-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 1199px) {
    .kidy-facility-section .kidy-facility-wrapper .kidy-facility-image {
        width: 45px;
    }

    .kidy-facility-section .kidy-facility-wrapper .kidy-facility-image img {
        width: 45px;
    }
}

.kidy-facility-section .kidy-facility-wrapper .main-heading h2 {
    margin-bottom: 5px;
    font-size: 18px;
    text-transform: capitalize;
    padding: 0;
}

.kidy-facility-section .kidy-facility-wrapper .main-heading h2::after {
    width: 0;
    height: 0;
    background-image: none;
}

@media (min-width: 768px) and (max-width: 991px) {
    .kidy-facility-section .kidy-facility-wrapper .main-heading h2 {
        font-size: 15px;
        margin-top: 10px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .kidy-facility-section .kidy-facility-wrapper .main-heading h2 {
        font-size: 17px;
    }
}

.kidy-facility-section .kidy-facility-wrapper .main-heading p {
    font-size: 15px;
    line-height: 1.25;
    color: var(--dark-color);
}

@media (min-width: 768px) and (max-width: 991px) {
    .kidy-facility-section .kidy-facility-wrapper .main-heading p {
        font-size: 14px;
    }
}

.stationery-category-section {
    padding-bottom: 40px;
    padding-top: 1px !important;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .stationery-category-section {
        padding-bottom: 40px;
        padding-top: 1px !important;
    }
}

.stationery-category-section .stationery-category-inner {
    background-color: var(--light-color);
    -webkit-box-shadow: 0 4px 30px #0000001a;
    box-shadow: 0 4px 30px #0000001a;
    padding: 15px 20px;
    border-radius: 20px;
    position: relative;
}

@media (max-width: 767px) {
    .stationery-category-section .stationery-category-inner {
        padding: 15px;
    }
}

.stationery-category-inner ul.products li.product-category {
    flex: 1 0 0%;
}

@media (max-width: 575px) {
    .stationery-category-inner ul.products li.product-category {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
        flex: 1 0 50%;
    }
}

@media (min-width: 575px) and (max-width: 767px) {
    .stationery-category-inner ul.products li.product-category {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 33%;
        flex: 1 0 33%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .stationery-category-inner ul.products li.product-category {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 25%;
        flex: 1 0 25%;
    }
}

@media (min-width: 991px) and (max-width: 1199px) {
    .stationery-category-inner ul.products li.product-category {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 16%;
        flex: 1 0 16%;
    }
}

@media (min-width: 1199px) and (max-width: 1449px) {
    .stationery-category-inner ul.products li.product-category {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 16%;
        flex: 1 0 16%;
    }
}

.stationery-category-inner ul.products li.product-category a {
    padding: 5px;
    border: 1px dotted var(--primary-color);
    border-radius: 5px;
}

.stationery-category-inner ul.products li.product-category a img {
    border-radius: 5px;
}

.stationery-category-inner ul.products li.product-category:hover a {
    border: 1px solid var(--primary-color);
}

.stationery-category-inner ul.products li.product-category h2 {
    min-height: 50px;
}

.kidykit-category-section .kidykit-category-wraper>.vc_column-inner {
    position: relative;
    z-index: 1;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0px 5px 15px 0 rgba(50, 50, 50, 0.05);
    box-shadow: 0px 5px 15px 0 rgba(50, 50, 50, 0.05);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 767px) {
    .kidykit-category-section .kidykit-category-wraper>.vc_column-inner {
        margin: 10px 0;
    }
}

.kidykit-category-section .kidykit-category-wraper h2 {
    font-size: 16px;
    color: var(--dark-color);
    margin-bottom: 5px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.kidykit-category-section .kidykit-category-wraper p.span-btn {
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 700;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.kidykit-category-section .kidykit-category-wraper .kidykit-category-content {
    background-color: #e4f7ff;
    padding: 10px;
    border-radius: 10px;
    margin-top: 15px;
}

.kidykit-category-section .kidykit-category-wraper img {
    border-radius: 10px;
}

.kidykit-category-section .kidykit-category-wraper>.vc_column-inner:hover {
    border: 1px dotted var(--primary-color);
    -webkit-box-shadow: 1px 2px 5px 0 rgba(50, 50, 50, 0.05);
    box-shadow: 1px 2px 5px 0 rgba(50, 50, 50, 0.05);
}

.kidykit-category-section .kidykit-category-wraper:hover h2 {
    color: var(--primary-color);
}

.kidykit-category-section .kidykit-category-wraper:hover p.span-btn {
    color: var(--secondary-color);
    text-decoration: underline;
}

.kidy-about-section {
    background-color: #f5fcff;
    padding-bottom: 75px;
    padding-top: 75px !important;
    margin-bottom: 75px;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .kidy-about-section {
        padding-bottom: 50px;
        padding-top: 50px !important;
    }
}

.kidy-about-section .main-heading h2::after {
    right: unset;
}

.kidy-about-section .kidy-about-content h3 {
    margin-bottom: 5px;
    padding-left: 25px;
    font-size: 18px;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.kidy-about-section .kidy-about-content h3::after {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background-image: url("../images/arrow-circle.svg");
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.kidy-about-section .kidy-about-content p {
    padding-left: 25px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.kidykit-category-section {
    padding-bottom: 40px;
    padding-top: 0px !important;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .kidykit-category-section {
        padding-bottom: 40px;
        padding-top: 0px !important;
    }
}

.kidykit-category-section .kidykit-category-image {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    -webkit-box-shadow: 0px 5px 15px 0 rgba(50, 50, 50, 0.05);
    box-shadow: 0px 5px 15px 0 rgba(50, 50, 50, 0.05);
    background-color: var(--light-color);
    padding: 2px;
}

.kidykit-category-section .kidykit-category-image img {
    border-radius: 8px;
    overflow: hidden;
}

.kidykit-category-section h2.category-heading {
    font-size: 32px;
    color: var(--light-color);
    position: absolute;
    left: 35px;
    bottom: 20px;
    max-width: 130px;
    width: 100%;
    text-shadow: 2px 2px 4px #000;
    z-index: 2;
}

@media (max-width: 991px) {
    .kidykit-category-section h2.category-heading {
        font-size: 24px;
    }
}

.instagram-quiz-section {
    padding-bottom: 40px;
    padding-top: 0px !important;
    position: relative;
}

@media (max-width: 767px) {
    .instagram-quiz-section {
        padding-bottom: 40px;
        padding-top: 0px !important;
    }
}

.instagram-quiz-section .instagram-quiz-image img {
    border-radius: 10px;
    overflow: hidden;
}

.kidy-stationeryOffer-section {
    padding-bottom: 40px;
    padding-top: 0px !important;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .kidy-stationeryOffer-section {
        padding-bottom: 40px;
        padding-top: 0px !important;
    }
}

.kidy-stationeryOffer-section .kidy-stationeryOffer-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.kidy-stationeryOffer-section .kidy-stationeryOffer-wrapper a {
    display: block;
}

.home-blog-section {
    position: relative;
    padding-bottom: 40px;
    padding-top: 0 !important;
    z-index: 1;
}

.home-blog-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/blog-after.png");
    background-size: cover;
    opacity: 0.5;
    z-index: -1;
}

@media (max-width: 767px) {
    .home-blog-section {
        padding-bottom: 40px;
        padding-top: 0 !important;
    }
}

.home-blog-section .blog-wrapper {
    z-index: 1;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.home-blog-section .blog-wrapper .blog-wrapper-linking {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    font-size: 0;
    z-index: 2;
}

.home-blog-section .blog-wrapper .blog-wrapper-img {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.home-blog-section .blog-wrapper .blog-wrapper-img img {
    overflow: hidden;
    border-radius: 10px;
}

.home-blog-section .blog-wrapper .blog-wrapper-img .blog-date {
    position: absolute;
    left: 10px;
    top: 10px;
    background-color: var(--primary-color);
    color: var(--light-color);
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
}

.home-blog-section .blog-wrapper h2 {
    color: var(--dark-color);
    font-size: 17px;
    margin: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 991px) {
    .home-blog-section .blog-wrapper h2 {
        font-size: 14px;
    }

    .home-blog-section .blog-wrapper .blog-date {
        font-size: 13px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home-blog-section .blog-wrapper h2 {
        font-size: 13px;
    }

    .home-blog-section .blog-wrapper .blog-date {
        font-size: 13px;
    }
}

.home-blog-section .blog-wrapper p {
    color: var(--dark-color);
}

.home-blog-section .blog-wrapper:hover h2 {
    color: var(--primary-color);
}

.home-blog-section .blog-wrapper.big-box {
    border-radius: 10px;
    overflow: hidden;
}

.home-blog-section .blog-wrapper.big-box::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(62.66%, rgba(0, 0, 0, 0)), color-stop(76.49%, rgba(0, 0, 0, 0.7)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 62.66%, rgba(0, 0, 0, 0.7) 76.49%);
    display: block;
    z-index: 1;
}

.home-blog-section .blog-wrapper.big-box h2 {
    width: 100%;
    color: var(--light-color);
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px;
    z-index: 2;
}

.home-blog-section .blog-wrapper.small-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
}

.home-blog-section .blog-wrapper.small-box:first-child {
    margin: 0;
    padding: 0;
    border: 0;
}

@media (max-width: 991px) {
    .home-blog-section .blog-wrapper.small-box:first-child {
        margin-top: 30px;
    }
}

.home-blog-section .blog-wrapper.small-box .blog-wrapper-img {
    max-width: 185px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0;
    margin-right: 15px;
}

@media (max-width: 1199px) {
    .home-blog-section .blog-wrapper.small-box .blog-wrapper-img {
        max-width: 125px;
    }
}

.home-blog-section .blog-wrapper.small-box h2 {
    margin: 0;
    padding: 0;
}

.home-blog-section .blog-wrapper.small-box .blog-date {
    position: absolute;
    bottom: 0;
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-color);
}

.recent-articles-wrapper {
    background-color: var(--light-color);
    padding: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0 3px 6px 0 rgb(16 66 97 / .07);
    border: 1px solid #eee;
    transition: all 0.5s
}

.recent-articles-wrapper .articles-wrapper-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
    font-size: 0;
    cursor: pointer
}

.recent-articles-wrapper .recent-articles-bg {
    border-radius: 5px;
    border-bottom: 5px solid var(--primary-color);
    overflow: hidden;
    transition: all 0.5s;
    position: relative;
    z-index: 1
}

.recent-articles-wrapper .recent-articles-bg img {
    width: 100%;
    display: block;
}

.recent-articles-wrapper .recent-articles-content {
    padding-top: 15px;
    background: var(--light-color)
}

.recent-articles-wrapper .recent-articles-content .recent-articles-title {
    padding-bottom: 10px;
    border-bottom: 2px solid #ccc;
    position: relative;
    z-index: 1;
    transition: all 0.5s
}

.recent-articles-wrapper .recent-articles-content .recent-articles-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 3px;
    width: 110px;
    display: block !important;
    background: var(--secondary-color);
    z-index: -1
}

.recent-articles-wrapper .recent-articles-content .recent-articles-title .articles-category {
    font-size: 15px;
    font-weight: 700
}

.recent-articles-wrapper .recent-articles-content .recent-articles-title .articles-title {
    font-size: 18px;
    min-height: 45px;
    line-height: 1.25;
}

@media (max-width:1199px) {
    .recent-articles-wrapper .recent-articles-content .recent-articles-title .articles-title {
        font-size: 16px;
        min-height: 40px
    }
}

.recent-articles-wrapper .recent-articles-content .theme-btn {
    max-width: 150px;
    width: 100%
}

.recent-articles-wrapper p {
    padding: 10px 0;
    min-height: 85px;
    margin: 0;
}

.recent-articles-wrapper .theme-btn span {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 20px;
    min-width: 165px;
    border-radius: 30px;
    text-transform: capitalize;
    text-align: center;
    z-index: 1;
    color: var(--light-color) !important;
    border: 1px solid var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 767px) {
    .recent-articles-wrapper .theme-btn span {
        padding: 8px 15px;
        min-width: 125px;
        font-size: 14px;
    }
}

.recent-articles-wrapper:hover .theme-btn span,
.recent-articles-wrapper:active .theme-btn span,
.recent-articles-wrapper:focus .theme-btn span {
    color: var(--light-color) !important;
    border: 1px solid var(--secondary-color) !important;
    background-color: var(--secondary-color) !important;
}

.indexPage-blogSection {
    padding: 50px 0;
    position: relative
}

.indexPage-blogSection .recent-articles-wrapper {
    margin-bottom: 20px;
    margin-top: 0
}

.singlePage-heading {
    padding-top: 30px;
    padding-bottom: 30px
}

.singlePage-heading h1 {
    font-size: 28px;
    line-height: 1.5;
    padding-bottom: 5px;
    margin-bottom: 0;
    color: var(--secondary-color);
    position: relative;
    text-transform: capitalize
}

.singlePage-heading h1::after {
    content: '';
    display: block;
    left: 0;
    bottom: 0;
    position: absolute;
    background-color: var(--primary-color);
    width: 60px;
    height: 5px
}

.singlePage-postDate p {
    margin-bottom: 5px;
    text-align: center;
    padding: 5px 20px;
    display: inline-block;
    background: var(--secondary-color);
    color: var(--light-color);
    border-radius: 10px
}

.singlePage-blogContent h2,
.singlePage-blogContent h3,
.singlePage-blogContent h4,
.singlePage-blogContent h5,
.singlePage-blogContent h6 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.singlePage-blogContent h2 {
    font-size: 20px !important
}

.singlePage-blogContent h3 {
    font-size: 18px !important
}

.singlePage-blogContent h4 {
    font-size: 16px !important
}

.singlePage-blogContent h5 {
    font-size: 13px !important
}

.singlePage-blogContent h6 {
    font-size: 11px !important
}

.singlePage-blogContent .table-responsive {
    margin-bottom: 25px
}

.singlePage-blogContent table {
    width: 100%;
    color: var(--dark-color)
}

.singlePage-blogContent table th,
.singlePage-blogContent table td {
    padding: 8px 10px
}

.singlePage-blogContent table tr:first-child th {
    border-bottom: 4px solid var(--primary-color)
}

.singlePage-blogContent p {
    margin-bottom: 5px;
    word-break: break-word;
    overflow-wrap: break-word
}

.singlePage-blogContent p:last-child {
    margin-bottom: 25px;
}

.singlePage-blogContent img {
    margin-bottom: 25px;
    max-width: 100%
}

.singlePage-blogContent ul,
.singlePage-blogContent ol {
    margin-bottom: 10px;
    padding-left: 25px
}

.singlePage-blogContent ul li {
    color: var(--dark-color);
    list-style: disc
}

.singlePage-blogContent ol li {
    color: var(--dark-color);
    list-style: decimal
}

.singlePage-leftSide {
    padding-bottom: 50px
}

.singlePage-blogImg {
    position: relative;
    margin-bottom: 25px
}

.singlePage-blogImg img {
    width: 100%;
    position: relative
}

.singlePage-blogContent .vc_single_image-wrapper img {
    width: 100%;
    position: relative
}

.blogSidebar-fixed {
    top: 15px !important;
    z-index: 5 !important
}

.blogSidebar-fixed p.blogSidebar-heading {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px
}

.blogSidebar-fixed p.blogSidebar-heading::after {
    content: '';
    display: block;
    left: 0;
    bottom: 0;
    position: absolute;
    background-color: var(--primary-color);
    width: 60px;
    height: 2px
}

.blogSidebar-blogTopTags {
    margin-bottom: 30px;
    background: #f9f9f9;
    border-radius: 5px;
    padding: 15px 15px 25px
}

.blogSidebar-blogTopTags ul li {
    display: inline-block;
    margin-bottom: 8px
}

.blogSidebar-blogTopTags ul li a {
    display: block;
    border: 1px solid #eee;
    padding: 5px 8px;
    color: var(--secondary-color);
    text-transform: capitalize;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1
}

.blogSidebar-blogTopTags ul li:hover a {
    color: var(--primary-color);
    border-color: var(--primary-color)
}

.blogSidebar-categoriesBox {
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px
}

@media (max-width:767px) {
    .blogSidebar-categoriesBox {
        margin-top: 30px
    }
}

.blogSidebar-categoriesBox ul {
    margin-top: 15px;
    list-style: square
}

.blogSidebar-categoriesBox ul li {
    margin: 4px 0 10px;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 5px;
    color: var(--secondary-color)
}

.blogSidebar-categoriesBox ul li:last-child {
    border-bottom: 0 solid #f1f1f1
}

.blogSidebar-categoriesBox ul li a {
    display: block;
    color: var(--secondary-color)
}

.blogSidebar-categoriesBox ul li a span {
    float: right
}

@media (max-width:767px) {
    .singlePage-heading h1 {
        font-size: 20px;
        line-height: 1.15;
        padding-bottom: 12px;
        margin-top: 10px
    }
}

@media (min-width:768px) and (max-width:991px) {
    .singlePage-heading h1 {
        font-size: 22px;
        line-height: 1.15;
        padding-bottom: 12px;
        margin-top: 10px
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .singlePage-heading h1 {
        font-size: 24px;
        line-height: 1.15;
        padding-bottom: 12px;
        margin-top: 10px
    }
}

.publishers-section {
    padding-bottom: 75px;
    padding-top: 0px !important;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .publishers-section {
        padding-bottom: 50px;
        padding-top: 0px !important;
    }
}

.publishers-section .publishers-section-inner {
    overflow: hidden;
}

.publishers-section .publishers-section-inner .publishers-section-wrapper {
    text-align: center;
    background-color: var(--light-color);
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.12);
    min-height: 115px;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #eee;
    margin-bottom: 5px;
    border-radius: 10px;
}

.publishers-section .publishers-section-inner .slider-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
    will-change: transform;
}

.publishers-section .publishers-section-inner .slider-track .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66%;
    flex: 0 0 16.66%;
    max-width: 16.66%;
}

@media (max-width: 574px) {
    .publishers-section .publishers-section-inner .slider-track .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 575px) and (max-width: 767px) {
    .publishers-section .publishers-section-inner .slider-track .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .publishers-section .publishers-section-inner .slider-track .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33%;
        flex: 0 0 33%;
        max-width: 33%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .publishers-section .publishers-section-inner .slider-track .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.publishers-section .slider-arrow .carousel-control-prev {
    left: 0px;
}

.publishers-section .slider-arrow .carousel-control-next {
    right: 0px;
}

.publishers-section .slider-arrow .carousel-control-prev,
.publishers-section .slider-arrow .carousel-control-next {
    top: 30px;
}

@media (max-width: 767px) {

    .publishers-section .slider-arrow .carousel-control-prev,
    .publishers-section .slider-arrow .carousel-control-next {
        top: 30px;
    }
}

.customer-testimonials-section {
    padding-bottom: 75px;
    padding-top: 0px !important;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .customer-testimonials-section {
        padding-bottom: 50px;
        padding-top: 0px !important;
    }
}

@media (max-width: 767px) {
    .customer-testimonials-section .customer-testimonials-img {
        display: none;
    }
}

.customer-testimonials-section .customer-testimonial-list {
    text-align: center;
    position: relative;
}

.customer-testimonials-section .customer-testimonial-list .carousel-indicators {
    position: relative;
    margin: 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.customer-testimonials-section .customer-testimonial-list .carousel-indicators button {
    width: 60px;
    height: 60px;
    text-indent: unset;
    background: transparent;
    margin: 0 10px;
    position: relative;
    z-index: 1;
}

.customer-testimonials-section .customer-testimonial-list .carousel-indicators button::before {
    content: '';
    position: absolute;
    left: -13px;
    right: 0;
    margin: 0 auto;
    top: -15px;
    width: 83px;
    height: 90px;
    background-size: cover;
    z-index: -1;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
}

.customer-testimonials-section .customer-testimonial-list .carousel-indicators button:hover::before,
.customer-testimonials-section .customer-testimonial-list .carousel-indicators button:focus::before {
    visibility: visible;
    background-image: url("../images/btn-flower.png");
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.customer-testimonials-section .customer-testimonial-list .carousel-indicators button.active::before {
    visibility: visible;
    background-image: url("../images/btn-flower.png");
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.customer-testimonials-section .customer-testimonial-list .customer-testimonial-wrapper p {
    padding: 30px 45px;
    margin: 0;
}

@media (max-width: 767px) {
    .customer-testimonials-section .customer-testimonial-list .customer-testimonial-wrapper p {
        padding: 15px;
    }
}

.customer-testimonials-section .customer-testimonial-list .customer-testimonial-wrapper h3 {
    color: var(--dark-color);
    font-size: 22px;
}

@media (max-width: 767px) {
    .customer-testimonials-section .customer-testimonial-list .customer-testimonial-wrapper h3 {
        font-size: 18px;
    }
}

.customer-testimonials-section .customer-testimonial-list .customer-testimonial-wrapper h4 {
    color: var(--primary-color);
    font-size: 15px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .customer-testimonials-section .customer-testimonial-list .customer-testimonial-wrapper h4 {
        font-size: 14px;
    }
}

.subscribe-form-section {
    background-color: #f4eee5;
    padding-bottom: 40px;
    padding-top: 40px !important;
    position: relative;
    z-index: 1;
}

.subscribe-form-section .subscribe-form-inner-section {
    max-width: 900px;
    width: 100%;
    margin: 0 auto !important;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.subscribe-form-section .subscribe-form-inner-section .main-heading p {
    margin-top: 15px;
}

.subscribe-form-section .theme-subscribe-form {
    max-width: 600px;
    width: 100%;
    margin: 0 auto !important;
}

.subscribe-form-section .theme-subscribe-form .contact-page-info p {
    margin: 0;
}

.subscribe-form-section .theme-subscribe-form .contact-page-info .wpcf7-spinner {
    position: absolute;
    left: 0;
    bottom: -15px;
}

.page-not-found-section {
    padding: 50px 0;
    text-align: center;
    text-transform: capitalize;
    position: relative;
}

.page-not-found-section h1 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 150px;
    margin-top: 0;
}

.page-not-found-section h2 {
    margin-top: 40px;
    color: var(--dark-color);
    font-size: 30px;
    margin-bottom: 25px;
}

.page-not-found-section p {
    margin-bottom: 5px;
    letter-spacing: 1.1px;
    font-size: 13px;
    color: var(--dark-color);
}

.page-not-found-section .robot-img {
    height: 150px;
    margin-bottom: 30px;
}

@media (max-width:767px) {
    .page-not-found-section h1 {
        font-size: 70px;
    }

    .page-not-found-section h2 {
        font-size: 25px;
    }
}

.contact-page-info .vc_col-sm-6 p,
.contact-page-info .vc_col-sm-12 p {
    margin: 0;
}

.contact-page-info .form-control {
    border-radius: 5px !important;
    min-height: 40px !important;
    box-shadow: unset !important;
    margin-top: 0px !important;
    margin-bottom: 15px !important;
    font-size: 14px;
    letter-spacing: 1px
}

.contact-page-info .form-control:focus {
    border-color: #ced4da;
    box-shadow: none
}

.contact-page-info textarea {
    height: 100px !important
}

.contact-page-info #submit_form,
.contact-page-info .form_submit {
    font-size: 15px;
    letter-spacing: 0px;
    margin-top: 0px;
    text-align: center;
    text-transform: capitalize;
    color: var(--light-color) !important;
    border-radius: 5px !important;
    background: var(--primary-color);
    border: 1px solid var(--primary-color) !important;
    padding: 8px 20px !important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    font-weight: 600;
}

.contact-page-info #submit_form:hover,
.contact-page-info .form_submit:hover {
    color: var(--light-color) !important;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color) !important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s
}

.ares-pagination {
    padding-top: 30px;
    text-align: right
}

.ares-pagination .page-numbers {
    border-radius: 5px;
    padding: 5px 10px;
    display: inline-block;
    background: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--light-color) !important
}

.ares-pagination .page-numbers:hover {
    color: var(--light-color) !important
}

.ares-pagination .page-numbers.current {
    background: transparent !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important
}

.vision-mission-section {
    padding-top: 75px !important;
    padding-bottom: 75px;
}

@media (max-width: 767px) {
    .vision-mission-section {
        padding-top: 50px !important;
        padding-bottom: 50px;
    }
}

.vision-mission-section .main-heading h2::after {
    left: 0;
    right: unset;
}

.vision-div-image img {
    border: 4px solid #e2e2e2;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    filter: brightness(114%) opacity(94%);
    transition: filter 0.3s ease;
}

.vision-div-image:hover img {
    filter: brightness(100%) opacity(100%);
}

@media (max-width: 767px) {
    .vision-div-image {
        margin-top: 30px;
    }
}

.mission-div-image img {
    border: 4px solid #e2e2e2;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    filter: brightness(114%) opacity(94%);
    transition: filter 0.3s ease;
}

.mission-div-image:hover img {
    filter: brightness(100%) opacity(100%);
}

@media (max-width: 767px) {
    .mission-div-image.pe-md-5 {
        margin-bottom: 30px !important;
    }
}

.contact-map-section {
    position: relative
}

.contact-map-section iframe {
    width: 100%
}

.contact-map-section .vc_column_container>.vc_column-inner {
    padding: 0px !important
}

.contact-page-section {
    background-color: #f9f9f9;
    padding: 75px 0;
    padding-top: 75px !important;
    position: relative
}

.contact-page-section .theme-contact-form h2 {
    display: none
}

.contact-page-section .theme-contact-form {
    padding: 20px 20px;
    background-color: var(--light-color);
    border-radius: 5px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto !important;
    box-shadow: rgb(0 0 0 / .1) 0 10px 14px 9px
}

.contact-page-info-section {
    padding-bottom: 75px;
    padding-top: 25px !important;
    position: relative
}

@media (max-width: 767px) {
    .contact-page-info-section {
        padding-bottom: 50px;
        padding-top: 25px !important;
    }
}

.contact-page-info-wrapper>.vc_column-inner {
    border-top: 1px solid #eee;
    background-color: var(--light-color);
    padding: 30px 15px 25px;
    text-align: center;
    box-shadow: 0 3px 4px -1px rgb(0 0 0 / .07);
    position: relative;
    z-index: 1;
    transition: all 0.5s
}

.contact-page-info-wrapper>.vc_column-inner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    height: 3px;
    width: 0;
    background-color: var(--primary-color);
    display: block;
    z-index: -1;
    transition: all 0.5s
}

.contact-page-info-wrapper h2 {
    color: var(--secondary-color);
    font-size: 20px;
    letter-spacing: .5px
}

.contact-page-info-wrapper p {
    line-height: 1.25;
    margin: 12px 0;
    margin-bottom: 12px !important;
    min-height: 45px
}

.contact-page-info-wrapper p a {
    display: block;
    color: var(--secondary-color);
    transition: all 0.5s
}

.contact-page-info-wrapper .contact-info-img {
    text-align: center;
    width: 90px;
    height: 90px;
    line-height: 85px;
    position: relative;
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    -webkit-animation: one-animated 10s infinite;
    animation: one-animated 10s infinite;
    overflow: hidden;
    background-color: var(--primary-color);
    display: block;
    margin: 0 auto !important;
    margin-bottom: 30px !important
}

.contact-page-info-wrapper .contact-info-img img {
    padding-top: 20px;
    max-width: 40px;
    width: 100%
}

@-webkit-keyframes one-animated {
    0% {
        border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
        box-shadow: 15px 15px 50px rgb(0 0 0 / .2)
    }

    25% {
        border-radius: 58% 42% 75% 25%/76% 46% 54% 24%
    }

    50% {
        border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
        box-shadow: -10px -5px 50px rgb(0 0 0 / .2)
    }

    75% {
        border-radius: 33% 67% 58% 42%/63% 68% 32% 37%
    }
}

@keyframes one-animated {
    0% {
        border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
        box-shadow: 15px 15px 50px rgb(0 0 0 / .2)
    }

    25% {
        border-radius: 58% 42% 75% 25%/76% 46% 54% 24%
    }

    50% {
        border-radius: 50% 50% 33% 67%/55% 27% 73% 45%;
        box-shadow: -10px -5px 50px rgb(0 0 0 / .2)
    }

    75% {
        border-radius: 33% 67% 58% 42%/63% 68% 32% 37%
    }
}

.contact-page-info-wrapper .contact-page-info-btn a {
    font-size: 15px !important;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0 !important;
    background: var(--light-color) !important;
    border: 0 !important;
    color: var(--primary-color) !important;
    text-transform: uppercase;
    display: block;
    transition: all 0.5s
}

.contact-page-info-wrapper>.vc_column-inner:hover {
    box-shadow: 0 5px 7px -2px rgb(0 0 0 / .07);
    background-color: #f9f9f9;
    transition: all 0.5s
}

.contact-page-info-wrapper>.vc_column-inner:hover::after {
    width: 95%;
    transition: all 0.5s
}

.contact-page-info-wrapper:hover .contact-page-info-btn a {
    background-color: #f9f9f9 !important;
    color: var(--secondary-color) !important
}

.feedBack-modal {
    background-color: rgba(0, 0, 0, 0.75);
}

.feedBack-modal .modal-header {
    padding: 10px;
}

.feedBack-modal .modal-header .modal-title {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.feedBack-modal .modal-header .btn-close {
    position: absolute;
    right: 10px;
    top: 17px;
    font-weight: 600;
    font-size: 13px;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 1;
}

.feedBack-modal .modal-header .btn-close:focus {
    box-shadow: none;
}

.website_PopupModal img {
    border-radius: 5px;
    overflow: hidden;
}

.website_PopupModal h2 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.website_PopupModal p {
    font-size: 14px;
    color: var(--dark-color);
}

.website_PopupModal .btn-close {
    position: absolute;
    right: 5px;
    top: 5px;
    display: block;
    width: 25px;
    height: 25px;
    color: var(--light-color);
    background: var(--primary-color);
    opacity: 1;
    border-radius: 50%;
    line-height: 23px;
    text-align: center;
    z-index: 9;
}

.website_PopupModal .vc_col-sm-3 {
    width: 50%;
}

.website_PopupModal .contact-page-info p {
    margin: 0;
}

.website_PopupModal .contact-page-info .form-control {
    margin-top: 15px !important;
    margin-bottom: 0px !important;
}

.website_PopupModal .contact-page-info .form_submit {
    margin-top: 15px !important;
    border-radius: 5px !important;
    padding: 8px 30px !important;
    width: 100%;
}

.website_PopupModal .contact-page-info .wpcf7-spinner {
    background-color: var(--primary-color);
    padding: 0;
    margin: 0;
    position: absolute;
    right: 25px;
    bottom: 15px;
}

.website_PopupModal .wpcf7 form .wpcf7-response-output {
    margin: 0 !important;
    padding: 0.2em 1em !important;
    border: 2px solid var(--primary-color) !important;
}

.website_PopupModal .subscribe_PopupModal-content {
    padding-right: 25px;
}

.website_PopupModal.offer_PopupModal .col-md-6 {
    width: 100%
}

.website_PopupModal.offer_PopupModal .offer_PopupModal-content {
    text-align: center;
    padding: 30px;
}

.website_PopupModal.offer_PopupModal .offer_PopupModal-content h2 {
    font-style: italic;
    text-transform: capitalize;
}

.website_PopupModal.offer_PopupModal .offer_PopupModal-content h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.website_PopupModal.offer_PopupModal .offer_PopupModal-content p {
    margin: 0;
}

.website_PopupModal.offer_PopupModal .offer_PopupModal-content-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

@media (max-width: 767px) {
    .website_PopupModal .vc_col-sm-3 {
        width: 100%;
    }

    .website_PopupModal .subscribe_PopupModal-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.woocommerce-page-design .wc-loginpage-section .woocommerce {
    max-width: 625px;
    width: 100%;
    margin: 0 auto;
    padding-top: 40px;
}

.woocommerce-page-setting .wc-loginpage-section .woocommerce {
    max-width: 625px;
    width: 100%;
    margin: 0 auto;
    padding-top: 40px;
}

body.woocommerce-account .woocommerce-page-setting .wc-loginpage-section .woocommerce {
    max-width: 100%;
}

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

body.woocommerce-account .woocommerce-page-setting .woocommerce-MyAccount-navigation ul {
    padding: 0;
}

body.woocommerce-account .woocommerce-page-setting .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link {
    background-color: #f9f9f9;
    list-style: none;
}

body.woocommerce-account .woocommerce-page-setting .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link.is-active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

body.woocommerce-account .woocommerce-page-setting .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link a {
    display: block;
    padding: 10px;
}

body.woocommerce-account .woocommerce-page-setting .woocommerce-MyAccount-navigation ul .woocommerce-MyAccount-navigation-link.is-active a {
    color: var(--light-color);
}

body.woocommerce-account .woocommerce-page-setting .woocommerce-notices-wrapper {
    margin-bottom: 20px;
}

body.woocommerce-account .woocommerce-page-setting .woocommerce-notices-wrapper .woocommerce-message,
body.woocommerce-account .woocommerce-page-setting .woocommerce-MyAccount-content .woocommerce-info {
    border-top-color: var(--primary-color);
}

body.woocommerce-account .woocommerce-page-setting .woocommerce-notices-wrapper .woocommerce-message::before,
body.woocommerce-account .woocommerce-page-setting .woocommerce-MyAccount-content .woocommerce-info::before {
    content: "\e015";
    color: var(--primary-color);
}

body.woocommerce-account .woocommerce-page-setting .woocommerce-Addresses {
    background-color: var(--light-color);
    box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.07);
    padding: 15px;
    margin-top: 15px;
    border: 1px solid #eee;
}

body.woocommerce-account .woocommerce-page-setting .woocommerce-Addresses .woocommerce-Address {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

body.woocommerce-account .woocommerce-page-setting .woocommerce-Addresses .woocommerce-Address a.edit {
    background-color: var(--primary-color);
    color: var(--light-color);
    display: inline-block;
    float: unset;
    margin: 15px 0;
    padding: 10px 20px;
    text-transform: capitalize;
    border-radius: 3px;
}

body.woocommerce-account .woocommerce-page-setting .woocommerce .woocommerce-EditAccountForm.edit-account,
body.woocommerce-account .woocommerce-page-setting .woocommerce-MyAccount-content form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}

body.woocommerce-account .woocommerce-page-setting .woocommerce .woocommerce-EditAccountForm.edit-account .woocommerce-Button {
    margin-top: 20px;
}

.woocommerce-page-setting .wc-loginpage-section button.woocommerce-Button,
.woocommerce-page-setting .wc-loginpage-section button.woocommerce-button,
.woocommerce-page-setting .wc-block-cart__submit-button,
body.woocommerce-account .woocommerce-page-setting .woocommerce-MyAccount-content form .button {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 20px;
    min-width: 165px;
    border-radius: 30px !important;
    text-transform: capitalize;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    position: relative;
    color: var(--light-color) !important;
    border: 1px solid var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.woocommerce-page-setting .wc-loginpage-section h2 {
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    color: var(--dark-color);
}

.woocommerce-page-setting .wc-loginpage-section .woocommerce form.login {
    margin: 2em 0 0;
    padding: 25px;
}

.woocommerce-page-setting .wc-loginpage-section .woocommerce form .form-row {
    padding: 0;
    margin: 0 0 15px;
}

.woocommerce-page-setting .wc-loginpage-section .woocommerce form .form-row:last-child {
    margin-bottom: 3px;
    margin-top: 25px;
}

.woocommerce-page-setting .wc-loginpage-section .woocommerce form .form-row .input-text {
    height: 40px;
}

.woocommerce-page-setting .wc-loginpage-section .woocommerce form .form-row .input-text:focus {
    outline: 0;
}

.woocommerce-page-setting .wc-loginpage-section .woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    display: inline-block;
    margin-top: 10px;
}

.woocommerce-page-setting .wc-loginpage-section button.woocommerce-Button,
.woocommerce-page-setting .wc-loginpage-section button.woocommerce-button,
.woocommerce-page-setting .wc-block-cart__submit-button {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 20px;
    min-width: 165px;
    border-radius: 30px !important;
    text-transform: capitalize;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    position: relative;
    margin-top: 5px;
    color: var(--light-color) !important;
    border: 1px solid var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 767px) {

    .woocommerce-page-setting .wc-loginpage-section button.woocommerce-Button,
    .woocommerce-page-setting .wc-loginpage-section button.woocommerce-button,
    .woocommerce-page-setting .wc-block-cart__submit-button {
        padding: 8px 15px;
        min-width: 125px;
        font-size: 14px;
    }
}

.woocommerce-page-setting .wc-loginpage-section button.woocommerce-Button:hover,
.woocommerce-page-setting .wc-loginpage-section button.woocommerce-Button:focus,
.woocommerce-page-setting .wc-loginpage-section button.woocommerce-Button:active,
.woocommerce-page-setting .wc-loginpage-section button.woocommerce-button:hover,
.woocommerce-page-setting .wc-loginpage-section button.woocommerce-button:focus,
.woocommerce-page-setting .wc-loginpage-section button.woocommerce-button:active,
.woocommerce-page-setting .wc-block-cart__submit-button:hover,
.woocommerce-page-setting .wc-block-cart__submit-button:focus,
.woocommerce-page-setting .wc-block-cart__submit-button:active {
    color: var(--light-color) !important;
    border: 1px solid var(--secondary-color) !important;
    background-color: var(--secondary-color) !important;
}

.woocommerce-page-setting .wc-loginpage-section .woocommerce-LostPassword a {
    color: #58151c;
    text-decoration: underline;
}

.woocommerce-page-setting .wc-loginpage-section .woocommerce .lost_reset_password {
    padding: 25px 25px 10px;
    border: 1px solid #cfc8d8;
    border-radius: 5px;
}

.woocommerce-page-setting .wc-loginpage-section .woocommerce .lost_reset_password .form-row {
    width: 100%;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):focus {
    box-shadow: none !important;
    outline: 0px solid transparent !important;
}

body.is-category-page .woocommerce-page-setting.is-woocommerce>.container {
    max-width: 100%;
    padding: 0;
}

body.is-category-page .woocommerce-page-setting.is-woocommerce .product-category-list {
    padding-top: 50px;
}

.categorycontent-slider-section {
    padding: 50px 0;
    position: relative;
    background-color: #f9f9f9;
}

.categorycontent-slider-section h1 {
    color: var(--dark-color);
    font-size: 32px;
}

.categorycontent-slider-section p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 0;
    max-width: 575px;
    width: 100%;
}

.categorycontent-slider-section .slider-arrow {
    overflow: hidden;
}

.categorycontent-slider-section .slider-arrow img {
    width: 100%;
    border-radius: 5px;
    display: block;
}

@media (max-width: 991px) {
    .categorycontent-slider-section {
        padding: 25px 0;
    }

    .categorycontent-slider-section h1 {
        font-size: 24px;
    }

    .categorycontent-slider-section p {
        font-size: 14px;
        line-height: 1.5;
        max-width: 100%;
    }

    .categorycontent-slider-section .slider-arrow {
        margin-top: 20px;
    }
}

.category-extra-content.singlePage-blogContent {
    padding-top: 30px;
}

.category-extra-content.singlePage-blogContent h1,
.category-extra-content.singlePage-blogContent h2,
.category-extra-content.singlePage-blogContent h3,
.category-extra-content.singlePage-blogContent h4,
.category-extra-content.singlePage-blogContent h5,
.category-extra-content.singlePage-blogContent h6 {
    text-transform: capitalize;
}

.category-extra-content.singlePage-blogContent h1 {
    color: var(--dark-color);
    font-size: 24px;
}

.woocommerce-page-setting .design-filter-buttons h2 {
    color: var(--dark-color);
    font-size: 16px;
    margin-bottom: 15px;
}

.woocommerce-page-setting .design-filter-buttons h2 span.selected-value {
    color: var(--primary-color);
}

.woocommerce-page-setting .design-filter-buttons button {
    background-color: var(--light-color);
    border: 1px dotted var(--dark-color);
    color: var(--dark-color);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    padding: 5px 10px;
    text-transform: capitalize;
    margin-right: 10px;
    border-radius: 5px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.woocommerce-page-setting .design-filter-buttons button.active {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--light-color);
}

.woocommerce-page-setting .design-filter-buttons button:hover,
.woocommerce-page-setting .design-filter-buttons button:focus,
.woocommerce-page-setting .design-filter-buttons button:active {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--light-color);
}

.woocommerce-page-setting .product-variations-buttons button {
    background-color: var(--light-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    padding: 8px 10px;
    text-transform: capitalize;
    margin-right: 10px;
    min-width: 100px;
    border-radius: 5px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.woocommerce-page-setting .product-variations-buttons button.active {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--light-color);
}

.woocommerce-page-setting .product-variations-buttons button:hover,
.woocommerce-page-setting .product-variations-buttons button:focus,
.woocommerce-page-setting .product-variations-buttons button:active {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--light-color);
}

body.is-subcategory-page .woocommerce-page-setting ul.products li a {
    margin-bottom: 1px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    border-radius: .5rem;
    background-color: var(--light-color);
    display: block;
    position: relative;
}

body.is-subcategory-page .woocommerce-page-setting ul.products li a .price {
    color: rgb(208 56 1) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 1.5;
    margin-bottom: 0px !important;
    padding: 0 5px;
    padding-bottom: 0.75rem !important;
}

body.is-subcategory-page .woocommerce-page-setting ul.products li a .price strike {
    color: rgb(156 163 175);
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 500;
}

body.is-subcategory-page .woocommerce-page-setting ul.products li a .price .discount-percent {
    color: rgb(5 122 85);
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 500;
}

#custom-product-selection {
    scroll-margin-top: 300px;
}

body.is-subcategory-page ul.products li.product a .product-subcategories {
    display: none;
}

.wc-subcategory-page {
    padding: 50px 0;
    position: relative;
}

.wc-subcategory-page .woocommerce-product-gallery__trigger {
    display: none;
}

.wc-subcategory-page .product-main-image,
.wc-subcategory-page .slider-arrow {
    overflow: hidden;
    border-radius: 5px;
}

.wc-subcategory-page .product-main-image img,
.wc-subcategory-page .slider-arrow img,
.wc-subcategory-page img {
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.wc-subcategory-page h1 {
    max-width: 540px;
    width: 100%;
    font-size: 32px;
    color: var(--dark-color);
    letter-spacing: 0;
    margin-bottom: 5px;
}

.wc-subcategory-page .product-summary {
    position: relative;
}

.wc-subcategory-page .product-social-share {
    position: absolute;
    right: 0;
    top: 5px;
}

.wc-subcategory-page .product-social-share a {
    display: inline-block;
    position: relative;
}

.wc-subcategory-page .product-social-share span.copy-tooltip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--light-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.wc-subcategory-page .product-social-share a img {
    max-width: 25px;
    margin-right: 3px;
    border-radius: 50%;
    overflow: hidden;
}

@media (max-width: 767px) {
    .wc-subcategory-page h1 {
        max-width: 100%;
        font-size: 20px;
        margin-top: 20px;
        line-height: 1.2;
    }

    .wc-subcategory-page .product-social-share {
        position: relative;
        text-align: right;
        margin-top: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .wc-subcategory-page .product-social-share {
        position: relative;
        text-align: right;
        margin-top: 20px;
    }

    .wc-subcategory-page h1 {
        max-width: 100%;
        font-size: 24px;
        margin-top: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .wc-subcategory-page h1 {
        font-size: 28px;
    }
}

.wc-subcategory-page .product-short-description p {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--primary-color);
    font-size: 14px;
}

.woocommerce-page-setting .product-variations-buttons {
    padding: 5px 0 25px;
}

.wc-subcategory-page .custom-product-selection {
    margin: 5px 0;
}

.wc-subcategory-page .custom-product-selection a {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--light-color);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    padding: 8px 10px;
    text-transform: capitalize;
    min-width: 215px;
    border-radius: 5px;
    display: inline-block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.wc-subcategory-page .custom-product-selection a:hover,
.wc-subcategory-page .custom-product-selection a:focus,
.wc-subcategory-page .custom-product-selection a:active {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--light-color);
}

.wc-subcategory-page p a.read-more {
    color: rgb(63, 131, 248)
}

.wc-subcategory-page .single-product-coupon p.coupon-code-text {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
}

.wc-subcategory-page .single-product-coupon p.coupon-code-desc {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.wc-subcategory-page .product-price {
    font-size: 16px;
    position: relative;
    color: var(--dark-color);
}

.wc-subcategory-page.wc-single-product-page .product-price p {
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 25px;
}

.wc-subcategory-page .product-price strike {
    color: rgb(249, 128, 128);
    padding: 0 10px;
}

.wc-subcategory-page .product-price .discount-percent {
    color: rgb(14, 159, 110);
    border-left: 2px solid rgb(14, 159, 110);
    padding-left: 5px;
}

.wc-subcategory-page .quantity-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.wc-subcategory-page .quantity-wrapper .quantity-label {
    font-weight: 600;
    margin-right: 15px;
}

.wc-single-product-page .quantity-wrapper .quantity .qty {
    width: 200px;
    text-align: left;
    height: 45px;
    border-radius: 5px;
    outline: 0;
    box-shadow: none;
    border: 1px solid #bbb;
}

.wc-single-product-page form .single-page-custom-fields-wrapper .form-row {
    padding: 0;
    margin: 0;
}

.wc-single-product-page .single-page-custom-fields-wrapper label {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 7px;
    line-height: 1 !important;
}

.wc-single-product-page .single-page-custom-fields-wrapper .custom-input-design {
    height: 45px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 100%;
    outline: 0;
    box-shadow: none;
    padding: 0;
    padding-left: 10px;
}

.wc-single-product-page .wc-single-product-page-btn {
    display: flex;
    align-items: center;
}

.wc-single-product-page .wc-single-product-page-btn .single_page_btn {
    min-width: 212px;
    width: 100%;
    height: 45px;
    border-radius: 10px;
    color: var(--light-color);
    margin-right: 15px;
    padding: 0;
    text-align: center;
    line-height: 43px;
}

.wc-single-product-page .wc-single-product-page-btn .single_add_to_cart_button {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.wc-single-product-page .wc-single-product-page-btn .single_add_to_cart_button:hover,
.wc-single-product-page .wc-single-product-page-btn .single_add_to_cart_button:active,
.wc-single-product-page .wc-single-product-page-btn .single_add_to_cart_button:focus {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.wc-single-product-page .wc-single-product-page-btn .single_buy_now_button {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.wc-single-product-page .wc-single-product-page-btn .single_buy_now_button:hover,
.wc-single-product-page .wc-single-product-page-btn .single_buy_now_button:active,
.wc-single-product-page .wc-single-product-page-btn .single_buy_now_button:focus {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.wc-single-product-page .wc-single-product-page-btn .whatsapp_btn {
    background-color: #25d366;
    border: 1px solid #25d366;
}

.wc-single-product-page .wc-single-product-page-btn .whatsapp_btn:hover,
.wc-single-product-page .wc-single-product-page-btn .whatsapp_btn:active,
.wc-single-product-page .wc-single-product-page-btn .whatsapp_btn:focus {
    background-color: #21bd5b;
    border: 1px solid #21bd5b;
}

.wc-single-product-page .wc-single-product-page-btn .single_page_btn:last-child {
    margin-right: 0;
}

@media (max-width: 767px) {
    .wc-single-product-page .wc-single-product-page-btn {
        display: block;
    }

    .wc-single-product-page .wc-single-product-page-btn .single_page_btn {
        min-width: 135px;
        width: 48.5%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .wc-single-product-page .wc-single-product-page-btn .single_page_btn:first-child {
        margin-right: 4px;
    }

    .wc-single-product-page .wc-single-product-page-btn .single_page_btn:last-child {
        width: 100%;
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .wc-single-product-page .wc-single-product-page-btn .single_page_btn {
        min-width: 235px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {

    .wc-single-product-page .wc-single-product-page-btn {
        display: block;
    }

    .wc-single-product-page .wc-single-product-page-btn .single_page_btn {
        min-width: 135px;
        width: 48.5%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .wc-single-product-page .wc-single-product-page-btn .single_page_btn:first-child {
        margin-right: 4px;
    }

    .wc-single-product-page .wc-single-product-page-btn .single_page_btn:last-child {
        width: 100%;
        display: block;
    }
}

.wc-single-product-page .wc-single-product-page-features {
    border-radius: 10px;
}

.wc-single-product-page .wc-single-product-page-features .svg-image {
    padding: 0.5rem;
    background-color: rgb(225 239 254);
    border-radius: 5px;
    margin-right: 10px;
}

.wc-single-product-page .wc-single-product-page-features p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.wc-single-product-page .photo-preview {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.wc-single-product-page .preview-item {
    position: relative;
    display: inline-block;
}

.wc-single-product-page .preview-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.wc-single-product-page .preview-item .remove-btn {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff4d4d;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 14px;
    line-height: 18px;
}

.wc-subcategory-page .wc-subcategory-tabs {
    margin-top: 25px;
}

.wc-subcategory-page .wc-subcategory-tabs ul.nav-tabs {
    padding: 0;
    border-bottom: 1px solid #e5e7eb;
    margin: 0;
}

.wc-subcategory-page .wc-subcategory-tabs ul.nav-tabs li.nav-item {
    list-style: none;
}

.wc-subcategory-page .wc-subcategory-tabs ul.nav-tabs li.nav-item .nav-link {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 0px;
    background: 0 0;
    border: 0px solid transparent;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.wc-subcategory-page .wc-subcategory-tabs ul.nav-tabs li.nav-item .nav-link.active {
    color: var(--primary-color);
    background-color: #fff;
    border: 0px solid transparent;
}

.wc-subcategory-page .wc-subcategory-tabs ul.nav-tabs li.nav-item .nav-link:hover,
.wc-subcategory-page .wc-subcategory-tabs ul.nav-tabs li.nav-item .nav-link:focus {
    color: var(--primary-color);
    background-color: #fff;
    border: 0px solid transparent;
}

.wc-subcategory-page .wc-subcategory-tabs .tab-pane {
    margin-top: 20px;
    padding: 1rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);
    border-radius: .5rem;
    background-color: var(--light-color);
}

.wc-subcategory-page .wc-subcategory-tabs .tab-pane p {
    font-size: 12px;
    line-height: 1.75;
    color: var(--dark-color);
    margin-bottom: 0;
}

.wc-subcategory-page .wc-subcategory-tabs .tab-pane ul {
    padding-left: 15px;
}

.wc-subcategory-page .wc-subcategory-tabs .tab-pane ul li {
    list-style: square;
    font-size: 12px;
    line-height: 1.75;
    color: var(--dark-color);
}

.wc-subcategory-page .subcategory-extra-contentBox {
    padding: 1rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);
    border-radius: .5rem;
    background-color: var(--light-color);
}

.wc-subcategory-page .subcategory-extra-contentBox h2,
.wc-subcategory-page .subcategory-extra-contentBox h3,
.wc-subcategory-page .subcategory-extra-contentBox h4,
.wc-subcategory-page .subcategory-extra-contentBox h5,
.wc-subcategory-page .subcategory-extra-contentBox h6 {
    font-size: 16px;
    line-height: 1.5;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.wc-subcategory-page .subcategory-extra-contentBox p {
    font-size: 13px;
    line-height: 1.75;
    color: var(--dark-color);
    margin-bottom: 0;
}

.wc-subcategory-page .subcategory-extra-contentBox ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.wc-subcategory-page .subcategory-extra-contentBox ul li {
    list-style: square;
    font-size: 13px;
    line-height: 1.75;
    color: var(--dark-color);
    margin-bottom: 0;
}

.is-category-page .woocommerce-page-setting.is-woocommerce .woocommerce-result-count,
.is-category-page .woocommerce-page-setting.is-woocommerce .woocommerce-ordering {
    display: none;
}

.singlePage.related-products-section {
    padding: 0 0 50px;
    position: relative;
}

.singlePage.related-products-section .products>h2 {
    color: var(--dark-color);
    font-size: 28px;
    letter-spacing: 0;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .singlePage.related-products-section .products>h2 {
        font-size: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .singlePage.related-products-section .products>h2 {
        font-size: 22px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .singlePage.related-products-section .products>h2 {
        font-size: 24px;
    }
}

.singlePage.related-products-section ul.products {
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
    margin-bottom: 0;
    padding: 0;
}

.singlePage.related-products-section ul.products li.product.col-md-3.col-lg-3 {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 5px;
    padding-left: calc(var(--bs-gutter-x) * .5) !important;
    padding-right: calc(var(--bs-gutter-x) * .5) !important;
    text-align: center;
    margin: 0 !important;
    margin-top: 25px !important;
    margin-bottom: 0px !important;
    width: 25% !important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 767px) {
    .singlePage.related-products-section ul.products li.product.col-md-3.col-lg-3 {
        width: 50% !important;
    }
}

.singlePage.related-products-section ul.products li.product.col-md-3.col-lg-3 .count {
    display: none !important;
}

.singlePage.related-products-section ul.products li.product.col-md-3.col-lg-3 a {
    overflow: hidden;
    display: block;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: var(--light-color);
}

.singlePage.related-products-section ul.products li.product.col-md-3.col-lg-3 a img {
    margin: 0 !important;
    overflow: hidden;
}

.singlePage.related-products-section ul.products li.product.col-md-3.col-lg-3 h2 {
    text-transform: capitalize !important;
    color: var(--primary-color) !important;
    font-size: .875rem !important;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 0.5em !important;
    overflow: hidden;
    padding-bottom: 4px !important;
}

.singlePage.related-products-section ul.products li.product.col-md-3.col-lg-3 .product-subcategories {
    display: none;
}

.singlePage.related-products-section ul.products li.product.col-md-3.col-lg-3 span.onsale,
.singlePage.related-products-section ul.products li.product.col-md-3.col-lg-3 .add_to_cart_button {
    display: none;
}

@media (max-width: 768px) {
    .singlePage.related-products-section ul.products li.product.col-md-3.col-lg-3 {
        width: 100% !important;
    }
}

.website_PopupModal img {
    border-radius: 5px;
    overflow: hidden;
}

.website_PopupModal h2 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.website_PopupModal p {
    font-size: 14px;
    color: var(--dark-color);
}

.website_PopupModal .btn-close {
    position: absolute;
    right: 5px;
    top: 5px;
    display: block;
    width: 25px;
    height: 25px;
    color: var(--light-color);
    background: var(--primary-color);
    opacity: 1;
    border-radius: 50%;
    line-height: 23px;
    text-align: center;
    z-index: 9;
}

.website_PopupModal .vc_col-sm-3 {
    width: 50%;
}

.website_PopupModal .contact-page-info p {
    margin: 0;
}

.website_PopupModal .contact-page-info .form-control {
    margin-top: 15px !important;
    margin-bottom: 0px !important;
}

.website_PopupModal .contact-page-info .form_submit {
    margin-top: 15px !important;
    border-radius: 5px !important;
    padding: 8px 30px !important;
    width: 100%;
}

.website_PopupModal .contact-page-info .wpcf7-spinner {
    background-color: var(--primary-color);
    padding: 0;
    margin: 0;
    position: absolute;
    right: 25px;
    bottom: 15px;
}

.website_PopupModal .wpcf7 form .wpcf7-response-output {
    margin: 0 !important;
    padding: 0.2em 1em !important;
    border: 2px solid var(--primary-color) !important;
}

.website_PopupModal .subscribe_PopupModal-content {
    padding-right: 25px;
}

.website_PopupModal.offer_PopupModal .col-md-6 {
    width: 100%
}

.website_PopupModal.offer_PopupModal .offer_PopupModal-content {
    text-align: center;
    padding: 30px;
}

.website_PopupModal.offer_PopupModal .offer_PopupModal-content h2 {
    font-style: italic;
    text-transform: capitalize;
}

.website_PopupModal.offer_PopupModal .offer_PopupModal-content h3 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.website_PopupModal.offer_PopupModal .offer_PopupModal-content p {
    margin: 0;
}

.website_PopupModal.offer_PopupModal .offer_PopupModal-content-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

@media (max-width: 767px) {
    .website_PopupModal .vc_col-sm-3 {
        width: 100%;
    }

    .website_PopupModal .subscribe_PopupModal-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.product-page-general-tabs-section {
    position: relative;
    padding-bottom: 50px;
}

.product-page-general-tabs-section .product-page-general-tabs-inner {
    background-color: #f9f9f9;
    padding: 45px;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .product-page-general-tabs-section .product-page-general-tabs-inner {
        padding: 15px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .product-page-general-tabs-section .product-page-general-tabs-inner {
        padding: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .product-page-general-tabs-section .product-page-general-tabs-inner {
        padding: 30px;
    }
}

.product-page-general-tabs-section ul.nav-tabs {
    padding: 0;
    border-bottom: 1px solid #e5e7eb;
    margin: 0;
}

.product-page-general-tabs-section ul.nav-tabs li.nav-item {
    list-style: none;
}

.product-page-general-tabs-section ul.nav-tabs li.nav-item .nav-link {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 0px;
    background: 0 0;
    border: 0px solid transparent;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.product-page-general-tabs-section ul.nav-tabs li.nav-item .nav-link.active {
    color: var(--primary-color);
    background-color: #fff;
    border: 0px solid transparent;
}

.product-page-general-tabs-section ul.nav-tabs li.nav-item .nav-link:hover,
.product-page-general-tabs-section ul.nav-tabs li.nav-item .nav-link:focus {
    color: var(--primary-color);
    background-color: #fff;
    border: 0px solid transparent;
}

.product-page-general-tabs-section .tab-pane {
    margin-top: 20px;
    padding: 1rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);
    border-radius: .5rem;
    background-color: var(--light-color);
}

.product-page-general-tabs-section .tab-pane h2 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 10px;
}

.product-page-general-tabs-section .tab-pane h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 0px;
}

.product-page-general-tabs-section .tab-pane .comment-form p {
    margin-bottom: 15px;
}

.product-page-general-tabs-section .tab-pane .comment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0px;
    font-size: 12px;
}

.product-page-general-tabs-section .tab-pane .comment-form textarea {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 0;
    padding-left: 10px;
    width: 100%;
    box-shadow: none;
    outline: 0;
}

.product-page-general-tabs-section .tab-pane .comment-form .form-submit input[type="submit"] {
    background-color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--light-color) !important;
    height: 40px;
    width: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.product-page-general-tabs-section .tab-pane .comment-form .form-submit input[type="submit"]:hover,
.product-page-general-tabs-section .tab-pane .comment-form .form-submit input[type="submit"]:focus,
.product-page-general-tabs-section .tab-pane .comment-form .form-submit input[type="submit"]:active {
    background-color: var(--secondary-color) !important;
    border: 1px solid var(--secondary-color) !important;
    color: var(--light-color) !important;
}

.product-page-general-tabs-section .tab-pane .comment-form input {
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 35px;
    padding: 0;
    padding-left: 10px;
    width: 100%;
    box-shadow: none;
    outline: 0;
}

.product-page-general-tabs-section .tab-pane .comment-form p.comment-form-cookies-consent input {
    width: unset;
    height: unset;
}

.product-page-general-tabs-section .tab-pane .comment-form p.comment-form-cookies-consent label {
    display: inline-block;
}

.product-page-general-tabs-section .tab-pane p {
    font-size: 12px;
    line-height: 1.75;
    color: var(--dark-color);
    margin-bottom: 0;
}

.product-page-general-tabs-section .tab-pane ul {
    padding-left: 15px;
}

.product-page-general-tabs-section .tab-pane ul li {
    list-style: square;
    font-size: 12px;
    line-height: 1.75;
    color: var(--dark-color);
}

.product-page-general-tabs-section .comments-area .comment-list {
    margin-bottom: 25px;
}

.product-page-general-tabs-section .comments-area .comment-list li {
    margin-bottom: 10px;
}

.product-page-general-tabs-section .comments-area .comment-author {
    margin-bottom: 15px;
}

.product-page-general-tabs-section .comments-area .comment-author img {
    border-radius: 50%;
}

.product-page-general-tabs-section .comments-area .comment-metadata a {
    font-size: 12px;
}

.product-page-general-tabs-section .comments-area .comment-content p {
    font-size: 15px !important;
}

.product-page-general-tabs-section .comments-area .comment-author span.says,
.product-page-general-tabs-section .comments-area .comment-awaiting-moderation,
.product-page-general-tabs-section .comments-area .comments-title,
.product-page-general-tabs-section .comments-area .reply {
    display: none;
}

.e-shop-page-section {
    position: relative;
    padding-bottom: 50px;
}

.e-shop-page-section .onsale,
.e-shop-page-section .button.add_to_cart_button {
    display: none !important;
}

.printable-download-section {
    position: relative;
    margin-top: 20px;
}

.printable-download-section .theme-btn button {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 20px;
    min-width: 165px;
    border-radius: 30px;
    text-transform: capitalize;
    color: var(--white-color) !important;
    border: 1px solid var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 767px) {
    .printable-download-section .theme-btn button {
        padding: 8px 15px;
        min-width: 125px;
        font-size: 14px;
    }
}

.printable-download-section .theme-btn button:hover,
.printable-download-section .theme-btn button:focus,
.printable-download-section .theme-btn button:active {
    color: var(--white-color) !important;
    border: 1px solid var(--secondary-color) !important;
    background-color: var(--secondary-color) !important;
}

.printable-download-section .printable-download-section-inner {
    position: relative;
    margin-top: 20px;
}

.printable-download-section .printable-download-section-inner .nav-pills {
    background-color: #f9f9f9;
}

.printable-download-section .printable-download-section-inner .nav-pills button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px;
    background-color: #f9f9f9;
    color: var(--primary-color);
}

.printable-download-section .printable-download-section-inner .nav-pills button.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.printable-download-section .printable-download-section-inner .nav-pills button:hover,
.printable-download-section .printable-download-section-inner .nav-pills button:focus {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.printable-download-section .printable-download-wrapper {
    padding: 0;
    text-align: center;
    position: relative;
    border: 2px solid var(--primary-color);
    margin-bottom: 20px;
    border-radius: .5rem;
    background-color: var(--light-color);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    overflow: hidden;
}

.printable-download-section .printable-download-img {
	border-bottom: 1px solid #ddd;
}

.printable-download-section .printable-download-wrapper h3 {
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark-color);
    margin: 20px 0 0;
}

.printable-download-section .download-wrapper-btn a {
    position: relative;
    z-index: 1;
    font-weight: 500;
    background-color: var(--light-color) !important;
    color: var(--dark-color) !important;
    border: 0px !important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    margin-bottom: 15px !important;
    display: inline-block;
    margin-top: 6px;
    padding-right: 25px;
}

.printable-download-section .download-wrapper-btn a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background-image: url('../images/file.svg');
    background-position: center;
    background-size: cover;
    display: block;
    z-index: -1;
}

.printable-download-section .download-wrapper-btn:hover a {
    color: var(--primary-color) !important;
}

.lightbox .lb-dataContainer {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    bottom: 0px !important;
    padding: 0 !important;
    background-color: rgba(0, 0, 0, 0.75) !important;
    overflow: hidden !important;
    border-radius: 0 !important;
}

.lightbox .lb-dataContainer .lb-data {
    text-align: center !important;
}

.lightbox .lb-dataContainer .lb-data .lb-details {
    padding: 10px !important;
    width: 100% !important;
    text-align: center !important;
}

.lightbox .lb-dataContainer .lb-data .lb-number {
    padding-bottom: 0 !important;
    font-size: 16px !important;
    color: var(--light-color) !important;
    margin-top: 0 !important;
}

.lightbox .lb-dataContainer .lb-data .lb-closeContainer {
    position: absolute !important;
    right: 10px !important;
    top: 10px !important;
}

.lightbox .lb-dataContainer .lb-data .lb-close {
    width: 20px !important;
    height: 20px !important;
    opacity: 1 !important;
    background-size: 15px !important;
}

.free-download_model .modal-dialog {
    max-width: 765px;
    width: 100%;
}

.free-download_model .modal-header {
    display: block;
    text-align: center;
    padding: 25px 15px;
}

.free-download_model .modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.free-download_model .modal-text {
    margin: 0;
    padding-top: 5px;
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
}

.free-download_model .modal-header .btn-close {
    padding: 0;
    margin: 0;
    position: absolute;
    right: 10px;
    top: 10px;
    display: block;
    opacity: 1;
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 26px;
    height: 26px;
    text-align: center;
    border-radius: 50%;
    background-image: unset;
}

.free-download_model .modal-body {
    padding: 30px 45px 40px;
}

.free-download_model .contact-page-info #submit_form {
    width: 100%;
    border-radius: 5px !important;
    padding: 8px 30px !important;
}

.free-download_model .contact-page-info .form-control {
    margin-bottom: 0px !important;
}

.free-download_model .contact-page-info .wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    background-color: #23282d;
    opacity: 0.75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: -25px;
    left: 15px;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--primary-color) !important;
}

.modal-backdrop.fade {
    opacity: 0.75 !important
}

.wpcf7-not-valid-tip {
    font-size: 11px !important;
    margin-top: 5px !important;
}

@media (max-width: 767px) {
    .printable-page-section h1 {
        font-size: 20px;
    }

    .printable-page-section h1 span.heading-break {
        font-size: 30px;
    }

    .printable-page-section p {
        padding: 5px;
        font-size: 14px;
    }

    .printable-page-section-content {
        margin: 20px 0;
    }

    .printable-download-section h3 {
        font-size: 18px;
    }

    .printable-download-section .printable-download-section-inner .nav-pills {
        margin-bottom: 25px;
        background-color: transparent;
    }

    .printable-download-section .printable-download-section-inner .nav-pills button {
        display: inline-block;
        width: unset;
        text-align: left;
        padding: 5px 10px;
        background-color: #f9f9f9;
        color: var(--primary-color);
    }
}