/********** Template CSS **********/
:root {
    --primary: #E88F2A;
    --secondary: #FAF3EB;
    --light: #FFFFFF;
    --dark: #2B2825;
}

.font-secondary {
    font-family: 'Pacifico', cursive;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.border-inner {
    position: relative;
}

.border-inner * {
    position: relative;
    z-index: 1;
}

.border-inner::before {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    background: none;
    border: 1px solid var(--light);
    z-index: 0;
}

.btn-square {
    width: 40px;
    height: 40px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 50px;
    height: 50px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 0;
    z-index: 99;
}

.navbar-dark .navbar-nav .nav-link {
    font-family: 'Oswald', sans-serif;
    padding: 30px 15px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        padding: 10px 0;
    }
}

.hero-header {
    background: url(../img/hero.jpg) top right no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 10px;
    left: 50%;
    bottom: 0;
    margin-left: -30px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 180px;
    height: 2px;
    left: 50%;
    bottom: 4px;
    margin-left: -90px;
    background: var(--primary);
}

.service::after,
.contact::after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 45px);
    top: 135px;
    left: 0;
    background: linear-gradient(rgba(43, 40, 37, .9), rgba(43, 40, 37, .9)), url(../img/service.jpg) center center no-repeat;
    background-size: cover;
    z-index: -1;
}

.contact::after {
    background: linear-gradient(rgba(43, 40, 37, .5), rgba(43, 40, 37, .5)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.bg-offer {
    background: linear-gradient(rgba(43, 40, 37, .9), rgba(43, 40, 37, .9)), url(../img/offer.jpg) center center no-repeat;
    background-size: cover;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
    filter: blur(5px)
}

.team-item .team-overlay {
    transition: .5s;
    opacity: 0;
}

.team-item:hover .team-overlay {
    opacity: 1;
}

.testimonial-carousel .owl-dots {
    height: 45px;
    margin-top: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 2px;
    width: 10px;
    height: 25px;
    background: #DDDDDD;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    height: 45px;
    background: var(--primary);
}

.testimonial-carousel .owl-item .testimonial-item {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    opacity: 1;
}

.bg-img {
    background: linear-gradient(rgba(43, 40, 37, .5), rgba(43, 40, 37, .5)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}























/* Extra style code */
/* =========================================================
       PRODUCT GALLERY - FRESH PREMIUM STYLE
    ========================================================= */

#menu.cat_product_area {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
       SECTION TITLE
    ========================================================= */

#menu .stitle {
    position: relative;

    margin-bottom: 12px !important;

    color: #111 !important;

    font-family: Arial, sans-serif !important;
    font-size: 30px !important;
    font-weight: 700;

    letter-spacing: -0.5px;
}


#menu .sline {
    width: 55px;
    height: 3px;

    margin: 0 auto;

    background: #111;

    border-radius: 50px;

    position: relative;
}


#menu .sline::after {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 18px;
    height: 3px;

    transform: translateX(-50%);

    background: #777;

    border-radius: 50px;
}


/* =========================================================
       CATEGORY TABS WRAPPER
    ========================================================= */

.product-category-tabs {
    display: flex;

    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}


/* =========================================================
       CATEGORY BUTTON
    ========================================================= */

.product-category-btn {
    position: relative;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    width: 200px;
    min-height: 170px;

    padding: 11px 10px 13px;

    border: 1px solid #e8e8e8 !important;

    border-radius: 14px;

    background: #ffffff !important;

    color: #222;

    font-family: Arial, sans-serif;

    cursor: pointer;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}


/* Top Shine */

.product-category-btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #111;

    transform: scaleX(0);

    transform-origin: center;

    transition: transform 0.35s ease;
}


/* =========================================================
       CATEGORY IMAGE
    ========================================================= */

.category-tab-image {
    position: relative;

    width: 105px;
    height: 105px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    border-radius: 12px;

    overflow: hidden;

    background: #f7f7f7;

    border: 1px solid #eeeeee;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.04);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.category-tab-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.5s ease,
        filter 0.35s ease;
}


/* =========================================================
       CATEGORY NAME
    ========================================================= */

.category-tab-name {
    display: block;

    width: 100%;

    color: #222;

    font-family: Arial, sans-serif;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.35;

    text-align: center;

    word-break: break-word;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
       CATEGORY HOVER
    ========================================================= */

.product-category-btn:hover {
    transform: translateY(-6px);

    border-color: #111 !important;

    background: #ffffff !important;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.10);
}


.product-category-btn:hover::before {
    transform: scaleX(1);
}


.product-category-btn:hover .category-tab-image {
    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.10);
}


.product-category-btn:hover .category-tab-image img {
    transform: scale(1.08);
}


.product-category-btn:hover .category-tab-name {
    color: #000;
}


/* =========================================================
       ACTIVE CATEGORY
    ========================================================= */

.product-category-btn.active {
    transform: translateY(-5px);

    border-color: #111 !important;

    background: #111 !important;

    color: #fff;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.18);
}


/* .product-category-btn.active::before {
    background: #ffffff;
    transform: scaleX(1);
} */


.product-category-btn.active .category-tab-image {
    background: #ffffff;

    border-color: #ffffff;

    box-shadow:
        0 5px 16px rgba(0, 0, 0, 0.18);
}


.product-category-btn.active .category-tab-name {
    color: #ffffff;
}


/* =========================================================
       PRODUCT GRID
    ========================================================= */

#categoryProductArea {
    margin-top: 5px;
}


/* =========================================================
       PRODUCT WRAPPER
    ========================================================= */

.mwrap {
    display: flex;
}


/* =========================================================
       PRODUCT CARD
    ========================================================= */

.mcard {
    position: relative;

    display: flex;

    flex-direction: column;

    width: 100%;
    height: 100%;

    background: #ffffff;

    border: 1px solid #e5e5e5 !important;

    border-radius: 16px !important;

    overflow: hidden;

    box-shadow:
        0 3px 15px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


/* =========================================================
       CARD HOVER
    ========================================================= */

.mcard:hover {
    transform: translateY(-8px);

    border-color: #cfcfcf !important;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.12);
}


/* =========================================================
       PRODUCT IMAGE
    ========================================================= */

.mcard .mimg {
    position: relative;

    width: 100%;

    padding-top: 100%;

    overflow: hidden;

    background: #f6f6f6;

    border-bottom: 1px solid #eeeeee;
}


.mcard .mimg::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.25),
            transparent 50%);

    z-index: 1;

    pointer-events: none;

    opacity: 0;

    transition: opacity 0.4s ease;
}


.mcard .mimg img {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.55s ease,
        filter 0.4s ease;
}


.mcard:hover .mimg img {
    transform: scale(1.07);

    filter: brightness(1.03);
}


.mcard:hover .mimg::before {
    opacity: 1;
}


/* =========================================================
       BEST SELLER BADGE
    ========================================================= */

.product-best-seller {
    position: absolute;

    top: 12px;
    left: 12px;

    z-index: 5;

    padding: 6px 10px;

    background: #111;

    color: #ffffff;

    border-radius: 5px;

    font-family: Arial, sans-serif;

    font-size: 10px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.18);
}


/* =========================================================
       PRODUCT BODY
    ========================================================= */

.mbody {
    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 16px 16px 17px;

    background: #ffffff;
}


/* =========================================================
       PRODUCT CATEGORY
    ========================================================= */

.mcat {
    margin-bottom: 7px;

    color: #888;

    font-family: Arial, sans-serif;

    font-size: 10px;
    font-weight: 700;

    line-height: 1.4;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


/* =========================================================
       PRODUCT TITLE
    ========================================================= */

.mtit {
    min-height: 44px;

    display: flex;

    align-items: flex-start;
}


.mtit a {
    color: #151515 !important;

    font-family: Arial, sans-serif !important;

    font-size: 16px;

    font-weight: 700;

    line-height: 1.4;

    text-decoration: none;

    transition:
        color 0.3s ease;
}


.mtit a:hover {
    color: #666 !important;

    text-decoration: none;
}


/* =========================================================
       CATEGORY INFO
    ========================================================= */

.mbody .mt-2 {
    margin-top: 10px !important;

    padding-top: 10px;

    border-top: 1px solid #eeeeee;
}


.mbody small {
    color: #999;

    font-family: Arial, sans-serif;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
       NO PRODUCT
    ========================================================= */

#categoryProductArea .text-muted {
    padding: 40px 20px;

    color: #999 !important;

    font-family: Arial, sans-serif;

    font-size: 14px;
}


/* =========================================================
       TABLET
    ========================================================= */

@media (max-width: 991px) {

    #menu .stitle {
        font-size: 27px !important;
    }


    .product-category-tabs {
        gap: 14px;
    }


    .product-category-btn {
        width: 130px;

        min-height: 155px;

        padding: 10px 8px 12px;

        border-radius: 12px;
    }


    .category-tab-image {
        width: 90px;
        height: 90px;

        border-radius: 10px;
    }


    .category-tab-name {
        font-size: 12px;
    }


    .mcard {
        border-radius: 13px !important;
    }


    .mbody {
        padding: 14px;
    }


    .mtit a {
        font-size: 15px;
    }


    .product-best-seller {
        top: 10px;
        left: 10px;
    }

}


/* =========================================================
       MOBILE
    ========================================================= */

@media (max-width: 575px) {

    #menu.cat_product_area {
        padding-top: 40px !important;

        padding-bottom: 40px !important;
    }


    #menu .stitle {
        font-size: 24px !important;

        margin-bottom: 10px !important;
    }


    #menu .sline {
        width: 45px;

        height: 2px;
    }


    #menu .sline::after {
        height: 2px;
    }


    /* Category Grid */

    .product-category-tabs {
        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 12px;

        padding: 0 3px;
    }


    .product-category-btn {
        width: 100%;

        min-height: 145px;

        padding: 9px 7px 11px;

        border-radius: 11px;
    }


    .category-tab-image {
        width: 82px;
        height: 82px;

        margin-bottom: 8px;

        border-radius: 9px;
    }


    .category-tab-name {
        font-size: 11px;

        line-height: 1.3;
    }


    .product-category-btn:hover {
        transform: translateY(-3px);
    }


    .product-category-btn.active {
        transform: translateY(-3px);
    }


    /* Product Grid */

    #categoryProductArea {
        margin-left: -4px;

        margin-right: -4px;

        row-gap: 14px !important;
    }


    .mwrap {
        padding-left: 5px;
        padding-right: 5px;
    }


    /* Product Card */

    .mcard {
        border-radius: 11px !important;

        box-shadow:
            0 3px 12px rgba(0, 0, 0, 0.06);
    }


    .mcard:hover {
        transform: translateY(-4px);

        box-shadow:
            0 10px 22px rgba(0, 0, 0, 0.10);
    }


    /* Product Body */

    .mbody {
        padding: 11px 11px 12px;
    }


    .mcat {
        margin-bottom: 5px;

        font-size: 8px;

        letter-spacing: 0.5px;
    }


    .mtit {
        min-height: 37px;
    }


    .mtit a {
        font-size: 12px;

        line-height: 1.35;
    }


    .mbody .mt-2 {
        margin-top: 7px !important;

        padding-top: 7px;
    }


    .mbody small {
        font-size: 8px;
    }


    .product-best-seller {
        top: 8px;
        left: 8px;

        padding: 5px 7px;

        border-radius: 4px;

        font-size: 7px;

        letter-spacing: 0.3px;
    }

}


/* =========================================================
       VERY SMALL MOBILE
    ========================================================= */

@media (max-width: 380px) {

    .product-category-tabs {
        gap: 9px;
    }


    .product-category-btn {
        min-height: 135px;

        padding: 8px 6px 10px;
    }


    .category-tab-image {
        width: 74px;
        height: 74px;
    }


    .category-tab-name {
        font-size: 10px;
    }


    .mwrap {
        padding-left: 4px;
        padding-right: 4px;
    }


    .mcard {
        border-radius: 9px !important;
    }


    .mbody {
        padding: 9px 9px 10px;
    }


    .mtit a {
        font-size: 11px;
    }


    .mcat {
        font-size: 7px;
    }


    .mbody small {
        font-size: 7px;
    }


    .product-best-seller {
        top: 6px;
        left: 6px;

        padding: 4px 6px;

        font-size: 6px;
    }

}



.bg-success2{
    background-color: #1bbc9b;
}
