*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'GoogleSans-Medium';
    font-size: 14px;
}
@font-face {
    font-family: "GoogleSans-Medium";
    src: url('../font/GoogleSans-Medium.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: "GoogleSans-Light";
    src: url('../font/GoogleSans-Regular.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: "GoogleSans-Bold";
    src: url('../font/GoogleSans-Bold.woff') format('woff');
    font-display: swap;
}
ul{
    margin-bottom: 0;
}
ul li{
    list-style: none;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
    object-fit: cover;
}
a:hover, a:focus {
    text-decoration: none;
}

input, button, textarea, select{
    outline: none;  
}
.line-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.line-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.line-4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
/*menu mobile*/
.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 21;
}
.menu__mobile{
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 0 10px 0 #00000080;
    transform: translateX(-100%);
    z-index: 22;
    transition: all ease-in-out .4s;
}
.menu__mobile.active{
    transform: translateX(0);
    transition: all ease-in-out .4s;
}
.logo__mobile{
    padding: 20px 30px;
    border-bottom: 1px solid #DCE0E0;
}
.logo__mobile p{
    margin-bottom: 0;
}
.close-menu{
    position: absolute;
    top: 30px;
    right: 30px;
    color: #616161;
}
.close-menu i{
    font-size: 20px;
}
.menu__mobile img{
    height: 58px;
    object-fit: cover;
    display: block;
    margin: 30px 20px;
}
.main__menu__mobile{
    margin: auto;
    margin-top: 20px;
    padding: 0 20px 0 30px;
}
.dropdown__menu__mobile li a{
    font-size: 14px;
    color: #000;
}
.dropdown__menu__mobile li{
    padding: 5px 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: 18px;
    color: #000 !important;
    padding: 5px 0px;
}
.menu__title__mobile i{
    margin-left: 5px;
    color: #000;
    transition: all .4s;
}
.show__dropdown{
    background-color: #0000000d;
}
.sub__menu__mobile.show__dropdown .dropdown__menu__mobile{
    display: block;
}
.sub__menu__mobile.rotate__icons i{
    transform: rotate(90deg);
    transition: all .4s;
}
/*end menu mobile*/


/*header*/
header{
    padding: 10px 0;
    z-index: 20;
}
.menu__bar{
    display: none;
}
header.active{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: toggleDown .5s linear forwards;
    box-shadow: 0px 4px 30px 0px #44444426;
    background-color: #fff;
}
@keyframes toggleDown{
    0%{
        opacity: 0;
        transform: translateY(-100%);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
.header{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    transition: all .6s;
}
.logo{
    display: flex;
    align-items: center;
}
.logo img{
    width: auto;
    height: 70px;
    object-fit: cover;
    display: block;
}
header.active .logo img{
    height: 50px;
}
.header__mobile{
    display: none;
    padding: 10px 0;
}
.logo__header-mb img{
    height: 57px;
}
.title__logo p{
    color: #234F94;
    margin-bottom: 0;
}
.search__mobile{
    max-width: 60%;
    display: none;
}
.form-search{
    position: relative;
    overflow: hidden;
}
.form-search input{
    width: 100%;
    height: 40px;
    padding: 0 50px 0 15px;
    background-color: #fff;
    border-radius: 30px;
    border: none;
    outline: none;
}
.form-search button{
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    outline: none !important;
    font-size: 20px;
    color: #C12D82;
    cursor: pointer;
}
.form-search button i{
    font-size: 20px;
}
.menu{
    height: 70px;
    display: flex;
    align-items: center;
    gap: 30px;
}
header.active .menu{
    height: 50px;
}
.nav__bar{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}
.sub__menu{
    padding: 0 10px;
}
.sub__menu__title{
    position: relative;
    height: 70px;
    line-height: 70px;
    font-size: 14px;
    color: #011a10 !important;
    font-weight: 300;
    display: block;
    text-transform: uppercase;
    text-decoration: none !important;
}
header.active .sub__menu__title{
    height: 50px;
    line-height: 50px;
}
.sub__menu__title img{
    height: 8px;
}

.sub__menu__title:hover::after{
    width: 100%;
    left: 0;
    right: unset;
    transition: all .4s;
}
.sub__menu__title:hover{
    color: #C12D82 !important;
    transition: all .2s;
}
header.other .sub__menu__title{
    color: #011a10 !important;
    text-transform: uppercase;
}
header.other .icon-search i{
    color: #011a10;
}
.sub__menu__title__child{
    position: relative;
}

.dropdown__menu{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1150px;
    padding-top: 10px;
    box-shadow: 0 10px 30px #00000014;
    display: none;
    z-index: 5;
}
.sub__menu:hover .dropdown__menu{
    display: block;
    
}
.menu__left{
    width: 300px;
    height: 412px;
    background-color: #234F94;
    padding: 20px 0;
    
}

.menu__content{
    position: absolute;
    top: 10px;
    left: 300px;
    width: 850px;
    height: 412px;
    background-color: #fff;
    display: none;
}
.sub__menu-left.active .menu__content,
.sub__menu-left:hover .menu__content{
    display: flex;
}
.main__menu__content{
    width: 65%;
    padding: 20px;
}
.main__menu__content a{
    font-family: "GoogleSans-Light";
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #000;
    padding-left: 15px;
    margin-bottom: 10px;
}
.main__menu__content a::before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
}
.main__menu__content a:hover{
    color: #C12D82;
    text-decoration: none;
}
.menu__content > img{
    width: 35%;
}
.title__menu-left{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 10px 25px;
    font-size: 18px;
    color: #fff;
}
.sub__menu-left.active .title__menu-left,
.sub__menu-left:hover > .title__menu-left{
    background-color: #C12D82;
    color: #fff;
    text-decoration: none;
    transition: all .2s;
}


.menu__bar span{
    display: inline-block;
    width: 28px;
    height: 2px;
    background-color: #fff;
    transition: all .4s;
}
.menu__bar span:nth-child(3){
    width: 20px;
}
.btn__header{
    display: flex;
    align-items: center;
    gap: 20px;
}
.language{
    position: relative;
}
.language p{
    font-size: 14px;
    color: #011a10;
    font-weight: 300;
    margin-bottom: 0;
    cursor: pointer;
}
.language p i{
    font-size: 24px;
    color: #828282;
    transition: all .4s;
}
.main__lg{
    position: absolute;
    top: calc(100% + 30px);
    right: 0;
    width: max-content;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 30px 0px #64646440;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transition: all .4s;
}
.main__lg.active{
    top: 100%;
    opacity: 1;
    visibility: visible;
    transition: all .4s;
}
.language p.rotate-icon img{
    transform: rotate(180deg);
    transition: all .4s;
}
.main__lg li:not(:last-child){
    margin-bottom: 20px;
}
.main__lg li a{
    display: block;
    font-size: 16px;
    color: #000;
}
.main__lg li a:hover{
    color: #C12D82;
    text-decoration: none;
}
.main__lg li a img{
    width: 24px;
    height: 24px;
}
.btn__booking-header a{
    display: inline-block;
    padding: 14px 40px;
    background-color: #234F94;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    transition: all .3s;
}
.btn__booking-header a:hover{
    background-color: #C12D82;
    color: #fff;
    text-decoration: none;
    transition: all .3s;
}
header.active .btn__booking-header a{
    padding: 9px 40px;
}
/*end header*/

/*home*/
.header__info{
    padding: 10px 0;
}
.text__lef{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.text__lef > p{
    color: #C12D82;
    margin-bottom: 0;
}
.text__lef p{
    margin-bottom: 0;
}
.text__lef > p strong{
    font-family: 'GoogleSans-Bold';
    font-size: 14px;
    font-weight: 700;
}
.hotline__top{
    position: relative;
}
.hotline__top > p a{
    font-family: 'GoogleSans-Bold';
    color: #C12D82;
    font-weight: 700;
}
.list__hotline{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 15px;
    width: 420px;
    box-shadow: 0px 4px 100px 0px #64646440;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transition: all .2s;
}
.list__hotline::before{
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 28px;
    height: 28px;
    background-color: #fff;
    transform: rotate(45deg) translateX(-50%);
}
.hotline__top:hover .list__hotline{
    opacity: 1;
    visibility: visible;
    transition: all .2s;
}
.list__hotline h4{
    font-size: 22px;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.list__hotline ul li{
    display: flex;
    justify-content: space-between;
}
.list__hotline ul li:not(:last-child){
    margin-bottom: 24px;
}
.list__hotline ul li p{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}
.list__hotline ul li p span{
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.2px solid #A5A5A5;
}
.list__hotline ul li p span::before{
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #C12D82;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.list__hotline ul li a{
    font-size: 22px;
    color: #C12D82;
}
.navbar__right ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 0;
}
.navbar__right ul li a{
    color: #000;
}
.navbar__right ul li a:hover{
    color: #C12D82;
    text-decoration: none;
}
.slide__banner .owl-nav{
    opacity: 0;
    transition: all .3s;
}
.slide__banner:hover .owl-nav{
    opacity: 1;
    transition: all .3s;
}
.slide__banner .owl-nav button i{
    color: #fff;
}
.slide__banner .owl-nav button.owl-prev{
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #fff !important;
    border-radius: 50%;
    outline: none !important;
}
.slide__banner .owl-nav button.owl-next{
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #fff !important;
    border-radius: 50%;
    outline: none !important;
}
.slide__banner .owl-nav button:hover{
    border-color: #C12D82 !important;
    background-color: #C12D82 !important;
    transition: all .2s;
}
.owl-theme.slide__banner .owl-nav{
    margin-top: 0;
}
.tab-content-calendar,
.tab-content{
    display: none;
}
.tab-content-calendar.current,
.tab-content.current{
    display: block;
    animation: anmTab .8s forwards;
}
@keyframes anmTab{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.search__tour{
    position: relative;
    margin-top: -41px;
    z-index: 2;
}
.other__search{
    display: none;
}
.tabs{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 0;
}
.list__tabs{
    padding: 10px 25px;
    border-radius: 10px 10px 0px 0px;
    background-color: #234F94;
    color: #fff;
    cursor: pointer;
}
.list__tabs.current{
    background-color: #fff;
    color: #000;
}
.main__tab{
    padding: 25px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 4px 30px 0px #44444426;
}
.heading__choose ul{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}
.checkbox-item{
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}
.checkbox-item .checkmark {
    position: absolute;
    top: 1px;
    left: 0px;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border-radius: 50%;
    border: 1.2px solid #A5A5A5;
}
.checkbox-item .checkmark::before{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #C12D82;
    display: none;
}
.checkbox-item input:checked ~ .checkmark::before{
    display: block;
}
.checkbox-item input:checked ~ .checkmark {
    border: 1.2px solid #C12D82;
}
.search__field{
    position: relative;
}
.search__field i{
    position: absolute;
    left: 12px;
    top: 12px;
    font-size: 18px;
}
.input__field input{
    width: 100%;
    height: 40px;
    border: 1px solid #DCE0E0;
    border-radius: 8px;
}
.search__field input{
    padding: 0 15px 0 40px;
}
.select2-container .select2-selection--single{
    height: 40px !important;
    border: 1px solid #DCE0E0 !important;
    border-radius: 8px !important;
    outline: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 40px !important;
    font-size: 16px;
}
.select2-container{
    width: 100% !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 7px !important;
}
.btn-search{
    height: 100%;
}
.btn-search button{
    width: 100%;
    height: 100%;
    border: none;
    outline: none !important;
    background-color: #C12D82;
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

.where__go__txt{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
}
.where__go__txt p{
    font-size: 17px;
}
.where__go__txt img{
    width: 56px;
}
.list__nation{
    padding: 8px;
    border-radius: 30px;
    background-color: #f5f5f5;
    display: flex;
    gap: 6px;
    align-items: center;
}
.list__nation img{
    width: 40px !important;
}
.slide__nation .owl-nav button i{
    font-size: 20px;
    color: #616161;
}
.slide__nation .owl-nav button.owl-prev{
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    outline: none !important;
    background-color: transparent !important;
}
.slide__nation .owl-nav button.owl-next{
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    outline: none !important;
    background-color: transparent !important;
}
.category{
    border-top: 1px solid #DCE0E0;
}
.list__cate{
    display: block;
    text-align: center;
    text-decoration: none !important;
    color: #000 !important;
    border: 2px solid transparent;
    padding-bottom: 10px;
}
.list__cate:hover{
    border-color: #C12D82;
    border-radius: 10px;
}
.list__cate span{
    display: block;
    font-size: 16px;
    text-transform: uppercase;
}
.pre__tour{
    background-image: url('../image/bg-pre-tour.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 45px 0;
}
.wrap__text__tour{
    margin-bottom: 30px;
}
.wrap__text__tour h5{
    font-size: 26px;
    color: #fff;
}
.wrap__text__tour h3{
    font-family: 'GoogleSans-Bold';
    font-size: 60px;
    color: #fff;
}
.wrap__text__tour a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background-color: #C12D82;
    font-size: 17px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 40px;
}
.wrap__text__tour a i{
    font-size: 28px;
}
.wrap__text__tour a:hover{
    color: #fff;
    text-decoration: none;
}
.list__tour{
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}
.tour__img{
    display: block;
    position: relative;
    overflow: hidden;
}
.tour__img img{
    transition: all .4s;
}
.tour__img:hover img{
    transform: scale(1.1);
    transition: all .4s;
}
.tour__img::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(35, 79, 148, 0) 0%, rgba(0, 0, 0, 0.7) 87%);
    z-index: 2;
}
.vehicle{
    position: absolute;
    top: 20px;
    right: 20px;
}
.vehicle p{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #c12d81bf;
    margin-bottom: 10px;
    color: #fff;
}
.schedule{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px;
    z-index: 3;
}
.schedule p{
    color: #fff;
    margin-bottom: 5px;
}
.discount{
    padding: 5px 0;
    background-color: #6DA544;
    text-align: center;
}
.discount span{
    color: #fff;
    font-size: 15px;
    margin-right: 10px;
}
.discount strong{
    font-family: "GoogleSans-Bold";
    font-size: 20px;
    color: #FFEC44;
}
.tour__des{
    padding: 7px 12px 24px;
    background-color: #fff;
}
.tour__code li{
    font-family: 'GoogleSans-Light';
    color: #616161;
}
.tour__code li i{
    width: 24px;
}
.tour__name{
    font-size: 17px;
    color: #000;
}
.tour__name:hover{
    color: #C12D82;
    text-decoration: none;
}
.tour__rating{
    display: flex;
    gap: 5px;
}
.tour__rating i{
    font-size: 10px;
    color: #ff9811;
}
.price{
    font-size: 22px;
    color: #C12D82;
}
.price__off{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.price__off span{
    font-family: 'GoogleSans-Light';
    font-size: 15px;
    color: #616161;
    text-decoration: line-through;
}
.price__off p{
    font-size: 17px;
    color: #C12D82;
    margin-bottom: 0;
}
.wrap__btn a{
    display: inline-block;
    width: calc(50% - 3px);
    padding: 9px 0;
    background-color: #234F94;
    border-radius: 30px;
    font-size: 13px;
    color: #fff !important;
    text-decoration: none !important;
    text-transform: uppercase;
    text-align: center;
}
.wrap__btn a:last-child{
    background-color: #C12D82;
}
.slide__tour .owl-nav{
    text-align: left !important;
}
.slide__tour .owl-nav button{
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    border: 1px solid #fff !important;
    outline: none !important;
}
.slide__tour .owl-nav button i{
    color: #fff;
}
.slide__tour .owl-nav button:hover{
    background-color: #C12D82 !important;
    border-color: #C12D82 !important;
}

.holiday{
    background-color: #F6F7F8;
}
.list__holiday{
    border-radius: 10px;
    box-shadow: 0px 4px 30px 0px #8C8C8C26;
    overflow: hidden;
}
.holiday__img{
    overflow: hidden;
}
.holiday__img img{
    transition: all .4s;
}
.holiday__img img:hover{
    transform: scale(1.1);
    transition: all .4s;
}
.holiday__des{
    background-color: #fff;
    padding: 24px;
}
.holiday__des a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #000;
}
.holiday__des a:hover i,
.holiday__des a:hover{
    color: #C12D82;
    text-decoration: none;
    transition: all .3s;
}
.holiday__des a i{
    font-size: 20px;
    color: #616161;
}
.travel .slide__tour .owl-nav button i,
.slide__holiday .owl-nav button i,
.slide .owl-nav button i{
    color: #fff;
}
.travel .slide__tour .owl-nav button.owl-prev,
.slide__holiday .owl-nav button.owl-prev,
.slide .owl-nav button.owl-prev{
    position: absolute;
    top: 48%;
    left: 0;
    transform: translateY(-50%);
    width: 30px !important;
    height: 100px !important;
    background-color: #C12D82CC !important;
    border-color: transparent !important;
    border-radius: 0 10px 10px 0 !important;
    margin: 0;
    outline: none !important;
}
.travel .slide__tour .owl-nav button.owl-next,
.slide__holiday .owl-nav button.owl-next,
.slide .owl-nav button.owl-next{
    position: absolute;
    top: 48%;
    right: 0;
    transform: translateY(-50%);
    width: 30px !important; 
    height: 100px !important;
    background-color: #C12D82CC !important;
    border-color: transparent !important;
    border-radius: 10px 0 0 10px !important;
    margin: 0;
    outline: none !important;
}

.heading__title h3{
    font-size: 26px;
    color: #C12D82;
    text-transform: uppercase;
}
.heading__title p{
    font-family: "GoogleSans-Light";
    font-size: 15px;
}
.view__all{
    text-align: right;
}
.view__all a{
    font-family: 'GoogleSans-Light';
    display: inline-block;
    font-size: 16px;
    color: #000;
}
.view__all a i{
    font-size: 20px;
    color: #C12D82;
    margin-left: 5px;
}
.view__all a:hover{
    color: #C12D82;
    text-decoration: none;
}
.widget__img{
    position: relative;
}
.widget__img a{
    position: absolute;
    width: max-content;
    display: flex;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background-color: transparent;
    border: 1px solid #fff;
    font-size: 17px;
    color: #fff !important;
    text-decoration: none !important;
    text-transform: uppercase;
    border-radius: 40px;
}
.widget__img a i{
    font-size: 28px;
    transition: all .4s;
}
.widget__img a:hover i{
    transform: translateX(5px);
    transition: all .4s;
}
.travel:nth-child(2n){
    background-color: #F6F7F8;
}
.travel:nth-child(2n + 1) .tour__des{
    background-color: #f6f7f8;
}

.slide__guest .item{
    border-radius: 10px;
    box-shadow: 0px 4px 30px 0px #8C8C8C26;
    overflow: hidden;
}
.guest__img{
    position: relative;
    overflow: hidden;
}
.guest__img:hover img{
    transform: scale(1.1);
    transition: all .4s;
}
.guest__img img{
    transition: all .4s;
}
.time__dept{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 8px 20px;
    background-color: #C12D82;
    color: #fff;
    font-size: 16px;
}
.time__dept i{
    font-size: 24px;
}
.guest__des{
    padding: 18px;
}
.guest__des a{
    display: inline-block;
    font-size: 16px;
    color: #000;
}
.guest__des a:hover{
    color: #C12D82;
    text-decoration: none;
    transition: all .3s;
}
.guest__des p{
    font-size: 15px;
    font-family: 'GoogleSans-Light';
}

.video__img{
    display: block;
    position: relative;
    margin-bottom: 20px;
}
.play{
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.play i{
    font-size: 40px;
    color: #fff;
}
.list__video,
.cover,
.outstanding__news{
    display: block;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none !important;
}
.list__video p{
    font-size: 16px;
    color: #000;
}
.list__video p:hover{
    color: #C12D82;
    text-decoration: none;
}
.slide .owl-dots .owl-dot{
    outline: none !important;
}
.slide .owl-dots .owl-dot.active span{
    background-color: #C12D82 !important;
}
.st__video{
    background-color: #f6f7f8;
}
.cover__img{
    overflow: hidden;
}
.cover__img:hover img,
.outstanding__news:hover img{
    transform: scale(1.1);
    transition: all .4s;
}
.cover__img img,
.outstanding__news img{
    transition: all .4s;
}
.cover__des{
    padding: 15px;
    background-color: #C12D82;
}
.cover__des a{
    font-size: 22px;
    color: #fff !important;
    text-decoration: none !important;
}
.cover__des p{
    font-size: 15px;
    font-family: 'GoogleSans-Bold';
    color: #fff;
}
.meta-news{
    display: flex;
    gap: 30px;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 0;
}
.outstanding__news{
    position: relative;
}
.outstanding__news::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    z-index: 2;
}
.outstanding__news img{
    height: 100%;
}
.outstanding__des{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px;
    z-index: 3;
}
.outstanding__des a{
    font-size: 18px;
    color: #fff !important;
    text-decoration: none !important;
}
.outstanding__des p{
    font-family: "GoogleSans-Light";
    font-size: 15px;
    color: #fff;
}
.feedback{
    background-color: #f6f7f8;
}
.feedback__content{
    border-radius: 10px;
    background-color: #fff;
    overflow: hidden;
    padding: 30px;
}
.feedback__content img{
    width: 40px !important;
    margin-bottom: 15px;
}
.feedback__content p{
    font-family: "GoogleSans-Light";
    font-size: 15px;
}
.author{
    padding-top: 15px;
    border-top: 2px dashed #C12D82;
}
.feedback__content h6{
    font-size: 18px;
}
.feedback__video{
    display: block;
    position: relative;
    margin-right: 40px;
}
.feedback__video img{
    width: 100%;
}
.slide__feedback .owl-nav button i{
    color: #C12D82;
}
.slide__feedback .owl-nav button.owl-prev{
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    border: 1px solid #C12D82 !important;
    background-color: transparent !important;
    outline: none !important;
}
.slide__feedback .owl-nav button.owl-next{
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    border: 1px solid #C12D82 !important;
    background-color: transparent !important;
    outline: none !important;
}
.heading__title a{
    font-family: "GoogleSans-Light";
    font-size: 16px;
    color: #000;
    text-decoration: underline;
}
.heading__title a:hover{
    color: #C12D82;
}

.visa__wrap{
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 40px;
}
.list__visa:nth-child(1){
    grid-column-start: 1;
    grid-column-end: 2;
}
.list__visa:nth-child(2){
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}
.list__visa{
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.list__visa::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}
.list__visa > img{
    width: 100%;
    height: 100%;
    transition: all .4s;
}
.list__visa:hover > img{
    transform: scale(1.1);
    transition: all .4s;
}
.country{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}
.country span{
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
}
.country img{
    width: 40px;
}
.list__newspaper{
    border-radius: 10px;
    border: 1px solid #DCE0E0;
    padding: 20px;
}
.list__newspaper p{
    font-family: "GoogleSans-Light";
    font-size: 16px;
}
.newspaper__link{
    margin-top: 20px;
}
.list__newspaper img{
    display: block;
    margin: auto;
    margin-bottom: 20px;
    width: auto !important;
    max-height: 70px;
}
.newspaper__link p{
    margin-bottom: 0;
}
.newspaper__link a{
    color: #C12D82 !important;
    text-decoration: none;
}
.award{
    background-image: url('../image/giai-thuong.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.award__des h4{
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
}

.award__des p{
    font-family: "GoogleSans-Light";
    font-size: 18px;
    color: #fff;
}
.list__award{
    display: block;
    padding: 15px;
    text-decoration: none !important;
}
.award__content{
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}
.list__award h4{
    font-size: 22px;
    color: #C12D82;
    margin-top: 10px;
}
.list__award span{
    font-family: "GoogleSans-Light";
    font-size: 16px;
    color: #000;
}
.slick-dots li.slick-active button:before{
    color: #fff !important;
    opacity: 1 !important;
}
.slide__award .slick-dots li button:before{
    font-size: 14px;
    color: #fff;
}
/*end home*/

/*tour*/
.path{
    padding: 10px 0;
    background-color: #f6f7f8;
}
.path ul{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 0;
}
.path ul li{
    position: relative;
}
.path ul li:not(:last-child)::before{
    content: "\f054";
    font-family: 'fontawesome';
    position: absolute;
    top: 3px;
    right: -14px;
    color: #333333;
    font-size: 10px;
}
.path ul li a{
    font-family: "GoogleSans-Light";
    color: #000;
    text-decoration: none !important;
}
.path ul li:last-child a{
    color: #C12D82;
}

.sidebar__tour{
    padding: 24px;
    border-radius: 10px;
    background-color: #f6f7f8;
}
.sidebar__tour h4{
    font-size: 24px;
    color: #C12D82;
    margin-bottom: 30px;
}
.list__filter{
    margin-bottom: 16px;
}
.list__filter h6{
    font-size: 18px;
    margin-bottom: 20px;
}
.price-range-slider .ui-widget.ui-widget-content{
    border: none;
}
.price-range-slider {
    width: 100%;
}
.price-range-slider .range-value input {
    width: 100%;
    font-family: "GoogleSans-Light";
    border: none;
    font-size: 16px;
    color: #C12D82;
    outline: none;
    background-color: transparent;
}
.price-range-slider .range-bar {
    border: none;
    background: #e6e6e6;
    height: 5px;
    width: 96%;
    margin: 30px 0 15px 8px;
}
.price-range-slider .range-bar .ui-slider-range {
    background: #C12D82;
}
.price-range-slider .range-bar .ui-slider-handle {
    border: none;
    border-radius: 25px;
    background: #C12D82;
    border: 2px solid #C12D82;
    height: 17px;
    width: 17px;
    top: -6px;
    cursor: pointer;
    outline: 0;
}
.price-range-slider .range-bar .ui-slider-handle + span {
    background: #C12D82;
}
.transport{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.transport li a{
    font-family: "GoogleSans-Light";
    font-size: 15px;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 8px;
    color: #000;
    background-color: #fff;
    border: 1px solid #DCE0E0;
}
.transport li a:hover{
    color: #C12D82;
    text-decoration: none;
}
.title__tour{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.sort__tour{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}
.sort__tour p{
    font-family: "GoogleSans-Light";
    font-size: 16px;
    margin-bottom: 0;
}
.sort__tour select{
    font-family: "GoogleSans-Light";
    border: 1px solid #DCE0E0;
    border-radius: 8px;
    height: 40px;
    padding: 0 10px;
}
.tour .tour__des{
    background-color: #f6f7f8;
}

.title__detail h3{
    font-size: 34px;
}
.title__detail__des{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.title__detail__des ul{
    display: flex;
    gap: 5px;
    margin-bottom: 0;
}
.title__detail__des ul i{
    font-size: 12px;
    color: #ff9811;
}
.tour__program{
    display: flex;
    flex-wrap: wrap;
}
.detail__img{
    width: 60%;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}
.tour__pg__des{
    width: 40%;
    padding: 25px;
    border-radius: 0 20px 20px 0;
    border: 1px solid #DCE0E0;
    border-left: none;
}
.tour__pg__des > ul li{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.tour__pg__des > ul li p{
    font-family: "GoogleSans-Light";
    font-size: 16px;
    color: #616161;
}
.tour__pg__des > ul li p > i{
    font-size: 20px;
    width: 24px;
    color: #234F94;
}
.transport__vehicle{
    display: flex;
    gap: 10px;
}
.transport__vehicle span{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #c12d81bf;
    margin-bottom: 10px;
    color: #fff;
}
.price-wrap{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.price-wrap h4{
    font-size: 30px;
    color: #C12D82;
}
.price-wrap p{
    font-family: "GoogleSans-Light";
    font-size: 17px;
    color: #616161;
    text-decoration: line-through;
    margin-bottom: 0;
}
.price-wrap span{
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 20px;
    background-color: #FFF0F9;
    border-radius: 20px;
    color: #C12D82;
    font-size: 18px;
}
.price-wrap span i{
    font-size: 20px;
}
.tour__program .wrap__btn a{
    padding: 11px 0;
    font-size: 18px;
    width: calc(50% - 5px);
    background-color: #C12D82;
}
.tour__program .wrap__btn a:last-child{
    background-color: #fff;
    border: 1px solid #234F94;
    color: #234F94 !important;
    margin-left: 5px;
}
.support a{
    font-family: "GoogleSans-Light";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 40px;
    width: calc(50% - 5px);
    padding: 5px 0;
    background-color: #FFEAED;
    font-size: 15px;
    color: #000 !important;
    text-decoration: none !important;
}
.support a span{
    font-family: "GoogleSans-Light";
    display: block;
}
.support a i{
    font-size: 25px;
    color: #C12D82;
}
.support a:last-child{
    background-color: #EFF5FF;
    margin-left: 5px;
}
.calendar__table{
    border-radius: 10px;
    overflow: hidden;
}
.title__calendar{
    padding: 12px 21px 15px;
    background-color: #234F94;
}
.title__calendar h4{
    font-size: 24px;
    color: #fff;
    margin-bottom: 0;
}
.main__calender{
    padding: 15px 20px;
    background-color: #FFEBEE;
    border-radius: 10px;
}
.tab__month{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;
}
.tab__month > span{
    font-size: 18px;
}
.tabs-calendar{
    justify-content: flex-start;
}
.list__month{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #000;
    font-size: 18px;
    color: #000;
    cursor: pointer;
}
.list__month.current{
    border-color: #C12D82;
    background-color: #C12D82;
    color: #fff;
}
.main__table table{
    width: 100%;
}
.main__tab-calendar{
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
}
.main__table{
    max-height: 300px;
    overflow-y: auto;
}
.main__table::-webkit-scrollbar{
    width: 6px;
    height: 6px;
    background-color: #FFEAED;
    border-radius: 10px;
}

.main__table::-webkit-scrollbar-thumb{
    height: 100px;
    background-color: #C12D82;
    border-radius: 10px;
}
.main__table tr th{
    width: 20%;
    border-bottom: 1px solid #DCE0E0;
    font-size: 18px;
    color: #C12D82;
    text-transform: uppercase;
    font-weight: unset;
}
.main__table tr th span{
    display: block;
    color: #000;
}
.main__table tr td,
.main__table tr th{
    padding: 8px;
}
.main__table tr td{
    font-size: 18px;
    font-family: "GoogleSans-Light";
}
.slot{
    font-family: "GoogleSans-Light";
    display: block;
    font-size: 16px;
    color: #6DA544;
}
.adult__price,
.child__price{
    font-size: 18px;
    color: #C12D82;
}
.call__zl a{
    display: inline-block;
    padding: 4px 20px;
    background-color: #FFEAED;
    border-radius: 20px;
    font-size: 18px;
    font-family: "GoogleSans-Light";
    color: #000;
}
.call__zl a:hover{
    color: #C12D82;
    text-decoration: none;
}
.feature ul{
    padding-left: 20px;
}
.feature ul li{
    font-family: "GoogleSans-Light";
    list-style: disc;
    font-size: 16px;
    margin-bottom: 8px;
}

.schedule__left{
    position: sticky;
    top: 90px;
    left: 0;
    z-index: 2;
}
.main__schedule{
    position: relative;
    margin-left: 95px;
    padding-left: 40px;
}
.detail__schedule::before,
.main__schedule::before{
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    border-right: 2px dashed #C12D82;
    width: 1px;
    height: 100%;
}
.list__schedule{
    position: relative;
    margin-bottom: 40px;
}
.dot__tour{
    content: "";
    position: absolute;
    top: 0;
    left: -28px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #C12D82;
    background-color: #fff;
}
.dot__tour::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #C12D82;
}
.day{
    position: absolute;
    top: -9px;
    left: -135px;
}
.day::before{
    content: "";
    position: absolute;
    top: 50%;
    right: -7px;
    transform: translateY(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background-color: #C12D82;
}
.day a{
    display: inline-block;
    padding: 5px 15px;
    background-color: #C12D82;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 18px;
    border-radius: 5px;
}
.day__des a{
    display: inline-block;
    font-size: 18px;
    color: #000 !important;
    text-decoration: none !important;
}
.day__des a span{
    font-size: 18px;
    font-family: "GoogleSans-Light";
}
.detail__schedule{
    position: relative;
    padding-left: 40px;
}
.list__schedule__des{
    position: relative;
}
.list__schedule__des h3{
    font-size: 24px;
    color: #C12D82;
}
/* .list__schedule__des::before{
    content: "";
    position: absolute;
    top: 0;
    left: -29px;
    width: 20px;
    height: 20px;
    border: 2px solid #C12D82;
    border-radius: 50%;
    background-color: #fff;
}
.list__schedule__des::after{
    content: "";
    position: absolute;
    top: 5px;
    left: -24px;
    width: 10px;
    height: 10px;
    border: 2px solid #C12D82;
    border-radius: 50%;
    background-color: #C12D82;
} */
.last-dot{
    content: "";
    position: absolute;
    bottom: 0;
    left: 11px;
    width: 20px;
    height: 20px;
    border: 2px solid #C12D82;
    border-radius: 50%;
    background-color: #fff;
}
.last-dot::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border: 2px solid #C12D82;
    border-radius: 50%;
    background-color: #C12D82;
}
.btn-booking a{
    display: inline-block;
    padding: 10px 50px;
    max-width: 340px;
    border-radius: 30px;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    background-color: #C12D82;
}
.btn-booking a:hover{
    background-color: #C12D82;
    color: #fff;
    text-decoration: none;
}
.list__rule{
    border: 1px solid #DCE0E0;
    border-radius: 10px;
    margin-bottom: 15px;
}
.title__rule{
    padding: 17px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.title__rule i{
    transition: all .3s;
}
.title__rule span i{
    transform: none !important;
}
.title__rule.active i:last-child{
    transform: rotate(180deg);
    transition: all .3s;
}
.title__rule > div{
    font-size: 18px;
    color: #000;
}
.title__rule > div span{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #57cb25;
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
}
.dropdown__rule{
    display: none;
    padding: 0 25px;
}
.dropdown__rule ul{
    padding-left: 20px;
}
.dropdown__rule ul li{
    list-style: disc;
    font-size: 16px;
    margin-bottom: 10px;
}
.widget__tour{
    background: linear-gradient(180deg, #FFEAED 44.93%, #B3C7E7 100%);
    padding: 20px 10px;
    border-radius: 10px;
}
.list__saler{
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
}
.list__saler img{
    width: 80px;
    min-width: 80px;
}
.list__saler h4{
    font-size: 18px;
}
.list__saler a{
    font-family: "GoogleSans-Light";
    font-size: 18px;
    color: #000;
}
.list__saler a i{
    font-size: 20px;
    color: #C12D82;
}
.list__saler a:hover{
    color: #C12D82;
    text-decoration: none;
}
.bg,
.other__tour .tour__des{
    background-color: #f6f7f8;
}
.tabs.tabs-visa{
    gap: 15px;
}
.list__tab-visa{
    padding: 6px 30px;
    border: 1px solid #deeede;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: all .3s;
}
.list__tab-visa.current{
    border-color: #C12D82;
    background-color: #C12D82;
    color: #fff;
    transition: all .3s;
}
.all-visa{
    display: flex;
    flex-wrap: wrap;
}
.item-visa{
    width: calc(100% / 8);
    padding: 0 10px;
    margin-bottom: 20px;
}
.item-visa a{
    display: block;
    border: 1px solid #DCE0E0;
    border-radius: 10px;
    background-color: #fff;
    text-align: center;
    padding: 15px 0;
    text-decoration: none !important;
}
.item-visa a img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 15px;
}
.item-visa a span{
    display: block;
    font-family: "GoogleSans-Light";
    font-size: 16px;
    color: #000;
}
.all__step{
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    border: 1px solid #DCE0E0;
}
.list__step__visa{
    width: 25%;
    padding: 24px 30px;
}
.list__step__visa:not(:last-child){
    border-right: 1px solid #DCE0E0;
}
.list__step__visa i{
    font-size: 45px;
    color: #234F94;
}
.list__step__visa h5{
    margin: 15px 0;
}
.list__step__visa p{
    font-family: "GoogleSans-Light";
    font-size: 16px;
}
.icon-visa{
    position: relative;
    width: max-content;
}
.icon-visa::before{
    content: "";
    position: absolute;
    top: -15px;
    right: -15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #e5ecf7;
    z-index: -1;
}

.tour__info__detail{
    border-radius: 20px;
    border: 1px solid #DCE0E0;
    overflow: hidden;
}
.sidebar__info{
    padding: 20px;
}
.tour__info__detail h4{
    font-size: 26px;
    margin-bottom: 20px;
}
.sidebar__info > ul li{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sidebar__info > ul li p{
    font-family: "GoogleSans-Light";
    font-size: 16px;
    color: #616161;
}
.sidebar__info > ul li p > i{
    font-size: 20px;
    width: 24px;
    color: #234F94;
}
.slide__tour__img img{
    border-radius: 20px;
}
.bottom__inner{
    padding: 20px;
    background-color: #C12D82;
}
.total__price{
    display: flex;
    justify-content: space-between;
}
.total__price h5{
    font-size: 24px;
    color: #fff;
}
.total__price h4{
    font-size: 32px;
    color: #fff;
}
.bottom__inner a{
    display: inline-block;
    padding: 12px 40px;
    border-radius: 30px;
    border: 1px solid #fff;
    font-size: 16px;
    color: #fff !important;
    text-decoration: none !important;
    text-transform: uppercase;
}
.pg__tour{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}
.download{
    display: inline-block;
    font-size: 16px;
    color: #4E9E14;
}
.pg__tour .support a{
    width: auto;
    padding: 5px 30px;
}
.pg__tour .support a:last-child{
    margin-left: 30px;
}
.guest__info{
    padding: 25px 30px;
    border: 1px solid #DCE0E0;
    border-radius: 20px;
}
.guest__info input{
    width: 100%;
    height: 40px;
    border: 1px solid #DCE0E0;
    border-radius: 8px;
    padding: 0 10px;
    outline: none;
}
.customer label{
    font-size: 16px;
}
.btn__change{
    display: flex;
    align-items: center;
}
.btn__change span{
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    border: 1px solid #DCE0E0;
    cursor: pointer;
}
.btn__change input{
    font-family: "GoogleSans-Light";
    width: 50px;
    border: none;
    outline: none;
    text-align: center;
    font-size: 20px;
}
.customer textarea{
    width: 100%;
    resize: vertical;
    border: 1px solid #DCE0E0;
    border-radius: 8px;
}
.form-booking button{
    padding: 10px 50px;
    background-color: #C12D82;
    border-radius: 30px;
    border: none;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    outline: none !important;
    cursor: pointer;
}
/*end tour*/

/*visa*/
.about__visa__des p{
    font-family: "GoogleSans-Light";
    font-size: 16px;
}
.main__visa-reg{
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0px 4px 20px 0px #CCCCCC40;
    background-color: #fff;
}
.img__visa-reg, .form-visa{
    width: 50%;
}
.form-visa{
    padding: 20px 30px;
}
.form-visa label{
    font-size: 16px;
}
.rq{
    color: red;
}
.form-visa button{
    padding: 8px 30px;
    background-color: #C12D82;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 30px;
    border: none;
    outline: none !important;
    cursor: pointer;
}
.form-visa input{
    height: 40px;
}
.questions .title__rule{
    background-color: #f6f7f8;
    border-radius: 10px;
}
.questions .list__rule{
    border: none;
}
.questions .dropdown__rule{
    padding-top: 10px;
}
.list__visa__news{
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #DCE0E0;
}
.img__visa__news{
    overflow: hidden;
}
.img__visa__news img{
    transition: all .4s;
}
.img__visa__news img:hover{
    transform: scale(1.1);
    transition: all .4s;
}
.visa__news__des{
    padding: 18px;
}
.visa__news__des a{
    display: inline-block;
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
}
.visa__news__des a:hover{
    color: #C12D82;
    text-decoration: none;
}
.visa__news__des p{
    font-family: "GoogleSans-Light";
    font-size: 16px;
}
.post__time{
    display: inline-block;
    font-family: "GoogleSans-Light";
    color: #616161;
    margin-top: 10px;
}
.post__time i{
    font-size: 18px;
}
.visa__content p,
.about__content p{
    font-family: "GoogleSans-Light";
    font-size: 16px;
}
.visa__content ul{
    padding-left: 20px;
}
.visa__content ul li{
    list-style: disc;
}
.contact__info{
    display: flex;
    gap: 15px;
}
.contact__info i{
    font-size: 18px;
    color: #C12D82;
}
.contact__des{
    font-family: "GoogleSans-Light";
    font-size: 16px;
}

.main__contact{
    display: flex;
    flex-wrap: wrap;
}
.contact__img,
.contact__content{
    width: 50%;
}
.contact__img img{
    height: 100%;
}
.contact__content{
    padding: 20px;
    border: 1px solid #DCE0E0;
    border-radius: 0 10px 10px 0;
}
.title__contact{
    position: relative;
    font-family: "GoogleSans-Light";
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.title__contact::before{
    content: "";
    position: absolute;
    width: 100px;
    height: 1px;
    left: 0;
    bottom: 0;
    background-color: #C12D82;
}
.form-contact label{
    font-size: 16px;
}
.form-contact input{
    height: 40px;
}
.form-contact button{
    padding: 8px 30px;
    background-color: #C12D82;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 30px;
    border: none;
    outline: none !important;
    cursor: pointer;
}
.map iframe{
    width: 100%;
    display: block;
}
.main__news{
    border-top: 1px solid #DCE0E0;
}
.st__news .main__news{
    border-top: none;
}
.agent__content{
    position: relative;
}
.form-agent{
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    border-radius: 20px;
    background-color: #fff;
    width: 450px;
    padding: 30px 20px;
}
.form-agent input{
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    border-bottom: 1px solid #DCE0E0;
}
.form-agent input::placeholder{
    font-size: 18px;
    font-family: "GoogleSans-Light";
}
.form-agent button{
    width: 100%;
    padding: 9px 0;
    border-radius: 30px;
    background-color: #C12D82;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    border: none;
    outline: none !important;
    cursor: pointer;
}
.content ul{
    padding-left: 20px;
}
.content ul li{
    font-family: "GoogleSans-Light";
    list-style: disc;
    font-size: 16px;
    margin-bottom: 10px;
}
/*end visa*/


/*footer*/
footer{
    background-color: #f6f7f8;
    padding: 30px 0;
}
.footer__logo img{
    height: 80px;
}
.company__info h4{
    font-family: "GoogleSans-Bold";
    font-size: 18px;
}
.footer__link p,
.company__info p{
    font-family: "GoogleSans-Light";
    font-size: 16px;
}
.company__info p i{
    font-size: 18px;
}
.main__footer{
    margin-top: 40px;
}
.footer__link h4{
    font-size: 18px;
}
.footer__link ul{
    padding-left: 20px;
}
.footer__link ul li{
    list-style: disc;
    margin-bottom: 8px;
}
.footer__link ul li::marker{
    color: #C12D82;
}
.footer__link ul li a{
    font-family: "GoogleSans-Light";
    display: inline-block;
    font-size: 16px;
    color: #000;
}
.footer__link ul li a:hover{
    color: #C12D82;
    text-decoration: none;
}
.form-newsletter{
    position: relative;
}
.form-newsletter input{
    font-family: "GoogleSans-Light";
    width: 100%;
    height: 43px;
    padding: 0 52px 0 48px;
    font-size: 16px;
    border: 1px solid #DCE0E0;
    border-radius: 5px;
}
.icon__nlt{
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #828282;
}
.form-newsletter button i,
.icon__nlt i{
    font-size: 20px;
}
.form-newsletter button{
    position: absolute;
    top: 1px;
    right: 1px;
    width: 41px;
    height: 41px;
    background-color: #fff;
    border: none;
    border-left: 1px solid #DCE0E0;
    outline: none !important;
    color: #C12D82;
    cursor: pointer;
}
.copyright{
    padding-top: 25px;
    margin-top: 15px;
    border-top: 1px solid #DCE0E0;
}
.copyright__content h4{
    font-size: 16px;
    margin-bottom: 10px;
}
.social{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.social li a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #234F94;
    color: #fff;
}
.social li a:hover{
    background-color: #C12D82;
    text-decoration: none;
}
.back-to-top{
    height: 60px;
    width: 60px;
    position: fixed;
    bottom: 20px;
    right: 30px;
    border: none;
    border-radius: 50%;
    background-color: #234F94;
    color: #FFF;
    transition: all .3s;
    opacity: 0;
    overflow: hidden;
    cursor: pointer;
    outline: none !important;
    z-index: 10;
}
.back-to-top i{
    font-size: 20px;
    color: #fff;
}
.back-to-top.animate{
    opacity: 1;
    transition: all .3s;
}

/*end footer*/

@media only screen and (max-width: 1200px){
    .dropdown__menu{
        width: 900px;
    }
    .menu__left{
        width: 250px;
    }
    .menu__content{
        left: 250px;
        width: 650px;
    }
}

@media only screen and (max-width: 1023.98px){
    .header__mobile{
        display: block;
    }
    header,
    header.active{
        background-color: #C12D82;
    }
    .header__info,
    .header__img,
    .btn__booking-header,
    .menu,
    .logo{
        display: none;
    }
    .menu__bar{
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .other__search{
        display: block;
    }
    .language p{
        border: 1px solid #fff;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
    .language p i{
        font-size: 20px;
        color: #fff;
    }
    .search__mobile{
        display: block;
    }

    .search__tour{
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;
        max-width: 90%;
        opacity: 0;
        visibility: hidden;
        z-index: 25;
        transition: all .3s;
    }
    .search__tour .main__tab{
        background-color: #fff;
        border-radius: 10px;
    }
    .overlay.active,
    .search__tour.show{
        opacity: 1;
        visibility: visible;
        transition: all .3s;
    }
    .heading__choose ul{
        gap: 10px;
        justify-content: center;
    }
    .input__field{
        margin-bottom: 10px;
    }
    .widget__img{
        text-align: center;
    }
    .travel:nth-child(2n) .container-fluid > .row{
        flex-direction: column-reverse;
    }

    .item-visa{
        width: calc(100% / 3);
    }
    .list__step__visa{
        width: 50%;
    }
}

@media only screen and (max-width: 820px){
    .main__news{
        overflow-x: auto;
    }
    .main__news::-webkit-scrollbar{
        height: 3px;
        padding-bottom: 5px;
        background-color: #ddd;
    }
    .main__news > .row{
        flex-wrap: nowrap;
    }
    .row.nowrap-mb{
        flex-wrap: nowrap;
    }
    .slide__feedback .owl-nav button{
        position: static !important;
        transform: translateY(0) !important;
    }
    .feedback__video{
        margin-right: 0;
    }
    .slide__nation{
        width: 90% !important;
        margin: auto;
    }

    .tour__pg__des,
    .detail__img{
        width: 100%;
    }
    .main__table tr th{
        width: unset;
    }
    .rule,
    .detail__schedule{
        margin-left: 40px;
    }
    .img__visa-reg, .form-visa{
        width: 100%;
    }
    .form-agent{
        width: 100%;
        position: static;
        transform: translateY(0);
    }
    .pg__tour{
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 767.98px){
    .search__tour{
        width: 90%;
    }
    .heading__choose ul{
        justify-content: flex-start;
    }
    .wrap__text__tour h3{
        font-size: 36px;
    }
    .visa__wrap{
        grid-template-columns: auto;
        gap: 20px;
    }
    .country{
        padding: 10px;
        gap: 10px;
    }
    .country img{
        width: 25px;
    }
    .country span{
        font-size: 16px;
    }
    .tour__pg__des > ul li p{
        width: 100%;
    }
    .main__table tr th{
        min-width: 140px;
    }
    .call__zl a{
        font-size: 14px;
    }
    .rule, .detail__schedule{
        margin-left: 0;
    }
    .sidebar__tour{
        display: none;
    }
    .item-visa{
        width: 50%;
    }
    .list__step__visa{
        width: 100%;
    }
    .form-visa{
        padding: 20px 0;
    }
    .list__step__visa:not(:last-child){
        border-bottom: 1px solid #DCE0E0;
    }
    .guest__info{
        padding: 15px;
    }
    .pg__tour .support a{
        padding: 5px 15px;
    }
    .pg__tour .support a:last-child{
        margin-left: 5px;
    }
    .total__price,
    .tour__info__detail .sidebar__info > ul li{
        flex-direction: column;
    }
    .total__price{
        justify-content: center;
        align-items: center;
    }


    .footer__logo,
    .copyright__content{
        margin-bottom: 20px;
    }
    .main__footer{
        margin-top: 10px;
    }
}