body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-style: normal;
    color: #444444;
    background: transparent;
}

p {
    margin-bottom: 10px;
}

@font-face {
    font-family: VnTravelIcon;
    src: url("../fonts/icon.eot");
    src: url("../fonts/icon.eot") format("embedded-opentype"), url("../fonts/icon.ttf") format("truetype"), url("../fonts/icon.woff") format("woff"), url("../fonts/icon.svg") format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: block
}

[class*=" ico-"], [class^=ico-] {
    font-family: VnTravelIcon !important;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

a, a em, a b, button, input[type="button"], input[type="submit"] {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #2d9cdb;
    text-decoration: none;
}

a:hover, a:focus {
    color: #906c41;
    text-decoration: none;
}

.text-black {
    color: #4b4b4b !important;
}

img {
    max-width: 100% !important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5, h6 {
    font-size: 18px;
}

img.logo {
    padding: 5px 0;
}

.bar-logo {
    width: 300px;
    padding-right: 30px;
}


.social_wrap .number p i {
    color: #FF4A52;
    font-size: 16px;
    margin-right: 5px;
}

.social_wrap .number {
    padding-right: 15px;
    margin-right: 10px;
    border-right: 1px solid #EAEAEA;
    font-size: 18px;
}

.social_links ul {
    margin: 0;
    padding: 0;
}

.social_links {
    margin-right: 4px;
}

.social_links li {
    display: inline-block;
}

.social_links li a {
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    margin: 0 10px;
}

.support-top a {
    color: #ffffff;
    display: inline-block;
}

.support-top a + a {
    padding-left: 20px;
}

.social_links li a:hover {
    color: #F96D00;
}

.color-primary {
    color: #4586FF
}

.color-primary-2 {
    colro: #F96D00
}

.number i {
    color: #4586FF
}

header {
    position: relative;
}

.header-area .seach_icon {
    width: 80px;
}

.header-area .seach_icon {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9;
    background: #FF4A52;
    width: 100px;
}

.header-area .seach_icon a {
    text-align: center;
    color: #fff;
    width: 100%;
    height: 100%;
    display: block;
}

.header-area .seach_icon a i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.slide-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
}

.btn.btn-learn {
    background: #4586FF;
    color: #fff;
}

.slide .btn {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    padding: 20px 30px !important;
    border: none;
}

.h3-slide {
    font-size: 50px;
    margin-bottom: 30px;
}

.h2-slide {
    text-transform: uppercase;
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.page-sec {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Grid layout */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 10px;
    padding: 20px;
    background-color: #f8f8f8;
}

/* Mỗi item */
.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* Ô vuông */
.grid-item.square {
    grid-row: span 1;
    aspect-ratio: 1 / 1;
}

/* Ô rộng (gấp đôi chiều ngang) */
.grid-item.wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

/* Ảnh */
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

/* Hover */
.grid-item:hover img {
    transform: scale(1.1);
}

/* Lớp mờ và chữ */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-family: Arial, sans-serif;
    padding: 10px;
    transition: background 0.3s;
}

/* Hover tối màu hơn */
.grid-item:hover .overlay {
    background: rgba(0, 0, 0, 0.6);
}

/* Chữ */
.overlay p {
    font-size: 12px;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
}

.overlay h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0 0;
    text-transform: uppercase;
}

.page-section {
    padding-top: 25px;
    padding-bottom: 25px;
}

.grid-panel .grid-panel-content {
    display: grid;
    grid-template-columns: .706fr 1fr;
    gap: 10px;
    height: 70vw;
    max-height: 500px;
}

.grid-panel .grid-panel-content .grid-panel-left {
    grid-template: 1.5fr 1fr/1.5fr 1fr;
}

.grid-panel .grid-panel-content .grid-panel-left, .grid-panel .grid-panel-content .grid-panel-right {
    display: grid;
    gap: 10px;
}

.grid-panel .grid-panel-content .grid-panel-right {
    grid-template: 1fr 1.5fr/1fr 1.5fr;
}

.grid-panel .grid-panel-content .grid-panel-left .grid-panel-item, .grid-panel .grid-panel-content .grid-panel-right .grid-panel-item {
    display: grid;
    align-content: center;
    justify-items: center;
    height: auto;
    border-radius: 8px;
    min-height: 184px;
    position: relative;
    overflow: hidden;
    padding: 20px;
    text-align: center;
    background-position: 50% 50%;
    background-size: cover;
}

.grid-panel .grid-panel-content .grid-panel-left .grid-panel-item:last-of-type {
    grid-column: 1/-1;
}

.grid-panel .grid-panel-content .grid-panel-right .grid-panel-item:first-of-type {
    grid-column: 1/-1;
}

.grid-panel .grid-panel-content .grid-panel-left .grid-panel-item::before, .grid-panel .grid-panel-content .grid-panel-right .grid-panel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, .3);
    z-index: 2;
}

.grid-panel .grid-panel-content .grid-panel-left .grid-panel-item a, .grid-panel .grid-panel-content .grid-panel-right .grid-panel-item a {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: block;
    cursor: pointer;
    z-index: 999;
    font-size: 0;
}

.grid-panel .grid-panel-content .grid-panel-left .grid-panel-item label, .grid-panel .grid-panel-content .grid-panel-right .grid-panel-item label {
    color: #fff;
    text-transform: uppercase;
    z-index: 99;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
}

.grid-panel .grid-panel-content .grid-panel-left .grid-panel-item h2, .grid-panel .grid-panel-content .grid-panel-right .grid-panel-item h2 {
    color: #fff;
    text-transform: uppercase;
    z-index: 99;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.grid-panel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-bestsellers {
    width: 150px;
    height: 150px;
    position: absolute;
    top: -90px;
    right: -80px;
    z-index: 1;
    padding: 95px 75px 10px 15px;
    font-weight: 500;
    text-align: center;
    line-height: 120%;
    color: #fff;
    text-transform: uppercase;
    background: rgba(231, 1, 36, 0.6);
    border-radius: 50%;
    transition: all 0.5s;
    font-size: 12px;
}

.best-sale.owl-carousel .owl-stage {
    display: flex;
}

#cruise-index.owl-carousel .owl-item,
.best-sale.owl-carousel .owl-item {
    display: flex;
    align-items: stretch;
}

#cruise-index.owl-carousel .item,
.best-sale.owl-carousel .item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.best-sale .owl-stage {
    padding-right: 50px !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}


.single-service--area {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    padding: 20px;
    text-align: center;
}

.dot-why {
    color: #4586FF;
    margin-right: 4px;
}

.block-33 {
    padding: 20px;
    margin: 3px;
}

.block-33 .vcard .image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    margin-right: 20px;
}

.block-33 .vcard .image img {
    max-width: 100%;
    border-radius: 50%;
    height: 80px;
    width: 80px;
}

.block-33 .vcard .name-text .heading {
    line-height: 1;
    margin-bottom: 5px;
    padding: 0;
    font-size: 18px;
}

.block-33 .vcard .name-text .meta {
    color: #4586FF;
    display: block;
    font-size: 14px;
}

element {
}

.testimony-wrap .icon {
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #4586FF;
    z-index: 9;
}

.testimony-wrap .icon span {
    color: #fff;
}


.ftco-footer {
    padding: 5em 0 0 0;
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
}

.ftco-footer {
    padding: 5em 0 0 0;
    background: #121d3d;
    color: rgba(255, 255, 255, 0.7);
}

.copyright p {
    margin-bottom: 0;
}

.ftco-footer .ftco-footer-widget h2, .ftco-footer .ftco-footer-widget .h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    font-family: "Nunito", Arial, sans-serif;
}

.ftco-footer .ftco-footer-widget ul li {
    margin-bottom: 10px;
}

.ftco-footer .ftco-footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.ftco-footer .ftco-footer-widget ul li a span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.ftco-footer .ftco-footer-widget ul li {
    margin-bottom: 10px;
}

.ftco-footer .ftco-footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.ftco-footer-social li {
    list-style: none;
    margin: 0 5px 0 0;
    margin-bottom: 0px;
    display: inline-block;
}

.ftco-footer-social li a {
    height: 40px;
    width: 40px;
    display: block;
    color: #b99365;
    border-radius: 2px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
}

.ftco-footer-social li a span {
    position: absolute;
    font-size: 18px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #b99365 !important;
}

.ftco-footer .block-23 ul li, .ftco-footer .block-23 ul li > a {
    display: table;
    line-height: 1.5;
    font-size: 15px;
}

.ftco-footer .block-23 ul li .icon {
    width: 40px;
    font-size: 15px;
    padding-top: 2px;
    color: #b99365 !important;
}

.ftco-footer .block-23 ul li .icon, .ftco-footer .block-23 ul li .text {
    display: table-cell;
    vertical-align: top;
    color: rgba(255, 255, 255, 0.8) !important;
}

.ftco-footer .bg-darken {
    background: #0d1329 !important;
}

.supports {
    position: fixed;
    bottom: 120px;
    right: 15px;
    z-index: 99;
    transition: .3s;
}

.button-icon:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, .15), 0 4px 15px rgba(0, 0, 0, .13);
}

.button-icon {
    display: block;
    text-align: center;
    transition: box-shadow 150ms linear;
    animation: button_icon_animation 250ms 1.5s forwards;
    -webkit-animation: button_icon_animation 250ms 1.5s forwards;
    width: 44px;
    height: 44px;
    line-height: 44px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 44px 44px;
}

.messager-icon {
    background-repeat: no-repeat;
    background-position: top left;
}

.zalo-icon {
    background-repeat: no-repeat;
    background-position: top left;
}

.phone-icon {
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 44px 44px;
}

.email-icon {
    background-repeat: no-repeat;
    background-position: top left;
}

.popup_footer_support {
    position: fixed;
    bottom: 0;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eaeaea;
    font-size: 12px;
    display: none;
    z-index: 9999;
}

.popup_footer_support_content {
    overflow: hidden;
    clear: both;
    box-shadow: 0 -5px 3px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.popup_support_item {
    display: inline-block;
    box-sizing: border-box;
    padding-top: 3px;
    padding-bottom: 3px;
}

.popup_support_item a, .popup_support_item button {
    display: block;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 19px;
}

.popup_support_item a i {
    font-size: 20px;
    color: #ff4500;
}

.popup_support_item a:hover i,
.popup_support_item a:focus i,
.popup_support_item a:hover,
.popup_support_item a:focus {
    color: #ff4500;
}

.popup_support_item a {
    background: #fff;
    color: #444444;
}

.support_footer .popup_support_item a span {
    line-height: 15px;
}

.backtotop {
    transition: .3s;
    cursor: pointer;
    color: #FFFFFF;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    text-align: center;
    padding-top: 5px;
    z-index: 9;
    box-shadow: 0 0 5px #888888;
    background: rgba(255, 255, 255, 0.8);
}

.backtotop i {
    color: #333;
    font-size: 30px;
}

.h2-title {
    font-size: 32px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.grid-panel-titles h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.grid-panel-titles h2 {
    font-size: 16px;
}

.innter-tour {
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
}

.outer-transform:hover img, .top-tour:hover img, .outer-cover:hover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.img-cover {
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.img-tour-list {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.icon-best-cat {
    bottom: 15px;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    font-weight: bold;
}

.h3-tour {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

.tour-dest {
    color: #777777;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-old {
    color: #777;
    font-size: 16px;
    margin-right: 2px
}

.price-now {
    color: #AF2227;
    font-weight: bold;
    font-size: 22px
}

.btn-view-more {
    background: #4586FF;
    padding: 6px 15px;
    border-radius: 20px;
    color: #fff;
    display: inline-block;
}

.btn-view-more:hover,
.btn-view-more:focus {
    background-color: #1D5ED9;
    color: #ffffff;
}

a.text-black:hover,
a.text-black:focus {
    color: #f47921 !important;
}

.img-tour-multi {
    height: 200px;
    object-fit: cover;
}

.h4-tour {
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 500;
}

.slideFluid .owl-stage {
    padding-right: 50px !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    display: flex;
}

.feedbacks.owl-carousel .owl-item,
.slideFluid.owl-carousel .owl-item {
    display: flex;
    align-items: stretch;
}

.feedbacks.owl-carousel .item {
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    background: #f8f9fa;
}

.feedbacks.owl-carousel .item,
.slideFluid.owl-carousel .item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.feedbacks .owl-stage {
    display: flex;
}

.bottom-multi-tour {

}

.owl-theme .owl-dots .owl-dot {
    background: none;
    border: none;
    padding: 0;
}

.owl-theme .owl-dots .owl-dot span {
    margin: 4px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #f86700;
}

.owl-carousel .owl-stage {
    display: flex;
}

.img-advice {
    height: 80px;
    object-fit: cover;
}

.inner-advice {
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1)
}

.left-advice {
    width: 120px;
}

.f16 {
    font-size: 16px !important;
}

.f18 {
    font-size: 18px !important;
}

.font-weight-semi {
    font-weight: 500;
}

.h4-advice {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

#site-banner .slide-info {
    width: 60%;
}

#site-banner .slide-info .title {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.outer-breadcrumb {
    padding: 10px 0;
    font-size: 14px;
}

.breadcrumb {
    margin: 0;
}

.breadcrumb a {
    color: #bdbdbd
}

.breadcrumb .breadcrumb-item:last-child a {
    color: #666;
}

.list-result {
    background: #fff;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    position: relative;
    padding: 15px;
}

.img-list-result {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.h2-tour {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
}

.link-result-img {
    border-radius: 10px;
    display: block;
    overflow: hidden;
}

.tgrey {
    color: #828282;
}

.list-result .ico-map-add::before,
.list-result .ico-carbon-time::before {
    color: #828282;
    font-size: 20px;
}

.list-result .ico-carbon-time::before {
    font-size: 18px;
    position: relative;
    top: 2px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.tour-highlight {
    margin-bottom: 10px;
    font-size: 15px;
}

.tour-highlight ul:first-child {
    list-style: none;
    padding-left: 0;
    margin-bottom: 5px;
}

.tour-highlight li::before {
    content: "\e91b";
    font-family: VnTravelIcon;
    color: #f47921;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
}

.tour-highlight ul li {
    padding-left: 20px;
    position: relative;
}

.tour-highlight ul li + li {
    margin-top: 7px;
}

.search-filter-bgr {
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.search-filter-bgr .title {
    border: 0;
    font-size: 18px;
    font-weight: 500;
    background: #fbfbfb;
    color: #828282;
    padding: 10px 20px;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #e5e5e5;
}

.search-filter-bgr .content {
    padding-top: 0;
    font-size: 15px;
}

.search-filter-bgr .content [class*="bpv-filter-"] {
    padding: 20px 20px 0;
}

.search-filter-bgr .sub-title {
    font-size: 16px;
    margin: 0 0 10px !important;
    color: #828282;
    text-transform: uppercase;
    font-weight: 700;
}

.bpv-s-content .checkbox, .bpv-s-content .radio {
    margin-bottom: 10px;
}

.bpv-s-content .checkbox, .bpv-s-content .radio {
    margin-bottom: 10px;
}

.filter-block .ico-filter, .search-filter-bgr .ico-filter {
    font-size: 10px;
    margin-right: 5px;
    vertical-align: baseline;
    min-height: auto;
    position: relative;
    top: -1px;
}

.btn-search {
    background: #f47921;
    color: #ffffff;
    display: block;
    width: 100%;
    text-transform: uppercase;
}

.btn-search:hover {
    color: #ffffff;
}

.btn-book {
    width: auto;
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 700;
}

.btn-book:hover,
.btn-book:focus {
    color: #ffffff;
    background: #e0691d;
}

.outer-search {
    margin: 20px 20px 20px 20px;
}

.btn-more {
    border: 1px solid #4586FF;
    color: #4586FF;
    border-radius: 20px;
    font-size: 15px;
}

.loading-spin {
    position: fixed;
    top: 45%;
    display: flex;
    z-index: 100;
    width: 100%;
    justify-content: center;
    left: 0;
}

.loading-content {
    background-color: #fff;
    border: 2px solid #fff;
    padding: 20px;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
    border-radius: 8px;
}

.loading-content .l-label {
    font-size: 20px;
    color: #e15d00
}

.loading-content .l-title {
    font-size: 14px;
    color: #121212;
    font-weight: 400
}

.loading-content .ico-loading {
    font-size: 24px;
    margin-bottom: 15px
}

.loading-spin img {
    margin-right: 10px
}

.loading-bgr {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    background-color: rgba(0, 0, 0, .3)
}

.style-image {
    width: 160px !important;
    height: 160px !important;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
}

.page-section-2 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.col-md-5 {
    width: 20%;
}

.img-posts {
    height: 150px;
    border-radius: 10px;
}

.post-relate .item .outer-transform {
    border-radius: 10px;
}

.lg-grid-photo {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    cursor: pointer;
    position: relative;
    grid-gap: 8px;
    border-radius: 2px;
    height: 100%;
    width: 100%;
}

.item-grid-photo:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1/3;
    max-width: 620px;
    max-height: 400px;
}

.item-grid-photo:nth-child(2) {
    grid-column: 3/4;
    grid-row: 1/3;
    max-width: 300px;
    max-height: 400px;
}

.item-grid-photo:nth-child(3) {
    grid-column: 4/5;
    grid-row: 1/2;
    max-width: 300px;
    max-height: 196px;
}

.item-grid-photo:nth-child(4) {
    grid-column: 4/5;
    grid-row: 2/3;
    max-width: 300px;
    max-height: 196px;
}

.item-grid-photo {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    max-height: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.item-grid-photo a {
    display: block;
    height: 100%;
}

.view-more-photo {
    bottom: 10px;
    right: 10px;
    color: #ffffff;
    border-radius: 5rem;
    backdrop-filter: blur(2px);
    background: #191b2066;
    border: 2px solid #ffffff;
    padding: 9px 24px;
}

.video-container .play-button,
.item-grid-photo .play-button,
.c-photo .play-button,
.youtube-content .play-button {
    width: 85px;
    height: 55px;
    background-color: red !important;
    box-shadow: 0 0 30px rgba(0, 0, 0, .6);
    z-index: 1;
    opacity: .9;
    border-radius: 14px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.video-container .play-button::before,
.item-grid-photo .play-button::before,
.c-photo .play-button::before,
.youtube-content .play-button::before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.youtube-content .play-button {
    cursor: pointer;
}

.photo-grid {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.c-photo:nth-child(1) {
    width: 62.7%;
    height: 390px;
    position: relative;
}

.c-photo:nth-child(2) {
    width: 36.5%;
    height: 190px;
    margin-top: 0;
    margin-left: .8%;
}

.c-photo:nth-child(3) {
    width: 17.85%;
    height: 190px;
    margin-left: .8%;
    margin-top: .81%;
}

.c-photo:nth-child(4) {
    width: 17.85%;
    height: 190px;
    margin-left: .8%;
    margin-top: .81%;
}

.c-photo {
    float: left;
    background-color: #f6f6f6;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
    cursor: pointer;
}

.photo-grid img {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    font-family: "object-fit:cover";
    object-fit: cover;
}

.nav-tab-detail {
    position: relative;
    z-index: 10;
    width: 100%;
    background-color: #fff;
    max-width: 1170px;
}

.list-result-highlights {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.list-result-highlights-content {
    margin-bottom: 5px;
    font-size: 15px;
}

.list-result-highlights-content ul:first-child {
    list-style: none;
    padding-left: 0;
    margin-bottom: 5px;
}

.list-result-highlights-content li::before {
    content: "\e91b";
    font-family: VnTravelIcon;
    color: #f47921;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
}

.list-result-highlights-content ul li {
    padding-left: 20px;
    position: relative;
}

.list-result-highlights-content ul li + li {
    margin-top: 7px;
}

.list-result-highlights-content ul.list-why {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.list-result-highlights-content ul.list-why li::before {
    content: "";
}

.list-result-highlights-content ul.list-why li {
    padding-left: 0;
}

.list-result-highlights-content ul.list-why li::marker {
    color: #d2d2d2;
    font-size: 1.3em;
    line-height: 16px;
}

.ul-tab {
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(223, 223, 223, 0.5);
    list-style: none;
    padding: 0;
}

.ul-tab li {
    float: left;
    margin: 0 30px 0 0;
    position: relative;
    color: #605d5d;
}

.ul-tab li a {
    display: block;
    padding: 10px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

.ul-tab li.active a, .ul-tab li:hover a {
    color: #fd792c;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    border: none;
    background: none;
}

.affix-top {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    z-index: 98;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
}

.skip-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    display: none;
    width: 100%;
    padding: 12px 15px;
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
    z-index: 9;
}

.ul-tab li::after {
    content: '';
    display: block;
    width: 45px;
    height: 2px;
    position: absolute;
    bottom: -2px;
    z-index: 3;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.ul-tab li.active::after, .ul-tab li:hover::after {
    background-color: #fd792c;
}

#tab-details .price-block {
    display: none;
}

.affix-top .price-block {
    display: block !important;
    padding-top: 8px;
    padding-bottom: 8px;
}

.tour-highlight {
    margin-bottom: 5px;
}

.tour-highlight ul:first-child {
    list-style: none;
    padding-left: 0;
    margin-bottom: 5px;
}

.tour-highlight li::before {
    color: #4586FF;
    position: absolute;
    left: 0;
    top: 4px;
    width: 13px;
    height: 13px;
    background: #fff;
    border-radius: 50%;
    content: "";
    border: 4px solid #4586FF;
}

.tour-highlight ul li {
    padding-left: 20px;
    position: relative;
}

.tour-highlight ul li + li {
    margin-top: 5px;
}

.list-result-highlights {
    margin-top: 10px;
    margin-bottom: 10px;
}

.container-title {
    margin-bottom: 20px;
}

.title-tour-detail {
    font-size: 22px;
    position: relative;
    padding-left: 15px;
}

.title-tour-detail::before {
    content: "";
    width: 4px;
    background: #f47921;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 5px;
    height: 100%;
}

.content-tour-block {
    margin-bottom: 30px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.bg-light {
    background: #F6F8FB !important;
}

.info-tour [class*="ico-"]::before {
    color: #828282;
    margin-right: 4px;
}

.tour-book-area {
    background: #f2f2f2;
    padding: 20px;
    border-radius: 10px;
}

#tab-details .price-block {
    display: none;
}

.card.full-itinerary {
    border: none
}

.itinerary-box {
    margin-left: 50px;
    position: relative;
    border-bottom: 1px solid #e8e8e8;
}

.itinerary-box::before {
    position: absolute;
    content: "";
    top: 34px;
    left: -30px;
    padding-top: 0;
    border-left: 1px dashed #c7d0d9;
    width: 0;
    height: 100%;
}

.itinerary-box::after {
    position: absolute;
    content: "";
    left: -40px;
    top: 13px;
    width: 22px;
    height: 22px;
    background: #d2d2d2;
    border-radius: 20px;
    border: 4px solid #fff;
}

.itinerary-box:first-child::after {
    content: "\e95e";
    font-family: VnTravelIcon;
    font-size: 24px;
    background-repeat: no-repeat;
    width: 36px;
    height: 36px;
    background-color: #4586FF;
    border-radius: 20px;
    top: 6px;
    left: -48px;
    background-position: center;
    border: 0 !important;
    color: #ffffff;
    text-align: center;
}

.itinerary-box:last-child::after {
    width: 36px;
    height: 36px;
    background-color: #4586FF;
    border-radius: 20px;
    top: 6px;
    left: -48px;
    border: 0 !important;
    content: "\e960";
    font-family: VnTravelIcon;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    padding-top: 3px;
}

.itinerary-box:last-child::before {
    border: none;
}

.full-itinerary button::after {
    position: absolute;
    right: 0;
    top: 12px;
    font-family: VnTravelIcon;
    font-size: 18px;
    content: "\e932";
    color: #f47921;
}

.full-itinerary button.collapsed::after {
    content: "\e937";
    color: #4586FF;
}

.btn-check:focus + .btn, .btn:focus {
    box-shadow: none;
}

.full-itinerary-header button {
    padding: 12px 15px 12px 0;
    text-align: left;
}

.control-days .control {
    cursor: pointer;
}

.control-days .control i {
    margin-left: 5px;
}

.itinerary-box:has(.body-days.show)::after {
    background-color: #f47921;
    border: 4px solid #ffe8d6;

}

.list-tour ul li {
    position: relative;
    padding-left: 20px;
}

.list-tour ul {
    list-style: none;
    padding-left: 0;
}

.h4-title {
    font-weight: 500;
}


.spantotal {
    font-size: 18px;
}

.text-red {
    color: red;
}

.form-select.is-valid, .was-validated .form-select:valid,
.form-control.is-valid, .was-validated .form-control:valid {
    border-color: #ced4da !important;
    background-image: none !important;
    padding: initial !important;
    box-shadow: initial !important;
    padding: .375rem .75rem !important;
}

.form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"], .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"] {
    background-image: inherit !important;
}

.list-tour ul li::before {
    content: "\f00c";
    font-family: "FontAwesome";
    display: inline-block;
    margin-right: 10px;
    color: #b99365;
    position: absolute;
    top: 2px;
    line-height: 1;
    left: 0;
}


.tour-exclude ul li::before {
    content: "\f056";
    color: #cccccc;
}

.tour-include ul li::before {
    content: "\f055";
    color: #f47921;
}

.table-price {
    border: 1px solid #f2f2f2;
}

.table-price td, .table-price th {
    padding: 8px 10px;
}

.th-price {
    text-align: center;
    background: #e8e8e8;
    font-weight: 500;
}

.table-price td {
    border: 2px solid #e8e8e8;
}

.td-price {
    text-align: center;
    color: #b72020;
    width: 150px;
}

.pack-col {
    font-weight: 500;
    text-align: center;
}

.td-book {
    width: 120px;
    text-align: center;
}

.th-price:last-child {
    border-color: #f2f2f2;
}

.title_tb_price {
    background: #f2f2f2;
    padding: 8px 10px;
}

.btn-book-price {
    padding: 3px 10px;
    width: 100%;
    background: #f47921;
}

.btn-book-price:hover,
.btn-book-price:focus {
    background: #e0691d;
}

.row-price-table + .row-price-table {
    margin-top: 20px;
}

.widget-inner {
    padding: 15px;
    background: #fff;
}

.widget {
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2)
}

.box-whyus {
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
}

.title-whyus {
    background: #f47921;
    border-radius: 15px 15px 0 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    padding: 10px 15px;
}

.whyus-content {
    padding: 20px;
    font-size: 15px;
}

.item-whyus h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

.item-whyus {
    position: relative;
    padding-left: 30px;
}

.item-whyus::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "\e91b";
    font-family: VnTravelIcon;
    color: #f47921;
}

.tour-policy {
    display: block;
    overflow: hidden;
    position: relative;
    height: 300px;
}

.tour-policy::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#fff));
    background: linear-gradient(transparent, #fff);
}

.item-btn {
    display: block;
    width: 130px;
    text-align: center;
    margin: 10px auto;
    color: #222;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #666;
}

.tour-policy.active {
    height: auto !important;
}

.affix-top .tab-details {
    border-bottom: 0;
    float: left;
    margin-bottom: 0;
}

.affix-top .nav-details {
    max-width: 1170px;
    padding-right: 15px;
    padding-left: 15px;
    margin-left: auto;
    margin-right: auto;
}

.affix-top .ul-tab li a {
    padding: 14px 10px;
}

.title-book {
    background: #e8e8e8;
    padding: 10px 15px;
    font-size: 18px;
    text-transform: uppercase;
}

.content-book {
    padding: 20px;
}

.container-book {
    border: 1px solid #e8e8e8;
}

.img-guide-list {
    height: 100%;
    width: 100%;
    object-fit: cover;
    min-height: 200px;
}

.block-34, .block-3 {
    background: #fff;
    -webkit-box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
}

.categories li {
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
    list-style: none;
}

.categories li:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.left-post-right {
    width: 75px;
}

.img-post-right {
    height: 70px;
    border-radius: 10px;
}

.item-post + .item-post {
    margin-top: 20px;
}

.h4-post {
    font-weight: 400;
}

.h1-title {
    font-size: 30px;
}

.img-slide {
    width: 100%;
}

.slide .owl-dots,
.slider-tienich .owl-dot {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.slide.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0 !important;
}

.img-mice-list {
    height: 330px;
    object-fit: cover;
}

.item-mice + .item-mice {
    margin-top: 40px;
}

#wsnavtoggle {
    display: none;
}

.menu-container {
    background: url('../images/header.jpg') repeat top left;
}

.top-header {
    padding: 5px 0;
}

.tb-price-summary {
    padding: 10px;
}

.info-tour .ico-group-size {
    margin-top: 3px;
}

@media (min-width: 1280px) {
    .container {
        max-width: 1200px;
    }
}

.content-short {
    height: 100px;
    overflow: hidden;
}

.top-header {
    color: #ffffff;
    background: #18285f;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

#main-menu {
    -webkit-transition: .3s all ease-out;
    -o-transition: .3s all ease-out;
    transition: .3s all ease-out;
    background: #fff !important;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

#main-menu.sticky {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    animation: slideDownFade 0.3s ease-out;
}

@keyframes slideDownFade {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#main-menu.sticky img.logo {
    height: 70px;
}

#main-menu.sticky .wsmenu > .wsmenu-list > li > a {
    padding: 20px 20px;
}

.owl-nav .owl-next::after {
    border-width: medium 4px 4px medium;
    text-shadow: 0px 2px 4px #000000;
}

.owl-nav .owl-next::after, .owl-nav .owl-prev::after {
    height: 24px;
    width: 24px;
}

.owl-nav .owl-prev::after {
    border-width: 4px medium medium 4px;
    text-shadow: 0px 2px 4px #000000;
}

.slide .owl-nav .owl-next, .slide .owl-nav .owl-prev {
    top: 50%;
    margin-top: -15px;
}

.slide .owl-nav .owl-prev {
    left: 50px;
}

.slide .owl-nav .owl-next {
    right: 50px;
}

.discount-badge {
    position: absolute;
    top: 0;
    left: 5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 15px 9px 18px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
    pointer-events: none;
    z-index: 2;
}

.discount-down {
    clip-path: polygon(
        0% 0%, 100% 0%, 100% 78%,
        50% 100%,
        0% 78%
    );
}

.discount-down::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35),
    inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.discount-icon {
    font-size: 16px;
}

.text-discount {
    color: #ff4b2b;
}

.popular-hotel .col-img-text {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    color: #fff;
    transform: translateY(-50%)
}

.popular-hotel .col-img-text .text-name {
    font-size: 20px;
    display: block;
    font-weight: bold;
}

.popular-hotel img {
    border-radius: 10px;
    height: 200px;
    object-fit: cover;
}

.popular-hotel .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.popular-hotel .bg-overlay-4 {
    background: #000;
    opacity: 30%;
    border-radius: 10px;
}

.num-hotel {
    font-weight: 700;
}
.city-tours-list {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-gap: 20px;
}
