﻿/*!
 * style.css
 * Version - 1.0
 * Website: tygico.com
 * Author: Ghida
 * Copyright (c) 2019 Bicweb.Vn
 */
/*#region GLOBAL */

html, body {
    color: #222;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
}

    body * {
        outline: none;
    }

a {
    color: #2a2a2a;
    text-decoration: none;
}

    a:hover, a:focus, a:active {
        text-decoration: none;
        color: #0072bc;
        outline: none;
        -webkit-transition: all 100ms ease 0s;
        -moz-transition: all 100ms ease 0s;
        -o-transition: all 100ms ease 0s;
        transition: all 100ms ease 0s;
    }

.img-editor:last-child {
    max-width: 100%;
}

.RadAjax.RadAjax_Default {
    background-color: rgba(0, 0, 0, 0.5) !important;
    height: 100% !important;
    left: 0 !important;
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
}

.gd_absolute {
    position: absolute;
    left: 50%;
    top: -50px;
    width: 100%;
    max-width: 555px;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 100;
}

.ellipsis {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*#endregion */

/*#region HEADER */
.gd_header_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    background: rgba(255,255,255,0.8);
    border-bottom: 1px solid #e1e1e1;
}

.header_wrap {
    justify-content: space-between;
}

.gd_header_content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.gd_logo {
    margin: 10px 0;
}

    .gd_logo img {
        max-height: 65px;
    }

        .gd_logo img.reward {
            max-height: 65px;
            margin-left: 15px;
        }
        .gd_header_container.fixed {
    position: fixed;
    animation: fadeInDown .3s ease 0s;
    z-index: 100;
    top: 0;
}
/* 
    1. Menu
*/
.gd_menu__primary .RadMenu_Top {
    float: left;
    width: 100%;
    z-index: 1000 !important;
}

.gd_menu__primary .RadMenu .rmRootGroup {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    width: 100%;
    border: none;
}

    .gd_menu__primary .RadMenu .rmRootGroup.rmHorizontal > .rmItem {
        border: none;
    }

        .gd_menu__primary .RadMenu .rmRootGroup.rmHorizontal > .rmItem > a.rmLink {
            padding: 0;
        }

.gd_menu__primary .RadMenu a.rmLink {
    padding: 0 15px;
    box-sizing: border-box;
    height: auto;
}

.gd_menu__primary .RadMenu .rmHorizontal .rmText {
    color: #0072bc;
    font-size: 14px;
    font-family: 'Saira', sans-serif;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.gd_menu__primary .RadMenu .rmHorizontal .rmRootLink .rmText {
    padding: 8px;
    text-transform: uppercase;
    border-radius: 3px;
}

.gd_menu__primary .RadMenu .rmRootLink:hover .rmText {
    color: #333;
}

.gd_menu__primary .RadMenu .rmRootLink.expanded .rmText {
    font-weight: bold;
}

.gd_menu__primary .RadMenu .rmHorizontal .rmFirst .rmRootLink .rmText {
    /*font-size: 0;*/
}
/*.gd_menu__primary .RadMenu .rmHorizontal .rmFirst .rmRootLink .rmText:after {    
    content: "\f015";
    display: inline-block;
	font-family: "Font Awesome 5 Pro";
	font-size: 16px;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    color: #fff;
    line-height: 1.2;
}*/
.gd_menu__primary .RadMenu .rmRootGroup .rmItem .rmGroup {
    padding: 0 2px;
}

.gd_menu__primary .RadMenu .rmRootGroup > .rmItem > .rmSlide {
    margin-top: 15px;
}

.gd_menu__primary .RadMenu .rmSlide .rmVertical .rmItem {
    background: rgb(0,114,188);
}

    .gd_menu__primary .RadMenu .rmSlide .rmVertical .rmItem .rmLink {
        padding: 0 10px;
        min-width: 200px;
    }

.gd_menu__primary .RadMenu .rmSlide .rmVertical .rmText {
    border-bottom: solid 1px rgba(255,255,255,0.2);
    color: #fff;
}

.gd_menu__primary .RadMenu .rmSlide .rmVertical .rmItem:hover {
    background: #263b7a;
}

    .gd_menu__primary .RadMenu .rmSlide .rmVertical .rmItem:hover .rmText {
        border: none;
    }

.gd_header_top {
    display: flex;
    justify-content: space-between;
}

.gd_header__langguage {
    display: flex;
    align-items: center;
    margin-left: 15px;
}
/*-----------------------------
    2. Language
-------------------------------*/
.language {
    float: right;
    padding: 12px 9px 5px;
    margin-left: 5px;
    height: 40px;
    /*border: 1px solid #e1e1e1;*/
    border-radius: 3px;
    /*background: #113752;*/
}

    .language a {
        background: transparent;
        display: block;
        font-size: 0;
        height: 16px;
        text-align: center;
        width: 20px;
    }

        .language a.language_vi {
            background: url(../Controls/Language/img/vn.svg) no-repeat center center;
            background-size: cover;
        }

        .language a.language_en {
            background: url(../Controls/Language/img/gb.svg) no-repeat center center;
            background-size: cover;
        }
/*-----------------------------
    3. Search
-------------------------------*/
.gd_header__langguage > a {
    color: #0072bc;
    font-size: 18px;
    line-height: 40px;
    width: 40px;
    height: 40px;
    background: none;
    border-radius: 3px;
    display: inline-block;
    text-align: center;
}

    .gd_header__langguage > a.btn_contact {
        width: auto;
        white-space: nowrap;
        padding: 0 12px;
        margin-left: 5px;
        text-transform: uppercase;
        font-size: 14px;
        font-family: 'Saira', sans-serif;
        font-weight: 500;
        height: 40px;
        line-height: 38px;
        border: 1px solid #0072bc;
        display: none;
    }

        .gd_header__langguage > a.btn_contact:hover {
            background: #113752;
        }

#search {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 1);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    text-align: center;
    opacity: 0;
}

    #search.open {
        -webkit-transform: translate(0px, 0px) scale(1, 1);
        -moz-transform: translate(0px, 0px) scale(1, 1);
        -ms-transform: translate(0px, 0px) scale(1, 1);
        -o-transform: translate(0px, 0px) scale(1, 1);
        transform: translate(0px, 0px) scale(1, 1);
        opacity: 1;
        z-index: 1001;
        display: flex;
        justify-content: flex-start;
        padding: 0 15px;
    }

    #search .input-text {
        width: 80%;
        border: none;
        font-size: 24px;
        padding: 6px;
    }

        #search .input-text.err_text {
            color: #0072bc;
            font-style: italic;
            font-weight: 100;
        }

    #search .search-button {
        border: none;
        background: rgba(0,0,0,0) url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAlFJREFUeNqslFuIjGEYx7+ZPTiXaBsZh/rYWuJCy7qxcpiRuMCNm42ytC5EyQ1teyOHCxcupLQXUutiKYkimnDlCmXRpnZE62bZnKMcx+/Rf/R4+2Ya8a9f834z7/ef931OqVwuFyVoIayFNpgF9TACD+Ea3IavtrFQKCS9/+sFrylwALZAJmH/OtgLV+Ag3I8qyBtn4SyscN+9gzdQgonQBI2wCZZCJ1xPMk67k3rTl3AIVkELzJXRToXDNB3O5PP5tmrG+5zpEKyHHvgOXfq9GXqhHS5q7zQ4hvnYpFC06EqRrt0BRTsNrIFXOoCFYVTxN27BElgOG6E/PPFK/bPpNNyBXfAcNsBq7bHEXYBTEEO389mcdOLFWn9StuugD4aDvRb3u3AJ5sANGIT5sIBwNFF6o/7EWVcBRcV1OKqse3AZvmh/pIrJhKFIaf1DprXI9n7TZySPdGg8ovVkXbFWjVOsTR+V2D+MB7SeAPm/MLaKmKd10R3wt7F1zms9b7NE1GDaqDpvUFf2k7hSaDzoanCG6re5iukkOKESND0Oa7hsXFL7lkPSqgm2G2YqltZZU9UIV9WNkTtMR2iccmPTQnBOdVnWC7W4jcjZLlmhPsMewtEbzgrTI82IPld2VpvLdO3YldpQUJpj4DhNsj3J2PQMtoJd46Q67Qk81VQ7r/ZdBEeDd8dbu2PeFYaiUvYzanMbRh+C/ByG/cE7Nho66+I4rmZs130Pb9XCXpb0myq5dve9PWfT0b+pRMJsyh0JQ1of/R/16FY74IE9/xRgAFAwjDsn4wPsAAAAAElFTkSuQmCC') no-repeat center center;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }

    #search .close {
        position: absolute;
        top: 50%;
        right: 15px;
        opacity: 1;
        font-size: 27px;
        color: #fff;
        width: 30px;
        height: 30px;
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

        #search .close::after, #search .close::before {
            content: "";
            position: absolute;
            width: 2px;
            height: 25px;
            background-color: #000;
            right: 15px;
            top: 3px;
        }

        #search .close:after {
            -ms-transform: rotate(45deg); /* IE 9 */
            -webkit-transform: rotate(45deg); /* Safari */
            transform: rotate(45deg);
        }

        #search .close:before {
            -ms-transform: rotate(-45deg); /* IE 9 */
            -webkit-transform: rotate(-45deg); /* Safari */
            transform: rotate(-45deg);
        }

        #search .close:hover:after, #search .close:hover:before {
            cursor: pointer;
        }

/*#endregion */

/*#region BANNER */
.gd_banner {
    clear: both;
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
}

.gd_banner_image {
    width: 100%;
    float: left;
    margin: 0;
}

    .gd_banner_image .img-fluid {
        width: 100%;
    }

.gd_banner .owl-nav [class^="owl-"] {
    color: #fff;
    line-height: 1;
    opacity: 0;
    position: absolute;
    text-align: center;
    bottom: 30px;
    /*-moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);*/
    transition: all 0.3s ease-in 0s;
    visibility: visible;
    z-index: 100;
    height: 65px;
    width: 40px;
    cursor: pointer;
    font-size: 48px;
}

.gd_banner .owl-prev {
    right: 10%;
}

.gd_banner .owl-next {
    right: 6%;
}

.gd_banner:hover .owl-nav [class^="owl-"] {
    opacity: 1;
    visibility: visible;
}

.gd_banner .owl-nav.disabled {
    display: none;
}


.gd_banner .owl-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    padding: 15px 10px;
    border-radius: 5px 5px 0 0;
}

/*.gd_banner .owl-dots::after, .gd_banner .owl-dots:before {
        content: "";
        bottom: 0;
        position: absolute;
    }

    .gd_banner .owl-dots::after {
        border-left: 0px solid transparent;
        border-right: 15px solid transparent;
        right: -14px;
        border-bottom: 24px solid #fff;
    }

    .gd_banner .owl-dots::before {
        border-left: 15px solid transparent;
        border-top: 0px solid transparent;
        border-bottom: 24px solid #fff;
        left: -14px;
    }*/

.gd_banner .owl-dot {
    padding: 5px;
}

.gd_banner .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e5e5;
    cursor: pointer;
}

.gd_banner .owl-dot.active span {
    background: #0072bc;
}

.owl-nav.disabled {
    display: none;
}

.active .bn_box {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 0.9s;
    animation-duration: 0.9s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.bn_box {
    position: absolute;
    background: rgba(255,255,255,0.85);
    width: 28%;
    bottom: 10%;
    opacity: 0;
    left: 10%;
    padding: 15px;
    border-left: 3px solid #0072bc;
    border-radius: 3px;
    font-size: 14px;
    text-align: left;
}

    .bn_box .bn_title {
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 10px;
        line-height: 1.2;
    }

        .bn_box .bn_title span {
            color: #0072bc;
        }

    .bn_box .bn_desc .gd_readmore {
        color: #fff;
        background: #0072bc;
        padding: 8px 15px 6px;
        border-radius: 3px;
        margin-top: 0;
        margin-bottom: 10px;
    }

        .bn_box .bn_desc .gd_readmore:hover {
            background: #005891;
        }
/*Cover*/
.gd_cover_item {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

    .gd_cover_item::before {
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.15);
        position: absolute;
        left: 0;
        top: 0;
    }

    .gd_cover_item .img-fluid {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gd_cover_item .gd_absolute {
        transform: translate(-50%,-50%);
        max-width: 100%;
        top: 60%;
        color: #fff;
    }

    .gd_cover_item .gd_text {
        color: #fff;
        font-weight: 900;
        display: block;
        text-transform: uppercase;
        text-align: center;
        font-family: 'Open Sans',sans-serif;
        font-size: 48px;
        line-height: 1;
    }

.gd_breadcrumb {
    clear: both;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 15px;
}

    .gd_breadcrumb ol {
        list-style: none;
        display: inline-flex;
        padding: 0;
        margin: 0;
        color: #fff;
    }

    .gd_breadcrumb a {
        color: #fff;
        text-transform: none;
    }

    .gd_breadcrumb li:last-child a {
        font-weight: 600;
    }

    .gd_breadcrumb a:hover {
        text-decoration: underline;
    }

/*#endregion */

/*#region HOME */
.gd_box__title {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
    border-bottom: 1px solid #e1e1e1;
}

    .gd_box__title .gd_text {
        color: #0072bc;
        text-transform: uppercase;
        font-size: 26px;
        font-family: 'Saira', sans-serif;
        font-weight: bold;
        margin-bottom: 0;
    }

[class^="module_"] {
    margin-bottom: 40px;
    clear: both;
}


    [class^="module_"] .gd_box__title::after {
        display: none;
        content: "";
        width: 50px;
        height: 2px;
        left: 50%;
        bottom: 0px;
        background: #0072bc;
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        position: absolute;
    }
/*About us*/
.about_desc {
    color: #414141;
    text-align: justify;
    display: flex;
    align-items: center;
}

    .about_desc h1 {
        font-size: 36px;
        text-transform: uppercase;
        font-weight: bold;
        font-family: 'Saira', sans-serif;
        color: #0072bc;
        margin-bottom: 30px;
        text-align: left;
    }

    .about_desc .gd_readmore {
        color: #fff;
        background: #0072bc;
        padding: 5px 15px;
        border-radius: 5px;
    }

.gd_product__cat .gd_item {
    margin-bottom: 30px;
    position: relative;
}

.gd_product__cat .gd_item__ico {
    margin: 0;
    position: relative;
    overflow: hidden;
}

    .gd_product__cat .gd_item__ico::after {
        content: "";
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        position: absolute;
        background: rgba(46, 49, 146,0.3);
    }

    .gd_product__cat .gd_item__ico img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 500ms ease-in 100ms;
    }

.gd_product__cat .gd_item:hover img {
    transform: scale(1.05);
}

.gd_product__cat .gd_title {
    position: absolute;
    padding: 20px 35px;
    left: 0;
    bottom: 0;
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
}

    .gd_product__cat .gd_title .gd_text {
        color: #fff;
        text-transform: uppercase;
        margin: 0;
        font-size: 15px;
        font-weight: bold;
    }

    .gd_product__cat .gd_title .num {
        font-size: 52px;
        font-weight: 700;
    }
/*Product tab*/
.module_product {
    margin-top: 40px;
    margin-bottom: 0;
}

.gd_product_home .gd_box__title {
    text-align: center;
    border: none;
}

    .gd_product_home .gd_box__title .gd_text {
        font-size: 36px;
    }

    .gd_product_home .gd_box__title .gd_box__desc {
        margin: 20px auto 0;
        width: 80%;
    }

.gd_product_home ul.nav {
    border-top: 1px solid #e1e1e1;
    flex-wrap: nowrap;
    margin-bottom: 15px;
}

    .gd_product_home ul.nav li {
        margin-top: -1px;
    }

        .gd_product_home ul.nav li a {
            padding: 15px;
            display: block;
            text-align: center;
            font-size: 15px;
            font-weight: 500;
            font-family: 'Saira', sans-serif;
            position: relative;
        }

            .gd_product_home ul.nav li a.active {
                color: #0072bc;
            }

            .gd_product_home ul.nav li a:before {
                content: "";
                width: 100%;
                height: 2px;
                top: 0;
                left: 0;
                position: absolute;
                background: #0072bc;
                visibility: hidden;
            }

            .gd_product_home ul.nav li a.active:before {
                visibility: visible;
            }

.gd_product_home .gd_readmore .fa {
    display: block;
}
/*Service*/
.module_service {
    background: url(images/bg_service.jpg) no-repeat top center;
    background-size: cover;
    overflow: hidden;
}

    .module_service .gd_box__title {
        text-align: center;
        border: none;
        padding: 100px 0 0px;
    }

        .module_service .gd_box__title .gd_text {
            color: #fff;
            font-size: 36px;
        }

    .gd_service_slider::after, .gd_service_slider::before, .module_service .owl-dots:before, .module_service .owl-dots:after {
        position: absolute;
        left: 0;
        height: 1000px;
        border-left: 1px dashed rgba(255,255,255,0.5);
        content: "";
        width: 1px;
        bottom: 0;
    }

.gd_service_slider::before {
    left: auto;
    right: 0;
}

.module_service .owl-dots:before {
    left: 33.3333%;
}

.module_service .owl-dots:after {
    left: 66.6666%;
}

.gd_service__item {
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.gd_service__inner {
    width: 100%;
}

.gd_service__content {
    background: rgba(255,255,255,0.6);
    padding: 0px 30px 15px;
    border-radius: 10px 10px 0 0;
    text-align: left;
}

    .gd_service__content:hover {
        background: rgba(255, 255, 255, 0.85);
    }

        .gd_service__content:hover .num {
            color: #005e9b;
        }

        .gd_service__content:hover .gd_service__title .gd_text, .gd_service__content:hover .gd_readmore {
        }

        .gd_service__content:hover .gd_service__excerpt {
            visibility: visible;
            height: auto;
        }

.active.center .gd_service__content {
    background: rgba(255, 255, 255, 0.85);
}

    .active.center .gd_service__content .num {
        color: #005e9b;
    }

    .active.center .gd_service__content .gd_service__title .gd_text, .active.center .gd_service__content .gd_readmore {
    }

    .active.center .gd_service__content .gd_service__excerpt {
        visibility: visible;
        height: auto;
    }

.gd_service__item .num {
    font-size: 60px;
    font-family: 'Saira', sans-serif;
    color: #0072bc;
}

.gd_service__title {
}

    .gd_service__title .gd_text {
        font-size: 20px;
        font-weight: bold;
        text-align: left;
        margin-bottom: 15px;
        line-height: 1.5;
    }

.gd_service__excerpt {
    visibility: hidden;
    color: #333;
    height: 0;
    text-align: justify;
    font-size: 14px;
}

.gd_service__item .gd_readmore::after {
    content: "";
    font-family: "Font Awesome 5 Pro";
    margin-left: 5px;
}
/*News*/
.gd_news__home .gd_box__title .gd_text {
    display: inline-block;
    border-bottom: 2px solid #0072bc;
    line-height: 1.42;
}

.article_listhome .gd_news__inner {
}

.article_listhome .gd_news__image {
    flex: 0 0 100%;
    margin-bottom: 15px;
    margin-right: 0;
}

.article_listhome .gd_news__title .gd_text {
    text-align: left;
    font-size: 18px;
}

.gd_job__home .gd_widget_article {
    border: none;
}

.gd_job__home .gd_widget__content {
    border: 1px solid #e1e1e1;
}

.gd_job__home .gd_widget__title {
    margin-bottom: 30px;
    padding: 0;
}

    .gd_job__home .gd_widget__title .gd_widget__text {
        padding: 0;
        font-size: 26px;
        line-height: 1.42;
        color: #0072bc;
    }
/*Contact Home*/

.module_consulting {
    background: url(images/bg_contact.png) no-repeat center bottom;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 45px 0 115px;
    color: #fff;
}

.section_title .module_title {
    font-size: 26px;
    font-family: 'Saira', sans-serif;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.module_consulting .form-group {
    padding-right: 10px !important;
    margin-bottom: 10px;
}

.module_consulting .form-contact .RadInputMgr, .module_consulting .form-contact .form-control {
    background: rgba(255, 255, 255,0.8);
    border-radius: 5px;
}

.module_consulting .form_submit {
    flex: 0 0 130px;
    margin-bottom: 10px;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Saira',sans-serif;
    text-align: center;
}

    .module_consulting .form_submit a.btn {
        height: 100%;
        width: 100%;
        background-color: #2380c3;
        border-color: #2380c3;
    }

    .module_consulting .form_submit span {
        display: block;
        font-weight: bold;
    }

    .module_consulting .form_submit .fa-paper-plane {
        font-size: 36px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

/*HlIndex*/
.gd_hlindex {
    margin-bottom: 40px;
}

    .gd_hlindex .hl_inner {
        position: relative;
        max-width: 370px;
        margin: 0 auto 30px;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        transition: transform .3s, box-shadow .3s, background-color .3s, color .3s, opacity .3s;
    }

        .gd_hlindex .hl_inner:hover {
            -moz-transform: translateY(-6px);
            -ms-transform: translateY(-6px);
            -o-transform: translateY(-6px);
            -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
            box-shadow: 0 14px 28px rgba(0,0,0,0.25),0 10px 10px rgba(0,0,0,0.1);
        }

            .gd_hlindex .hl_inner:hover .hl_name {
                -moz-transform: translateY(-50%) scale(1.05);
                -ms-transform: translateY(-50%) scale(1.05);
                -o-transform: translateY(-50%) scale(1.05);
                -webkit-transform: translateY(-50%) scale(1.05);
                transform: translateY(-50%) scale(1.05);
            }

    .gd_hlindex .hl_name {
        position: absolute;
        color: #0072bc;
        left: 0;
        top: 50%;
        font-weight: bold;
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        text-align: center;
        padding: 0 15px 0 85px;
        display: block;
        width: 100%;
        transition: all 300ms ease-in 0ms;
    }

    .gd_hlindex .hl_inner img {
        max-width: 100%;
    }

.gallery_home {
    border-top: 1px solid #e1e1e1;
    padding: 15px 0;
}

    .gallery_home .gall_item {
        width: 220px;
        height: 125px;
        -moz-transition: all 0.35s ease-in 0s;
        -o-transition: all 0.35s ease-in 0s;
        -webkit-transition: all 0.35s ease-in 0s;
        transition: all 0.35s ease-in 0s;
        position: relative;
    }

        .gallery_home .gall_item img {
            height: 100%;
            object-fit: cover;
            transition: all 0.35s ease-in 0s;
        }

        .gallery_home .gall_item a:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            background: rgba(0,0,0,0.15);
            border: 3px solid #0072bc;
            visibility: hidden;
            width: 100%;
            height: 100%;
            transition: all .4s ease-in-out;
            transform: scale(0);
            z-index: 1;
        }

        .gallery_home .gall_item a:hover:before {
            visibility: visible;
            transform: scale(1);
        }
/*#endregion*/

/*#region PRODUCT */
.gd_box_desc {
    max-height: 10rem;
    overflow: hidden;
    padding-bottom: 30px;
    position: relative;
    margin-bottom: 15px;
    text-align: justify;
    display: none;
}

    .gd_box_desc div.text-center {
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
        background: linear-gradient(to top, #fff 0%, #fff 50%, rgba(255,255,255,0) 100%);
        padding: 15px;
    }

.gd_p__list .gd_p__item {
    margin-bottom: 30px;
}

.gd_p__item {
    width: 100%;
    float: left;
    margin-bottom: 30px;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.gd_p__inner {
    position: relative;
    height: 100%;
    transition: transform .3s, box-shadow .3s, background-color .3s, color .3s, opacity .3s;
}

    .gd_p__inner:hover {
        -moz-transform: translateY(-6px);
        -ms-transform: translateY(-6px);
        -o-transform: translateY(-6px);
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
        box-shadow: 0 14px 28px rgba(0,0,0,0.25),0 10px 10px rgba(0,0,0,0.1);
    }

.gd_p__image {
    width: 100%;
    float: left;
    overflow: hidden;
    background: #333;
    border-radius: 3px;
    border: 1px solid #acacac;
    margin: 0;
    position: relative;
}

    .gd_p__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 300ms ease-in 0ms;
    }

    .gd_p__image:hover img {
        transform: scale(1.1);
    }

    .gd_p__image:hover {
        border: 1px solid #0072bc;
    }

    .gd_p__image a:before {
        display: inline-block;
        content: "\f002";
        color: #fff;
        background: #0072bc;
        width: 40px;
        height: 40px;
        top: calc(50% - 20px);
        left: 50%;
        font-family: "Font Awesome 5 Pro";
        text-rendering: auto;
        position: absolute;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -moz-transform: translate(-50%, -50%) scale(0,0);
        -ms-transform: translate(-50%, -50%) scale(0,0);
        -o-transform: translate(-50%, -50%) scale(0,0);
        -webkit-transform: translate(-50%, -50%) scale(0,0);
        transform: translate(-50%, -50%) scale(0,0);
        -moz-transition: all 300ms ease-in 0ms;
        -o-transition: all 300ms ease-in 0ms;
        -webkit-transition: all 300ms ease-in 0ms;
        transition: all 300ms ease-in 0ms;
        z-index: 10;
        border-radius: 3px;
        text-align: center;
        line-height: 40px;
    }

    .gd_p__image:hover a:before, .gd_p__image:hover .add-cart {
        -moz-transform: translate(-50%) scale(1,1);
        -ms-transform: translate(-50%) scale(1,1);
        -o-transform: translate(-50%) scale(1,1);
        -webkit-transform: translate(-50%) scale(1,1);
        transform: translate(-50%) scale(1,1);
    }

    .gd_p__image .add-cart {
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: inline-block;
        position: absolute;
        color: #fff;
        background: #0072bc;
        visibility: visible;
        top: calc(50% - 20px);
        left: 50%;
        border-radius: 3px;
        line-height: 40px;
        text-align: center;
        transform: translate(-50%, -50%);
        margin-left: 25px;
        -moz-transform: translate(-50%, -50%) scale(0,0);
        -ms-transform: translate(-50%, -50%) scale(0,0);
        -o-transform: translate(-50%, -50%) scale(0,0);
        -webkit-transform: translate(-50%, -50%) scale(0,0);
        transform: translate(-50%, -50%) scale(0,0);
        -moz-transition: all 300ms ease-in 0ms;
        -o-transition: all 300ms ease-in 0ms;
        -webkit-transition: all 300ms ease-in 0ms;
        transition: all 300ms ease-in 0ms;
        z-index: 10;
    }

        .gd_p__image .add-cart ~ a:before {
            margin-left: -25px;
        }

.gd_p__content {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(0,114,188,0.8);
}

.gd_p__title .gd_text {
    color: #fff;
    font-size: 14px;
    line-height: 1.5em;
    overflow: hidden;
    text-align: center;
    font-weight: 600;
    padding: 10px;
    margin: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
}

    .gd_p__title .gd_text:hover {
        color: #fff;
    }

.gd_p__price {
    display: flex;
    flex-flow: row-reverse;
    justify-content: center;
    align-items: flex-end;
}

    .gd_p__price ins {
        font-size: 22px;
        font-weight: bold;
        color: #0072bc;
        text-decoration: none;
        line-height: 1;
        white-space: nowrap;
    }

    .gd_p__price del {
        color: #919191;
        line-height: 1.2;
        margin-left: 8px;
        white-space: nowrap;
    }
/*Single*/
.gd_product_detail {
    padding: 0 10%;
}

.product_info {
    padding-left: 30px;
}

.gd_product__title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 0.625rem;
}

.gd_pro_contact {
    display: inline-flex;
    background: #0072bc;
    color: #fff;
    padding: 0 40px;
    align-items: center;
    font-weight: 600;
    border-radius: 5px;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Saira', sans-serif;
    white-space: nowrap;
    min-width: 70%;
    max-width: 100%;
    justify-content: center;
}

    .gd_pro_contact i {
        display: inline-block;
        padding: 15px 0;
        font-size: 30px;
        border-radius: 5px 0 0 5px;
        margin-right: 15px;
    }

    .gd_pro_contact:hover, .gd_pro_contact:focus, .gd_pro_contact:active {
        color: #fff;
        text-decoration: none;
        background: #005891;
    }

.num-product {
    padding: 10px;
    font-size: 22px;
    width: 60px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    margin-right: 10px;
}

.product_price {
    font-size: 14px;
}

    .product_price ins {
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
    }

    .product_price del {
        margin-right: 5px;
    }

    .product_price > p {
        margin-bottom: 0.625rem;
    }

.product_desc {
    font-size: 14px;
    margin: 30px 0;
}

    .product_desc p {
        margin-bottom: 0.625rem;
    }

    .product_desc *:not(table) {
        max-width: 100%;
    }

    .product_desc ul {
        padding-left: 30px;
    }

    .product_desc a {
        font-weight: 600;
    }

        .product_desc a:hover {
            color: #0072bc;
        }

    .product_desc img {
        max-width: 100%;
        height: auto;
    }

    .product_desc .table {
        max-width: none;
        width: auto;
        text-align: left;
    }

    .product_desc .table-bordered td, .product_desc .table-bordered th {
        border: 1px solid #e5e5e5;
    }

    .product_desc .nav-tabs {
        padding: 0;
        border-bottom: 1px solid #0072bc;
    }

        .product_desc .nav-tabs .nav-item {
            margin-bottom: 0;
        }

            .product_desc .nav-tabs .nav-item .nav-link, .product_desc .nav-tabs .nav-link {
                color: #222;
                background-color: #E6EBEF;
                border-color: #E6EBEF #E6EBEF #E6EBEF;
                text-transform: uppercase;
                font-size: 20px;
                font-family: 'Saira', sans-serif;
                margin-right: 5px;
            }

                .product_desc .nav-tabs .nav-item.show .nav-link, .product_desc .nav-tabs .nav-link.active {
                    color: #fff;
                    background-color: #0072bc;
                    border-color: #0072bc #0072bc #0072bc;
                    font-weight: 600;
                }

    .product_desc .tab-content {
        padding: 15px 0;
        text-align: justify;
    }

.short_desc {
    position: relative;
    margin-top: 0;
}

.short_desc_inner {
    overflow: hidden;
}

.short_desc .show_more {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 24px;
    background: linear-gradient(to top, #fff 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0) 100%);
    padding-top: 50px;
    cursor: pointer;
}

.product_image {
    padding-right: 0;
}

    .product_image .gd_p_image {
        margin-bottom: 10px;
    }

        .product_image .gd_p_image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .product_image .gd_social__bar {
        margin-top: 20px;
        border-top: 1px dashed #acacac;
        padding-top: 16px;
    }

.gd_info_title {
    font-size: 26px;
    font-weight: 600;
    color: #0072bc;
    margin-bottom: 20px;
    border-bottom: 1px solid #acacac;
    padding-bottom: 10px;
}

.owl_thumb_slider {
    padding: 0;
    margin: 0;
}

    .owl_thumb_slider li {
        list-style: none;
    }

        .owl_thumb_slider li img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .owl_thumb_slider .owl-nav [class^="owl-"] {
        background: #0072bc;
        color: #fff;
        line-height: 1;
        opacity: 0;
        position: absolute;
        text-align: center;
        top: 50%;
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        transition: all 0.1s ease-in 0s;
        visibility: hidden;
        z-index: 100;
        height: 30px;
        line-height: 30px;
        width: 30px;
        cursor: pointer;
    }

        .owl_thumb_slider .owl-nav [class^="owl-"].disabled {
            opacity: 0.5;
            pointer-events: none;
        }

        .owl_thumb_slider .owl-nav [class^="owl-"]:hover {
            background: #222222;
        }

    .owl_thumb_slider .owl-prev {
        left: -15px;
    }

    .owl_thumb_slider .owl-next {
        right: -15px;
    }

    .owl_thumb_slider:hover .owl-nav [class^="owl-"] {
        opacity: 1;
        visibility: visible;
    }

    .owl_thumb_slider .owl-nav.disabled {
        display: none;
    }

.related_product .gd_box__title {
    margin-bottom: 30px;
}

    .related_product .gd_box__title .gd_text {
        border-bottom: 2px solid #0072bc;
    }


/*#endregion */

/*#region ABOUT US */
.module_about {
    padding: 120px 0 50px;
    background: #f5f5f5 url(images/bg_about.jpg) no-repeat center center;
    -moz-transform: skewY(-3deg);
    -ms-transform: skewY(-3deg);
    -o-transform: skewY(-3deg);
    -webkit-transform: skewY(-3deg);
    transform: skewY(-3deg);
    margin-top: -100px;
    margin-bottom: 80px;
}

    .module_about .about_intro {
        -moz-transform: skewY(3deg);
        -ms-transform: skewY(3deg);
        -o-transform: skewY(3deg);
        -webkit-transform: skewY(3deg);
        transform: skewY(3deg);
    }

.about_img {
    text-align: center;
    padding: 0;
}

.tygico_intro {
    position: relative;
    /*height: 250px;*/
    overflow: hidden;
    text-align: justify;
}

    .tygico_intro > .text-center {
        display: none;
    }

    .tygico_intro h1 {
        background: url(icon/icon_quote.png) no-repeat top center;
        text-transform: uppercase;
        font-size: 26px;
        text-align: center;
        padding: 40px 0 15px;
        margin-bottom: 40px;
        position: relative;
    }

        .tygico_intro h1:after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -o-transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: #0072bc;
        }

    .tygico_intro .show_more {
        background: linear-gradient(rgba(255,255,255,0),rgba(255,255,255,.95),#fff);
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 75px 15px 15px;
        font-weight: bold;
        cursor: pointer;
        cursor: pointer;
    }

.about_tygico {
    margin-bottom: 50px;
}

    .about_tygico .about_img {
        margin-top: 30px;
    }

    .about_tygico .gd_readmore .fa {
        display: block;
    }

.gd_ab__item {
    margin-bottom: 30px;
    font-size: 14px;
}

    .gd_ab__item:nth-child(2n) .gd_ab__inner {
        flex-flow: row-reverse;
    }

    .gd_ab__item .gd_title {
        font-size: 30px;
        font-weight: bold;
        font-family: 'Saira', sans-serif;
        text-transform: uppercase;
        border-right: 1px solid #0072bc;
        position: relative;
        min-width: 165px;
        display: flex;
        align-items: center;
        padding-right: 20px;
        text-align: center;
        margin-right: 20px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

        .gd_ab__item .gd_title:before {
            content: attr(data-num);
            font-size: 120px;
            font-weight: 900;
            opacity: 0.1;
            position: absolute;
            left: 50%;
            top: 50%;
            -moz-transform: translate(-50%,-50%);
            -ms-transform: translate(-50%,-50%);
            -o-transform: translate(-50%,-50%);
            -webkit-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
        }

    .gd_ab__item:nth-child(2n) .gd_title {
        border-left: 1px solid #0072bc;
        border-right: 0;
        padding-right: 0;
        padding-left: 20px;
        margin-left: 20px;
        margin-right: 0;
    }

    .gd_ab__item .gd_desc {
        text-align: justify;
    }

    .gd_ab__item:first-child .gd_title {
        flex: 0 0 25%;
    }

    .gd_ab__item:last-child .gd_title {
        flex: 0 0 40%;
    }
/*#endregion */

/*#region ARTICLE */
/*News Item*/
.gd_news__item {
    margin-bottom: 30px;
}

.gd_news__inner {
    display: flex;
    flex-wrap: wrap;
}

.gd_news__image {
    flex: 0 0 100%;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 2px;
}

    .gd_news__image img, .gd_tour__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 300ms ease-in 0ms;
    }

    .gd_news__image:hover img, .gd_tour__image:hover img {
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

.gd_news__content {
    flex: 0 0 100%;
}

.gd_news__meta {
    display: flex;
    justify-content: flex-start;
    border-bottom: 1px solid #515151;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.gd_news__title .gd_text {
    font-size: 18px;
    color: #222222;
    font-weight: 600;
    margin: 15px 0;
    padding: 0;
    display: -webkit-box !important;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gd_news__title:hover .gd_text {
    color: #0072bc;
}

.gd_news__excerpt {
    font-size: 14px;
    color: #222222;
    text-align: justify;
    opacity: 0.8;
}

.gd_readmore {
    cursor: pointer;
    margin-top: 15px;
    display: inline-block;
    padding: 0;
    text-transform: uppercase;
    color: #0072bc;
    font-size: 14px;
    font-family: 'Saira', sans-serif;
    position: relative;
    font-weight: 600;
}

    .gd_readmore:hover {
        color: #005891;
    }

    .gd_readmore:before {
        display: none;
        content: "";
        height: 2px;
        background: #0072bc;
        width: 0;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: all 300ms ease-in 0ms;
    }

    .gd_readmore:hover::before {
        width: 100%;
    }

.gd_load__more .gd_readmore .fa {
    display: block;
}

.gd_load__more {
    color: #0072bc;
    margin-bottom: 30px;
}

    .gd_load__more .fa-spin {
        display: block;
    }

    .gd_load__more .gd_readmore {
        cursor: pointer;
    }

.gd_news__meta .date, .gd_news__meta .views {
    margin-right: 15px;
}

    .gd_news__meta .date i, .gd_news__meta .views i {
        margin-right: 8px;
        color: #0072bc;
    }

.gd_news__meta .share {
}

/*Single*/
.gd_article_single {
}

.gd_news__single .gd_news__meta {
    margin-top: 7px;
    display: flex;
    justify-content: space-between;
    display: none;
}

.gd_news__single .meta_wr {
    display: flex;
}

.gd_single__image {
    border-radius: 15px;
    overflow: hidden;
}

.gd_news__single_title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2a2a2a;
    text-align: left;
}

.gd_news__single_content {
    text-align: justify;
    color: #454545;
    font-size: 14px;
    margin-bottom: 30px;
}

    .gd_news__single_content *:not(table) {
        max-width: 100%;
    }

    .gd_news__single_content ul {
        padding-left: 30px;
    }

    .gd_news__single_content a {
        font-weight: 600;
    }

        .gd_news__single_content a:hover {
            color: #0072bc;
        }

    .gd_news__single_content img {
        max-width: 100%;
        height: auto;
    }

    .gd_news__single_content .table {
        max-width: none;
        width: auto;
        text-align: left;
    }

    .gd_news__single_content .table-bordered td, .gd_news__single_content .table-bordered th {
        border: 1px solid #e5e5e5;
    }
/*Related*/
.gd_article__related .gd_box__title {
    margin-bottom: 30px;
    margin-top: 20px;
    text-align: left;
    border-bottom: 1px solid #e1e1e1;
    padding: 0;
}

    .gd_article__related .gd_box__title .gd_text {
        border-bottom: 2px solid #0072bc;
        display: inline-block;
    }

.gd_related_content .gd_news__image {
    flex: 0 0 100%;
    margin-bottom: 0;
    margin-right: 0;
}

.gd_related_content .gd_news__title .gd_text {
    font-size: 18px;
    display: block;
    line-height: 1.42;
}

.gd_article_slider .owl-nav [class^="owl-"] {
    color: #e5e5e5;
    line-height: 1;
    opacity: 0;
    background: rgba(0, 114, 188,0.85);
    position: absolute;
    text-align: center;
    top: 22.5%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all 0.3s ease-in 0s;
    visibility: hidden;
    z-index: 100;
    height: 40px;
    width: 40px;
    cursor: pointer;
    font-size: 36px;
    border-radius: 3px;
}

.gd_article_slider .owl-prev {
    left: 0;
}

.gd_article_slider .owl-next {
    right: 0;
}

.gd_article_slider:hover .owl-nav [class^="owl-"] {
    opacity: 1;
    visibility: visible;
}

.gd_article_slider .owl-nav.disabled {
    opacity: 0.5;
}
/* In sidebar*/
.widget {
    border: 1px solid #e1e1e1;
    margin-bottom: 30px;
    clear: both;
    float: left;
    width: 100%;
}

    .widget .gd_readmore {
        margin-left: 15px;
        color: #0072bc;
    }

        .widget .gd_readmore::after {
            content: "";
            font-family: "Font Awesome 5 Pro";
            margin-left: 5px;
        }

.widget_nav_menu .gd_widget__title {
    margin: 0;
}

.widget_nav_menu ul.menu {
    padding: 0;
}

.widget_nav_menu li {
    list-style: none;
    position: relative;
}

    .widget_nav_menu li a {
        font-size: 14px;
        color: #222;
        display: inline-block;
        padding: 8px 10px 8px 15px;
        position: relative;
    }

.widget_nav_menu ul.menu > li > a {
    font-weight: 400;
    font-size: 15px;
    border-bottom: 1px dotted #e1e1e1;
    display: block;
    line-height: 1.4;
    padding: 10px 15px 10px 30px;
}

    .widget_nav_menu ul.menu > li > a::after {
        content: "";
        width: 6px;
        height: 6px;
        background: #0072bc;
        border-radius: 50%;
        position: absolute;
        left: 15px;
        top: 19px;
    }

.widget_nav_menu ul.menu li.is-active > a {
    font-weight: 600;
    color: #0072bc;
}

.widget_nav_menu ul.menu > li:last-child > a {
    border-bottom: none;
}

.widget_nav_menu ul.menu li > .togglemenu {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
    width: 35px;
    display: flex;
    min-height: 38px;
    justify-content: flex-end;
    align-items: center;
    visibility: hidden;
    cursor: pointer;
}

.widget_nav_menu ul.menu > li .sub-menu ~ .togglemenu {
    visibility: visible;
}

.widget_nav_menu ul.menu li > .togglemenu::after {
    content: "\f105";
    cursor: pointer;
    font-family: "Font Awesome 5 Pro";
    font-size: 15px;
    padding: 8px 12px;
}

.widget_nav_menu ul.menu li.is-active > .togglemenu::after {
    content: "\f107";
}

.widget_nav_menu ul.menu li.is-active > .sub-menu {
    display: block;
}

.widget_nav_menu li a:hover {
    transition: all 300ms ease-in 0ms;
    color: #0072bc;
}

.widget_nav_menu ul.menu .sub-menu {
    display: none;
    padding-left: 10px;
}

.widget_nav_menu ul.sub-menu li {
    border-top: 1px dashed #e5e5e5;
    position: relative;
}

    .widget_nav_menu ul.sub-menu li:last-child {
        border-bottom: 1px dashed #e5e5e5;
    }

    .widget_nav_menu ul.sub-menu li:first-child {
        border: none;
    }

.widget_nav_menu ul.sub-menu ul.sub-menu li:first-child {
    border-top: 1px dashed #e5e5e5;
}

.widget_nav_menu ul.sub-menu ul.sub-menu li:last-child {
    border-bottom: none;
}

.gd_widget__title {
    position: relative;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 1px solid #e1e1e1;
    padding: 0 15px;
}

    .gd_widget__title::after {
        content: "";
        width: 35%;
        height: 1px;
        background: #0072bc;
        left: 0;
        bottom: 12px;
        position: absolute;
        display: none;
    }

.gd_widget__text {
    font-family: 'Saira', sans-serif;
    font-weight: bold;
    border-bottom: 2px solid #0072bc;
    display: inline-block;
    padding: 5px 0;
    font-size: 21px;
}

.gd_widget_article {
    clear: both;
}

.gd_widget__content {
    width: 100%;
    float: left;
}

.gd_widget_article .gd_news__item {
    width: 100%;
    float: left;
    padding: 15px;
    border-bottom: 1px dotted #e1e1e1;
    margin: 0;
}

    .gd_widget_article .gd_news__item:last-child {
        border: none;
    }

.gd_widget_article .gd_news__inner {
    display: flex;
    flex-wrap: nowrap;
}

.gd_widget_article .gd_news__image {
    width: 80px;
    flex: 0 0 80px;
    height: 50px;
    margin-right: 15px;
}

.gd_widget_article .gd_news__content {
    flex: auto;
}

.gd_widget_article .gd_news__title {
    margin-top: -3px;
}

    .gd_widget_article .gd_news__title .gd_text {
        font-size: 14px;
        line-height: 1.5;
        font-weight: 600;
        text-align: left;
        height: 3.05em;
        overflow: hidden;
        margin: 0;
        display: -webkit-box;
        max-width: 100%;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        padding: 0;
    }

    .gd_widget_article .gd_news__title:hover .gd_text {
        color: #0072bc;
    }

.gd_widget_article .gd_date i {
    color: #0072bc;
}

/*#endregion */

/*#region VIDEO PAGE */
.gd_video__inner {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

    .gd_video__inner:hover .gd_video__content {
        bottom: 0;
        visibility: visible;
        transform: translate3d(0,0,0);
    }

.gd_video__content {
    background: rgba(0,114,188,0.8);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: transform .35s;
    visibility: hidden;
    -moz-transform: translate3d(0,100%,0);
    -ms-transform: translate3d(0,100%,0);
    -o-transform: translate3d(0,100%,0);
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
    padding: 15px;
    width: 100%;
}

.gd_video__image {
    margin: 0;
}

    .gd_video__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.gd_video__content .gd_text {
    color: #fff;
    font-size: 14px;
    margin: 0;
    font-family: 'Saira', sans-serif;
}

.video-link .fa.fa-youtube-play {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 48px;
    color: #CC0000;
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
/*show video*/
.gd_video__container {
    position: fixed;
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
    z-index: 999;
    overflow: auto;
    background: rgba(0, 0, 0, 0.85);
    visibility: hidden;
}

    .gd_video__container.active {
        visibility: visible;
    }

.gd_video__wrap {
    max-width: 800px;
    width: 80%;
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid rgba(255,255,255,0.5);
    border-radius: 5px;
}

.video_closed {
    position: absolute;
    background: #df0024;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    font-size: 25px;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    border: 1px solid #df0024;
    padding-top: 1px;
}

.gd_video__wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
}
/*#endregion */

/*#region FAQ */

.faq_listing {
    margin-bottom: 50px;
}

    .faq_listing .gd_faq__title.card-header {
        border-radius: 0;
        background: transparent;
        margin-bottom: 0;
    }

        .faq_listing .gd_faq__title.card-header a {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq_listing .gd_faq__title.card-header .card-title {
            font-size: 15px;
            font-family: 'Saira', sans-serif;
            margin: 0;
            color: #222;
        }

        .faq_listing .gd_faq__title.card-header a[aria-expanded="true"] .card-title {
            color: #0072bc;
        }

    .faq_listing .gd_faq__title .gd_date {
        display: none;
    }

    .faq_listing .gd_faq__title .act-hide {
        display: none;
        font-size: 15px;
        color: #0072bc;
        white-space: nowrap;
    }

    .faq_listing .gd_faq__title .act-show {
        font-size: 15px;
        color: #0072bc;
        white-space: nowrap;
    }

    .faq_listing .gd_faq__title a[aria-expanded="true"] .act-hide {
        display: block;
    }

    .faq_listing .gd_faq__title a[aria-expanded="true"] .act-show {
        display: none;
    }

    .faq_listing .accordion .gd_faq__item {
        margin-bottom: 15px;
        border-radius: 0;
        border-bottom: 1px solid rgba(0,0,0,.125);
    }

    .faq_listing .gd_faq__excerpt.card-body {
        font-size: 15px;
        background: #f8f8f8;
        border-bottom: 1px solid rgba(0,0,0,.125);
    }

    .faq_listing .gd_faq__excerpt .reply {
        display: block;
        font-weight: bold;
    }

/*#endregion */

/*#region CONTACT */
.page-contact {
    position: relative;
    z-index: 100;
    background: #fff;
    margin-bottom: -70px;
}

.gd_contact_content {
    padding-top: 15px;
}

.gd_map {
    clear: both;
    height: 600px;
}

.gd_skew {
    -moz-transform: skewY(-5deg);
    -ms-transform: skewY(-5deg);
    -o-transform: skewY(-5deg);
    -webkit-transform: skewY(-5deg);
    transform: skewY(-3deg);
    position: relative;
    z-index: 99;
    overflow: hidden;
    background: #fff;
    margin-bottom: 45px;
}

.skew_item {
    -moz-transform: skewY(5deg);
    -ms-transform: skewY(5deg);
    -o-transform: skewY(5deg);
    -webkit-transform: skewY(5deg);
    transform: skewY(3deg);
}

#map {
    width: 100%;
    height: 655px;
    margin-top: -70px;
}

.gd_contact_content .site_title {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.2;
}

.gd_contact_content address {
    margin-bottom: 20px;
    font-size: 14px;
}

    .gd_contact_content address > span {
        display: block;
    }

.form-contact .RadInputMgr, .form-contact .form-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    font-family: Open Sans;
    font-size: 14px;
    border-radius: 2px;
}

    .form-contact .RadInputMgr:focus {
        color: #495057;
        background-color: #fff;
        border-color: #80bdff;
        outline: 0;
        box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
    }

    .form-contact .form-control:placeholder {
        color: #495057;
    }

.form-contact .control-label {
    display: none;
}

.form-contact textarea.form-control {
    height: auto;
}

.wrap_col .form-group {
    width: 49%;
    margin-right: 1%;
    float: left;
}

    .wrap_col .form-group:nth-child(2n) {
        margin-right: 0;
        margin-left: 1%;
    }

.form-contact .RadInput_Error_Default {
    color: var(--red);
    font-size: 14px;
    background-position: 96% -290px;
}

.btn-contact .btn-primary {
    background: #0072bc;
    border-radius: 5px;
    position: relative;
    border-color: #0072bc;
    padding: 10px 50px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    font-family: 'Saira', sans-serif;
    text-align: center;
    margin: 20px auto 50px;
    transition: all 300ms ease-in 0ms;
    display: inline-block;
    text-transform: uppercase;
    line-height: 1;
}

    .btn-contact .btn-primary:hover {
        background: #005891;
        color: #fff;
    }

    .btn-contact .btn-primary i {
        margin-right: 10px;
    }
/*#endregion */

/*#region OTHER PAGE */
/*Download*/
.page-download {
    margin-bottom: 40px;
}

.gd_button_group {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

    .gd_button_group .gd_btn {
        background: #CCE3F1;
        margin: 0 10px;
        border: 1px solid #CCE3F1;
        text-transform: uppercase;
        text-align: center;
        padding: 10px 30px;
        font-family: 'Saira',sans-serif;
    }

        .gd_button_group .gd_btn.active, .gd_button_group .gd_btn:hover {
            background: #0072bc;
            border: 1px solid #0072bc;
            color: #fff;
            font-weight: 600;
        }

.gd_download__list {
    max-width: 970px;
    margin: auto;
}

    .gd_download__list thead {
        background: #CCE3F1;
    }

.search_document {
    justify-content: center;
}

    .search_document .input-text {
        width: 80%;
        font-size: 14px;
        font-style: italic;
        padding: 3px 15px;
        border-radius: 5px 0 0 5px;
        border: 1px solid #d1d1d1;
    }

    .search_document input[type="submit"] {
        background: #0072bc;
        color: #fff;
        border-radius: 0 5px 5px 0;
        border: 1px solid #0072bc;
        font-size: 14px;
    }

.gd_down .aDownLoad {
    font-size: 20px;
    line-height: 1;
}

.gd_down span {
    display: block;
    line-height: 1;
    font-size: 14px;
    color: #0072bc;
}

.table-bordered td, .table-bordered th {
    border: 1px solid #d1d1d1;
    vertical-align: middle;
}

.gd_download__list .table-bordered th {
    text-align: center;
}

/*Brand*/
.gd_brand {
    box-shadow: 0 -3px 5px #e5e5e5;
}

.brand .owl-item .item {
    display: flex;
    align-items: center;
    height: 70px;
    margin: 15px 0;
}

    .brand .owl-item .item a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .brand .owl-item .item img {
        width: auto;
        max-height: 100%;
    }

.brand .owl-nav [class^="owl-"] {
    color: #fff;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all 0.3s ease-in 0s;
    visibility: hidden;
    z-index: 100;
    height: 30px;
    width: 30px;
    cursor: pointer;
    font-size: 22px;
    background: #d3d3d3;
    border-radius: 50%;
    line-height: 1;
    padding-top: 2px;
    box-shadow: 0 0 10px #d3d3d3;
}

.brand .owl-prev {
    left: -15px;
}

.brand .owl-next {
    right: -15px;
}

.brand:hover .owl-nav [class^="owl-"] {
    opacity: 1;
    visibility: visible;
}

.brand .owl-nav.disabled {
    display: none;
}
/*#endregion */

/*#region FOOTER */
.gd_footer_wr {
    margin-top: -70px;
}

.gd_social {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

    .gd_social a {
        width: 35px;
        line-height: 33px;
        border-radius: 50%;
        color: #dadada;
        font-size: 16px;
        display: inline-block;
        text-align: center;
        margin-top: 3px;
        margin-left: 10px;
        border: 1px solid #dadada;
    }

        .gd_social a.zalo {
            height: 40px;
            /*filter: grayscale(100%);*/
        }

            .gd_social a.zalo i {
                height: 20px;
                width: 20px;
                display: inline-block;
                background: url('icon/zalo_icon.png') no-repeat center center;
                margin-top: 10px;
            }

        .gd_social a.facebook:hover {
            background: #3D5B96;
            border: 1px solid #3D5B96;
        }

        .gd_social a.google:hover {
            background: #DD3F34;
            border: 1px solid #DD3F34;
        }

        .gd_social a.youtube:hover {
            background: #cc181e;
            border: 1px solid #cc181e;
        }

        .gd_social a.zalo:hover {
            background: rgba(255,255,255,0.1);
        }

.gd_logo_ft {
    position: relative;
}

    .gd_logo_ft::after {
        content: "";
        height: 100%;
        right: 15px;
        width: 1px;
        background: #ccc;
        position: absolute;
        top: 6px;
    }

.gd_footer_content {
    color: #fff;
    font-size: 14px;
    text-shadow: 0 0 0.015rem;
}

    .gd_footer_content .gd_inner {
        margin-left: -15px;
        margin-right: -15px;
    }

    .gd_footer_content .gd_info_company .gd_inner, .gd_footer_content .gd_address .gd_inner, .gd_footer_content .gd_address_sub .gd_inner, .gd_footer_content .gd_reward {
        padding-top: 130px;
    }

    .gd_footer_content .gd_info_company .gd_inner {
        background: rgba(0,114,188,0.6);
        position: relative;
        height: 100%;
    }

    .gd_footer_content .gd_info_company::before {
        background: url(images/bg_map1.jpg) no-repeat bottom left;
        content: "";
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        z-index: -1;
        background-size: auto 100%;
    }

    .gd_footer_content .gd_info_company {
        background: url(images/bg_map1.jpg) no-repeat bottom left;
    }

    .gd_footer_content .gd_address {
        background: rgba(0,114,188,0.4) url(images/bg_map1.jpg) no-repeat bottom right;
        background-size: cover;
    }

        .gd_footer_content .gd_address .gd_inner {
            padding-left: 30px;
            padding-right: 30px;
        }

    .gd_footer_content .gd_address_sub {
        background: rgba(0,114,188,0.6) url(images/bg_map2.jpg) no-repeat bottom left;
        background-size: cover;
    }

        .gd_footer_content .gd_address_sub .gd_inner {
            padding-left: 30px;
            padding-right: 30px;
        }

    .gd_footer_content .gd_reward {
        background: #fff;
        padding-top: 50px;
        text-align: right;
    }

    .gd_footer_content p.title {
        font-size: 18px;
        font-family: 'Saira', sans-serif;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

.gd_info_company .fa {
    color: #0072bc;
    font-size: 13px;
    background: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 22px;
    margin-right: 10px;
}

.gd_info_company address p {
    margin-bottom: 10px;
    display: flex;
    font-size: 14px;
}

    .gd_info_company address p > a {
        color: #fff;
        margin-left: 5px;
    }
.gd_footer_content img {width: 70% !important;}
.gd_footer_content a {
    color: #fff;
}

    .gd_footer_content a:hover {
        font-weight: 600;
    }

.gd_footer_copyright {
    text-align: center;
    font-size: 14px;
    color: #ccc;
    background: #263b7a;
    padding: 15px 0;
    line-height: 1;
}

    .gd_footer_copyright a {
        color: #fff;
    }

.gd_copyright, .gd_design {
    display: inline-block;
}

.gd_copyright {
    color: #fff;
}

.gd_design {
    display: none;
}
/*#endregion */

/*#region OTHER */
/*======================================
1. BackToTop -Fixed
======================================*/

.fixed_right ul li {
    position: relative;
    margin-bottom: 25px;
}

.fixed_right {
    position: fixed;
    right: -10px;
    top: 55%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1000;
}

    .fixed_right ul {
        list-style: none;
        display: flex;
        flex-flow: column;
    }

        .fixed_right ul li .play-now {
            position: static;
            display: block;
        }

            .fixed_right ul li .play-now .icon {
                font-size: 24px;
                background-color: #005891;
                box-shadow: none;
            }

            .fixed_right ul li .play-now.zalo {
                background: #005891 url(images/icon_zalo.png) no-repeat center center;
            }
/*#back-to-top {
    height: 40px;
    width: 40px;
    background: #ff4208;
    border: none;
    position: fixed;
    right: 15px;
    bottom: 15px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    cursor: pointer;
    display: none;
    text-align: center;
    z-index: 999;
    color: #fff;
    border-radius: 50%;
}*/
#back-to-top {
    margin-top: 30px;
}

    #back-to-top span {
        color: #fff;
        display: block;
        font-size: 25px;
        position: relative;
        animation: vibrate 2s linear 0s infinite;
        -moz-animation: vibrate 2s linear 0s infinite;
        -webkit-animation: vibrate 2s linear 0s infinite;
        -o-animation: vibrate 2s linear 0s infinite;
    }

    #back-to-top:hover span {
        background: #0072bc;
    }

@keyframes vibrate {
    0% {
        top: 0px;
    }

    25% {
        top: -3px;
    }

    50% {
        top: 0px;
    }

    75% {
        top: 3px;
    }

    100% {
        top: 0px;
    }
}
/* Firefox */
@-moz-keyframes vibrate {
    0% {
        top: 0px;
    }

    25% {
        top: -3px;
    }

    50% {
        top: 0px;
    }

    75% {
        top: 3px;
    }

    100% {
        top: 0px;
    }
}
/* Safari and Chrome */
@-webkit-keyframes vibrate {
    0% {
        top: 0px;
    }

    25% {
        top: -3px;
    }

    50% {
        top: 0px;
    }

    75% {
        top: 3px;
    }

    100% {
        top: 0px;
    }
}
/* Opera */
@-o-keyframes vibrate {
    0% {
        top: 0px;
    }

    25% {
        top: -3px;
    }

    50% {
        top: 0px;
    }

    75% {
        top: 3px;
    }

    100% {
        top: 0px;
    }
}
/*======================================
2. animated play btn, call hotline
======================================*/
.play-now {
    position: fixed;
    left: 40px;
    bottom: -5px;
    display: none;
    border-radius: 50%;
    z-index: 10;
    width: 50px;
    height: 50px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    transform-origin: center center;
}

.fixed_right ul li .play-now .num {
    height: 40px;
    display: flex;
    white-space: nowrap;
    position: absolute;
    align-items: center;
    background: #fff;
    top: 5px;
    border-radius: 0 25px 25px 0;
    right: 0;
    border-left: 3px solid #005891;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    padding: 5px;
    color: red;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -1px;
    text-shadow: 0 2px 1px rgba(0,0,0,0.25);
    overflow: hidden;
    z-index: -1;
    font-style: italic;
    opacity: 0;
    width: 0px;
    transition: all .3s ease-in-out;
    padding: 5px 65px 5px 15px;
    -webkit-animation-name: goRight;
    animation-name: goRight;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

/*.fixed_right ul li .play-now:hover .num {
    padding: 5px 65px 5px 15px;
    -webkit-animation-name: goRight;
    animation-name: goRight;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}*/

.play-now .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    background-color: #50aab2;
    color: #fff;
    z-index: 1;
    font-size: 18px;
    padding-left: 0px;
    display: block;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform-origin: center;
    transform-origin: center center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 5px 10px 0 rgba(80, 170, 178, .1);
    -moz-box-shadow: 0 5px 10px 0 rgba(80, 170, 178, .1);
    -ms-box-shadow: 0 5px 10px 0 rgba(80, 170, 178, .1);
    -o-box-shadow: 0 5px 10px 0 rgba(80, 170, 178, .1);
    box-shadow: 0 5px 10px 0 rgba(80, 170, 178, .1);
}

.play-now .ripple,
.play-now .ripple:before,
.play-now .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 44px;
    width: 44px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform-origin: center;
    transform-origin: center center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(80, 170, 178, .3);
    -moz-box-shadow: 0 0 0 0 rgba(80, 170, 178, .3);
    -ms-box-shadow: 0 0 0 0 rgba(80, 170, 178, .3);
    -o-box-shadow: 0 0 0 0 rgba(80, 170, 178, .3);
    box-shadow: 0 0 0 0 rgba(80, 170, 178, .3);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

    .play-now .ripple:before {
        -webkit-animation-delay: .9s;
        -moz-animation-delay: .9s;
        -ms-animation-delay: .9s;
        -o-animation-delay: .9s;
        animation-delay: .9s;
        content: "";
        position: absolute;
    }

    .play-now .ripple:after {
        -webkit-animation-delay: .6s;
        -moz-animation-delay: .6s;
        -ms-animation-delay: .6s;
        -o-animation-delay: .6s;
        animation-delay: .6s;
        content: "";
        position: absolute;
    }

@-webkit-keyframes goRight {
    0% {
        opacity: 0;
        width: 0px;
    }

    100% {
        opacity: 1;
        width: auto;
    }
}

@-webkit-keyframes ripple {
    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
/*======================================
3. Paged
======================================*/
.gd_paged {
    text-align: center;
}

    .gd_paged a {
        border: 1px solid #e8e8e8;
        box-shadow: none;
        display: inline-block;
        height: 35px;
        line-height: 33px;
        margin-right: 8px;
        width: 35px;
        text-align: center;
    }

        .gd_paged .num.select, .gd_paged a:hover {
            border-color: #0072bc;
            background: #0072bc;
            border-radius: 0;
            color: #fff;
        }

        .gd_paged a:last-child {
            margin: 0;
        }

    .gd_paged .next > a, .gd_paged .next > span {
        float: none;
    }

    .gd_paged .prev > a, .gd_paged .prev > span {
        float: none;
    }

/*======================================
4. Paged
======================================*/
#FixedISO {
    position: fixed;
    left: 0;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 100;
}

    #FixedISO ul {
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        flex-flow: column;
    }

        #FixedISO ul li {
            margin-bottom: 10px;
        }
/*#endregion */

/*#region ANIMATION */
[class^="module"] {
}

.about_desc h1, .about_desc p,
.module_service .gd_box__title, .article_service, .gd_hlindex .item, .gd_info_company, .gd_address, .gd_address_sub, .gd_reward {
    opacity: 0;
}

.module_product .tab-heading, .module_product .tab-content {
}

.b-show .about_desc h1 {
    -webkit-animation: fadeInRight;
    animation: fadeInRight;
    -webkit-animation-duration: 0.9s;
    animation-duration: 0.9s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.b-show .about_desc p {
    -webkit-animation: fadeInRight;
    animation: fadeInRight;
    -webkit-animation-duration: 0.9s;
    animation-duration: 0.9s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.b-show .about_intro .about_img img {
    -webkit-animation: flipInX;
    animation: flipInX;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.b-show .tab-heading {
    -webkit-animation: fadeInDown;
    animation: fadeInDown;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.b-show .tab-content {
    -webkit-animation: fadeInUp;
    animation: fadeInUp;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.b-show.module_service .gd_box__title {
    -webkit-animation: fadeInDown;
    animation: fadeInDown;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.b-show .article_service {
    -webkit-animation: fadeInUp;
    animation: fadeInUp;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.b-show .gd_news__home {
    -webkit-animation: slideInLeft;
    animation: slideInLeft;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.b-show .gd_job__home {
    -webkit-animation: slideInRight;
    animation: slideInRight;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.b-show.gd_hlindex .item {
    -webkit-animation: fadeInUp;
    animation: fadeInUp;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

    .b-show.gd_hlindex .item:nth-child(2) {
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .b-show.gd_hlindex .item:nth-child(3) {
        -webkit-animation-delay: 0.9s;
        animation-delay: 0.9s;
    }

    .b-show.gd_hlindex .item:nth-child(4) {
        -webkit-animation-delay: 1.2s;
        animation-delay: 1.2s;
    }

    .b-show.gd_hlindex .item:nth-child(5) {
        -webkit-animation-delay: 1.5s;
        animation-delay: 1.5s;
    }

    .b-show.gd_hlindex .item:nth-child(6) {
        -webkit-animation-delay: 1.8s;
        animation-delay: 1.8s;
    }

.b-show .gallery_home {
    -webkit-animation: slideInRight;
    animation: slideInRight;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.b-show .gd_brand {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.b-show .gd_footer_content .col-12 {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 0.9s;
    animation-duration: 0.9s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.b-show .gd_info_company {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.b-show .gd_address {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.b-show .gd_address_sub {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.b-show .gd_reward {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.b-show .ani {
    -webkit-animation: goLeft;
    animation: goLeft;
    -webkit-animation-duration: 0.9s;
    animation-duration: 0.9s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
/*#endregion */
