/*------------------------------------*\
  SETTINGS
\*------------------------------------*/

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
    color: #504846;
    font-size: 16px;
    font-weight: 300;
    background-color: #fff;
}

body.fixed {
    overflow: hidden;
}


a {
    color: #595757;
    transition: 0.3s;
}

a:hover {
    color: #333;
    text-decoration: none;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

li {
    list-style: none;
}


b, strong {
    font-weight: 700;
}


::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #727171;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 14px;
    opacity: 1; /* Firefox */
}
  
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #727171;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 14px;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #727171;
    font-weight: 400;
    letter-spacing: 1px;
}

.pre {
    white-space: pre-line; 
}


@media (min-width: 576px) {
    html {
        font-size: 16px;
    }
}





/*------------------------------------*\
  UTILITIES
\*------------------------------------*/

.overlay {
    position: relative;
    transition: .3s;
}

.overlay::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1;
}

.overlay-4::before {
    opacity: 0.4;
}

.p-relative {
    position: relative;
}

.o-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.list-style-none {
    list-style: none;
}

.add-shadow {
    box-shadow: 0 4px 15px 0 rgb(175 175 175 / 20%);
}

.img-autofit img {
    max-width: 100%;
    height: auto !important;
}


/**
 *  Width
 */

@media (min-width: 576px) {
    .w-lg-auto {
        width: auto !important;
    }
    
}




/*------------------------------------*\
  FONT
\*------------------------------------*/

.letter-spacing-2 {
    letter-spacing: 2px;
}

.letter-spacing-3 {
    letter-spacing: 3px;
}

.letter-spacing-4 {
    letter-spacing: 4px;
}

.letter-spacing-5 {
    letter-spacing: 5px;
}

.letter-spacing-8 {
    letter-spacing: 8px;
}

.letter-spacing-11 {
    letter-spacing: 11px;
}

.line-height-5 {
    line-height: 1.5em;
}

.line-height-8 {
    line-height: 1.8em;
}

.font-small {
    font-size: 12px;
}

.font-heading {
    font-family: 'Noto Serif TC', 'Microsoft JhengHei', serif;
}



/*------------------------------------*\
  COLORS, BG & BORDER
\*------------------------------------*/

.color-primary {
    color: #00a096;
}

.color-gray-light {
    color: #b5b5b6;
}


.bg-color-primary {
    background-color: #00a096;
}

.bg-color-gray {
    background-color: #f8fafc;
}

.bg-color-light {
    background-color: #fff;
}


.text-muted {
    font-size: 14px;
}

.under-below { 
    -webkit-text-underline-position: under;
    -ms-text-underline-position: below;
    text-underline-position: under; 
}


.ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis-line-2 {
    -webkit-line-clamp: 2;
}

.ellipsis-line-3 {
    -webkit-line-clamp: 3;
}


.writing-mode-v-rl {
    writing-mode: vertical-rl;
}

.writing-mode-v-lr {
    writing-mode: vertical-lr;
}






/*------------------------------------*\
  LAYOUTS
\*------------------------------------*/

.container-wide {
    width: 95%;
    margin-right: auto;
    margin-left: auto;
}

.section {
    padding-top: 60px;
    padding-bottom: 80px;
}

@media (min-width: 1200px) {
    .container-wide {
        max-width: 1440px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

    .section {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}





/*------------------------------------*\
  COMPONENTS
\*------------------------------------*/

/**
 *  Button
 */

.button {
    display: inline-block;
    padding: 8px 40px;
    letter-spacing: 2px;
    font-size: 14px;
    border-radius: 1px;
    border: 1px solid transparent;
    background-color: transparent;
    font-size: 15px;
    font-weight: 300;
    transition: 0.3s;
}

.button-primary {
    background-color: #333;
    color: #fff;
}

.button-primary:hover {
    border-color: #333;
    background-color: transparent;
    color: #333;
}

.button-outline-primary {
    border-color: #333;
    color: #333;
}

.button-outline-primary:hover {
    background-color: #333;
    color: #fff;
}

.button-outline-light {
    border-color: #fff;
    color: #fff;
}

.button-outline-light:hover {
    background-color: #fff;
    color: #333;
}


.button-circle-wrap {
    position: relative;
    width: 220px;
}

    .button-circle {
        position: relative;
        display: flex;
        align-items: center;
        padding-left: 32px;
        width: 80px;
        height: 80px;
        color: #fff;
        font-size: 15px;
        font-weight: 300;
        transition: 0.3s;
        z-index: 1;
    }

    .button-circle::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 80px;
        height: 80px;
        background-color: #8a6d68;
        border-radius: 50%;
        transition: 0.3s;
        z-index: -1;
    }

    .button-circle:hover {
        color: #8a6d68;
    }

    .button-circle:hover::after {
        margin-top: -30px;
        margin-left: -20px;
        padding-left: 60px;
        width: 120px;
        height: 120px;
        background-color: transparent;
        border: 1px solid #8a6d68;
        opacity: 0.8;
    }

    .slim-arrow {
        position: absolute;
        top: 50%;
        left: 40%;
        width: 90px;
        height: 7px;
        border-bottom: 1px solid #8a6d68;
        border-right: 2px solid #8a6d68;
        transform: skewX(50deg);
        transition: 0.3s;
        transition-delay: 100ms;
    }

    .button-circle:hover ~ .slim-arrow {
        width: 110px;
    }



.button-with-arrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .button-primary.button-with-arrow svg {
        stroke: #fff;
    }

    .button-primary.button-with-arrow:hover svg {
        stroke: #333;
    }

    .button-outline-light.button-with-arrow svg {
        stroke: #fff;
    }

    .button-outline-light.button-with-arrow:hover svg {
        stroke: #333;
    }


.button-pool {
    text-align: center;
}

    .button-pool .button {
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 15px;
        width: 240px;
    }


/**
 *  Dropdown
 */


.drop {
    position: relative;
}

.drop__content {
    display: none;
    position: absolute;
    width: 100%;
}

.drop:hover .drop__content {
    display: block;
}

.drop__content a {
    display: block;
    padding: 10px 5px;
    background-color: #ebebeb;
    border-bottom: 1px solid #cacaca;
    font-size: 16px;
    text-align: center;
}

.drop__content a:last-child {
    border-bottom: none;
}

.drop__content a:hover {
    color: #fff;
    background-color: #e35555;
}


/**
 *  Collapse
 */


.collapse__content {
    display: none;
}

.collapse__button.active ~ .collapse__content {
    display: block;
}



/**
 *  Animate
 */

.animate {
    animation-duration: 1s;
}

@keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translate3d(-40px, 0, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
}

@keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translate3d(40px, 0, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
}

@keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translate3d(0, -40px, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
}

@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 40px, 0);
    }
  
    to {
      opacity: 1;
      transform: none;
    }
}

.animate__delay-200ms {
    animation-delay: 200ms;
}

.animate__delay-400ms {
    animation-delay: 400ms;
}

.animate__delay-600ms {
    animation-delay: 600ms;
}

.animate__delay-800ms {
    animation-delay: 800ms;
}

.animate__delay-1s {
    animation-delay: 1s;
}



/**
 *  Image box
 */

.image-box {
    position: relative;
    display: flex !important;
}

    .image-box-outer {
        width: 100%;
        padding-bottom: 100%;
        position: relative;
        overflow: hidden;
        margin: 0;
        line-height: 0;
    }

    .image-box-outer.vertical {
        padding-bottom: 120%;
    }

    .image-box-outer.ratio-3-2 {
        padding-bottom: 66.66%;
    }

    .image-box-outer.ratio-16-9 {
        padding-bottom: 56.25%;
    }

        .image-box-inner {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background: #f1f1f1;
        }

            .image-box-inner img {
                width: 100%;
                height: 100%;
                object-position: 50% 50%;
                object-fit: cover;
            }


.image-hover--zoom img {
    transition: 0.5s;
}

.image-hover--zoom:hover img {
    transform: scale(1.05);
}


.image-box .caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}



/**
 *  icon box
 */

.icon-box .icon {
    width: 40px;
    height: 40px;
    border: 1px solid #919191;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.icon-box__i svg {
    width: 48px;
    height: 48px;
}

.icon-box__title {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
}

    .icon-box__desc {
        font-size: 15px;
        font-weight: 300;
    }



/**
 *  Slider
 */

.hero-slider {
    width: 100%;
    overflow: hidden;
}

    .hero-slider .slide {
        position: relative;
        height: 82vh;
    }

    .hero-slider .slide::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(28, 28, 28, 0.3);
    }

    .slide-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 80%;
        text-align: center;
        color: #fff;
        font-size: 28px;
        letter-spacing: 3px;
    }

    .slide-content h2 {
        font-size: 28px;
    }

@media (min-width: 576px) {
    .hero-slider .slide {
        height: 100vh;
    }
}


/**
 *  carousel
 */

.carousel {
    width: 100%;
    overflow: hidden;
}

    .carousel-control {
        position: absolute;
        width: 200px;
        bottom: -50px;
        left: 50%;
        transform: translate(-50%);
    }

    .carousel-control .swiper-button-prev:after,
    .carousel-control .swiper-container-rtl .swiper-button-next:after,
    .carousel-control .swiper-button-next:after,
    .carousel-control .swiper-container-rtl .swiper-button-prev:after {
        display: none;
    }

    .carousel-slides-count {
        font-size: 14px;
    }
    


/**
 *  page banner
 */

.page-banner {
    position: relative;
    height: 500px;
}



/**
 *  page breadcrumb
 */

.page-breadcrumb {
    margin-top: 10px;
    margin-bottom: 10px;
} 

    .page-breadcrumb li {
        display: inline-block;
        align-items: center;
        vertical-align: middle;
    }

        .page-breadcrumb li a {
            font-size: 15px;
        }

        .page-breadcrumb li:last-child svg {
            display: none;
        }



/**
 * Pagination
 */

 .page__pagination {
    margin-top: 60px;
    margin-bottom: 40px;
}

    .page__pagination .pagination {
        justify-content: center;
        padding-left: 0;
    }

        .pagination .page-item {
            margin-right: 12px;
            list-style: none !important;
        }

        .pagination .page-item:last-child {
            margin-right: 0;
        }

        .pagination .page-link {
            display: inline-block;
            padding: 0;
            color: #222222;
            border: 1px solid #222222;
            font-size: 15px;
            line-height: 30px;
            width: 30px;
            height: 30px;
            border-radius: 1px !important;
            text-align: center;
        }

        .pagination .page-link:hover {
            background-color: #222222;
            color: #fff;
            opacity: 0.8;
        }

        .pagination .page-link.active {
            background-color: #222222;
            color: #fff;
        }

        .pagination .page-link svg {
            position: relative;
            top: -3px;
            stroke: #626262;
            stroke-width: 1.5;
            width: 22px;
            height: 22px;
        }

        .pagination .page-item .page-quick-link {
            background-color: #efefef;
            border-color: #efefef;
        }

        .pagination .page-item .page-quick-link svg {
            stroke: #9a9a9a;
        }




/**
 *  Back to Top
 */

.back-to-top {
    position: fixed;
    bottom: 65px;
    right: 30px;
    cursor: pointer;
    display: none;
    background-color: #eaeaea;
    width: 40px;
    line-height: 40px;
    text-align: center;
    transition: 0.3s;
}

    .back-to-top svg {
        position: relative;
        top: -3px;
        transition: 0.3s;
    }

.back-to-top:hover {
    background-color: #666;
}

.back-to-top:hover svg {
    stroke: #fff;
}



/**
 *  Header
 */

.header {
    position: fixed;
    top: 0;
    padding-left: 5%;
    padding-right: 5%;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 0 30px 1px rgb(29 29 29 / 10%);
}

    .site-top {
        text-align: right;
    }

    .site-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: 0.3s;
    }

        .site-nav .site-logo img {
            height: 40px;
            margin-right: 15px;
        }

        .site-nav .site-logo-subtext {
            font-size: 12px;
            font-weight: 400;
            letter-spacing: .5px;
            line-height: 1.4em;
        }

        .site-logo a {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 2px;
            line-height: 1.2em;
            padding-top: 10px;
            padding-bottom: 10px;
        }

        body:not(.site-en) .site-logo a {
            font-size: 32px;
        }

        .site-menu {
            display: flex;
        }

            .site-menu .item > a {
                display: flex;
                align-items: center;
                justify-content: center;
                height: 60px;
                padding-left: 5px;
                padding-right: 5px;
                font-size: 15px;
                letter-spacing: 2px;
                font-weight: 300;
            }

           

            .site-menu .item > a:hover,
            .site-menu .item.drop.active > a {
                opacity: 0.8;
                background-color: #151515;
                border-color: #151515;
                color: #fff;
            }

            .site-menu .item.site-langs > a {
                letter-spacing: 1px;
            }

            .site-menu .item.site-langs > a svg {
                margin-right: 3px;
            }

            .site-menu .item.site-langs:hover svg path {
                fill: #fff;
            }

            .site-menu .item.site-langs .current-lang {
                font-size: 14px;
            }

    
@media (min-width: 991px) {
    .site-logo a {
        padding-top: 0;
        padding-bottom: 0;
    }

    .site-logo .logo {
        height: 32px;
    }
}

@media (min-width: 1100px) {
    .site-menu .item > a {
        padding-left: 10px;
        padding-right: 10px;
    }
}


@media (min-width: 1280px) {
    .site-menu .item > a {
        padding-left: 22px;
        padding-right: 22px;
        font-size: 16px;
    }
}

@media (min-width: 1365px) {
    .site-menu .item > a {
        font-size: 17px;
        letter-spacing: 4px;
    }
}



/**
 *  Mobile Nav
 */

.mobile-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
}

.sidebar-toggle {
    transition: 0.3s;
}

    .toggle-icon {
        position: relative;
        width: 22px;
        height: 14px;
        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: 2px;
            width: 100%;
            background-color: #525252;
            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: 7px;
            -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: 14px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }


        .sidebar-toggle.open {
            background-color: #fff;
            top: 0;
            right: 0;
        }

        .sidebar-toggle.open .toggle-icon span {
            background-color: #afafaf;
        }

        .sidebar-toggle.open .toggle-icon span:nth-child(1) {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
            top: -1px;
            left: 4px;
        }
            
        .sidebar-toggle.open .toggle-icon span:nth-child(2) {
            width: 0%;
            opacity: 0;
        }
            
        .sidebar-toggle.open .toggle-icon span:nth-child(3) {
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
            top: 14px;
            left: 4px;
        }
    

.slide-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #fff;
    opacity: 0;
    transition: .5s;
    z-index: 99;
    pointer-events: none;
}

    .slide-sidebar > ul {
        padding-left: 0;
    }

        .slide-sidebar ul > li > a {
            display: inline-block;
            padding: 10px 40px;
            width: 100%;
            color: #333;
            letter-spacing: 2px;
            font-size: 18px;
            text-align: center;
            margin-bottom: 10px;
        }


.slide-sidebar.active {
    opacity: 1;
    height: 100vh;
    pointer-events: initial;
    overflow: auto;
}


.mobile-nav {
    position: relative;
}

    .mobile-nav-banner {
        width: 100%;
        height: 100vh;
    }

    .mobile-nav a {
        display: inline-block;
        padding: 10px 40px;
        width: 100%;
        color: #333;
        letter-spacing: 2px;
        font-size: 18px;
        text-align: center;
    }


.mobile-nav-footer {
    position: absolute;
    left: 5%;
    bottom: 80px;
}

    .mobile-nav-footer .logo {
        width: 60px;
        opacity: .5;
    }



/**
 *  side menu
 */

 .side-menu {
    width: 100%;
}

    .side-menu ul {
        padding-left: 0;
    }

        .side-menu a {
            display: block;
            padding: 7px 10px;
            font-size: 15px;
            color: #5c5c5c;
            border-bottom: 1px solid #e8e9ea;
        }
        
        .side-menu a:hover {
            color: #e35555;
        }

        .side-menu .layer-1 > a.active {
            color: #ffffff;
            background-color: #e35561;
        }

        .side-menu .layer-1 > a.active svg {
            stroke: #fff;
        }

        .aside-label {
            color: #8D8D8D;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .side-menu .collapse__button {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .side-menu .collapse__content a.active {
            background-color: #eee;
        }

        .side-menu .collapse__button ~ .collapse__content a {
            padding-left: 24px;
        }

            .side-menu a > svg {
                display: none;
            }

            .side-menu .collapse__button > svg {
                display: inline-block;
            }


        .mobile-menu > ul > li a {
            border-bottom: 1px solid #e8e8e8;
            margin-bottom: 0;
            padding: 12px 40px;
        }

        .mobile-menu .collapse__button {
            position: relative;
        }

        .mobile-menu .collapse__button.active {
            color: #ffffff;
            background-color: #e35561;
        }

        .mobile-menu .collapse__button.active svg path {
            fill: #fff;
        }

        .mobile-menu .collapse__button > i {
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            font-size: 13px;
        }
        

        .mobile-menu .collapse__content {
            background-color: #f1f1f1;
        }
  

@media(min-width: 991px) {  
    .side-menu {
        width: 230px;
    }

    .side-menu.go-down {
        margin-top: 140px;
    }

    .mobile-toggle {
        display: none;
    }
}




/**
 *  page mobile menu
 */

 
 .page-mobile-menu a {
    position: relative;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
}

.page-mobile-menu i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
} 

.page-mobile-menu .menu {
    text-align: center;
    background-color: #fafafa;
}

.page-mobile-menu  .menu > li {
    border-bottom: 1px solid #ddd;
}

.page-mobile-menu > .collapse__item > .collapse__button {
    display: block;
    border: 1px solid #909090;
    text-align: center;
}

.page-mobile-menu > .collapse__item > .collapse__content {
    border: 1px solid #909090;
    border-top: none;
}

.page-mobile-menu .menu .collapse__item.open {
    padding-bottom: 10px;
}

.page-mobile-menu .menu .collapse__button.active {
    background-color: #efefef;
}




/**
 *  Post
 */

.inline-post {
    display: flex;
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

    .inline-post-date {
        margin-right: 40px;
    }


.post-info {
    margin-top: 20px;
}

    .post-date {
        font-size: 15px;
    }

    .post-listing .post-title {
        margin-top: 10px;
        margin-bottom: 15px;
        font-size: 20px;
    }

    .post-summary {
        font-size: 14px;
    }


/**
 *  Product
 */
 
.product .product-title {
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    text-align: center;
}


.p-slider-nav .image-box {
    cursor: pointer;
}

.p-slider-nav .slick-prev:before,
.p-slider-nav .slick-next:before {
    color: rgb(145, 145, 145);
}

.p-slider-nav .slick-track {
    margin-left: unset;
}

.p-slider-nav .slick-prev {
    left: -4px;
}

.p-slider-nav .slick-next {
    right: -4px;
}

@media (min-width: 576px) {
    .p-slider-nav .slick-prev {
        left: -15px;
    }
    
    .p-slider-nav .slick-next {
        right: -15px;
    }
    
    
}



/**
 *  Ad
 */

.ad {
    position: relative;
    height: 66vh;
    z-index: 1;
}

.ad-full {
    height: 100vh;
}

.ad-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 28, 28, 0.3);
    z-index: -1;
}

    .ad-card {
        position: absolute;
        top: 50%;
        right: unset;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        width: 420px;
        max-width: 85%;
        font-size: 15px;
    }

    .ad-card.left {
        left: 20%;
    }

    .ad-card.right {
        right: 0;
    }

        .ad-card .button {
            width: 160px;
        }

    .ad-heading {
        font-size: 20px;
        margin-bottom: 10px;
    }

@media (min-width: 576px) {
    .ad-card {
        top: 50%;
        transform: translateY(-50%);
    }

    .ad-card.right {
        right: 20%;
    }
}    



/**
 *  About
 */

.page-about {
    font-size: 18px;
    line-height: 2.3;
}

.about-feature {
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-mission {
    position: relative;
} 

.about-mission__image {
    position: relative;
}

.about-mission__image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(30deg, rgba(255, 255, 255, 0)0%, rgba(255, 255, 255, 0.9)100%);
    background: -moz-linear-gradient(30deg, rgba(255, 255, 255, 0)0%, rgba(255, 255, 255, 0.9)100%);
    background: -webkit-linear-gradient(30deg, rgba(255, 255, 255, 0)0%, rgba(255, 255, 255, 0.9)100%);
    background: -o-linear-gradient(30deg, rgba(255, 255, 255, 0)0%, rgba(255, 255, 255, 0.9)100%);

}

    .about-mission__text {
        position: relative;
        left: 0;
        top: 0;
        width: 500px;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
    }
    

@media (min-width: 576px) {
    .about-mission__text {
        position: absolute;
        top: 35%;
        left: 50%;
        margin-top: 0;
    }
}


/**
 *  Service
 */

.service {
    position: relative;
}

.service-item {
    margin-bottom: 120px;
}

.service-item__col {
    border-radius: 2px;
}

    .service-item__content {
        background-color: #f7f7f7;
        padding: 120px 60px;
    }

    .service-item__title {
        font-size: 36px;
        margin-bottom: 15px;
    }



@media (min-width: 991px) {
    .service-item__content {
        margin-top: 60px;
        margin-left: -50px;
        background-color: #fff;
        box-shadow: 0 8px 20px 1px rgb(138 138 138 / 20%);
    }

    .service.reverse .service-item__content {
        margin-left: 0;
        margin-right: -50px;
    }

    .service:nth-child(even)::after {
        content: "";
        position: absolute;
        top: -60%;
        left: -50%;
        background-color: #f7f7f7;
        width: 200%;
        height: 210%;
        z-index: -1;
    }
}



/**
 *  Contact
 */

.label {
    font-size: 15px;
}


/**
 *  Footer
 */

.footer {
    background-color: #fafafa;
    padding-top: 60px;
    padding-bottom: 30px;
    text-align: center;
}

    .footer-logo img {
        height: 80px;
    }

        .footer-menu {
            margin-top: 40px;
            margin-bottom: 40px;
            flex-shrink: 0;
        }

        .footer-menu > li > a {
            position: relative;
            display: inline-block;
            padding: 5px 10px 10px;
            font-size: 15px;
        }


        .contact-info .icon {
            display: inline-block;
            width: 20px;
            text-align: center;
            margin-right: 5px;
            margin-bottom: 5px;
        }


        .contact-info .logo-icon {
            width: 24px;
            height: 24px;
            object-fit: contain;
            margin-right: 5px;
            object-fit: contain;
        }

        .contact-info .logo-text {
            font-size: 22px;
        }
    
    .copyright {
        font-size: 12px;
        text-align: center;
        margin-top: 40px;
    }


    .social-media a {
        color: #7d7d7d;
        font-size: 26px;
        margin-right: 8px;
        margin-left: 8px;
    }

    .social-media .social-facebook:hover {
        color: #1877f2;
    }

    .social-media .social-instagram:hover {
        color: #c70079;
    }

    .social-media .social-youtube:hover {
        color: #f70000;
    }

    .social-media .social-line:hover {
        color: #06c152;
    }


@media (min-width: 576px) {
    .footer {
        text-align: left;
    }

        .footer-content {
            display: flex;
            justify-content: space-around;
            width: 80%;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-menu {
            margin-top: 0;
            margin-bottom: 0;
        }

        
        .contact-info .item {
            max-width: 330px;
            display: flex;
            justify-content: flex-start;
        }

        .contact-info .icon {
            flex-shrink: 0;
        }

        .social-media a {
            font-size: 18px;
            margin-right: 5px;
            margin-left: 5px;
        }
}

@media (min-width: 576px) {
    .footer-content {
        width: 60%;
    }
}



/*------------------------------------*\
  PAGES CONTENT
\*------------------------------------*/

.section-heading {
    letter-spacing: 3px;
    font-weight: 700;
}

.section-heading.underline--s {
    position: relative;
    margin-bottom: 15px;
}

.section-heading.underline--s::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: #b7b7b7;
}


/**
 *  Home
 */


.h__about {
    font-size: 18px;
    line-height: 2.3;
} 

.h__product-item {
    letter-spacing: 1px;
    border-radius: 10px;
    overflow: hidden;
}

    .h__product .product-title {
        font-size: 20px;
    }



.image-card__subheading {
    font-size: 14px;
    margin-top: 15px;
}

.image-card__heading {
    margin-top: 15px;
    margin-bottom: 15px;
}

.image-card__summary {
    font-size: 15px;
}

.h__post-content {
    display: flex;
}




/**
 *  Page
 */

.location-group {
    padding-top: 120px;
    padding-bottom: 80px;
    border-bottom: 1px solid #eee;
}

    .location-info {
        font-size: 18px;
    }

        .location-info .title {
            font-size: 24px;
            margin-bottom: 10px;
        }

    .map {
        margin-bottom: 10px;
    }

@media(min-width: 576px) {
    .location {
        display: flex;
        align-items: flex-start;
    }

        .location-info {
            margin-left: 30px;
        }
}




/*------------------------------------*\
  Stie EN
\*------------------------------------*/

.site-en .site-menu .item > a {
    letter-spacing: 1px;
}

.site-en .button {
    letter-spacing: 1px;
}