﻿/*#region HEADER */
.home .gd_header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
}

.home .gd_header_content {
    background: rgba(24,25,27,0.75);
}

.home .gd_hotline__box a {
    border-left: 1px solid #3b3d3f;
    border-right: 1px solid #3b3d3f;
}

    .home .gd_hotline__box a:first-child {
        border: none;
    }

.home ul.gd_menu__top li > a {
    border-right: 1px solid #3b3d3f;
}

.home .gd_search__box .search-icon {
    border: 1px solid #fff;
    color: #fff;
}

.gd_main_menu .gd_menu__primary > li > a {
    color: #fff;
}

/*#endregion */

/*#region GLOBAL */
.gd_readmore {
    margin-top: 15px;
    display: block;
    padding: 5px 15px;
    color: #AC834B;
    font-size: 14px;
    border: 1px solid #AC834B;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 25px;
}

[class^="module_"] {
    color: #333;
    font-family: 'Open Sans', sans-serif;
}

    [class^="module_"] a {
        color: #333;
        font-family: 'Open Sans', sans-serif;
    }

    [class^="module_"] .gd_box__title {
        text-align: center;
        position: relative;
    }

        [class^="module_"] .gd_box__title .gd_text {
            font-size: 35px;
            text-transform: uppercase;
            color: #d6d6d6;
            margin-bottom: 50px;
            font-family: 'Baumans', sans-serif;
            font-weight: bold;
            position: relative;
            letter-spacing: 3px;
        }

        [class^="module_"] .gd_box__title a .gd_text:hover {
        }

        [class^="module_"] .gd_box__title .gd_text span {
            font-weight: 500;
        }

        [class^="module_"] .gd_box__title::after, [class^="module_"] .gd_box__title::before {
            content: "";
            width: 170px;
            height: 1px;
            background: #AC834B;
            bottom: -15px;
            position: absolute;
        }

        [class^="module_"] .gd_box__title::after {
            left: 52%;
        }

        [class^="module_"] .gd_box__title::before {
            right: 52%;
        }

        [class^="module_"] .gd_box__title a .gd_text::before {
            content: "";
            width: 6px;
            height: 6px;
            background: #AC834B;
            bottom: -17px;
            position: absolute;
            border-radius: 50%;
            transform: translateX(-50%);
            left: 50%;
        }
/*#endregion */

/*#region BANNER*/
.gd_banner {
    clear: both;
    position: relative;
}

    .gd_banner .owl-nav [class^="owl-"] {
        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.3s ease-in 0s;
        visibility: hidden;
        z-index: 100;
        height: 65px;
        width: 40px;
        cursor: pointer;
    }

    .gd_banner .owl-prev {
        background: url(../images/icon/icon_next_prev.png) no-repeat left center;
        left: 25px;
    }

    .gd_banner .owl-next {
        background: url(../images/icon/icon_next_prev.png) no-repeat right center;
        right: 25px;
    }

    .gd_banner:hover .owl-nav [class^="owl-"] {
        opacity: 1;
        visibility: visible;
    }

    .gd_banner .owl-nav.disabled {
        display: none;
    }

.gd_banner_item {
    height: 100vh;
    overflow: hidden;
}

.gd_banner_image {
    margin: 0;
    width: 100%;
    height: 100vh;
}

    .gd_banner_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.wheel, .wheel-b {
    border: 1px solid rgba(255,255,255,1);
    width: 30px;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    height: 54px;
    position: absolute;
    left: 50%;
    bottom: 40px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    opacity: 1;
    pointer-events: none;
    z-index: 20;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.wheel-b {
    left: 50%;
    margin-top: 150px;
    position: absolute;
    opacity: 1;
    -webkit-animation: fadeInUp;
    animation: fadeInUp;
    -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;
}

    .wheel::before, .wheel-b::before {
        content: " ";
        width: 2px;
        height: 35px;
        background-color: #fff;
        top: -47px;
        left: 50%;
        position: absolute;
    }

    .wheel::after, .wheel-b::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        background-color: #fff;
        width: 5px;
        height: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        -webkit-animation: trackBallSlide 3s linear infinite;
        animation: trackBallSlide 3s linear infinite;
    }

@-webkit-keyframes trackBallSlide {
    0% {
        opacity: 1;
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
    }

    15% {
        opacity: 0;
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    30% {
        opacity: 1;
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
    }
}

@keyframes trackBallSlide {
    0% {
        opacity: 1;
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
    }

    15% {
        opacity: 0;
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    30% {
        opacity: 1;
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
    }
}
/*#endregion BANNER*/

/*#region SERVICE */
.module_service {
    padding: 60px 0;
    background: #333333;
}

.gd_service__inner {
    position: relative;
}

.gd_service__image {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
}

    .gd_service__image img {
        width: 100%;
    }

.gd_service__item .gd_text {
    color: #d6d6d6;
    text-transform: uppercase;
    font-family: Averta;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

    .gd_service__item .gd_text:hover {
        color: #AC834B;
    }

.gd_service__content {
    z-index: 1;
    color: #ccc;
    text-align: center;
    justify-content: center;
    transition: all 300ms ease-in-out 0ms;
    margin-bottom: 20px;
}
.gd_service__excerpt {
    height: 7.5rem;
    overflow: hidden;
    line-height: 1.5rem;
}
.gd_service__item .gd_readmore {
    color: #AC834B;
    text-align: center;
}

    .gd_service__item .gd_readmore:before {
        display: none;
    }

    .gd_service__item .gd_readmore:hover {
        background: #AC834B;
        color: #fff;
    }

/*#endregion */

/*#region PRODUCT CAT */
.module_product_cat {
    background: url(../images/bg_category.jpg) no-repeat center center;
    background-size: cover;
    padding: 60px 0 50px;
}

.gd_cat__inner {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.gd_cat__image {
    background: #333;
}

    .gd_cat__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.gd_cat__content {
    margin-bottom: 15px;
}

.gd_cat__title {
}

    .gd_cat__title .gd_text {
        color: #333;
        text-align: left;
        font-size: 16px;
        font-weight: 600;
        padding: 0 15px;
    }

.gd_cat__except {
    color: #222;
    text-align: justify;
    padding: 0 15px;
}

.module_product_cat .owl-nav [class^="owl-"] {
    color: #e5e5e5;
    line-height: 1;
    opacity: 0;
    background: rgba(172, 131, 75,0.5);
    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: 40px;
    width: 40px;
    cursor: pointer;
    font-size: 36px;
}

.module_product_cat .owl-prev {
    left: -50px;
}

.module_product_cat .owl-next {
    right: -50px;
}

.module_product_cat:hover .owl-nav [class^="owl-"] {
    opacity: 1;
    visibility: visible;
}

.gd_p__item {
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

.gd_product_cat .gd_readmore {
    width: 33.3333%;
    margin: 15px auto 0;
    color: #AC834B;
}

    .gd_product_cat .gd_readmore:hover {
        background: #AC834B;
        color: #fff;
    }

.gd_p__image {
    width: 100%;
    float: left;
    overflow: hidden;
    background: #333;
    border-radius: 10px;
    box-shadow: 0 0 3px #18191b;
}

    .gd_p__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 500ms ease-in 0ms;
    }

    .gd_p__image:hover {
        border: 1px solid #AC834B;
    }

        .gd_p__image:hover img {
            transform: scale(1.1);
            opacity: 0.5;
        }

.gd_p__content {
    width: 100%;
    float: left;
}

.gd_p__title .gd_text {
    color: #AC834B;
    font-size: 14px;
    line-height: 1.5em;
    /*height: 3em;*/
    overflow: hidden;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 0;
}

    .gd_p__title .gd_text:hover {
        color: #fff;
    }

.gd_p__tax a {
    color: #ccc;
    text-align: center;
    display: block;
}

.module_product_tab {
    padding: 60px 0 40px;
}

.list_tax_product {
    margin-bottom: 30px;
}

    .list_tax_product ul {
        list-style: none;
        display: flex;
        justify-content: space-between;
    }

        .list_tax_product ul li {
            text-transform: uppercase;
            color: #ccc;
        }

            .list_tax_product ul li a {
                color: #ccc;
                border-radius: 25px;
                text-transform: uppercase;
                padding: 8px 15px;
                white-space: nowrap;
            }

                .list_tax_product ul li a.active, .list_tax_product ul li:hover a {
                    background: #AC834B;
                    color: #fff;
                }

.module_product_tab .gd_readmore {
    width: 33.3333%;
    margin: 15px auto 0;
    color: #AC834B;
}

    .module_product_tab .gd_readmore:hover {
        background: #AC834B;
        color: #fff;
    }
/*#endregion */

/*#region ARTICLE */
.module_article {
    padding: 50px 0;
}

.gd_article_home_list {
    clear: both;
}

.gd_post__item {
    width: 33.3333%;
}

.gd_post__inner {
    position: relative;
}

.gd_post__content {
    position: absolute;
    left: 0;
    color: #fff;
    bottom: 0;
    padding: 30px 15px;
}

.gd_post__title .gd_text {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
}

    .gd_post__title .gd_text:hover {
        color: #fff;
    }

.gd_post__title a:hover {
    color: #fff;
    text-decoration: underline;
}

.gd_post__meta {
    font-weight: 300;
}

    .gd_post__meta .date i {
        margin-right: 8px;
    }

.gd_post__excerpt {
    font-weight: 300;
    height: 0;
    overflow: hidden;
    transition: all 300ms ease-in 0ms;
}

.gd_post__item:first-child .gd_post__excerpt, .gd_post__item:hover .gd_post__excerpt {
    border-top: 1px solid #cccbc6;
    height: auto;
    padding-top: 15px;
    margin-top: 10px;
}

.gd_post__image {
    position: relative;
    margin: 0;
    overflow: hidden;
}

    .gd_post__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gd_post__image::after {
        background: rgba(0, 0, 0, 0) linear-gradient(to top, rgba(0, 0, 0,.75) 0%, rgba(0, 0, 0, 0.5) 25%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.05) 75%, rgba(0, 0, 0, 0) 100%) repeat scroll 0 0;
        bottom: 0;
        content: "";
        height: 100%;
        left: 0;
        position: absolute;
        width: 100%;
    }

.module_flight {
    background: url('../images/bg_flight.jpg') no-repeat center center;
    background-size: cover;
    padding: 50px 0 35px;
}

    .module_flight .flight-grids-wrap {
        margin-left: -15px;
        margin-right: -15px;
    }

    .module_flight .gd_post__inner {
        padding: 15px;
    }

    .module_flight .gd_post__item:first-child {
        width: 66.6666%;
    }

    .module_flight .gd_post__image {
        border-radius: 15px;
    }

    .module_flight .gd_post__content {
        padding: 30px;
    }
/*#endregion */

/*#region RESPONSIVE*/
@media only screen and (min-width : 1200px) {
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .gd_service__content p span {
        font-size: 55px;
    }

    .gd_service__content .gd_readmore {
        margin: 0;
    }

    .consulting__wr {
        flex-wrap: wrap;
        justify-content: center;
    }

    .form_consulting {
        flex: 0 0 100%;
        text-align: center;
    }

    .video-link figcaption {
        width: 80%;
    }
}

@media screen and (max-width:991px) {
    .home .gd_header {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 100;
    }

    .home .gd_header_top {
        background: #AC834B;
    }

    .home .gd_header_content {
        border-bottom: 0;
    }

    .home .gd_hotline__box a {
        border-left: 1px solid #AC834B;
        border-right: 1px solid #AC834B;
    }

        .home .gd_hotline__box a:first-child {
            border: none;
        }

    .home ul.gd_menu__top li > a {
        border-right: 1px solid #3b3d3f;
    }

    .home .gd_search__box .search-icon {
        border: 1px solid #fff;
        color: #fff;
    }
}

@media screen and (max-width:767px) {
    .video-wrap {
        width: calc(100% - 20px);
    }
}

@media screen and (max-width:575px) {
    .list_tax_product ul {
        flex-flow: wrap;
    }

        .list_tax_product ul li {
            margin-bottom: 15px;
        }

    .gd_service__item {
        margin-bottom: 30px;
    }

    [class^="module_"] .gd_box__title .gd_text {
        font-size: 22px;
        margin-top: 0;
    }

    .about_image {
        text-align: center;
        display: none;
    }

    .about_introduction {
        padding-left: 15px !important;
    }

    .about_content {
        padding: 30px 0;
    }

    .about_introduction h1 {
        font-size: 26px;
    }

    .gd_service__inner {
        border-left: none;
        border-radius: 0;
    }

    .gd_service__item:first-child .gd_service__inner {
        border-left: none;
        border-radius: 0;
    }

    .gd_service__item:last-child .gd_service__inner {
        border-radius: 0;
    }

    .module_visa {
        padding: 30px 0;
    }

    .module_whychooseus {
        padding: 30px 0 0;
    }

        .module_whychooseus .gd_item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .module_whychooseus .icon_wrap {
            flex-shrink: 0;
            margin-right: 15px;
            width: 20%;
        }

        .module_whychooseus .text_title {
            margin-bottom: 0;
        }

    .form_consulting_area {
        margin-top: 0;
    }

    .consulting__wr {
        flex-wrap: wrap;
    }

    .form_consulting {
        padding: 20px 0 30px 0;
        text-align: center;
        flex: 0 0 100%;
    }

        .form_consulting label {
            font-size: 26px;
        }

        .form_consulting::before {
            border-radius: 0;
            padding: 0;
            background: rgba(0,166,81,0.85);
            right: -10%;
        }

        .form_consulting input[type="tel"] {
            width: 100%;
        }

        .form_consulting input[type="submit"] {
            margin-top: 10px;
            margin-left: 0;
        }

    .ext_link {
        display: none;
    }

    .module_tour {
        padding: 30px 0 20px;
    }

    .module_flight {
        padding: 30px 0 35px;
    }

    .module_article {
        padding: 30px 0;
    }

    .module_video figure img {
        height: 270px;
        width: auto;
        max-width: unset;
    }

    .video-link figcaption {
        width: 80%;
    }

    .module_testimonial .gd_box__title .gd_text {
        margin-bottom: 20px;
    }

    .gd_tes__items {
        padding: 0;
    }

    .gd_tes__item {
        flex-wrap: wrap;
    }

    .gd_tes__image {
        width: 75px;
        height: 75px;
        position: absolute;
        margin: 0;
        top: 0;
    }

    .tes_name {
        padding-left: 85px;
    }

    .test_job {
        padding-left: 85px;
    }

    .gd_tes__content {
        margin-top: 10px;
    }

    .tes_content::after {
        float: right;
    }

    .gd_post__item {
        width: 100%;
    }

    .module_flight .flight-grids-wrap {
        margin: 0;
    }

    .module_flight .gd_post__inner {
        padding: 15px 0;
    }

    .module_flight .gd_post__item:first-child {
        width: 100%;
    }

    .module_flight .gd_post__content {
        padding: 30px 15px;
    }

    .gd_hotel__excerpt .price {
        justify-content: flex-start;
    }
}
/*#endregion RESPONSIVE*/
