* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Questrial', 'century gothic', '微軟正黑體', sans-serif;
    margin-top: 0;
    letter-spacing: 0px;
    color: #ADADAD;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 22px;
    margin: 0 0 20px 0;
}

h3 {
    font-size: 20px;
}

h3 a:link, h3 a:visited {
    color: #ADADAD;
}

h3 a:hover {
    color: #EAEAEA;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 15px;
}

ul, ol {
    margin: 10px 0;
}

p {
    margin: 10px 0;
}

a {
    color: #8f8f8f;
}

a:link, a:visited, a:focus {
    color: #8f8f8f;
    text-decoration: none;
    outline: none;
}

a:hover {
    color: #ffc000;
    text-decoration: none;
}

img {
    max-width: 100%;
}

html, body {
    font-family: '微軟正黑體', sans-serif;
    font-size: 14px;
    background-color: #E9E9E9;
    color: #131313;
    line-height: 22px;
    overflow-x: hidden;
}

header {
    background: #c8c8c8;
    height: 138px;
}

@media only screen and (max-width: 600px) {
    .desktop-only {
        display: none !important;
    }
}

@media only screen and (min-width: 601px) {
    .mobile-only {
        display: none !important;
    }
}

.menu-container {
    margin: auto;
    background: #FCFCFC;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    margin-top: 0;
    min-width: 100%;
    /*opacity: 0.94;*/
    transition: opacity .5s ease-out;
}

/* Nav */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding: 20px 20px;
    font-size: 16px;
    /*background: #e9e9e9;*/
    max-width: 1800px;
    margin: 0 auto;
}

@media(max-width:769px) {
    .main-nav {
        height: 63px;
        padding: 20px 15px;
    }
}

.main-nav .logo {
    width: 110px;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    padding: 0 10px;
}

.main-nav ul li a {
    padding-bottom: 2px;
    color: #000;
}

.main-nav ul li a:hover {
    border-bottom: 2px solid #262626;
    color: #fff;
}

.main-nav ul.main-menu {
    flex: 1;
    /*margin-left: 20px;*/
    justify-content: flex-end;
}

.menu-btn {
    color: #8f8f8f;
    cursor: pointer;
    position: fixed;
    top: 17px;
    right: 10px;
    z-index: 11;
    display: none;
}

.btn {
    cursor: pointer;
    display: inline-block;
    border: 0;
    font-weight: bold;
    padding: 10px 20px;
    background: #262626;
    color: #fff;
    font-size: 15px;
}

.us .btn:hover {
    background-color: #737373;
}

.us .btn {
    background-color: #333333;
}

.dark {
    color: #fff;
}

.dark .btn {
    background: #f4f4f4;
    color: #333;
}

@media (max-width: 800px) {
    .menu-btn {
        display: block;
    }
    .menu-btn:hover {
        opacity: 0.5;
    }
    .main-nav ul.right-menu {
        margin-right: 50px;
    }
    .main-nav ul.main-menu {
        display: block;
        position: absolute;
        top: 63px;
        left: 0;
        background: #f2f2f2;
        width: 80%;
        border-right: #ccc 1px solid;
        /*opacity: 0.9;*/
        transform: translateX(-700px);
        transition: transform 0.5s ease-in-out;
    }
    .main-nav ul.main-menu li {
        padding: 10px;
        border-bottom: #ccc solid 1px;
        font-size: 14px;
    }
    .main-nav ul.main-menu li:last-child {
        border-bottom: 0;
    }
    .main-nav ul.main-menu.show {
        transform: translateX(-20px);
        z-index: 9999;
        /*top: 0;*/
        overflow-y: scroll;
        height: 100%;
        position: fixed;
    }
    .home-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .xbox .content p {
        display: none;
    }
    .xbox .content h2 {
        margin-bottom: 20px;
    }
    .carbon .content {
        width: 85%;
    }
    .links .links-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .home-cards {
        grid-template-columns: 1fr;
    }
    .links .links-inner {
        grid-template-columns: 1fr;
    }
    .links .links-inner ul {
        margin-bottom: 20px;
    }
}

.menu-dropdown-icon:before {
    content: "\f489";
    font-family: "Ionicons";
    display: none;
    cursor: pointer;
    float: right;
    padding: 1.5em 2em;
    color: #333;
}

.main-nav>.main-menu {
    margin: 0 auto;
    width: 100%;
    list-style: none;
    padding: 0;
    position: relative;
    /* IF .main-nav position=relative -> ul = container width, ELSE ul = 100% width */
    box-sizing: border-box;
}

.main-nav>.main-menu:before, .main-nav>.main-menu:after {
    content: "";
    display: table;
}

.main-nav>.main-menu:after {
    clear: both;
}

.main-nav>.main-menu>li {
    float: left;
    /*background: #e9e9e9;*/
    padding: 0;
    margin: 0;
}

.main-nav>.main-menu>li a {
    text-decoration: none;
    padding: 1.9em 25px;
    display: block;
    color: #707070;
    font-size: 18px;
}

.main-nav>.main-menu>li a:hover {
    color: #fff;
}

.main-nav>.main-menu>li:hover {
    background: #afafaf87;
}

.main-nav>.main-menu>li>ul {
    display: none;
    width: 100%;
    background: #f0f0f0;
    padding: 20px;
    position: absolute;
    z-index: 99;
    left: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}

.main-nav>.main-menu>li>ul:before, .main-nav>.main-menu>li>ul:after {
    content: "";
    display: table;
}

.main-nav>.main-menu>li>ul:after {
    clear: both;
}

.main-nav>.main-menu>li>ul>li {
    margin: 0;
    padding-bottom: 0;
    list-style: none;
    width: 25%;
    background: none;
    float: left;
}

.main-nav>.main-menu>li>ul>li a {
    color: #777;
    padding: 0.2em 0;
    width: 95%;
    display: block;
    border-bottom: 1px solid #ccc;
}

.main-nav>.main-menu>li>ul>li>ul {
    display: block;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
    box-sizing: border-box;
}

.main-nav>.main-menu>li>ul>li>ul:before, .main-nav>.main-menu>li>ul>li>ul:after {
    content: "";
    display: table;
}

.main-nav>.main-menu>li>ul>li>ul:after {
    clear: both;
}

.main-nav>.main-menu>li>ul>li>ul>li {
    float: left;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    font-size: 0.8em;
}

.main-nav>.main-menu>li>ul>li>ul>li:hover {
    background-color: rgb(216, 216, 230);
}

.main-nav>.main-menu>li>ul>li>ul>li a {
    border: 0;
}

.main-nav>.main-menu>li>ul.normal-sub {
    width: 300px;
    left: auto;
    padding: 10px 20px;
}

.main-nav>.main-menu>li>ul.normal-sub>li {
    width: 100%;
}

.main-nav>.main-menu>li>ul.normal-sub>li a {
    border: 0;
    padding: 1em 0;
}

@media only screen and (max-width: 800px) {
    .menu-dropdown-icon:before {
        display: block;
    }
    .main-nav>.main-menu {
        display: none;
    }
    .main-nav>.main-menu>li {
        width: 100%;
        float: none;
        display: block;
    }
    .main-nav>.main-menu>li a {
        padding: 1.5em;
        width: 100%;
        display: block;
    }
    .main-nav>.main-menu>li>ul {
        position: relative;
    }
    .main-nav>.main-menu>li>ul.normal-sub {
        width: 100%;
    }
    .main-nav>.main-menu>li>ul>li {
        float: none;
        width: 100%;
        margin-top: 20px;
    }
    .main-nav>.main-menu>li>ul>li:first-child {
        margin: 0;
    }
    .main-nav>.main-menu>li>ul>li>ul {
        position: relative;
    }
    .main-nav>.main-menu>li>ul>li>ul>li {
        float: none;
    }
}

.fs {
    margin-top: 40px;
}

.brand {
    padding: 30px 0;
    background-color: #f7f7f7;
}

.brand .container {
    padding-bottom: 30px;
}

.brand .newcol {
    padding: 0;
    overflow: hidden;
}

.brand img {
    transform: scale(1, 1);
    transition: all 0.5s ease-out;
}

.brand img:hover {
    transform: scale(1.035) rotate(0.05deg);
}

@media (min-width: 1200px) {
    .brand .container {
        max-width: 1120px;
    }
}

.brand p {
    color: #262626;
    font-size: 15px;
    line-height: 25px;
}

.frame img {
    padding: 10px 20px;
}

@media (max-width: 991px) {
    .frame img {
        max-width: 60%;
    }
}

.frame p {
    padding: 0px 60px;
}

.site-footer {
    background-color: #E9E9E9;
    padding: 45px 0 20px;
    font-size: 15px;
    line-height: 24px;
    color: #8f8f8f;
}

.site-footer hr {
    border: 1px solid;
    border-color: #707070;
    opacity: 0.5;
}

.site-footer hr.small {
    margin: 20px 0;
}

.site-footer h6 {
    color: rgb(75, 75, 75);
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 2px;
}

.site-footer a {
    color: #707070;
}

.site-footer a:hover {
    color: #3366cc;
    text-decoration: none;
}

.footer-links {
    padding-left: 0;
    list-style: none;
}

.footer-links li {
    display: block;
    padding: 0 50px 0 0;
}

@media (max-width:991px) {
    .footer-links li {
        padding: 0;
        padding: 0 10px 0 0;
    }
}

.footer-links a {
    color: #707070;
    font-size: 18px;
}

@media (max-width: 767px) {
    .footer-links a {
        font-size: 16px;
    }
}

.footer-contact a {
    color: #999999;
    font-size: 16px;
}

.copyright-text {
    text-align: center;
    font-size: 16px;
}

@media (max-width: 767px) {
    .copyright-text {
        font-size: 14px;
    }
}

.footer-links a:active, .footer-links a:focus, .footer-links a:hover {
    color: #3366cc;
    text-decoration: none;
}

.footer-links.inline li {
    display: inline-block;
}

.site-footer .social-icons {
    padding-top: 10px;
}

.site-footer .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 6px;
    margin-right: 0;
    border-radius: 100%;
    background-color: #8a8c94;
    color: #fff;
}

@media (max-width: 991px) {
    .site-footer [class^="col-"] {
        margin-bottom: 0;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-bottom: 0;
    }
    .site-footer .copyright-text, .site-footer .social-icons {
        text-align: center;
        font-size: 12px;
    }
}

.site-footer .col-xs-6 {
    width: 50%;
}

.footlogo {
    text-align: end;
    margin: 10px 20px;
}

@media (max-width: 991px) {
    .footlogo {
        text-align: inherit;
        margin: 0;
    }
}

@media (min-width: 991px) {
    .site-footer .col {
        padding-left: 60px;
    }
}

@media (min-width: 1200px) {
    .site-footer .container {
        max-width: 1120px;
    }
}

.carousel-caption {
    width: 300px;
    left: 5%;
    top: 30%;
    color: #262626;
}

.brand h1 {
    border-left: 8px solid #322C86;
    color: #262626;
    font-size: 20px;
}

.brand a {
    color: #322C86;
}

@media (min-width: 1200px) {
    .box .container {
        max-width: 1120px;
    }
}

.box h1 {
    color: black;
}

.box p {
    font-size: 14px;
    color: black;
}

.box a {
    color: #000;
}

.bannerArea {
    background: url(../images/005.png);
    background-size: cover;
}

.banner-text p {
    padding-bottom: 50px;
}

@media screen and (min-width: 991px) {
    .banner-text p {
        font-size: 36px;
    }
}

@media screen and (max-width: 767px) {
    .banner-text p {
        padding-bottom: 5px;
    }
}

@media screen and (max-width: 767px) {
    .bannerArea {
        background: url(../images/005.png) 50% 50%;
    }
}

.bannerArea .bannerArea-container {
    min-height: 700px;
}

@media screen and (max-width: 767px) {
    .bannerArea .bannerArea-container {
        min-height: 450px;
    }
}

.bannerArea .bannerArea-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}

.bannerArea-row {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.bannerArea-column {
    position: relative;
    min-height: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.bannerArea .bannerArea-column {
    z-index: 1;
}

@media (min-width: 768px) {
    .bannerArea-column.bannerArea-col-100, .bannerArea-column[data-col="100"] {
        width: 100%;
    }
}

.elementor-column-wrap {
    margin: 0 auto;
}

.bannerArea-element {
    padding: 0 5px;
    align-content: center;
    align-items: center;
    color: black;
}

@media screen and (max-width: 767px) {
    .bannerArea-element {
        position: absolute;
        top: 0;
        bottom: 0;
        min-height: 150px;
    }
}

.frameimg {
    text-align: center;
}

.contact-bg {
    background-image: url(../images/contact-bg1.jpg);
    min-height: 500px;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.contacth1 {
    text-align: center;
    padding: 50px 0px;
    font-size: 26px;
}

@media (min-width: 1200px) {
    .us .container {
        max-width: 760px;
    }
}

.us label {
    color: #262626;
}

.bushow img {
    padding: 10px 20px;
}

.bushow {
    padding: 10px 20px;
}

.bushow p {
    padding: 10px 5px;
}

.brand-carousel {
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    padding: 20px 40px;
    width: 100%;
}

.brand-carousel .brand {
    box-sizing: border-box;
    margin: 0 10px;
    text-align: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column;
    align-content: space-between;
    outline: none;
}

.brand-carousel .brand-top {
    width: 100%;
}

.brand-carousel p, .brand-carousel .brand-image, .brand-carousel img.review-stars {
    margin: 0 0 10px 0;
}

.brand-carousel .brand-image {
    align-self: flex-start;
    max-width: 100%;
}

img.review-stars {
    width: 100px;
    display: inline-block;
}

.brand-carousel .brand-name {
    font-weight: bold;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-flow: column wrap;
    -webkit-box-pack: start;
    justify-content: flex-start;
    width: 100%;
    color: #585858;
}

.brand-carousel .brand-name a {
    color: #585858;
}

.brand-carousel .brand-name a:hover {
    color: #ee8484;
}

.brand-carousel .brand-bottom {
    margin-top: auto;
    -webkit-box-align: end;
    align-items: flex-end;
}

.brand-carousel .brand-prices {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -webkit-box-flex: 1;
    flex: 1 0 100%;
    align-self: center;
}

.brand-carousel .brand-prices span {
    width: 100%;
}

.brand-carousel .brand-prices span.price-was {
    color: #8f8f8f;
    text-decoration: line-through;
}

.brand-carousel .brand-prices span.price-save {
    color: red;
}

.brand-carousel .brand-prices span.price-save:before {
    content: 'Save ';
}

.brand-carousel .brand-prices span.price-now {
    font-weight: bold;
    color: #8f8f8f;
}

.brand-carousel button.shop-now {
    border: none;
    background-image: none;
    background-color: #4a4a4a;
    color: #ffffff;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    font-size: 16px;
    padding: 8px 10px;
    align-self: center;
}

.brand-name p {
    padding: 0 20px;
}

@media (min-width: 768px) {
    .col {
        padding-left: .5rem;
        padding-right: .5rem;
    }
}

.col {
    padding-left: .25rem;
    padding-right: .25rem;
}

.mr-3 {
    margin-right: .75rem!important;
}

@media (max-width: 768px) {
    .col a {
        font-size: 13px;
    }
}

.siofot {
    display: flex!important;
    flex-direction: column;
}

@media (min-width:1024px) {
    .siofot {
        flex-direction: row;
    }
}

.footer-contact {
    list-style: none;
}

@media (min-width:1024px) {
    .footer-contact {
        display: flex;
    }
}

.footer-contact li {
    padding: 0 30px 0 0;
}

@media (max-width:991px) {
    .footer-contact li {
        padding: 0 10px 0 0;
    }
}

.copyright {
    color: #999999;
    background-color: #E9E9E9;
}

.product {
    padding: 10px 0 20px 0;
}

.product-content li {
    display: inline-table;
    list-style-type: none;
    float: left;
    width: 20%;
    padding: 2px;
}

.product-content img {
    width: 100%;
}

@media (max-width: 640px) {
    .product-content li {
        width: 100%;
    }
}

.accordion li {
    list-style-type: none;
}

/*** Submenu ***/

.link a h3 {
    color: #000;
}

.accordion h3:hover {
    color: #f9f9f9;
    background-color: #8f8f8f;
    padding: 10px 5px;
    border-radius: 0 50px 50px 0;
}

.accordion li {
    padding: 10px 0;
}

.accordion li .active {
    padding: 10px 5px;
    background-color: #8f8f8f;
    border-radius: 0 50px 50px 0;
}

.submenu {
    display: none;
    background: none;
    font-size: 14px;
    margin: 0;
}

.submenu li {
    border-bottom: 0px solid #4b4a5e;
    list-style-type: square;
    list-style-position: initial;
    margin-left: 20px;
    cursor: default;
}

.submenu li a {
    padding-left: 0;
}

/***------ Side menu end ------***/

.contadr li {
    padding: 10px 0;
}

.abtspan span {
    font-size: 16px;
    letter-spacing: 1px;
}