@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --normal-font: "Montserrat", sans-serif;
    --normal-color: #333;
    --primary-color: #fb6a00;
    --second-color: #058249;
    --three-color: #555;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

img,
picture,
svg,
video {
    max-width: 100%;
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--normal-font);
    color: #000;
    font-size: 1.4rem;
    line-height: 1.5;
    font-style: normal;
}

.ov-hidden {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5;
}

a {
    color: var(--normal-color);
    text-decoration: none;
    cursor: pointer;
}

a:hover,
a:focus {
    text-decoration: none;
    color: var(--second-color);
}

p:last-child {
    margin-bottom: 0;
}

button {
    border-color: transparent;
    outline: 0;
}

.row-collapse {
    margin-left: 0;
    margin-right: 0;
}

.row-collapse>div[class~=col],
.row-collapse>div[class^=col-] {
    padding-left: 0;
    padding-right: 0;
}

.row-small {
    margin-left: -10px;
    margin-right: -10px;
}

.row-small>div[class~=col],
.row-small>div[class^=col-] {
    padding-left: 10px;
    padding-right: 10px;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.tb-space {
    padding: 70px 0;
}

.tb-space-top {
    padding-top: 70px;
}

.tb-space-bottom {
    padding-bottom: 70px;
}

.tb-space-sm {
    padding: 40px 0;
}

.tb-space-sm-top {
    padding-top: 40px;
}

.tb-space-sm-bot {
    padding-bottom: 40px;
}

@media (max-width: 767.98px) {
    .tb-space {
        padding: 40px 0;
    }

    .tb-space-top {
        padding-top: 40px;
    }

    .tb-space-bottom {
        padding-bottom: 40px;
    }
}

.form-control {
    height: 38px;
    padding: 0 12px;
    border: 1px solid #ddd;
    font-size: 1.6rem;
    width: 100%;
    vertical-align: middle;
    background-color: #fff;
    color: #333;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: color 0.3s, border 0.3s, background 0.3s, opacity 0.3s;
}

.form-control:focus {
    box-shadow: 0 0 5px #ccc;
    opacity: 1 !important;
    outline: 0;
    color: #333;
    background-color: #fff;
}

textarea.form-control {
    padding: 10px 15px !important;
    height: auto !important;
}

.hidden {
    display: none;
}

.heading-title {
    margin-bottom: 30px;
}

.heading-title .sectitle {
    font-weight: bold;
    line-height: 1.6;
    color: #008037;
    text-transform: uppercase;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .heading-title .sectitle {
        font-size: 3rem;
    }
}

.heading-title .subtitle {
    line-height: 1.6;
    color: black;
    text-align: center;
}

@media (min-width: 768px) {
    .heading-title .subtitle {
        font-size: 1.6rem;
        max-width: 1000px;
        margin: 0 auto;
    }
}

.bg-gray {
    background: #f9f9f9;
}

@keyframes zoom {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.btn-primary {
    background-color: var(--second-color);
    border-color: var(--second-color);
    color: #fff;
}

.required {
    color: #de8c12;
}

.banner {
    position: relative;
}

.banner-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.banner-content {
    position: relative;
}

.banner-content-inner {
    text-align: center;
}

.banner-content .logo {
    width: 100px;
    margin: 0 auto;
    padding-top: 60px;
    margin-bottom: 20px;
}

.banner-content .times {
    font-weight: bold;
    line-height: 1.6;
    color: white;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.33) 2px 2px 8px;
    -webkit-text-stroke-width: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 2.6rem;
}

.banner-content .times svg {
    width: 35px;
    height: 35px;
}

.banner-content .sectitle {
    font-weight: bold;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0px;
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.33) 2px 2px 8px;
    -webkit-text-stroke-width: 0px;
    margin-bottom: 10px;
    font-size: 5.9rem;
}

@media (max-width: 767.98px) {
    .banner-content .sectitle {
        font-size: 4.8rem;
    }
}

@media (max-width: 576px) {
    .banner-content .sectitle {
        font-size: 3.8rem;
        line-height: 1.5;
    }
}

.banner-content .subtitle {
    font-weight: bold;
    line-height: 1.6;
    color: white;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.32) 2px 2px 3px;
    font-size: 1.8rem;
}

.banner-content .gr-btn {
    margin-top: 30px;
    padding-bottom: 30px;
}

.banner-content .gr-btn .btn {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0px;
    text-align: center;
    background-color: #ffb90f;
    border-radius: 15px;
    min-width: 270px;
    padding: 12px 20px;
    display: inline-block;
    font-weight: bold;
}

.banner-content .meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 20px;
}

.banner-content .meta .item {
    font-weight: bold;
    line-height: 1.6;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.8rem;
}

.banner-content .meta .item svg {
    width: 24px;
    height: 24px;
    fill: #ffb90f;
}

@media (min-width: 768px) {
    .banner {
        min-height: 576px;
    }
}

.about {
    position: relative;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fffcf9;
    pointer-events: none;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 135px;
    left: 0;
}

.about-bg img {
    width: 80%;
    max-width: 850px;
    opacity: 0.15;
}

.about-inner {
    position: relative;
    z-index: 1;
    padding: 40px 0;
}

.about-trip {
    position: relative;
    width: fit-content;
    height: 49px;
    margin: 0 auto;
}

.about-trip-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-width: 1px;
    border-style: solid;
    border-color: #11fb64;
}

.about-trip-inner .col-item {
    flex: auto;
    padding: 10px;
    text-align: center;
}

.about-trip-inner .mta-logo {
    width: 148px;
    text-align: center;
    background-color: #11fb64;
}

.about-trip-inner .mta-logo img {
    width: 140px;
}

@media (max-width: 767.98px) {
    .about-trip-inner .mta-logo {
        width: 100%;
    }
}

.about-trip-inner .mta-name {
    line-height: 1.6;
    color: black;
    text-decoration-line: underline;
    text-align: center;
    font-weight: bold;
    font-size: 1.6rem;
}

.about-trip-inner .mta-number {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.2rem;
}

.about-trip-inner .mta-number .icon svg {
    width: 8px;
    height: 8px;
    fill: #00852f;
}

@media (max-width: 767.98px) {
    .about-trip {
        width: 100%;
        height: auto;
    }
}

.about-service {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 40px;
    padding: 0 160px;
}

.about-service .item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-service .item .icon {
    width: 30px;
}

.about-service .item .label .title {
    font-weight: bold;
    color: black;
    text-align: left;
    font-size: 1.4rem;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .about-service {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }
}

.about-content {
    margin-top: 40px;
}

.about-for-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-for-list .item {
    text-align: center;
}

.about-for-list .item .icon svg {
    width: 67px;
    height: 67px;
    fill: #0c774a;
}

.about-for-list .item .content {
    font-size: 15px;
    line-height: 1.6;
    color: black;
    text-align: center;
    font-weight: bold;
}

@media (min-width: 768px) {
    .about-for-list {
        max-width: 680px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .about-for-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.destinations-list .item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.destinations-list .item+.item {
    margin-top: 30px;
}

.destinations-list .item .box-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    width: 35%;
}

.destinations-list .item .box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 6/4;
}

.destinations-list .item .box-content {
    flex: 1;
}

.destinations-list .item .box-content .title {
    font-weight: bold;
    line-height: 1.6;
    color: #058249;
    text-align: left;
    margin-bottom: 10px;
    font-size: 2rem;
}

.destinations-list .item .box-content .desc {
    color: #000;
    font-size: 1.6rem;
}

@media (min-width: 768px) {
    .destinations-list .item {
        max-width: 973px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .destinations-list .item {
        gap: 10px;
    }

    .destinations-list .item .box-image {
        width: 100%;
    }

    .destinations-list .item .box-content {
        flex: none;
        width: 100%;
    }
}

.itinerary-list .item {
    position: relative;
}

.itinerary-list .item-head {
    position: relative;
    padding: 10px 20px;
    border-bottom: 2px solid #2d2d2d;
}

.itinerary-list .item-head-title {
    font-weight: bold;
    line-height: 1.6;
    color: #058249;
    text-align: left;
    cursor: pointer;
    font-size: 1.6rem;
    margin-bottom: 0;
}

.itinerary-list .item-head .arrow {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 2.4rem;
}

.itinerary-list .item-head .arrow svg {
    width: 24px;
    height: 17px;
}

.itinerary-list .item-head.active .arrow {
    transform: rotate(180deg);
}

.itinerary-list .item-content {
    padding: 15px 20px;
    width: 100%;
    word-break: break-word;
    color: #2d2d2d;
    display: none;
    font-size: 1.5rem;
}

.sidebar-price {
    position: relative;
    overflow: hidden;
    background-color: #f6f4f0;
    border-radius: 15px;
    box-shadow: black 0px 16px 4px -16px;
    transition: all 150ms linear 0s;
    padding: 20px;
}

.sidebar-price .group-price {
    font-weight: bold;
    line-height: 1.6;
    color: black;
    text-align: center;
    font-size: 3.6rem;
}

.sidebar-price .group-price .price-label {
    font-size: 1.4rem;
}

.sidebar-price .group-price .price {
    color: #058249;
}

.sidebar-price .btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 1.8rem;
    text-transform: uppercase;
    text-align: center;
    border-radius: 15px;
    display: inline-block;
    font-weight: bold;
}

.sidebar-price .note {
    margin-top: 15px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.6;
    color: #2d2d2d;
    text-align: left;
}

.sidebar-price .note ul {
    list-style: disc;
}

@media (max-width: 991.98px) {
    .sidebar-price {
        margin-top: 30px;
    }
}

.inclusions-box {
    border: 1px solid #0c774a;
    border-radius: 20px;
    background-color: #f6f4f0;
    padding: 20px 15px;
}

.inclusions-box ul {
    list-style: none;
}

@media (min-width: 768px) {
    .inclusions-box {
        padding: 40px 40px;
    }
}

/*@media (min-width: 992px) {
    .inclusions-box {
        padding: 40px 80px;
    }
}*/

.inclusions-box .item-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    line-height: 1.6;
    color: #008037;
    text-align: left;
    font-size: 2rem;
}

.inclusions-box .item-head svg {
    width: 39px;
    height: 39px;
    fill: #058249;
}

.inclusions-box .item-content {
    line-height: 2;
    color: black;
    font-size: 1.6rem;
}

.inclusions-box .item-content ul {
    /* padding-left: 40px; */
}

.inclusions-box .item-content li {
    margin-left: 0;
}

.inclusions-box .item-content ul li {
    position: relative;
    counter-increment: linum;
    padding-bottom: 5px;
    padding-left: 22px;
    line-height: 1.5;
}

/*            .inclusions-box .item-content ul li::before {
                position: absolute;
                background-repeat: no-repeat;
                background-size: 100% 100%;
                left: 0;
                width: 15px;
                height: 15px;
                content: "";
                top: 4px;
                background-image: url("../images/icondot.svg");
            }*/

.include li::before {
    content: "✔" !important;
    position: absolute !important;
    left: 0 !important;
    color: #008000 !important;
    font-weight: bold !important;
}

.not-include li::before {
    content: "✘" !important;
    position: absolute !important;
    left: 0 !important;
    color: #f00 !important;
    font-weight: bold !important;
}

.inclusions-box .item+.item {
    margin-top: 30px;
}

@media (max-width: 767.98px) {
    .inclusions-box .item+.item {
        margin-top: 20px;
    }
}

.choose {
    padding-bottom: 40px;
}

.choose-inner {
    border-radius: 15px;
    background-color: #f6f4f0;
    box-shadow: black 0px 16px 4px -16px;
    padding: 20px 25px;
}

.choose-list {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #2d2d2d;
}

.choose-list li {
    position: relative;
    counter-increment: linum;
    padding-bottom: 8px;
    padding-left: 22px;
}

.choose-list li::before {
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    width: 15px;
    height: 15px;
    content: "";
    top: 4px;
    background-image: url("../images/checked.svg");
}

.inquire .box-image-author {
    text-align: center;
    margin-bottom: 30px;
}

.inquire .box-image-author .box-img {
    width: 133px;
    height: 133px;
    margin: 0 auto;
}

.inquire .box-image-author .box-img img {
    border: 2px solid #fff;
    background-color: #f1f3f4;
    border-radius: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inquire .box-heading .sectitle {
    color: #000;
}

.inquire-inner {
    background-color: #f6f4f0;
    border-radius: 30px;
    padding: 20px 15px;
}

@media (min-width: 768px) {
    .inquire-inner {
        padding: 60px 45px;
    }
}

.inquire-form .box-form-head {
    margin-bottom: 30px;
}

.inquire-form .box-form-head .box-head-title {
    font-weight: bold;
    line-height: 1.6;
    color: #058249;
    letter-spacing: 0px;
    text-align: left;
    font-size: 2.6rem;
}

.inquire-form .box-form-head .box-head-desc {
    line-height: 1.6;
    color: black;
    text-align: left;
    font-size: 1.5rem;
}

.inquire-form .box-form-inner .form-group {
    margin-bottom: 20px;
}

.inquire-form .box-form-inner .form-group>label {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 6px;
}

.inquire-form .box-form-inner .form-group .form-checkbox {
    padding: 15px 20px;
    border-radius: 10px;
    background-color: #fff;
}

.inquire-form .box-form-inner .form-group .form-checkbox-list {
    column-count: 4;
    column-gap: 20px;
}

.inquire-form .box-form-inner .form-group .form-checkbox-list.column1 {
    column-count: 1;
}

.inquire-form .box-form-inner .form-group .form-checkbox-list.column3 {
    column-count: 3;
}

@media (max-width: 767.98px) {
    .inquire-form .box-form-inner .form-group .form-checkbox-list {
        column-count: 2 !important;
    }
}

@media (max-width: 576px) {
    .inquire-form .box-form-inner .form-group .form-checkbox-list {
        column-count: 1 !important;
    }
}

.inquire-form .box-form-inner .form-group .form-checkbox-item:nth-child(n+2) {
    margin-top: 10px;
}

.inquire-form .box-form-inner .form-group .form-checkbox-item label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.4rem;
    margin-bottom: 0;
}

.inquire-form .box-form-inner .form-group .form-checkbox-item label input {
    width: 16px;
    height: 16px;
}

.inquire-form .box-form-inner .form-group .form-control {
    background-color: #fff;
    padding: 0 15px;
    border-radius: 10px;
    border: 0;
    height: 48px;
    font-size: 1.4rem;
}

.inquire-form .box-form-inner .form-group .text-muted {
    font-style: italic;
    line-height: 1.6;
    color: #a6a6a6;
    text-align: left;
    display: block;
    margin-top: 7px;
    font-size: 1.5rem;
}

.inquire-form .box-form-inner .form-group .ladi-note {
    line-height: 1.6;
    color: black;
    text-align: left;
    font-size: 1.5rem;
}

.inquire-form .box-form-inner .form-group .form-note {
    line-height: 1.6;
    color: #e83b30;
    text-align: left;
    font-size: 1.5rem;
}

.inquire-form .box-form-inner .btn-submit {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    color: white;
    text-align: center;
    background-color: #008037;
    width: 100%;
    border-radius: 8px;
    padding: 10px 20px;
}

.faqs-list {
    position: relative;
}

.faqs-list .item-head {
    position: relative;
    transition: all 150ms linear 0s;
    border-bottom: 1px solid #2d2d2d;
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.faqs-list .item-head-title {
    font-weight: bold;
    line-height: 1.6;
    color: #424242;
    text-align: left;
    font-size: 1.6rem;
}

.faqs-list .item-head.active .arrow {
    transform: rotate(180deg);
}

.faqs-list .item-content {
    line-height: 1.6;
    color: #2d2d2d;
    padding: 15px;
    display: none;
    font-size: 1.5rem;
}

.reviews .heading-title {
    margin-bottom: 10px;
}

.reviews .heading-title .sectitle {
    margin-bottom: 0;
}

.reviews .btn-addlink {
    border: 2px solid #2d2d2d;
    border-radius: 100px;
    line-height: 1.6;
    color: #424242;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0px;
    text-align: left;
    padding: 5px 30px;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    font-size: 1.7rem;
    transition: all 150ms linear 0s;
    flex-wrap: wrap;
    justify-content: center;
}

.reviews .btn-addlink .iconlogo {
    margin-left: 10px;
    line-height: 1;
}

.reviews .btn-addlink .iconlogo img {
    height: 30px;
}

.reviews .btn-addlink:hover {
    background-color: #2d2d2d;
    color: #fff;
}

.reviews-gg-head {
    text-align: center;
}

.reviews-gg-head .group-rate .head {
    font-weight: bold;
    line-height: 1.6;
    color: #2d2d2d;
    text-transform: uppercase;
    letter-spacing: 0px;
    text-align: center;
    font-size: 2.6rem;
}

.reviews-gg-head .group-rate .rate {
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-gg-head .group-rate .rate .item svg {
    width: 35px;
    height: 35px;
    fill: #ffde59;
}

.reviews-gg-head .group-rate .rate-text {
    line-height: 1.6;
    color: #2d2d2d;
    letter-spacing: 0px;
    text-align: center;
    font-size: 1.6rem;
}

.reviews-gg-head .group-rate .logo-gg {
    margin-top: 10px;
}

.reviews-gg-head .group-rate .logo-gg img {
    width: 140px;
}

.reviews-gg-list {
    position: relative;
    padding: 30px 0;
}

.reviews-gg-item {
    border: 0.25px solid #a6a6a6;
    border-radius: 20px;
}

.reviews-gg-item .item-inner {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

@media (min-width: 992px) {
    .reviews-gg-item .item-inner {
        height: 376px;
    }
}

.reviews-gg-item .item-content {
    flex: 1;
}

.reviews-gg-item .item-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.reviews-gg-item .item-head-infor {
    flex: 1;
    display: flex;
    gap: 6px;
}

.reviews-gg-item .item-head-infor .author-avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.reviews-gg-item .item-head-infor .author-name {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    color: black;
    text-align: left;
}

.reviews-gg-item .item-head-infor .author-stats {
    font-size: 12px;
    line-height: 1.6;
    color: black;
    text-align: left;
}

.reviews-gg-item .item-head-infor .rate {
    display: flex;
    align-items: center;
    gap: 4px;
}

.reviews-gg-item .item-head-infor .rate .item svg {
    width: 18px;
    height: 18px;
    fill: #ffde59;
}

.reviews-gg-item .item-head-gg img {
    width: 30px;
}

.reviews-gg-item .item-desc {
    font-style: italic;
    line-height: 1.6;
    color: black;
    font-size: 1.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
}

.reviews-gg-item .item-links .btn-link {
    font-weight: bold;
    line-height: 1.6;
    color: #058249;
    text-decoration-line: underline;
    text-align: left;
    font-size: 1.6rem;
}

@media (max-width: 991.98px) {
    .reviews-gg-item {
        margin-bottom: 30px;
    }
}

.reviews-trip {
    margin-top: 40px;
}

.reviews-trip-infor {
    background-color: #f6f4f0;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    width: 560px;
    margin: 0 auto;
}

.reviews-trip-infor .ladi-logo img {
    width: 135px;
    height: 135px;
    object-fit: cover;
    border-radius: 50%;
}

.reviews-trip-infor .ladi-infor .title {
    font-weight: bold;
    line-height: 1.6;
    color: #2d2d2d;
    text-transform: uppercase;
    letter-spacing: 0px;
    text-align: center;
    font-size: 2.6rem;
}

.reviews-trip-infor .ladi-infor .rate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.reviews-trip-infor .ladi-infor .rate .item svg {
    width: 30px;
    height: 30px;
    fill: #00852f;
}

.reviews-trip-infor .ladi-infor .rate-text {
    line-height: 1.6;
    color: #2d2d2d;
    letter-spacing: 0px;
    text-align: center;
    font-size: 1.6rem;
}

@media (max-width: 767.98px) {
    .reviews-trip-infor {
        width: 100%;
        justify-content: center;
    }
}

.reviews-trip-list {
    position: relative;
    padding: 30px 0;
}

.reviews-trip-item {
    border: 0.25px solid #a6a6a6;
    border-radius: 20px;
}

.reviews-trip-item .item-inner {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

@media (min-width: 992px) {
    .reviews-trip-item .item-inner {
        height: 376px;
    }
}

.reviews-trip-item .item-content {
    flex: 1;
}

.reviews-trip-item .item-links {
    margin-top: 10px;
}

.reviews-trip-item .item-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.reviews-trip-item .item-head-infor {
    flex: 1;
    display: flex;
    gap: 6px;
}

.reviews-trip-item .item-head-infor .author-avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.reviews-trip-item .item-head-infor .author-name {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    color: black;
    text-align: left;
}

.reviews-trip-item .item-head-infor .author-stats {
    font-size: 12px;
    line-height: 1.6;
    color: black;
    text-align: left;
}

.reviews-trip-item .item-head-infor .rate {
    display: flex;
    align-items: center;
    gap: 4px;
}

.reviews-trip-item .item-head-infor .rate .item svg {
    width: 18px;
    height: 18px;
    fill: #00852f;
}

.reviews-trip-item .item-head-trip img {
    width: 30px;
}

.reviews-trip-item .item-desc {
    font-style: italic;
    line-height: 1.6;
    color: black;
    font-size: 1.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
}

.reviews-trip-item .item-links .btn-link {
    font-weight: bold;
    line-height: 1.6;
    color: #058249;
    text-decoration-line: underline;
    text-align: left;
    font-size: 1.6rem;
}

@media (max-width: 991.98px) {
    .reviews-trip-item {
        margin-bottom: 30px;
    }
}

.tours-list .item+.item {
    margin-top: 30px;
}

.tours-list .item-inner {
    background-color: #fff;
    border: 1px solid #c1c1c1;
    border-radius: 15px;
    transition: all 150ms linear 0s;
    padding: 30px 40px;
}

.tours-list .item-inner .box-content .item-title {
    font-weight: bold;
    line-height: 1.6;
    color: #424242;
    letter-spacing: 0px;
    text-align: left;
    font-size: 2.4rem;
    text-overflow: ellipsis;
    overflow: hidden;
}

.tours-list .item-inner .box-content .item-meta {
    margin-bottom: 10px;
}

.tours-list .item-inner .box-content .item-meta span {
    display: inline-block;
    margin-right: 10px;
    border: 2px solid var(--second-color);
    border-radius: 100px;
    background-color: #fff;
    padding: 4px 12px;
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--second-color);
}

.tours-list .item-inner .box-content .item-meta span.numcity {
    background-color: var(--second-color);
    color: #fff;
}

.tours-list .item-inner .box-content .item-desc {
    font-size: 1.4rem;
    line-height: 1.6;
    color: black;
    margin-bottom: 10px;
    text-align: justify;
}

.tours-list .item-inner .box-content .item-infor li {
    font-size: 13px;
    line-height: 1.6;
    color: #424242;
}

.tours-list .item-inner .box-content .item-infor li i {
    font-size: 2rem;
    margin-right: 4px;
}

.tours-list .item-inner .box-content .item-infor li+li {
    margin-top: 6px;
}

.tours-list .item-inner .box-content .item-footer {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #c1c1c1;
}

.tours-list .item-inner .box-content .item-footer .group-price {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}

.tours-list .item-inner .box-content .item-footer .group-price .durations-label {
    font-size: 12px;
    line-height: 1.6;
    color: #424242;
    font-weight: 700;
}

.tours-list .item-inner .box-content .item-footer .group-price .durations-text {
    font-weight: bold;
    line-height: 1.6;
    color: #424242;
    font-size: 1.9rem;
}

.tours-list .item-inner .box-content .item-footer .group-price .box-price {
    font-size: 14px;
    font-weight: bold;
}

.tours-list .item-inner .box-content .item-footer .group-price .box-price .price-label {
    margin-right: 4px;
}

.tours-list .item-inner .box-content .item-footer .group-price .box-price .price-num {
    font-size: 2.8rem;
    color: var(--second-color);
}

.tours-list .item-inner .box-content .item-footer .group-btn {
    margin-top: 10px;
}

.tours-list .item-inner .box-content .item-footer .group-btn .btn {
    width: 100%;
    border-radius: 100px;
    background-color: var(--second-color);
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    color: white;
    letter-spacing: 0px;
    text-align: center;
    padding: 10px 20px;
}

.tours-list .item-inner .box-content .item-footer .group-btn .btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

@media (max-width: 767.98px) {
    .tours-list .item-inner {
        padding: 20px 15px;
    }
}

.tours-slider-for .item {
    width: 100%;
    height: 100%;
}

.tours-slider-for .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    height: 300px;
}

.tours-slider-nav {
    margin: 0 -4px;
}

.tours-slider-nav .item {
    padding: 0 4px;
}

.tours-slider-nav .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.footer {
    background-color: #424242;
    padding: 30px 0;
}

.footer-office .head-office {
    font-weight: bold;
    line-height: 1.6;
    color: white;
    text-align: left;
    font-size: 2.2rem;
}

.footer-office-list li {
    font-size: 1.6rem;
    line-height: 1.6;
    color: white;
    text-align: left;
}

.footer-office-list li i {
    margin-right: 7px;
}

.footer-office-list li a {
    color: #ffb90f;
}

@media (max-width: 991.98px) {
    .footer-office {
        margin-bottom: 20px;
    }
}

.footer-social {
    margin-top: 40px;
}

.footer-social-label {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    text-align: center;
    margin-bottom: 10px;
}

.footer-social-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-social-list a {
    display: inline-block;
    width: 47px;
    height: 47px;
}

.footer-social-list a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.copyright {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: white;
    text-align: center;
}

/*Loader*/
.loader {
    width: 48px;
    height: 48px;
    border: 3px solid #FFF;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: var(--primary-color);
    z-index: 11;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.2;
    border-radius: 8px;
}

.departure-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    width: 100%;
    justify-content: space-between;
    border: 1px solid #d4d4d4;
    box-shadow: 0 2px 6px 0 rgba(16, 24, 40, 0.06);
    margin-bottom: 16px;
}

.departure-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.departure-info span {
    color: #404040;
}

.departure-info time {
    font-weight: bold;
}

.travellers {
    flex-direction: row;
    display: flex;
    align-items: center;
    gap: 12px;
}

.travellers .count {
    display: block;
    font-weight: bold;
}

.travellers-status {
    width: 100%;
}

.status {
    display: inline-block;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 24px;
}

.status-green {
    background: rgba(0, 166, 62, 0.12);
    color: #00A63E;
}

.status-gray {
    background: rgb(41 41 41 / 32%);
    color: #ffffff;
}

.departure-card .price {
    font-weight: bold;
}

.price .label,
.travellers .label {
    color: #525252;
    font-weight: 400;
}

.action .btn {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    letter-spacing: 0px;
    text-align: center;
    background-color: #ffb90f;
    border-radius: 15px;
    padding: 8px 20px;
    display: inline-block;
    font-weight: bold;
}

@media (min-width: 768px) {
    .departure-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 27%;
    }

    .travellers {
        width: 16%;
    }

    .travellers-status {
        width: 24%;
        text-align: center;
    }

    .departure-card .price {
        width: 15%;
        text-align: center;
    }

    .action {
        width: 18%;
        text-align: center;
    }
}

.set-tour {
    /* display: flex; */
    width: 171px;
    padding: 10px 16px;
    gap: 6px;
    border-radius: 6px;
    background: #A24D24;
    color: #fff;
    font-size: 14px;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.radio-group label:not(:last-of-type) {
    margin-right: 40px;
}

.radio-group label {
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 0;
}

.radio-group input {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 1.5px solid #747475;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;
    outline: none;
}

.radio-group input:checked {
    border: 1.5px solid #058249;
}

.radio-group input:checked::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #058249;
    border-radius: 50%;
}


.info-tour {
    display: flex;
    gap: 12px;
    flex-direction: column;
    width: 100%;
    border: 1px solid #d4d4d4;
    box-shadow: 0 2px 6px 0 rgba(16, 24, 40, 0.06);
    margin-bottom: 16px;
    border-radius: 30px;
    padding: 24px;
    font-size: 1.5rem;
}

.info-tour .item-info {
    display: flex;
    gap: 8px;
    align-items: center;
}

.info-tour .item-info .title {
    width: 60px;
    font-weight: 500;
}

.info-tour .item-info .dot {
    width: 4px;
}

.info-tour .item-info .info {
    width: calc(100% - 82px);
    font-weight: 600;
}

.brand {
    color: var(--primary-color);
}

.banner-content .logo {
    width: 200px;
}

.reviews-trip-infor .ladi-infor .title {
    font-size: 2.4rem;
}

.error {
    color: red;
}

.share-tooltip {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-tooltip {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 1000;
}

.button-tooltip {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#share-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

#whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
    border: none;
}

.button-tooltip:hover {
    transform: scale(1.1);
}

.button-tooltip i {
    color: #fff;
    font-size: 28px;
}

/* Tooltip */
.tooltip-text {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
}

/* Mũi tên tooltip */
.tooltip-text::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

/* Hover hiện tooltip */
.whatsapp-tooltip:hover .tooltip-text,
.share-tooltip:hover .tooltip-text {
    opacity: 1;
}

.iti {
    width: 100%;
}

.btn.btn-primary.btn-inquire {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 18px 24px;
    border-radius: 18px;
    border: none;

    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff !important;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
}

.btn.btn-primary.btn-inquire::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .4), transparent);
    transition: all .6s ease;
}

.btn.btn-primary.btn-inquire:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}

.btn.btn-primary.btn-inquire:hover::before {
    left: 100%;
}

.btn.btn-primary.btn-inquire:active {
    transform: translateY(-1px) scale(.99);
}

/*# sourceMappingURL=style.css.map */