/* Basic */
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
    color: #000;
    font-size: 15px;
    font-weight: 400;
}

a {
    color: #000;
}
a:hover {
    color: #000;
    text-decoration: none;
}
ul {
    padding-left: 0;
    margin-bottom: 0;
}
li {
    list-style: none;
}

.page__intro__content,
.page__details__content {
    font-weight: 400;
}
.page__intro__content ul,
.page__details__content ul {
    padding-left: 40px;
}

.page__intro__content li,
.page__details__content li {
    list-style: initial;
}

b, strong {
    font-weight: 700;
}

.heading {
    font-family: aktiv-grotesk, "Noto Sans TC", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    font-style: normal;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(128, 128, 128, 0.8);
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 14px;
    opacity: 1; /* Firefox */
}
  
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgba(128, 128, 128, 0.8);
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 14px;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: rgba(128, 128, 128, 0.8);
    font-weight: 300;
    font-size: 14px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    line-height: 1.5em;
}

/* Layout */
.layout {
    margin-left: 8%;
    margin-right: 8%;
}
.section {
    padding-top: 80px;
    padding-bottom: 40px;
}
    .section__header {
        text-align: center;
        margin-bottom: 40px;
    }
    .section__heading {
        font-size: 36px;
        margin-bottom: 5px;
    }
    .section__subheading {
        font-size: 18px;
    }
    .section__content {
        position: relative;
    }

.grid {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    flex-wrap: wrap;
}
.grid.vertical {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.grid__item {
    padding-left: 15px;
    padding-right: 15px;
}
.grid-4 > .grid__item {
    width: 25%;
}
.grid-3 > .grid__item {
    width: 33.333333%;
}
.grid-2 > .grid__item {
    width: 50%;
}
.m-d-show {
    display: none;
}
@media (max-width: 1211px) {
    .m-d-none {
        display: none !important;
    }
    .m-d-show {
        display: block;
    }
    .section {
        padding-top: 60px;
    }
}
@media (max-width: 1024px) {
    .grid-3 .grid__item,
    .grid-2 .grid__item {
        width: 50%;
    }
}
@media (max-width: 576px) {
    .grid-3 .grid__item,
    .grid-2 .grid__item {
        width: 100%;
    }
}

/* Colors */
.bg-yellow {
    background-color: #EFAB2C;
}
.bg-orange {
    background-color: #FF6602;
}

/* ======= Compontent ======= */
/* Button */
button {
    border: none;
    cursor: pointer;
}
button:focus {
    outline: none;
}
.button-wrapper.right {
    text-align: right;
}
.button {
    display: inline-block;
    color: #fff;
    background-color: #FF6602;
    padding: 10px 26px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    transition: .3s;
}
.button-border {
    border: 1px solid #fff;
    background-color: #EF812C;
    font-size: 16px;
    font-weight: 500;
}
.button:hover {
    color: #fff;
    background-color: #ff8c41;
}
.button-link {
    display: inline-block;
    margin-top: 10px;
    color: #FF9300;
    font-size: 13px;
    letter-spacing: 3px;
    transition: .3s;
}
.button-link::after {
    content: url(../images/icons/awesome-long-arrow-alt-right-o.png);
    position: relative;
    top: -2px;
    left: 4px;
}

/* dropdown */
.drop {
    position: relative;
}
.drop__content {
    display: none;
    position: absolute;
}
/* .drop:hover .drop__content {
    display: block;
} */

/* Ppagination */
.page__pagination {
    margin-top: 60px;
    margin-bottom: 40px;
}
.page__pagination .pagination {
    justify-content: center;
    padding-left: 0;
}
    .pagination .page-item {
        margin-right: 8px;
        list-style: none !important;
    }
    .pagination .page-item.disabled .page-link {
        background-color: #e1e1e1;
        border-color: #e5e5e5;
    }
    .pagination .page-item:last-child {
        margin-right: 0;
    }
    .pagination .page-link {
        display: inline-block;
        padding: 4px 11px;
        background-color: #FF9300;
        border: 1px solid transparent;
        color: #fff;
        font-size: 15px;
        line-height: 21px;
        border-radius: .25rem;
    }
    .pagination .page-link.active {
        background-color: #fff;
        border: 1px solid #FF9300;
        color: #FF9300;
    }
    .pagination .page-quick-link {
        padding: 4px 4px 0;
    }


/* language */
.langs {
    margin-left: 20px;
    z-index: 99;
}
.langs > a {
    display: flex;
    align-items: center;
}
    .current-lang {
        margin-left: 5px;
        margin-right: 5px;
        padding: 0 5px;
        font-size: 14px;
    }
    .langs .drop__content {
        width: 110px;
        margin-top: 5px;
    }
    .langs .drop__content a {
        display: block;
        padding: 8px 15px;
        background-color: #fff;
    }

/* breadcrumb */
.page__breadcrumb {
    display: -webkit-flex;
    display: flex;
    font-size: 14px;
    margin-top: 40px;
    margin-bottom: 25px;
}
    .page__breadcrumb ul {
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
    }
        .page__breadcrumb li::after {
            content: url(../images/icons/ionic-ios-arrow-back.png);
            position: relative;
            padding-left: 8px;
            padding-right: 5px;
            opacity: 0.7;
        }
        .page__breadcrumb a {
            color: #FF9300;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .page__breadcrumb li:last-child::after  {
            content: "";
        }

/* Home Slider */
.slider .swiper-button-prev, .slider .swiper-container-rtl .swiper-button-next {
    left: 5%;
}
.slider .swiper-button-next, .slider .swiper-container-rtl .swiper-button-prev {
    right: 5%;
}
.slider .swiper-button-next:after, .slider .swiper-button-prev:after {
    font-size: 16px;
    color: #fff;
}
.swiper-pagination-bullet {
    background: transparent;
    border: 1px solid #fff;
    width: 8px;
    height: 8px;
    opacity: 0.8;
}
.swiper-pagination-bullet:focus {
    outline: none;
}
.swiper-pagination-bullet-active {
    background: #fff;
}
.swiper-button:focus {
    outline: none;
}

.carousel__style .swiper-button-next,
.carousel__style .swiper-button-prev {
    width: 25px;
    height: 25px;
    background-color: #ff9402;
    border-radius: 50%;
}
.carousel__style .swiper-button-next:after,
.carousel__style .swiper-button-prev:after {
    font-size: 12px;
    color: #fff;
}

/* Checkbox / Radio Button */
.option-wrap {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
.option-wrap input {
    position: absolute;
    opacity: 0;
    left: 0;
    width: 100%;
    height: 35px;
    cursor: pointer;
    z-index: 1;
}
.option-label {
    letter-spacing: 4px;
}
.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 1px;
}
  
.option-wrap:hover input ~ .checkmark {
    background-color: transparent;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.option-wrap input:checked ~ .checkmark {
    border-color: #f08300;
    background-color: #f08300;
}
.option-wrap input:checked ~ .checkmark:after {
   display: block;
   background-color: #f08300;
}

.option-wrap .checkmark:after {
    left: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 1.5px 1.5px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Info Box */
.image__box {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}
.image__box-h {
    align-items: center;
}
    .image__box-h__image {
        flex: 2;
    }
    .image__box .thumb-image-container {
        width: 100%;
    }
        .image__box-h__image .thumb-image-wrapper {
            padding-bottom: 74%;
        }
        .image__box-h .text__card {
            flex: 3;
            padding-left: 20px;
            padding-right: 20px;
            padding-top: 8px;
            padding-bottom: 5px;
            order: 2;
        }
        .image__box-h .text__card__title {
            font-size: 16px;
            margin-top: 2px;
            margin-bottom: 8px;
        }


.image__box-v {
    flex-direction: column;
    align-items: center;
}

.image__box-v__image {
    width: 100%;
    height: 540px;
}

.image__box-v .text__card {
    margin-top: 15px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1366px) {
    .image__box-v__image {
        height: 420px;
    }
}

@media (max-width: 1211px) {
    .image__box-h .text__card {
        padding-left: 10px;
        padding-right: 10px;
    }
}




/* Image Container */
.thumb-image-container {
    display: flex !important;
}
.thumb-image-wrapper {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    line-height: 0;
}
.thumb-image-wrapper.ratio-3-2 {
    padding-bottom: 66.66%;
}
.thumb-image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #f1f1f1;
}
.thumb-image img {
    width: 100%;
    height: 100%;
    object-position: 50% 50%;
    object-fit: cover;
}

/* banner */
.banner {
    width: 100%;
    position: relative;
}
.banner img {
    width: 100%;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    cursor: pointer;
    display: none;
}
.back-to-top img {
    width: 24px;
    background: #fff;
    border-radius: 2px;
}

/* ======= Header ======= */
.header__content {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header li {
    list-style: none;
}

.site__nav__content {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    .site__nav-menu {
        position: relative;
        display: -webkit-flex;
        display: flex;  
        margin-bottom: 0;
        padding-left: 0;
        z-index: 99;
    }
    .site__nav-menu h4,
    .mobile-sidebar h4,
    .site__nav-menu h5,
    .mobile-sidebar h5 {
        line-height: inherit;
        font-size: 15px;
        font-weight: 300;
        margin: 0;
    }
    
    .site__nav-menu > li {
        position: relative;
    }
    .site__nav-menu > li > a {
        display: inline-block;
        padding: 10px 20px;
        letter-spacing: 2px;
    }
    .site__nav-menu > li > a h4 {
        position: relative;
    }
    .site__nav-menu > li > a h4::after {
        content: "";
        position: absolute;
        bottom: -6px;
        width: 100%;
        height: 3px;
        background-color: #FF6602;
        display: none;
    }
    .site__nav-menu > li.active > a h4::after,
    .site__nav-menu > li > a:hover h4::after {
        display: block;
    }

    .site__logo {
        padding: 5px;
        margin: 3px;
    }
    .site__logo img {
        padding: 6px;
        height: 56px;
    }

.site__tools {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    .site__tools img {
        height: 15px;
    }
    .site__tools img.arrow-down {
        height: auto;
    }
    .site__follow img {
        margin-top: -2px;
    }
    .site__tools .langs {
        position: relative;
        margin-left: 30px;
    }
    .site__tools .langs::before {
        content: '';
        position: absolute;
        top: 5px;
        left: -15px;
        width: 1px;
        height: 65%;
        background-color: #ddd;
    }
    .site__tools .langs .drop__content {
        top: 41px;
    }
    .site__tools .langs .drop__content a {
        background-color: #f7f7f7;
    }

@media (max-width: 1366px) {
    .site__nav-menu > li > a {
        padding: 10px 15px;
    }
}

    
@media (max-width: 1211px) {
    .site__tools {
        margin-left: auto;
        margin-right: 40px;
    }
    .site__tools .langs::before {
        display: none;
    }
    .site__logo img {
        height: 40px;
    }
    .site__tools .langs .drop__content {
        top: 33px;
    }
}

/* Mobile Nav */
.mobile__nav {
    display: none;
    z-index: 99;
}
    .toggle {
        cursor: pointer;
        width: 22px;
        height: 14px;
        padding: 15px 0;
    }
        .toggle-icon {
            width: 22px;
            height: 14px;
            position: relative;
            top: -6px;
            margin: 0;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: .5s ease-in-out;
            -moz-transition: .5s ease-in-out;
            -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
            cursor: pointer;
        }
          
        .toggle-icon span {
            display: block;
            position: absolute;
            height: 1px;
            width: 100%;
            background: #333;
            border-radius: 9px;
            opacity: 1;
            left: 0;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: .25s ease-in-out;
            -moz-transition: .25s ease-in-out;
            -o-transition: .25s ease-in-out;
            transition: .25s ease-in-out;
        }
    
        .toggle-icon span:nth-child(1) {
            top: 0px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }
          
        .toggle-icon span:nth-child(2) {
            top: 5px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }
          
        .toggle-icon span:nth-child(3) {
            top: 10px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }

        .toggle-icon.open span {
            background: #fff;
        }
        .toggle-icon.open span:nth-child(1) {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
            top: -1px;
            left: 0;
        }
          
        .toggle-icon.open span:nth-child(2) {
            width: 0%;
            opacity: 0;
        }
          
        .toggle-icon.open span:nth-child(3) {
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
            top: 14px;
            left: 0;
        }
    
    .mobile-sidebar {
        position: fixed;
        top: 0;
        z-index: -1;
        width: 100%;
        height: 100vh;
        overflow: scroll;
        background: rgba(0, 0, 0, 0.75);
        right: -100%;
        transition: .3s;
    }
        .mobile-sidebar > ul {
            padding-left: 0;
            margin-top: 60px;
            width: 66%;
            margin-left: auto;
            margin-right: auto;
            padding-bottom: 40px;
        }
            .mobile-sidebar li a {
                display: inline-block;
                padding: 14px 0 7px;
                width: 100%;
                color: #fff;
                letter-spacing: 2px;
                text-align: center;
                font-size: 16px;
                font-weight: 100;
            }
            .mobile-sidebar .text-en {
                font-size: 12px;
            }
    
    .slide-sidebar.active {
        right: 0;
    }
    /* .mobile-sidebar .drop__button span {
        position: relative;
    }
    .mobile-sidebar .drop__button span::after {
        position: absolute;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f078";
        font-size: 12px;
        top: 5px;
        right: -16px;
    
    }
    .mobile-sidebar .drop:hover .drop__content {
        display: none;
    }
    .mobile-sidebar .drop.open .drop__button {
        border-bottom: 1px dashed #fff;
    }
    .mobile-sidebar .drop__content {
        margin-bottom: 10px;
    }
    .mobile-sidebar .drop__content a {
        padding-top: 10px;
        padding-bottom: 0;
        font-size: 15px;
    } */

@media (max-width: 1211px) {
    .mobile__nav {
        display: block;
    }
}

/* ======= slider ======= */
.home__slider .thumb-image-wrapper {
    padding-bottom: 36%;
}
.slide__content {
    position: absolute;
    width: 38%;
    top: 45%;
    left: 8%;
    transform: translateY(-50%);
}
.slide__subheading {
    color: #FF9300;
    font-size: 24px;
}
.slide__heading {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .home__slider .thumb-image-wrapper {
        padding-bottom: 50%;
    }
    .slide__content {
        width: 74%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
@media (max-width: 576px) {
    .home__slider .thumb-image-wrapper {
        padding-bottom: 106%;
    }
    
    .slide__subheading {
        font-size: 18px;
        text-align: center;
    }
    .slide__heading {
        font-size: 24px;
        text-align: center;
    }
    .slide__content .button-wrapper {
        text-align: center;
    }
}

/* ======= Home ======= */
/* Home About */
.home__about .page__section__heading {
    font-size: 22px;
}


.home__about .about-logo {
    width: 100px;
    margin-bottom: 20px;
}

.home__about .about-info {
    padding-left: 20px;
}

.home__about .about-info li {
    list-style: disc;
}

.home__about .about-info ul {
    padding-left: 20px;
}


.home__about .image img {
    width: 100%;
}
.home__about .image-1 {
    height: 200px;
    margin-bottom: 40px;
}
.home__about .section__content {
    margin-top: 40px;
}
.home__about .text__box .page__section__header {
    margin-bottom: 20px;
}
.home__about .text__box .page__section__text {
    font-size: 22px;
}

.home__about .image__box {
    justify-content: center;
    align-items: center;
}
    .home__about .image__box img {
        padding: 0 30px;
    }

@media (max-width: 1211px) {
    .home__about .section__content {
        margin-left: 4%;
        margin-right: 4%;
    }
    .home__about .page__section__header {
        text-align: left;
    }
    .home__about .button-wrapper.right {
        text-align: center;
    }
}
@media (max-width: 576px) {
    .home__about .image__box {
        margin-top: 60px;
    }
        .home__about .image__box img {
            padding: 0;
        }
}
@media (min-width: 1211px) {
    .home__about .display-block {
        display: block;
    }
    
    
}


/* Home Logos */
.home-logos {
    display: flex;
    margin-left: -2%;
    margin-right: -2%;
}
    
.home-logos .item {
    margin-left: 2%;
    margin-right: 2%;
}

@media(max-width: 576px) {
    .home-logos {
        flex-direction: column;
        align-items: center;
    }

    .home-logos .item {
        margin-bottom: 50px;
    }
}



/* Home Service */
.home__service .grid {
    margin-left: -8px;
    margin-right: -8px;
}

.home__service .grid__item {
    padding-left: 8px;
    padding-right: 8px;
}

.home__service .grid.vertical {
    justify-content: space-between;
    margin-top: -10px;
    margin-bottom: -10px;
}

    .home__service .grid.vertical .grid__item {
        height: 23.5%;
        margin: 10px;
    }


.service.primary {
    display: -webkit-flex;
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.service .text__card {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    padding-right: 0;
}

.service.primary .text__card {
    padding: 20px 40px;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 5%;
}

.service.image__box-h {
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    height: 100%;
    padding-left: 30px;
    padding-right: 30px;
}
    .service.image__box-h .image__box-h__image {
        height: 140px;
        flex: 2;
    }

    .service .text__card {
        flex: 5;
    }

.service .text__card__category {
    color: #FF9300;
    font-size: 18px;
    font-weight: 500;
}

.service .text__card__category a  {
    color: #FF9300;
}

.service .text__card__title {
    font-size: 22px;
    font-weight: 700;
    /* letter-spacing: 2px; */
}

.service.primary .text__card__title {
    margin-top: 30px;
    margin-bottom: 10px;
}

.service.primary .text__card__p {
    margin-bottom: 60px;
}

@media (max-width: 1211px) {
    .home__service .grid {
        margin: 0;
    }
    .service.primary {
        margin-bottom: 40px;
        height: 420px;
    }
        .service.primary .text__card {
            margin-left: 4%;
            margin-right: 4%;
        }

    .home__service .grid-2 > .grid__item {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .home__service .grid.vertical {
        flex-direction: row;
        height: auto;
    }
        .home__service .grid.vertical .grid__item {
            width: 49%;
            height: auto;
            margin-left: 0;
            margin-right: 0;
            margin-bottom: 30px;
            padding: 0;
        }

    .home__service .service.image__box-h  {
        flex-direction: column;
    }

    .service.image__box-h .image__box-h__image {
        width: 100%;
        height: 160px;
        max-height: 160px;
        flex: auto;
        margin-top: 10px;
    }

    .service.image__box-h .text__card {
        flex: auto;
        width: 100%;
        padding-bottom: 30px;
    }
}
@media (max-width: 576px) {
    .home__service .layout {
        margin: 0;
    }
    .service.primary {
        align-items: center;
    }
    .home__service .grid.vertical {
        margin-left: 8%;
        margin-right: 8%;
    }

    
        .home__service .grid.vertical .grid__item {
            width: 100%;
        }

    .service .text__card {
        width: 88%;
    }
    .service.primary .text__card {
        margin-bottom: 0;
    }
    .service.primary .text__card__title,
    .service.primary .text__card__p {
        margin: 0;
        margin-bottom: 15px;
    }
}


/* Home Project */
.home__project .swiper-slide {
    height: auto;
}

.home__project .swiper-slide .image__box {
    height: 100%;
}

.carousel__item .image__box {
    border: 1px solid #f0f0f0;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

    .home__project .thumb-image-wrapper {
        padding-bottom: 56%;
    }

    .home__project .carousel__content {
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        padding: 25px;
    }

    .home__project .carousel__content .button-link {
        margin-top: auto;
    }

        .project__title {
            font-size: 18px;
            color: #FF9300;
        }

        .bg-orange .project__title {
            color: #fff;
        }

        .project__intro {
            margin-top: 15px;
            margin-bottom: 20px;
        }

        .carousel__content a {
            color: #FF9300;
        }

        .bg-orange .carousel__content a {
            color: #fff;
        }

        .carousel__content .button-link::after {
            content: url(../images/icons/awesome-arrow-right-o.png);
            position: relative;
            top: 0;
            left: 4px;
        }

        .bg-orange .button-link::after {
            content: url(../images/icons/awesome-arrow-right-w.png);
        }

@media (max-width: 576px) {
    .carousel__item {
        padding: 10px 40px;
    }
}

/* Home Action */
.home__action {
    background-color: #FF6602;
    margin-top: 45px;
}
.action__content {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 25px;
    padding-bottom: 25px;
    font-weight: 500;
}

@media (max-width: 576px) {
    .action__content {
        text-align: center;
        justify-content: center;
    }
    .action__content .text {
        margin-bottom: 15px;
    }
}

/* ======= Page ======= */
.page__banner {
    position: relative;
}
    .page__banner .thumb-image-wrapper {
        padding-bottom: 26.3%;
    }
    .page__banner__content {
        position: absolute;
        top: 50%;
        width: 100%;
        display: -webkit-box;
        display: flex;
        align-items: center;
    }
    .page__banner__title {
        color: #fff;
        font-size: 48px;
        letter-spacing: 5px;
        margin-left: 8px;
        margin-bottom: 0;
    }

.page .slide .thumb-image-wrapper {
    padding-bottom: 42%;
}

@media (max-width: 576px) {
    .page__banner__content {
        align-items: flex-end;
    }
    .page__banner__title {
        font-size: 20px;
        margin-bottom: 120px;
    }
}

/* ======= Sidebar ======= */
.page__sidebar {
    width: 260px;
    padding-right: 40px;
}
    .page__sidebar li {
        display: -webkit-box;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #808080;
    }
    .page__sidebar li.active a {
        color: #ff9b7b;
    }
        .page__sidebar a {
            flex: 1;
            display: block;
            padding-top: 5px;
            padding-bottom: 5px;
            padding-left: 5px;
        }
        
/* page mobile menu */
.page__mobile__menu {
    width: 100%;
    background-color: #FF6602;
    border: 1px solid #FF6602;
    margin-bottom: 30px;
}
.page__mobile__menu .drop__button {
    text-align: center;
    line-height: 38px;
}

    .page__mobile__menu .drop__button a {
        position: relative;
        display: block;
        color: #fff;
    }
    .page__mobile__menu .drop__button a::after {
        content: url(../images/icons/ionic-ios-arrow-down-w.png);
        position: absolute;
        right: 20px;
        top: -2px;
    }

.page__mobile__menu .drop__content {
    position: relative;
    text-align: center;
    background-color: #fff;
    color: #FF6602;
}
.page__mobile__menu .drop__content a {
    display: block;
    padding: 3px;
    color: #FF6602;
    border-bottom: 1px solid #ffd4b9;
    transition: .3s;
}
.page__mobile__menu .drop__content a:hover {
    color: #404040;
}
/* About */
.page__intro {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}
    .page__intro__content {
        display: -webkit-box;
        display: flex;
        padding-left: 20px;
        width: calc(100% - 300px);
        align-items: flex-start;
    }
    
    .page__intro__content .block {
        width: 50%;
    }
    .page__intro__content .image__block {
        position: relative;
    }
    .page__intro__content .swiper-pagination {
        right: -15px;
        top: 50%;
    }
    .page__intro__content .swiper-pagination-bullet {
        display: block;
        margin-bottom: 5px;
        border: 1px solid #404040;
    }
    .page__intro__content .swiper-pagination-bullet-active {
        background: #404040;
    }
    .page__intro__content .swiper-button {
        display: none;
    }
    .page__intro__content .text__block {
        padding-top: 10px;
    }
        .pull-left {
            padding-left: 40px;
        }
        .pull-right {
            padding-right: 25px;
        }

    .page__section__header {
        margin-bottom: 20px;
    }
        .page__section__heading {
            font-size: 28px;
        }
        .page__section__text {
            margin-bottom: 40px;
        }
        

    .page__content .page__section__header {
        margin-bottom: 40px;
    }

    .page__content .grid__item {
        margin-bottom: 40px;
    }

    .page__about__content .image__box-h .text__card {
        padding-left: 0;
    }

        .page__content .text__card__title {
            font-size: 24px;
            font-weight: 700;
            color: #FF9300;
            flex: 1;
        }

        .page__content .text__card__subheading {
            font-size: 14px;
        }

        .page__content .text__card__p {
            font-size: 15px;
        }


    .page__content .image__box-h__image {
        height: 180px;
    }

    .page__intro .page__section__text {
        font-size: 18px;
    }

    .page__intro .page__section__heading {
        font-size: 18px;
    }

    .vision-list li {
        display: -webkit-flex;
        display: flex;
        text-align: left;
        margin-bottom: 10px;
    }

    .vision-list ul>li {
        display: list-item;
        list-style: disc;
    }

    .vision-list .text {
        flex: 1;
        margin-left: 5px;
    }



    /* details */
    .page__details__content {
        width: calc(100% - 300px);
        padding-bottom: 60px;
    }
    .page__details__content .text__card__header {
        margin-bottom: 20px;
    }
    .page__details__content .text__card__title {
        font-size: 20px;
    }
    .description img {
        max-width: 100%;
    }
    .page__details__content .button-wrapper {
        text-align: center;
        margin-top: 60px;
    }


.page__about__leadership .grid {
    margin: 0;
}
    .page__about__leadership .grid__item {
        padding: 0;
        height: 600px;
        width: 25%;
    }
    .page__about__leadership .grid__item:hover .caption__layer {
        opacity: 1;
    }
    .caption__layer {
        display: -webkit-box;
        display: flex;
        flex-direction: column;
        height: 100%;
        padding: 20px 30px;
        opacity: 0;
        background-color: rgba(0,0,0,0.6);
        transition: 0.3s;
    }
    .page__about__leadership .caption__layer {
        justify-content: flex-end;
    }
        .caption__layer-top {
            color: #FF9300;
            font-weight: 700;
            margin-bottom: auto;
            font-size: 18px;
        }
        .caption__layer-bottom {
            color: #fff;
            font-size: 36px;
            text-align: right;
        }
        .leadership .swiper-button {
            display: none;
        }

@media (max-width: 1211px) {
    .page__section__heading {
        margin-top: 20px;
    }
    .page__intro__content {
        width: 100%;
        padding-left: 0;
        flex-direction: column;
    }
    .page__details__content {
        width: 100%;
        margin-left: 8%;
        margin-right: 8%;
    }
    .page__section__header {
        text-align: center;
    }
    .page__intro__content .block {
        width: 100%;
        padding-right: 0;
    }
    .page__intro__content .text__block {
        padding-left: 0;
        order: 1;
        text-align: center;
    }
    .page__content .image__box-h__image {
        width: 100%;
        flex: auto;
        order: 2;
    }
    .leadership .swiper-button {
        display: flex;
    }
    
    .page__about__leadership .grid__item .caption__layer {
        opacity: 1;
        justify-content: center;
    }
    .caption__layer-bottom {
        text-align: center;
        margin-top: -24px;
    }

}
@media (max-width: 576px) {
    .page__intro__content .swiper-pagination {
        position: unset;
        text-align: center;
        margin-top: 5px;
    }
    .page__intro__content .swiper-pagination-bullet {
        display: inline-block;
        margin-left: 3px;
        margin-right: 3px;
    }
}

/* Page Service */
.page__service__content .image__box-h {
    align-items: flex-end;
}
    .page__service .image__box .thumb-image-container {
        width: 50%;
    }

.text__card__header {
    display: -webkit-box;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.text__card__date {
    font-size: 12px;
    margin-right: 15px;
}
    .text__card__date .date {
        text-align: center;
        font-size: 16px;
        background-color: #F7F7F7;
        color: #FF9300;
        padding: 1px 6px;
    }
    .text__card__date .month {
        background-color: #FF9300;
        color: #fff;
        padding: 2px 6px;
    }
    .page__service__content .text__card__title {
        font-size: 18px;
        font-weight: 400;
        color: #000;
    }
    
/* Page Salon */
@media (max-width: 1366px) {
    .page__service .image__box .thumb-image-container {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .page__salon__content .layout {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Page Report */
.page__report__content .image__box-h {
    align-items: flex-end;
}
.page__report__content .image__box-h__image {
    height: 520px;
}
.page__report__content .image__box-h .image__box-h__image {
    flex: 3;
}
.page__report__content .image__box-h .text__card {
    flex: 2;
}
.page__report__content .grid__item:nth-child(3) .image__box-h__image,
.page__report__content .grid__item:nth-child(4) .image__box-h__image {
    height: 280px;
}
@media (max-width: 1365px) {
    .page__report__content .grid__item:nth-child(3) .image__box-h__image,
    .page__report__content .grid__item:nth-child(4) .image__box-h__image,
    .page__report__content .image__box-h__image {
        height: 180px;
    }
    .page__report__content .image__box-h .image__box-h__image,
    .page__report__content .image__box-h .text__card {
        flex: auto;
    }
}

@media (max-width: 576px) {
    .page .layout,
    .page .grid {
        margin-left: 0;
        margin-right: 0;
    }

    .page .page__mobile__menu {
        margin-left: 8%;
        margin-right: 8%;
    }

    .page__contact,
    .page__salon .text__card {
        padding-left: 8%;
        padding-right: 8%;
    }

    .page .grid__item {
        padding-left: 8%;
        padding-right: 8%;
    }
    .page .carousel__style .grid__item {
        padding: 0;
    }
    
    .page__salon .grid__item {
        padding: 0;
    }
    
    .page .page__intro__content .text__block {
        padding-left: 8%;
        padding-right: 8%;
    }
}

/* Page Contact */
.page__contact {
    padding-top: 20px;
    padding-bottom: 100px;
}
.contact__form__title {
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.contact__form__text {
    letter-spacing: 1px;
}
.contact__form {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}
    .contact__form .block-form {
        flex: 2;
        padding-right: 40px;
    }
    
    .contact__form .block-text {
        flex: 3;
        display: -webkit-box;
        display: flex;
    }
        .contact__form .contact__info {
            margin-bottom: 40px;
            margin-left: 20px;
        }
            .contact__form .contact__info li {
                flex-wrap: nowrap;
            }
            .contact__form .title {
                font-size: 20px;
                letter-spacing: 2px;
            }

        .google-map {
            width: 400px;
        }
        .google-map iframe {
            width: 100%;
            height: 100%;
        }
         
    .contact__form input,
    .contact__form textarea {
        width: 100%;
        background-color: rgba(255, 147, 0, 0.1);
        border: none;
        padding: 8px 16px;
    }
    .contact__form input:focus,
    .contact__form textarea:focus {
        outline-color: #ffd192;
    }
    .contact__form .input__group {
        margin-bottom: 20px;
    }
        .contact__form .input__group:last-child {
            margin-bottom: 0;
        }

    .contact__form textarea {
        height: 180px;
    }
    .contact__form .button-wrapper {
        text-align: right;
    }
        .contact__form .button {
            padding: 10px 36px;
        }

@media (max-width: 1024px) {
    .contact__form {
        flex-direction: column;
    }
    .contact__form .block-form {
        flex: auto;
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .contact__form .block-text {
        flex: auto;
        width: 100%;
        flex-direction: column;
    }
    .contact__form .button-wrapper {
        text-align: center;
    }
    .google-map {
        width: 100%;
        height: 300px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
/* ======= Footer ======= */
.footer {
    padding-top: 60px;
    padding-bottom: 40px;
    background-color: rgba(255, 147, 0, 0.05);
}
    .footer__content {
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .footer__follow,
    .footer__sitemap,
    .footer__sitemap ul,
    .contact__info li {
        display: -webkit-flex;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    .footer__block {
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
    }
        .footer__block .title {
            font-size: 20px;
        }
        .footer__block-top {
            margin-bottom: 20px;
        }
        .footer__block-bottom {
            margin-top: auto;
        }


        /* footer follow */
        .footer__follow__title {
            font-size: 20px;
            font-weight: 700;
            margin-right: 30px;
        }

        .footer__follow__links {
            display: flex;
            align-items: center;
        }

        .footer__follow__links a {
            display: inline-block;
            margin-right: 15px;
        }

            .footer__follow__links i {
                font-size: 37px;
            }

        .footer__sitemap {
            padding-bottom: 15px;
            margin-bottom: 15px;
            border-bottom: 1px solid #000;
        }
            .footer__sitemap .title {
                margin-right: 40px;
            }
            .footer__sitemap a {
                display: inline-block;
                padding: 5px 15px;
            }

        .copyright {
            font-size: 12px;
            letter-spacing: 1px;
        }
        .footer__logo img {
            padding: 5px;
            height: 65px;
        }
            .contact__info .title {
                margin-top: 8px;
                margin-bottom: 15px;
            }
        .contact__info li {
            margin-bottom: 5px;
            letter-spacing: 1px;
        }
        .contact__info img {
            margin-right: 5px;
        }

@media (max-width: 1211px) {
    .footer__content .footer__block {
        width: 100%;
    }
    .footer__content .footer__block:first-child {
        order: 2;
        margin-top: 20px;
    }
    .footer__block-top {
        order: 2;
    }
    .footer__block-bottom {
        order: 1;
    }
        .footer__sitemap {
            border-bottom: 0;
        }
        .footer__follow {
            justify-content: space-between;
            border-bottom: 1px solid #000;
            padding-bottom: 15px;
            padding-left: 15px;
            padding-right: 15px;
        }
            .footer__follow__title {
                font-size: 15px;
                margin-right: 0;
            }
            .footer__follow__links a {
                margin-left: 3px;
                margin-right: 3px;
            }
            .footer__follow__links img {
                width: 22px;
            }

        .footer .langs {
            margin-left: 0;
        }
        .copyright {
            order: 3;
            margin-top: 15px;
            padding-left: 15px;
            padding-right: 15px;
            text-align: center;
        }

    .footer__logo {
        text-align: center;
        margin-bottom: 20px;
    }
    .contact__info {
        margin-bottom: 20px;
    }
    .footer .contact__info ul {
        display: flex;
        flex-wrap: wrap;
    }
    .footer .contact__info li {
        width: 50%;
    }
    .contact__info .text {
        width: 92%;
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .footer__sitemap ul {
        margin-top: 15px;
    }
    .footer__sitemap a {
        padding: 5px 20px 5px 0;
    }
}

@media (max-width: 576px) {
    .footer .contact__info ul {
        display: block;
        flex-wrap: unset;
    }
    .footer .contact__info li {
        width: unset;
    }
    .footer__sitemap li {
        width: 50%;
    }
    .footer__sitemap a {
        display: block;
        padding: 2px 0;
    }
    .footer__follow__links i {
        position: relative;
        top: 1px;
        font-size: 25px;
    }
}


/* site floats */
.site-floats {
    position: fixed;
    top: 20%;
    right: 0;
    z-index: 999;
}

    .site-floats .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #fff;
        background-color: rgb(255 101 0 / 90%);
        font-size: 16px;
        padding: 10px 20px;
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
        box-shadow: 0 0 30px 3px rgb(0 0 0 / 15%);
        transition: 0.3s;
    }

    .site-floats .item:hover {
        padding-right: 30px;
    }

    .site-floats img {
        width: 50px;
        margin-bottom: 10px;
    }

@media(max-width: 576px) {
    .site-floats {
        top: 80%;
    }

    .site-floats .item {
        padding: 10px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .site-floats img {
        width: 40px;
    }
}



/* site-en */
.site-en {
    font-family: arial, "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", sans-serif; ;
}

.site-en .site__nav-menu > li > a {
    letter-spacing: 0;
}