/* Basic */
body {
    font-family: "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
    color: #000;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6em;
    background-color: #f4f4f4;
}

a {
    color: #000;
}
a:hover {
    color: #000;
    text-decoration: none;
}
ul {
    padding-left: 0;
    margin-bottom: 0;
}
li {
    list-style: none;
}
.heading {
    font-family: "Noto Sans TC", sans-serif;
    font-weight: 700;
    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;
}

/* Layout */
.layout {
    margin-left: 8%;
    margin-right: 8%;
}
.section {
    padding-top: 80px;
    padding-bottom: 80px;
}
    .section__header {
        text-align: center;
        margin-bottom: 40px;
    }
        .section__heading {
            font-size: 36px;
            margin-bottom: 5px;
        }
        .heading__underline {
            display: -webkit-flex;
            display: flex;
            justify-content: center;
        }
            .heading__underline > span {
                width: 50px;
                height: 5px;
                margin-top: 10px;
                margin-bottom: 25px;
            }
            .heading__underline .line-left {
                background-color:#D0D0D0;
            }
            .heading__underline .line-right {
                background-color:#224466;
            }

        .section__subheading {
            font-size: 18px;
        }
        .section__summary {
            font-size: 16px;
            width: 80%;
            margin-left: auto;
            margin-right: auto;
        }

    .section__content {
        position: relative;
    }

.page__flex {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
}

/* page content */
.page__content {
    width: calc(100% - 260px);
}


@media(max-width: 1211px) {
    .page__flex {
        flex-direction: column;
    }
    .page__content {
        width: 100%;
    }
    
}

/* grid */
.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) {
    .layout {
        margin-left: 5%;
        margin-right: 5%;
    }
    .grid-3 .grid__item,
    .grid-2 .grid__item {
        width: 100%;
    }
    .section__summary {
        width: 95%;
    }
}

/* Colors */
.bg-yellow {
    background-color: #EFAB2C;
}
.bg-orange {
    background-color: #224466;
}

/* ==============
    Compontent 
================= */
/* Button */
button {
    border: none;
    cursor: pointer;
}
button:focus {
    outline: none;
}
.button-wrapper.right {
    text-align: right;
}
.button-wrapper.center {
    text-align: center;
}
.button {
    display: inline-block;
    color: #fff;
    background-color: #224466;
    padding: 10px 32px;
    border-radius: 30px;
    font-size: 15px;
    letter-spacing: 1px;
    transition: .3s;
}
.button-light {
    background-color: rgb(244 244 244 / 0.8);
    color: #000;
}
.button-border {
    border: 1px solid #fff;
    font-size: 16px;
    font-weight: 500;
}
.button:hover {
    color: #fff;
    background-color: #1b1412;
}
.button-link {
    display: inline-block;
    margin-top: 10px;
    color: #224466;
    font-size: 13px;
    letter-spacing: 3px;
    transition: .3s;
}
.button-link::after {
    content: url(../images/icons/awesome-long-arrow-alt-right.png);
    position: relative;
    top: -2px;
    left: 4px;
}

.page .button-wrapper {
    margin-top: 80px;
}
.page .button-wrapper.center .button {
    margin-left: 10px;
    margin-right: 10px;
}
.page .button-wrapper .button.disabled {
    cursor: default;
    background-color: #848d96;
}

/* dropdown */
.drop {
    position: relative;
}
.drop__content {
    display: none;
    position: absolute;
}
.drop:hover .drop__content {
    display: block;
}


/* Collapse */
.collapse__content {
    display: none;
    padding-left: 15px;
}
    .collapse__svg {
        display: none;
    }
    .collapse__button {
        display: -webkit-flex;
        display: flex;
        align-items: center;
    }
    .collapse__button.active {
        background-color: #224466;
        color: #fff;
    }
    
    .collapse__item svg {
        width: 16px;
        height: 16px;
        stroke: #333;
        fill: #333;
        transition: .3s;
    }
    .collapse__button:hover svg,
    .collapse__button.active svg {
        stroke: #fff;
        fill: #fff;
    }


/* 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: #ccc;
        border-color: #e5e5e5;
    }

    .pagination .page-item.disabled .page-link svg {
        stroke: #888;
    }
    .pagination .page-item:last-child {
        margin-right: 0;
    }
    .pagination .page-link {
        display: inline-block;
        padding: 4px 11px;
        background-color: #224466;
        border: 1px solid transparent;
        color: #224466;
        font-size: 15px;
        line-height: 21px;
        border-radius: .25rem;
    }
    .pagination .page-link.active {
        background-color:#224466;
        border: 1px solid #224466;
        color: #fff;
    }
    .pagination .page-link svg {
        position: relative;
        top: 1px;
    }
    .pagination .page-link:not(.active) {
        border: 1px solid #224466;
        background-color: transparent;
    }
    .pagination .page-link:not(.active) svg {
        stroke: #224466;
    }
    .pagination .page-quick-link {
        padding: 4px 4px 1px;
    }


/* 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: 5px 10px;
        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: #224466;
            letter-spacing: 2px;
        }
        .page__breadcrumb li:last-child::after  {
            content: "";
        }
        .page__breadcrumb .home-icon {
            color: #224466;
            margin-right: 10px;
        }

/* 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 #224466;
    opacity: 0.9;
}
.swiper-pagination-bullet:focus {
    outline: none;
}
.swiper-pagination-bullet-active {
    background: #224466;
}
.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;
}

/* slick */
.slick-track {
    margin: 0;
}

/* 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 {
        position: relative;
        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;
        }

.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;
    }

.image__box .carousel__content {
    background-color: #fff;
    padding: 35px 30px;
    width: 100%;
    transition: 0.5s;
}
.image__box .carousel__content .title {
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
}

@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-16-9 {
    padding-bottom: 56.25%;
}
.thumb-image-wrapper.ratio-4-3 {
    padding-bottom: 75%;
}
.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;
    }

/* Gallery */
.slider-gallery-wrapper {
    margin-left: -25px;
    margin-right: -25px;
}
    .slider-gallery {
        width: 100%;
        padding: 0 25px;
    }
    .slider-gallery .gallery-top .swiper-container {
        width: 100%;
        height: 100%;
        margin: 0 auto;
    }

    .slider-gallery .swiper-slide-container {
        text-align: center;
        height: 100%;
        margin: auto;
        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }
    
    .slider-gallery .gallery-top {
        height: 480px;
        width: 480px;
        overflow: hidden;
    }
    .slider-gallery .gallery-bottom {
        position: relative;
        width: 480px;
        height: 160px;
        box-sizing: border-box;
        padding: 10px 0;
    }
        .slider-gallery .gallery-bottom .swiper-slide {
            width: 33.33333333%;
		    height: 100%;
            opacity: 0.4;
        }
        .slider-gallery .gallery-bottom .swiper-container {
            width: 100%;
            height: 100%;
        }
        .slider-gallery .gallery-bottom .swiper-slide-active {
            opacity: 1;
        }

        .slider-gallery .swiper-container-horizontal>.swiper-pagination-bullets,
        .slider-gallery .swiper-pagination-custom,
        .slider-gallery .swiper-pagination-fraction {
            bottom: 10px;
        }

        /* .swiper-pagination-bullet {
            background: transparent;
            border: 1px solid #fff;
        } */
        .swiper-pagination-bullet:focus {
            outline: none;
        }
        /* .swiper-pagination-bullet-active {
            background: #fff;
            border: 1px solid transparent;
        } */

        .gallery-bottom  .swiper-button-next,
        .gallery-bottom .swiper-container-rtl .swiper-button-prev {
            top: 50%;
            transform: translateY(-50%);
            right: -35px;
        }
        .gallery-bottom .swiper-button-prev,
        .gallery-bottom .swiper-container-rtl .swiper-button-next {
            top: 50%;
            transform: translateY(-50%);
            left: -35px;
        }
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 12px;
        }

        .custom-pagination {
            width: 100%;
            margin-top: 10px;
        }
            .custom-pagination .swiper-pagination-bullet {
                position: relative;
                border-radius: 0;
                margin-left: 4px;
                margin-right: 4px;
                background-color: #fff;
                width: 9px;
                height: 9px;
            }
            .custom-pagination .swiper-pagination-bullet {
                border-color: transparent;
            }
            .custom-pagination .swiper-pagination-bullet-active {
                background-color: #224466;
            }
            .custom-pagination .swiper-pagination-bullet::before {
                content: "";
                position: absolute;
                top: -4px;
                left: -4px;
                border: 1px solid transparent;
                width: 15px;
                height: 15px;
            }
            .custom-pagination .swiper-pagination-bullet-active::before {
                border-color: #224466;
            }

@media (max-width: 1024px) {
    .gallery-bottom  .swiper-button-next,
    .gallery-bottom .swiper-container-rtl .swiper-button-prev {
        right: 0;
    }
    .gallery-bottom .swiper-button-prev,
    .gallery-bottom .swiper-container-rtl .swiper-button-next {
        left: 0;
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 40px;
    cursor: pointer;
    padding: 4px 6px 0;
    background-color: #213952;
    border-radius: 3px;
    display: none;
    z-index: 99;
}
.back-to-top svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
}

/* ==============
    Animation 
================= */
@keyframes progress-75 {
    0% {
        width: 0;
    }
    100% {
        width: 75%;
    }
}
@keyframes progress-85 {
    0% {
        width: 0;
    }
    100% {
        width: 85%;
    }
}


/* ==============
    Header 
================= */
.header {
    position: relative;
    background-color: rgb(255 255 255 / 0.8);
    z-index: 9999;
    transition: 0.3s;
}
.header.mobile {
    background-color: #000;
}
.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: 5px 10px 10px;
            letter-spacing: 2px;
            color: #919191;
        }

        .site__nav-menu > li.active > a,
        .site__nav-menu > li:hover > a {
            color: #224466;
        }
            .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: #224466;
                display: none;
            }
            .site__nav-menu > li.active > a h4::after,
            .site__nav-menu > li:hover > a h4::after {
                display: block;
            }

    .site__nav-menu .drop__content {
        min-width: 160px;
        margin-left: 10px;
    }
        .site__nav-menu .drop__content li a {
            display: block;
            background-color: #224466;
            color: #fff;
            padding: 8px 16px;
            border-bottom: 1px solid #103860;
            transition: 0.3s;
        }
        .site__nav-menu .drop__content li a:hover {
            background-color: #000;
        }
        .site__nav-menu .drop__content li:last-child a {
            border: none;
        }

    .site__logo {
        padding: 5px;
        margin: 7px 0;
    }
    .site__logo img {
        padding: 8px;
        height: 56px;
    }


/* Mobile Nav */
.mobile__nav {
    display: none;
}
    .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: absolute;
        top: 0;
        left: 0;
        width: 100%;   
        overflow: scroll;
        background: #000;
        display: none;
        padding-top: 80px;
        z-index: -1;
    }
        .mobile-sidebar > ul {
            padding-left: 0;
            margin-top: 20px;
            width: 75%;
            margin-left: auto;
            margin-right: auto;
            padding-bottom: 40px;
        }
            .mobile-sidebar li a {
                display: inline-block;
                padding: 10px;
                width: 100%;
                color: #fff;
                letter-spacing: 2px;
                font-size: 16px;
                font-weight: 100;
                border-top: 1px solid #fff;
            }
            .mobile-sidebar li a.active {
                background-color: #fff;
                color: #000;
            }
            .mobile-sidebar li:first-child a {
                border-top: none;
            }

            .mobile-sidebar .collapse__button {
                display: -webkit-flex;
                display: flex;
                justify-content: space-between;
            }
            .mobile-sidebar .collapse__content {
                margin-top: 8px;
                margin-bottom: 8px;
            }
            .mobile-sidebar .collapse__content a {
                border: none;
                padding: 3px 5px;
            }
            .mobile-sidebar .collapse__item svg {
                position: relative;
                top: 2px;
                width: 16px;
                height: 16px;
                stroke: #fff;
                fill: none;
            }
            .mobile-sidebar li a.active svg {
                stroke: #000;
            }
    
    .logo-mobile-unfold {
        display: none;
    }   
    .header.mobile .logo-mobile {
        display: none;
    }   
    .header.mobile .logo-mobile-unfold {
        display: block;
    }

    .logo-text {
        margin-top: 20px;
        margin-bottom: 20px;
    }

@media (max-width: 1211px) {
    .header {
        position: fixed;
        top: 0;
        width: 100%;
    }
    .mobile__nav {
        display: block;
    }
}
@media (max-width: 576px) {
    .logo-text {
        width: 100%;
    }
}

/* ======= slider ======= */
.home__slider {
    margin-top: -80px;
}
.home__slider .slide {
    position: relative;
    height: 100vh;
}
.home__slider .slide::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.slide__content {
    position: relative;
    display: table;
    max-width: 100%;
    text-align: center;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
}
    .slide__subheading {
        font-size: 24px;
    }
    .slide__heading {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 40px;
    }
    .slide__content p {
        font-size: 18px;
        letter-spacing: 1px;
    }
    .slide__content .button {
        margin-top: 50px;
        margin-left: 10px;
        margin-right: 10px;
    }

@media (max-width: 1211px) {
    .home__slider {
        margin-top: 0;
    }
}
@media (max-width: 576px) {
    .slide__content {
        width: 74%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .slide__subheading {
        font-size: 18px;
        text-align: center;
    }
    .slide__heading {
        font-size: 22px;
        text-align: center;
    }
    .slide__content .button-wrapper {
        text-align: center;
        margin-top: 50px;
    }
    .slide__content .button-wrapper a {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
        width: 130px;
    }
}

/* ======= Home ======= */
/* Home About */
.home__about .grid__item-text {
    background-color: #fff;
    padding: 30px;
}
    .home__about .grid__item-text h4 {
        text-align: center;
    }
    
.home__about-progress {
    margin-bottom: 10px;
    margin-top: 10px;
}
    .progress-wrapper {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .progress-label {
        color: #224466;
        margin-bottom: 10px;
    }
        .progress {
            overflow: unset;
            height: 10px;
        }

        .progress-bar {
            position: relative;
            background-color: #224466;
            border-radius: 25px;
        }
        .progress-animate-75.active {
            animation: progress-75 1.5s ease-in-out forwards;
            animation-timing-function: cubic-bezier(0.61, -0.24, 0.46, 1.03);
        }
        .progress-animate-85.active {
            animation: progress-85 1.5s 0.15s forwards;
            animation-timing-function: cubic-bezier(0.61, -0.24, 0.46, 1.03);
        }
            .progress-bar .point {
                display: -webkit-flex;
                display: flex;
                justify-content: center;
                align-items: center;
                position: absolute;
                top: -13px;
                right: -6px;
                width: 36px;
                height: 36px;
                background-color: #224466;
                border-radius: 50%;
            }

@media(max-width: 576px) {
    .home__about .grid__item-text {
        background-color: transparent;
    }
        .home__about .grid__item-text .grid__item {
            width: 50%;
        }
        .home__about .grid__item-text h4 {
            text-align: left;
        }
}

/* Home Service */
.home__service {
    background-color: #000;
    color: #fff;
}
    .home__service .carousel__content {
        background-color: #224466;
    }
        .home__service .image__box .thumb-image-container {
            position: relative;
            
        }
        .home__service .image__box .thumb-image-container::after {
            content: url(../images/icons/bulb.png);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: 0.3s;
        }
            .home__service .image__box .thumb-image-container .thumb-image {
                transition: 0.3s;
            }
        
        .home__service .button-link {
            color: #fff;
        }
        .home__service .button-link::after {
            content: url(../images/icons/long-arrow-alt-right.png);
        }
        
        .home__service .image__box:hover .thumb-image-container::after {
            opacity: 1;
        }
            .home__service .image__box:hover .thumb-image-container .thumb-image {
                opacity: 0.5;
            }

        .home__service .image__box:hover .carousel__content {
            background-color: #fff;
            color: #000;
        }
        .home__service .image__box:hover .button-link {
            color: #224466;
        }
        .home__service .image__box:hover .button-link::after {
            content: url(../images/icons/awesome-long-arrow-alt-right.png);
        }

        .home__service .service__intro {
            height: 72px;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            white-space: normal;
            margin-bottom: 15px;
        }

/* Home News */
.news__title {
    color: #224466;
}
.news__date {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #fff;
    background-color: #224466;
    padding: 5px 16px;
    font-size: 14px;
    opacity: 0;
    transition: 0.3s;
}

.post .thumb-image-wrapper {
    background-color: #000;
}
    .post .thumb-image {
        transition: 0.3s;
    }

.post .image__box:hover .thumb-image {
    opacity: 0.5;
}
.post .image__box:hover .news__date {
    opacity: 1;
}

.post .image__box:hover .post__content {
    background-color: #EDEDED;
}

@media (max-width: 576px) {

}

/* Home Action */
.home__action {
    position: relative;
    height: 740px;
    background: url(../images/home/action-bg.jpg) center no-repeat;
    background-size: cover;
}
.home__action::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.action__content {
    position: absolute;
    color: #fff;
    font-weight: 500;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
    .action__content .text {
        margin-bottom: 40px;
        line-height: 1.5em;
        font-size: 30px;
    }

@media (max-width: 576px) {
    .home__action {
        height: 360px;
    }
    .action__content {
        text-align: center;
        justify-content: center;
        width: 80%;
    }
}

/* ==============
    Page
==============*/
.page {
    margin-bottom: 80px;
}

.page__banner {
    position: relative;
    height: 590px;
    margin-top: -80px;
}
    .page__banner__content {
        display: -webkit-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 590px;
    }
        .page__banner__title {
            color: #fff;
            font-size: 48px;
            letter-spacing: 5px;
            margin-top: 100px;
            text-align: center;
            width: 100%;
        }

@media (max-width: 576px) {
    .page__banner,
    .page__banner__content {
        height: 100vh;
    }
}

/* ======= Sidebar ======= */
.page__sidebar {
    width: 260px;
    padding-right: 60px;
}
.page__sidebar .heading {
    border-bottom: 1px solid #707070;
    padding-bottom: 10px;
    color: #224466;
}
    .page__sidebar a {
        display: block;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 5px;
    }
    .sidebar__content,
    .page__sidebar a:hover {
        background-color: #224466;
        color:#fff;
    }
    .sidebar__content a {
        color:#90ADC9;
    }
    .sidebar__item .link.active {
        background-color: #224466;
        color:#fff;
    }
        .sidebar__item .link.active svg {
            stroke: #fff;
            fill: #fff;
        }

    .page__sidebar svg {
        position: relative;
        top: 2px;
    }
    .page__sidebar a:hover svg {
        stroke: #fff;
        fill: #fff;
    }
    .sidebar__content a svg {
        stroke: #90ADC9;
        fill: #90ADC9;
    }
        
/* page mobile menu */
.page__mobile__menu {
    width: 100%;
    background-color: #224466;
    border: 1px solid #224466;
    margin-bottom: 30px;
}
.page__mobile__menu .collapse__button {
    position: relative;
    display: block;
    color: #fff;
    text-align: center;
    line-height: 38px;
}

    .page__mobile__menu .collapse__button::after {
        content: url(../images/icons/ionic-ios-arrow-down-w.png);
        position: absolute;
        right: 20px;
        top: -2px;
    }

.page__mobile__menu .collapse__content {
    position: relative;
    text-align: center;
    background-color: #fff;
    color: #224466;
    padding-left: 0;
}

.page__mobile__menu .collapse__content a {
    display: block;
    padding: 3px;
    color: #224466;
    border-bottom: 1px solid #d3d3d4;
    transition: .3s;
}

.page__mobile__menu .collapse__content a:hover {
    color: #404040;
}


/* Page About */
.page__intro {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}
    .page__intro__content {
        display: -webkit-box;
        display: flex;
        width: 100%;
    }
    
    .page__intro__content .block {
        width: 50%;
    }
    .page__intro__content .slide {
        height: 400px;
    }
    .page__intro__content .image__block {
        position: relative;
    }
    

    .page .swiper-button-next,
    .page .swiper-button-prev {
        width: 32px;
        height: 32px;
        background-color: #224466;
        color: #fff;
    }
    .page .swiper-button-next,
    .page .swiper-container-rtl .swiper-button-prev {
        right: 0;
    }
    .page .swiper-button-prev,
    .page .swiper-container-rtl .swiper-button-next {
        left: 0;
    }
    .page .slider .swiper-button-next:after,
    .page .slider .swiper-button-prev:after {
        font-size: 14px;
    }
    .page .swiper-button-next.swiper-button-disabled,
    .page .swiper-button-prev.swiper-button-disabled {
        opacity: 0.7;
    }

    .pull-left {
        padding-left: 40px;
    }
    .pull-right {
        padding-right: 25px;
    }

    .page__section__header {
        margin-bottom: 20px;
    }
        .page__section__heading {
            font-size: 32px;
        }
        .page__section__text {
            margin-bottom: 40px;
        }

    .page__section__header.align-md-center,
    .page__section__header.align-left {
        text-align: left;
    }
        .page__section__header.align-md-center .heading__underline,
        .page__section__header.align-left .heading__underline {
            justify-content: flex-start;
        }

    .page__content .page__section__header {
        margin-bottom: 40px;
    }
    .page__content .grid__item {
        margin-bottom: 40px;
    }
    .page__content .heading {
        text-align: center;
    }

    .page__about .page__section__header {
        margin-bottom: 0;
    }

    .page__about__content {
        margin-top: 80px;
    }
    .page__about__content .grid__item .heading {
        text-align: center;
    }
    .page__about__content .block-image img {
        width: 100%;
    }
    

    /* 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;
    }

/* tabs */
.tabs__content {
    background-color: #fff;
    padding: 30px 15px;
}
    .tabs__menu {
        text-align: center;
        margin-bottom: 20px;
    }
        .tabs__menu a {
            display: inline-block;
            padding: 6px 20px;
            margin: 5px;
            border-radius: 20px;
            color: #fff;
            background-color: #919191;
            letter-spacing: 0.5px;
        }
        .tabs__menu a.active {
            background-color: #224466;
        }
        [data-tab-content] {
            display: none;
        }
        [data-tab-content].active {
            display: flex;
        }

.tab-text {
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 1211px) {
    .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__intro__content .image__block {
        order: 2;
    }

    .page__intro__content .slide {
        height: 275px;
    }
    
    .page__about__content .grid__item {
        width: 100%;
    }
        .page__about__content .block-image img {
           margin-top: 20px;
        }

}
@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__about__content .grid__item {
        padding-left: 0;
        padding-right: 0;
    }
    .page__about .page__section__text {
        text-align: left;
    }
    .page__about .tabs__menu a {
        padding: 6px 12px;
    }
    .page__about .tabs__content {
        background-color: transparent;
        padding-left: 0;
        padding-right: 0;
    }
    .page__section__header.align-md-center {
        text-align: center;
    }
    .page__section__header.align-md-center .heading__underline {
        justify-content: center;
    }
    
}

/* Page Services */
.page__services .slider {
    height: 400px;
}
.page__services .page__section__header {
    text-align: left;
}
.page__services .heading__underline {
    justify-content: flex-start;
}
.page__section {
    margin-bottom: 50px;
}
    .page__services .accordion .card {
        border: none;
        margin-bottom: 20px;
    }
    .page__services .accordion .card-header {
        padding: .5rem 1.25rem;
        background-color: #fff;
    }
    .page__services .accordion .btn-link {
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #224466;
        width: 100%;
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }
    .page__services .btn-link:hover,
    .page__services .btn-link:focus {
        text-decoration: none;
    }

@media (max-width: 576px) {
    .page .layout,
    .page .grid {
        margin-left: 0;
        margin-right: 0;
    }
    .page .carousel__style .grid__item {
        padding: 0;
    }
}

/* Page Product */
.page__product .page__section__header {
    margin-bottom: 0;
}
.page__product .grid__item {
    margin-bottom: 30px;
}
    .product__box {
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        background-color: #fff;
        height: 100%;
    }
    .product__box * {
        transition: 0.3s;
    }
    .product__box .thumb-image {
        background: #000;
    }

        .product__box__content {
            display: -webkit-flex;
            display: flex;
            flex-direction: column;
            padding: 30px 40px;
            flex: 1;
        }
            .product__box__content-title {
                text-align: center;
                color: #224466;
                font-weight: 300;
                margin-bottom: 20px;
            }
            .product__box__content-text {
                margin-bottom: 5px;
            }
            .product__box__content .button-link {
                margin-top: auto;
            }

    .product__box:hover .thumb-image img {
        opacity: 0.5;
    }
    .product__box:hover {
        background-color: #EDEDED;
    }
    

/* Page Product Details */
.product__details {
    padding-right: 50px;
}
.product__intro {
    width: 400px;
    min-width: 400px;
}
.slider-nav .slick-list {
    margin-left: -5px;
    margin-right: -5px;
    overflow: hidden;
}
.slider-nav .slide {
    padding: 5px;
    
}


@media (max-width: 1211px) {
    .page__product .product__content {
        flex-direction: row;
    }
} 
@media (max-width: 768px) {
    .page__product .product__content {
        flex-direction: column;
    }
    .product__details {
        padding-right: 0;
        margin-top: 30px;
        order: 2;
    }
    .product__intro {
        order: 1;
        width: 100%;
    }
} 

/* Page News */
.page__news .post {
    margin-bottom: 30px;
}
    .page__news .post .image__box .post__content {
        padding: 15px;
        width: 100%;
    }

/* Page News Details*/
.banner {
    position: relative;
    margin-bottom: 30px;
}
    .banner:hover .news__date {
        opacity: 1;
    }
    
@media (min-width: 1211px) {
    .page__news .heading__underline {
        justify-content: flex-start;
    }
}  
@media (max-width: 1211px) {
    .page__news .page__section__header {
        text-align: left;
    }
} 
@media (max-width: 576px) {
    .page__news .page__section__header {
        text-align: center;
    }
} 

/* 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: 2px;
}
.contact__form {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    padding-right: 20px;
    
}
    .contact__form .block-form {
        flex: 1;
    }

    .contact__form .block-text {
        display: -webkit-box;
        display: flex;
    }
        .contact__form .contact__info {
            margin-bottom: 40px;
            margin-left: 20px;
        }
            .contact__form .contact__info li {
                flex-wrap: nowrap;
                height: 100px;
            }
            .page__contact .contact__info i {
                margin-right: 5px;
            }
            .contact__form .title {
                font-size: 20px;
                letter-spacing: 2px;
            }

         
    .contact__form input,
    .contact__form textarea {
        width: 100%;
        background-color: rgb(34 68 102 / 0.1);
        border: none;
        padding: 8px 16px;
    }
    .contact__form input:focus,
    .contact__form textarea:focus {
        outline-color: #b2beca;
    }
    .contact__form .input__group {
        margin-bottom: 20px;
    }
        .contact__form .input__group:last-child {
            margin-bottom: 0;
        }

    .contact__form textarea {
        height: 180px;
    }
        .contact__form .button {
            padding: 10px 36px;
        }

    .page__contact .button-wrapper {
        margin-top: 40px;
    }

@media (min-width: 1211px) {
    .page__contact .heading__underline {
        justify-content: flex-start;
    }
} 
@media (max-width: 1024px) {
    .contact__form {
        flex-direction: column;
        padding-right: 0;
        margin-bottom: 40px;
    }
    .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;
    }

}
/* ======= Footer ======= */
.footer {
    padding-top: 60px;
    padding-bottom: 40px;
    color: #fff;
    background-color: #224466;
}
    .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;
        margin-bottom: 50px;
    }
        .footer__block .title {
            font-size: 20px;
        }
        .footer__block-bottom {
            margin-top: auto;
        }
        .footer__block a {
            color: #fff;
        }
        .footer__block-top {
            margin-bottom: 40px;
        }

        /* footer follow */
        .footer__follow__title {
            font-size: 20px;
            margin-right: 50px;
        }
        .footer__follow__links a {
            display: inline-block;
            margin-right: 15px;
        }
        .footer__follow__links img {
            width: 26px;
        }

        .footer__sitemap {
            padding-top: 15px;
        }
            .footer__sitemap .title {
                margin-right: 40px;
            }
            .footer__sitemap a {
                display: inline-block;
                padding: 5px 15px;
            }

        .copyright {
            font-size: 12px;
            letter-spacing: 1px;
            text-align: center;
            margin-top: 40px;
        }
        .copyright a {
            color: #eee;
        }

        .footer__logo {
            margin-bottom: 10px;
        }
            .footer__logo img {
                padding: 5px;
            }
            .footer__logo img.logo-img {
                margin-right: 80px;
            }

        .contact__info .title {
            margin-top: 20px;
            margin-bottom: 12px;
            font-size: 18px;
        }
        .contact__info li {
            margin-bottom: 5px;
            letter-spacing: 1px;
        }
        .contact__info img {
            margin-right: 5px;
        }

@media(max-width: 1199px) {
    .footer__content {
        flex-direction: column;
    }
        .footer__logo {
            margin-bottom: 10px;
            text-align: center;
        }
        .footer__logo img.logo-img {
            margin-right: 0;
            margin-bottom: 20px;
            width: 90%;
        }
        .footer__sitemap {
            align-items: unset;
        }
            .footer__sitemap ul {
                flex-direction: column;
                width: calc(100% - 120px);
                height: 130px;
            }
            .footer__sitemap li {
                width: 100px;
                margin-right: auto;
            }
        
}