/**
 * CONTENTS
 *
 * SETTINGS
 * Global...............Globally-available variables and config.
 *
 *
 *
 * LAYOUTS
 * Container............Container width.
 *
 *
 *
 * COMPONENTS
 * Buttons..............Button elements.
 * Page-head............The main page header.
 * Page-foot............The main page footer.
 * 
 *
 *
 * PAGES CONTENT
 *
 *
 */



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

html {
    scroll-behavior: smooth;
    font-size: 12px;
}

body {
    font-family: fieldwork, "Microsoft JhengHei", "微軟正黑體", sans-serif;
    color: #101538;
    font-size: 16px;
    font-weight: 300;
}

body.fixed {
    overflow: hidden;
}


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

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

b, strong {
    font-weight: 700;
}



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


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






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

.overlay {
    position: relative;
}

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

.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 2px 5px 1px rgb(210 210 210 / 60%);
}

.img-fluid-all img,
.img-fluid-all input[type="image"] {
    max-width: 100%;
    height: auto !important;
}


.label-badge {
    display: table;
    color: #fff;
    background-color: #101538;
    border-radius: 20px;
    padding: 3px 18px;
    font-size: 16px;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #707070;
}

.with-divider-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #707070;
    opacity: 0.8;
}

.height-100 {
    height: 100%;
}

.word-break-all a {
    word-break: break-all;
}



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

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

.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;
}


.text-2em {
    font-size: 2em;
    line-height: 1.2em;
}

.text-1-2em {
    font-size: 1.2em;
}

.text-1-1em {
    font-size: 1.1em;
}



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

.font-custom {
    font-family: din-2014,"Microsoft JhengHei", sans-serif;
    font-weight: 400;
}

.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;
}

.highlight {
    font-size: 60px;
    color: #101538;
}

.highlight.green {
    color: #04d3bf;
}

.highlight.blue {
    color: #12bee0;
}

.highlight.grey {
    color: #999AA3;
}






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

.color-primary {
    color: #101538;
}

.color-secondary {
    color: #12BEE0;
}

.color-tertiary {
    color: #003B90;
}


.color-green {
    color: #04d3bf !important;
}

.color-blue {
    color: #12bee0 !important;
}

.color-grey {
    color: #999AA3 !important;
}


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


.bg-color-primary {
    background-color: #101538;
}

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

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




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

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

.section-heading {
    display: flex;
    align-items: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.block-label {
    display: flex;
    align-items: center;
}

    .block-label .icon {
        margin-right: 5px;
    }



@media (min-width: 1200px) {
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .container-wide {
        max-width: 1440px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
}






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

/**
 *  Button
 */

button {
    background-color: transparent;
    border: none;
}

.button {
    display: inline-block;
    padding: 5px 35px;
    border-radius: 25px;
    border: 1px solid transparent;
    background-color: transparent;
    transition: 0.3s;
    cursor: pointer;
    font-size: 16px;
}


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

.button-primary:hover {
    background-color: #374e73;
    border-color: #374e73;
    color: #fff;
}


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

.button-outline-primary:hover,
.button-outline-primary.active {
    background-color: #101538;
    border-color: #101538;
    color: #fff;
}

.button-rounded {
    border-radius: 25px;
}


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

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


.button-gray {
    background-color: #626262;
    border-color: #626262;
    color: #fff;
}

.button-gray:hover {
    background-color: #3a3a3a;
    border-color: #3a3a3a;
    color: #fff;
}


.button-pool {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .button-pool .button {
        width: 48%;
        padding: 5px;
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
    }

@media (min-width: 768px) {
    .button-pool {
        flex-wrap: nowrap;
        justify-content: center;
        margin-left: -8px;
        margin-right: -8px;
    }

        .button-pool .button {
            width: 250px;
            padding: 8px 5px;
            margin-left: 8px;
            margin-right: 8px; 
        }
}



/**
 *  Dropdown
 */


.drop {
    position: relative;
}

.drop__content {
    display: none;
    position: absolute;
    top: 40px;
    padding: 0;
    background-color: #f7f7f7;
    list-style: none;
    box-shadow: 0 2px 5px 1px rgb(210 210 210 / 60%);
}

    .drop__content a {
        display: block;
        width: 120px;
        padding-top: 8px;
        padding-bottom: 8px;
        padding: 8px 20px;
        border-bottom: 1px solid #eee;
    }


.collapse__content {
    display: none;
}

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




/**
 *  Animate
 */

.animate {
    animation-duration: 3s;
}

@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 Container
 */

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

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

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

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

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

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

            .image-box-inner img.object-fit-contain {
                object-fit: contain;
            }


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

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

.image-hover--shrink:hover img {
    transform: scale(0.99);
}





/**
 *  Breadcrumb
 */

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

.page-breadcrumb ul {
    padding-left: 0;
}

    .page-breadcrumb li {
        display: inline-block;
    }

    .page-breadcrumb .item {
        font-size: 15px;
        color: #101538;
    }

    .page-breadcrumb .item:hover {
        color: #678EA9;
    }

    .page-breadcrumb .item::after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f0da";
        margin-left: 6px;
        margin-right: 4px;
        color: #626262;
    }

    .page-breadcrumb li:last-child .item::after {
        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: #101538;
            border: 1px solid #101538;
            font-size: 16px;
            line-height: 30px;
            width: 30px;
            height: 30px;
            border-radius: 50% !important;
            font-family: din-2014,"Microsoft JhengHei", sans-serif;
            text-align: center;
        }

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

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

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

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

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



/**
 *  slick
 */

.slick-arrow {
    width: 24px;
    height: 24px;
    z-index: 1;
}

.slick-arrow:before {
    display: block;
    width: 24px;
    height: 24px;
}

.hero-slider .slick-prev:before {
    content: url(../images/icons/arrow-prev-w.svg);
}

.hero-slider .slick-next:before {
    content: url(../images/icons/arrow-next-w.svg);
}


.hero-slider .slick-prev {
    left: 10%;
}

.hero-slider .slick-next {
    right: 10%;
}


.carousel .slick-arrow:before {
    background-color: #101538;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    padding-top: 1px;
}

.carousel .slick-prev {
    left: -45px;
}

.carousel .slick-prev:before {
    content: url(../images/icons/chevron-left.svg);
    padding-right: 2px;
}

.carousel .slick-next {
    right: -45px;
}

.carousel .slick-next:before {
    content: url(../images/icons/chevron-right.svg);
    padding-left: 2px;
}

.carousel .slick-dots {
    bottom: -60px;
}



/**
 *  Site Hero
 */

.site-hero {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

    .hero-slider {
        position: relative;
        width: 100%;
        height: calc(100vh - 80px);
    }

    .hero-slider .slide {
        position: relative;
    }

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

        .hero-slider .slide-content {
            display: flex;
            align-items: flex-end;
            color: #fff;
            font-weight: 600;
            height: calc(100vh - 80px);
        }

            .site-hero__content {
                display: flex;
                flex-direction: column;
                margin-bottom: 30%;
            }

            .site-hero__title {
                font-size: 36px;
                font-weight: 700;
                line-height: 1em;
                margin-top: 40px;
                margin-bottom: 20px;
            }

            .site-hero__text {
                font-size: 25px;
                line-height: 1.3em;
            }

            .site-hero__button {
                width: 100%;
                color: #fff;
                background-color: #04d3bf;
                border-radius: 30px;
                font-size: 20px;
                text-align: center;
                padding: 12px 15px;
                margin-top: 40px;
                font-weight: 400;
            }

            .site-hero__button:hover {
                color: #fff;
                background-color: #12bee0;
            }

        .hero-slider .slick-dots {
            bottom: 0;
        }

@media (min-width: 991px) {   
    .hero-slider,
    .hero-slider .slide-content {
        height: calc(100vh - 110px);
    }

    .hero-slider .slide-content {
        align-items: center;
    }

    .site-hero__button {
        width: 445px;
    }

    .site-hero__content {
        margin-bottom: 0;
    }

}

@media (min-width: 576px) {
    .site-hero__title {
        font-size: 45px;
        margin-top: 0;
    }

    .site-hero__button {
        font-size: 23px;
        padding: 15px 35px 9px;
    }

    .hero-slider .slick-dots {
        bottom: 20px;
    }
}



/**
 *  input
 */


input:focus {
    outline: none;
}

.input-field {
    background-color: transparent;
    border: 1px solid #707070;
    height: 34px;
    border-radius: 0;
}

.form-control:focus {
    border-color: #678ea9;
    box-shadow: 0 0 0 0.2rem rgb(103 142 169 / 35%);
}


.required {
    color: rgb(243, 49, 49);
}


/* radio button & checkbox */

.styled-check {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
.styled-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.styled-check .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}
  

.styled-check:hover input ~ .checkmark {
    background-color: #ccc;
}
  

.styled-check input:checked ~ .checkmark {
    background-color: #101538;
}
  

.styled-check .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
  
.styled-check input:checked ~ .checkmark:after {
    display: block;
}
  
.styled-check .checkmark:after {
    left: 10px;
    top: 5px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}



/**
 *  Carousel
 */

.slick-dots li {
    margin: 0 2px;
}

.slick-dots li,
.slick-dots li button {
    width: 30px;
    height: 10px; 
    padding: 0;
}

.slick-dots li button:before {
    content: '';
    background-color: transparent;
    border: 1px solid #a0a9b5;
    width: 30px;
    height: 8px;
    border-radius: 3px;
    opacity: .8;
}
 
.slick-dots li.slick-active button:before {
    background-color: #101538;
    border-color: #101538;
}

.site-hero .slick-dots li.slick-active button:before {
    background-color: #fff;
    border-color: #fff;
}




/**
 *  Back to Top
 */

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    display: none;
    transition: 0.3s;
}

    .back-to-top img {
        transition: 0.3s;
    }

    .back-to-top:hover img {
        opacity: 0.8;
    }


@media (min-width: 576px) {
    .back-to-top {
        bottom: 40px;
        right: 40px;
    }
}




/**
 *  Header
 */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.site-top {
    position: relative;
    height: 30px;
    font-size: 14px;
    background-color: #fff;
}

    .site-top .social-media {
        display: flex;
        align-items: center;
        height: 30px;
    }

        .site-top .social-media a {
            margin-left: 10px;
        }

        .site-top .social-media a:hover {
            opacity: 0.8;
        }

            .site-top i {
                font-size: 15px;
                margin-left: 3px;
                margin-right: 3px;
            }


.site-logo img {
    height: 42px;
}


.site-nav {
    position: relative;
    background-color: #101538;
    border-bottom: 1px solid #20254b;
}

.site-nav-wrapper {
    height: 80px;
}

.site-menu {
    margin-bottom: 0;
}

    .site-menu .item {
        position: relative;
        margin-left: 40px;
        font-weight: 500;
        letter-spacing: 2px;
    }

    .site-menu .item a {
        color: #fff;
        font-size: 18px;
    }

    .site-menu .item a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0;
        height: 3px;
        background-color: #fff;
        opacity: 0;
        transition: 0.3s;
    }

    .site-menu .item a:hover::after,
    .site-menu .item a.active::after  {
        width: 100%;
        opacity: 1;
    }
    




/**
 *  Mobile Nav
 */

 .mobile-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    width: 34px;
    transform: translateY(-50%);
    margin-right: 16px;
    font-size: 20px;
    cursor: pointer;
}


.mobile-sidebar {
    position: fixed;
    top: -100%;
    width: 100%;
    height: auto;
    overflow: scroll;
    background-color: rgb(0 0 0 / 75%);
    padding-top: 80px;
    transition: .3s;
    z-index: -1;
}


.mobile-sidebar.active {
    top: 0;
}


.mobile-sidebar .content {
    padding: 30px;
    width: 66%;
    margin-left: auto;
    margin-right: auto;
}



.mobile-menu {
    padding-left: 0;
    text-align: center;
}


    .mobile-menu .item > a {
        display: block;
        color: #fff;
        border-bottom: 1px solid #A7A7A7;
        padding-bottom: 12px;
        padding-top: 12px;
    }

    .mobile-menu .item:last-child > a {
        border-bottom: none;
    }

    
    
@media (min-width: 576px) {
    .site-logo img {
        height: 50px;
    }
}





/**
 *  side menu
 */

.side-menu {
    width: 100%;
}

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

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


        .side-menu a {
            display: block;
            padding: 7px 20px;
            font-size: 16px;
            color: #fff;
            border-bottom: 1px solid #fff;
            background-color: #999AA3;
        }
        
        .side-menu .layer-1 > a {
            background-color: #3E425C;
        }

        .side-menu .layer-2 a.active,
        .side-menu .layer-2 a:hover {
            background-color: #04d3bf;
        } 

        .side-menu .layer-3 > a {
            background-color: #f4f4f4;
            color: #6e6e6e;
            padding-left: 40px;
        }


        .solution-details .side-menu .layer-1 > a {
            background-color: #999AA3;
        }
        
        .solution-details .side-menu .layer-1 > a.active {
            background-color: #3E425C;
        }

        .side-menu .layer-1 > a:hover {
            background-color: #12BEE0;
        }
       

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

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

        .side-menu .collapse__button::after {
            content: url(../images/icons/arrow-down.svg);
            position: absolute;
            top: 48%;
            right: 15px;
            transform: translateY(-50%);
        }

  

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

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




/**
 *  float
 */

.float {
    position: fixed;
    right: -300px;
    bottom: 15%;
    display: flex;
    transition: 0.3s;
}

.float.active {
    right: 0;
}

    .float-button {
        writing-mode: vertical-lr;
        transform: rotate(180deg);
        transform-origin: center;
        background-color: #12BEE0;
        border-bottom-right-radius: 10px;
        border-top-right-radius: 10px;
        padding: 0 5px;
        height: 140px;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .float-button:hover {
        color: #fff;
        background-color: #3fc3dd;
    }

    .float-content {
        width: 300px;
        font-size: 18px;
        background-color: #fff;
        padding: 30px 30px 30px 15px;
    }

        .float-content a:hover {
            color: #333;
        }

        .float-content .list i {
            font-size: 22px;
            margin-right: 12px;
        }

    .float .button--sidebar-close {
        position: absolute;
        top: 10px;
        right: 10px;
    }

@media (min-width: 576px) {
    .float {
        right: -340px;
    }
        
        .float-content {
            width: 340px;
            padding: 30px 40px 30px 25px;
        }
}


/**
 *  video
 */

.video__container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

    .video {
        position: relative;
        padding-bottom: 56.25%;
        overflow: hidden;
    }

    .video iframe{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }




/**
 *  Post
 */


.post {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 15px;
    height: 100%;
    transition: 0.3s;
}

.post .image-box {
    flex-shrink: 0;
}

.post-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .post-header {
        /* display: flex; */
        margin-top: 15px;
    }


        .post-date {
            width: 50px;
            color: #fff;
            text-align: center;
            font-size: 24px;
            flex-shrink: 0;
            line-height: 1.3em;
        }

            .post-date .month {
                background-color: #C9C9C9;
                border-top-left-radius: 5px;
                border-top-right-radius: 5px;
            }

            .post-date .date {
                background-color: #535353;
                border-bottom-left-radius: 5px;
                border-bottom-right-radius: 5px;
            }

        .post-title {
            line-height: 1.3em;
            height: 62px;
            color: #101538;
            font-weight: 600;
            text-align: center;
            margin-bottom: 0;
        }

        .post-summary {
            font-size: 18px;
            margin-bottom: 30px;
        }


.post:hover {
    box-shadow: inset 0 0 0 6px #04d3bf;
}

    .post:hover .button {
        background-color: #04d3bf;
        border-color: #04d3bf;
    }

.slick-slide:nth-child(even) .post:hover {
    box-shadow: inset 0 0 0 6px #12BEE0;
}

    .slick-slide:nth-child(even) .post:hover .button {
        background-color: #12BEE0;
        border-color: #12BEE0;
    }



@media (min-width: 576px) {
    .post-listing .carousel .slick-dots {
        opacity: 0;
    }
}    

.slick-track {
    min-width: 100% !important;
}

.post-listing .events .post-summary {
    height: 180px;
}

.post-details .post-title {
    margin-left: 0;
    color: #101538;
    font-size: 36px;
}

.post-details .post-date {
    color: #12BEE0;
    font-size: 24px;
    font-weight: 700;
}



/**
 *  product
 */


.product {
    display: flex;
    flex-direction: column;
    border: 8px solid #427B85;
    transition: 0.3s;
}

.product:nth-child(odd) {
    border-color: #3E425C;
}

.product:nth-child(even) {
    border-color: #999AA3;
}

    .product .image-box {
        flex-shrink: 0;
        width: 100%;
    }

    .product .product-content {
        flex-grow: 1;
        border-left: none;  
        padding: 30px;
        font-size: 18px;
        transition: 0.3s;
    }

        .product .product-name a {
            margin-bottom: 0;
            color: #101538;
            font-size: 25px;
            font-weight: 700;
        }

        .product .product-name a:hover {
            color: #101538;
        }

.product-details .side-menu {
    margin-top: 30px;
}



@media (min-width: 991px) {
    .product-details .side-menu {
        margin-top: 100px;
    }

    .product {
        flex-direction: row;
    }

        .product .image-box {
            width: 245px;
        }

        .product:nth-child(odd) .product-content {
            border-left: 8px solid #3E425C;
        }
        
        .product:nth-child(even) .product-content {
            border-left: 8px solid #999AA3;
        }
        
}


.product:hover {
    border-color: #04d3bf;
}


.product:hover .product-content {
    border-left: 8px solid #04d3bf;
}



/**
 *  Footer
 */

.footer {
    background-color: #101538;
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer .social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.footer .social-media a {
    margin-left: 15px;
    margin-right: 15px;
}

.footer-contact {
    color: #fff;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

    .footer-contact-info {
        display: flex;
        flex-wrap: wrap;
        font-size: 15px;
        margin-top: 20px;
    }

        .footer-contact-info .item {
            display: flex;
            align-items: center;
            margin-right: 27px;
            margin-bottom: 10px;
        }

        .footer-contact-info .item a {
            color: #fff;
        }

        .footer-contact-info .item a:hover {
            opacity: 0.8;
        }

            .footer-contact-info .item i {
                width: 18px;
                margin-top: -3px;
                margin-right: 10px;
                flex-shrink: 0;
            }
  

.copyright {
    color: #101538;
    background-color: #999AA3;
}



@media (min-width: 991px) {
    .footer-contact {
        display: flex;
        width: 82%;
    }

    .footer-contact-info {
        margin-top: 0;
        margin-left: 40px;
    }
}



/**
 *  Footer
 */

.site-bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9;
}

    .site-bottom-nav a {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        padding-top: 12px;
        padding-bottom: 10px;
        font-size: 14px;
        color: #fff;
        background-color: #678EA9;
    }

    .site-bottom-nav a > i {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .site-bottom-nav a::after {
        position: absolute;
        top: 0;
        right: 0;
        content: "";
        width: 1px;
        height: 100%;
        background-color: #fff;
    }

    .site-bottom-nav a:last-child:after {
        display: none;
    }




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

.main {
    overflow: hidden;
    margin-top: 80px;
}

.page {
    font-size: 18px;
}

.heading {
    font-size: 22px;
}

.heading-with-line {
    display: flex;
    margin-bottom: 20px;
}

.heading-with-line .heading {
    font-size: 36px;
    font-weight: 700;
    color: #101538;
}

    .heading-with-line .line {
        flex: 1;
        height: 2px;
        background-color: #101538;
        margin-left: 80px;
    }


@media (min-width: 576px) {
    .heading {
        font-size: 28px;
    }

    .heading-with-line {
        margin-bottom: 40px;
    }

    .heading-with-line .heading {
        font-size: 40px;
    }
}

@media (min-width: 576px) {
    .main {
        margin-top: 110px;
    }
}


/**
 *  feature
 */

.feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .feature-item {
        font-size: 26px;
        font-weight: 700;
        text-align: center;
        color: #3E425C;
        margin-bottom: 40px;
        width: 50%;
    }

    
        .feature-item .caption {
            color: #101538;
        }

        .feature-item img {
            margin-bottom: 30px;
            width: 130px;
            height: 130px;
            object-fit: contain;
        }

        /* .feature-item .caption .highlight {  
            margin-right: 5px;
            font-size: 52px;
        } */


.button-feature {
    color: #FFFFFF;
    background-color: #101538;
    font-size: 24px;
}

.button-feature:hover {
    color: #f7f7f7;
    background-color: #04d3bf;
}


@media (min-width: 576px) {
    .feature {
        justify-content: space-around;
    }

        .feature-item {
            width: auto;
            font-size: 40px;
        }

            .feature-item img {
                height: 150px;
            }

            /* .feature-item .caption .highlight {
                font-size: 60px;
                margin-right: 15px;
            } */
}




/**
 *  about
 */

.about-value {
    width: 50%;
    padding: 15px;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 9%;
    left: 20%;
    transform: translateX(-50%);
    width: 3px;
    height: 75%;
    background-color: #101538;
}

    .timeline .item {
        position: relative;
        padding-bottom: 40px;
    }

    .timeline .item::before {
        content: "";
        position: absolute;
        top: 35%;
        left: 20%;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        transform: translate(-50%,-50%);
        background-color: #101538;
    }

    .timeline .image-box {
        width: 138px;
        height: 138px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
    }


@media (min-width: 576px) {
    .timeline::before {
        top: 8%;
        left: 30%;
    }

    .timeline .item::before {
        top: 30%;
        left: 30%;
    }
    
}

@media (min-width: 768px) {
    .about-value {
        width: 20%;
        padding: 30px;
    }
}
       
@media (min-width: 991px) {
    .timeline::before {
        width: 84%;
        height: 3px;
        top: 180px;
        left: 50%;
    }

    .timeline .item::before {
        top: 64%;
        left: 50%;
    }

    .timeline .image-box {
        margin-bottom: 80px;
    }
}




/**
 *  advising
 */

.advising .image-box {
    position: relative;
    background-color: rgb(15, 15, 15);
}

.advising .image-box-outer {
    opacity: 0.9;
    transition: 0.3s;
}

.advising .image-box:hover .image-box-outer {
    opacity: 1;
}

    .advising .caption {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgb(16 21 56 / 80%);
        width: 95%;
        color: #fff;
        padding: 15px 20px;
        font-size: 28px;
        font-weight: 700;
        transition: 0.3s;
    }

    .advising .image-box:hover .caption {
        background-color: rgba(4, 210, 189, 0.8);
    }




/**
 *  solutions
 */

.file-download {
    display: flex;
    flex-wrap: wrap;
    color: #101538;
    font-size: 18px;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

    .file-download .image-box {
        width: 100px;
    }

    .file-download i {
        color: #101538;
        font-size: 52px;
    }

    .file-download .button {
        padding: 1px 10px;
    }

    .file-download .file-name {
        max-width: 260px;
        text-align: center;
    }



.other-solutions .item {
    position: relative;
}

    .other-solutions .caption {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 800;
        background-color: rgb(0 0 0 / 55%);
        box-shadow: inset 0 0 0 10px #52617a;
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
    }

.other-solutions .item:hover .caption {
    opacity: 1;
    pointer-events: initial;
}




/**
 *  products
 */
    
.products .image-box {
    position: relative;
    background-color: rgb(15, 15, 15);
}

.products .image-box-outer {
    opacity: 0.9;
    transition: 0.3s;
}

.products .image-box:hover .image-box-outer {
    opacity: 1;
}

.products .caption {
    position: absolute;
    bottom: 10%;
    left: 5%;
    background-color: rgb(16 21 56 / 80%);
    width: 75%;
    height: 128px;
    color: #fff;
    padding: 15px 20px;
    font-size: 32px;
    font-weight: 700;
    transition: 0.3s;
}

.products .image-box:hover .caption {
    background-color: rgba(18, 190, 224, 0.8);
}


/* product category */

.product-category .item {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

    .product-category .item .caption {
        position: absolute;
        width: 100%;
        height: 45%;
        bottom: 0;
        color: #fff;
        padding-top: 75px;
        padding-left: 20px;
        padding-right: 20px;
        z-index: 2;
        transition: 0.3s;
    }

    

    .product-category .item .caption::before {
        content: "";
        position: absolute;
        bottom: -40px;
        left: -8%;
        width: 120%;
        height: 100%;
        background-color: #3E425C;
        z-index: -1;
        transform: rotate(12deg);
        transition: 0.3s;
    }

    .product-category .item-wrap:nth-child(even) .caption::before {
        background-color: #999AA3;
    }

    .product-category .item-wrap:nth-child(odd):hover .caption::before {
        background-color: #04d3bf;
    }

    .product-category .item-wrap:nth-child(even):hover .caption::before {
        background-color: #12bee0;
    }

        .product-category .caption-title {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .product-category .caption-title a {
            color: #fff;
        }

    .product-category .button {
        border-color: #fff;
        color: #fff;
        font-size: 18px;
    }

    .product-category .button:hover {
        background-color: #fff;
        color: #3e425c;
    }



    
/**
 *  newsletter
 */

.newsletter {
    font-size: 25px;
}

    .form-newsletter {
        font-size: 20px;
    }

    .form-newsletter input {
        background-color: #D9D9D9;
        height: 40px;
        border-radius: 1px;
    }

    .button-subscribe {
        background-color: #101538;
        width: 140px;
        font-size: 16px;
        color: #fff;
        margin-left: 10px;
    }




/**
 *  patent
 */

.patent .item {
    position: relative;
    color: #fff;
    border-radius: 28px;
    padding: 10px 40px 10px 65px;
    font-size: 22px;
    margin-bottom: 15px;
}

.patent .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    width: 15px;
    height: 100%;
}

.patent.color-1 .item {
    background-color: #999AA3;
}

.patent.color-1 .item::before {
    background-color: #3E425C;
}

.patent.color-2 .item {
    background-color: #3E425C;
}

.patent.color-2 .item::before {
    background-color: #999AA3;
}




/**
 *  recommendation
 */

.recommendation .item {
    margin-bottom: 30px;
}

    .recommendation .text-box {
        position: relative;
        display: flex;
        justify-content: center;
        flex-direction: column;
        height: 100%;
        color: #fff;
        padding: 20px;
        background-color: #3E425C;
    }

    .recommendation .item .text-box::before {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-style: solid;
    }

    .recommendation .item:nth-child(even) .text-box {
        background-color: #999AA3;
    }

    .recommendation .item:nth-child(odd) .text-box::before {
        left: -20px; 
        border-width: 20px 30px 20px 0;
        border-color: transparent #3E425C transparent transparent;
    }

    .recommendation .item:nth-child(even) .text-box::before {
        right: -20px; 
        border-width: 20px 0 20px 30px;
        border-color: transparent transparent transparent #999AA3;
    }

        .recommendation .text-box p {
            font-size: 22px;
            font-weight: 700;
            line-height: 1.2em;
        }


@media(min-width: 768px) {
    .recommendation .text-box p {
        font-size: 24px;
    }

    .recommendation .item .text-box::before {
        content: "";
    }
}

@media(min-width: 991px) {
    .recommendation .text-box {
        padding: 0 80px;
    }

    .recommendation .text-box p {
        font-size: 30px;
    }

    .recommendation .item:nth-child(odd) .text-box::before {
        left: -30px; 
        border-width: 30px 40px 30px 0;
        border-color: transparent #3E425C transparent transparent;
    }

    .recommendation .item:nth-child(even) .text-box::before {
        right: -30px; 
        border-width: 30px 0 30px 40px;
        border-color: transparent transparent transparent #999AA3;
    }
}




/**
 *  partner
 */

.partners .carousel .slick-dots {
    bottom: -30px;
}

    .partners .button-pool .button {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

.partner {
    padding: 30px;
}

    .partner-title {
        color: #fff;
        background-color: #101538;
        padding: 10px;
        height: 100px;
    }

    .partner-content {
        padding: 10px;
    }

        .partner-info {
            font-size: 18px;
            margin-top: 10px;
            margin-bottom: 10px;
            height: 160px;
        }

@media (min-width: 576px) {
    .partner {
        padding: 10px;
    }

    .partners .button-pool .button {
        width: 220px;
        margin-left: 8px;
        margin-right: 8px;
    }
}




/**
 *  contact
 */

.contact-form {
    font-size: 18px;
}

.contact-form .map {
    margin-top: 40px;
}

.contact-form .captcha {
    position: relative;
}

    .contact-form .captcha-field {
        padding-right: 110px;
    }
        .contact-form .captcha a {
            position: absolute;
            top: 1px;
            right: 2px;
            border-left: 1px solid #707070;
            height: 98%;
        }

.contact-form .note {
    font-size: 13px;
}

.adviser {
    padding: 8px;
}

.adviser-info {
    display: block;
    color: #101538;
    margin-top: 10px;
    font-size: 13px;
}

    .adviser-info > span {
        display: block;
    }

    .adviser-info a {
        display: block;
    }

.adviser-note {
    font-size: 16px;
    margin-top: 80px;
    margin-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
}

.contact-info .item {
    display: flex;
    align-items: flex-start;   
    margin-bottom: 8px;
}

    .contact-info .item img {
        margin-right: 8px;
    }



.visit-us .contact-info a {
    line-height: 1.2em;
}

.visit-us .contact-info a:hover {
    color: #04d3bf; 
}


@media (min-width: 991px) {
    .adviser-note {
        margin-top: auto;
        margin-bottom: 32%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .visit-us .address {
        height: 98px;
    }
}

@media (max-width: 991px) {
    .button-pool {
        flex-direction: column;
    }

    .page-contact-us .button-pool .button {
        width: auto;
    }
}


/**
 *  privacy policy
 */

.privacy-policy {
    line-height: 1.8em;
}

    .privacy-policy .section-heading {
        color: #52617A;
    }

    .privacy-policy li {
        margin-bottom: 8px;
    }
