
/*========================= khai custom ==================================*/

.k-pad-left-5 {
    padding-left: 5px;
}

.k-pad-right-5 {
    padding-right: 5px;
}

.k-banner-home .k-wrap-img-banner {
    height: 500px;
    background-size: cover !important;
    width: 100%;
    margin: 0 auto;
    background-position: center;
    padding-top: 200px;
    position: relative;
}

.k-banner-home .k-wrap-img-banner span {

    position: absolute;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    text-transform: uppercase;
    font-size: 90px;
    letter-spacing: 4px;
    opacity: 1;
    visibility: visible;
    width: 100%;
    padding: 30px;
    text-align: center;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    max-width: 600px;
    background: #ffffff47;
    line-height: 90px;
}
.k-banner-home .k-wrap-img-banner:before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    background-color: rgba(35,33,33,.24);
}

/*======================= intro ================================*/
section.k-intro-aboutus {
    padding: 20px 0px;
}


.cd-horizontal-timeline {
    opacity: 0;
    margin: 0 auto;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.cd-horizontal-timeline::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'mobile';
    display: none;
}

.cd-horizontal-timeline.loaded {
    /* show the timeline after events position has been set (using JavaScript) */
    opacity: 1;
}

.cd-horizontal-timeline .timeline {
    position: relative;
    height: 100px;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.cd-horizontal-timeline .events-wrapper {
    position: relative;
    height: 100%;
    margin: 0 40px;
    overflow: hidden;
}

.cd-horizontal-timeline .events-wrapper::after, .cd-horizontal-timeline .events-wrapper::before {
    /* these are used to create a shadow effect at the sides of the timeline */
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    height: 100%;
    width: 20px;
}

.cd-horizontal-timeline .events {
    /* this is the grey line/timeline */
    position: absolute;
    z-index: 1;
    left: 0;
    top: 49px;
    height: 2px;
    /* width will be set using JavaScript */
    background: #dfdfdf;
    -webkit-transition: -webkit-transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    transition: transform 0.4s;
}

.cd-horizontal-timeline .filling-line {
    /* this is used to create the green line filling the timeline */
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #7b9d6f;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
}

.cd-horizontal-timeline .events a {
    position: absolute;
    bottom: 0;
    z-index: 2;
    text-align: center;
    font-size: 1.3rem;
    padding-bottom: 15px;
    color: #383838;
    /* fix bug on Safari - text flickering while timeline translates */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

.cd-horizontal-timeline .events a::after {
    /* this is used to create the event spot */
    content: '';
    position: absolute;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -5px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: 2px solid #dfdfdf;
    background-color: #f8f8f8;
    -webkit-transition: background-color 0.3s, border-color 0.3s;
    -moz-transition: background-color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, border-color 0.3s;
}

.no-touch .cd-horizontal-timeline .events a:hover::after {
    background-color: #7b9d6f;
    border-color: #7b9d6f;
}

.cd-horizontal-timeline .events a.selected {
    pointer-events: none;
}

.cd-horizontal-timeline .events a.selected::after {
    background-color: #7b9d6f;
    border-color: #7b9d6f;
}

.cd-horizontal-timeline .events a.older-event::after {
    border-color: #7b9d6f;
}

@media only screen and (min-width: 1100px) {
    .cd-horizontal-timeline {
        margin: 0 auto;
    }

    .cd-horizontal-timeline::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'desktop';
    }
}

.cd-timeline-navigation a {
    /* these are the left/right arrows to navigate the timeline */
    position: absolute;
    z-index: 1;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 34px;
    width: 34px;
    border-radius: 50%;
    border: 2px solid #dfdfdf;
    /* replace text with an icon */
    overflow: hidden;
    color: transparent;
    text-indent: 100%;
    white-space: nowrap;
    -webkit-transition: border-color 0.3s;
    -moz-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

.cd-timeline-navigation a::after {
    /* arrow icon */
    content: '';
    position: absolute;
    height: 16px;
    width: 16px;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: url(img/cd-arrow.svg) no-repeat 0 0;
}

.cd-timeline-navigation a.prev {
    left: 0;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.cd-timeline-navigation a.next {
    right: 0;
}

.no-touch .cd-timeline-navigation a:hover {
    border-color: #7b9d6f;
}

.cd-timeline-navigation a.inactive {
    cursor: not-allowed;
}

.cd-timeline-navigation a.inactive::after {
    background-position: 0 -16px;
}

.no-touch .cd-timeline-navigation a.inactive:hover {
    border-color: #dfdfdf;
}

.cd-horizontal-timeline .events-content {
    position: relative;
    width: 100%;
    /* margin: 2em 0;*/
    overflow: hidden;
    -webkit-transition: height 0.4s;
    -moz-transition: height 0.4s;
    transition: height 0.4s;
}

.cd-horizontal-timeline .events-content li {
    position: absolute;
    z-index: 1;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    padding: 0 6%;
    opacity: 0;
    -webkit-animation-duration: 0.4s;
    -moz-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

.cd-horizontal-timeline .events-content li.selected {
    /* visible event content */
    position: relative;
    z-index: 2;
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.cd-horizontal-timeline .events-content li.enter-right, .cd-horizontal-timeline .events-content li.leave-right {
    -webkit-animation-name: cd-enter-right;
    -moz-animation-name: cd-enter-right;
    animation-name: cd-enter-right;
}

.cd-horizontal-timeline .events-content li.enter-left, .cd-horizontal-timeline .events-content li.leave-left {
    -webkit-animation-name: cd-enter-left;
    -moz-animation-name: cd-enter-left;
    animation-name: cd-enter-left;
}

.cd-horizontal-timeline .events-content li.leave-right, .cd-horizontal-timeline .events-content li.leave-left {
    -webkit-animation-direction: reverse;
    -moz-animation-direction: reverse;
    animation-direction: reverse;
}

.cd-horizontal-timeline .events-content li > * {
    max-width: 800px;
    margin: 0 auto;
}

.cd-horizontal-timeline .events-content h2 {
    font-weight: bold;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.cd-horizontal-timeline .events-content em {
    display: block;
    font-style: italic;
    margin: 10px auto;
}

.cd-horizontal-timeline .events-content em::before {
    content: '- ';
}

.cd-horizontal-timeline .events-content p {
    font-size: 1.4rem;
    color: #959595;
}

.cd-horizontal-timeline .events-content em, .cd-horizontal-timeline .events-content p {
    line-height: 1.6;
}

@media only screen and (min-width: 768px) {
    .cd-horizontal-timeline .events-content h2 {
        font-size: 3rem;
    }

    .cd-horizontal-timeline .events-content em {
        font-size: 2rem;
    }

    .cd-horizontal-timeline .events-content p {
        font-size: 1.8rem;
    }
}

@-webkit-keyframes cd-enter-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
    }
}

@-moz-keyframes cd-enter-right {
    0% {
        opacity: 0;
        -moz-transform: translateX(100%);
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0%);
    }
}

@keyframes cd-enter-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@-webkit-keyframes cd-enter-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
    }
}

@-moz-keyframes cd-enter-left {
    0% {
        opacity: 0;
        -moz-transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0%);
    }
}

@keyframes cd-enter-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}

/*=============== list info ==================*/
.k-list-info {
    padding-top: 30px;
}

.link-topage-aboutus {
    width: 100%;
    display: block;
}

.k-why-chose-us {
    height: 260px;
    background-size: cover !important;
    width: 100%;
    margin: 0 auto;
    background-position: center;
    margin-bottom: 10px;
    position: relative;
}

.k-why-chose-us:before {
    content: '';
    background-color: rgba(0, 0, 0, .1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    -webkit-transition: background-color .4s;
    -o-transition: background-color .4s;
    transition: background-color .4s;
}

.k-why-chose-us a {
    color: #000;
    font-size: 24px;
    padding: 20px;
    display: block;
    max-width: 200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.50);
    text-align: center;
}

.k-how-to-book {
    padding-top: 75px;
}

.module-content-con-k {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 0;
    z-index: 13;
    background: 0 0;
}

.module-content-con-k .module-title-k {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
    letter-spacing: 4px;
    opacity: 1;
    visibility: visible;
    width: 100%;
    padding: 30px;
    text-align: center;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.module-content-con-k .overlay-k {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(0, 5%);
    -ms-transform: translate(0, 5%);
    -o-transform: translate(0, 5%);
    transform: translate(0, 5%);
    height: 100%;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.module-content-con-k .overlay-k .module-content-k {
    font-weight: 700;
    font-size: 18px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0 35px 45px;
    width: 100%;
}

.module-content-con-k .overlay-k .btn {
    position: absolute;
    bottom: 60px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.image-full-k:hover {
    -webkit-transition: all 5s;
    -o-transition: all 5s;
    transition: all 5s;
}

.image-full-k:hover .k-why-chose-us:before {
    background-color: rgba(0, 0, 0, .2);
}

.image-full-k:hover:not(.no-content-k) .overlay-k {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

.image-full-k:hover:not(.no-content-k) .module-title-k {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%, -60%);
    -ms-transform: translate(-50%, -60%);
    -o-transform: translate(-50%, -60%);
    transform: translate(-50%, -60%);
    -webkit-transition: opacity .4s, visibility .4s, transform .4s;
    -o-transition: opacity .4s, visibility .4s, transform .4s;
    transition: opacity .4s, visibility .4s, transform .4s;
}

.image-full-k .module-content-con-k .overlay-k .module-content-k {
    font-weight: 700;
    font-size: 18px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0 35px 45px;
    width: 100%;
    color: #fff;
    text-align: center;
}

.btn-yellow-k {
    padding: 10px 25px;
    font-size: 14px;
    min-width: 222px;
    margin-top: 10px;
    background-color: #00aeef;
    color: #fff;
}

/* ================== wrap youtube ==================*/
section.k-youtube-bottom {
    padding-bottom: 50px;
}

.k-wrap-youtube {
    text-align: center;
    color: #fff;
    background-size: 100% 400px;
    background-repeat: no-repeat;
}

.k-wrap-youtube h3 {
    margin: 0px;
    padding-top: 30px;
    padding-bottom: 20px;
    color: #fff;
}

.k-wrap-youtube p {
    margin-bottom: 30px;
}


/*====================== page meet-our-team =================*/
.k-banner-mot-page {
    position: relative;
    padding-top: 170px !important;
}

.k-banner-mot-page:before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    background-color: rgba(35, 33, 33, 0.24);
}

.k-title-banner-mot {
    position: relative;
    color: #fff;
}

.k-title-banner-mot h1 {
    font-size: 55px;
    margin-bottom: 10px;
}

.k-title-banner-mot h1:after {
    content: "";
    display: block;
    border-bottom: 5px solid #fff;
    padding-top: 12px;
    width: 100px;
    margin: 0 auto;
}

.k-title-banner-mot p {
    font-size: 20px;
}

section.k-intro-mot {
    padding-top: 50px;
}

.k-wrap-intro-left {
    text-align: center;
}

.k-avata-manager {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    display: inline-block;
    border-radius: 50%;
    background-size: cover;
    background-position: center 0px;

}

.k-name-and-position h3 {
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

.k-name-and-position p {
    font-size: 20px;
}

.k-quote-manager {
    padding: 20px 15px;
    font-size: 15px;
    position: relative;
}

.k-quote-manager:before {
    content: '“';
    left: -15px;
    top: 10px;
    font-size: 85px;
    position: absolute;
}

.k-quote-manager:after {
    content: '\201D';
    font-size: 85px;
    position: absolute;
    bottom: 20px;
    right: -15px;
    transform: rotateX(180deg);
}

section.k-list-feature-staff {
    background: #555555;
    padding: 50px 0px;
    margin-top: 30px;
}

.k-list-feature-staff .k-item-staff-col {
    position: relative;
    display: block;
    padding-top: 10px;
}

.k-list-feature-staff .k-item-staff-col:hover {
    text-decoration: none;
}

.k-avata-staff {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background-size: cover;
    background-position: center -26px;
    border-radius: 50%;
}

.k-info-staf {
    padding: 20px;
    color: #fff;
    text-align: center;
}

.k-info-staf p.k-position-staff {
    font-size: 20px;
}

.k-info-staf h3 {
    margin: 10px 0px;
    font-size: 30px;
}

.k-info-staf h3 {
    color: yellow;
}

.k-excerpt-staff {
    text-align: justify;
    line-height: 20px;
}

.k-list-feature-staff .k-item-staff-col:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 9;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: scale(0, 1);
}

.k-list-feature-staff .k-item-staff-col:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 9;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: scale(1, 0);
}

.k-list-feature-staff .k-item-staff-col:hover:before, .k-list-feature-staff .k-item-staff-col:hover:after {
    transform: scale(1);
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}


section.k-meet-our-experts {
    padding: 50px 0 30px 0px;
}

.k-title-moe {
    text-align: center;
    font-size: 35px;
    line-height: 70px;
    text-transform: uppercase
}

.k-title-moe span {
    text-align: center;
    line-height: 90px;
    text-transform: uppercase;
    font-size: 60px;
    font-weight: bold;
}

.k-book-your-trip {
    text-align: center;
    padding-top: 30px;
}

.k-book-your-trip .k-btn-book-trip {
    background: #fff;
    border-radius: 0px;
    font-size: 40px;
    padding: 15px 40px;
    border: 5px solid #000;
    text-transform: uppercase;
}

.k-book-your-trip .k-btn-book-trip:hover {
    border: 5px solid #00aeef;
    background: #00aeef;
    color: #fff;
}


.k-customer-block {
    text-align: center;
    z-index: 2;
    padding: 35px 15px;
    background-color: #fff;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
    transition: all ease-out 0.2s;
    margin-bottom: 20px;
    background: #bcccd0;
}

.k-customer-block:hover {
    z-index: 3;
    box-shadow: 0 70px 70px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.k-customer-block a:hover {
    text-decoration: none;
}

.k-block-body {
    padding-top: 20px;
}

.k-red {
    color: #dc0202;
    font-size: 18px !important;
}

.k-block-body .k-auther-info span {
    display: block;
    font-size: 15px;
}

.k-block-body .k-description {
    line-height: 20px;
    font-weight: 300;
    color: #fff;
    text-align: justify;
    height: 120px;
    overflow: hidden;
}

figure.k-auther-thumb {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
}
.k-guides-driver {
    background: #555555;
    padding: 50px 0px;
}
.wrap-tour-guides{
    margin-bottom: 40px;
}
.wrap-tour-guides h3.title-gd-k,.wrap-tour-drivers h3.title-gd-k{
    color: #fff;
    font-size: 50px;
    margin-bottom: 20px;
}
.inlineblock{
    display: flex;
    justify-content: center;
}

.k-video-family{
    background-repeat: no-repeat;
    background-position: bottom center;
    padding: 35px 0px;
    background-color: #e2e2e2;
}

.k-wrap-youtube-mot{
    text-align: center;
    margin-bottom: 20px;
}
.k-wrap-youtube-mot h3 span{
    font-weight: 600;
}
.k-wrap-youtube-mot h3{
    color: #000;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 300;
}
.k-des-youtube-mot {
    margin-bottom: 20px;
    font-weight: 300;
}

/*========================== page detail staff=====================*/
section.k-profile-head {
    padding: 50px 0px;
}

.k-avata-profile {
    margin: 0 auto;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.k-avata-profile img {
    border-radius: 100%

}

.k-name-staff {
    text-align: center;
}

.k-name-staff h2 {
    font-size: 40px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

.k-name-staff p {
    font-size: 24px;
}

.k-info-contact {
    text-align: center;
    font-size: 23px;
}

.k-info-contact a {
    padding-left: 10px;
}
.k-info-contact .whatapp{ color: #3BBF26;}
.k-cmd-and-quote {
    margin-top: 30px;
}

.k-colum-des-profile {
    float: right;
}

.k-content-profile {
    text-align: center;
    font-size: 24px;
    line-height: 30px;
    color: gray;
}

#myCarousel-review .carousel-indicators {
    bottom: -40px;
}

#myCarousel-review .carousel-indicators li {
    background-color: #fff;
    border: 1px solid #f90606;
}

#myCarousel-review .carousel-indicators .active {
    background-color: #f90606;
}

#myCarousel-review .carousel-control.left, #myCarousel-review .carousel-control.right {
    background-image: unset;
}

#myCarousel-review .carousel-control .glyphicon {
    color: red;
}

section.k-list-tours-staff h3 {
    font-size: 39px;
    margin-bottom: 22px;
}

.k-photo-book-trip {
    margin: 20px 0px;
}

.k-photo-book-trip h3 {
    display: inline-block;
}

.box-service-home {
    display: block;
    overflow: hidden;
    margin: 20px auto 20px auto;
    width: 300px;
}

.box-service-home a {
    display: block;
    width: 100%;
    border: solid 2px #333;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    height: 65px;
    position: relative;
    line-height: 65px;
    padding: 0 10px;
    transition: .5s;
}

.box-service-home a:hover {
    background: #0d73ae;
    color: #fff;
    border: solid 2px #0d73ae;
    text-decoration: none;
}
.title-tour-author{
    display: inline-block;
    font-size: 39px;
}

.effect-line {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1
}

.effect-line:before {
    z-index: 1;
    content: "";
    position: absolute;
    left: 5px;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s
}

.effect-line:after {
    z-index: 1;
    content: "";
    position: absolute;
    left: 5px;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(0, 1);
    transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -webkit-transition: all .3s ease-in-out 0s
}

.effect-line:hover:before,
.effect-line:hover:after {
    transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1)
}

/*========================== page QA template =========================*/
.wrap-qa{
    margin: 20px 0px;
}
.wrap-qa h2{
    text-align: center;
    margin: 20px 0px;
}
.q-ask {
    overflow: hidden;
    background: #f5f5f5;
    padding: 30px 0px;
    border-radius: 5px;
}
.btn-question{
    padding: 15px;
    font-size: 16px;
}
.margin-top-10{
    margin-top: 10px;
}
.wrap-avt-qa{
    text-align: center;
}
.list-qa-k .avt-img-name{
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: #edeef0;
    border-radius: 50%;
    font-size: 24px;
    color: #aaa;
    display: inline-block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.title-qa-k h5{
    font-size: 16px;
    line-height: 26px;
}
.title-qa-k time{
    color: gray;
    font-size: 14px;
}
.content-qa-k {
    position: relative;
    padding-left: 10px;
    border-left: 3px solid #f2f2f2;
    margin-top: 10px;
}
.content-qa-k a {text-decoration: underline !important;}
.content-qa-k ul li {list-style: disc;margin-left: 25px;}
.q-name {
    color: #999;
    margin-bottom: 5px;
}

.fw-3{
    font-weight: 300;
}
.mgtb-20{
    margin: 20px auto;
}

/*============== photo user ===============*/

.k-list-img-staff ul li {
    float: left;
    cursor: pointer;
}

.k-list-img-staff ul li .viewall-box {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-top: 25px;
    padding-right: 30px;
    text-align: right;
    width: 99%;
    height: 20%;
    background-color: transparent;
    background-image: -webkit-linear-gradient(transparent, rgba(0, 0, 0, .9));
    background-image: linear-gradient(transparent, rgba(0, 0, 0, .9));
    color: #fff;
}

.k-list-img-staff ul li .viewall-box span {
    text-align: center;
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
}

.k-list-img-staff ul li:nth-child(1) {
    width: 70%;
    height: 430px;
    margin-bottom: 10px;
    padding-right: 10px;
    position: relative;
}

.k-list-img-staff ul li:nth-child(1) img {
    object-fit: cover;
    min-width: 100%;
    height: 430px;
}

.k-list-img-staff ul li:nth-child(2), .k-list-img-staff ul li:nth-child(3), .k-list-img-staff ul li:nth-child(4) {
    width: 30%;
    height: 210px;
    margin-bottom: 10px;
}

.k-list-img-staff ul li:nth-child(2) img, .k-list-img-staff ul li:nth-child(3) img, .k-list-img-staff ul li:nth-child(4) img {
    min-width: 100%;
    height: 210px;
    object-fit: cover;
}

.k-list-img-staff ul li:nth-child(4) {
    padding-right: 10px;
}

.k-list-img-staff ul li:nth-child(5) {
    width: 70%;
    height: 210px;
    margin-bottom: 10px;
}

.k-list-img-staff ul li:nth-child(5) img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

/*============= end photo user==========*/


section.k-meet-other-expert {
    padding: 20px 0px;
    margin-top: 30px;
}

.k-meet-other-expert h2 {
    font-size: 39px;
    margin-bottom: 22px;
}

.k-item-oex {
    position: relative;
    transition: all ease 0.3s;
    overflow: hidden;
    margin-bottom: 20px;
}

.k-item-oex span {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    font-size: 30px;
    color: #fff;
    text-align: center;
}

.k-item-oex:before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    background-color: rgba(35, 33, 33, 0.24);
}

.k-item-oex img {
    transition: all ease 0.3s;
    width: 100%;
}

.k-item-oex:hover img {
    transform: scale(1.1);

}


/*================== blog user ==============*/
.post-blog-relate-k {
    padding-top: 30px;
}

.title-block-blog-author {
    font-size: 46px;
    margin-bottom: 22px;
}


/*================= car pickup ====================*/
#booking-car-page input[type=text], #booking-car-page select{
    padding: 5px 10px;
    font-size: 14px;
    width: 100%;
    border-radius: 2px;
    border: 1px solid #999;
    box-shadow: inset 2px 2px 2px #d1d1d1;
}

#booking-car-page{
    background: #f0f0f0;
    padding: 30px 0px;
}

#booking-car-page .colum-left-k {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    /* width: 600px; */
}
#booking-car-page .colum-right-k {
    background: #fff;
    border-radius: 10px;
}
.title-page-carbooking h1 {
    margin-bottom: 10px;
}

#email_passenger{
    background: url('img/safty-icon.png') no-repeat 98% center #fff;
}

.colum-right-k span{
    font-size: 93px;
    line-height: 1.42857143;
    color: #065689;
    font-weight: 700
}
.colum-right-k p {
    padding: 10px 0px 0px 10px;
    margin-bottom: 0px;
    font-size: 20px;
}
#form-step-one-k .form-group .error {
    color: red;
    font-weight: 400;
    font-size: 13px;
    margin-top: 3px;
}

.row-one-step-preview-k {
    max-width: 700px;
    margin-bottom: 20px;
}
.row-one-step-preview-k h3{
    color: red;
}
.row-one-step-preview-k ul li{
    margin-bottom: 5px;
}
.row-one-step-preview-k ul li strong{
    display: inline-block;
    text-align: left;
    width: 50%;
    font-size: 16px;
}
.row-one-step-preview-k ul li span{
    width: 50%;
    text-align: left;
    font-size: 16px;
    color: #337ab7;
}
.btn-edit-carbooking{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    width: auto !important;
}
#step-two-carpick {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}
.setup-content-two-k h3{
    text-align: center;
    margin-bottom: 20px;
}

/* ============================= khai custom responsive=========================*/


/*
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 1281px) {

    #booking-car-page .container{
        width: 1000px !important;
        margin: 0px auto;
    }

}



@media (min-width: 768px) and (max-width: 1024px) {

    .k-banner-home .k-wrap-img-banner {
        width: 100%;
    }

    .k-youtube-link {
        position: relative;
        font-size: 18px;
        /*padding-bottom: 56.25%;
        padding-top: 30px; height: 0; overflow: hidden;*/
    }

    .k-youtube-link iframe,
    .k-youtube-link object,
    .k-youtube-link embed {
        top: 0;
        left: 0;
        width: 100%;
    }

    /*============ page meet-about-team ============*/
    .k-quote-manager {
        position: relative;
        font-size: 20px;
        padding-left: 30px;
        text-align: justify;
    }

    .k-title-moe {
        font-size: 40px;
        line-height: 55px;
    }

    .k-title-moe span {
        font-size: 110px;
    }

    .k-book-your-trip {
        text-align: center;
        padding-top: 25px;
    }

    .k-book-your-trip .k-btn-book-trip {
        font-size: 24px;
    }

    .k-list-feature-staff .k-item-staff-col {
        margin-bottom: 20px;
    }

    .k-wrap-expert img {
        width: 100%;
        margin: 0 auto;
        float: unset;
    }

    .k-des-short-expert {
        display: block;
        padding-left: 0px;
        width: 100%;
        float: unset;
        padding: 5px;
    }

    .k-item-oex span {
        width: 190px;
        line-height: 26px;
    }

    /*================== detail author ===================*/
    .k-photo-book-trip a {
        margin-bottom: 30px;
    }

    section.k-list-tours-staff h3 {
        margin-bottom: 0px;
    }
    .k-meet-other-expert h2 {font-size: 26px;}
}

/*
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

    .k-banner-home .k-wrap-img-banner {
        width: 100%;
    }

    .k-youtube-link {
        position: relative;
        font-size: 18px;
        /*padding-bottom: 56.25%;
        padding-top: 30px; height: 0; overflow: hidden;*/
    }

    .k-youtube-link iframe,
    .k-youtube-link object,
    .k-youtube-link embed {
        top: 0;
        left: 0;
        width: 100%;
    }

    section.k-list-feature-staff .k-item-staff-col {
        margin-bottom: 20px;
    }

}


/*
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {

    .k-banner-home .k-wrap-img-banner {
        width: 100%;
    }
    .title-tour-author {font-size: 26px;}
    .k-youtube-link {
        position: relative;
        font-size: 18px;
        /*padding-bottom: 56.25%;
        padding-top: 30px; height: 0; overflow: hidden;*/
    }

    .k-youtube-link iframe,
    .k-youtube-link object,
    .k-youtube-link embed {
        top: 0;
        left: 0;
        width: 100%;
    }

    /*================== page detail staff ===============*/
    .k-info-contact {
        font-size: 18px;
        text-align: left;
        margin-bottom: 10px;
    }

    .k-info-contact img {
        width: 40px;
    }

    .k-content-profile {
        margin-bottom: 20px;
    }


    section.k-list-tours-staff h3 {
        font-size: 28px;
    }

    .k-photo-book-trip a {
        width: 100%;
        padding: 20px;
        font-size: 24px;
    }

    .k-photo-book-trip h3 {
        margin-bottom: 0px !important;
    }

    .k-list-img-staff ul li:nth-child(1) {
        width: 100%;
        margin-bottom: 10px;
        height: 300px;
        padding: 0px;
    }

    .k-list-img-staff ul li:nth-child(1) img {
        height: 300px;
    }

    .k-list-img-staff ul li .viewall-box {
        width: 100%;
    }

    .k-list-img-staff ul li:nth-child(2), .k-list-img-staff ul li:nth-child(3), .k-list-img-staff ul li:nth-child(4), .k-list-img-staff ul li:nth-child(5) {
        display: none;
    }

    section.k-meet-other-expert {
        margin-top: 0px;
    }

    .k-meet-other-expert h2 {
        font-size: 26px;
    }

    .k-item-oex {
        margin-bottom: 10px;
    }

    .k-meet-other-expert .container .col-md-3:nth-child(odd) {
        padding-right: 5px;
    }

    .k-meet-other-expert .container .col-md-3:nth-child(even) {
        padding-left: 5px;
    }

    .k-item-oex span {
        width: 190px;
        line-height: 26px;
    }

    #myCarousel-review .carousel-control.left, #myCarousel-review .carousel-control.right {
        display: none;
    }

}

/*
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 767px) {
    .k-banner-home .k-wrap-img-banner {
        width: 100%;
        height: 200px;
        padding-top: 75px;
    }

    .k-banner-home .k-wrap-img-banner span {
        font-size: 30px;
        line-height: 30px;
        max-width: 200px;
        padding: 10px;
    }
    .k-name-staff h2 {font-size: 28px;}
    .title-tour-author{font-size: 20px;}
    .k-content-intro .h1 {
        margin-top: 0px;
        font-size: 24px;
    }

    .cd-horizontal-timeline .events-content li {
        padding: 0px;
    }

    .cd-horizontal-timeline .timeline {
        width: 100%;
    }

    .k-pad-left-5 {
        padding-left: 15px;
    }

    .k-pad-right-5 {
        padding-right: 15px;
    }

    .k-meet-our-team {
        padding-top: 169px;
    }

    .k-meet-our-team a {
        font-size: 36px;
    }

    .k-how-to-book {
        padding-top: 169px;
    }

    .k-wrap-youtube {
        background-size: cover;
    }


    .k-youtube-link {
        position: relative;
        font-size: 18px;
        /*padding-bottom: 56.25%;
        padding-top: 30px; height: 0; overflow: hidden;*/
    }

    .k-youtube-link iframe,
    .k-youtube-link object,
    .k-youtube-link embed {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .k-banner-mot-page {
        padding-top: 10px !important;
    }

    .k-title-banner-mot h1 {
        margin-top: 0px;
        font-size: 24px;
    }

    .k-title-banner-mot h1:after {
        border-bottom: 2px solid #fff;
        padding-top: 5px;
    }

    .k-title-banner-mot p {
        font-size: 12px;
    }

    .k-quote-manager {
        position: relative;
        font-size: 16px;
        text-align: justify;
        padding: 20px 10px;
    }

    .k-quote-manager:before {
        top: 2rem;
    }

    .k-title-moe {
        font-size: 20px;
        line-height: 55px;
    }

    .k-title-moe span {
        font-size: 40px;
    }

    .k-book-your-trip {
        text-align: center;
        padding-top: 25px;
    }

    .k-book-your-trip .k-btn-book-trip {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .k-wrap-expert img {
        width: 100%;
        margin: 0 auto;
        float: unset;
    }

    .k-des-short-expert {
        display: block;
        padding-left: 0px;
        width: 100%;
        float: unset;
        padding: 5px;
    }

    .k-guides-driver p {
        font-size: 60px;
    }

    section.k-list-feature-staff .k-item-staff-col {
        margin-bottom: 20px;
    }

    .q-ask button {
        margin: 20px auto 0px;
        display: block;
    }
    .fullname-qa-k{
        display: inline-block;
        margin-left: 20px;
    }
    .wrap-avt-qa {
        text-align: left;
        margin-bottom: 10px;
    }
    .list-qa-k .avt-img-name{
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }


    /*================== page detail staff ===============*/
    .k-info-contact {
        font-size: 18px;
        text-align: left;
        margin-bottom: 10px;
    }

    .k-info-contact img {
        width: 40px;
    }

    .k-content-profile {
        margin-bottom: 20px;
        text-align: justify;
        font-size: 18px;
    }

    section.k-list-tours-staff h3 {
        font-size: 28px;
    }

    .k-photo-book-trip a {
        width: 100%;
        padding: 20px;
        font-size: 22px;
    }

    .k-photo-book-trip h3 {
        margin-bottom: 0px !important;
        margin-top: 30px;
    }

    .k-list-img-staff ul li:nth-child(1) {
        width: 100%;
        margin-bottom: 10px;
        height: 300px;
        padding: 0px;
    }

    .k-list-img-staff ul li:nth-child(1) img {
        height: 300px;
    }

    .k-list-img-staff ul li .viewall-box {
        width: 100%;
    }

    .k-list-img-staff ul li:nth-child(2), .k-list-img-staff ul li:nth-child(3), .k-list-img-staff ul li:nth-child(4), .k-list-img-staff ul li:nth-child(5) {
        display: none;
    }

    section.k-meet-other-expert {
        margin-top: 0px;
    }

    .k-meet-other-expert h2 {
        font-size: 26px;
    }

    .k-item-oex {
        margin-bottom: 10px;
    }

    .k-meet-other-expert .container .col-md-3:nth-child(odd) {
        padding-right: 5px;
    }

    .k-meet-other-expert .container .col-md-3:nth-child(even) {
        padding-left: 5px;
    }

    .k-item-oex span {
        width: 90px;
        line-height: 26px;
    }

    #myCarousel-review .carousel-control.left, #myCarousel-review .carousel-control.right {
        display: none;
    }

    /* ============== car pick up page =====================*/
    .step-header-map-mobile .nav-justified>li>a{
        margin-bottom: 0px;
    }

    #booking-car-page .colum-left-k{
        padding: 15px;
    }
    .row-one-step-preview-k ul li {
        display: block;
        width: 100%;
        border-bottom: 1px dotted gray;
        overflow: hidden;
        padding: 7px 0px;
        margin-bottom: 0px;
    }
    .row-one-step-preview-k ul li strong{
        float: left;
        width: 40%;

    }
    .row-one-step-preview-k ul li span{
        float: right;
        width: 60%;
    }
    .colum-right-k p {
        padding: 10px 0px;
        font-weight: bold;
    }

}
/* =================== end khai custom ==================*/

/*Fix Tour Item*/
@media only screen and (min-width: 768px) {
    .item-detail {min-height: 438px;}
}