/* hero slider */
.hero-slider{
    height: 100vh;
    position: relative;
}
.hero-slider .hero__list-images figure{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-slider .hero__list-images figure img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    /* height: 100%; */
    width: 100%;
    object-fit: unset;
    -o-object-fit: unset;
}
.hero-slider .hero__list-images figure::before{
    padding-top: 100vh;
}
.hero-slider .owl-dots{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 96%;
    right: 4%;
}
.hero-slider .owl-theme .owl-dots .owl-dot span{
    display: block;
    background: transparent;
    -webkit-backface-visibility: visible;
    margin: 5px 0;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 11px;
    height: 11px;
    transition: opacity .2s ease;
    box-shadow: 1px 2px 2px #000;
}
.hero-slider .owl-theme .owl-dots .owl-dot.active span{
    background-color: #fff;
}
.hero-slider .hero__search-box{
    bottom: 8%;
    position: absolute;
    z-index: 2;
    font-size: 14px;
    transform: translate3d(0, 100%, 0);
}
.hero-slider .hero__search-box input{
    height: 52px;
    border-radius: 6px;
}
.hero-slider .hero__search-box button{
    border-radius: 6px;
}
.hero-slider .hero__search-box svg{
    margin-left: 5px;
    height: 23px;
    width: 23px;
    fill: #fff;
}
.hero-slider .hero__search-box form .search-col{
    display: flex;
}
.hero-slider .hero__search-box form .search-col > span{
    flex: 1;
}
/* search hint css */
.tt-menu{
    top: calc(100% + 3px)!important;
    right: -54px;
    border-radius: 10px;
    border: 1px solid #c5c5c5;
    overflow: hidden;
    padding: 15px;
    background-color: #fff;
}
.tt-menu .tt-highlight{
    font-weight: 600;
}
.tt-menu .tt-dataset.tt-dataset-tour-title .list-group-item.tt-suggestion.tt-selectable{
    border: none;
    color: #333;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
}

.hero__search-box ::-webkit-input-placeholder {
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
}
.hero__search-box ::-moz-placeholder {
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
}
.hero__search-box :-ms-input-placeholder {
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
}
.hero__search-box :-moz-placeholder {
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
}
#search-form input{
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 0 20px;
    color: #000;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
#search-form button:focus,
#search-form input:focus{
    box-shadow: none;
}
.search-result{
    position: relative;
    width: 100%;
}
.search-result #search-result__container{
    position: absolute;
    width: 100%;
}
#search-form + .search-result .ui-widget.ui-widget-content{ /* search result */
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    top: -14px !important;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    padding: 15px;
}
#search-form + .search-result .ui-widget.ui-widget-content li{
    padding: 10px;
}
#search-form + .search-result .ui-widget.ui-widget-content .ui-state-active{
    font-weight: 600;
    border: 1px solid transparent;
    color: black;
    background-color: #fff;
}
#search-form + .search-result .ui-menu .ui-menu-item-wrapper{
    padding: 0;
}
/* Tour highlight */
.tour-highlight [role="tabpanel"]{
    padding-top: 60px;
}
.tour-highlight [role="tabpanel"] .tour-item{
    margin-top: 0;
}
#tour-list-tab{
    justify-content: space-around;
}
#tour-list-tab > li{
    flex: 1;
    text-align: center;
}
#tour-list-tab li > a{
    font-weight: 400;
    font-size: 24px;
    color: #7f7f7f;
}
#tour-list-tab li > a > span{
    display: inline-block;
}
#tour-list-tab li > a > span::after{
    content: '';
    display: block;
    background-color: rgba(255, 169, 19, 1);
    background-color: var(--theme-color-two);
    height: 2px;
    width: 0%;
    position: relative;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
    margin-bottom: 5px;

    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
}
#tour-list-tab li > a.active > span::after{
    width: 60%;
}
#tour-list-tab li:hover > a > span::after{
    width: 60%;
}
#tour-list-tab li > a.active,
#tour-list-tab li:hover > a{
    color: rgba(255, 169, 19, 1);
    color: var(--theme-color-two);
}
/* tour item */
.tour-item{
    margin-top: 60px;
}
.tour-item figure.tour-image{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px 0px rgba(0, 0, 0, 0.4);
}
.tour-item figure.tour-image img{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -o-object-fit: cover;
    object-fit: cover;

    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
}
.tour-item:hover figure.tour-image img{
    filter: blur(3px);
}
.tour-item figure > .tour-item__info{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.8));
}
.tour-item figure::before{
    padding-top: 120%;
}
.view-more.btn{
    font-weight: 300;
    font-size: 22px;
    text-transform: uppercase;
}
.view-more.btn svg{
    height: 16px;
    width: 11px;
    fill: #fff;
    vertical-align: baseline;
}
/** tour item info **/
.tour-item__info a:not(:last-child){
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    color: #fff;
    font-weight: 600;
    padding: 20px 20px 90px 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.tour-item__info a .tour__title h3{
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}
.tour-item__info a .tour__title h3 span{
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.tour-item__info a .tour__title h3 span::after{
    content: '';
    height: 2px;
    width: 70px;
    display: block;
    position: relative;
    bottom: -11px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #fff;
}
.tour-item__info a .tour__price .price__list{
    text-decoration: line-through;
    text-align: center;
    font-size: 14px;
}
.tour-item__info a .tour__price .price__promotion{
    text-align: center;
    font-size: 20px;
    color: #f7c61a;
    color: var(--theme-price-color);
    font-weight: 700;
}
.tour-item__info .btn-theme{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto 30px;
}
/* Combo Cupon */
.combo-coupon .tour-item{
    margin-top: unset;
}
.combo-coupon .tour-item figure::before{
    padding-top: 120%;
}
.combo-coupon .tour-item figure::before{
    padding-top: 120%;
}
.combo-coupon .tour-item__info a .tour__title h3{
    font-size: 14px;
    font-weight: 600;
}
.combo-coupon .tour-item__info a .tour__price .price__list{
    font-size: 14px;
}
.combo-coupon .tour-item__info a .tour__price .price__promotion{
    font-size: 18px;
}
.combo-coupon .tour-item__info .btn-theme{
    font-size: 14px;
    margin-bottom: 18px;
}
.combo-coupon .tour-item__info a:not(:last-child){
    padding: 20px 20px 70px 20px;
}
/* services */
.services__container{
    border-radius: 10px;
    box-shadow: 0px 3px 5px 2px #d2d2d2;
    overflow: hidden;
}
.services__container .tab-content{
    max-height: 570px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 30px 40px;
    margin-right: 13px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.services__container .nav-tabs__outer{
    background-color: #efefef;
    margin-bottom: 3px;
    display: flex;
    justify-content: center;
}
.services__container .nav-tabs__outer #services-list-tab{
    display: flex;
    flex: 0 0 1000px; /* 4 items of service */
}
.services__container .nav-tabs__outer #services-list-tab li{
    display: flex;
    flex: 0 0 250px;
}
.services__container .nav-tabs__outer #services-list-tab li > a{
    flex: 1;
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    position: relative;
    color: #7f7f7f;
    font-weight: 600;
    text-transform: uppercase;
}
.services__container .nav-tabs__outer #services-list-tab li > a.active{
    background-color: #e9e9e9;
    color: rgba(255, 169, 19, 1);
    color: var(--theme-color-two);
}
.services__container .nav-tabs__outer #services-list-tab li > a::after{
    content: '';
    display: block;
    background-color: rgba(255, 169, 19, 1);
    background-color: var(--theme-color-two);
    height: 2px;
    width: 0%;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    margin: auto;

    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
}
.services__container .nav-tabs__outer #services-list-tab li > a:hover::after{
    width: 50%;
}
.services__container .nav-tabs__outer #services-list-tab li > a.active::after{
    width: 100%;
}
.services__container .service-item{
    margin-top: 40px;
}
.services__container .service-item__inner{
    display: flex;
    align-items: flex-start;
}
.services__container .service-item__inner figure{
    position: relative;
}
.services__container .service-item__inner figure img{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    object-fit: cover;
    -o-object-fit: cover;
}
.services__container .service-image__outer{
    border-radius: 10px;
    overflow: hidden;
    flex: 0 0 200px;
    margin-right: 20px;
    box-shadow: 0 2px 8px 0px rgba(0, 0, 0, 0.4);
}
.services__container figure::before{
    padding-top: 75%;
}
.services__container .service-item__info{
    flex: 1;
}
.services__container .service-item__info .service__title a,
.services__container .service-item__info .service__title a h3{
    color: #008df2;
    color: var(--theme-color-one);
    font-weight: 600;
    font-size: 16px;
}
.services__container .service__detail{
    font-weight: 400;
    font-size: 14px;
}
.services__container .service__detail-label{
    color: rgba(255, 169, 19, 1);
    color: var(--theme-color-two);
}
.services__container .service__price .price__list span{
    font-weight: 700;
    color: rgba(255, 169, 19, 1);
    color: var(--theme-color-two);
}
.tab-content #travel-car .service__detail{
    line-height: 25px;
}
.tab-content #travel-car .service__price{
    padding-top: 20px;
}
.tab-content #visa .service__price{
    padding-top: 20px;
}
.tab-content .service__price{
    font-size: 14px;
}
.tab-content #ticket .service__price{
    padding-top: 5px;
}
/* news section */
.news__container--bg-image{
    display: flex;
    position: relative;
}
.news__container--bg-image > img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}
.news__container--bg-image > div{
    z-index: 2;
}
.news__container--bg-image::before{
    display: block;
    padding-top: 33%;
}
.news__container .news__inner{
    display: flex;
    margin: 0 -10px;
    height: 100%;
}
.news__container .news__preview{
    flex: 2;
    display: flex;
    overflow: hidden;
}
.news__container .news__preview-list{
    flex: 1;
    padding: 40px 40px 40px 0;
    overflow: hidden;
}
.news__container .news__preview-inner .news-image__preview-outer{
    flex: 2;
}
.news__container .news__preview-inner .news-info__preview-outer{
    flex: 1;
    padding: 20px;
    color: #fff;
}
.news__container .news__preview-list .home-news__image{
    display: block;
    position: relative;
    padding: 20px;
}
.news__container .news__preview-list .home-news__image::before,
.news__container .news__preview-list .home-news__image::after{
    content: '';
    display: block;
    position: absolute;
    border-style: solid;
    border-width: 7px;
    height: 100px;
    width: 100px;
}
.news__container .news__preview-list .home-news__image::before{
    top: 0;
    left: 0;
    border-top-color: rgba(0, 141, 242, 0.5);
    border-left-color: rgba(0, 141, 242, 0.5);
    border-bottom-color: transparent;
    border-right-color: transparent;
}
.news__container .news__preview-list .home-news__image::after{
    bottom: 0;
    right: 0;
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: rgba(0, 141, 242, 0.5);
    border-right-color: rgba(0, 141, 242, 0.5);
}
.news__container .news__preview-list figure{
    border: 2px solid #fff;
    position: relative;
}
.news__container .news__preview-list figure::before{
    padding-top: 57.7%;
}
.news__container .news__preview-list figure img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}
.news__container .news-info__preview-title a{
    color: #fff;
}
.news__container .news-info__preview-title h3{
    font-weight: 600;
    font-size: 22px;
}
.news__container .news-info__preview-summary p{
    font-weight: 300;
    font-size: 14px;
}
.news__container .news__list{
    flex: 1;
    padding-right: 30px; /* fixed with child */
}
.news__container .news-list__inner{
    height: 100%;
    width: 100%;
    background-color: #fff;
    padding: 8px 0;
    box-sizing: content-box;
    margin-top: -8px;
    box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.4);
    padding-right: 30px; /* fixed with parent */
}
.news__container .news-list__title h3{
    text-align: center;
    text-transform: uppercase;
    color: rgba(255, 169, 19, 1);
    color: var(--theme-color-two);
    font-weight: 600;
    font-size: 24px;
    padding-bottom: 15px;
    margin-bottom: 40px;
    margin-right: -30px; /* fixed with parent */
}
.news__container .news-list__title h3::after{
    content: '';
    display: block;
    height: 2px;
    width: 63px;
    background-color: rgba(255, 169, 19, 1);
    background-color: var(--theme-color-two);
    position: relative;
    top: 15px;
    left: 0;
    right: 0;
    margin: auto;
}
.news__container #news-list-dots{
    padding-inline-start: 30px;
}
.news__container #news-list-dots > li{
    list-style: none;
    padding: 10px 0;
    line-height: 17px;
}
.news__container #news-list-dots > li > a{
    display: block;
    position: relative;
    padding-left: 15px;
}
.news__container #news-list-dots > li > a::before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: #000;
    top: 0.3rem;
}
.news__container #news-list-dots > li.active > a::before{
    background-color: rgba(255, 169, 19, 1);
    background-color: var(--theme-color-two);
}
.news__container #news-list-dots > li:not(:last-child){
    border-bottom: 1px dotted #d7d4d4;
}
.news__container #news-list-dots > li > a{
    color: #000;
    font-size: 14px;
    font-weight: 300;
}
.news__container #news-list-dots > li.active,
.news__container #news-list-dots > li.active > a{
    color: rgba(255, 169, 19, 1);
    color: var(--theme-color-two);
}
.news__container .news-list__show-more{
    margin-right: -30px; /* fixed with parent */
    text-align: center;
}
.news__container .news-list__show-more a{
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #008df2;
    color: var(--theme-color-one);
}

.news__container .news-list__show-more a svg{
    margin-left: 10px;
    height: 11px;
    width: 16px;
    fill: #008df2;
    fill: var(--theme-color-one);
    vertical-align: baseline;
}
/* only for ie browser (v10+) */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .news__container .news__preview{
        overflow: visible;
    }
    .news__container .news__list{
        z-index: 1;
    }
    .news__container .news__preview-list .owl-stage-outer{
        height: 100%;
        overflow: hidden;
    }
    .news__container .news__preview-list .owl-stage-outer .owl-stage{
        height: 100%;
    }
    .news__container .news__preview-list .owl-stage-outer .owl-item{
        height: 100%;
    }
    .news__container .news__preview-inner{
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .news__container .news__preview-inner .news-image__preview-outer{
        flex: inherit;
    }
}
/* feedback section */
.feedback__item{
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px 0px rgba(0, 0, 0, 0.3);
}
.feedback__item .feedback__inner{
    border-top: 6px solid rgba(255, 169, 19, 1);
    border-top: 6px solid var(--theme-color-two);
    overflow: hidden;
    padding: 20px;
}
.feedback__item .feedback__inner .feedback__user-image figure{
    width: 40%;
    margin: auto;
    margin-bottom: 30px;
    border-radius: 50%;
    box-shadow: 0 0 8px 0 #bfbfbf;
    position: relative;
    overflow: hidden;
}
.feedback__item .feedback__inner .feedback__user-image figure > img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}
.feedback__item .feedback__inner .feedback__user-text{
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.feedback__item .feedback__inner .feedback__user-text::after{
    content: '';
    display: block;
    height: 3px;
    width: 85px;
    background-color: #ddd;
    position: relative;
    right: 0;
    left: 0;
    margin: auto;
    top: 21.5px;
}
.feedback__item .feedback__inner .feedback__user-text p{
    font-weight: 300;
    font-size: 14px;
    padding-left: 18px;
}
.feedback__item .feedback__inner .feedback__user-text .quote::before,
.feedback__item .feedback__inner .feedback__user-text .quote::after{
    content: '“';
    display: inline-block;
    position: absolute;
    color: rgba(255, 169, 19, 1);
    color: var(--theme-color-two);
    font-family: "9Slide03-Cabin-Bold";
    font-size: 41.39px;
    vertical-align: bottom;
    line-height: 18px;
}
.feedback__item .feedback__inner .feedback__user-text .quote::before{
    transform: translate(-105%,30%);
}
.feedback__item .feedback__inner .feedback__user-text .quote::after{
    transform: rotate(180deg);
}
.feedback__item .feedback__inner .feedback__user-info p{
    text-align: center;
}
.feedback__item .feedback__inner .feedback__user-name{
    color: #008df2;
    color: var(--theme-color-one);
    font-weight: 600;
    font-size: 14px;
}
.feedback__item .feedback__inner .feedback__user-job{
    color: #9d9d9d;
    font-weight: 300;
    font-size: 14px;
    font-style: italic;
}
/* favourite tour */
.tour-favourite{}
.tour-favourite__inner .tour-favourite__item:first-child{
    margin-bottom: 30px;
}
.tour-favourite__inner .tour-favourite__item figure{
    border-radius: 10px;
    padding:  17px 28px;
    box-shadow: 0 4px 8px 0px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}
.tour-favourite__inner .tour-favourite__item figure > img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}
.tour-favourite__inner .col-4:nth-child(2) .tour-favourite__col:first-child figure::before{
    padding-top: 130%;
}
.tour-favourite__inner .col-4:nth-child(2) .tour-favourite__col:last-child figure::before{
    padding-top: 70%;
}
.tour-favourite__inner .col-4:nth-child(3) .tour-favourite__col:first-child figure::before{
    padding-top: 70%;
}
.tour-favourite__inner .col-4:nth-child(3) .tour-favourite__col:last-child figure::before{
    padding-top: 130%;
}
.tour-favourite__inner .tour-favourite__item figure figcaption{
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}
/* partner section */
.partner .section__title h2{
    font-weight: 600;
}
.partner__inner{
    display: flex;
    margin: 0 -10px;
    justify-content: space-between;
}
.partner__inner figure{
    flex: 0 0 12.5%;
    display: flex;
    position: relative;
}
.partner__inner figure > img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    object-fit: cover;
    -o-object-fit: cover;
    height: 100%;
    width: 100%;
}
.partner__inner figure a{
    flex: 1;
}
/* subscription section */
.subscription__inner{
    display: flex;
    padding: 30px 30px 35px;
    border-radius: 10px;
    box-shadow: 0 2px 8px 0px rgba(0, 0, 0, 0.4);
}
.subscription__left{
    flex: 2;
    display: flex;
    padding-right: 35px;
    border-right: 1px solid #dcdcdc;
}
.subscription__right{
    flex: 1;
    padding-left: 35px;
    padding-top: 20px;
}
.subscription__left figure{
    flex: 0 0 130px;
    margin-right: 45px;
    -webkit-background-size: contain;
    background-size: contain;
    transform: rotate(30deg) translateX(15px);
}
.subscription__intro{
    padding: 20px 0 30px;
}
.subscription__title h3{
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 169, 19, 1);
    color: var(--theme-color-two);
}
.subscription__text p{
    font-size: 14px;
    font-weight: 300;
}
.subscription__right form input{
    height: 50px;
    margin-bottom: 15px;
}
.subscription__right form ::-webkit-input-placeholder {
    color: #999;
    font-style: italic;
    font-size: 14px;
}
.subscription__right form ::-moz-placeholder {
    color: #999;
    font-style: italic;
    font-size: 14px;
}
.subscription__right form :-ms-input-placeholder {
    color: #999;
    font-style: italic;
    font-size: 14px;
}
.subscription__right form :-moz-placeholder {
    color: #999;
    font-style: italic;
    font-size: 14px;
}
.subscription__right form button{
    height: 35px;
    line-height: 20px;
    text-transform: uppercase;
}
.partner__list-images .owl-item img {
    width: auto;
    height: 220px;
}
.partner__list-images .owl-item { height: 170px; padding: 0px;}
