﻿@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

:root {
    --themeColor: #004179;
    --themeSubColor: #0683C1;
    --fontColor: #000;
    --fontMain: 'Microsoft JhengHei UI','Montserrat';
    --fontHeader: 'Microsoft JhengHei UI','Poppins';
    --fontMenu: 'Microsoft JhengHei UI','Poppins';
    --iconColor: #a0878b;
}

body {
    margin: 0;
    padding: 0;
    color: var(--fontColor);
    font-weight: 500;
    font-family: var(--fontMain);
}

xsmall {
    font-size: 0.6em;
}

.img-responsive-inline {
    display: inline;
    max-width: 100%;
    height: auto;
}

.body-content {
    padding: 0 30px;
}

@media (max-width: 767px) {
    .body-content {
        padding: 0;
    }
}

a {
    color: #333333;
}

    a:hover, a:focus {
        color: #555;
        text-decoration: none;
    }

h1.product-name {
    font-size: 24px;
    margin: 20px 0 10px;
}


/** Navigation
 **************************************************************** **/
#header {
    z-index: 996;
    position: relative;
    padding: 20px 75px 30px 75px;
    background: #fff;
    transition: transform 1s ease-in-out;
    border-bottom: solid 1px #000000;
}

    #header #logo {
        position: relative;
        top: 0;
        float: left;
    }

        #header #logo img {
            padding: 0;
            margin: 0;
            height: 60px;
        }

@media (max-width: 1499px) {
    #header {
        padding: 30px;
    }
}

@media (max-width: 1199px) {
    #header {
        padding: 30px 15px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    #header {
        padding: 15px;
    }

        #header #logo img {
            height: 50px;
            margin: 0 auto;
            display: block;
        }
}

@media (min-width: 768px) and (max-width: 991px) {
    #header {
        padding: 15px 0;
    }

        #header #logo {
            float: none;
        }
}

@media (max-width: 767px) {
    #header {
        padding: 10px 15px;
    }

        #header #logo {
            border-right: none;
            margin-right: 0;
            padding-right: 0;
            left: -10px;
        }

            #header #logo img {
                height: 50px;
            }
}

#header.header-fixed {
    transform: translateY(-100%);
    position: fixed;
    z-index: 10;
    right: 0;
    left: 0;
    top: 0;
}

    #header.header-fixed #logo {
    }

        #header.header-fixed #logo img {
        }


/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .nav-menu ul {
        position: absolute;
        display: none;
        top: 100%;
        right: 0;
        left: auto;
        z-index: 99;
    }

    .nav-menu li {
        position: relative;
        white-space: nowrap;
    }

    .nav-menu > li {
        float: left;
    }

    .nav-menu li:hover > ul,
    .nav-menu li.sfHover > ul {
        display: block;
    }

    .nav-menu ul ul {
        top: 0;
        left: auto;
        right: 100%;
    }

    .nav-menu ul li {
        min-width: 180px;
    }

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
    padding-right: 30px;
}

    .sf-arrows .sf-with-ul:after {
        content: "\f107";
        position: absolute;
        right: 15px;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
    }

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
    display: none;
}

.sf-arrows ul .sf-with-ul {
    padding-left: 30px;
}

    .sf-arrows ul .sf-with-ul:before {
        content: "\f104";
        position: absolute;
        left: 15px;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
    }

/* Nav Meu Container */
#header .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

#header #logo {
    float: none;
}

    #header #logo img {
        display: block;
    }

#nav-menu-container {
    float: right;
    margin: 0;
    top: 10px;
    position: relative;
}

@media (min-width: 992px) {
    #header #logo {
        margin-right: 30px;
    }

    #nav-menu-container {
        margin-left: auto;
        float: none;
    }

    .nav-menu {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 0;
        gap: 10px;
    }

        .nav-menu > li {
            float: none;
        }
}

@media (max-width: 991px) and (min-width: 768px) {
    #nav-menu-container {
        padding: 10px 0;
        left: 50%;
        float: none;
        top: 0 !important;
        display: inline-block;
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    #nav-menu-container {
        display: none;
    }
}

/* Nav Meu Styling */
.nav-menu a {
    position: relative;
    padding: 0 10px;
    text-decoration: none;
    display: inline-block;
    color: #000;
    font-weight: 500;
    font-size: 1.5rem;
    outline: none;
}

    .nav-menu a:hover {
        font-weight: 600;
    }

.nav-menu ul {
    margin: 40px 0 0 0;
    padding: 10px;
    box-shadow: 0px 1px 24px 0px rgba(0, 0, 0, 0.09);
    background: #fff;
}

    .nav-menu ul li {
        transition: 0.3s;
    }

        .nav-menu ul li a {
            padding: 10px;
            color: #333;
            transition: 0.3s;
            display: block;
            font-size: 14px;
            white-space: normal;
            text-transform: none;
        }

        .nav-menu ul li:hover > a {
            color: #333;
            font-weight: 500;
            border-bottom: none;
            background: #e8d1b7;
        }

.nav-menu > li > a {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

/* Half-circle “smile” */
.nav-menu > li.active > a::after {
    /* tweak these */
    --diameter: 16px; /* overall size */
    --stroke: 2px; /* ← thicker line (try 2–3px) */
    --offset: -8px; /* distance below text */

    content: "";
    position: absolute;
    left: 50%;
    bottom: var(--offset);
    width: var(--diameter);
    height: var(--diameter); /* draw a full circle */
    transform: translateX(-50%);
    border: var(--stroke) solid currentColor;
    border-radius: 50%;
    clip-path: inset(50% 0 0 0); /* show bottom half only */
    pointer-events: none;
}


.nav-menu ul ul {
    margin: 0 10px 0 0;
}

@media (max-width: 991px) and (min-width: 768px) {
    .nav-menu ul {
        left: 0;
        right: auto;
        margin: 30px 0 0;
    }
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
    position: absolute;
    right: 17px;
    top: 17px;
    z-index: 999;
    margin: 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

    #mobile-nav-toggle i {
        color: #000;
    }

@media (max-width: 767px) {
    #mobile-nav-toggle {
        display: inline;
    }
}

/* Mobile Nav Styling */
#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(19, 19, 19, 0.9);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
}

    #mobile-nav ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        #mobile-nav ul li {
            position: relative;
        }

            #mobile-nav ul li a {
                color: #fff;
                font-size: 15px;
                font-weight: 500;
                overflow: hidden;
                padding: 10px 22px 10px 15px;
                position: relative;
                text-decoration: none;
                width: 100%;
                display: block;
                outline: none;
            }

                #mobile-nav ul li a:hover {
                    color: #fff;
                }

            #mobile-nav ul li.active a {
                color: #000;
            }

            #mobile-nav ul li.menu-has-children li a {
                padding-left: 25px;
            }

            #mobile-nav ul li.menu-has-children li.menu-sub-children {
                padding-left: 10px;
            }

        #mobile-nav ul .menu-has-children i {
            position: absolute;
            right: 0;
            z-index: 99;
            padding: 12px 15px;
            cursor: pointer;
            color: #fff;
        }

            #mobile-nav ul .menu-has-children i.fa-chevron-up {
                color: #333;
            }

        #mobile-nav ul .menu-item-active {
            color: #333;
            font-weight: 600;
            background: #e8d1b7;
        }

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(216, 207, 196, 0.9);
    display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
    overflow: hidden;
}

    body.mobile-nav-active #mobile-nav {
        left: 0;
    }

    body.mobile-nav-active #mobile-nav-toggle {
        color: #fff;
    }


/** Page
 **************************************************************** **/
.page {
    min-height: 50vh;
    background: #fff;
    padding: 30px 0 50px;
}

@media (max-width: 767px) {
    .page {
        padding: 30px 0;
    }
}


/** Page Header
 **************************************************************** **/
.page-header {
    position: relative;
    padding: 0;
    margin: 0;
    border-bottom: none;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}

.subpage-banner {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


.page-title {
    position: absolute;
    width: 100%;
}

    .page-title p {
        font-size: 50px;
        margin: 20px 0 10px;
        color: #000;
        line-height: 1.1;
        position: relative;
        font-weight: 500;
        letter-spacing: 5px;
        text-transform: uppercase;
        text-align: center;
    }



/** Carousel
 **************************************************************** **/
.carousel .carousel-inner .item {
    opacity: 0;
    -webkit-animation: zoomin 10s ease-in infinite;
    animation: zoomin 10s ease-in infinite;
    transition: all .5s ease-in-out;
    overflow: hidden;
}

    .carousel .carousel-inner .item.active {
        opacity: 1;
    }

@-webkit-keyframes zoomin {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

@keyframes zoomin {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

.carousel-inner img {
    display: block;
    margin: auto;
    width: 100%;
}

@media (max-width: 1026px) and (min-width: 768px) {
    #myCarousel {
        margin-top: 60px;
    }
}

@media screen and (max-width: 767px) {
    .carousel-caption {
        display: none;
    }

    #myCarousel {
    }
}


/** Title
 **************************************************************** **/
p.title {
    font-size: 36px;
    margin-top: 20px;
    margin-bottom: 0;
    color: #181818;
    font-weight: 400;
    line-height: 45px;
    text-align: left;
}

.separator {
    border-color: #333333;
    border-width: 3px 0 0;
    border-style: solid;
    width: 40px;
    margin: 25px auto;
}

#view-more {
    margin-top: 20px;
    text-align: center;
}

    #view-more a {
        color: #333;
        background: #fff;
        font-weight: 500;
        padding: 15px 30px;
        border-radius: 30px;
        border: 1px solid rgba(35, 36, 36, 0.2);
        transition: .15s ease-in-out;
    }

        #view-more a:hover {
            border-color: #e8d1b7;
            background: #e8d1b7;
        }


/** About Us
 **************************************************************** **/
#about {
    padding: 50px 50px 0px;
}

#about-item {
    padding: 0 50px;
}

    #about-item #about-photo {
        height: 400px;
    }

        #about-item #about-photo:before {
            position: absolute;
            left: -30px;
            top: -30px;
            height: 100%;
            width: 100%;
            border: 1px solid #e8d1b7;
            content: "";
        }

        #about-item #about-photo:after {
            position: absolute;
            right: -30px;
            top: 30px;
            height: 100%;
            width: 100%;
            border: 1px solid #eee;
            content: "";
            z-index: 1;
        }

        #about-item #about-photo #about-bg {
            height: 100%;
            z-index: 9;
            position: relative;
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
        }

    #about-item #about-content {
        height: 400px;
        display: table;
    }

        #about-item #about-content #content {
            display: table-cell;
            vertical-align: middle;
            padding: 0 50px;
        }

            #about-item #about-content #content h3.title {
                padding-bottom: 0;
            }

            #about-item #about-content #content #details {
                margin: 0 auto 20px;
                letter-spacing: 0.5px;
                display: block;
                display: -webkit-box;
                max-width: 600px;
                height: calc(14px*1.3*14);
                font-size: 14px;
                line-height: 1.3;
                -webkit-line-clamp: 14;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
                text-align: justify;
            }

@media (max-width: 1199px) and (min-width: 768px) {
    #about-item #about-content #content {
        padding: 30px 50px 0;
    }
}

@media (max-width: 767px) {
    #about {
        padding: 40px 0;
    }

    #about-item #about-content #more-btn {
        margin-bottom: 30px;
    }

    #about-item #about-content #content #details {
        padding: 0;
        height: calc(14px*1.3*13);
        font-size: 14px;
        line-height: 1.3;
        -webkit-line-clamp: 13;
    }

    #about-item #about-photo:before {
        left: -5px;
        top: -10px;
        height: 100%;
        width: 90%;
    }

    #about-item #about-photo:after {
        right: -5px;
        top: 10px;
        height: 100%;
        width: 90%;
    }
}

@media (max-width: 480px) {
    #about-item {
        padding: 0 20px;
    }

        #about-item #about-photo {
            height: 250px;
        }

        #about-item #about-content #content {
            padding: 0;
        }

        #about-item #about-photo:before {
            left: 0;
        }

        #about-item #about-photo:after {
            right: 0;
        }
}


/** Products
 **************************************************************** **/

#products {
    padding: 50px 50px 0px;
}


#product-page {
    padding: 0 75px;
}

    #product-page #title {
        margin-bottom: 50px;
    }

    #product-page #product {
        background: #fff;
        height: 400px;
        padding: 5px;
        overflow: hidden;
        margin-bottom: 20px;
        border: 1px solid #e7e7e7;
        box-shadow: 1px 1px 0 0 #ffffff inset, 1px 1px 0 0 #ffffff;
        transition: all 0.3s ease-in-out 0s;
    }

        #product-page #product:hover {
            box-shadow: 4px 8px 14px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px #ffffff inset;
        }

        #product-page #product #product-name {
            height: 100px;
            padding: 10px;
            text-align: center;
        }

            #product-page #product #product-name h4 {
                font-size: 14px;
                height: 30px;
                white-space: normal;
            }

        #product-page #product #product-item {
            height: 290px;
            width: 100%;
            overflow: hidden;
            position: relative;
        }

            #product-page #product #product-item img {
                opacity: 1;
                max-height: 100%;
                max-width: 100%;
                width: auto;
                height: auto;
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                margin: auto;
                padding: 10px;
                transition: all 0.3s ease 0s;
            }

        #product-page #product:hover #product-item img {
            opacity: .4;
        }

        #product-page #product #product-item #more-btn {
            left: 50%;
            bottom: 30%;
            padding: 5px;
            position: absolute;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

            #product-page #product #product-item #more-btn a {
                padding: 15px 30px;
                background-color: #e8d1b7;
                color: #333;
                position: relative;
                z-index: 1;
                transform: translate(35px, 0);
                opacity: 0;
                transition-delay: 50ms;
                margin: 5px;
                transition: all 250ms ease-out;
                white-space: nowrap;
                font-weight: 500;
            }

        #product-page #product:hover #product-item #more-btn a {
            transform: translate(0, 0);
            opacity: 1;
        }

@media (max-width: 1499px) {
    #product-page {
        padding: 0 30px;
    }
}

@media (max-width: 1199px) {
    #product-page {
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    #product-page #product {
        margin: 10px;
    }

        #product-page #product #product-item #more-btn a {
            opacity: 1;
        }
}


/** Brands
 **************************************************************** **/
#brands {
    padding: 50px 50px 0px;
}

#brand {
    width: 100%;
    height: 290px;
    display: block;
    overflow: hidden;
    max-width: 100%;
    margin: 10px auto;
    border: 1px solid #e7e7e7;
}

    #brand #brand-photo {
        width: auto;
        height: calc(100% - 60px);
        background: #fff;
        overflow: hidden;
        position: relative;
        
    }

        #brand #brand-photo img {
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            padding: 5px;
            -webkit-transition: .3s ease-in-out;
            transition: .3s ease-in-out;
        }

        #brand #brand-photo:before {
            position: absolute;
            top: 50%;
            left: 50%;
            z-index: 2;
            display: block;
            content: '';
            width: 0;
            height: 0;
            background: rgba(0,0,0,.2);
            border-radius: 100%;
            transform: translate(-50%, -50%);
            opacity: 0;
        }

        #brand #brand-photo:hover {
            animation: bloom ease-in-out .75s forwards;
        }

            #brand #brand-photo:hover:before {
                animation: circle .75s;
            }

@keyframes bloom {
    0% {
        filter: grayscale(.8);
    }

    40% {
        filter: grayscale(.5);
    }

    100% {
        filter: grayscale(0);
    }
}

@keyframes circle {
    0% {
        opacity: .5;
        background: rgba(255, 255, 255, .5);
    }

    40% {
        opacity: 1;
        background: rgba(255, 255, 255, .5);
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

#brand #brand-name {
    height: 50px;
    text-align: center;
    padding: 5px;
    white-space: normal;
}

#brands a {
    text-decoration: none;
}

    #brand #brand-name h5 {
        color: #000;
    }


/** Awards
 **************************************************************** **/
#awards {
    padding: 50px 50px 0px;
}

#award {
    background: #fff;
    height: 280px;
    padding: 5px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e7e7e7;
    box-shadow: 1px 1px 0 0 #ffffff inset, 1px 1px 0 0 #ffffff;
    transition: all 0.3s ease-in-out 0s;
}

    #award:hover {
        box-shadow: 4px 8px 14px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px #ffffff inset;
    }

    #award #award-name {
        height: 100px;
        padding: 10px;
        text-align: center;
    }

        #award #award-name h4 {
            font-size: 14px;
            white-space: normal;
        }

        #award #award-name h6 {
            color: #777;
        }

    #award #award-item {
        height: 100%;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

        #award #award-item img {
            opacity: 1;
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            padding: 5px;
            transition: all 0.3s ease 0s;
        }

    #award:hover #award-item img {
        opacity: .4;
    }

    #award #award-item #more-btn {
        left: 50%;
        bottom: 30%;
        padding: 5px;
        position: absolute;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

        #award #award-item #more-btn a {
            border-radius: 30px;
            padding: 15px 30px;
            background-color: #e8d1b7;
            color: #333;
            position: relative;
            z-index: 1;
            transform: translate(35px, 0);
            opacity: 0;
            transition-delay: 50ms;
            margin: 5px;
            transition: all 250ms ease-out;
            white-space: nowrap;
            font-weight: 500;
        }

    #award:hover #award-item #more-btn a {
        transform: translate(0, 0);
        opacity: 1;
    }

@media (max-width: 767px) {
    #award {
        margin: 10px;
    }

        #award #award-item #more-btn a {
            opacity: 1;
        }
}


/** #Contact Us
 **************************************************************** **/
#contacts {
    position: relative;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(img/map.png);
}

    #contacts #contacts-overlay {
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fbfbfb;
        opacity: .93;
        z-index: 1;
    }

    #contacts:after {
        position: absolute;
        content: '';
        left: 30px;
        right: 30px;
        top: 30px;
        bottom: 30px;
        z-index: 2;
        transform: scale(1, 1);
        transition: all 0.2s linear;
        box-shadow: 0 0 0 1px #e6e6e6;
    }

    #contacts #contacts-box {
        z-index: 5;
        padding: 80px 50px;
        position: relative;
    }

#contact-details {
}

    #contact-details #contact-details-box {
        border-style: solid;
        border-width: 0 0 1px 0;
        border-color: rgba(152, 152, 152, 0.2);
        padding: 0 0 0 50px;
        position: relative;
        margin-top: 50px;
    }

        #contact-details #contact-details-box i {
            top: 0;
            left: 0;
            width: 30px;
            font-size: 35px;
            text-align: center;
            position: absolute;
            color: var(--iconColor);
        }

        #contact-details #contact-details-box p.title {
            color: var(--iconColor);
            font-size: 15px;
            font-weight: 700;
        }

        #contact-details #contact-details-box p.details {
            color: #666;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 15px;
        }

        #contact-details #contact-details-box a {
            color: #444;
            font-weight: 600;
        }

@media screen and (max-width: 767px) {
    #contacts {
        margin-top: 30px;
    }

        #contacts:after {
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

    #contact-details {
        margin-bottom: 50px;
    }

    #contacts #contacts-box {
        padding: 50px;
    }

    #contact-details #contact-details-box {
        margin-top: 30px;
    }
}

@media screen and (max-width: 480px) {
    #contacts #contacts-box {
        padding: 30px 15px;
    }
}

/** Footer
 **************************************************************** **/
.footer {
    background: #fff;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    padding: 40px 0;
    text-align: center;
}

    .footer a {
        color: #999999;
        display: inline-block;
        transition: all 250ms ease-out;
    }

        .footer a:hover {
            color: #555;
        }

    .footer h1 {
        margin: 0;
        color: #444;
        font-size: 12px;
        font-weight: 600;
        display: inline-block;
    }


/** Products Page
 **************************************************************** **/
.product {
    background: #fff;
    height: 280px;
    width: 100%;
    padding: 5px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e7e7e7;
    box-shadow: 1px 1px 0 0 #ffffff inset, 1px 1px 0 0 #ffffff;
    transition: all 0.3s ease-in-out 0s;
}

    .product:hover {
        box-shadow: 4px 8px 14px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px #ffffff inset;
    }

    .product .product-name {
        height: 100px;
        padding: 10px;
        text-align: center;
    }

        .product .product-name h4 {
            font-size: 14px;
            height: 30px;
            white-space: normal;
        }

        .product .product-name .divider {
            display: block;
            left: 50%;
            transform: translate(-50%);
            position: relative;
            width: 20px;
            border-bottom: 3px solid #000;
            margin-bottom: 10px;
        }

        .product .product-name a {
            font-size: 13px;
            color: #000;
            text-decoration: underline;
        }

            .product .product-name a:hover {
                text-decoration: none;
            }

    .product .product-item {
        height: 200px;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

        .product .product-item img {
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            padding: 10px;
        }

        .product .product-item .product-photo {
            opacity: 1;
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            padding: 10px;
            transition: all 0.3s ease 0s;
        }

    .product:hover .product-item .product-photo {
        opacity: .4;
    }

    .product .product-item .more-btn {
        left: 50%;
        bottom: 30%;
        padding: 5px;
        position: absolute;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

        .product .product-item .more-btn a {
            border-radius: 30px;
            padding: 15px 30px;
            background-color: #e8d1b7;
            color: #444;
            position: relative;
            z-index: 1;
            transform: translate(35px, 0);
            opacity: 0;
            transition-delay: 50ms;
            margin: 5px;
            transition: all 250ms ease-out;
            white-space: nowrap;
            font-weight: 500;
        }

    .product:hover .product-item .more-btn a {
        transform: translate(0, 0);
        opacity: 1;
    }

@media screen and (max-width: 767px) {
    .product .product-item .more-btn a {
        opacity: 1;
    }
}



/** Product Details
 **************************************************************** **/
.product-detail-photo {
    margin-bottom: 50px;
}

.product-detail-buttons {
    margin-top: 20px;
    text-align: center;
}

.product-detail-content {
    display: flex;
}

.product-detail-item {
    width: 20%;
    padding: 0;
}

.product-detail-small {
    max-width: 100%;
    max-height: 100%;
    margin: 2px;
    display: block;
}

    .product-detail-small .product-image-small {
        position: relative;
        height: 60px;
        border: 1px solid #ddd;
        overflow: hidden;
    }

        .product-detail-small .product-image-small img {
            padding: 5px;
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            margin: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
        }

.product-detail {
    border: 1px solid #ddd;
    overflow: hidden;
    height: 280px;
}

    .product-detail img {
        padding: 5px;
        max-width: 100%;
        max-height: 100%;
        display: block;
        width: auto;
        height: auto;
        margin: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

.product-detail-image {
    white-space: nowrap;
    height: 100%;
    position: relative;
}

    .product-detail-image:after {
        content: '';
        display: inline-block;
        height: 100%;
        width: 0;
        vertical-align: middle;
    }


/******************************* Product Details ******************************* **/
.product-item table {
    margin: 20px 0;
}

    .product-item table td {
        vertical-align: top;
    }


/******************************* Product Details Carousel ******************************* **/
.owl-carousel .owl-item .items {
    height: 374px;
    transform: scale(.6);
    transition: all .5s;
}

    .owl-carousel .owl-item .items img {
        opacity: .3;
        padding: 5px;
        max-height: 100%;
        max-width: 100%;
        width: auto;
        height: auto;
        margin: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

.owl-carousel .owl-item.center .items {
    transform: scale(1);
    margin: 10px;
    box-shadow: 0 1px 2px 0 rgba(32,48,60,.14), 0 3px 3px 0 rgba(32,48,60,.06);
}

    .owl-carousel .owl-item.center .items img {
        opacity: 1;
    }

.owl-theme .owl-nav [class*='owl-'] {
    background: transparent;
    color: #333333;
    font-size: 25px;
    transition: all .5s;
}

.owl-theme .owl-nav .owl-next:hover, .owl-theme .owl-nav .owl-prev:hover {
    background: #333333;
    color: #fff;
}


/******************************* Collapse Panel ******************************* **/
.fancy-collapse-panel .panel {
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: .3s ease-in-out;
}

    .fancy-collapse-panel .panel .collapse.in {
        height: 100% !important;
    }

.fancy-collapse-panel .panel-default > .panel-heading {
    padding: 0;
}

.fancy-collapse-panel .panel-heading a {
    padding: 30px 15px 30px 40px;
    display: inline-block;
    width: 100%;
    background-color: #e8d1b7;
    position: relative;
    text-decoration: none;
}

    .fancy-collapse-panel .panel-heading a.collapsed {
        background: #eee;
        color: #333;
    }

    .fancy-collapse-panel .panel-heading a:after {
        content: "\f107";
        font-family: "FontAwesome";
        position: absolute;
        left: 20px;
        font-size: 20px;
        font-weight: 400;
        top: 50%;
        line-height: 1;
        margin-top: -10px;
    }

    .fancy-collapse-panel .panel-heading a.collapsed:after {
        content: "\f105";
    }

.fancy-collapse-panel .panel-default .panel-body {
    position: relative;
    padding: 20px 30px 30px;
    border-top: none !important;
}

    .fancy-collapse-panel .panel-default .panel-body .detail {
        display: flex;
    }

    .fancy-collapse-panel .panel-default .panel-body .buttons {
        margin-top: 10px;
    }

@media screen and (max-width: 767px) {
    .fancy-collapse-panel .panel-default .panel-body {
        padding: 0 15px 20px;
    }

        .fancy-collapse-panel .panel-default .panel-body .btn {
            font-size: 12px;
        }
}


/** Brands
 **************************************************************** **/
.brand {
    background: #fff;
    height: 230px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #e7e7e7;
}

    .brand:before {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 2;
        display: block;
        content: '';
        width: 0;
        height: 0;
        background: rgba(0,0,0,.2);
        border-radius: 100%;
        transform: translate(-50%, -50%);
        opacity: 0;
    }

    .brand:hover {
        animation: bloom ease-in-out .75s forwards;
    }

        .brand:hover:before {
            animation: circle .75s;
        }

    .brand .circle {
        margin: 0 auto;
        display: block;
        height: 165px;
        width: 100%;
        overflow: hidden;
    }

    .brand .brand-photo {
        height: 165px;
        width: 100%;
        position: relative;
        overflow: hidden;
    }

        .brand .brand-photo img {
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            padding: 5px;
        }

@keyframes bloom {
    0% {
        filter: grayscale(.8);
    }

    40% {
        filter: grayscale(.5);
    }

    100% {
        filter: grayscale(0);
    }
}

@keyframes circle {
    0% {
        opacity: .5;
        background: rgba(255, 255, 255, .5);
    }

    40% {
        opacity: 1;
        background: rgba(255, 255, 255, .5);
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

.brand .brand-name {
    height: 50px;
    text-align: center;
    padding: 5px;
    white-space: normal;
}

    .brand .brand-name h5 {
        color: #000;
    }


/** Awards
 **************************************************************** **/
.award {
    background: #fff;
    height: 300px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #e7e7e7;
}

    .award:before {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 2;
        display: block;
        content: '';
        width: 0;
        height: 0;
        background: rgba(0,0,0,.2);
        border-radius: 100%;
        transform: translate(-50%, -50%);
        opacity: 0;
    }

    .award:hover {
        animation: bloom ease-in-out .75s forwards;
    }

        .award:hover:before {
            animation: circle .75s;
        }

@keyframes bloom {
    0% {
        filter: grayscale(.8);
    }

    40% {
        filter: grayscale(.5);
    }

    100% {
        filter: grayscale(0);
    }
}

@keyframes circle {
    0% {
        opacity: .5;
        background: rgba(255, 255, 255, .5);
    }

    40% {
        opacity: 1;
        background: rgba(255, 255, 255, .5);
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

.award .award-item {
    height: 215px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

    .award .award-item img {
        max-height: 100%;
        max-width: 100%;
        width: auto;
        height: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        padding: 5px 10px;
    }

.award .award-name {
    height: 80px;
    text-align: center;
    padding: 5px;
    white-space: normal;
}

    .award .award-name h5 {
        color: #000;
    }

    .award .award-name h6 {
        color: #666;
    }


/******************************* Award Details ******************************* **/
.award-main {
    text-align: center;
    margin-bottom: 50px;
}

    .award-main h3 {
    }

    .award-main h4 {
    }

.award-details {
}

    .award-details h1 {
        text-align: center;
    }

    .award-details .award-intro {
    }


/** News & Events
 **************************************************************** **/
.news {
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 0 35px 5px rgba(156,156,156,.1);
}

    .news .news-header {
        text-align: center;
        height: 38px;
    }

        .news .news-header h1 {
            font-size: 1.3rem;
            margin: 0;
            font-weight: 700;
        }

    .news .news-thumbnail {
        width: 100%;
        height: 350px;
        margin-bottom: 10px;
        overflow: hidden;
        position: relative;
    }

        .news .news-thumbnail img {
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            padding: 5px;
        }

    .news .news-details {
        padding: 10px 20px;
    }

        .news .news-details p {
            margin-bottom: 10px;
        }

        .news .news-details .view-more {
            text-align: right;
        }

            .news .news-details .view-more a {
                color: #73addd;
                font-size: 13px;
                font-weight: 600;
                text-transform: uppercase;
            }

@media screen and (max-width: 767px) {
    .news .news-thumbnail {
        height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .news .news-thumbnail {
        height: 200px;
    }

    .news .news-details {
        padding: 20px;
    }
}


/** News & Events Details
 **************************************************************** **/
.newsdetails {
    padding: 30px;
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0 0 35px 5px rgba(156,156,156,.1);
}

    .newsdetails .newsdetails-title {
        text-align: center;
        padding: 20px 40px;
    }

        .newsdetails .newsdetails-title h2 {
            margin: 0;
            font-weight: 600;
        }

    .newsdetails .newsdetails-photo {
        width: 100%;
        height: 400px;
        margin-bottom: 20px;
        overflow: hidden;
    }

        .newsdetails .newsdetails-photo img {
            width: auto;
            height: 100%;
            margin: 0 auto;
            display: block;
        }

    .newsdetails .newsdetails-item {
        padding: 0 40px;
    }

.sideNewsPanel {
    padding-bottom: 5px;
}

.sideNews {
}

    .sideNews h2 {
        padding-bottom: 5px;
        border-bottom: 1px dotted #999;
    }

.small-news {
    display: flex;
    width: 100%;
    min-height: 85px;
    margin-bottom: 5px;
    justify-content: space-between;
    padding-bottom: 5px !important;
    border-bottom: 1px dotted #999;
}

    .small-news a {
        width: 70%;
        display: flex;
        color: #73addd;
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 5px;
        align-items: center;
    }

    .small-news.no-photo a {
        width: 100%;
    }

    .small-news .small-news-photo {
        width: 30%;
        height: 80px;
        margin-left: 5px;
        position: relative;
        border: solid 1px #ddd;
    }

        .small-news .small-news-photo img {
            max-height: 100%;
            max-width: 100%;
            width: auto !important;
            height: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            padding: 5px;
        }

.no-photo {
    display: block;
}

.small-news .small-news-details {
}

    .small-news .small-news-details p {
        font-size: 12px;
        font-weight: 500;
        overflow: hidden;
        text-align: left;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
    }

@media screen and (max-width: 767px) {
    .newsdetails .newsdetails-photo {
        height: 100%;
    }

        .newsdetails .newsdetails-photo img {
            width: 100%;
            height: auto;
        }
}

@media screen and (max-width: 480px) {
    .newsdetails .newsdetails-item {
        padding: 20px;
    }

    .newsdetails .newsdetails-title {
        padding: 20px;
    }
}


/** Contact Us
 **************************************************************** **/
.contact-details {
    margin-bottom: 50px;
    padding: 0 150px;
}

    .contact-details .contact-item {
        margin-bottom: 50px;
    }

        .contact-details .contact-item p.contact-title {
            text-transform: uppercase;
            font-weight: 700;
            margin-top: 20px;
            margin-bottom: 20px;
            font-size: 28px;
        }

        .contact-details .contact-item p.sub-title {
            font-size: 14px;
            font-weight: 500;
            text-transform: none;
        }

        .contact-details .contact-item p {
            font-size: 14px;
        }

        .contact-details .contact-item h1 {
            margin: 0 0 5px;
            font-size: 14px;
            font-weight: 600;
        }

        .contact-details .contact-item .map-btn {
            display: none;
            background: #e8d1b7;
            border: 2px solid #e8d1b7;
            padding: 5px 15px;
            font-size: 13px;
            margin-bottom: 10px;
            margin-right: 5px;
            border-radius: 30px;
        }

            .contact-details .contact-item .map-btn:hover {
                background: #fff;
            }

            .contact-details .contact-item .map-btn a {
                color: #333;
                font-weight: 600;
            }

            .contact-details .contact-item .map-btn:hover a {
                color: #333333;
            }

@media (max-width: 767px) {
    .contact-details {
        padding: 0;
    }

        .contact-details .contact-item .map-btn {
            display: inline-block;
        }
}


/** Google Map Button
 **************************************************************** **/
.google_d {
    color: #444;
    background: #fff;
    font-weight: 500;
    padding: 15px 30px;
    border-radius: 30px;
    display: inline-block;
    border: 1px solid rgba(35, 36, 36, 0.2);
    transition: .15s ease-in-out;
}

    .google_d:hover {
        background: #e8d1b7;
        border-color: #e8d1b7;
    }

    .google_d a {
        color: #444;
    }


/** Scroll Down
 **************************************************************** **/
.arrow-wrap {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 65%;
    right: 0;
    height: 40px;
    width: 40px;
    display: block;
    transform: translate(-50%);
}

.fa-chevron-circle-down {
    color: #fff;
    position: absolute;
    bottom: 0;
    animation: jump 1.5s infinite;
}

@keyframes jump {
    0% {
        bottom: 0
    }

    50% {
        bottom: 10px
    }

    100% {
        bottom: 0
    }
}

@media (max-width: 767px) {
    .arrow-wrap {
        display: none;
    }
}


/** Revolution Slider
 **************************************************************** **/
.fullwidthbanner-container {
    padding: 0 0 !important;
}

.tp-rightarrow.default {
    cursor: pointer !important;
    background: rgba(0, 0, 0, .5) !important;
    width: 40px !important;
    height: 40px !important;
    position: absolute !important;
    display: block !important;
    z-index: 1000 !important;
    margin-right: 75px;
}

    .tp-rightarrow.default:before {
        content: '\f105';
        font-size: 25px;
        color: #fff;
        display: block;
        line-height: 40px;
        text-align: center;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
    }

.tp-leftarrow.default {
    cursor: pointer !important;
    background: rgba(0, 0, 0, .5) !important;
    width: 40px !important;
    height: 40px !important;
    position: absolute !important;
    display: block !important;
    z-index: 1000 !important;
    margin-left: 75px;
}

    .tp-leftarrow.default:before {
        content: '\f104';
        font-size: 25px;
        color: #fff;
        display: block;
        line-height: 40px;
        text-align: center;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
    }

    .tp-rightarrow.default:hover, .tp-leftarrow.default:hover {
        background: #000;
        transition: ease-in-out .5s;
    }

@media screen and (max-width: 1499px) {


    .tp-rightarrow.default {
        margin-right: 30px;
    }

    .tp-leftarrow.default {
        margin-left: 30px;
    }
}

@media screen and (max-width: 1199px) {

    .tp-rightarrow.default {
        margin-right: 15px;
    }

    .tp-leftarrow.default {
        margin-left: 15px;
    }
}

@media screen and (max-width: 767px) {


    .tp-rightarrow.default {
        margin-right: 0;
    }

    .tp-leftarrow.default {
        margin-left: 0;
    }
}


/** Brand Details
 **************************************************************** **/
.other-products {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed #eee;
}

    .other-products p {
        color: #000;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
    }

.brand-details-left {
    height: 400px;
}

    .brand-details-left img {
        max-height: 300px;
        height: auto;
        width: auto;
        display: block;
        margin: 20px auto;
        border: 1px solid #e7e7e7;
    }

    .brand-details-left h3 {
        text-align: center;
    }

.brand-details-right {
    padding: 30px;
    min-height: 400px;
}


/** Dealer Page
 **************************************************************** **/
.dealer-box {
    min-height: 820px;
    margin: 10px;
    background: #fff;
    border-radius: 30px;
    border: 1px solid #e7e7e7;
}

    .dealer-box .box-content {
        padding: 20px;
    }

        .dealer-box .box-content h1 {
            font-size: 25px;
            height: 80px;
            margin: 10px 0 30px;
        }

        .dealer-box .box-content span {
            margin-left: 10px;
        }

        .dealer-box .box-content p {
            color: #666;
        }

            .dealer-box .box-content p.dealer-box-title {
                color: #000;
                font-size: 18px;
                margin: 10px 0;
            }

        .dealer-box .box-content a {
            color: #666;
        }

            .dealer-box .box-content a:hover {
                color: #000;
            }

        .dealer-box .box-content i {
            width: 15px;
            margin-right: 5px;
        }

        .dealer-box .box-content .dealer-photo {
            overflow: hidden;
            padding: 10px;
            margin-bottom: 20px;
        }

        .dealer-box .box-content .top {
            height: 170px;
            margin-bottom: 20px;
        }

        .dealer-box .box-content .middle-details {
            height: 150px;
            margin-bottom: 20px;
            padding-bottom: 20px;
        }

        .dealer-box .box-content .middle span {
            margin-left: 10px;
        }

        .dealer-box .box-content .bottom {
            text-align: center;
        }

            .dealer-box .box-content .bottom a {
                color: #fff;
            }

            .dealer-box .box-content .bottom.google_d {
                border: none;
                background: none;
            }

@media screen and (max-width: 767px) {
    .dealer-box {
        min-height: unset;
    }

        .dealer-box .box-content .bottom.google_d {
            display: none;
        }
}

@media screen and (max-width: 480px) {
    .dealer-box .box-content h2 {
        font-size: 22px;
    }
}


/** Photo Gallery
 **************************************************************** **/
.album {
    height: 350px;
    overflow: hidden;
    padding: 10px;
    margin: 0 0 20px;
    text-align: center;
    display: block;
    background: #fff;
    border: 1px solid #e7e7e7;
}

    .album .album-cover {
        height: 250px;
        overflow: hidden;
        position: relative;
        margin: 0 auto 10px;
    }

        .album .album-cover img {
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            padding: 10px;
        }

    .album .album-name {
        height: 70px;
    }

        .album .album-name h4 {
            color: #000;
        }

        .album .album-name h6 {
            color: #777;
        }

.album-details-title {
    margin: 10px 0 30px;
}

    .album-details-title a {
        font-size: 14px;
        padding: 10px;
        transition: 0.3s;
        display: inline-block;
        border: 1px solid rgba(25, 25, 25, 0.2);
    }

.album-details-item {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 20px;
    border: 1px solid #eee
}

    .album-details-item .album-details-photo-item {
        width: auto;
        height: 100%;
        position: relative;
    }

        .album-details-item .album-details-photo-item img {
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            padding: 10px;
        }

    .album-details-item .album-details-video-item {
        height: 300px;
        padding: 10px;
        display: table;
    }

        .album-details-item .album-details-video-item .video-item {
            display: table-cell;
            vertical-align: middle;
        }

            .album-details-item .album-details-video-item .video-item .video-thumbnail {
                overflow: hidden;
                position: relative;
            }

                .album-details-item .album-details-video-item .video-item .video-thumbnail:after {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    -webkit-transform: translate(-50%, -50%);
                    content: "\f144";
                    font-family: FontAwesome;
                    font-size: 70px;
                    color: #fff;
                    opacity: 0.8;
                    text-shadow: 0px 0px 30px rgb(0 0 0 / 50%);
                }

            .album-details-item .album-details-video-item .video-item .video-name {
                overflow: hidden;
            }

                .album-details-item .album-details-video-item .video-item .video-name h4 {
                    font-size: 14px;
                    text-align: center;
                }


/** Video Gallery
 **************************************************************** **/
.video {
    height: 340px;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #e7e7e7;
}

    .video .video-thumbnail {
        width: 100%;
        height: 250px;
        overflow: hidden;
        position: relative;
    }

        .video .video-thumbnail img {
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            padding: 5px;
        }

        .video .video-thumbnail a:after {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            content: "\f144";
            font-family: FontAwesome;
            font-size: 70px;
            color: #fff;
            opacity: 0.8;
            text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
        }

    .video .video-name {
        width: 100%;
        height: 60px;
        padding: 5px;
        display: table;
        overflow: hidden;
    }

        .video .video-name h4 {
            font-size: 14px;
            text-align: center;
            display: table-cell;
            vertical-align: middle;
        }

@media screen and (max-width: 480px) {
    .video {
        height: 290px;
    }

        .video .video-thumbnail {
            height: 200px;
        }
}


/** Extension
 **************************************************************** **/
.extension {
    background: #fff;
    height: 330px;
    padding: 5px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #e7e7e7;
    transition: all 500ms ease;
}

    .extension .extension-photo {
        height: 240px;
        width: 240px;
        padding: 10px;
        margin: 0 auto;
        overflow: hidden;
        position: relative;
    }

        .extension .extension-photo img {
            max-height: 100%;
            max-width: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            transition: all 500ms ease;
        }

        .extension .extension-photo:hover img {
            opacity: 0.5;
        }

    .extension .extension-name {
        height: 80px;
        padding: 5px;
    }

        .extension .extension-name h5 {
            font-size: 15px;
            font-weight: 600;
            text-align: center;
        }

        .extension .extension-name h6 {
            color: #777;
            font-size: 13px;
            text-align: center;
            font-style: italic;
            margin: 0 auto;
            display: -webkit-box;
            max-width: 500px;
            height: calc(14px*1.1*2);
            line-height: 1.2;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media screen and (max-width: 767px) {
    .extension {
        height: 100%;
    }

        .extension .extension-name {
            height: 100%;
        }
}


/** Extention Details
 **************************************************************** **/
.extension-details-left {
    padding: 10px;
}

    .extension-details-left img {
        max-height: 400px;
        height: auto;
        width: auto;
        display: block;
        margin: 0 auto;
    }

    .extension-details-left .extension-details-name {
        padding: 10px;
    }

        .extension-details-left .extension-details-name h3 {
            margin: 10px 0;
            font-size: 20px;
            text-align: center;
        }

        .extension-details-left .extension-details-name h5 {
            color: #555;
            font-style: italic;
            text-align: center;
        }

        .extension-details-left .extension-details-name h4 {
            width: 100%;
            padding: 5px;
            font-size: 15px;
            line-height: 1.3;
            text-align: center;
            background: #333333;
            display: inline-block;
        }

        .extension-details-left .extension-details-name a {
            color: #fff;
        }

.extension-details-right {
    padding: 30px;
    min-height: 400px;
    border: 1px solid #eee;
}

@media screen and (max-width: 767px) {
    .extension-details-left {
        height: 100%;
        margin-bottom: 20px;
        border-bottom: 1px dotted #aaa;
    }

        .extension-details-left .extension-details-name {
            height: 100%;
        }
}


/** Icon
 **************************************************************** **/
.scrollup {
    position: fixed;
    padding-top: 3px;
    bottom: 45px;
    right: 20px;
    width: 40px;
    height: 40px;
    color: #333333;
    font-size: 25px;
    line-height: 30px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    background: #fff;
    display: none;
    border: 3px solid #333333;
    border-radius: 10px;
    transition: all 300ms ease;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.08), 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

.whatsapp2 {
    position: fixed;
    bottom: 93px;
    right: 20px;
    cursor: pointer;
    display: inline;
    vertical-align: middle;
    z-index: 999;
    font-size: 23px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.08), 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

    .whatsapp2:hover {
        background: #eee;
    }

    .whatsapp2 i {
        color: #fff;
        height: 40px;
        width: 40px;
        line-height: 40px;
        font-size: 18px;
        background: #25D366;
        position: relative;
        border-radius: 10px;
    }

    .whatsapp2 span {
        width: 0;
        color: #777;
        font-size: 13px;
        font-weight: 600;
        overflow: hidden;
        align-items: center;
        white-space: nowrap;
        display: none;
        letter-spacing: 1px;
        justify-content: center;
        display: -ms-inline-flexbox;
        display: -webkit-inline-flex;
        transition: width 500ms ease;
    }

    .whatsapp2:hover span {
        width: 140px;
        display: inline-flex !important;
    }

.facebook2 {
    position: fixed;
    bottom: 140px;
    right: 20px;
    cursor: pointer;
    display: inline;
    vertical-align: middle;
    z-index: 999;
    font-size: 18px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.08), 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

    .facebook2:hover {
        background: #eee;
    }

    .facebook2 i {
        color: #fff;
        height: 40px;
        width: 40px;
        line-height: 40px;
        font-size: 18px;
        background: #3b5998;
        position: relative;
        border-radius: 10px;
    }

    .facebook2 span {
        width: 0;
        color: #777;
        font-size: 13px;
        font-weight: 600;
        overflow: hidden;
        align-items: center;
        white-space: nowrap;
        display: none;
        letter-spacing: 1px;
        justify-content: center;
        display: -ms-inline-flexbox;
        display: -webkit-inline-flex;
        transition: width 500ms ease;
    }

    .facebook2:hover span {
        width: 140px;
        display: inline-flex !important;
    }


.youtube {
    position: fixed;
    bottom: 140px;
    right: 20px;
    cursor: pointer;
    display: inline;
    vertical-align: middle;
    z-index: 999;
    font-size: 18px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.08), 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

    .youtube:hover {
        background: #eee;
    }

    .youtube i {
        color: #fff;
        height: 40px;
        width: 40px;
        line-height: 40px;
        font-size: 18px;
        background: #FF0000;
        position: relative;
        border-radius: 10px;
    }

    .youtube span {
        width: 0;
        color: #777;
        font-size: 13px;
        font-weight: 600;
        overflow: hidden;
        align-items: center;
        white-space: nowrap;
        display: none;
        letter-spacing: 1px;
        justify-content: center;
        display: -ms-inline-flexbox;
        display: -webkit-inline-flex;
        transition: width 500ms ease;
    }

    .youtube:hover span {
        width: 140px;
        display: inline-flex !important;
    }




.xiaohongshu {
    position: fixed;
    bottom: 234px;
    right: 20px;
    cursor: pointer;
    display: inline;
    vertical-align: middle;
    z-index: 999;
    border-radius: 10px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.08), 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

    .xiaohongshu:hover {
        background: #eee;
    }

    .xiaohongshu img {
        height: 40px;
        display: inline;
        border-radius: 10px;
    }

    .xiaohongshu span {
        width: 0;
        color: #777;
        font-size: 13px;
        font-weight: 600;
        overflow: hidden;
        align-items: center;
        white-space: nowrap;
        display: inline-flex;
        letter-spacing: 1px;
        justify-content: center;
        display: -ms-inline-flexbox;
        display: -webkit-inline-flex;
        transition: width 500ms ease;
    }

    .xiaohongshu:hover span {
        width: 140px;
    }


.wechat {
    position: fixed;
    bottom: 187px;
    right: 20px;
    cursor: pointer;
    display: inline;
    vertical-align: middle;
    z-index: 999;
    font-size: 18px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.08), 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

    .wechat:hover {
        background: #eee;
    }

    .wechat i {
        color: #fff;
        height: 40px;
        width: 40px;
        line-height: 40px;
        font-size: 18px;
        background: #7bb32e;
        position: relative;
        border-radius: 10px;
    }

    .wechat span {
        width: 0;
        color: #777;
        font-size: 13px;
        font-weight: 600;
        overflow: hidden;
        align-items: center;
        white-space: nowrap;
        display: none;
        letter-spacing: 1px;
        justify-content: center;
        transition: width 500ms ease;
    }

    .wechat:hover span {
        width: 130px;
        cursor: pointer;
        display: inline-flex !important;
    }

.instagram {
    position: fixed;
    bottom: 234px;
    right: 20px;
    cursor: pointer;
    display: inline;
    vertical-align: middle;
    z-index: 999;
    border-radius: 10px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.08), 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

    .instagram:hover {
        background: #eee;
    }

    .instagram img {
        height: 40px;
        display: inline;
        border-radius: 10px;
    }

    .instagram span {
        width: 0;
        color: #777;
        font-size: 13px;
        font-weight: 600;
        overflow: hidden;
        align-items: center;
        white-space: nowrap;
        display: inline-flex;
        letter-spacing: 1px;
        justify-content: center;
        display: -ms-inline-flexbox;
        display: -webkit-inline-flex;
        transition: width 500ms ease;
    }

    .instagram:hover span {
        width: 140px;
    }

.shopee {
    position: fixed;
    bottom: 281px;
    right: 20px;
    cursor: pointer;
    display: inline;
    vertical-align: middle;
    z-index: 999;
    border-radius: 10px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.08), 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

    .shopee:hover {
        background: #eee;
    }

    .shopee img {
        height: 40px;
        display: inline;
        border-radius: 10px;
    }

    .shopee span {
        width: 0;
        color: #777;
        font-size: 13px;
        font-weight: 600;
        overflow: hidden;
        align-items: center;
        white-space: nowrap;
        display: inline-flex;
        letter-spacing: 1px;
        justify-content: center;
        display: -ms-inline-flexbox;
        display: -webkit-inline-flex;
        transition: width 500ms ease;
    }

    .shopee:hover span {
        width: 140px;
    }

.lazada {
    position: fixed;
    bottom: 328px;
    right: 20px;
    cursor: pointer;
    display: inline;
    vertical-align: middle;
    z-index: 999;
    border-radius: 10px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.08), 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

    .lazada:hover {
        background: #eee;
    }

    .lazada img {
        height: 40px;
        display: inline;
        border-radius: 10px;
    }

    .lazada span {
        width: 0;
        color: #777;
        font-size: 13px;
        font-weight: 600;
        overflow: hidden;
        align-items: center;
        white-space: nowrap;
        display: inline-flex;
        letter-spacing: 1px;
        justify-content: center;
        display: -ms-inline-flexbox;
        display: -webkit-inline-flex;
        transition: width 500ms ease;
    }

    .lazada:hover span {
        width: 140px;
    }

@media screen and (max-width: 767px) {
    .scrollup {
        right: 10px;
        bottom: 15px;
        font-size: 22px;
    }

    .whatsapp2 {
        right: 10px;
        bottom: 63px;
    }

        .whatsapp2:hover span {
            display: none !important;
        }

    .facebook2 {
        right: 10px;
        bottom: 112px;
    }

        .facebook2:hover span {
            display: none !important;
        }

    .youtube {
        right: 10px;
        bottom: 112px;
    }

        .youtube:hover span {
            display: none !important;
        }

    .xiaohongshu {
        right: 10px;
        bottom: 210px;
    }

        .xiaohongshu span {
            display: none;
        }

    .wechat {
        right: 10px;
        bottom: 161px;
    }

        .wechat:hover span {
            display: none !important;
        }

    .instagram {
        right: 10px;
        bottom: 210px;
    }

        .instagram span {
            display: none;
        }

    .shopee {
        right: 10px;
        bottom: 259px;
    }

        .shopee span {
            display: none;
        }

    .lazada {
        right: 10px;
        bottom: 308px;
    }

        .lazada span {
            display: none;
        }
}

@media screen and (max-width: 480px) {
    .scrollup {
        width: 35px;
        height: 35px;
        font-size: 20px;
        line-height: 26px;
    }

    .whatsapp2 {
        bottom: 56px;
    }

        .whatsapp2 i {
            height: 35px;
            width: 35px;
            font-size: 22px;
            line-height: 35px;
        }

    .facebook2 {
        bottom: 97px;
    }

        .facebook2 i {
            width: 35px;
            height: 35px;
            font-size: 18px;
            line-height: 35px;
        }

    .youtube {
        bottom: 97px;
    }

        .youtube i {
            width: 35px;
            height: 35px;
            font-size: 18px;
            line-height: 35px;
        }

    .xiaohongshu {
        bottom: 179px;
    }

        .xiaohongshu img {
            height: 35px;
        }

    .wechat {
        bottom: 138px;
    }

        .wechat i {
            width: 35px;
            height: 35px;
            font-size: 18px;
            line-height: 35px;
        }

    .instagram {
        bottom: 179px;
    }

        .instagram img {
            height: 35px;
        }

    .shopee {
        bottom: 220px;
    }

        .shopee img {
            height: 35px;
        }

    .lazada {
        bottom: 261px;
    }

        .lazada img {
            height: 35px;
        }
}


/** Back Button
 **************************************************************** **/
.back-to-btn {
    margin: 10px 0 50px;
    display: inline-block;
}

    .back-to-btn a {
        background: #fff;
        color: #333333;
        padding: 10px;
        font-weight: 600;
        border-radius: 10px;
        border: 3px solid #333333;
        transition: 0.3s all ease-in-out;
        box-shadow: 0px 0px 10px 1px rgba(119, 119, 119, 0.4);
        text-decoration: none;
    }

        .back-to-btn a:hover {
            background: #333333;
            color: #fff;
        }


/** Team
 **************************************************************** **/
.team {
    position: relative;
    background: #fff;
    border: 1px solid #e7e7e7;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* stack items from top */
    align-items: stretch;
    width: 100%;
    min-height: 300px; /* consistent height */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .team:hover {
        animation: bloom ease-in-out .75s forwards;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        transform: translateY(-3px);
    }

    .team:before {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 2;
        display: block;
        content: '';
        width: 0;
        height: 0;
        background: rgba(0,0,0,.2);
        border-radius: 100%;
        transform: translate(-50%, -50%);
        opacity: 0;
    }

    .team:hover:before {
        animation: circle .75s;
    }

    /* Image area */
    .team .team-photo {
        width: 100%;
        height: 280px;
        overflow: hidden;
        position: relative;
    }

        .team .team-photo img {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            padding: 5px;
        }

    /* Name section — top aligned now */
    .team .team-name {
        flex: 1 1 auto;
        text-align: center;
        padding: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; /* ⬅ top align text */
        min-height: 80px;
    }

        .team .team-name h5 {
            color: #000;
            margin: 0;
            line-height: 1.4;
            white-space: pre-line;
            word-break: break-word;
        }

/* Equal height per row */
.post {
    display: flex;
    align-items: stretch;
}

    .product > a,
    .post > a,
    .post > .team {
        flex: 1 1 auto;
        width: 100%;
        text-decoration: none;
    }

/* Style for pagination */
.pagination {
    display: flex;
    justify-content: end;
    margin-top: 20px;
}

    .pagination button {
        background-color: #4cae4c;
        color: white;
        border: none;
        padding: 8px 12px;
        margin: 0 5px;
        cursor: pointer;
    }

        .pagination button:hover {
            background-color: #007078;
        }

    .pagination .page-btn.active {
        background-color: #007078;
        font-weight: bold;
    }

    .pagination .prev-btn[disabled],
    .pagination .next-btn[disabled] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.tp-simpleresponsive img
{
    max-width:100% !important;
}


/** #Title & View More
**************************************************************** **/
#title {
    text-align: center;
    margin-bottom: 20px;
}

#title p {
    margin: 0;
    color: #000;
    font-weight: 800;
    font-size: 40px;
    text-align: center;
    position: relative;
    font-family: "Montserrat", serif;
}

    #title p.about-title {
        text-align: left;
    }

        #title p.about-title:before {
            content: "";
            left: calc(0% + 5px);
        }

        #title p.about-title:after {
            content: "";
            left: calc(0% - 5px);
        }

    #title p:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: calc(50% - 5px);
        width: 20px;
        height: 2px;
        background-color: #666;
    }

    #title p:after {
        content: "";
        bottom: -5px;
        position: absolute;
        right: calc(50% - 5px);
        width: 20px;
        height: 2px;
        background-color: #666;
    }

@media screen and (max-width: 767px) {
    #title {
        margin-bottom: 10px;
    }
}