:root {
    --white: #fff;
    --black: #000;
    --primary: #faaa3f;
    --second: #ffddb3;
    --body: #140f08
}

h1,
h2,
h3,
h4,
h5 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25
}

a,
button,
i,
img {
    transition: all ease .4s
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeindown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@media screen and (max-width:996px) {
    .fadeindown {
        animation: none
    }
}

.line-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.line-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.line-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical
}

.home-banner {
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.vuta-container.custom {
    width: min(1650px, 100%)
}

.home-banner .box-title {
    padding-top: 20vh
}

.home-banner .box-title h2 {
    text-shadow: 1px 1px 1px #000;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-size: 60px;
    margin-bottom: 60px
}

.home-banner .box-title h2 span {
    font-size: 48px;
    text-transform: capitalize;
}

.home-banner .search-form {
    max-width: 720px;
    margin: 0 auto;
    margin-bottom: 20px
}

.home-banner .search-form .vuta-input {
    height: 48px;
    border-radius: 9999px;
    background: #fff;
    color: #000;
}

.home-banner .search-form form {
    position: relative
}

.home-banner .search-form form button {
    position: absolute;
    right: 0;
    top: 0;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 9999px 9999px 0;
    width: 60px;
    height: 48px
}

.home-banner .search-form form button svg {
    height: 24px !important;
    width: 24px !important
}

.home-banner .propose {
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 20px
}

.home-banner .propose ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.home-banner .propose ul li {
    width: 49%
}

.home-banner .propose ul li a {
    display: flex;
    color: #000;
    margin-bottom: 10px;
    height: 40px;
    align-items: center;
    padding-left: 45px;
    background: var(--primary);
    border-radius: 99999px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175)
}

@media (max-width:996px) {
    .home-banner .propose ul li a {
        padding-left: 35px;
    }
}

.home-banner .propose ul li a span {
    margin-bottom: 3px;
}

.home-banner .propose ul li a:hover {
    box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
    transform: translateY(-3px);
    filter: brightness(1.2);
}

.home-banner .list-tour {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175)
}

.home-banner .list-tour:hover .box-btn a {
    opacity: 1 !important;
    margin-top: 30px !important
}

.home-banner .list-tour:hover .box-img img {
    transform: scale(1.1)
}

.home-banner .list-tour>a {
    position: absolute;
    inset: 0;
    z-index: 2
}

.home-banner .list-tour .box-img {
    aspect-ratio: 4/6;
    overflow: hidden
}

.home-banner .list-tour .box-img img {
    height: 100%;
    transition: all ease .5s
}

.home-banner .list-tour .box-content {
    position: absolute;
    left: 50%;
    text-align: center;
    top: 50%;
    z-index: 3;
    width: 100%;
    transform: translateX(-50%) translateY(-50%)
}

.home-banner .list-tour .box-content h4 {
    text-shadow: 1px 1px 1px #000;
    color: #fff
}

.home-banner .list-tour .box-content .ratting i {
    color: #ffc000
}

.home-banner .list-tour .box-content .box-btn a {
    border: 1px solid #ddd;
    border-radius: 4px;
    display: inline-flex;
    justify-content: center;
    padding: 5px 15px;
    color: #ddd;
    margin-top: 80px;
    opacity: 0
}

.home-banner .list-tour:hover .box-content .box-btn a {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff !important
}

.header {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    padding: 10px 0;
    background-image: linear-gradient(180deg, #333 0, rgba(0, 0, 0, 0) 100%)
}

.header .vuta-container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.header .logo img {
    width: 120px
}

@media screen and (max-width:1200px) {
    .header .header-menu {
        display: none
    }
}

.header .header-menu .accordion {
    display: flex;
    gap: 40px
}

.header .header-menu .accordion>li .link>a {
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    display: flex;
    font-size: 15px;
    align-items: center;
    height: 50px
}

.header .header-menu .accordion>li.active .link>a,
.header .header-menu .accordion>li:hover .link>a {
    color: #fff
}

.header .header-menu .accordion .dropdown {
    position: relative
}

.header .header-menu .accordion .dropdown:hover .submenu {
    top: 100%;
    visibility: visible;
    opacity: 1
}

.header .header-menu .accordion .dropdown .link>a {
    position: relative;
    padding-right: 10px
}

.header .header-menu .accordion .dropdown .link>a::before {
    position: absolute;
    content: "\f078";
    font-family: fontawesome;
    right: -5px;
    font-size: 12px;
    top: 14px
}

.header .header-menu .accordion .dropdown .submenu {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all ease .4s;
    visibility: hidden;
    top: calc(100% + 10px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, .1)
}

.header .header-menu .accordion .dropdown .submenu li:last-child a {
    border-bottom: 0
}

.header .header-menu .accordion .dropdown .submenu li a {
    color: #141414;
    display: flex;
    padding: 10px 15px;
    border-bottom: 1px solid var(--primary);
    display: flex;
    white-space: nowrap
}

.header .header-menu .accordion .dropdown .submenu li a:hover {
    background: var(--primary);
    color: #fff
}

.header .header-right ul {
    /*display: flex;*/
    gap: 40px
}

.header .header-right ul li {
    position: relative
}

.header .header-right ul li a {
    font-size: 15px
}

.header .mobile-btn {
    display: none
}

@media screen and (max-width:1200px) {
    .header .mobile-btn {
        display: block
    }
}

.header .mobile-btn #mobile-btn span {
    background: var(--primary);
    margin-bottom: 5px
}

.header .mobile-btn #mobile-btn span:last-child {
    margin-bottom: 0
}

.language .dropdown button {
    font-size: 14px;
    border: 1px solid var(--primary);
    transition: all .3s;
    color: #fff;
}

.language .dropdown .dropdown-menu {
    padding-left: 12px;
    padding-right: 12px;
    min-width: 120px;
}

.language .dropdown .dropdown-menu li a {
    font-size: 14px;
    transition: color .2s;
}

.language .dropdown img {
    width: 16px;
    height: 12px !important;
}

.experience-item .box-img {
    aspect-ratio: 1/1;
}

.experience-item .box-img img {
    height: 100%;
    object-fit: cover;
}

.right-sidebar-bg .check-in {
    padding: 0 25px;
    margin-bottom: 20px;
}

.right-sidebar-bg .check-in .gr-input {
    margin-bottom: 10px;
}

.right-sidebar-bg .check-in .gr-input .vuta-input {
    height: 45px;
}

.right-sidebar-bg .check-in .gr-input .quantity-wrapper {
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    font-family: sans-serif;
}

.thread a {
    background: #000;
    border-radius: 6px;
}

.tiktok a {
    background: #000;
    border-radius: 6px;
}

.tiktok a svg g path,
.thread a svg g path {
    fill: #fff !important;
}

.quantity-input {
    height: 36px;
    text-align: center;
    border: none;
    font-size: 16px;
    background: 0 0;
    outline: 0;
}

.quantity-btn {
    width: 30px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    border: none;
    transition: all ease .4s;
    font-size: 20px;
    cursor: pointer;
    transition: background .2s;
}

.right-sidebar-bg .check-in label {
    margin-bottom: 5px;
    font-weight: 600;
}

#main {
    padding-top: 100px;
}

.product_details_main {
    font-style: normal;
}

.product_details_main .tour-feature-item .icon {
    flex-shrink: 0;
}

.tour-feature-item img {
    height: 24px;
}

.product_details_main .product_details_container h2 {
    font-size: 24px;
    margin: 10px 0 15px;
}

.product-list-w-grid .info-gr span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.product-list-w-grid .desc {
    text-align: justify;
}

.elementor-shape-bottom {
    bottom: -1px;
    animation: wave 9s cubic-bezier(.36, .45, .63, .53) infinite;
    width: 200vw;
    direction: ltr;
    left: 0;
    z-index: 999;
    line-height: 0;
    overflow: hidden;
    position: fixed;
}

.elementor-shape svg {
    display: block;
    left: 50%;
    height: 200px;
    position: relative;
    transform: translateX(-50%);
    width: calc(100% + 1.3px);
}

.elementor-shape .ux-shape-fill {
    fill: #ffc;
    transform: rotateY(0deg);
    transform-origin: center;
}

@keyframes wave {
    0% {
        margin-left: 0
    }
    50% {
        margin-left: -100vw
    }
    100% {
        margin-left: 0
    }
}

.home-banner {
    background-repeat: no-repeat;
}

.home-banner .wraper {
    height: 100%;
}

.home-banner .list-tour {
    margin-bottom: 20px;
}

.list-kind-room .room-item {
    display: flex;
    border: 1px solid #dedede;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .05);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.list-kind-room .room-item .box-img {
    aspect-ratio: 1/1;
    flex-shrink: 0;
    max-width: 300px;
    height: 100%;
    width: 100%;
}

.product_details_main .tour-feature {
    margin-left: 0;
}

.list-kind-room .room-item .box-img img {
    height: 100%;
    object-fit: cover;
}

.list-kind-room .room-item .box-content {
    width: calc(100% - 300px);
    padding: 20px;
    max-height: 300px;
    overflow-y: scroll;
}

.list-kind-room .room-item .box-content .left {
    width: 70%;
}

.list-kind-room .room-item .box-content .right {
    width: 30%;
    text-align: right;
}

.list-kind-room .room-item .box-content .right .old-price {
    color: #888;
    text-decoration: line-through;
}

.list-kind-room .room-item .box-content .right .new-price {
    font-weight: 600;
    color: #ff0000;
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
}

.quantity-input {
    height: 36px;
    text-align: center;
    border: none;
    font-size: 16px;
    background: 0 0;
    outline: 0;
    width: calc(100%);
}

.list-kind-room .room-item .box-content h4 a {
    font-size: 22px;
    color: var(--primary);
}

.list-kind-room .room-item .box-content ul {
    padding-left: 20px;
}

.list-kind-room .room-item .box-content ul li {
    list-style: none;
    position: relative;
    font-size: 15px;
    margin-left: 0;
}

.list-kind-room .room-item .box-content ul li::before {
    position: absolute;
    content: "\f00c";
    color: var(--primary);
    font-size: 14px;
    left: -20px;
    font-family: "fontawesome";
}

.list-kind-room .room-item .box-content ul li:last-child {
    margin-bottom: 0;
}

.list-kind-room .room-item .box-content .quantity-wrapper {
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.list-kind-room .room-item .box-content .select-wrapper .number-control {
    justify-content: right;
}

@media (max-width:1200px) {
    .header .mobile-btn {
        min-width: 100px;
    }
    #menu-mobile .mobile-logo img {
        width: 100px;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 20px;
    }
    #menu-mobile .mobile-logo {
        text-align: center;
    }
    .header.fixed-top {
        background: #fff;
        transition: all ease 0.4s;
        padding: 0;
    }
    .header.fixed-top .language .dropdown button {
        font-size: 14px;
        border: 1px solid var(--primary);
        transition: all .3s;
        color: var(--primary);
    }
}

.mobile {
    display: none;
}

.pc {
    display: block;
}

.home-banner .wraper {
    overflow-y: scroll;
}

@media screen and (max-width: 996px) {
    .home-banner .mobile li {
        text-align: center;
        margin-bottom: 10px;
    }
    .home-banner .mobile li a {
        background: var(--primary);
        color: #fff;
        display: inline-flex;
        font-size: 14px;
        justify-content: center;
        align-items: center;
        height: 35px;
        gap: 5px;
        padding: 15px 20px;
        border-radius: 9999px;
    }
    .home-banner .mobile li i {
        text-shadow: 1px 1px 1px #000
    }
    .home-banner .mobile li a svg path {
        fill: #fff;
    }
    .home-banner .box-title h2 span {
        font-size: 30px;
    }
    .home-banner .box-title {
        padding-top: 15vh;
    }
    .mobile {
        display: block;
    }
    .pc {
        display: none;
    }
    .home-banner .box-title h2 {
        font-size: 32px;
    }
    .list-kind-room .room-item {
        flex-direction: column;
    }
    .list-kind-room .room-item .box-img {
        max-width: 100%;
        aspect-ratio: 16/9;
    }
    .list-kind-room .room-item .box-content {
        width: calc(100%);
        max-height: unset;
    }
    .list-kind-room .room-item .box-content h4 a {
        text-align: center;
    }
    .list-kind-room .room-item .box-content .d-flex {
        flex-direction: column;
        gap: 10px;
    }
    .list-kind-room .room-item .box-content .d-flex .right {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
    }
    .list-kind-room .room-item .box-content .left {
        width: 100%;
    }
    .list-kind-room .room-item .box-content .d-flex .price {
        text-align: left;
    }
    .list-kind-room .room-item .box-content .right .new-price {
        margin-bottom: 0;
    }
    .product_details_main .product_details_container h2 {
        font-size: 20px;
    }
    .home-banner {
        position: relative;
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
    }
    .home-banner .list-tour .box-content .box-btn a {
        margin-top: 40px;
        opacity: 1;
        font-size: 14px;
        background: var(--primary);
        border: 1px solid var(--primary);
        color: #fff !important;
    }
    .header .logo img {
        width: 70px;
    }
    .elementor-shape-bottom {
        position: fixed;
    }
}

.product_details_main .guest-wrapper .select-wrapper .number-control {
    display: flex;
    gap: 10px
}

.product_details_main .guest-wrapper .select-wrapper input {
    max-width: 30px;
    text-align: center
}

.product_details_main .guest-wrapper .select-wrapper span {
    min-width: 34px;
    height: 34px;
    background: #fff;
    border: 1px solid #727272;
    box-sizing: border-box;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #727272;
    transition: all .3s;
    cursor: pointer
}

.product_details_main .guest-wrapper .select-wrapper span:hover {
    background: var(--main-color);
    color: var(--white)
}

.product_details_main .guest-wrapper .select-wrapper span:active {
    transform: scale(.9)
}

.product_details_main .guest-wrapper .select-wrapper span.disabled {
    opacity: .7;
    pointer-events: none
}

.price.has-discount .origin span {
    font-size: 16px;
    font-weight: normal;
    text-decoration-line: line-through;
    color: #727272;
}

.typing-bubble {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 20px;
    padding: 10px 15px;
    max-width: fit-content;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #999;
    border-radius: 50%;
    animation: blink 1.4s infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0% {
        opacity: 0.2;
        transform: translateY(0px);
    }
    20% {
        opacity: 1;
        transform: translateY(-3px);
    }
    40% {
        opacity: 0.2;
        transform: translateY(0px);
    }
}

.text {
    font-size: 14px;
    color: #666;
    margin-left: 10px;
}

.review-box {
    margin-top: 15px;
    padding: 30px;
    border: 1px solid #eaeef3;
    border-radius: 5px;
    color: #1a2b48;
    font-weight: 500;
}

.review-box .review-box-score {
    padding: 30px 0 !important;
    text-align: center;
    border-right: 1px solid #d7dce3;
    padding-right: 20px;
}

.review-box .review-box-score .review-score {
    line-height: 50px;
    font-size: 72px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #5191fa;
}

.review-score-base {
    font-size: 14px;
}

.note_review {
    font-style: italic;
    margin-bottom: 0;
}

.review-sumary .item {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}

.review-box .item .label {
    position: relative;
    display: block;
    padding-left: 0;
    color: #1a2b48;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    width: 30%;
    margin-top: 0 !important;
    margin-right: 3%;
}

.review-box .item .progress {
    position: relative;
    height: 8px;
    width: 100%;
    border-radius: 10px;
    box-shadow: none;
    background: #eee;
    margin-bottom: 0;
    overflow: inherit;
}

.review-title {
    margin-bottom: 10px;
}

.review-box .item .progress .percent {
    position: absolute;
    top: 0;
    left: 0;
    height: 8px;
    background: #3cb22b;
    border-radius: 10px;
}

.review-box .review-sumary .item .number {
    width: 7%;
    font-size: 14px;
    margin-left: 3%;
}

.review-box .vuta-row {
    align-items: center;
}

.review-box {
    margin-bottom: 30px;
}

.review-list .review-item {
    padding-top: 10px;
    padding-bottom: 12px;
    border-top: 1px solid #d9d9d9;
    font-size: 14px;
    display: flex;
    gap: 20px;
}

.review-list .review-item .avatar {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.review-list .review-item .avatar img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.review-list .review-item .list li {
    list-style: none;
    margin-left: 0;
}

.review-list .review-item .list li svg {
    width: 20px !important;
    height: 20px !important;
}

.review-list .review-item .list li i {
    margin-right: 5px;
}

.home-footer {
    text-align: center;
    padding: 50px 0;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
}

.home-footer h2 {
    margin-bottom: 20px;
}

.home-footer i {
    text-shadow: 1px 1px 1px #000;
}

.home-footer li {
    margin-bottom: 10px;
}

.home-footer i svg path {
    fill: #fff;
}

.footer-fixed {
    display: none;
}

.widget-box .form-price-preview .guest-wrapper {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.right-sidebar-bg .check-in .gr-input {
    margin-bottom: 5px;
}

.widget-box {
    padding: 0 0 10px 0;
}

.widget-box .form-price-preview .total {
    margin-top: 10px;
}

.product_details_container {
    overflow: hidden;
}

@media (max-width:996px) {
    .review-box .review-box-score {
        border-right: 0;
    }
    .widget-box .widget-heading {
        margin-bottom: 0;
        padding-bottom: 10px;
        border-bottom: 1px solid #ddd;
    }
    .booking-bottom {
        position: fixed;
        left: 0;
        bottom: 73px;
        width: 100%;
        background: var(--white);
        padding: 10px 15px;
        border-top: 1px solid var(--light-grey-color, #eaeef3);
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 9;
        box-shadow: 0 4px 10px 0 #000;
    }
    .review-box {
        margin-top: 15px;
        padding: 15px;
        border: 1px solid #eaeef3;
        border-radius: 5px;
        color: #1a2b48;
        font-weight: 500;
    }
    .review-box .item .label {
        width: 40%;
    }
    .typing-bubble {
        width: 100%;
        display: flex;
        justify-content: center;
        max-width: 100%;
        margin-bottom: 10px;
    }
    #footer .box-img {
        text-align: center;
    }
    .product_details_service .service-header .meta {
        display: block;
    }
    .modal-dialog .check-in {
        padding-left: 25px;
        padding-right: 25px;
    }
    .modal-dialog .check-in label {
        font-weight: 700;
        margin-bottom: 5px;
        font-size: 14px;
    }
    .overlay-fixed .btn-close-wrapper {
        background: #fff;
        padding: 0;
    }
    .overlay-fixed .btn-close-wrapper .close-btn {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        right: 15px;
        float: unset !important;
        top: 15px;
        background: rgba(0, 0, 0, .5);
        color: #fff;
        padding: 0 !important;
    }
    .home-footer {
        padding: 50px 0 75px;
    }
    #button-contact-vr {
        display: none;
    }
    .back-to-top {
        display: none !important;
    }
    .footer-fixed {
        display: block;
    }
    #footer {
        padding-bottom: 75px;
    }
    .home-fixed ul li {
        width: 30% !important;
    }
    .home-fixed ul li:first-child {
        display: none;
    }
    .modal-dialog .wrapper {
        overflow-y: scroll;
        max-height:550px;
        padding-top: 10px;
    }
    .contact-form .box-btn {
        padding-left: 25px;
        padding-right: 25px;
    }
    .modal-dialog .contact-form-2 {
        border-radius: 0;
        border: 0;
        padding-top: 10px;
        padding-bottom: 0;
        box-shadow: none;
    }
    .modal-dialog .vuta-input {
        font-size: 14px;
    }
}

.slick-track {
    margin-left: 0;
}

.overlay-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 9999;
}

@media screen and (max-width: 575px) {
    .booking-modal .modal-dialog {
        max-width: 100%;
        margin: 0;
        padding: 10px;
    }
}

.contact .contact-box {
    margin-bottom: 40px;
}

.contact .contact-box a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 24px;
}

.contact .contact-box svg {
    height: 40px !important;
    width: 40px !important;
}

.contact .form-contact {
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .05);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact .form-contact textarea {
    min-height: 100px;
}

.contact .form-contact .form-group {
    margin-bottom: 15px;
}

.contact .form-contact .form-group label {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 14px;
}

.contact .form-contact .primary-btn {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .25rem;
    height: 40px;
    transition: all ease 0.4s;
    color: #fff;
    background: var(--primary);
    width: 100%;
}

.contact .form-contact .primary-btn:hover {
    filter: brightness(1.1);
}

.contact-form-2 {
    padding: 30px 25px;
    border: 1px solid #dedede;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .05);
    border-radius: 8px;
}

.widget-box {
    margin-bottom: 20px;
}

.contact-form .gr-input {
    margin-bottom: 15px;
}

.contact-form .gr-input textarea {
    min-height: 100px;
}

.contact-form .box-btn {
    display: flex;
    gap: 10px;
}

.contact-form .box-btn button,
.contact-form .box-btn a {
    display: flex;
    width: calc(50% - 5px);
    align-items: center;
    height: 38px;
    justify-content: center;
    border-radius: .25rem;
}

.contact-form .box-btn button {
    background: var(--primary);
    transition: all ease 0.4s;
    color: #fff;
}

.contact-form .box-btn button:hover,
.contact-form .box-btn a:hover {
    filter: brightness(1.1);
}

.contact-form .box-btn a {
    background: var(--second);
}

.widget-box .widget-heading .price .new span {
    font-size: 30px;
    color: var(--main-color);
}

.footer-fixed {
    position: fixed;
    z-index: 999;
    width: 100%;
    bottom: 0;
    left: 0;
    box-shadow: 0 4px 5px 0 #000;
    padding: 5px;
    background: #fff;
}

.footer-fixed ul {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.footer-fixed ul li {
    width: calc(25% - 10px);
}

.footer-fixed ul li img {
    display: block;
    width: 36px;
    margin: 0 auto;
    margin-bottom: 5px;
    height: 36px;
}

.footer-fixed ul li a {
    text-align: center;
    font-size: 14px;
}

.booking-bottom .price {
    font-size: 14px;
    font-weight: 500;
}

.booking-bottom .price span {
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
}

.feedback .feedback-slider .item {
    padding: 0 25px;
}

.feedback .feedback-slider .item .feedback-item {
    text-align: center;
}

.feedback .feedback-slider .item .feedback-item .box-img {
    height: 60px;
    width: 60px;
    margin: 0 auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}

.feedback {
    padding-top: 20px;
}

.feedback .box-title h2 {
    margin-bottom: 60px;
    text-align: center;
}

.feedback .feedback-slider .item .feedback-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.feedback .feedback-slider .item .feedback-item .ratting {
    margin-bottom: 10px;
}

.feedback .feedback-slider .item .feedback-item .box-img img {
    object-fit: cover;
}


.home-banner {
    background: unset !important;
    height: auto;
}

.home-banner .wraper {
    overflow: unset;
}

.home-body {
    
    background-image: url(https://ninhbinhbest.com/storage/general/diem-den-bai-dinh.jpg);
    background-size: cover;
  background-position: center;
  height: 100%;
  position: relative;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.list-kind-room .room-item .box-content ul li p {
    font-size: 15px !important;
}
@media screen and (max-width: 996px) {
  .list-kind-room .room-item .box-content h4 a {
    text-align: center;
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .product-list.list-style .product-item .box-content .footer {
    flex: unset;
    background: rgba(0, 0, 0, .03);
    border-radius: .5rem;
    padding: 1rem 1rem .5rem;
    padding-top: .5rem;
    width: 100%;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
