*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Cabin",sans-serif;
    font-weight: 400;
    color: #808285;
}
ul li{
    list-style: none;
}

a{
    text-decoration: none;
}
img{
    max-width: 100%;
    object-fit: cover;
}

.line-4{
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 4;
   -webkit-box-orient: vertical;
}
/*menu mobile*/
.overlay{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .5;
    display: none;
    z-index: 10;
    transition: all .4s;
}
.menu__mobile{
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 0 10px 0 #00000080;
    transform: translateX(-100%);
    z-index: 20;
    transition: all ease-in-out .4s;
}
.menu__mobile.active{
    transform: translateX(0);
    transition: all ease-in-out .4s;
}
.menu__mobile img{
    height: 58px;
    object-fit: cover;
    display: block;
    margin: 30px 20px;
}
.main__menu__mobile{
    margin: auto;
    margin-top: 30px;
    padding: 0 20px;
}
.dropdown__menu__mobile li a{
    font-size: 15px;
    font-weight: 600;
    color: #1c1c1c;
    text-transform: uppercase;
}
.dropdown__menu__mobile li{
    padding: 12px 30px;
    border-bottom: 1px solid #ffffff1f;
}
/* .dropdown__menu__mobile li:last-child{
    padding-bottom: 0;
} */
/* .dropdown__menu__mobile li:first-child{
    margin-top: 10px;
} */
.sub__menu__mobile{
    position: relative;
}
.sub__menu__mobile p {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #1c1c1c;
}
.menu__title__mobile{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #1c1c1c !important;
    padding: 12px 0px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid #ffffff1f;
}
.menu__title__mobile i{
    margin-left: 5px;
    color: #1c1c1c;
    transition: all .4s;
}
.show__dropdown{
    background-color: #0000000d;
}
.sub__menu__mobile.show__dropdown .dropdown__menu__mobile{
    display: block;
}
.sub__menu__mobile.rotate__icons i::before{
    content: "\f077";
    transition: all .4s;
}
/*end menu mobile*/

/*header*/
.header__top{
    background-color: #1c1c1c;
    padding: 1px 0;
}
.flex-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-header > ul{
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}
.flex-header > ul li i{
    font-size: 16px;
    color: #fff;
}
.header__right{
    display: flex;
    gap: 30px;
    align-items: center;
}
.btn__header{
    display: inline-block;
    padding: 5px 30px;
    color: #fff;
    background-color: #418a3d;
}
.btn__header:hover{
    color: #fff;
    text-decoration: none;
}
.language{
    position: relative;
}
.language > p,
.language > p i{
    color: #fff;
    margin-bottom: 0;
}
.main__language{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 80px;
    padding-top: 12px;
    text-align: center;
    opacity: 0;
    transform-origin: top center;
    z-index: 30;
    transition: all .2s;    
}
.list__language{
    border-radius: 6px;
    background-color: #fff;
    padding: 12px;
}
.language:hover .main__language{
    opacity: 1;
    transform: translateX(-50%) scale(1);
    transition: all .2s;
}
.main__language::before{
    content: "";
    position: absolute;
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: #fff;
    rotate: 45deg;
}
.list__language li a{
    color: #000000e0;
}
.list__language li a:hover{
    color: #46d841;
    text-decoration: none;
}


header{
    position: relative;
    background-color: #353535;
    z-index: 20;
}
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    margin: 0 auto;
    transition: all .6s;
}
@keyframes fadeInDown{
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(0);
    }
}
.logo{
    display: flex;
    align-items: center;
}
.logo img{
    width: auto;
    height: 70px;
    object-fit: cover;
    display: block;
}

.menu{
    height: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav__bar{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 0;
}
.sub__menu{
    padding: 0 10px;
    position: relative;
    perspective: 1000px;
    z-index: 1;
}
.sub__menu__title{
    position: relative;
    font-family: "Unica One", sans-serif;
    height: 100%;
    font-size: 18px;
    color: #fff !important;
    font-weight: 600;
    padding: 10px 0;
    text-transform: uppercase;
    display: block;
    text-decoration: none !important;
}
.sub__menu__title::before{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 0;
    height: 1px;
    
    transition: all .4s;
}
.sub__menu__title::after{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px;
    width: 0;
    height: 1px;
    
    transition: all .4s;
}
.sub__menu__title:hover::before,
.sub__menu__title:hover::after{
    width: 100%;
    transition: all .4s;
}
.sub__menu__title:hover{
    color: #46d841 !important;
    transition: all .2s;
}
header.other .sub__menu__title{
    color: #595959 !important;
    text-transform: uppercase;
}
header.other .icon-search i{
    color: #595959;
}
.sub__menu__title__child{
    position: relative;
}
.dropdown__menu__child{
    display: none;
}
.sub__menu__title__child:hover .dropdown__menu__child{
    display: block;
}
.dropdown__menu__child{
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fff;
}
.dropdown__menu{
    background-color: #1c1c1c;
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    border: 1px solid #1d1b1b33;
    padding: 7px 0;
    box-shadow: 0 10px 30px #00000014;
    transform-origin: top center;
    animation: rotateMenu .4s forwards;
    perspective: 1000px;
    display: none;
    z-index: -1;
}
.sub__menu:hover .dropdown__menu{
    display: block;
    
}
.dropdown__menu li{
    padding: 0 30px;
}
@keyframes rotateMenu{
    0% {
        transform: rotateX(-90deg);
    }
    70% {
        transform: rotateX(20deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}

.dropdown__menu li a{
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    padding: 8px 0;
    display: block;
    transition: all .3s;
}
.dropdown__menu li:hover a{
    color: #418a3d;
    text-decoration: none;
}

.menu__bar{
    display: none;
}
.menu__bar i{
    font-size: 22px;
}
/*end header*/

/*home*/
.banner,
.banner__home{
    position: relative;
}
.header__search{
    position: absolute;
    left: 0;
    bottom: 100px;
    width: 100%;
    padding: 16px;
    z-index: 2;
}
.form-search{
    display: flex;
    flex-wrap: wrap;
    padding: 16px;
    background-color: #fff;
}
.box__search{
    flex: 1;
    position: relative;
}
.box__search select,
.box__search input{
    width: 100%;
    height: 48px;
    border: 1px solid #e5e7eb;
    border-right: none;
    outline: none;
    padding-left: 30px;
}
.box__search button{
    width: 100%;
    height: 48px;
    background-color: #418a3d;
    border: none;
    outline: none !important;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
}
.icons__s{
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}
.icons__s i{
    color: #418a3d
}
.video__intro{
    position: relative;
    margin-bottom: 30px;
}
.play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}
.play i{
    font-size: 80px;
    color: #fff;
}
.video__intro:hover .play i{
    color: #418a3d;
}
.intro__content{
    text-align: right;
}
.intro__content h4{
    font-family: "Playfair Display",serif;
    font-size: 30px;
    color: #303030;
    font-weight: 500;
    margin-bottom: 30px;
}
.other__content{
    position: relative;
}
.text__content{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}
.text__content h4{
    font-family: 'Playfair Display';
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
}
.text__content p{
    color: #fff;
}

.st__destinations{
    background-image: url('../image/bg-shape.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.heading__title h3{
    font-family: "Kristi", cursive;
    font-size: 65px;
    color: #418a3d;
    font-weight: 500;
}
.heading__title p{
    font-size: 18px;
    color: #818181;
    line-height: 30px;
}
.list__destinations{
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    display: block;
    overflow: hidden;
}
.list__destinations img{
    height: 100%;
    object-fit: cover;
    transition: all .4s;
}
.list__destinations:hover img{
    transform: scale(1.1);
    transition: all .4s;
}
.list__destinations span{
    position: absolute;
    left: 20px;
    bottom: 20px;
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}
.item__exp__des{
    padding: 10px;
    text-align: center;
}
.item__exp__des h5{
    font-family: 'Playfair Display';
    font-size: 18px;
    color: #303030;
    font-weight: 700;
}
.tab-content{
    display: none;
}
.tab-content.current{
    display: block;
}

.main__tabs__content{
    background-color: #f1f1f1;
    padding: 40px;
    border-radius: 12px;
}
.tabs__img a{
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid #418a3d;
    border-radius: 6px;
    font-size: 18px;
    color: #418a3d;
    font-weight: 700;
    margin-top: 30px;
}
.tabs__des > div{
    max-height: 400px;
    overflow-y: auto;
}

.responsible{
    display: flex;
    flex-wrap: wrap;
}
.res__content,
.res__img{
    width: 50%;
}
.res__img img{
    height: 100%;
    object-fit: cover;
}
.res__content{
    background-image: url('../image/bg-respon.png');
    background-size: cover;
    padding: 100px;
    text-align: center;
}
.res__content a{
    font-size: 12px;
    color: #418a3d !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    border-bottom: 2px solid #418a3d;
    text-align: center;
    text-decoration: none !important;
    display: inline-block;
}

.list__travel{
    position: relative;
    margin-bottom: 30px;
}
.travel__img{
    backface-visibility: hidden;
    transition: all .5s;
}
.travel__img img{
    border-radius: 50px;
    min-height: 300px;
    transition: all .5s;
}
.travel__img p{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    font-family: 'AbAbril Fatface',cursive;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}
.btn-more{
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(180deg);
    backface-visibility: hidden;
    text-align: center;
    transition: all .5s;
}
.btn-more a{
    display: inline-block;
    padding: 11px 16px;
    font-size: 12px;
    color: #fff;
    background-color: #418a3d;
    background-image: linear-gradient(180deg,hsla(0,0%,100%,.2) 0,hsla(0,0%,100%,.01));
    border-radius: 5px;
    border: 1px solid #418a3d;
}
.btn-more a:hover{
    color: #fff;
    text-decoration: none;
}
.list__travel:hover .travel__img{
    transform: rotateY(180deg);
    transition: all .5s;
}
.list__travel:hover .btn-more{
    transform: translate(-50%, -50%) rotateY(0deg);
    transition: all .5s;
}
.heading__title a{
    display: inline-block;
    font-size: 14px;
    color: #418a3d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.1px;
    border-bottom: 2px solid #418a3d;
}

.list__atv{
    cursor: pointer;
    margin-bottom: 30px;
}
.atv__des{
    padding: 30px 10px 10px 10px;
}
.atv__des h5{
    font-size: 20px;
    color: #000;
    font-weight: 700;
}
.modal__atv{
    position: fixed;
    height: 80%;
    width: 65%;
    max-width: 90%;
    max-height: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #fff;
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08),0 3px 6px -4px rgba(0, 0, 0, 0.12),0 9px 28px 8px rgba(0, 0, 0, 0.05);
    z-index: 3;
    transition: all .4s;
}
.modal__atv.active{
    transform: translate(-50%, -50%) scale(1);
    transition: all .4s;
}
.md_w-50{
    width: 48%;
}
.overlay__modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000073;
    opacity: 0;
    z-index: -1;
    transition: all .4s;
}
.overlay__modal.active{
    opacity: 1;
    z-index: 2;
    transition: all .4s;
}
.close-md{
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    cursor: pointer;
}
.close-md i{
    margin: 3px;
    transition: all .3s;
}
.close-md:hover{
    background-color: #0000000f;
    transition: all .3s;
}
.close-md:hover i{
    color: #000;
    transition: all .3s;
}
.atv__des__modal{
    margin-top: 30px;
}
.atv__des__modal h5{
    font-size: 24px;
    color: #000;
    font-weight: 700;
}
.atv__des__modal p{
    font-size: 18px;
    color: #000;
    line-height: 28px;
}
.review{
    display: flex;
    flex-wrap: wrap;
}
.main__review,
.review__img{
    width: 50%;
}
.main__review{
    padding: 70px 50px;
    background-color: #f7f7f7;
    background-image: url('../image/bg-review.jpeg');
    background-size: cover;
}
.heading__rv{
    display: flex;
    gap: 15px;
}
.heading__rv img{
    width: 40px !important;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.author__rv h5{
    font-size: 15px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}
.author__rv span{
    font-size: 12px;
    color: #808285;
}
.review__content{
    position: relative;
    padding: 15px;
    background-color: #fff;
    box-shadow: 1px 1px 7px 0 rgba(0,0,0,.15),0 0 2px 0 rgba(0,0,0,.05);
    border-radius: 5px;
    margin-top: 15px;
}
.review__content::before{
    content: "";
    position: absolute;
    left: 11px;
    top: -7px;
    width: 15px;
    height: 15px;
    background-color: #fff;
    transform: rotate(45deg);
}
.icon__rv{
    display: flex;
    justify-content: space-between;
}
.icon__rv ul{
    display: flex;
    gap: 1px;
    margin-bottom: 0;
}
.icon__rv ul img{
    width: 16px !important;
    height: 16px;
    object-fit: cover;
}
.icon__rv div img{
    width: 20px !important;
    object-fit: cover;
}
.rv__text{
    max-height: 81px;
    overflow-y: auto;
}
.slide__review .owl-nav button.owl-next{
    position: absolute;
    top: 24px;
    right: 0;
    outline: none !important;
}
.slide__review .owl-nav button.owl-prev{
    position: absolute;
    top: 24px;
    right: 20px;
    outline: none !important;
}
.review__img img{
    height: 100%;
}
/*end home*/

/*about*/
.banner > img{
    width: 100%;
    max-height: 625px;
    object-fit: cover;
}
.path{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    text-align: center;
}
.path h4{
    font-family: 'Playfair Display';
    font-size: 60px;
    color: #fff;
    font-weight: 700;
}
.about__des{
    margin-bottom: 30px;
}
.about__des .heading__title h3{
    text-align: center;
}
.about__des .heading__title p{
    text-align: justify;
}
.about .row:nth-child(2n){
    flex-direction: row-reverse;
}
.list__other__about{
    margin-bottom: 30px;
}
.list__other__about img{
    width: auto;
    height: 50px;
    object-fit: cover;
    display: block;
    margin: auto;
}
.list__other__about h4{
    font-family: 'Playfair Display';
    font-size: 20px;
    color: #303030;
    font-weight: 700;
    text-align: center;
    margin: 20px 0;
}
.list__other__about p{
    text-align: justify;
}
.list__gallery{
    margin-bottom: 30px;
}
.st__contact{
    padding: 100px 0;
    min-height: 360px;
    position: relative;
    background-image: url('../image/bg-mask.jpg');
    background-size: cover;
}
 
.st__contact__content a{
    display: inline-block;
    position: relative;
    font-size: 14px;
    color: #418a3d !important;
    text-decoration: none !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.4px;
}
.st__contact__content a::after{
    background-color: #418a3d;
    bottom: -3px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transition: none;
    width: 100%;
    transition: transform .3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.st__contact__content a:hover::after{
    transform-origin: 100% 50%;
    transform: scaleX(0);
    animation: animate-btn-line .2s .2s forwards;
}
@keyframes animate-btn-line {
    0% {
        transform-origin: 0 50%;
        transform: scaleX(0)
    }

    100% {
        transform-origin: 0 50%;
        transform: scaleX(1)
    }
}
/*end about*/

/*destinations*/
.list__place{
    margin-bottom: 30px;
}
.place__des{
    padding: 15px 0;
    text-align: center;
}
.place__des a{
    display: inline-block;
    font-family: 'Playfair Display';
    font-size: 22px;
    color: #303030;
    font-weight: 700;
}
.place__des a:hover{
    color: #418a3d;
    text-decoration: none;
    transition: all .3s;
}
.place__img{
    overflow: hidden;
}
.place__img img:hover{
    transform: scale(1.1);
    transition: all .4s;
}
.place__img img{
    transition: all .4s;
}
.list__holiday{
    margin-bottom: 30px;
}
.holiday__des{
    padding: 15px;
}
.holiday__name{
    display: inline-block;
    font-size: 20px;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
}
.view__tour{
    display: inline-block;
    padding: 10px 16px;
    color: #fff;
    background-color: #418a3d;
}
.view__tour:hover{
    color: #fff;
    background-color: #f37820;
    text-decoration: none;
    transition: all .3s;
}
.btn__view-more a{
    display: inline-block;
    padding: 4px 8px;
    color: #1c1c1c;
    border-bottom: 1px solid #1c1c1c;
}
.btn__view-more a i{
    color: #1c1c1c;
}
.btn__view-more a:hover{
    color: #418a3d;
    border-color: #418a3d;
    text-decoration: none;
}
.btn__view-more a:hover i{
    color: #418a3d;
}
.guide__title{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    cursor: pointer;
}
.list__guide{
    border-bottom: 1px solid #e5e7eb;
}
.guide__title > span{
    font-family: 'Playfair Display';
    font-size: 18px;
    color: #303030;
    font-weight: 700;
    transition: all .3s;
}
.guide__title > div{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.guide__title > .icon__right i{
    transition: all .3s;
}
.list__guide.show .guide__title .icon__right{
    box-shadow: 0 1px 2px #03363f66,0 -1px 2px #03363f0a;
}
.list__guide.show .guide__title .icon__right i{
    transform: rotate(180deg);
    transition: all .3s;
}
.list__guide.show .guide__title > span{
    color: #418a3d;
    transition: all .3s;
}
.qa{
    background-color: #f4f4f4;
}
.qa h5{
    font-family: 'Playfair Display';
    font-size: 24px;
    color: #303030;
}
.intro__destinations iframe{
    width: 100%;
    object-fit: cover;
    display: block;
}
.destinations__des{
    text-align: justify;
}
/*end destinations*/

/*tour*/
.intro__title h4{
    font-family: 'Playfair Display';
    font-size: 24px;
    color: #303030;
    font-weight: 700;
}
.eqr{
    display: block;
    padding: 12px 32px;
    background-color: #177fa4;
    border-radius: 30px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}
.eqr:hover{
    background-color: #0969a1;
    color: #fff;
    text-decoration: none;
}
.intro__detail__img img{
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
}
.st__faq h4,
.itinerary h4,
.places > h4{
    font-family: 'Playfair Display';
    font-size: 30px;
    color: #303030;
    font-weight: 600;
    margin-bottom: 30px;
}
.list__places img{
    border-radius: 12px;
}
.list__places p{
    font-size: 18px;
    color: #303030;
    font-weight: 600;
    margin-top: 10px;
}
.tour__map iframe{
    width: 100%;
    border-radius: 12px;
    display: block;
}
.guide__itr{
    padding-left: 50px;
}
.guide__itr .list__guide{
    position: relative;
}
.guide__itr .list__guide:first-child:before{
    content: "\f059";
    position: absolute;
    left: -37px;
    top: 14px;
    font-size: 25px;
    color: #0969a1;
    font-family: 'fontawesome';
}
.guide__itr .list__guide:not(:first-child)::before{
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #1c1c1c80;
    left: -32px;
    top: 27px;
    transition: all .3s;
}
.guide__itr .list__guide:not(:first-child)::after{
    content: "";
    position: absolute;
    width: 2px;
    height: calc(100% - 12px);
    top: 39px;
    left: -27px;
    background-color: #1c1c1c1a;
    transition: all .3s;
}
.guide__itr .list__guide:last-child::after{
    display: none;
}
.guide__itr .list__guide.show:not(:first-child)::before,
.guide__itr .list__guide.show:not(:first-child)::after{
    background-color: #418a3d;
    transition: all .3s;
}
.guide__itr .guide__title > span{
    font-family: 'Cabin', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
}
.include{
    padding-left: 50px;
}
.include .icon__left{
    position: absolute;
    top: 14px;
    left: -45px;
    box-shadow: none !important;
}
.icon__left i{
    font-size: 25px;
    color: #418a3d;
}
.include .guide__title > span{
    font-family: 'Cabin', sans-serif;
    font-size: 16px;
}
.st__faq .include{
    padding-left: 0;
}
.st__faq .guide__title{
    padding: 5px 0;
}
.st__faq .guide__title > span{
    font-family: 'Playfair Display';
}
.text__box{
    padding: 20px;
    border: 1px solid #ddd;
}
.text__box p{
    color: #000;
    text-align: center;
}
.list__if{
    display: flex;
    justify-content: center;
    gap: 10px;
}
.icon{
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.icon i{
    color: #fff;
}
.working{
    border: 1px solid #ddd;
}
.working h4,
.similar__tour h4{
    font-family: 'Playfair Display';
    font-size: 24px;
    color: #303030;
    padding: 12px 32px;
}
.similar__tour h4{
    padding: 0;
    margin-bottom: 20px;
}
.working ul{
    border-top: 1px solid #ddd;
    margin-top: 12px;
    padding: 12px 32px;
    margin-bottom: 0;
}
.working ul li{
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}
.working ul li:last-child{
    border-bottom: none;
    margin-bottom: 0;
}
.working ul li div:first-child{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 600;
}
.txt p{
    color: #000;
    font-weight: 600;
    margin-bottom: 0;
}
.txt span{
    font-size: 14px;
}
.list__similar__tour{
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}
.similar__tour__img img{
    min-width: 120px;
    width: 120px;
    height: auto;
    object-fit: cover;
    display: block;
}
.similar__tour__des a{
    display: inline-block;
    color: #000;
    font-weight: 600;
}
.similar__tour__des a:hover{
    color: #418a3d;
    text-decoration: none;
}
.similar__tour__des p{
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 1;
   -webkit-box-orient: vertical;
    margin-bottom: 0;
}
/*end tour*/

/*responsible*/
.title__res h3{
    font-family: 'Playfair Display';
    font-size: 48px;
    color: #303030;
    font-weight: 700;
}
.list__card{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.card__item{
    display: block;
    width: calc(25% - 7.5px);
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
}
.other__info__content p{
	text-align: justify;
}
.card__img{
    position: relative;
    overflow: hidden;
    transform: rotateY(0);
    transform-style: preserve-3d;
    transition: all ease-in-out .5s;
}
.card__img img{
	height: 245px;
    border-radius: 18px;
}
.reason__txt{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background-color: #00000040;
}
.reason__txt img{
	width: 71px;
    height: 86px;
    object-fit: cover;
}
.reason__txt p{
    font-family: 'Playfair Display';
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
}
.card__des{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f3f4f6;
    border-radius: 18px;
    padding: 20px 15px;
    text-align: center;
    transform: rotateY(-180deg);
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: all ease-in-out .5s;
}
.card__des p{
    color: #303030;
}
.card__item:hover .card__img{
    transform: rotateY(180deg);
    transition: all ease-in-out .5s;
}
.card__item:hover .card__des{
    transform: rotateY(0deg);
    transition: all ease-in-out .5s;
}
.list__content{
    margin-bottom: 30px;
}
.list__content:nth-child(2n){
    flex-direction: row-reverse;
}
.list__content h4{
    font-family: 'Playfair Display';
    font-size: 36px;
    color: #303030;
    font-weight: 600;
    text-align: center;
}
.explore .holiday__des{
    text-align: center;
}
.explore .holiday__name{
    font-size: 16px;
    color: #000;
}
/*end responsible*/


/*blog*/
.list__blog{
    margin-bottom: 30px;
}
.blog__des{
    margin-top: 20px;
}
.blog__des a{
    display: inline-block;
    font-family: 'Playfair Display';
    font-size: 18px;
    color: #303030;
    font-weight: 700;
    margin-bottom: 10px;
}
.blog__des a:hover{
    color: #418a3d;
    text-decoration: none;
}
.blog__des p{
    font-size: 16px;
    color: #808285;
    line-height: 28px;
}
.meta__blog{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.blog__img li{
    font-size: 16px;
    color: #c2c2c2;
}
.detail__blog__content h2{
    color: #303030;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-top: 15px;
}
.sidebar__blog{
    padding: 15px;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    margin-bottom: 30px;
}
.sidebar__blog h4{
    display: inline-block;
    color: #303030;
    font-family: 'Playfair Display';
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 2px;
    border-bottom: 2px solid #418a3d;
    margin-bottom: 20px;
}
.cate ul li{
    margin-bottom: 15px;
}
.cate ul li a{
    display: block;
    font-size: 16px;
    color: #808285;
}
.cate ul li a:hover{
    color: #418a3d;
    text-decoration: none;
}
.list__post{
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding-bottom: 20px;
}
.list__post:not(:last-child){
    border-bottom: 1px solid #ebebeb;
}
.post__img img{
    min-width: 90px;
    width: 90px;
    object-fit: cover;
    display: block;
}
.post__des a{
    display: inline-block;
    font-size: 14px;
    color: #222222;
    font-weight: 600;
}
.post__des a:hover{
    color: #418a3d;
    text-decoration: none;
}
/*end blog*/

/*booking*/
.traveling ul,
.other__choose ul{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.traveling ul li label,
.other__choose ul li label{
    cursor: pointer;
}
.traveling ul li input{
    border: 1px solid #d9d9d9;
    border-radius: 4px;
}
.btn-booking button{
    display: inline-block;
    padding: 6px 16px;
    font-size: 14px;
    color: #fff;
    background-color: #418a3d;
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, .2) 0, hsla(0, 0%, 100%, .01));
    border-radius: 6px;
    box-shadow: 0 2px 0 rgba(13, 47, 1, 0.26);
    border: 1px solid #418a3d;
    outline: none !important;
    cursor: pointer;
}
/*end booking*/

/*contact*/
.form-contact label{
    font-size: 14px;
    color: #000;
}
.form-contact .rq{
    color: red;
}
.form-contact button{
    display: inline-block;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 0 2px 0 rgba(13, 47, 1, 0.26);
    color: #fff;
    background-color: #418a3d;
    border: none;
    outline: none !important;
    cursor: pointer;
}
.contact__info{
    text-align: right;
}
.map iframe{
    width: 100%;
}
/*end contact*/

.btn-fixed{
    position: fixed;
    right: 0;
    bottom: 100px;
    background-color: #418a3d;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08), 0 3px 10px rgba(0, 0, 0, .08);
    cursor: pointer;
    padding: 16px 8px;
    text-align: center;
    transform: rotate(180deg);
    transition: all .12s ease-in-out;
    writing-mode: vertical-rl;
    z-index: 20;
}
.btn-fixed span{
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}
.btn-fixed.active{
    width: 46px;
    height: 46px;
    right: 30px;
    transform: rotate(0deg);
    border-radius: 50%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    writing-mode: horizontal-tb;
}
.btn-fixed.active span{
    font-size: 9px;
    font-weight: 700;
}
.contact__tool{
    position: fixed;
    right: 30px;
    bottom: 100px;
    opacity: 0;
    visibility: hidden;
    z-index: 20;
    transition: all .4s;
}
.contact__tool.active{
    bottom: 140px;
    visibility: visible;
    opacity: 1;
    transition: all .4s;
}
.contact__tool ul li{
    margin-bottom: 10px;
}
.contact__tool ul li a{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    text-decoration: none !important;
}
.contact__tool ul li a span{
    display: inline-block;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
    color: #333;
    max-width: 200px;
    padding: 5px 15px;
    text-align: center;
    white-space: nowrap;
}
.contact__tool ul li a p{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #418a3d;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}
.contact__tool ul li a p i{
    color: #fff;
}

/*footer*/
footer{
    background-color: #1c1c1c;
    padding-top: 40px;
}
.footer__content ul li{
    margin-bottom: 12px;
}
.footer__content ul li:hover,
.footer__content ul li i{
    color: #418a3d;
}
.form-newsletter{
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}
.form-newsletter input{
    width: 100%;
    padding: 18px;
    padding-right: 60px;
    border: none;
    outline: none;
    background-color: #fff;
}
.form-newsletter button{
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    padding: 0 15px;
    background-color: #418a3d;
    letter-spacing: 2.8px;
    border: none;
    outline: none !important;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}
.footer__links h4{
    font-family: 'Playfair Display';
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 24px;
}
.footer__links ul li{
    margin-bottom: 12px;
}
.footer__links li a{
    color: #808285;
}
.footer__links li a:hover{
    color: #418a3d;
    text-decoration: none;
}
.footer__links ul.social{
    display: flex;
    gap: 15px;
}
.footer__links ul.social li a i{
    font-size: 25px;
    color: #fff;
}
.footer__btn{
    display: block;
    padding: 12px 0;
    color: #418a3d;
    border: 1px solid #418a3d;
    text-align: center;
}
.footer__btn:hover{
    background-color: #418a3d;
    color: #fff;
    text-decoration: none;
}
.copyright{
    padding: 24px 16px;
    margin-top: 30px;
    border-top: 1px solid #323232;
    text-align: center;
}
.copyright p{
    margin-bottom: 0;
}
/*end footer*/

@media only screen and (max-width: 1200px){
    .menu{
        display: none;
    }
    .menu__bar{
        display: block;
    }
    .header__search{
        bottom: 30px;
    }
    .res__content,
    .main__review{
        padding: 70px 30px;
    }
    .footer__links{
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767.98px){
    .path h4{
        font-size: 25px;
    }
    .header__search{
        position: static;
    }
    .form-search{
        padding: 0;
    }
    .box__search{
        width: 100%;
        flex: unset;
        margin-bottom: 10px;
    }
    .box__search select, .box__search input{
        border-right: 1px solid #e5e7eb;
    }
    .intro__content{
        text-align: left;
    }
    .text__content h4{
        font-size: 30px;
    }
    .other__content > img{
        min-height: 350px;
        object-fit: cover;
    }
    .main__review, .review__img,
    .res__content, .res__img{
        width: 100%;
    }
    .main__review{
        padding: 30px 15px;
    }

    .intro__title{
        margin-top: 20px;
    }
}













.search{
    position: relative;
}
.form__search{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -58.5px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 10px 0 rgb(15 41 77 / 12%);
    padding: 24px 16px;
}
.control__view{
    border-radius: 35px;
    border: 2px solid rgba(0, 0, 0, 0.12);
}
.control__view.item__date{
    padding: 0;
}
.form__search .lr-4{
    padding-left: 4px;
    padding-right: 4px;
}
.box__root{
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.box__root input{
    cursor: pointer;
}
.item__location .box__root{
    padding: 10px 18px;
    border-radius: 35px;
}
.location__txt{
    text-align: left;
}
.item__location .control__content{
    width: 100%;
}
.icon__input i{
    font-size: 20px;
    color: #000;
}
.control__content p{
    font-size: 14px;
    color: #000;
    font-weight: 600;
    margin-bottom: 0;
}
.control__content select,
.control__content > input{
    height: 19px;
    width: 100%;
    border: none;
    outline: none;
}

.item__date{
    display: flex;
    flex-wrap: wrap;
}
.item__date .box__root{
    width: 50%;
    padding: 10px 18px;
}
.item__date .box__root:first-child{
    border-right: 2px solid rgba(0, 0, 0, 0.12);
    border-radius: 35px 0 0 35px;
}
.btn__search .box__root{
    border-radius: 35px 0 0 35px;
}
.item__date .box__root:nth-child(2){
    border-radius: 0 35px 35px 0;
}
.btn__search.control__view{
    padding: 0;
}
.btn__search .box__root{
    padding: 10px 18px;
    width: 50%;
}
.root__button{
    width: 50%;
    padding: 4px;
}
.btn__search{
    display: flex;
    flex-wrap: wrap;
}
.root__button button{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background-color: #b72025;
    border-radius: 50px;
    box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
}
.root__button button i{
    color: #fff;
}
.root__button button:hover{
    background-color: #a10e13;
    transition: all .3s;
}

.item__location:hover .box__root input,
.item__location:hover,
.box__root:hover,
.box__root:hover input,
.box__root:hover select{
    background-color: #f2f2f2;
}
.item__location{
    position: relative;
}
.result__des,
.add__guest{
    position: absolute;
    width: 100%;
    top: calc(100% + 10px);
    left: 0;
    background-color: #fff;
    padding: 32px;
    border-radius: 24px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 0px 0px 1px, rgba(0, 0, 0, 0.15) 0px 8px 16px;
    z-index: 2;
    display: none;
}
.add__guest{
    left: unset;
    right: 0;
    width: calc(100% + 100px);
}
.add__guest.active{
    display: block;
}
.result__des p{
    font-size: 16px;
    color: #000;
    font-weight: 600;
}
.flex__des{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}
.list__result-des{
    width: calc(33% - 10px);
    cursor: pointer;
}
.list__result-des img{
    border-radius: 12px;
}
.list__result-des p{
    margin-top: 5px;
    margin-bottom: 0;
}
.list__rs-location{
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px;
    cursor: pointer;
}
.list__rs-location:hover{
    background-color: rgb(245, 245, 245);
}
.icon-rs{
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: rgb(238, 238, 238);
    display: flex;
    justify-content: center;
    align-items: center;
}
.icon-rs i{
    font-size: 20px;
    color: #000;
}
.result__des-img.hide,
.result__location{
    display: none;
}
.result__location.active,
.result__des.active{
    display: block;
}
.add__guest h6{
    font-size: 13px;
    color: #000;
}
.list__add{
    display: flex;
    justify-content: space-between;
}
.item__info-add h5{
    font-size: 16px;
    color: #000;
    font-weight: 500;
}
.item__info-add p{
    font-size: 13px;
    color: #000;
    margin-bottom: 0;
}
.list__add{
    margin-top: 20px;
    padding-bottom: 20px;
}
.list__add:not(:last-child){
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.btn__change{
    display: flex;
    align-items: center;
}
.btn__change span{
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    border: 1px solid #1c2d4a;
    cursor: pointer;
}
.btn__change input{
    width: 50px;
    border: none;
    outline: none;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

/*==============================================*/
/* home */

.search__des{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    background-color: #fff;
    border-radius: 50px;
    z-index: 2;
}
.main__search-des{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 50px;
}
.result__location-bn{
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    width: 100%;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 0px 0px 1px, rgba(0, 0, 0, 0.15) 0px 8px 16px;
    display: none;
}
.result__location-bn.active{
    display: block;
}
.result__location-bn ul{
    margin-bottom: 0;
    border-radius: 8px;
    overflow: hidden;
}
.result__location-bn ul li{
    position: relative;
    padding: 20px 30px;
    display: flex;
    cursor: pointer;
}
.result__location-bn ul li:not(:last-child)::before{
    content: "";
    position: absolute;
    width: calc(100% - 60px);
    left: 30px;
    bottom: 0;
    height: 1px;
    background-color: #ddd;
}
.result__location-bn ul li:hover{
    background-color: #dddddd94;
}
.result__location-bn ul li p{
    margin-bottom: 0;
}
.result__location-bn ul li i{
    width: 25px;
    font-size: 25px;
    color: #b72025;
}
.main__search-des input,
.main__search-des:hover{
    background-color: #f5f5f5;
}
.input__location,
.input__time{
    width: 50%;
    padding: 12px 30px;
}
.input__location:hover input,
.input__location:hover,
.input__time:hover,
.input__time:hover input{
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 10px 0px;
    background-color: #fff;
}
.input__location:hover input,
.input__time:hover input{
    box-shadow: none;
}
.input__location{
    position: relative;
}
.input__location::before{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 55%;
    border-right: 1px solid #d9d9d9;
}
.input__location > p,
.input__time p{
    font-size: 13px;
    color: #000;
    font-weight: 600;
    margin-bottom: 3px;
}
.input__time input,
.input__location input{
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 14px;
}
.destination__txt{
    height: 16px;
}
.input__time{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 30px;
}
.input__time button{
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #b72025;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
}
.input__time button i{
    color: #fff;
}
@media only screen and (max-width: 767.98px){
    .search__des{
        border-radius: 10px;
        width: 90%;
    }
    .input__location, .input__time{
        width: 100%;
        box-shadow: none !important;
    }
    .input__location{
        border-radius: 50px 50px 0 0 !important;
    }
    .input__time{
        border-radius:  0 0 50px 50px !important;
    }
    .main__search-des:hover{
        background-color: #fff;
    }



    /*mobile*/
    .search__fixed{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        padding: 14px 16px;
        border-radius: 30px;
        width: 80%;
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 20;
    }
    .overlay__search-mb{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.5);
        z-index: 10;
        display: none;
    }
    .search__fixed i{
        font-size: 20px;
        color: #000;
    }
    .search__fixed input{
        border: none;
        outline: none;
    }
    .search__change{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 250px;
        background-color: #fff;
        padding-top: 30px;
        z-index: 20;
        display: none;
    }
    .search__change.active{
        display: block;
    }
    .close-search{
        position: absolute;
        top: 15px;
        right: 15px;
        color: #000;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: #f5f5f5;
        text-align: center;
        line-height: 32px;
        font-size: 12px;
    }
    .back-search{
        position: absolute;
        top: 15px;
        left: 15px;
        color: #000;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: #f5f5f5;
        text-align: center;
        line-height: 32px;
        font-size: 12px;
        display: none;
    }
    .search__change h6{
        font-size: 14px;
        color: #000;
        font-weight: 600;
        text-align: center;
    }
    .input__time__content,
    .btn__search-des{
        width: 100%;
    }
    .input__time input, .input__location input{
        width: 100%;
        height: 44px;
        border: 1px solid #b3b3b3;
        border-radius: 30px;
        padding: 0 20px 0 40px;
    }
    .p-rl{
        position: relative;
    }
    .p-rl i{
        position: absolute;
        top: 50%;
        left: 15px;
        transform: translateY(-50%);
        color: #000;
    }
    .input__location, .input__time{
        padding: 8px 30px;
    }
    .input__time__content{
        margin-bottom: 16px;
    }
    .input__time button{
        width: 100%;
        border-radius: 4px;
    }
    .result__location-bn{
        top: 100%;
        height: calc(100% + 100vh);
        overflow-y: auto;
        z-index: 2;
    }
}

/*==============================================*/


@media only screen and (min-width: 1200px){
    .search .container{
        min-width: 1218px;
    }
}
@media only screen and (max-width: 991px){
    .control__view{
        margin-bottom: 15px;
    }
    .add__guest{
        width: 100%;
    }
    .search__des{
        width: 70%;
    }

    .item__date .box__root:first-child{
        width: 55%;
    }
    .item__date .box__root:nth-child(2){
        width: 45%;
    }
}



