/*------------------------------------*\
  SETTINGS
\*------------------------------------*/
:root {
    --privary-color: #00316b;
    --secondary-color: #20ffe0;
    --gray-color: #f1f5f9;
}


html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
    color: #504846;
    font-size: 18px;
    font-weight: 400;
    background-color: var(--gray-color);
}

body.fixed {
    overflow: hidden;
}


a {
    color: #595757;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #1cc9b1;
}

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

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



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

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

.border-radius {
    border-radius: 8px;
}


/**
 *  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;
}



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

.color-primary {
    color: #134077;
}

.color-light {
    color: #fff !important;
}

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


.bg-color-primary {
    color: #fff;
    background-color: #10253e;
}

.bg-color-secondary {
    background-color: #aaefe5;
}


.bg-color-gray {
    background-color: var(--gray-color);
}

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




/*------------------------------------*\
  LAYOUTS
\*------------------------------------*/
.section {
    padding-top: 40px;
    padding-bottom: 80px;
}

.section-header img {
    width: 60px;
}



.section-title {
    font-size: 48px;
    color: #1ed7c7;
}

.section-subtitle {
    font-size: 18px;
}

@media (min-width: 992px) {
    .section {
        padding-top: 80px;
        padding-bottom: 100px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 36px;
    }
    
}

.main {
    overflow: hidden;
}



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

/**
 *  Button
 */

.button {
    display: inline-block;
    padding: 15px;
    min-width: 180px;
    border-radius: 30px;
    border: 1px solid transparent;
    background-color: transparent;
    text-align: center;
    transition: 0.3s;
}

.button-primary {
    background-color: var(--secondary-color);
    color: #05423a;
    opacity: 0.8;
}

.button-primary:hover {
    color: #05423a;
    opacity: 1;
}

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




/**
 *  Dropdown
 */


.drop {
    position: relative;
}

.drop__content {
    display: none;
}

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




/**
 *  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 card
 */


.icon-card {
    background-color: #10253e;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    border-radius: 8px;
}

    .icon-card__i img {
        width: 100px;
        height: 100px;
        object-fit: contain;
        transform: scale(0.95);
        transition: 0.3s;
    }

    .icon-card__title {
        margin-top: 20px;
        font-size: 20px;
        color: #fff;
    }

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

.icon-card:hover .icon-card__i img {
    transform: scale(1);
}




/**
 *  Slider
 */

.site-hero {
    position: relative;
}

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

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

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

    .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-title {
        font-size: 48px;
    }


.site-hero .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.site-hero .arrow-prev {
    left: 25px;
}

.site-hero .arrow-next {
    right: 25px;
}

    .site-hero .slick-arrow > svg {
        width: 36px;
        height: 36px;
    }


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


/**
 *  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 a {
        font-size: 16px;
    }

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

/**
 *  Form
 */

.form-control {
    padding: 0.8rem 0.75rem;
}

.required {
   color: #0bc9ae;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23212529' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    position: absolute;
    top: 15px;
    right: 10px;
}


/**
 *  Table
 */

.custom-table {
    background-color: #fff;
}

    .custom-table thead {
        background-color: #dee9f5;
    }

    .custom-table th,
    .custom-table td {
        padding: 15px 10px;
        border: 1px solid #c6d0db;
    }

    .custom-table>:not(:first-child) {
        border-top: 2px solid #5f7a9b;
    }

@media(max-width: 576px) {
    .custom-table {
        font-size: 14px;
    }
}


/**
 *  Back to Top
 */

 .floats {
    position: fixed;
    bottom: 65px;
    right: 30px;
    font-size: 15px;
    color: #858585;
    transition: 0.3s;
    z-index: 9;
}

    .floats .item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        margin-top: 10px;
    }

       

        .floats .item .inner {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            background-color: #858585;
            transition: 0.3s;
        }

        .floats .item .inner svg {
            width: 24px;
            height: 24px;
        }

        .floats .item.phone .inner {
            background-color: var(--privary-color);
        }

        .floats .item.line > img {
            width: 60px;
        }

        .floats .item .inner:hover {
            background-color: #10cdb3;
        }


@media(max-width:576px){
    .floats {
        right: 20px;
    }
}



/**
 *  Header
 */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 3px 30px 0 rgb(125 125 125 / 10%);
    background-color: rgb(14 48 88 / 84%);
    transition: 0.3s;
}

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

        .site-logo a {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 700;
            letter-spacing: 5px;
            padding-top: 16px;
            padding-bottom: 16px;
            color: #fff;
        }

        .site-menu {
            display: flex;
        }

            .site-menu li {
                list-style: none;
            }

            .site-menu .item > a {
                display: flex;
                align-items: center;
                justify-content: center;
                height: 90px;
                padding-left: 20px;
                padding-right: 20px;
                color: #fff;
            }

            .site-menu .drop:hover > a,
            .site-menu .item > a.active {
                background-color: rgb(0 255 208 / 95%);
                color: #05423a;
            }

            .site-menu .item > a:hover {
                background-color: rgb(0 255 208 / 85%);
                border-color: #20ffd6;
                color: #05423a;
            }

            .site-menu__sub {
                position: absolute;
                background-color: #fff;
                width: 180px;
            }

                .site-menu__sub a {
                    display: block;
                    padding: 10px 24px;
                    border-bottom: 1px solid #eee;
                }

            


    .site-media {
        margin-right: 15px;
    }

        .site-media .item > a {
            display: flex;
            margin-left: 6px;
            margin-right: 6px;
        }


.header.sticky {
    background-color: rgb(0 49 107 / 92%);
}

.header.sticky .site-logo a,
.header.sticky .site-menu .item > a {
    height: 80px;
}

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

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

    .site-menu .item > a {
        width: 120px;
    }
}

@media (max-width: 576px) {
    .site-nav {
        padding-left: 25px;
    }
}



/**
 *  Mobile Nav
 */

.mobile-toggle {
    position: absolute;
    top: 10px;
    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: #f1f1f1;
            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 .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: #192b40;
    opacity: 0;
    transition: .5s;
    z-index: 99;
    pointer-events: none;
}

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

        .slide-sidebar ul > li > a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 40px;
            width: 100%;
            color: #fff;
            letter-spacing: 2px;
            font-size: 18px;
            border-bottom: 1px solid #455c76;
        }



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


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


.mobile-nav .collapse__button::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    font-size: 14px;
    transition: 0.3s;
}

.mobile-nav .collapse__content {
    background-color: #354456;
}





/**
 *  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 10px;
            font-size: 15px;
            color: #5c5c5c;
            border-bottom: 1px solid #e8e9ea;
        }
        

        .side-menu .layer-1 > a:hover {
            color: #000;
        }
       

        .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__button ~ .collapse__content a {
            padding-left: 24px;
        }

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

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


  

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

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

    .mobile-toggle {
        display: none;
    }
}




/**
 *  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.45);
    z-index: -1;
}

    .ad-card {
        position: absolute;
        top: 50%;
        right: unset;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        width: 580px;
        max-width: 85%;
        background-color: rgb(20 65 119 / 82%);
        padding: 45px;
        border-radius: 8px;
    }

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

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

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

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

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

    .ad-card.right {
        right: 15%;
        left: unset;
    }
}    



/**
 *  About
 */

.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
 */

.section-service {
    overflow: hidden;
}

.service-list {
    background-color: #102540;
}

    .service-item {
        position: relative;
        display: block;
        opacity: 0.95;
        transition: 0.3s;
    }


@media(min-width: 992px) {
    .service-item:hover {
        transform: translateY(-30px);
        opacity: 1;
    }

    .service-item .action {
        position: absolute;
        bottom: -50px;
        width: 100%;
        height: 50px;
        color: #fff;
        background-color: #00316b;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: 0.3s;
    }

    .service-item:hover .action {
        transform: translateY(-20px);
        opacity: 1;
    }

}



/**
 *  Info Table
 */

.info-table__label {
    width: 160px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #00316b;
}

.info-table__item {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #96afcd;
}

.info-table__item:last-child {
    padding-bottom: 20px;
    border-bottom: 1px solid #96afcd;
}



@media(min-width: 992px) {
    .info-table__item {
        display: flex;
    }

    .info-table__label {
        margin-bottom: 0;
    }
}





/**
 *  Contact
 */

.label {
    font-size: 15px;
}


/**
 *  Footer
 */

 .footer {
    background-color: #fafafa;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
}

    .footer-col {
        margin-left: 0;
        margin-top: 20px;
        padding-bottom: 25px;
    }

        .footer-title {
            font-size: 18px;
            letter-spacing: 1px;
        }

        .footer-col ul {
            list-style: none;
        }        

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

    .footer-logo {
        display: flex;
        align-items: center;
        font-size: 32px;
        margin-bottom: 20px;
    }

        .footer-logo img {
            width: 60px;
            margin-right: 20px
        }


    .contact-info .item {
        display: flex;
        margin-bottom: 5px;
    }

        .contact-info .item .icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            margin-right: 5px;
            font-size: 16px;
        }

        .contact-info .item a {
            font-size: 16px;
        }


    .copyright {
        font-size: 12px;
        text-align: center;
        background-color: #fff;
    }


    .social-media a {
        font-size: 18px;
        margin-right: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #013068;
        color: #fff;
        border-radius: 5px;
    }

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

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

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

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


@media (min-width: 992px) {
    .footer {
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }

        .footer-col {
            margin-left: 12%;
            margin-top: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .footer-logo {
            margin-bottom: 0;
        }
}






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


/**
 *  Home
 */

.h__contact .form-control {
    border: 1px solid #5e7fa1;
    color: #ffffff;
    background-color: #10253e;
}

.h__contact .form-control:focus {
    background-color: #3c536e;
}

.h__contact .select-wrapper::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}