/*
Theme Name: Websima
Theme URI: http://websima.com
Author: Websima Creative Agency
Author URI: http://websima.com
Description: Websima Creative Agency
Version: 1
License: GNU General Public License v2 or later
Text Domain: websima
*/





/* --------------------
            GENERAL SETTING
-------------------- */

.section-title {
    margin-bottom: 21px;
}

.mb-22 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.section-title .desc {
    color: #333333;
    font-size: 15px;
    font-family: var(--bold_font);
    line-height: 26px;
}

.desc.sec-color {
    color: var(--color3);
}

.section-title .title-heading {
    color: #252525;
    font-size: 24px;
    line-height: normal;
}

.section-title.light-title .title-heading,
.section-title.light-title .desc {
    color: #fff;
}


.site-title .title-heading {
    color: #123376;
    font-size: 18px;
    margin-bottom: 15px;
}

.light-title .title-heading {
    color: #fff;
}

.blue-title .title-heading {
    color: #123376;
}

.light-title .subtitle {
    color: #fff;
    line-height: normal;
}

.subtitle {
    font-size: 16px;
}

.center-title {
    text-align: center;
}


.title-site .title-heading {
    font-size: var(--heading_h1_fontsize);
    margin-bottom: 20px;
    line-height: 1.5;
}

.title-between {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.title-between .title-heading {
    margin-bottom: 0;
}

/* --------------------
     Animation Pulse
 -------------------- */
@keyframes animateCursor {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(250, 190, 88, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(250, 190, 88, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(250, 190, 88, 0);
        box-shadow: 0 0 0 10px rgba(250, 190, 88, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(250, 190, 88, 0);
        box-shadow: 0 0 0 0 rgba(250, 190, 88, 0)
    }
}

/* --------------------
      card
 -------------------- */
form .quantity {
    width: 115px;
    height: 45px;
    border: 1px solid #BE9E6E;
    background: #EDE5D8;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

form .quantity button {
    background: transparent;
    color: #4E3846;
    font-size: 20px;
    border: none;
    transition: 0.4s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

form .quantity button:hover {
    color: #8E7468;
}

form .quantity input {
    -webkit-appearance: none;
    border: none !important;
    text-align: center !important;
    -moz-appearance: textfield;
    width: 42px !important;
    margin: 0 !important;
    height: auto !important;
    font-size: 27px;
    background: none;
    line-height: 37px;
    padding: 0 !important;
    margin: 0 !important;
    font-family: inherit;
    background: transparent !important;
}

form .quantity input::-webkit-outer-spin-button,
form .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* --------------------
     Mini card
 -------------------- */
.parent_item_cart {
    cursor: pointer;
}

.product-quantity .quantity input {
    background: none;
}

.parent_item_cart .sub_part {
    position: absolute;
    top: 100%;
    z-index: 9999;
    background: white;
    border-radius: 4px;
    padding: 10px;
    transition: 0.4s;
    min-height: 70px;
    border: 1px solid #f0f0f0;
}

.woocommerce-mini-cart-item.mini_cart_item {
    display: flex;
    position: relative;
    font-size: 13px;
    color: var(--color2);
    flex-wrap: wrap;
    background: #efefef;
    margin-bottom: 10px;
    padding: 10px 10px 10px 20px;
    border-radius: 5px;
    flex-direction: column;
}

.product-item-title {
    color: var(--color_title);
    font-size: 17px;
}

.websima-cart-attrs {
    display: flex;
    gap: 10px;
    color: gray;
    font-size: 14px;
}

.websima-cart-attrs .websima-cart-item-title:last-child::before {
    content: '';
    height: 15px;
    width: 1px;
    background: var(--dark);
    display: inline-block;
    margin-left: 10px;
    vertical-align: -4px;
}

.woocommerce-mini-cart .mini_cart_item a.remove:hover {
    color: #443b3b;
}

.woocommerce-mini-cart .detail-mini .quantity ins {
    text-decoration: none;
}

ul.cart-attributes li {
    display: block;
}

.woocommerce-mini-cart .mini_cart_item a.remove {
    color: var(--danger);
    font-size: 21px;
    transition: 0.3s;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    position: absolute;
    padding-left: 0 !important;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.woocommerce-mini-cart__total.total bdi {
    justify-content: center;
}

.woocommerce-mini-cart .mini_cart_item a {
    display: flex;
    align-items: center;
}

.woocommerce-mini-cart-item.mini_cart_item img {
    height: auto;
    margin-left: 15px;
    border: 1px solid #eee;
    flex: 0 0 50px;
    max-width: 70px;
}

.woocommerce-mini-cart dl.variation {
    display: none;
}

.woocommerce-mini-cart .detail-mini {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    font-size: 13px;
    line-height: 1.5;
}

.woocommerce-mini-cart .detail-mini .quantity {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 5px;
    position: relative;
    text-align: left;
    margin-left: 15px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.woocommerce-mini-cart__total.total strong {
    color: #525252;
}

.woocommerce-mini-cart__total.total span {
    font-size: 18px;
    color: var(--text);
}

.woocommerce-mini-cart__total.total .woocommerce-Price-currencySymbol {
    font-size: 16px;
}

.woocommerce-mini-cart__buttons.buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.woocommerce-mini-cart__buttons.buttons a {
    font-size: 13px;
    min-width: 160px;
    padding: 0px 5px;
}

.woocommerce-mini-cart__total.total {
    margin-bottom: 10px;
    text-align: center;
    font-size: 15px;
    padding-top: 10px;
}

/* --------------------
     Alerts
 -------------------- */
#wrapper .cart-empty.woocommerce-info,
.wpcf7-response-output.wpcf7-validation-errors,
.woocommerce-error,
.woocommerce-mini-cart__empty-message,
.stock.out-of-stock {
    background: var(--bg_danger);
    color: var(--danger);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    display: block;
    margin: 15px 0;
}

.woocommerce-mini-cart__empty-message {
    margin: 0;
}

.stock.out-of-stock {
    background: #d53343d6;
    color: #fff;
}



.woocommerce-error li {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.woocommerce-message,
.woocommerce-success,
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    color: var(--success);
    text-align: center;
    padding: 10px;
    margin: 15px 0;
    background: var(--bg_success);
    border-radius: 6px;
    border: 1px solid var(--success);

}

.woocommerce-error .button {
    order: 2;
}

.woocommerce-info:not(.woocommerce-message) a:hover {
    color: var(--color1);
}

.woocommerce-info:not(.woocommerce-message) {
    margin-bottom: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid var(--color1);
    color: var(--color1);
}


/* --------------------
     Menu Mobile
 -------------------- */
#mask {
    position: fixed;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

.mobile-menu-wrap {
    display: flex;
    align-items: center;
}

#menumobile {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 90%;
    max-width: 360px;
    background: #ececec;
    z-index: 99991;
    transition: all 0.5s;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .3) !important;
    overflow-y: auto;
}

#menumobile img {
    /*! filter: brightness(0)invert(1); */
    max-width: 50px;
}

.title-mm a {
    display: flex;
}

#nomenumobile {
    cursor: pointer;
    transition: all 0.5s;
    text-align: center;
    border-radius: 3px;
    display: inline-flex;
    color: red;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 16px;
}

#nomenumobile:hover {
    color: var(--danger);
}

.mobile-cta {
    display: flex;
    justify-content: center;
    background: var(--color1);
    padding: 5px;
    margin-bottom: 10px;
}

.mobile-cta .cta-header:hover {
    color: #fff;
}

.tel-mm a {
    background: var(--bg_footer);
    color: #fff;
    padding: 10px 15px;
    display: block;
    text-align: center;
}

.tel-mm a:before {
    content: '';
    width: 6px;
    height: 6px;
    margin-left: 10px;
    background: var(--color2);
    display: inline-block;
    border-radius: 100%;
    animation: pulse 2s infinite;
    position: relative;
    top: -1px;
}


.come-menumobile {
    right: 0 !important;
}


.title-mm {
    background: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 3px;
}

#menumobile .socials {
    justify-content: center;
    margin-bottom: 20px;
    background: var(--color1);
    padding: 14px 10px;
}

.title-mm img {
    user-select: none;
}

.btn-mm {
    padding: 0 20px;
    margin-top: 20px;
}

.btn-mm a {
    display: flex;
}

.title-sub-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-flow: row-reverse;
}


.title-sub-head strong {
    font-family: var(--bold_font);
}

.main-mm {
    padding: 0px 15px;
}

.main-mm ul li {
    position: relative;
}

.main-mm>ul>li {
    margin: 15px 0;
    border-radius: 8px;
    background: #fff;
}

.main-mm ul li a {
    display: block;
    padding: 8px 10px;
    width: 80%;
    font-size: 16px;
    font-family: var(--main_font);
}

.main-mm ul li a:hover {
    color: var(--color2);
}

.main-mm ul li>.sub-menu {
    position: unset;
    border-radius: 0;
    background-color: #fff;
    padding: 0 15px 0 10px;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    width: 100%;
    display: none;
    border-radius: 0 0 8px 8px;
}

.main-mm ul li .sub-menu a {
    color: #000;
}

.main-mm ul li.active>a {
    color: var(--color2);
}

.childer:before {
    content: "\e90e";
    font-family: icomoon;
    display: inline-block;
    line-height: 1;
    transition: 0.3s ease;
    font-size: 6px;
}

.childer {
    position: absolute;
    left: 15px;
    cursor: pointer;
    color: var(--color1);
    transition: 0.3s ease;
    line-height: 1;
    top: 12px;
    font-size: 7px;
    width: 25px;
    height: 25px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.main-mm ul li .sub-menu .childer {
    color: #000;
}

.childer.active:before {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    color: var(--color2);

}

#menumobile .sub-menu>li.menu-item-has-children>a::after {
    content: none;
}

.main-mm ul li a:hover .childer {
    color: var(--color2);
}

.come-submenu {
    right: 0 !important;
}



/* --------------------
     Button
 -------------------- */
#sidebar button[type="submit"],
#cancel-comment-reply-link,
.button {
    user-select: none;
    height: 45px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    background: var(--color1);
    color: #fff;
    font-family: inherit;
    border-radius: 32px;
    z-index: 1;
    position: relative;
    transition: 0.4s ease;
    min-width: 122px;
    gap: 10px;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid var(--color1);
}

.button i {
    font-size: 6px;
}

.button-v2 {
    user-select: none;
    height: 46px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 18px;
    background: var(--color1);
    color: #fff;
    font-family: inherit;
    border-radius: 8px;
    z-index: 1;
    position: relative;
    transition: 0.4s ease;
    min-width: 90px;
    gap: 24px;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid var(--color1);
}

.button-v3 {
    user-select: none;
    height: 57px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 18px;
    background: #fff;
    color: var(--color1);
    font-family: inherit;
    border-radius: 8px;
    z-index: 1;
    position: relative;
    transition: 0.4s ease;
    min-width: 90px;
    gap: 24px;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid var(--color1);
}

#sidebar button[type="submit"]:hover,
#cancel-comment-reply-link:hover,
.button:hover,
.button-v2:hover {
    background: #fff;
    color: #252525;
}

.button.light-mode {
    color: var(--color1);
    background: #fff;
    border-color: #fff;
}

.button.light-mode:hover,
.button-v3:hover {
    background: var(--color2);
    border-color: var(--color2);
    color: #fff;
}

.button.button3 {
    border-color: transparent;
    background: #fff;
    color: #252525;
}

.button.button2 {
    border-color: var(--color1);
    background: #fff;
    color: var(--color1);
}

.button.button4 {
    border-color: var(--color2);
    background: var(--color2);
    color: #fff;
}

.button.button2:hover {
    background: var(--color1);
    color: #fff;
}

.button.button3:hover {
    background: var(--color2);
    color: #fff;
}

.button.button4:hover {
    background: #fff;
    color: var(--color2);
}

.button::before {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: -1;
}

.button:hover::before {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.button.button2:before {
    background: var(--color1);
}

.button.button3:before {
    background: var(--color2);
}

.button.button2:after {
    background: #F2F2F2;
}


.main-btn {
    display: inline-flex;
    gap: 3px;
    color: #fff;
    font-family: inherit;
}

.main-btn span,
.main-btn i {
    background: linear-gradient(180deg, #325652 0%, #212529 100%);
    border-radius: 4px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 16px;
    white-space: nowrap;
}

.main-btn.light-color span,
.main-btn.light-color i {
    background: #fff;
    color: #212529;
}

.main-btn.sec-color span,
.main-btn.sec-color i {
    background: var(--color2);
}

.main-btn i {
    width: 44px;
    font-size: 18px;
}

.main-btn i.icon-left {
    font-size: 15px;
}

/*.main-btn.sec-color:hover {*/
/*    color: var(--color1);*/
/*}*/
.main-btn.border-btn {
    color: var(--color2);
}

.main-btn.border-btn span,
.main-btn.border-btn i {
    background: transparent;
    border: 1px solid var(--color2);
}

.main-btn.light-color.border-btn span,
.main-btn.light-color.border-btn i {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn {
    display: inline-flex;
    align-items: center;
    color: var(--color1);
    gap: 15px;
    font-size: 16px;
    transition: 0.4s ease;
}

.btn:hover {
    color: var(--color2);
}

.button-simple {
    border-radius: 4px;
    background: var(--color1);
    color: #fff;
    min-width: 147px;
    font-family: inherit;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 38px;
    padding: 6px 12px;
    border: 1px solid var(--color1);
    transition: 0.4s ease;
}

.button-simple i {
    font-size: 24px;
}

.button-simple:hover {
    background: transparent;
    color: var(--color1);
}

.section-title.dot-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot-title::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: var(--linear-2, linear-gradient(180deg, #325652 0%, #212529 100%));
    display: inline-block;
    margin-left: 10px;
}

.section-title.dot-title .title-heading {
    font-size: 20px;
}

/* --------------------
     New button style
 -------------------- */
.button-hover {
    min-width: 120px;
    height: 45px;
    color: #fff;
    border: 2px solid var(--color1);
    background: var(--color1);
    font-size: 14px;
    font-family: var(--bold_font);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    text-transform: capitalize;
}

.button-hover:before,
.button-hover:after,
.button-hover i {
    position: absolute;
    width: 34%;
    height: 100%;
    background-color: #fff;
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 33%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

.button-hover:before,
.button-hover:after {
    content: '';
}

.button-hover:hover {
    color: var(--color1);
}

.button-hover:hover:before,
.button-hover:hover:after,
.button-hover:hover i {
    transform: translateY(0) scale(2);
}

.button-hover:before {
    --n: 1;
}

.button-hover:after {
    --n: 2;
}

.button-hover i {
    --n: 3;
}

/* --------------------
     default CSS
 -------------------- */
.inner-intro {
    position: relative;
}

.light-content,
.light-content .title-heading {
    color: #fff !important;
}

.light-content .editor-content,
.light-content .editor-content p {
    color: #fff;
}

.light-content .editor-content p a {
    color: var(--color2);
}

.light-content .editor-content p a:hover {
    color: #fff;
}

.light-content .editor-content h2,
.light-content .editor-content h3,
.light-content .editor-content h4,
.light-content .editor-content h5,
.light-content .editor-content h6 {
    color: #fff !important;
}

.site-title .subtitle {
    color: var(--color3);
    font-size: 14px;
    line-height: normal;
    margin-bottom: 12px;
    display: block;
}

.site-title .title-heading span {
    color: var(--color2);
}

.page-title .title-heading {
    font-size: 28px;
    line-height: normal;
    margin-bottom: 16px;
    color: var(--text);
}

.swiper-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color2);
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
}

.swiper-arrow:not(.swiper-button-disabled) {
    cursor: pointer;
}


.swiper-faq-wrap .swiper-arrow {
    display: none;
}

/* --------------------
     FAQ CSS
 -------------------- */


.swiper-faq-wrap {
    margin-bottom: 32px;
    position: relative;
}

.swiper-faq-wrap .navigation-wrap {
    margin-top: 20px;
}

.faq-pag {
    margin-top: 24px !important;
}

.faq-cat {
    position: relative;
}

.faq-cat a {
    display: flex;
    padding: 8px;
    align-items: center;
    font-size: 15px;
    line-height: normal;
    gap: 14px;
    color: #fff;
    height: 53px;
    line-height: 32px;
    background: #FFF;
    transition: 0.4s ease;
    border-radius: 32px;
    border: 1px solid transparent;
    color: var(--text);

}

.faq-cat:hover a {
    color: var(--color1);
    border-color: var(--color1);
}

.faq-cat.active a {
    background: #FFF;
    border-color: var(--color1);
}

.faq-icon {
    background: #EEEDE8;
    width: 37px;
    height: 37px;
    border-radius: 100px;
    padding: 2px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.faq-content .faqs-question {
    display: flex;
    align-items: baseline;
    width: 100%;
    padding: 14px 16px;
    cursor: pointer;
    font-size: 15px;
    gap: 8px;
    line-height: 32px;
    transition: 0.4s ease;
    color: #2E2E2FCC;


}

.faqs-question::after {
    content: "\e916";
    min-width: 20px;
    height: 20px;
    border-radius: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #f6e3d1;
    font-family: icomoon;
    font-size: 10px;
    position: relative;
    line-height: 1;
    color: #E9B98D;
    transition: 0.4s ease;
    margin-right: auto;
}

.faqs-item.active .faqs-question::after {
    content: "\e915";
    background: #fff1de;
    color: #f58320;
}

.faq-content .faqs-item {
    border-radius: 32px;
    background: #fff;
    border: 1px solid #EEEDE8;
    overflow: hidden;
    margin-bottom: 10px;
    transition: 0.4s ease;
}

.faqs-item:hover,
.faqs-item.active {
    border: 1px solid var(--color1)
}

.faq-content .faqs-item:last-child {
    margin-bottom: 0;
}

.faqs-question i {
    margin-right: auto;
    color: #444;
    display: inline-block;
    transition: 0.4s ease;
}

.faqs-item.active .faqs-question i {
    transform: rotate(180deg);
    color: var(--color1);
}

.faqs-item.active .faqs-question {
    color: var(--text)
}

.faqs-content {
    margin-top: 24px;
}

.swiper.swiper-faq .swiper-navigation {
    margin-top: 32px;
}

.accordion-content {
    display: none;
}

/* .faqs-item .faqs-answer{
     display:none;
 } */
.faqs-item .faqs-answer {
    padding: 0 16px 24px;
}

.faqs-item .faqs-answer .editor-content p {
    margin-bottom: 0;
    color: #3A3A3A;
}

.faqs-question .faq-num {
    color: var(--color1);
    text-align: center;
    padding-top: 4px;
    font-size: 18px;
    line-height: 1;
    min-width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 0.4s ease;
    background-color: #fff;
    border-radius: 100%;
    border: 1px solid #f58320
}

.faqs-item.active .faqs-question .faq-num {
    background-color: var(--color1);
    color: #fff;

}

.faq-heading {
    margin-bottom: 24px;
}

.tab-content>p {
    background: #eec4c4;
    border-radius: 8px;
    text-align: center;
    padding: 10px;
}

.alert-error {
    background: var(--danger);
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 12px;
}

/* --------------------
         TAB CSS
     -------------------- */

.tab-content {
    display: none;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;

}

.tab-content.active {
    display: block;
}

@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* --------------------
    header
 -------------------- */
#header {
    z-index: 6;
    position: sticky;
    top: 0;
    background: #fff;
    transition: 0.4s ease;
    box-shadow: 0px 4px 20px 0px #0000000A;
}

.header-row {
    display: flex;
    align-items: center;
    padding: 14px 0;
    justify-content: space-between;
    gap: 8px;
    flex-direction: row-reverse;
}

.header-logo {
    margin-right: auto;
}

.header-logo img {
    max-width: 50px;
}

@media (min-width:768px) {
    .header-logo img {
        max-width: 65px;
    }
}

.header-end {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-direction: row-reverse;
    display: none;
}

.header-end .simple-link {
    display: none;
}

.user-btn {
    color: var(--text);
    position: relative;
    cursor: pointer;
    transition: 0.4s ease;
    border-radius: 12px;
    background: none;
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(118, 97, 82, 0.36);
    padding: 0 12px;
    gap: 8px;
    font-family: inherit;
}

.user-btn span {
    display: none;
}

.user-btn i {
    font-size: 19px;
}

.menu-wrap {
    display: none;
}

.btn-hover {}

.btn-hover:last-child:hover {
    border-radius: 0 0 0 8px;
}

.btn-hover:first-child:hover {
    border-radius: 8px 0 0 0;
}

.btn-hover:hover {
    color: #fff;
    background-color: #128C7E;
    flex: 0 0 30%;

}

.hover-style {
    overflow: hidden;
    position: relative;
    z-index: 0;
    font-family: inherit;
}

.hover-style:before {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: 0;
}

.light-color.hover-style::before {
    background: var(--color2);
}

.hover-style:hover::before {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.hover-style:hover {
    color: #fff;
}


.nav-access {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 100%;
}

.cta-header {
    user-select: none;
    height: 25px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 7px 2px;
    background: var(--color2);
    color: #fff;
    font-family: inherit;
    border-radius: 4px;
    z-index: 1;
    position: relative;
    transition: 0.4s;
    overflow: hidden;
    min-width: 91px;
    gap: 6px;
    line-height: 1;
    margin-right: auto;
    white-space: nowrap;
}

.cta-header:hover {
    color: var(--color1);
}

.header-nav {
    background: transparent;
    position: absolute;
    width: 100%;
    transition: 0.4s ease;
    top: 81px;
    background: var(--color1);
    box-shadow: 0px 1px 10px 0px rgba(18, 64, 58, 0.09);
}

.nav-menu {
    display: none;
}

.simple-link {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    background: none;
    border: none;
    position: relative;
    color: #1a1a1a;
    cursor: pointer;
    transition: 0.4s ease;
    white-space: nowrap;
    padding: 0;
    font-family: inherit;
}

.simple-link i {
    color: var(--color2);
    font-size: 22px;
}

.simple-link:hover {
    color: var(--color2);
}

.header-nav-inner {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.wrap-menu {
    flex: 0 0 54%;
}

.nav-cta {
    display: flex;
    padding: 13px 16px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 12px;
    border: 1px solid var(--color2);
    background: #02060F;
}



.nav-btn {
    color: var(--color2);
    position: relative;
    cursor: pointer;
    transition: 0.4s ease;
    border: 1px solid #C2ABA14D;
    border-radius: 12px;
    background: none;
    min-width: 56px;
    height: 56px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.nav-btn i {
    font-size: 24px;
    line-height: 1;
    transition: 0.4s ease;
}

.nav-btn:hover i {
    transform: rotateY(180deg);
}

.nav-btn:hover {
    border-color: var(--color2);
}

.header-menu {
    display: none;
    margin-bottom: 0;
}

.header-menu li a {
    font-size: 13px;
    color: var(--text);
    transition: 0.4s ease;
    white-space: nowrap;
}

.header-menu ul.sub-menu li a {
    display: block;
    padding: 5px 10px;
}

.header-menu li a:hover {
    color: var(--color2);
}

.header-menu .sub-menu li a:hover {
    color: var(--color2);
    background: #C2ABA112;
}

.header-menu>.menu-item-has-children>a::after {
    content: "\e90e";
    font-family: icomoon;
    margin-right: 5px;
    transition: 0.4s ease;
    font-size: 5px;
}

.header-menu ul.sub-menu {
    position: absolute;
    z-index: 2;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
    border-right: 3px solid var(--color2);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    border-radius: 5px;
    pointer-events: none;
}

.header-menu li:hover>ul.sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-menu .sub-menu li .sub-menu {
    right: 80%;
    top: 0;
    min-width: 120px;
}

.header-menu .sub-menu>li.menu-item-has-children>a::after {
    content: "\e90e";
    font-family: icomoon;
    transform: rotate(90deg);
    -webkit-transformrotate(90deg);
    font-size: 5px;
    position: absolute;
    left: 11px;
    top: 16px;
    transition: 0.4s ease
}

.header-menu>.menu-item:first-child>a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color1);
    font-family: var(--bold_font);
}

.header-menu>.menu-item:first-child>a::before {
    content: '\e902';
    font-family: 'icomoon';
    font-size: 22px;
}

.header-menu>.menu-item:first-child>a::after {
    content: '';
    width: 1px;
    height: 16px;
    background: var(--color1);
    border-radius: 1px;
}

.search-wrap {
    cursor: pointer;
    gap: 6px;
    flex: 0 0 64%;
    color: var(--color2);
    position: relative;
    cursor: pointer;
    transition: 0.4s ease;
    border: 1px solid rgba(118, 97, 82, 0.36);
    border-radius: 12px;
    background: #F2F2F2;
    min-width: 56px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    max-width: 300px;
}

.form-wrap {
    padding-top: 140px;
}






@keyframes ring {
    0% {
        -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        transform: rotate(-15deg)
    }

    5% {
        -webkit-transform: rotate(15deg) scale(1.2);
        -ms-transform: rotate(15deg) scale(1.2);
        transform: rotate(15deg) scale(1.2);
    }

    10% {
        -webkit-transform: rotate(-18deg) scale(1.2);
        -ms-transform: rotate(-18deg) scale(1.2);
        transform: rotate(-18deg) scale(1.2);
    }

    15% {
        -webkit-transform: rotate(18deg) scale(1.2);
        -ms-transform: rotate(18deg) scale(1.2);
        transform: rotate(18deg) scale(1.2);
    }

    20% {
        -webkit-transform: rotate(-22deg) scale(1.2);
        -ms-transform: rotate(-22deg) scale(1.2);
        transform: rotate(-22deg) scale(1.2);
    }

    25% {
        -webkit-transform: rotate(22deg);
        -ms-transform: rotate(22deg);
        transform: rotate(22deg)
    }

    30% {
        -webkit-transform: rotate(-18deg);
        -ms-transform: rotate(-18deg);
        transform: rotate(-18deg)
    }

    35% {
        -webkit-transform: rotate(18deg);
        -ms-transform: rotate(18deg);
        transform: rotate(18deg)
    }

    40% {
        -webkit-transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
        transform: rotate(-12deg)
    }

    45% {
        -webkit-transform: rotate(12deg);
        -ms-transform: rotate(12deg);
        transform: rotate(12deg)
    }

    50% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}





.parent_item_cart.item_has_sub .sub_part {
    width: 320px;
}

.item_has_sub {
    position: relative;
}

.sub_part {
    position: absolute;
    width: 100%;
    left: auto;
    left: 0;
    top: 90%;
    opacity: 0;
    background: #fff;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    z-index: 9;
    pointer-events: none;
    transform: translateY(60px) scale(0.9);
    transform-origin: right top;
    padding: 15px;
}

.item_has_sub:hover .sub_part {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.woocommerce-mini-cart__empty-message {
    margin: 10px 12px;
}

.head_btn_cart:not(.fix-item) {
    background: #F2F2F2;
    color: #333;
    position: relative;
    cursor: pointer;
    transition: 0.4s ease;
    border-radius: 12px;
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 9px;
}

.head_item_cart .count {
    position: absolute;
    font-size: 10px;
    width: 15px;
    height: 15px;
    background: var(--color1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    top: -5px;
    right: -2px;
    padding-top: 3px;
}

.head_item_cart>i {
    font-size: 19px;
}

.shopping_box_close:hover {
    color: #fff
}

.shopping_box_close {
    cursor: pointer;
    background-color: red;
    color: var(--color1);
    position: absolute;
    font-size: 13px;
    top: 39px !important;
    right: 29px !important;
    display: flex;
    transition: 0.4s;
    transform-origin: center;
    line-height: 1;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 3px;
}

.head_item_box_title i {
    margin-left: 10px;
    font-size: 21px
}

.head_item_box_title {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 18px;
    background-color: var(--color1);
    color: #fff;
    padding: 10px;
    border-radius: 4px;
}

.head_item_box {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    z-index: 99999;
    background: #fff;
    transition: 0.5s;
    max-width: calc(100% - 30px);
    width: 380px;
    padding: 20px;
    overflow: auto;
    scrollbar-color: var(--color1) #fff;
    scrollbar-width: thin
}

.head_item_box.active {
    left: 0
}

.head_item_box::-webkit-scrollbar {
    width: 5px
}

.head_item_box::-webkit-scrollbar-track {
    background: #fff
}

.head_item_box::-webkit-scrollbar-thumb {
    background: var(--color1)
}

.header-mm {
    display: flex;
    position: relative;
    text-align: center;
    align-items: center;
    font-size: 25px;
    cursor: pointer;
    color: var(--color1);
    transition: 0.4s ease;
    justify-content: center;
    background: #F2F2F2;
    padding: 5px;
    border-radius: 12px;
    width: 40px;
    height: 40px;
}

.header-mm:hover {
    color: var(--color2);
}


.navtop-left>.button {
    width: 37px;
    padding: 0 10px;
}

.section-title-error {
    margin-bottom: 40px;
}

.post-item-wrap {
    margin-bottom: 24px;
}

.widget.widget_categories {
    margin-top: 32px;
    margin: auto;
}

.widget_media_image {
    text-align: center;
    transition: 0.3s ease-out;
}

.social-text {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--color2);
}

.social-text i {
    margin-left: 8px;
    font-size: 24px;
}

.blog-date {
    font-size: 14px;
    color: var(--text);
    display: flex;
    gap: 6px;
}

.blog-date i {
    font-size: 24px;
    color: var(--color1);
}

.share-icon-items {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    gap: 24px;
    padding-left: 23px;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
    overflow: hidden;
}

.share-icon-items.show {
    opacity: 1;
    pointer-events: auto;
}

.share-icon-items a {
    color: var(--color1);
    display: flex;
}

.share-icon-items a:hover {
    color: var(--color2);
}





.share-icon-content {
    display: flex;
    align-items: center;
    gap: 9px;
}

.share-wrapper {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

.share-wrapper .icon-share {
    border: 3px solid #D7D7E5;
    width: 46px;
    height: 46px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--color1);
    color: #fff;
    font-size: 22px;
    border-radius: 100%;
    cursor: pointer;
}

.share-wrapper .icon-share-divider {
    height: 2px;
    width: 24px;
    border-radius: 4px;
    background: #C2ABA1;
    display: inline-block;
}

@media screen and (min-width: 768px) {
    :root {
        --heading_h1_fontsize: 22px;
    }

    .search-wrap {
        max-width: unset;
    }
}

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




    .share-icon-content {
        display: flex;
        align-items: center;
        gap: 9px;
    }



    .post-item-wrap {
        margin-bottom: 40px;
    }



    .faq-page-content {
        padding-top: 20px;
    }

    .error-wrap .error-desc {
        font-size: 24px;
        margin-bottom: 35px;
    }


    .header-mm {
        display: none;
    }

    .header-menu {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .search-wrap {
        flex: 0 0 23.4%;
    }


}

@media screen and (min-width: 1400px) {
    .header-menu li a {
        font-size: 16px;
    }

    .search-wrap {
        flex: 0 0 27.4%;
    }

}



/*
 #loader {
     background: #000;
     position: fixed;
     z-index: 11111;
     width: 100%;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: 1s;
 }
 
 .scrollbar-loader {
     position: absolute;
     width: 100%;
     max-width: 500px;
     height: 4px;
     bottom: calc(50% - 200px);
     background: rgba(255, 255, 255, 0.54);
 }
 
 .scrollbar-loader i {
     position: absolute;
     left: 0;
     right: 0;
     margin: auto;
     height: 100%;
     width: 0;
     background: #1B45DB;
 }
 
 #loader.done {
     transform: scale(1.5);
     opacity: 0;
     visibility: hidden;
 }
 @media screen and (max-width: 576px) {
     .loader-svg {
         max-width: 300px;
     }
 
     .scrollbar-loader {
         max-width: 300px;
     }
 
 }*/
/* --------------------
    Contact Mode
 -------------------- */

.page-title .editor-content.subtitle p {
    color: #2E2E2FCC;
    font-size: 15px;
    line-height: 26px;
}

.page-title .desc {
    color: #A6A6A6;
    font-size: 15px;
    line-height: 26px;
}


.form-title .title-general {
    color: #3B4352;
    font-size: 28px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-wrap {
    filter: drop-shadow(0px 4px 35px rgba(168, 168, 168, 0.14));
}

.cta-box {
    padding: 20px 10px;
    text-align: center;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 30.00px 100%, 0 calc(100% - 30.00px));
}

.cta-icon {
    display: inline-flex;
    width: 56px;
    height: 56px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: rgba(7, 124, 208, 0.30);
    margin-bottom: 24px;
}

.cta-icon img {
    max-width: 50px;
}

.cta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.cta-links a {
    border-radius: 4px;
    background: #F2F2F2;
    padding: 10px 15px;
    min-width: 140px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #868686;
    font-size: 15px;
}

.cta-links a i {
    color: var(--color2);
}

.cta-links a:hover {
    color: var(--color2);
}


.cta-title {
    color: #123376;
    font-size: 20px;
    line-height: normal;
    margin-bottom: 25px;
}

.cta-socials {
    display: flex;
    justify-content: center;
    gap: 5px 10px;
    flex-wrap: wrap;
}

.cta-socials a:hover {
    filter: drop-shadow(0px 0px 2px #939393) brightness(1.2);
}

.cta-socials img {
    max-width: 43px;
}

#contactaccordion .card {
    margin-bottom: 20px;
    border: 1px solid var(--color1);
    padding: 10px 20px;
    border-radius: 5px;
}

.leaflet-popup-pane,
.leaflet-pane {
    z-index: 99 !important;
}

@media screen and (min-width: 992px) {
    :root {
        --heading_h1_fontsize: 24px;
    }


    .title-social {
        line-height: 30px;
        font-size: 18px;
        margin-top: 22px;
    }

    .contact-intro .title-heading {
        margin-bottom: 35px;
    }



    .websima-contact-form .acf-fields {
        display: block;
    }

}

@media screen and (min-width: 1400px) {}

/* --------------------
    Footer Style
 -------------------- */
#footer {
    background: #241f21;
    color: #fff;
    position: relative;
    z-index: 0;
    margin-top: 64px;
    padding-bottom: 95px;
}

.footer-features {
    padding: 26px;
    background: #EEEDE8;
}

/* #footer::after {
    content: '';
    background: linear-gradient(0deg, rgb(245 131 32 / 33%) -15.56%, rgba(102, 63, 88, 0) 100%);
    position: absolute;
    width: 100%;
    height: 31%;
    bottom: 70px;
    z-index: -1;
} */

.footer-main {
    display: grid;
    justify-content: center;
    justify-items: center;
    padding-top: 50px;
}

.footer-about {
    color: #3B4352;
    font-size: 16px;
    margin-bottom: 33px;
    line-height: 36px;
    text-align: center;
}

.access-wrap {
    display: flex;
    justify-content: space-between;
    gap: 30px 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.access-wrap a {
    color: #fff;
    font-size: 14px;
    line-height: 36px;
}

.access-wrap a:hover {
    color: var(--color2);
}

.footer-contact {
    flex: 0 0 100%;

}

.footer-menu-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.wrap-ft-menu li {
    margin-bottom: 21px;
}

.wrap-ft-menu li:last-child {
    margin-bottom: 0;
}

.wrap-ft-menu li a {
    color: #fff;
    font-size: 14px;
    line-height: 32px;
}

.wrap-ft-menu li a:hover {
    color: var(--color2);
}

.footer-symbols {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.footer-logo {
    display: inline-flex;
    text-align: center;
}

.footer-logo img {
    max-width: 60px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.83);
    padding: 0;
    margin: 20px auto;
    text-align: center;
    font-size: 14px;
    line-height: 32px;
}

.menu-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #363636;
    text-transform: capitalize;
}

.footer-title {
    font-size: 16px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 28px;
    margin-top: 30px;
}

.footer-title i {
    display: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 21px;
    gap: 8px;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact li a {
    font-size: 14px;
    line-height: 32px;
    color: #fff;
    direction: ltr;
    display: inline-block;
}

.footer-contact li a:hover {
    color: var(--color2);
}

.footer-contact li i {
    font-size: 22px;
    margin-top: 3px;
}

.footer-access {
    margin-bottom: 48px;
}

.footer-enamad {
    background: #FCFCFC;
    padding: 32px 0;
}

.enamad-wrap {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    flex: 1 0 0;
}

.enamad-item {
    border-radius: 10px;
    background: #fff;
    padding: 2px;
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
    overflow: hidden;
}

.enamad-item:hover {
    border-color: var(--color1);
}

.enamad-wrap img {
    max-width: 50px;
    max-height: 50px;
    width: auto;
    height: auto;
}

.brands-wrap {
    justify-content: center;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-brands {
    margin-top: 48px;
    position: relative;
}

.footer-brands::after {
    content: '';
    width: 100%;
    height: 50%;
    background: #FCFCFC;
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    z-index: -1;
}

.brand-item {
    display: flex;
    padding: 12px 20px 13px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 36px;
    border: 1px solid var(--color2);
    background: #FFF;
}

.brand-item img {
    transition: 0.4s ease;
    max-height: 23px;
    width: auto;
}

.brand-item:hover img {
    transform: scale(1.1);
}

.footer-end {
    background: #E6D3CC;
    padding: 13px 0;
}

.footer-end-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.footer-info {
    display: flex;
    flex-direction: column-reverse;
}

.copy-right {
    color: var(--text);
    text-align: center;
    font-weight: lighter;
    font-size: 13px;
    line-height: 23px;
    text-align: center;
    padding: 10px 0;
    flex: 1 0 40%;
}

.copy-right strong {
    color: var(--color1);
}

.websima-logo {
    text-align: center;
    flex: 1 0 0;
}


.socials-wrap {
    display: inline-flex;
    align-items: center;
    gap: 24px;
}

.socials-wrap a {
    font-size: 32px;
    display: flex;
    color: #fff;
}

.socials-wrap a:hover {
    color: var(--color2);
}

.socials-wrap a i {
    transition: 0.4s ease;
}

.socials-wrap a:hover i {
    transform: rotateY(360deg);
}

.footer-newsletter {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 0 42px;
    border-top: 2px solid #D9D9D91C;
    margin-top: 32px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

#newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--color1);
    border-radius: 40px;
    border: 1px solid #f5832066;
    transition: 0.4s ease;
    flex: 0 0 100%;
    justify-content: flex-end;
}

#newsletter-form:focus-within {
    border-color: #fff;
}

#newsletter-form input[type=email] {
    background: none;
    border: none;
    height: 48px;
    max-width: 100%;
    padding: 10px 16px;
    color: #fff;
    width: calc(100% - 142px);

    transition: 0.4s ease;
}

#newsletter-form input[type=email]::placeholder {
    color: rgba(255, 255, 255, 0.93);
    font-size: 13px;
    line-height: 32px;
    text-align: right;
    direction: rtl;
}

#newsletter-form input[type="email"]:focus {}

.newsletter-wrap .button {
    min-width: 119px;
}

.newsletter-title {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 8px;
}

.newsletter-desc {
    font-size: 14px;
    line-height: 26px;
    color: #FFF;
}

.btn-newsletter {
    margin: 11px;
    font-size: 13px;
    background: none;
    height: 42px;
    border-radius: 56px;
    border: none;
    background: #fff;
    padding: 0;
    white-space: nowrap;
    color: var(--color1);
    padding: 0 12px;
    font-family: inherit;
    transition: 0.4s ease;
}

.btn-newsletter:hover {
    background: var(--color2);
    color: #fff;
}

#newsletter-form #email-error {
    position: absolute;
    bottom: 0;
    font-size: 12px;
    color: #ff7171;
    bottom: -22px;
    right: 9px;
}

#newsletter-form .alert {
    position: absolute;
    font-size: 12px;
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    bottom: -25px;
    right: 4px;
}

#newsletter-form .alert.bg-primary {
    color: rgb(97, 177, 251)
}

#newsletter-form .alert.bg-danger {
    color: #ff7171;
}

#newsletter-form .alert.bg-success {
    color: rgb(30, 222, 30);
}

@media screen and (min-width: 768px) {}

@media screen and (min-width: 992px) {}

/* --------------------
  Single Style
 -------------------- */
.single-title .title-heading {
    color: var(--color_title);
    font-size: 24px;
    line-height: 32px;
    text-align: center;

}



.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.socials-share .icon-share {
    display: flex;
    width: 38px;
    height: 38px;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    color: #fff;
    cursor: pointer;
    padding-bottom: 1px;
    transition: 0.4s ease;
}

.socials-share .icon-share:hover {
    color: var(--color1);
}

.share-wrap {
    display: none;
}

.socials-share {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    background: var(--color2);
    border-radius: 4px;

}

.socials-share.mobile-share {
    justify-content: center;
    border-radius: 4px;
    padding: 15px 10px 15px;
    margin-bottom: 24px;
}



.copy-btn {
    position: relative;
    display: flex;
    font-size: 20px;
    color: var(--color1);
    line-height: 1;
    cursor: pointer;
    transition: 0.4s ease;
}

.copy-btn:hover {
    color: var(--color2);
}

.copy-btn i {
    z-index: 2;
}

.copy-btn .tooltip-url {
    position: absolute;
    box-shadow: 0 1px 7px rgba(67, 43, 179, 0.1);
    background: #fff;
    padding: 9px 8px 5px;
    border-radius: 11px;
    bottom: 115%;
    min-width: 75px;
    right: 50%;
    transform: translateX(50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    white-space: nowrap;
    font-size: 13px;
    direction: ltr;
    color: #000;
    text-align: center;
    z-index: 1;
}

.copy-btn .tooltip-url::before {
    content: '';
    display: block;
    position: absolute;
    right: 50%;
    bottom: -8px;
    width: 0;
    height: 0;
    box-sizing: border-box;
    border: 3px solid #000;
    border-top-color: rgb(0, 0, 0);
    border-right-color: rgb(0, 0, 0);
    border-bottom-color: rgb(0, 0, 0);
    border-left-color: rgb(0, 0, 0);
    border-top-color: rgb(0, 0, 0);
    border-right-color: rgb(0, 0, 0);
    border-bottom-color: rgb(0, 0, 0);
    border-left-color: rgb(0, 0, 0);
    border-top-color: rgb(0, 0, 0);
    border-right-color: rgb(0, 0, 0);
    border-bottom-color: rgb(0, 0, 0);
    border-left-color: rgb(0, 0, 0);
    border-color: #0000 #0000 #fff #fff;
    transform-origin: 0 0;
    transform: rotate(-45deg) translateX(50%);
    box-shadow: -1px 1px 3px 0 rgb(106 137 204 / 19%);
    z-index: 0;
}

.copy-btn:hover .tooltip-url {
    opacity: 1;
    visibility: visible;
}

.copy-btn .tooltip-url:hover {
    opacity: 0;
    visibility: hidden;
}

.single-content-wrap {
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid rgba(54, 54, 54, 0.08);
    box-shadow: 0px 20px 42px rgba(161, 182, 199, 0.24);
    border-radius: 20px;
    position: relative;
    margin-bottom: 35px;
    overflow: hidden;
}

.single-content-wrap .title-site {
    position: relative;
}

.single-content-wrap .title-site:after {
    content: '';
    height: 1px;
    width: calc(100% + 60px);
    background: rgba(54, 54, 54, 0.08);
    bottom: 0;
    right: -30px;
    left: -30px;
    position: absolute;
}

.single-top .title-site {
    margin-bottom: 24px;
}

.category_post {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.category_post>i {
    color: var(--color4);
    font-size: 22px;
    margin-left: 10px;
}

.blog-meta .category_post {
    margin-bottom: 0;
}

.blog-meta .category_post>i {
    color: var(--color1);
    font-size: 20px;
}

.category_post a {
    color: #252525;
    font-size: 14px;
    line-height: 21px;
    position: relative;
}

.blog-meta .category_post a {
    color: var(--text);
}

.category_post a:not(:last-child):after,
.category_post .title:after {
    content: '';
    background: var(--color1);
    margin: 0 10px;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    position: relative;
    display: inline-block;
}

.blog-meta .category_post a:after {
    background: var(--color1);
}

.category_post a:hover {
    color: var(--color2);
}

.blog-meta .category_post a:hover {
    color: var(--color1);
}

.post-info-wrap {
    display: flex;
    flex-direction: column;
}

.help-heading {
    border-radius: 32px;
    background: #fff;
    max-width: 100%;
    position: relative;
    margin-bottom: 24px;
    border: 1px solid #EEEDE8
}

.help-heading ul {
    position: relative;
    padding: 8px 30px 24px;
}

.help-heading ul:before {
    content: '';
    width: 1px;
    height: 80%;
    border-right: 1px dashed var(--color3);
    position: absolute;
    right: 32px;
    top: 22px;
}

.help-heading li:last-child::before {
    content: '';
    width: 4px;
    height: 85%;
    position: absolute;
    right: 0;
    background: #fff;
    top: 21px;
}

.help-heading>span {
    transition: .4s;
    color: var(--color1);
    font-size: 16px;
    line-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    padding: 24px 10px;
    width: 100%;
    margin: auto;
}

.help-heading>span i {
    width: 20px;
    height: 20px;
    display: inline-flex;
    font-size: 8px;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
    transform: rotate(180deg);
    margin-right: auto;
}

.help-heading>span i.active {
    transform: rotate(0deg);
}

.help-heading a {
    padding-right: 12px;
    display: block;
    position: relative;
    color: #212121;
    font-size: 15px;
    line-height: 28px
}

.help-heading a::before {
    content: '';
    height: 6px;
    width: 6px;
    border-radius: 15px;
    display: inline-block;
    background: var(--color3);
    position: absolute;
    right: 0;
    top: 14px;
}

.help-heading a:hover {
    color: var(--color4);
}

.help-heading li {
    margin-bottom: 24px;
    position: relative;
}

.help-heading li:last-child {
    margin-bottom: 0;
}

.sidebar-post {
    position: sticky;
    top: 78px
}

.icon-scroll.active {
    transform: rotate(180deg);
}


.single-main .single-content {
    margin-top: 32px;
    margin-bottom: 24px;
    border-bottom: 1px solid #C2ABA180
}



.access-post>a {
    display: block;
    margin: 15px 0;
    padding: 15px 10px;
    font-size: 16px;
    line-height: 32px;
    color: rgba(46, 46, 47, 0.8);
    text-align: center;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #EEEDE8;
    position: relative;
    transition: 0.4s ease;
}

.access-post>a:hover {
    background: #FAF3ED;
}


.thumbnail-post-img {
    text-align: center;
    margin-bottom: 24px;
}

.thumbnail-post-img img {
    border-radius: 32px;
    width: 100%;
}

.thumbnail-img {
    float: none;
    max-width: 100%;
    margin: 0;
    display: inline-flex;
    overflow: hidden;
    border-radius: 3px;
}

.single-content-box {
    display: flex;
    align-items: flex-start;
}

.single-content-box .single-content {
    flex: 0 0 90%;
    max-width: 90%;
}

.single-share {
    flex: 0 0 10%;
    max-width: 10%;
    position: sticky;
    top: 106px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.single-share.mobile-share {
    flex-direction: row;
    max-width: 100%;
    justify-content: center;
    margin-bottom: 24px;
    align-items: center;
    position: unset;
}

.single-share a {
    display: inline-flex;
    font-size: 20px;
    color: rgba(46, 46, 47, 0.8);
    line-height: 1;
    transition: 0.4s ease;
}

.single-share a:hover {
    color: var(--color1);
}

.tags_post a {
    color: rgba(33, 37, 41, 0.74);
    font-size: 16px;
    transition: 0.4s ease;
    line-height: 32px
}

.tags_post a:not(:last-child):after {
    content: '-';
    margin: 0 10px;
    font-size: 20px;
    vertical-align: middle;

}

.tags_post a:hover {
    color: var(--color2);
}

.tags_post {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 16px;
    border-top: 1px solid rgba(102, 104, 105, 0.20);
    margin-top: 30px;
    padding-top: 12px;
}

.tags_post>span {
    margin-left: 10px;
}

.tags_post .title {
    color: #212529;
    font-size: 14px;
    line-height: 32px;
    margin-left: 10px;
}

.faq-container {
    margin: 40px 0 30px;
}

.title-site.faq-title .title-heading {
    margin: 15px 0;
    color: rgba(54, 54, 54, 0.8);
    font-size: 24px;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    width: 100%;
}

.author-desc {
    color: rgba(33, 37, 41, 0.74);
    font-size: 12px;
    line-height: 32px;
    border-radius: 4px 0px 0px 4px;
    background: rgba(213, 214, 214, 0.36);
    padding: 0 8px 0 21px;
    border-right: 1px solid var(--color2);
    width: 100%;
}

.author-title {
    color: #212529;
    font-size: 14px;
    line-height: 32px;
}

.icon-user.icon-style {
    margin-left: 2px;
}

.section-related-posts {
    margin: 40px 0
}

.section-related-bg {
    padding-bottom: 36px;
    position: relative;
}

.section-related-bg::before {
    content: '';
    background: var(--color1);
    width: 100%;
    height: 260px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.woocommerce-placeholder.wp-post-image {
    max-height: 191px;
    width: 100%;
    object-position: center;
    object-fit: cover;
}

.inner-blog {
    margin-bottom: 40px;
    margin-top: 32px;
}



.section-related-post {
    position: relative;
    margin: 80px 0 120px;
    padding-top: 50px;
}

.faq-title {
    text-align: center;
}


.overhead-title {
    font-size: 12px;
}


@media screen and (min-width: 768px) {
    .thumbnail-img {
        max-width: 50%;
        float: left;
        margin-right: 30px;
    }
}

/* --------------------
  comment Style
 -------------------- */
.form-submit {
    text-align: center !important;
    margin-bottom: 0 !important;
    flex: 0 0 100%;
    order: 1;
}




/* --------------------
     Search Simple
 -------------------- */
.header-search form {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    transition: 0.4s;
    border-radius: 7px;
    border: 1px solid #E6E6E6;
    background: rgba(190, 190, 190, 0.10);
    margin-bottom: 0;
}

.mobile-search {
    font-size: 22px;
    padding: 0;
    display: flex;
}

.header-searchsimple i.icon-search {
    color: #384163;
    opacity: 0.4;
    font-size: 16px;
    margin-right: 7px;
    transform: translateX(15px);
}

.header-search #search-text {
    width: 100%;
    border: none;
    background: none;
    color: var(--color1);
    font-size: 14px;
    padding: 8px;
}

.header-search #search-text::placeholder {
    color: #C6C6C6;
    font-size: 12px;
}

.search-close {
    display: none;
}

.search-close::after {
    display: block;
    content: "\d7";
    width: 13px;
    height: 20px;
    font-size: 23px;
    line-height: 25px;
    color: var(--color1);
    cursor: pointer;
    left: 7px;
    position: absolute;
    top: 6px;
}

.search-loading {
    border: 3px solid #ffffff;
    border-top: 2px solid var(--color1);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.search-results-box {
    position: absolute;
    z-index: 4;
    top: 52px;
    right: 0;
    left: 0;
    border-radius: 10px;
    background: #F2F2F2;
    text-align: center;
    padding: 10px 10px 30px;
    display: none;

}


.search-detail {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 10px 10px 10px 15px !important;
    border-radius: 7px;
    border: 1px solid #eaeaea;
    transition: 0.4s ease;
    gap: 16px;
    margin-bottom: 0 !important;
}

.search-detail:hover {
    border-color: var(--color1);
}

.search-pr-body h3 a {
    color: #212529;
    font-size: 14px;
    line-height: 32px;
    letter-spacing: -0.14px;
    font-family: var(--main_font);
    transition: 0.4s ease;
}

.search-detail:hover .search-pr-body h3 a {
    color: var(--color1);
}

.noresults {
    font-size: 13px;
    color: var(--color2);
}

.search-image {
    max-width: 100px;
    border-radius: 8px;
    overflow: hidden;
    max-height: 76px;
    display: flex;
    position: relative;
}

.search-image img {
    width: 100%;
    object-fit: cover;
    max-height: 100%;
}

.search-image::before {
    content: '';
    background: rgba(10, 34, 82, 0.50);
    backdrop-filter: blur(25px);
    inset: 0;
    opacity: 0;
    position: absolute;
    z-index: 1;
    transition: 0.4s ease;
}

.search-image::after {
    content: "\e901";
    font-family: 'icomoon';
    width: 48px;
    height: 48px;
    font-size: 48px;
    color: #fff;
    transform: rotateX(90deg);
    opacity: 0;
    inset: 0;
    margin: auto;
    position: absolute;
    z-index: 1;
    transition: 0.4s ease;
    line-height: 1;
}

.search-detail:hover .search-image::before {
    opacity: 1;
}

.search-detail:hover .search-image::after {
    opacity: 1;
    transform: scale(1);
}

.search-pr-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
}

.header-search .icon-search {
    margin-right: 7px;
    color: #C6C6C6;
}

.icons-wrapper {
    position: absolute;
    left: 10px;
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #9A9A9A;
    justify-content: center;
}

.icons-wrapper .icon-close {
    font-size: 12px;
    position: absolute;
    box-sizing: border-box;
    line-height: 1;
    display: none;
    cursor: pointer;
}

.icons-wrapper .icon-close:hover {
    color: red;
}

.search-loading {
    border: 2px solid #b0aeae;
    border-radius: 50%;
    border-top: 2px solid var(--color1);
    width: 15px;
    height: 15px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    display: none;
    position: absolute;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.search-title {
    font-size: 18px;
    padding: 20px 0 5px 0;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    line-height: 32px;
    color: #1A1A1A;
    gap: 16px;
}

.blog-body.product-body-search .price {
    position: relative;
    display: block;
}

.search-detail .blog-body {
    text-align: right;
    display: grid;
    gap: 10px;
}

.search-detail .blog-body a {
    color: #252525;
}

.search-detail .blog-body .post-link {
    color: var(--color2);
}

.search-detail .blog-body .post-link {
    display: flex;
    align-items: center;
    gap: 3px;
}

.search-detail:hover .post-link i {
    transform: rotate(-45deg);
}

.search-more {
    color: #1A1A1A;
    font-size: 12px;
    line-height: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-more i {
    font-size: 10px;
}

.search-more:hover {
    color: var(--color1);
}

.offers-wrap {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.offer-item {
    border: 1px solid #CC714B;
    border-radius: 48px;
    padding: 8px 12px;
    color: #414042;
    gap: 10px;
    display: inline-flex;
    align-items: center;
}

.offer-item:after {
    content: '\e939';
    font-family: icomoon;
    font-size: 8px;
    transform: rotate(90deg);
    color: #C5C5C5;
}

.search-pup-up {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    z-index: 1000;
    color: white;
    overflow: hidden;
    overflow-y: visible;
    padding-bottom: 50px;
    display: none;
    background: #00000033;
    backdrop-filter: blur(12px);
}

.search-pup-inner {
    background: #fff;
    min-height: 70%;
}

.search-pup-up #search-text {
    width: 100%;
    text-align: right;
    border: none;
    background: #F7F7F7;
    color: #313233;
    font-size: 14px;
    padding: 23px 72px;
    border-radius: 112px;
}

.search-pup-up #search-text::placeholder {
    color: #313233;
}

.search-pup-up .search-form:after {
    content: "\e906";
    font-family: 'icomoon';
    font-size: 24px;
    position: absolute;
    right: 28px;
    display: block;
    top: 10px;
    color: #313233;
}

.search-pup-up .search-results-box {
    background: unset;
    position: relative;
    top: unset;
    overflow: auto;
}

.fd-outer {
    width: 30px;
    margin-top: 10px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 10;
}

.fd-inner {
    width: 30px;
    text-align: center;
}

.fd-inner:before,
.fd-inner:after {
    position: absolute;
    content: '';
    height: 2px;
    width: inherit;
    background: #000;
    right: 0;
    transition: all .3s ease-in;
}

.fd-inner:after {
    bottom: 48%;
    transform: rotate(-45deg);
}

.fd-inner:before {
    top: 48%;
    transform: rotate(45deg);
}

.fd-outer label {
    font-size: .8em;
    line-height: 3em;
    text-transform: uppercase;
    color: #000;
    transition: all .3s ease-in;
    opacity: 0;
    cursor: pointer;
}

.fd-outer:hover .fd-inner:before,
.fd-outer:hover .fd-inner:after {
    transform: rotate(0);
    background: var(--color1);
}

.fd-outer:hover .fd-inner:before {
    top: 0;
}

.fd-outer:hover .fd-inner:after {
    bottom: 0;
}

.fd-outer:hover label {
    opacity: 1;
}

.search-pup-up .search-form {
    transform: scale(0);
    opacity: 0;
    transition-duration: .6s;
    transition-delay: .5s;
    display: flex;
}

.search-pup-up.popup-search-active .search-form {
    transform: scale(1);
    opacity: 1;
}




/*.search-results-box .button {*/
/*    width: 100%;*/
/*}*/



.search-pup-up .icons-wrapper .icon-close.search-remove {
    top: 0;
    left: 6px;
    color: rgb(210, 27, 27);
    transition: 0.4s ease;
    cursor: pointer;
    font-size: 15px;
}

.search-pup-up .icons-wrapper .icon-close.search-remove:hover {
    color: darkred;
}

.search-pup-up .icons-wrapper {
    position: absolute;
    top: 24px;
    left: 23px;
}

.search-pup-up .icons-wrapper i {
    position: absolute;
    top: 1px;
    left: 5px;
    display: none;
    font-size: 28px;
}

.single-title {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--dark);
}

.single-title>.title-single {
    font-size: 26px;
    margin-bottom: 16px;
    line-height: normal;
    color: var(--text);
}

.search-pup-inner .form-wrap {
    padding-top: 40px !important;
}

/* --------------------
     END Search Popup
 -------------------- */
@media screen and (max-width:768px) {
    .form-wrap {
        padding-top: 80px;
    }

    .fd-inner {
        width: 25px;
    }

    .fd-outer {
        width: 25px;
        top: -8px;
        right: 20px;
    }
}

@media screen and (min-width:576px) {
    .header-search>span {
        display: block;
    }
}

@media screen and (min-width:992px) {
    .single-title>.title-single {
        text-align: right;
        font-size: 32px;
        margin-bottom: 0;
    }

    .single-title .title-heading {
        text-align: right;
    }

    .header-search>span {
        font-size: 12px;
    }


    #breadcrumbs {
        padding-top: 24px;
        margin-bottom: 37px;
    }
}



@media screen and (min-width:1200px) {
    .title-heading-branch {
        margin-top: 0;
        text-align: right;
    }

    .contact-title::after {
        content: '';
        width: 107px;
        height: 3px;
        background: var(--color1);
        display: inline-block;
        position: absolute;
        bottom: 0;
        right: 0;
        left: unset;
    }



    .header-search>span {
        font-size: inherit;
    }
}

@media screen and (max-width: 576px) {}

@media screen and (max-width: 425px) {


    .type-product .summary .price ins:before {
        font-size: 16px;
    }
}

/* --------------------
     project
 -------------------- */
.project-card-body {
    border-radius: 4px;
    background: #FFF;
    padding: 72px 16px 24px;
    margin-top: -54px;
    border: 1px solid #ececec;
    transition: 0.4s ease;
}

.project-card:hover .project-card-body {
    box-shadow: 0px 0px 32px 0px rgba(199, 199, 199, 0.35);
}

.project-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.project-title img {
    max-width: 60px;
}

.project-title .title {
    color: #565656;
    font-family: var(--bold_font);
    font-size: 17px;
    line-height: normal;
}

.project-card-body .desc {
    color: #868686;
    text-align: justify;
    font-size: 15px;
    line-height: 33px;
}

.project-card-image {
    position: relative;
    filter: drop-shadow(0px 4px 12px rgba(119, 119, 119, 0.15));
    display: block;
    padding: 4px;
    margin: 0 8px
}

.project-card-image::before {
    width: 100%;
    height: 100%;
    content: '';
    background: #fff;
    position: absolute;
    display: inline-block;
    right: 0;
    top: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 40.00px 100%, 0 calc(100% - 40.00px));
}

.project-card-image img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 40.00px 100%, 0 calc(100% - 40.00px));
}

.projects-wrapper {
    margin-top: -85px;
}

.project-filter {
    margin-bottom: 52px;
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

/* --------------------
     Product
 -------------------- */
.section-product-home.background-in {
    background-color: rgba(216, 219, 227, 0.2);
    padding: 50px 0 27px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    background-attachment: fixed !important;
}

.section-product-home.background-out {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.float {
    position: absolute;
    font-size: 50px;
    z-index: -1;
    top: 5%;
}

.float2 {
    right: 10%;
    font-size: 60px;
    opacity: 0.5;
    top: unset;
}

.product-item {

    position: relative;
    border-radius: 18px;
    box-shadow: 0px 4px 22px 0px #B9B9B926;
    padding: 8px 8px 16px;
    background: #FFF;
    transition: 0.4s ease;
}

.swiper-slide .product-item {
    margin: 20px 0;
}

.product-image {
    display: block;
    overflow: hidden;
    position: relative;
    background: #F8F8F8;
    border-radius: 8px;
    margin-bottom: 16px;
}

.product-image img {
    width: 100%;
    border-radius: unset !important;
    transition: 0.9s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.product-item h2 a {
    display: block;
    min-height: 54px;
    transition: 0.5s linear;
    color: #262626;
    font-size: 16px;
    line-height: 24px;
    background-image: linear-gradient(to right, #262626, #262626 50%, var(--color1) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #0000;
    background-size: 202% 100%;
    background-position: 0;
    font-family: var(--main_font);
}

.product-item:hover h2 a {
    background-position: 100%;
}

.price {
    color: #3B4352;
    font-size: 13px;
    line-height: normal;
    display: flex;
    align-items: flex-start;
    gap: 5px;
    flex-direction: column;
    position: relative;
}

.sale .price {
    padding-right: 40px;
}

.price del,
.price ins {
    display: block;
}

.woocommerce-Price-amount bdi {
    display: inline-flex;
    font-size: 18px;
    gap: 2px;
    color: #252525;
    align-items: first baseline;
    flex-direction: row;
    font-weight: bold;
}

del .woocommerce-Price-amount bdi {
    font-size: 14px;
    line-height: 20px;
    color: #808080;
    font-weight: normal;
    text-decoration: line-through;
}

.woocommerce-Price-currencySymbol {
    font-size: 16px;
    font-weight: normal;
}

del .woocommerce-Price-amount bdi .woocommerce-Price-currencySymbol {
    font-size: 12px;
}


.on-sale {
    background: var(--color1);
    color: #fff;
    display: inline-flex;
    width: 36px;
    justify-content: center;
    align-items: center;
    height: 36px;
    padding-top: 5px;
    border-radius: 10px;
    font-size: clamp(12px, 2vw, 14px);
    position: absolute;
    right: 0;
    top: 2px;
    font-family: var(--bold_font);
}

.product-item.product-sale {
    .on-sale {
        width: clamp(32px, 4vw, 48px);
        height: clamp(32px, 4vw, 48px);
        border-radius: 50%;
        right: auto;
        left: 12px;
        top: 12px;
    }

    .price {
        padding-right: 0;
        position: unset;
    }
}

/*.product-item .price del:before {*/
/*    content: '';*/
/*    width: 100%;*/
/*    height: 1px;*/
/*    background: #F82F2F;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*}*/
.price.variable-price {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}


.product-attr .wishlist-link:not(.wished):hover {
    color: var(--color2);
}

.wishlist-link.wishlist-item.wished {
    color: #dd1515;
}

.product-colors {
    display: flex;
    align-items: center;
    direction: ltr;
    justify-content: center;
    z-index: 1;
    width: fit-content;
    flex-direction: column;
    position: absolute;
    right: 8px;
    top: 8px;
    padding: 4px;
    border-radius: 12px;
    gap: 4px;
    background: #fff;
}

.swiper-pagination.cart-pagination {
    background: #fff;
    width: fit-content !important;
    border-radius: 10px 10px 0 0;
    padding: 5px 6.5px 1px;
    position: absolute !important;
    right: 50%;
    transform: translateX(50%);
    bottom: -1px !important;
    margin: 0 !important;
}


.product-colors span {
    width: 14px;
    height: 14px;
    display: inline-block;
    border-radius: 100%;
}


.product-body {
    display: flex;
    flex-direction: column;
    padding: 0 8px;
}

.login-notice-wrap {
    text-align: center;
}

.login-notice-wrap>p {
    display: block;
    margin-bottom: 15px;
    text-align: center !important;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 52px;
    margin-top: auto;
}

.product-attr {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    background: #F8F8F8;
}

.wishlist-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--color3);
}

.call-for-price {
    border: 1px solid var(--success);
    padding: 4px 15px;
    background: var(--bg_success);
    border-radius: 9px;
    font-size: 15px;
    transition: 0.4s ease;
}

.call-for-price:hover {
    color: var(--success);
}

.out-of-stock {
    border: 1px solid var(--danger);
    padding: 4px 15px;
    background: var(--bg_danger);
    border-radius: 9px;
    font-size: 15px;
}

.button-wrapper {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
}

.blog-part {
    margin-top: 60px;
}


.post-item-image {
    display: block;
    position: relative;
    transition: 0.4s ease;
    margin-bottom: 8px;
}

.post-date {
    position: absolute;
    background: var(--color1);
    color: #fff;
    z-index: 1;
    display: inline-block;
    right: 8px;
    top: 8px;
    font-size: 13px;
    border-radius: 14px;
    padding: 4px 8px 1px;
}

.post-image {
    display: block;
    position: relative;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.post-item.simple-card .post-image {
    border-radius: 5px;
}

.post-image img {
    width: 100%;
}

.post-image::before {
    /*content: '';*/
    background: rgba(177, 132, 135, 0.8);
    backdrop-filter: blur(5px);
    inset: 0;
    opacity: 0;
    position: absolute;
    z-index: 0;
    transition: 0.6s ease;
}

.post-image::after {
    content: "";
    /*background: url("assets/img/logo.png");*/
    width: 140px;
    height: 74px;
    background-size: contain;
    transform: scale(0);
    opacity: 0;
    inset: 0;
    margin: auto;
    position: absolute;
    z-index: 1;
    transition: 0.6s ease;
    line-height: 1;
}

.post-item:hover .post-image::before {
    opacity: 1;
}

.post-item:hover .post-image::after {
    opacity: 1;
    transform: scale(1);
    ;
}

.post-image i {
    border: 1.6px solid var(--color2);
    width: 26px;
    height: 26px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: var(--color2);
    font-size: 18px;
    overflow: hidden;
    position: absolute;
    left: 16px;
    bottom: 12px;
    z-index: 1;
    transition: 0.4s ease;
}

.post-image i::before {
    margin-right: -8px;
    margin-bottom: -8px;
    transition: 0.4s ease;
}

.post-item:hover .post-image i {
    transform: rotate(-45deg);
}

.post-item:hover .post-image i::before {
    margin-right: 0;
    margin-bottom: 0;
}

.post-item .title {
    font-size: 18px;
    line-height: 28px;
    min-height: 64px;
    display: flex;
    align-items: center;
}

.post-item .title a {
    color: var(--text);
    display: block;
}

.post-item:hover .title a {
    color: var(--color1);
}

.post-item.simple-card .blog-body {
    margin-top: 10px;
    padding: 0 8px;
    max-width: unset;
}

.post-item .blog-body .desc {
    font-size: 14px;
    line-height: 28px;
    color: #212121;
}

.post-item:not(.main-card) .blog-body .desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    margin-bottom: 0;
    -webkit-box-orient: vertical;
}

.new-hr .post-item.post-item-hr .title {
    font-size: 16px !important;
}

.post-link {
    display: flex;
    margin-top: 12px;
    align-items: center;
    gap: 12px;
    color: var(--color2);
    transition: 0.4s ease;
}

.post-link i {
    font-size: 7px;
}

.post-item:hover .post-link {
    color: var(--color1);
}


.post-item-wrap .post-item-image {
    margin-left: 0;
}

.tab-btns {
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    display: none;
}

.scroll-item {
    position: relative;
}

.section-portfolios {
    position: relative;
    padding-top: 50px;
}

.gallery-item img {
    border-radius: 12px;
}

.gallery-item {
    position: relative;
}

.gallery-item::before {
    content: "\e901";
    font-family: 'icomoon';
    width: 58px;
    height: 58px;
    font-size: 40px;
    color: var(--color1);
    position: absolute;
    z-index: 1;
    transition: 0.4s ease;
    line-height: 1;
    background: #fff;
    border-radius: 0 12px 0 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    left: 0;
}

.gallery-item::after {
    content: '';
    background: #1C274C9E;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.term-item {
    background: #fff;
    box-shadow: 0px 0 48px 0px #0000001A;
    padding: 5px;
    display: flex;
    gap: 12px;
    border-radius: 8px;
    transition: 0.4s ease;
    margin: 35px 10px;
    border: 1px solid transparent;
}

.term-item img {
    max-width: 60px;
    border-radius: 8px;
}

.term-title .title {
    font-size: 16px;
    line-height: 25px;
    color: #1a1a1a;
}

.term-title .subtitle {
    font-size: 14px;
    line-height: 22px;
    font-family: var(--light_font);
    color: #979BBA;
    margin-top: 8px;
    display: inline-block;
}

.term-item:hover {
    border-color: #D0D3ED;
}

/********************
    archive pr
********************/

.archive-desc {
    width: 100%;
}

.editor-content.main-content.center-shortdesc p {
    text-align: center;
}


.tags-wrap {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    flex: 0 0 100%;
}

.tag-item {
    display: inline-flex;
    padding: 0 5px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 36px;
    color: #fff;
    font-size: 12px;
    line-height: 32px;
    background: var(--color2);
    border: 1px solid var(--color2);
    transition: 0.4s ease;
}

.tag-item:hover {
    background: #fff;
}

.shop-cards {
    margin-top: 24px;
}

.archive-features.special-features .hero-features {
    max-width: unset;
    width: 100%;
    margin-top: 0;
}

.section-slider .slider-item {
    border-radius: 12px;
    overflow: hidden;
}

.section-slider .slider-navigation {
    bottom: 10px;
}

.section-slider .banner-item {
    border-radius: 18px;
}

.section-slider .banner-item:first-child {
    margin-bottom: 21px;
}

.family-intro {
    margin-bottom: 40px;
}

.section-slider {
    margin-bottom: 80px;
}

/* sidebar && shop_sidebar*/



.widget_media_image img,
.widget_media_image-mobile img {
    border-radius: 8px;
}

.widget_media_image-mobile {
    margin-top: 64px;
}











#sidebar {
    z-index: 1;
}



.widget-side.table-access li a::before {
    content: none;
}

.widget-side.table-access>ul>li {
    padding: 8px 0;
    font-size: 14px;
}

.widget-side.table-access>ul>li a {
    color: #565656;
    transition: 0.4s ease;
}

.widget-side.table-access>ul>li a:hover {
    color: var(--color3);
}



.section-title-slider {
    margin-bottom: 25px;
}

.cta-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-cta {
    border-radius: 24px;
    background: #fff;
    border: 1px solid #EEEDE8;
    padding: 13px 16px;
    position: relative;
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    align-items: center;
    transition: 0.4s ease;
}

.icon-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 32px;
    height: 32px;
    border-radius: 100%;
    background: #FAF3ED;
    transition: 0.4s ease;
}

.icon-cta i {
    font-size: 24px;
    color: var(--color1);
}

.sidebar-cta:hover {
    background: #faf3ed;
}

.sidebar-cta:hover .icon-cta {
    background: #fff;
}

.sidebar-cta .title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(46, 46, 47, 0.8);
    font-size: 16px;
    line-height: 32px;
}

.sidebar-cta .title i {
    font-size: 24px;
    color: var(--color2);
}

.sidebar-cta .link {
    color: #252525;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s ease;
}

.sidebar-cta .link:hover {
    color: var(--color2);
}

.sidebar-cta .link i {
    font-size: 11px;
    color: var(--color2);
}

.sidebar-cta .title img {
    max-width: 25px;
}

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

    .archive-filter-wrap {
        display: flex;
        gap: 20px;
    }

    .websima_woocommerce_filter_color_ajax,
    .websima_woocommerce_filter_ajax {
        margin-bottom: 0;
    }

}

@media screen and (min-width: 992px) {
    .meta-category-box {
        padding: 50px 110px;
        margin-bottom: 53px;
    }

    .meta-category-title {
        display: flex;
        gap: 17px;
        align-items: center;
    }

    .post-item .title {
        font-size: 20px;
        line-height: 32px;
    }

    .post-item .blog-body .desc {
        font-size: 16px;
        line-height: 32px;
    }

    .commentlist .children li .isreply {
        right: -52px;
    }

    #sidebar-shop {
        position: unset;
        right: auto;
        overflow-y: unset;
        background: transparent;
        box-shadow: none;
    }

    #sidebar-shop .sidebar-close {
        display: none;
    }





}





/* --------------------
     Modal bootstrap Css
 -------------------- */
.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
    background-color: rgb(0 0 0 / 50%);
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);

}

.modal.show .modal-dialog {
    -webkit-transform: translate(0, 40px);
    transform: translate(0, 40px);
}

.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2));
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    border-radius: 0.3rem;
    outline: 0;
    color: #000;
    overflow: hidden;
    background: #fff;
}

.modal-header {
    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;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.modal-header .close:hover {
    transform: rotate(360deg);
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 16px;
    color: var(--color1);
}

.modal .alert {
    border-radius: 0 0 0.3rem 0.3rem !important;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 30px 20px 20px;
    text-align: center;
    text-transform: capitalize;
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}

.modal-footer> :not(:first-child) {
    margin-left: 0.25rem;
}

.modal-footer> :not(:last-child) {
    margin-right: 0.25rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

.modal-header .close {
    padding: 0.5rem 1rem;
    margin: -1rem auto -1rem -1rem;
    background: #0000;
    border: none;
    color: var(--danger);
    font-size: 29px;
    transition: 0.4s ease;
    line-height: 1;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-centered {
        min-height: calc(100% - (1.75rem * 2));
    }

    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 768px) {
    .modal-dialog {
        max-width: 550px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px;
    }
}

/* feature style */
.section-feature {
    background: rgba(216, 219, 227, 0.36);
    padding-top: 97px;
}

.feature-carousel.off {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-feature {
    width: 100% !important;
    top: -58px !important;
    display: flex;
    justify-content: space-between;
    position: absolute;
    right: 0;
    height: 34px;
    align-items: center;
}

.nav-feature>div {
    height: 100%;
    width: 34px !important;
    top: unset;
}



.page-template-template-about .inner-page .site-main {
    margin-bottom: 25px;
}


/* --------------------

 -------------------- */



.orderby {
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    margin-top: 10px;
}

.single-discount {
    width: 54px;
    height: 28px;
    font-size: 15px;
    background: var(--color2);
    border-radius: 15px;
    color: #fff;
    font-size: 15px;
    font-family: var(--bold_font);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 20px;
}

.call-price {
    background-color: rgba(22, 105, 123, 0.7) !important;
}

.out-stock {
    background-color: #d53343d6 !important;

}

.out-stock,
.call-price {
    display: inline-block;
    padding: 5px 10px;
    font-size: 12px;
    font-family: 'Quicksand-Bold';
    color: #fff;
    text-transform: capitalize;
    border-radius: 5px;
    margin: 15px 10px;
    transform: translateY(0);
}



.cat-design-two [class^="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
}

.cat-design-two {
    display: flex;
    width: 100%;
}


.widget_layered_nav ul {
    padding: 10px 0 0;
}

.websima-text .woocommerce-widget-layered-nav-list__item a:before {
    content: '';
    border-radius: 4px;
    border: 1px solid #fff;
    outline: 1px solid #D0D3ED;
    background: #FFF;
    width: 18px;
    height: 18px;
    top: 0;
    margin-left: 8px;
    transition: background 400ms;
}

.websima-text .woocommerce-widget-layered-nav-list__item a:hover:before {
    background: var(--color1);
}

.websima-text .woocommerce-widget-layered-nav-list__item.wc-layered-nav-term.chosen a::before {
    background: var(--color1);
}

.section-ages {
    background-color: #fff;
}

.error-image {
    position: relative;
    width: 100%;
    text-align: center;
}

.error-image::after {
    right: 50%;
    transform: translateX(50%);
    bottom: -116px;
    content: "";
    position: absolute;
    width: 100%;
    height: 70%;
    background-color: #C2ABA1;
    opacity: 0.6;
    filter: blur(80.6557px);
    border-radius: 102.5px / 264.5px;
    z-index: -1;
}

.error-box {
    text-align: left;
}

.error-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.swiper-categories-error>.swiper-wrapper {
    max-height: 550px;
}

/* .error-wrap {
     position: absolute;
     bottom: 0;
     right: 50%;
     transform: translateX(50%);
     text-align: center;
 } */

.error-wrap {
    text-align: center;
}

.error-wrap .error-desc {
    font-size: 22px;
    line-height: 40px;
    color: var(--color2);
    margin-bottom: 35px;
    text-align: center;
}

.error-wrap p.error-text {
    color: var(--color1);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 45px;
}

.error-404-btn {
    font-size: 13px;
    height: 40px;
}

.error_wrapper {
    align-items: center;
}

.error_wrapper {
    flex-direction: column-reverse;
    text-align: center;
}

.route-bar {
    position: relative;
    margin: 0 0 30px 0;
    user-select: none;
}

.route-bar:before {
    content: "";
    position: absolute;
    top: 30px;
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #363636CC;
}

.route-bar .step-box .wrapper {
    text-align: center;
}


.route-bar .step-box .title a:hover {
    color: var(--color1);
}

.route-bar .step-box .title,
.route-bar .step-box .title a {
    margin: 0;
    color: #363636;
}

.route-bar .step-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid #363636CC;
    border-radius: 50%;
    margin: 0 auto 5px auto;
    background: #fff;
}

.route-bar .step-box .icon-svg {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin: 0;
    border-radius: 0 !important;
}

.woocommerce-cart .route-bar .first-step .icon,
.woocommerce-checkout .route-bar .first-step .icon,
.woocommerce-checkout .route-bar .second-step .icon,
.woocommerce-order-pay .route-bar .first-step .icon,
.woocommerce-order-pay .route-bar .second-step .icon,
.woocommerce-order-pay .route-bar .third-step .icon,
.woocommerce-order-received .route-bar .first-step .icon,
.woocommerce-order-received .route-bar .second-step .icon,
.woocommerce-order-received .route-bar .third-step .icon,
.woocommerce-order-received .route-bar .fourth-step .icon {
    background-color: var(--color1);
}

.woocommerce-cart .route-bar .first-step .icon-svg,
.woocommerce-checkout .route-bar .first-step .icon-svg,
.woocommerce-checkout .route-bar .second-step .icon-svg,
.woocommerce-order-pay .route-bar .first-step .icon-svg,
.woocommerce-order-pay .route-bar .second-step .icon-svg,
.woocommerce-order-pay .route-bar .third-step .icon-svg,
.woocommerce-order-received .route-bar .first-step .icon-svg,
.woocommerce-order-received .route-bar .second-step .icon-svg,
.woocommerce-order-received .route-bar .third-step .icon-svg,
.woocommerce-order-received .route-bar .fourth-step .icon-svg {
    filter: brightness(0) invert(1);
}

.product-list-table {
    width: 100%;
}

.inner-intro.general-intro {
    padding-bottom: 40px;
    margin-bottom: 40px;
}

/* --------------------
    sEARCH PAGE
 -------------------- */
.search-container {
    border-radius: 24px;
    border: 1px solid rgba(177, 194, 192, 0.21);
    background: #F4F6F6;
    padding: 20px 20px 60px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}


.search-container+.archive-features,
.search-container+.archive-features.special-features {
    margin-top: 4PX;
}

.wrap-search .search-form {
    position: relative;
    margin-bottom: 25px;
}

.search-input {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 4px;
    height: 50px;
    padding: 5px 64px;
    box-sizing: border-box !important;
}

.wrap-search .icon-search {
    position: absolute;
    right: 20px;
    top: 13px;
    font-size: 24px;
    color: #9A9A9A;
}

.wrap-search .icons-wrapper {
    top: 0;
}

.search-banner {
    margin-bottom: 25px;
}

.search-banner img {
    width: 100%;
    border-radius: 24px;
}

.offers-title {
    color: #212529;
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 20px;
    display: block;
}

.all-offers {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.wrap-search .search-results-box {
    position: unset;
    background: none;
    padding: 0;
}


.search-blogs {
    display: flex;
    gap: 13px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}


.search-blogs .search-detail {
    flex: 0 0 100%;
}

.search-blogs .search-detail .post-image {
    border-radius: 5px;
    max-width: 120px;
}

.search-blogs .search-detail .post-image::after {
    width: 28px;
    height: 28px;
    font-size: 28px;
}

.search-blogs .search-detail .post-image.product-img {
    max-width: 80px;
}

.blog-body.product-body-search {
    width: calc(100% - 80px);
    display: grid;
    gap: 12px;
}

.blog-body .product-price {
    flex-direction: row;
    align-items: center;
    font-size: 16px;
}

.blog-body.product-body-search .title a {
    min-height: unset;
}

.blog-body .product-price bdi {
    font-size: 16px !important;
}

/* --------------------
     Responsive Mode
 -------------------- */

.title-site-center {
    text-align: center
}

.error-page {
    position: relative;
    z-index: 1;
    color: #fff;
    padding-bottom: 80px;

}

.error-page:before {
    content: '';
    width: 100%;
    height: calc(100% + 100px);
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(148deg, rgba(102, 63, 88, 0.51) 0%, rgba(102, 63, 88, 0.22) 50%, #fff 70%);
}

.wishlist-remove .wishlist-item.wished {
    cursor: pointer;
    width: 32px;
    height: 32px;
    z-index: 3;
    font-size: 36px;
    overflow: hidden;
    border-radius: 7px;
    text-align: center;
    color: red;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    padding-bottom: 2px;
}

.wishlist-remove .wishlist-item.wished:hover {
    color: red;
}

.af-form.acf-form {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #e7e7e7;
}

.af-form.acf-form code {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

html[dir="rtl"] .acf-field[data-width]+.acf-field[data-width] {
    border: none;
}

/*template path*/
.element-box {
    border-radius: 24px;
    background: rgba(242, 245, 245, 0.56);
    padding: 20px;
    display: grid;
    gap: 51px;
}

.element-box .product-box {
    flex: 0 0 100%;
    position: sticky;
    top: 60px;
}

.element-box.full-item .category-box {
    flex: 0 0 100%;
}

.category-head {
    margin-bottom: 33px;
    text-align: center;
    display: grid;
    justify-content: center;
    gap: 15px;
}

p.comment-form-email,
.comment-form-author {
    position: relative;
}

.cat-post {
    position: relative;
    padding-right: 22px;
    margin-bottom: 20px;
}

.cat-post::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: linear-gradient(180deg, #325652 0%, #212529 100%);
    display: inline-block;
    position: absolute;
    right: 0;
    top: 11px;
}

.cat-post a {
    color: rgba(33, 37, 41, 0.74);
    text-align: right;
    font-size: 16px;
    font-family: var(--main_font);
    line-height: 24px;
    display: block;
    min-height: 48px;
}

.cat-post a:hover {
    color: var(--color2);
}

.toggle-extra-posts .icon-long-down {
    width: 48px;
    height: 48px;
    background: #265A5347;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--color1);
    font-size: 12px;
    padding-top: 2px;
    margin: 18px 9px 0;
    cursor: pointer;
    transition: 0.4s ease;
}

.toggle-extra-posts {
    position: absolute;
    display: inline-block;
    left: 65px;
    bottom: -33px;
    z-index: 1;
}

.toggle-extra-posts .icon-shape {
    position: absolute;
    top: 7px;
    right: -34px;
    font-size: 30px;
    color: #f8f9f9;
    z-index: -1;
}

.product-box .product-item {
    margin-bottom: 0;
}

.swiper.swiper-product {
    padding: 0 1px;
}

.toggle-extra-posts.less .icon-long-down {
    color: var(--color2);
    background: #d99d0542;
    transform: rotate(180deg);
    padding-top: 0;
}

.mb-40 {
    margin-bottom: 30px;
}

.mb-32 {
    margin-bottom: 32px;
}

.fixed-badge {
    position: fixed;
    z-index: 10;
    border-radius: 400px;
    border: 1px solid #EBEBEB;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(206, 206, 206, 0.25);
    right: 15px;
    bottom: 110px;
    display: flex;
    padding: 8px;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    transition: 0.4s ease;
}

.fixed-badge.insta-badge {
    bottom: 175px;
}

.fixed-badge:hover {
    box-shadow: 0px 4px 4px 0px rgba(18, 140, 126, 0.22);
}

.fixed-badge .icon-whatsapp {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 144px;
    background: #128C7E;
    color: #fff;
}

.fixed-badge.insta-badge .icon-instagram {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 144px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
    font-size: 27px;
}

.fixed-badge .badge-body {
    display: none;
    flex-direction: column;
    padding-left: 13px;
    transition: 0.4s ease;
}

.badge-title {
    color: #999;
    font-size: 13px;
    line-height: normal;
}

.badge-body.active {
    display: flex;
}

.badge-body a {
    color: #1A1A1A;
    font-size: 13px;
    line-height: normal;
}

.fixed-badge:hover .badge-body {
    color: #128C7E;
    ;
}

.badge-number {
    direction: ltr;
}

.title-general {
    font-size: 28px;
    margin-bottom: 32px;
}

@media screen and (min-width: 400px) {
    .symbol {
        padding: 20px 38px;
    }




}

@media screen and (min-width: 576px) {

    .websima-logo {
        order: unset;
    }

    .mh-orderby-wrap .caticon {
        top: 18px;
    }

    .cta-socials {
        gap: 10px 32px;
    }

    .woocommerce-ordering {
        flex-direction: row;
    }

    .orderby {
        margin-top: 0;
    }



    .symbol {
        padding: 10px 25px;
    }


    .archive-features {
        display: flex;
        justify-content: center;
        margin: -39px auto 0;
        flex-wrap: wrap;
    }

    .wrap-ft-menu.wrap-script {
        flex: 0 0 46%;
    }

    .footer-end-row {
        flex-direction: row;

    }
}

@media screen and (min-width: 768px) {
    #newsletter-form {
        flex: 0 0 48%;
    }

    .help-heading>span {
        text-align: center;
    }

    .help-heading>span i {
        display: none;
    }

    .category_post {
        margin-bottom: 0;
    }

    .archive-head {
        min-height: 98px;
        margin-bottom: 50px;
    }

    .tags-wrap {
        flex: 0 0 40%;
        justify-content: flex-end;
        margin-bottom: 0;
    }

    .tag-item {
        padding: 2px 12px 4px;
        font-size: 14px;
    }

    .footer-info {
        flex-direction: row;
    }

    .ft-item {
        font-size: 16px;
        white-space: nowrap;
        gap: 10px;
    }

    .author-desc,
    .post-author {
        width: unset;
    }

    .meta-box .meta-item {
        flex: 0 0 31%;
    }


    .section-title.dot-title {
        justify-content: right;
    }

    .share-icon {
        gap: 16px;
    }

    .woocommerce-widget-layered-nav .widget-title {
        cursor: pointer;
    }

    .swiper-faq-wrap .swiper-arrow {
        display: inline-block;
    }

    .swiper-faq-wrap {
        margin-bottom: 32px;
    }

    .out-stock,
    .call-price {
        font-size: 13px;
        margin: 16px 18px;
        transform: translateY(-12px);
    }



    .post-info-wrap {
        flex-direction: row;
    }




    .swiper_items {
        padding: 0 56px;
    }

    .section-blog-related .swiper_items,
    .section-product-related .swiper_items {
        padding: 0 79px;
    }

    .section-product .swiper-button-prev,
    .section-product .swiper-button-next,
    .section-product-related .swiper-button-prev,
    .section-product-related .swiper-button-next {
        top: 15px;
        bottom: 37px;
    }







    .price-wrapper .on-sale {
        width: 50px;
        height: 25px;
        font-size: 14px;
    }

    .price-wrapper {
        padding: 0 18px;
        margin-bottom: 23px;
    }

    .product-end {
        padding: 10px 18px;
    }



    .countdown-wrapper span {

        font-size: 14px;
    }

    .section-product-home.background-in {
        padding: 60px 0 55px;
    }

    .section-product-home.background-out {
        padding: 30px 0;
    }

    .button-wrapper {
        margin-bottom: 40px;
        margin-top: 0;
    }



    .section-blog .swiper-button-prev,
    .section-blog .swiper-button-next,
    .section-blog-related .swiper-button-prev,
    .section-blog-related .swiper-button-next {
        top: 15px;
        bottom: 45px;
    }


    .footer-menu-wrap {
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .footer-menu-wrap {
        justify-content: space-between;
    }






    .menu-title {
        font-size: 18px;
        margin-bottom: 2020px;
    }




    .symbol-wrap {
        padding: 22px;
        grid-column-gap: 22px;
        grid-row-gap: 22px;
    }

    .button-hover {
        min-width: 129px;
        height: 50px;
    }

    .footer-symbols {
        justify-content: flex-end;
    }

    .overhead-title {
        font-size: 15px;
    }

    .faqs-question .faq-num {
        display: inline-flex;
    }



    .blog-meta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cta-box {
        padding: 45px 20px;
    }

    .cta-title {
        font-size: 22px;
        margin-bottom: 32px;
    }

    .cta-links {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        margin-bottom: 30px;
    }

    .cta-links a {
        padding: 10px 15px;
        min-width: 180px;
        gap: 12px;
        font-size: 16px;
    }

    #footer {
        margin-top: 104px;
        padding-bottom: 0;
    }

    .feature-card {
        flex: 1 0 30%;
    }

    .search-container {
        padding: 30px 50px;
    }

    .inner-blog {
        margin-bottom: 60px;
        margin-top: 40px;
    }

    .commentlist>.cat-parent>ul.children {
        padding: 0 50px 0 0;
    }

    .product-price {
        font-size: 16px;
        gap: 6px;
    }

    .post-item.post-item-hr {
        display: flex;
        gap: 20px;
        align-items: center;
        padding-left: 10px;
    }

    .post-item.post-item-hr .post-image {
        margin-bottom: 0;
        border-radius: 16px;
        flex: 0 0 41%;
    }

    .post-item.post-item-hr .blog-body {
        padding: 0;
        margin: 0;
    }

    .footer-newsletter {
        justify-content: space-between;
        padding: 32px 0 42px;
        flex-direction: row;
        text-align: right;
    }

    .footer-main {
        gap: 30px;
        padding-top: 80px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .footer-about {
        flex: 0 0 100%;
    }

    .footer-contact {
        flex: 0 0 47%;
    }

    .footer-menu-wrap {
        margin: 0;
        flex: 0 0 47%;
    }
}

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

    .socials-wrap {
        justify-content: flex-start;
        align-items: center;
        gap: 24px;
    }

    .search-pup-up {
        top: 97px;
        height: calc(100% - 97px);

    }

    .fixed-badge .badge-body {
        display: flex;
    }

    .fixed-badge {
        right: 10px;
    }

    .tab-btns {
        display: flex;
    }

    .section-slider .slider-navigation {
        bottom: 40px;
    }


    .ft-item {
        flex-direction: row;
    }

    .wrap-ft-menu.wrap-script {
        flex: 0 0 20%;
    }

    .inner-blog {
        margin-bottom: 100px;
    }

    .archive-filter {
        padding: 18px 30px;
        justify-content: space-between;
        margin: 51px 0 39px;
    }

    .search-container {
        padding: 50px 60px;
    }


    .mb-40 {
        margin-bottom: 40px;
    }


    .access-wrap {
        justify-content: space-around;
    }




    .af-form.acf-form {
        padding: 20px;
        width: 80%;
        margin: auto;
    }

    .section-title .desc {
        font-size: 16px;
        line-height: 32px;
        margin-top: 12px;
    }

    .header-nav.filter-nav {
        display: none;
    }



    .faq-heading {
        margin-bottom: 48px;
    }

    .page-title .title-heading {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .page-title .editor-content.subtitle p {
        margin-bottom: 0;
        font-size: 16px;
        line-height: 24px;
    }

    .page-title .desc {
        font-size: 18px;
        line-height: 26px;
    }

    .header-logo {
        flex: 0 0 3%;
        text-align: center;
        margin-right: 0;
    }

    .header-search {
        flex: 0 0 22%;
        position: relative;
    }

    .header-end {
        flex: 0 0 10%;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-direction: row;
        margin-right: auto;
        justify-content: flex-end;
    }

    .menu-wrap {
        flex: 0 0 43%;
        display: flex;
    }

    .nav-menu {
        position: relative;
        display: flex;
        gap: 16px;
        align-items: center;
    }

    .menu-item-has-children {
        position: relative;
    }

    .nav-menu>li>a {
        padding: 12px 0 13px;
        display: inline-block;
        color: #fff;
        font-size: 14px;
        line-height: 32px;
    }

    .nav-menu>li>a:hover {
        color: var(--color2)
    }

    .menu-item:hover>.sub-menu {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .sub-menu .menu-item {
        padding: 10px 22px 10px 15px;
        position: relative;
    }

    .nav-menu .sub-menu .menu-item a {
        color: rgba(33, 37, 41, 0.74);
    }

    .nav-menu .sub-menu .menu-item:hover a,
    .nav-menu .sub-menu .menu-item a:hover {
        color: #fff;
        transition: 0.4s ease;
    }

    .nav-menu .sub-menu>li.menu-item-has-children>a::after {
        -webkit-transform: rotate(90deg);
        position: absolute;
        left: 11px;
        top: 7px;
        transition: 0.4s ease;
        content: "\e919";
        font-family: icomoon;
        vertical-align: middle;
        margin-right: 4px;
        font-size: 8px;
        cursor: pointer;
    }

    .nav-menu .sub-menu li .sub-menu {
        right: 100%;
        top: 0
    }

    .nav-menu>li.menu-item-has-children>a::after {
        -webkit-transform: rotate(90deg);
        position: relative;
        transition: 0.4s ease;
        content: "\e90f";
        font-family: icomoon;
        margin-right: 4px;
        font-size: 5px;
        cursor: pointer;
        vertical-align: 0px;

    }

    .nav-menu .sub-menu li .sub-menu {
        right: 100%;
        top: 0
    }

    #sidebar button[type="submit"],
    #cancel-comment-reply-link,
    .button {
        font-size: 16px;
        padding: 5px 19px;
    }

    .footer-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .fixed-menu {
        display: none;
    }


    .commentlist .children li .isreply {
        right: -110px;
    }

    .error-page:before {
        background: linear-gradient(40deg, rgba(102, 63, 88, 0.51) 0%, rgba(102, 63, 88, 0.22) 50%, #fff 70%)
    }

    .error-404-btn {
        font-size: 14px;
        height: 50px;
    }

    .error-wrap p.error-text {
        font-size: 38px;
    }

    .error-wrap {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .error_wrapper {
        flex-direction: row;
        text-align: unset;
    }

    .single-content-wrap {
        padding: 40px;
        margin-bottom: 75px;
    }

    .single-content-wrap .title-site:after {
        width: calc(100% + 100px);
        left: -50px;
        right: -50px;
    }

    .thumbnail-post-img {
        margin-bottom: 30px;
    }

    .head-logo {
        justify-content: flex-start;
    }

    .section-product-home.background-in {
        background-size: contain;
    }

    .woocommerce-mini-cart__buttons.buttons a {
        font-size: 14px;
    }

    .swiper-faq-prev,
    .swiper-faq-next {
        width: 50px;
        height: 50px;
    }

    .faq-cat a {
        padding: 5px 10px;
        font-size: 16px;
    }

    .faq-content .faqs-question {
        padding: 16px;
        font-size: 16px;
        line-height: 32px;
        gap: 16px;
    }

    .faq-content .faqs-item {
        margin-bottom: 16px;
    }

    .acf-form-submit .button-hover {
        min-width: 161px;
    }

    .title-site.faq-title .title-heading {
        margin: 0 0 33px;
    }

    .section-comment {
        margin: 120px 0 60px;
    }




    .archive-related {
        margin: 120px 0;
    }

    .socials {
        flex: 1 0 0;
    }

    .footer-info {
        justify-content: space-between;
    }

    .websima-logo {
        text-align: right;
    }

    .section-title .title-heading {
        font-size: 32px;
        line-height: 50px;
    }

    .section-title {
        margin-bottom: 42px;
    }

    .mb-22 {
        margin-bottom: 22px;
    }

    .header-end .simple-link {
        display: inline-flex;
    }

    .site-title.contact-title {
        margin-bottom: 24px;
    }

    .archive-meta-intro .page-title {
        justify-content: flex-start;
    }

    .inner-intro.general-intro {
        padding-top: 10px;
    }

    .detail-mini del .woocommerce-Price-amount bdi {
        font-size: 12px;
    }

    .detail-mini .woocommerce-Price-amount bdi {
        font-size: 18px;
    }

    .footer-main {
        gap: 30px;
        padding-top: 80px;
    }

    .header-row {
        justify-content: unset;
        flex-direction: row;
        gap: 24px;
    }
}


@media screen and (min-width: 1200px) {
    .header-end {
        flex: 0 0 15%;
    }

    .user-btn span {
        display: flex;
    }

    #newsletter-form {
        flex: 0 0 40%;
    }

    .footer-about {
        text-align: right;
        flex: 0 0 25%;
        margin-bottom: 0;
    }

    .footer-desc {
        margin: 12px 0 24px;
        text-align: justify;
        font-size: 16px;
        line-height: 32px;

    }

    .footer-contact {
        flex: 0 0 24%;
    }



    .meta-info-box {
        flex: 0 0 25%;
    }

    .meta-box .meta-item {
        flex: 0 0 23.3%;
    }


    .archive-faq-sample {
        margin-top: 80px;
    }

    .menu-wrap {
        flex: 0 0 44%;
        display: flex;
    }

    .nav-menu>li>a {
        font-size: 16px;
        line-height: 32px;
    }

    .footer-contact {
        flex: 0 0 28%;
    }

    .footer-menu-wrap {
        justify-content: space-between;
        flex: 0 0 25%;
    }

    .access-wrap {
        justify-content: space-between;
    }

    .access-wrap {
        padding: 0 30px;
    }

    .search-container {
        padding: 50px 132px;
    }

    .search-courses .search-detail {
        flex: 0 0 32%;
    }

    .search-blogs .search-detail {
        flex: 0 0 32%;
    }

    .archive-cards .col-md-12:nth-child(2n) .element-box.full-item {
        flex-direction: row-reverse;
    }

    .element-box {
        padding: 30px 30px 64px;
        display: flex;
        gap: 30px;
        justify-content: space-between;
        align-items: flex-start;
    }



    .element-box .product-box {
        flex: 0 0 34%;
        position: sticky;
        top: 60px;
    }

    .element-box.full-item {
        padding: 34px 37px 64px;
    }

    .element-box.full-item .category-box {
        flex: 0 0 61%;
    }

    .category-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 33px;
        min-height: 44px;
    }

    .archive-features {
        max-width: 90%;
    }

    .feature-card {
        flex: 1 0 0;
    }

    .footer-contact {
        flex: 0 0 27%;
    }

    .enamad-footer {
        flex: 0 0 28%;
    }

    .wrap-script {
        flex: 0 0 10%;
    }

    .site-title .title-heading {
        font-size: 23px;
    }

    .teams-social.socials a {
        margin-right: 30px;
    }

    .header-menu {
        gap: 32px;
    }

    .section-feature {
        padding-top: 46px;
    }

    .col-lg-5 .post-item .title {
        min-height: unset;
    }

    .cat-post {
        margin-bottom: 4px;
    }


}

@media screen and (min-width: 1400px) {
    #newsletter-form {
        flex: 0 0 31%;
    }

    .post-item.post-item-hr .post-image {
        flex: 0 0 27%;
    }


    .meta-box .meta-item {
        flex: 0 0 18.5%;
    }

    .nav-menu {
        gap: 32px;
    }

    .wrap-menu {
        flex: 0 0 42%;
    }

    .enamad-footer {
        flex: 0 0 30%;
    }

    .price_label .from,
    .price_label .to {
        font-size: 15px;
    }

    .element-box {
        gap: 60px;
    }

    .header-searchsimple {
        margin-left: -48px;
    }

    .esp-menu {
        padding: 12px 18px 13px 18px;
        gap: 40px;
    }

    .esp-menu .simple-link:not(:last-child)::after {
        left: -21px;
    }

    .page-numbers li {
        margin: 0 7px;
    }
}

@media screen and (min-width: 1700px) {

    .enamad-footer {
        flex: 0 0 27%;
    }

    #footer:before {
        background-repeat: repeat;

    }

    .post-image img {
        max-height: unset;
    }

    .site-title.contact-title {
        margin-bottom: 36px;
    }

    .meta-box .meta-item {
        flex: 0 0 15.4%;
    }
}

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


    b.faq-num {
        display: none;
    }

    .sidebar .sidebar-banner {
        display: none;
    }

    #cart-mobile.active {
        left: 0% !important;

    }

    #cart-mobile {
        transition: 0.4s;
        position: fixed;
        left: -100% !important;
        top: 0;
        right: unset !important;
        opacity: 1;
        visibility: visible;
        transform: unset;
        max-width: 85%;
        bottom: 0;
        min-width: 300px;
        border-radius: 0;
        pointer-events: all !important;
        z-index: 99991;
        background: #fff;
        padding: 10px;
    }

    .sub_part_top .icon-close {
        position: absolute;
        right: 0;
        top: 0;
        transition: 0.4s ease;
        cursor: pointer;
        color: var(--danger);
        font-size: 32px;
    }

    .sub_part_top .icon-close::before {
        content: '\00D7';
        font-weight: bold;
    }

    .sub_part_top .icon-close:hover {
        color: #363636;
    }

    .sub_part_top {
        display: flex;
        justify-content: center;
        align-items: center;
        color: #363636;
        margin-bottom: 10px;
        font-size: 20px;
        position: relative;
        font-family: var(--bold_font);
    }

    .flex-title.archive-head-wrap {
        display: block;
    }

    .page-bg.general-bg {
        height: 180px;
    }

    .inner-intro.general-intro {
        padding-bottom: 40px;
        margin-bottom: 40px;
        padding-top: 15px;
    }

    .websima_woocommerce_filter_ajax {
        flex-wrap: wrap;
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .woocommerce-Tabs-panel .section-title.flex-title {
        flex-direction: column;
        align-items: center;
    }

    .woocommerce-Tabs-panel .section-title.flex-title .tags-wrap {
        margin-bottom: 0;
    }

    .rate-comment.float-rate {
        float: right;
        transform: translateY(3px);
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
        margin-top: 0;
    }

    .socials-wrap {
        justify-content: center;
        width: 100%;
    }

    .enamad-footer {
        margin: auto;
    }

    .footer-menu-wrap {
        justify-content: space-evenly;
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .bg-icon {
        display: none;
    }

    .commentlist .children li .isreply {
        position: absolute;
        right: -48px;
        top: 50%;
        font-size: 19px;
        transform: translateY(-50%);
    }

    .footer-contact li {
        justify-content: flex-start;
    }

    .footer-contact {
        text-align: right;
    }

    .footer-title {
        color: #fff;
        padding: 19px 24px;
        margin-bottom: 0;
        margin-top: 0;
        position: relative;
        font-size: 20px;
        font-family: var(--main_font);
    }

    .access-wrap .wrap-ft-menu.ftmenu2 {
        margin-top: -20px;
    }

    .footer-title i {
        color: #fff;
        position: absolute;
        top: 33px;
        left: 15px;
        font-size: 7px;
        display: inline-block;
        transition: 0.4s ease;
    }

    .footer-menu-wrap {
        width: 100%;
    }

    .footer-title i.active {
        color: #fff;
        transform: rotate(180deg);
    }

    .footer-contact {
        width: 100%;
        background: #f58320;
        border-radius: 24px;
    }

    .footer-contact ul {
        padding: 10px 24px 15px;
    }

    .wrap-ft-menu {
        flex: 0 0 100%;
        border-radius: 24px;
        background: #f58320;
        margin-top: 20px;
    }

    .footer-sub-menu {
        padding: 10px 32px;
    }

    .wrap-ft-menu .footer-sub-menu {
        display: none;
    }

    .footer-sub-menu li::before {
        content: '';
        width: 10px;
        height: 1px;
        background: #fff;
        display: inline-block;
        margin-left: 5px;
    }

    .af-field.acf-field {
        width: 100% !important;
        padding-bottom: 0 !important;
    }


    .widget.widget-side {
        width: 100%;
    }

    .woocommerce-filtering {
        width: 100%;
    }
}


.notifictian-wrapper {
    border-radius: 8px;
    background: #F7F7F7;
    padding: 40px 40px 46px 0;

}

.editor-content input[type=text]:focus,
.editor-content input[type=email]:focus,
.editor-content input[type=number]:focus,
.editor-content input[type=password]:focus,
.editor-content input[type=search]:focus,
.editor-content input[type=tel]:focus,
.editor-content textarea:focus,
.comment-form input:focus,
.comment-form textarea:focus,
.editor-content input[type=text]:focus {
    border: 1px solid var(--color2);
    background-color: #ffffff;
}

.blog-content {
    display: none;
}

.blog-content.active {
    display: grid;
    gap: 16px;
}

.section-title-blog {
    font-size: 26px;
    margin-bottom: 32px;
}


.swiper-pagination.access-pag {
    bottom: 67px !important;
}

.widget_media_image:hover {
    filter: drop-shadow(0 0px 4px #181717ed);
}

a.sidebar-banner:hover {
    filter: drop-shadow(0 0px 4px #181717ed);
}

.single-product .woocommerce-notices-wrapper {
    position: relative;
    z-index: 1;
    right: 0;
    width: 100%;
    top: -15px;
}

.single-product .woocommerce-notices-wrapper .wc-block-components-notice-banner {
    padding: 10px !important;
    display: flex;
    align-items: center;
    gap: 9px;
    border-radius: 2px;
    width: 100%;
    justify-content: center;
}

.single-product .woocommerce-notices-wrapper .wc-block-components-notice-banner .wc-block-components-notice-banner__content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    flex-basis: unset;
}

.single-product .woocommerce-notices-wrapper .wc-block-components-notice-banner .button {
    text-decoration: none;
    background: var(--color2) !important;
    opacity: 1;
    color: #fff !important;
    height: 34px;
    font-size: 13px;
}

.single-product .woocommerce-notices-wrapper .wc-block-components-notice-banner.is-success .button {
    background: #4AB866 !important;
}

.wc-block-components-notice-banner {
    width: fit-content;
    margin: auto;
}

.woocommerce-cart .wc-block-components-notice-banner {
    width: 100%;
    margin-right: 0 !important;
}

.wc-block-components-notice-banner.is-success>svg {
    display: none;
}

@media screen and (min-width: 768px) {
    .single-product .woocommerce-notices-wrapper {
        right: 50%;
        transform: translateX(50%);
        width: fit-content;
    }

    .single-product .woocommerce-notices-wrapper .wc-block-components-notice-banner {
        width: fit-content;
    }

    .single-product .woocommerce-notices-wrapper .wc-block-components-notice-banner .wc-block-components-notice-banner__content {
        flex-direction: row-reverse;
    }

    .wc-block-components-notice-banner.is-success>svg {
        display: inline-block;
    }

}