* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: var(--font-family) !important;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color)
}

a {
    display: block;
    color: #232323;
    text-decoration: none;
    transition: color .5s
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
    line-height: 1.6
}

input {
    outline: 0;
    border: none
}

@font-face {
    font-family: "Vuta Venus";
    src: url(../webfonts/vsnt-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Vuta Venus";
    src: url(../webfonts/vsnt-Semibold.woff2) format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

:root {
    --white: #fff;
    --black: #000;
    --text-color: #212529;
    --main-color: #f89730;
    --link-color: #5191fa;
    --link-color-title: #1a2b48;
    --link-color-dark: #5191fa;
    --link-color-hover: rgba(248, 151, 48, 0.8);
    --grey-color: #5e6d77;
    --light-grey-color: #eaeef3;
    --orange-color: #fa5636;
    --font-family: "Vuta Venus", sans-serif;
    --sticky-top-spacing: 80px
}

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

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

@media screen and (max-width:575px) {
    .vuta-container {
        padding-left: 12px;
        padding-right: 12px
    }
}

.col-h-padding {
    padding-left: 12px;
    padding-right: 12px
}

@media screen and (max-width:575px) {
    .col-h-padding {
        padding-left: 8px;
        padding-right: 8px
    }
}

.flex {
    display: flex
}

.align-center {
    align-items: center
}

.justify-center {
    justify-content: center
}

.btn-1 {
    font-size: 14px;
    border: none;
    box-shadow: none;
    border-radius: 5px;
    padding: 10px 25px;
    transition: all .3s
}

.btn-1.btn-primary {
    color: var(--white);
    margin-left: auto;
    background: var(--main-color, #5191fa)
}

.btn-1.btn-primary:hover {
    opacity: .9
}

.btn-1.rounded {
    border-radius: 100px!important
}

i.fa-star,
i.fa-star-half-alt {
    color: #ffb21d
}

i.fa-star.disabled {
    color: #d7dbe3
}

.sticky-top {
    position: sticky;
    top: var(--sticky-top-spacing);
    z-index: 3
}

.slick-arrow {
    width: 40px;
    height: 40px;
    background: var(--white)!important;
    border: 1px solid #dedede;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .05);
    opacity: .8;
    transition: all .3s
}

.slick-arrow.slick-disabled {
    opacity: 0;
    pointer-events: none
}

.slick-arrow:hover {
    opacity: 1;
    background: var(--main-color)!important;
    border-color: var(--main-color)
}

.slick-arrow:hover::before {
    color: var(--white)!important;
    transition: color .3s
}

.slick-arrow.slick-prev {
    left: -20px
}

.slick-arrow.slick-prev::before {
    font-family: fontawesome;
    content: "\f104";
    font-size: 20px;
    opacity: 1;
    color: var(--black)
}

.slick-arrow.slick-next {
    right: -20px
}

.slick-arrow.slick-next::before {
    font-family: fontawesome;
    content: "\f105";
    font-size: 20px;
    opacity: 1;
    color: var(--black)
}

@media screen and (max-width:996px) {
    .slick-arrow.slick-prev {
        left: -10px
    }
    .slick-arrow.slick-next {
        right: -10px
    }
}

.slick-arrow-heading .slick-arrow {
    top: -40px
}

.slick-arrow-heading .slick-arrow.slick-prev {
    right: 50px;
    left: auto
}

.slick-arrow-heading .slick-arrow.slick-next {
    right: 0;
    left: auto
}

.slick-dots {
    position: absolute;
    bottom: -30px;
    text-align: center;
    padding: 6px 11px;
    border-radius: 19px
}

.slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    padding: 0;
    transition: all .3s
}

.slick-dots li.slick-active button::before {
    background: var(--main-color);
    border-radius: 5px
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0
}

.slick-dots li button:hover::before {
    background: var(--main-color);
    opacity: .75
}

.slick-dots li button::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #8e8e8e;
    border-radius: 50%;
    box-sizing: border-box;
    opacity: .8;
    transition: all .3s
}

.block_title {
    padding: 0 0 10px
}

.block_title .heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px
}

.block_title .subheading {
    font-size: 16px;
    margin-bottom: 16px
}

@media screen and (max-width:575px) {
    .block_title .heading {
        font-size: 20px
    }
}

.journey-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.journey-item {
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
    width: calc(50% - 10px);
    margin-bottom: 20px;
    height: 253px;
}

@media (max-width: 767px) {
    .journey-wrapper {
        flex-wrap: nowrap;
        overflow-x: scroll;
        gap: 20px
    }
    .journey-item {
        width: 100%;
        min-width: 350px;
    }
}

.journey-item:hover .block_title .heading {
    color: var(--main-color);
}

.journey-item .link-wrapper {
    background-image: url(/themes/travel/assets/images/banner-tour-teambuilding.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px 0 50px 40px;
    transition: all .3s;
    border-radius: 10px;
    position: relative;
    height: 100%;
}

.journey-item .link-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
}

.journey-item .block_title {
    color: var(--white);
    max-width: 80%;
    padding: 0;
    position: relative;
    z-index: 10;
}

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

.journey-item .block_title .heading {
    font-size: 16px;
    transition: color .3s;
    min-height: 52px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media screen and (max-width:575px) {
    .journey-item {
        margin: 0
    }
}

.experience-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden
}

.experience-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: .2
}

.experience-item:hover .box-img img {
    transform: scale(1.1)
}

.experience-item .box-img img {
    transition: transform .5s
}

.experience-item .box-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10
}

.experience-item .block_title {
    color: var(--white);
    text-align: center;
    padding-bottom: 0
}

.experience-item .block_title .heading {
    font-size: 16px;
    margin-bottom: 4px
}

.experience-item .block_title .subheading {
    font-size: 14px;
    margin-bottom: 0
}

.product-item {
    background: var(--white);
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .05);
    padding-bottom: 0;
    position: relative
}

.product-item .featured-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    pointer-events: none
}

.product-item a {
    border-radius: 8px;
    overflow: hidden
}

.product-item svg {
    width: 16px;
    height: 16px
}

.product-item:hover .box-img img {
    transform: scale(1.1)
}

.product-item:hover .box-content .title {
    color: var(--main-color)
}

.product-item .box-img {
    max-height: 200px;
    overflow: hidden
}

.product-item .box-img img {
    transition: transform .5s
}

.product-item .box-content {
    padding: 20px
}

.product-item .box-content .info-gr {
    display: flex;
    align-items: center
}

.product-item .box-content .info-gr i {
    display: flex;
    margin-right: 8px
}

.product-item .box-content .info-gr span {
    font-size: 14px;
    color: var(--grey-color)
}

.product-item .box-content .title {
    font-size: 16px;
    font-weight: 700;
    margin: 8px 0;
    transition: color .3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.product-item .box-content .rating {
    font-size: 14px;
    color: #727272;
    margin-bottom: 8px
}

.product-item .box-content .rating span {
    color: var(--main-color)
}

.product-item .box-content .rating span i {
    margin: 0 4px
}

.product-item .box-content .desc {
    font-size: 14px;
    color: #727272;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: none
}

.product-item .box-content .footer-w-list {
    display: none
}

.product-item .box-content .other-info {
    font-size: 14px;
    color: var(--grey-color)
}

.product-item .box-content .other-info .info-gr.cancel svg {
    width: 18px;
    height: 18px
}

.product-item .box-content .footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #dedede;
    display: flex;
    align-items: flex-end;
    justify-content: space-between
}

.product-item .box-content .footer .price {
    font-size: 16px;
    font-weight: 700
}

.product-item .box-content .footer .price.has-discount span.old {
    text-decoration: line-through;
    font-size: 14px;
    font-weight: normal;
    color: #727272;
}

.product-item .box-content .footer .price.has-discount span.new {
    display: block;
    color: var(--main-color);
}

.product-item .box-content .footer .price span {
    display: block;
    color: var(--main-color);
}

.product-item .box-content .footer .price span.new {
    display: none;
}

.product-list .product-list-w-grid {
    display: block
}

.product-list .product-list-w-list {
    display: none
}

.product-list.list-style .product-list-w-grid {
    display: none
}

.product-list.list-style .product-list-w-list {
    display: block
}

.product-list.list-style .product-item>a {
    display: flex;
    border: 1px solid #dedede
}

@media screen and (max-width:575px) {
    .product-list.list-style .product-item>a {
        flex-direction: column
    }
}

.product-list.list-style .product-item .box-img {
    width: 33.33%;
    max-height: unset;
    aspect-ratio: 3/2;
}

.product-list.list-style .product-item .box-img img {
    height: 100%
}

@media screen and (max-width:575px) {
    .product-list.list-style .product-item .box-img {
        width: 100%
    }
}

.product-list.list-style .product-item .box-content {
    width: 66.67%;
    display: flex;
    /* align-items: flex-end; */
    gap: 20px
}

.product-list.list-style .product-item .box-content .info-gr span {
    color: #212529
}

.product-list.list-style .product-item .box-content .desc {
    display: -webkit-box;
}

.product-list.list-style .product-item .box-content .footer-w-list {
    display: block
}

.product-list.list-style .product-item .box-content .other-info {
    display: flex;
    flex-wrap: wrap;
    color: #212529
}

.product-list.list-style .product-item .box-content .other-info .info-gr {
    font-size: 14px;
    margin-top: 8px;
    margin-right: 16px
}

.product-list.list-style .product-item .box-content .footer-w-list .other-info {
    margin-top: 8px
}

.product-list.list-style .product-item .box-content .footer {
    border: none;
    flex-direction: column;
    flex: 1 0 6.5rem;
    margin: 0;
    padding: 0;
    align-items: flex-end;
    justify-content: flex-end;
}

.product-list.list-style .product-item .box-content .footer .price {
    order: 2;
    font-size: 18px;
    text-align: right;
}

.product-list.list-style .product-item .box-content .footer .other-info .info-gr {
    margin: 0
}

.product-list.list-style .product-item .box-content .footer .other-info .time {
    display: none
}

@media screen and (max-width:575px) {
    .product-list.list-style .product-item .box-content {
        flex-direction: column;
        width: 100%
    }
    .product-list.list-style .product-item .box-content .desc {
        display: none
    }
    .product-list.list-style .product-item .box-content .footer {
        flex: unset;
        background: rgba(0, 0, 0, .03);
        border-radius: .5rem;
        padding: 1rem 1rem .5rem;
        width: 100%
    }
    .product-list.list-style .product-item .box-content .footer .price {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

.favourite-item:hover .box-img img {
    transform: scale(1.1)
}

.favourite-item:hover .box-content .title {
    color: var(--main-color)
}

.favourite-item .box-img {
    margin-bottom: 16px;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1/1;
    width: 185px;
}

.favourite-item .box-img img {
    transition: transform .5s;
    height: 100%;
}

.favourite-item .box-content {
    text-align: center
}

.favourite-item .box-content .title {
    font-size: 16px;
    font-weight: 700;
    transition: color .3s
}

.favourite-item .box-content .desc {
    font-size: 14px;
    color: #727272
}

.whyus-item {
    margin: 0 15px;
    padding: 40px 30px 40px 30px;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .07)
}

.whyus-item .box-img {
    margin-bottom: 20px
}

.whyus-item .box-content .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px
}

.whyus-item .box-content .desc {
    font-size: 16px
}

@media screen and (max-width:575px) {
    .whyus-item {
        text-align: center;
        margin: 0 0 25px
    }
    .whyus-item .box-img {
        display: flex;
        justify-content: center
    }
}

.blog-item.blog-type-3 {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    border-radius: 0.5rem;
    overflow: hidden;
    padding-bottom: 0;
}

.blog-item.blog-type-3 .box-img {
    max-height: 200px;
}

.blog-item.blog-type-3 .title {
    margin: 16px 16px 24px;
}

.blog-item.blog-type-3 .title a {
    color: #232323;
}

.blog-item.blog-type-3 .box-content {
    position: unset;
}

.blog-item.blog-type-3 .box-content .desc,
.blog-item.blog-type-3 .box-content .title {
    display: none;
}

.blog-item.blog-type-3 .meta ul li {
    color: #83929d;
}

.blog-item.blog-type-3 .meta ul li:nth-child(2) {
    border-left: 1px solid #83929d;
}

.blog-item.blog-type-3 .meta .user-link {
    color: #232323;
}

.blog-item:hover .blog-img-wrapper .box-img-wrapper img {
    transform: scale(1.1);
}

.blog-item:hover figure.box-img img {
    transform: scale(1.1);
}

.blog-item .blog-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.blog-item .blog-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.blog-item .blog-img-wrapper .box-img-wrapper img {
    min-height: 360px;
    transition: transform 0.5s;
}

.blog-item .categories-list {
    position: absolute;
    top: 15px;
    left: 20px;
    z-index: 1;
}

.blog-item figure.box-img {
    overflow: hidden;
}

.blog-item figure.box-img img {
    transition: transform 0.5s;
}

.blog-item .box-content {
    position: absolute;
    bottom: 0;
    z-index: 1;
    padding: 20px;
}

.blog-item .title {
    margin: 8px 0 16px;
}

.blog-item .title:hover a {
    color: var(--main-color);
}

.blog-item .title a {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-item .meta ul {
    display: flex;
    align-items: center;
}

.blog-item .meta ul li {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.blog-item .meta ul li:first-child {
    flex: 1;
}

.blog-item .meta ul li:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.7);
    padding-left: 12px;
    margin-left: 12px;
}

.blog-item .meta .user-link {
    font-size: 14px;
    color: var(--white);
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.blog-item .meta .user-link img {
    width: 30px;
    height: 30px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    margin-right: 8px;
}

.blog-list .blog-item {
    display: flex;
    background: var(--white);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.blog-list .blog-item+.blog-item {
    margin-top: 32px;
}

.blog-list .blog-item>.title {
    display: none;
}

.blog-list .blog-item .box-img {
    width: 300px;
    max-height: unset;
}

.blog-list .blog-item .box-img a {
    height: 100%;
}

.blog-list .blog-item .box-img a img {
    height: 100%;
}

.blog-list .blog-item .box-content {
    flex: 1;
    padding-bottom: 32px;
}

.blog-list .blog-item .box-content .title {
    display: block;
}

.blog-list .blog-item .box-content .title {
    margin: 0 0 16px;
}

.blog-list .blog-item .box-content .desc {
    font-size: 14px;
    color: #727272;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-list .blog-item .box-content .meta {
    margin-top: 35px;
}

.blog-list .blog-item .box-content .meta ul li:first-child {
    flex: unset;
}

@media screen and (max-width: 575px) {
    .blog-list .blog-item {
        flex-direction: column;
    }
    .blog-list .blog-item .box-img {
        width: 100%;
    }
}

.blog-tag-item {
    display: inline-block;
    padding: 6px 15px 6px 10px;
    border-radius: 30px;
    margin-right: 10px;
    transition: all .3s
}

.blog-tag-item:hover {
    filter: brightness(1.2)
}

.blog-tag-item.place {
    background: #0026ab
}

.blog-tag-item.eat {
    background: #880735
}

.blog-tag-item.play {
    background: #138798
}

.blog-tag-item a {
    display: block;
    position: relative;
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    padding-left: 16px
}

.blog-tag-item a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--white);
    border-radius: 50%
}

.featured-tag {
    padding: 4px 8px;
    font-size: 12px;
    line-height: 1.5rem;
    color: var(--white);
    border-radius: 8px;
    background-color: #ed0925;
    border: 1px solid #ed0925
}

.viewall-btn {
    border: 1px solid var(--main-color);
    color: var(--main-color);
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    transition: all .3s;
    margin-top: 30px
}

.viewall-btn:hover {
    background-color: var(--main-color);
    color: var(--white)
}

.viewall-btn i {
    margin-left: 10px
}

.blog-eat-slider .slick-list,
.blog-new-slider .slick-list,
.blog-place-slider .slick-list,
.blog-play-slider .slick-list {
    margin-left: -26px
}

.blog-eat-slider .slick-list .item,
.blog-new-slider .slick-list .item,
.blog-place-slider .slick-list .item,
.blog-play-slider .slick-list .item {
    margin-left: 20px;
    margin-bottom: 16px;
    padding: 10px 6px 0
}

@media screen and (max-width:575px) {
    .blog-eat-slider .slick-list,
    .blog-new-slider .slick-list,
    .blog-place-slider .slick-list,
    .blog-play-slider .slick-list {
        margin-left: 0
    }
    .blog-eat-slider .slick-list .item,
    .blog-new-slider .slick-list .item,
    .blog-place-slider .slick-list .item,
    .blog-play-slider .slick-list .item {
        margin-left: 0;
        padding: 10px 0 0
    }
}

.section_blog_eat,
.section_blog_new,
.section_blog_place,
.section_blog_play {
    padding-bottom: 0!important
}

.section_blog_new {
    padding-top: 30px!important
}

.icon-wrapper {
    background-color: rgba(216, 95, 105, .1019607843);
    fill: #d12727;
    color: #d12727;
    padding: 16px;
    border-radius: 50%;
    width: 72px;
    height: 72px
}

.icon-wrapper svg {
    width: 40px;
    height: 40px
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none
}

.hide-scrollbar::-webkit-scrollbar {
    display: none
}

.accordion-filter .accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color .3s;
    font-weight: 700;
    padding: 0;
    cursor: pointer
}

.accordion-filter .accordion-toggle:hover {
    color: var(--main-color);
    background-color: transparent
}

.accordion-filter .accordion-toggle.active i {
    transform: rotate(0)
}

.accordion-filter .accordion-toggle i {
    transform: rotate(180deg);
    transition: transform .3s
}

.accordion-filter .accordion-panel {
    margin-top: 20px;
    transition: all .5s;
    max-height: 300px;
    overflow-y: auto
}

.accordion-filter .accordion-panel.expanded {
    border-top: none
}

.accordion-filter .accordion-panel .gr-checkbox>ul.checkbox-list {
    margin-top: 10px;
    gap: 15px
}

.accordion-filter .accordion-panel .gr-checkbox>ul.checkbox-list>li:not(:first-child) {
    margin-top: 10px
}

.accordion-filter .accordion-panel .gr-checkbox>ul.checkbox-list label {
    font-size: 14px;
    color: #727272;
    font-weight: 400;
    position: relative;
    cursor: pointer;
    line-height: 26px;
    padding-left: 32px
}

.accordion-filter .accordion-panel .gr-checkbox>ul.checkbox-list label .star-list {
    display: flex;
    align-items: center;
    gap: 4px
}

.accordion-filter .accordion-panel .gr-checkbox>ul.checkbox-list label input[type=checkbox] {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 3px;
    border: 1px solid #83929d!important;
    border-radius: 5px;
    width: 20px;
    height: 20px;
    z-index: 1;
    accent-color: var(--main-color);
    color: var(--white)
}

.bread-crumb {
    padding: 20px 0
}

.bread-crumb .breadcrumb {
    padding: 4px 0;
    background: 0 0
}

.bread-crumb .breadcrumb li {
    font-size: 14px
}

.bread-crumb .breadcrumb li.active span {
    color: var(--main-color)
}

.bread-crumb .breadcrumb li:hover a {
    color: var(--main-color)
}

.bread-crumb a {
    transition: color .3s
}

.bread-crumb span {
    font-weight: 400;
    font-size: var(--fz-base)
}

.bread-crumb i {
    font-size: 14px
}

.pagination {
    padding-top: 30px;
    display: inline-block
}

.pagination li {
    display: inline-block;
    margin: 0 .4em
}

.pagination>li>a,
.pagination>li>span {
    width: 40px;
    height: 40px;
    border-radius: 8px !important;
    line-height: 33.6px;
    transition: all .3s;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}

.pagination>li>a i,
.pagination>li>span i {
    font-size: 14px;
    vertical-align: middle
}

.pagination li.active .page-link,
.pagination li:hover a {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--white);
}

.faq-accordion-item {
    border: 1px solid #d5d8dc
}

.faq-accordion-item+.faq-accordion-item {
    border-top: none
}

.faq-accordion-item .accordion-toggle.active {
    background-color: var(--main-color);
    color: var(--white)
}

.faq-accordion-item .accordion-panel.expanded {
    border-top: 1px solid #d5d8dc
}

.faq-accordion-item .accordion-panel p {
    padding: 25px
}

#toc_block .toc-accordion {
    border: 1px solid #9da5ae
}

@media screen and (max-width:575px) {
    #toc_block .toc-accordion {
        overflow: hidden;
        border-radius: 8px
    }
}

#toc_block ol {
    padding: 20px;
    margin-left: 20px
}

#toc_block ol li {
    list-style: decimal;
    margin-bottom: 8px
}

#toc_block ol li:hover a {
    color: var(--main-color)
}

#toc_block ol li:hover::marker {
    color: var(--main-color)
}

#toc_block ol li::marker {
    transition: color .3s
}

#toc_block ol li a {
    transition: color .3s;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden
}

#article_main .article_main_heading .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px
}

#article_main .article_main_heading .meta ul {
    font-size: 14px;
    color: #727272;
    display: flex
}

#article_main .article_main_heading .meta ul li {
    position: relative
}

#article_main .article_main_heading .meta ul li:not(:first-child) {
    padding-left: 16px;
    margin-left: 16px
}

#article_main .article_main_heading .meta ul li:not(:first-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 13px;
    width: 1px;
    background-color: #727272
}

#article_main .article_main_heading .meta a {
    color: #727272
}

#article_main .article_main_inner h1,
#article_main .article_main_inner h2,
#article_main .article_main_inner h3,
#article_main .article_main_inner h4,
#article_main .article_main_inner h5,
#article_main .article_main_inner h6 {
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-family) !important;
}

#article_main .article_main_inner h2 {
    font-size: 24px
}

#article_main .article_main_inner h3 {
    font-size: 20px
}

#article_main .article_main_inner p {
    line-height: 1.5;
    margin-bottom: 16px !important;
    padding: 0 !important;
    font-family: var(--font-family) !important;
}

.article_main .article_main_inner strong {
    font-family: var(--font-family) !important;
}

#article_main .article_main_inner a {
    display: inline-block;
    color: #0d6efd;
    transition: opacity .3s
}

#article_main .article_main_inner a:hover {
    opacity: .8
}

#article_main .article_main_inner ul {
    padding-left: 32px;
    margin-bottom: 16px
}

#article_main .article_main_inner ul li {
    list-style: disc;
    line-height: 1.5;
    margin-bottom: 8px
}

#article_main .article_main_inner figure {
    max-width: 100%
}

#article_main .article_main_inner figure.image,
#article_main .article_main_inner figure.image-wrapper {
    padding: 20px;
    margin: 0 0 24px;
    background-color: var(--main-color)
}

#article_main .article_main_inner figure img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none
}

#article_main .article_main_inner figure figcaption {
    color: var(--white);
    font-size: 14px;
    font-style: italic;
    padding-top: 16px;
    text-align: center
}

.accordion-toggle {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    line-height: 1.5;
    transition: all .3s;
    cursor: pointer
}

.accordion-toggle:hover {
    background-color: var(--main-color);
    color: var(--white)
}

.accordion-toggle:hover svg path {
    fill: var(--white)
}

.accordion-toggle.active i {
    transform: rotate(180deg)
}

.accordion-toggle.active svg path {
    fill: var(--white)
}

.accordion-toggle .accordion-heading {
    padding-right: 20px
}

.accordion-toggle i {
    transition: transform .3s;
    padding: 0 10px
}

.accordion-panel {
    overflow: hidden;
    transition: all .3s
}

.accordion-panel.expanded {
    border-top: 1px solid #9da5ae
}

.left-sidebar-bg {
    background: #f7f8fa;
    border-radius: 8px 0 0 8px;
    padding: 16px;
    height: 100%
}

.left-sidebar-bg .block_title {
    padding: 10px
}

@media screen and (max-width:575px) {
    .left-sidebar-bg {
        border-radius: 8px 8px 0 0
    }
    .left-sidebar-bg .block_title {
        padding: 0
    }
}

.right-content-bg {
    padding: 16px;
    border: 1px solid #e5e5e5
}

.right-content-bg .right-content-inner {
    padding: 10px
}

@media screen and (max-width:575px) {
    .right-content-bg {
        padding: 0;
        border: none
    }
    .right-content-bg .right-content-inner {
        padding: 0
    }
}

.promotion-tour {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    background-color: rgba(248, 151, 48, .2)
}

.promotion-tour .box-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 16px
}

.promotion-tour .box-content .text-wr {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center
}

.promotion-tour .box-content .title {
    font-size: 20px;
    font-weight: 700
}

.promotion-tour .box-content .desc {
    font-size: 16px
}

.promotion-tour .box-content a {
    background-color: var(--main-color);
    color: var(--white);
    text-align: center;
    padding: .5rem 0;
    border-radius: .25rem;
    transition: opacity .3s
}

.promotion-tour .box-content a:hover {
    opacity: .9
}

.comment-item {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid var(--light-grey-color, #eaeef3)
}

.comment-item .comment-heading {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.comment-item .comment-heading .author {
    display: flex;
    align-items: center
}

.comment-item .comment-heading .author .box-info .name {
    font-weight: 400
}

.comment-item .comment-heading .author .box-info .date {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: #727272
}

.comment-item .comment-heading .author .box-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 16px
}

.comment-item .comment-heading .like {
    display: flex;
    align-items: baseline;
    gap: 10px
}

.comment-item .comment-heading .like svg {
    width: 20px;
    height: 20px
}

.comment-item .comment-heading .like span {
    font-size: 14px
}

.comment-item .comment-body {
    margin-top: 18px
}

.comment-item .comment-body .star-list {
    margin-bottom: 16px
}

#lg-components-1 {
    display: none
}

#search_block {
    --border-radius: 70px;
    background: var(--white);
    border: 1px solid #dedede;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .05);
    border-radius: var(--border-radius);
    max-width: 80%;
    margin: 0 auto
}

#search_block .search-inner {
    display: flex;
    align-items: center
}

#search_block .search-list {
    flex: 1;
    display: flex;
    align-items: center
}

#search_block .search-list .search-item {
    width: 50%
}

#search_block .search-list .search-item:first-child {
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius)
}

#search_block .search-btn {
    padding: 0 20px
}

#search_block .search-btn i {
    margin-right: 4px
}

@media screen and (max-width:996px) {
    #search_block {
        border-radius: 8px
    }
    #search_block .search-inner {
        display: unset
    }
    #search_block .search-list {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
    #search_block .search-list .search-item {
        width: 100%;
        border-radius: 8px!important;
        border: 1px solid #dedede
    }
    #search_block .search-btn {
        text-align: center;
        padding: 20px
    }
    #search_block .search-btn button {
        width: 100%;
        border-radius: 8px!important
    }
}

@media screen and (max-width:575px) {
    #search_block {
        max-width: 100%
    }
}

.search-item {
    padding: 0 20px;
    cursor: pointer;
    position: relative;
    transition: all .3s;
    position: relative
}

.search-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: #dedede
}

.search-item.has-dropdown.active,
.search-item.has-dropdown:hover {
    background-color: var(--main-color)
}

.search-item.has-dropdown.active .search-item__label .icon svg circle,
.search-item.has-dropdown.active .search-item__label .icon svg path,
.search-item.has-dropdown:hover .search-item__label .icon svg circle,
.search-item.has-dropdown:hover .search-item__label .icon svg path {
    fill: var(--white)
}

.search-item.has-dropdown.active .search-item__label .content .title,
.search-item.has-dropdown:hover .search-item__label .content .title {
    color: rgba(255, 255, 255, .8)
}

.search-item.has-dropdown.active .search-item__label .content .desc,
.search-item.has-dropdown:hover .search-item__label .content .desc {
    color: var(--white)
}

.search-item.has-dropdown.active .search-item__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
}

.search-item .search-item__label {
    display: flex;
    align-items: center;
    min-height: 82px
}

.search-item .search-item__label .icon {
    margin-right: 16px
}

.search-item .search-item__label .content {
    flex: 1;
}

.search-item .search-item__label .input-wr input {
    width: 100%;
}

.search-item .search-item__label .content .title {
    font-size: 14px;
    color: var(--grey-color, #5e6d77)
}

.search-item .search-item__label .content .title .count-badge {
    position: absolute;
    top: -8px;
    right: 5px;
    width: 20px;
    height: 20px;
    color: var(--white);
    border: 1px solid var(--white);
    background-color: var(--main-color);
    border-radius: 50%;
    font-size: 11px;
    text-align: center;
    display: none
}

.search-item .search-item__label .content .desc {
    font-size: 16px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.search-item .search-item__dropdown {
    background: var(--white);
    border: 1px solid #dedede;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .05);
    border-radius: 10px;
    padding: 20px 15px 20px 10px;
    margin-top: .5rem!important;
    min-width: 360px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all .3s;
    overflow: hidden
}

.search-item .search-item__dropdown .checkbox-list {
    min-height: 100px;
    max-height: 332px;
    width: auto;
    overflow-y: scroll;
    overflow-x: hidden
}

.search-item .search-item__dropdown .checkbox-list li {
    display: flex;
    align-items: center;
    padding: 0;
    justify-content: flex-start
}

.search-item .search-item__dropdown .checkbox-list li.location-heading label {
    border-bottom: 1px solid #dedede;
    padding-bottom: 20px;
    margin-bottom: 13px
}

.search-item .search-item__dropdown .checkbox-list li label {
    cursor: pointer;
    padding: 10px 20px 10px 20px;
    width: 100%;
    font-size: 14px;
    color: var(--grey-color, #5e6d77);
    position: relative
}

.search-item .search-item__dropdown .checkbox-list li label.label-has-desc {
    font-weight: 700
}

.search-item .search-item__dropdown .checkbox-list li label:hover {
    background: #f1f2f3;
    border-radius: 5px
}

.search-item .search-item__dropdown .checkbox-list li label input {
    position: absolute;
    right: 20px;
    width: 18px;
    height: 18px;
    border: 1px solid #dae1e7;
    border-radius: 3px;
    font-size: 14px;
    color: var(--grey-color, #5e6d77);
    accent-color: var(--main-color);
    cursor: pointer;
    pointer-events: none
}

.search-item .search-item__dropdown .checkbox-list li label p {
    text-wrap: wrap;
    padding-right: 15px;
    margin: 5px 0;
    font-weight: 500
}

.search-item button {
    float: right;
    margin-top: 16px
}

@media screen and (max-width:996px) {
    .search-item {
        padding: 10px 16px
    }
    .search-item::after {
        background-color: transparent
    }
    .search-item .search-item__label {
        min-height: unset
    }
    .search-item .search-item__label .content .title {
        display: none
    }
    .search-item .search-item__dropdown {
        min-width: unset;
        width: 100%
    }
}

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

.overlay-fixed.fade:not(.show) {
    opacity: 0;
    pointer-events: none
}

.overlay-fixed.fade.show .modal-dialog {
    pointer-events: auto;
    transform: translateY(-50%)
}

.overlay-fixed .btn-close-wrapper {
    background: #f5f5f5;
    width: 100%;
    padding: 9px 20px;
    font-size: 22px;
    display: block
}

.overlay-fixed .close-btn {
    padding: 10px;
    font-size: 20px;
    color: gray
}

.modal-dialog {
    top: 50%;
    background-color: var(--white);
    margin: 1.75rem auto;
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: var(--radius-6);
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform .3s
}

.menu-mobile-modal.fade.show .modal-dialog {
    transform: translateY(0)
}

.menu-mobile-modal .modal-dialog {
    top: 0;
    max-height: unset;
    max-width: 100%;
    width: 90%;
    height: 100vh;
    margin: 0;
    float: right;
    transform: translateY(0) translateX(50%)
}

.booking-modal.fade.show .modal-dialog {
    transform: translateY(-50%)
}

.booking-modal .modal-dialog {
    top: 50%;
    max-height: unset;
    max-width: unset;
    margin: 0 auto;
    transform: translateY(0);
    border-radius: 8px
}

.booking-modal .modal-dialog .btn-close-wrapper {
    padding-right: 0
}

.booking-modal .modal-dialog .btn-close-wrapper .close-btn {
    float: right;
    padding: 10px 20px
}

@media screen and (max-width:996px) {
    .booking-modal .modal-dialog {
        max-width: 70%
    }
}

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

.filter-modal.fade.show .modal-dialog {
    transform: translateY(-50%)
}

.filter-modal .modal-dialog {
    top: 50%;
    max-height: unset;
    height: 100vh;
    max-width: unset;
    margin: 0 auto;
    transform: translateY(0);
    overflow-y: scroll
}

.filter-modal .modal-dialog .btn-close-wrapper {
    padding-right: 0
}

.filter-modal .modal-dialog .btn-close-wrapper .close-btn {
    float: right;
    padding: 10px 20px
}

@media screen and (max-width:996px) {
    .filter-modal .modal-dialog {
        max-width: 70%
    }
}

@media screen and (max-width:575px) {
    .filter-modal .modal-dialog {
        max-width: 100%
    }
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 100px;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    opacity: .8;
    border-radius: 50%;
    color: var(--white);
    display: none;
    transition: all ease .4s;
    z-index: 999999999
}

.back-to-top:hover {
    opacity: 1
}

.back-to-top.active {
    display: flex
}

#button-contact-vr {
    position: fixed;
    bottom: 140px;
    z-index: 99999;
    right: 0
}

#button-contact-vr .button-contact {
    position: relative;
    margin-top: -15px
}

#button-contact-vr .button-contact .phone-vr {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 90px;
    height: 90px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block
}

.phone-vr-circle-fill {
    width: 65px;
    height: 65px;
    top: 12px;
    left: 12px;
    position: absolute;
    box-shadow: 0 0 0 0 #c31d1d;
    background-color: rgba(230, 8, 8, .7);
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom2 1.3s infinite;
    animation: zoom2 1.3s infinite
}

.phone-vr-img-circle {
    background-color: #e60808;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 25px;
    left: 25px;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phone-vr-circle-fill 1s infinite ease-in-out
}

.phone-vr-img-circle a {
    display: block;
    line-height: 37px
}

.phone-bar a {
    position: fixed;
    bottom: 25px;
    left: 30px;
    z-index: -1;
    color: #fff;
    font-size: 16px;
    padding: 8px 15px 7px 50px;
    border-radius: 100px;
    white-space: nowrap;
    background: #f44336;
    letter-spacing: 1.5px;
    font-weight: 700
}

.phone-vr-img-circle img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%)
}

@-webkit-keyframes phone-vr-circle-fill {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }
    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }
    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes zoom2 {
    0% {
        transform: scale(.9)
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }
    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes zoom2 {
    0% {
        transform: scale(.9)
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }
    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

.phone-bar a:hover {
    opacity: .8;
    color: #fff
}

#mess img {
    border-radius: 50%
}

#mess .phone-vr-circle-fill,
#zalo-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196f3;
    background-color: rgba(33, 150, 243, .7)
}

#mess .phone-vr-img-circle,
#zalo-vr .phone-vr-img-circle {
    background-color: #2196f3
}

#messenger-vr .phone-vr-circle-fill {
    background-color: #d1b4f1;
    box-shadow: 0 0 0 0 #ad81e0;
}

#messenger-vr .phone-vr-img-circle {
    background-color: transparent;
}

#viber-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #714497;
    background-color: rgba(113, 68, 151, .8)
}

#viber-vr .phone-vr-img-circle {
    background-color: #714497
}

#contact-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196f3;
    background-color: rgba(33, 150, 243, .7)
}

#contact-vr .phone-vr-img-circle {
    background-color: #2196f3
}

.section {
    padding: 60px 0
}

@media screen and (max-width:996px) {
    .section {
        padding: 30px 0
    }
}

.section_banner {
    background-image: url(/themes/travel/assets/images/nha-trang-city-3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
    padding: 110px 0 100px 0
}

.section_banner .block_title {
    color: var(--white);
    text-align: center
}

@media screen and (max-width:996px) {
    .section_banner {
        padding: 30px 0
    }
}

.section_blog,
.section_journey,
.section_prevalent {
    background-color: #f7f8fa
}

.section_journey .block_title {
    padding: 0;
}

.section_experience .experience-slider .slick-list {
    margin-left: -40px
}

.section_experience .experience-slider .slick-list .item {
    margin-left: 40px
}

@media screen and (max-width:996px) {
    .section_experience .experience-slider .slick-list {
        margin-left: -23px
    }
    .section_experience .experience-slider .slick-list .item {
        margin-left: 23px
    }
}

@media screen and (max-width:575px) {
    .section_experience .experience-slider .slick-list {
        margin-left: -20px
    }
    .section_experience .experience-slider .slick-list .item {
        margin-left: 20px
    }
}

.section_experience .experience-slider .slick-dots {
    bottom: -50px
}

.section_prevalent .section-hr {
    width: 100%;
    height: 1px;
    background: var(--light-grey-color, #eaeef3);
    margin: 32px 0
}

.section_prevalent .product-slider .slick-list {
    margin-left: -26px
}

.section_prevalent .product-slider .slick-list .item {
    margin-left: 20px;
    margin-bottom: 16px;
    padding: 10px 6px 0
}

@media screen and (max-width:575px) {
    .section_prevalent .product-slider .slick-list {
        margin-left: 0
    }
    .section_prevalent .product-slider .slick-list .item {
        margin-left: 0;
        padding: 0 4px
    }
}

.section_favourite .slick-arrow {
    top: 40%
}

.section_favourite .slick-dots {
    bottom: -50px
}

.section_favourite .favourite-slider .slick-list {
    margin-left: -39px
}

.section_favourite .favourite-slider .slick-list .item {
    margin-left: 39px
}

@media screen and (max-width:575px) {
    .section_favourite .favourite-slider .slick-list {
        margin-left: -24px
    }
    .section_favourite .favourite-slider .slick-list .item {
        margin-left: 24px
    }
}

.section_blog .product-item .box-content {
    min-height: unset
}

.section_blog .blog-slider .slick-list {
    margin-left: -26px
}

.section_blog .blog-slider .slick-list .item {
    margin-left: 20px;
    margin-bottom: 16px;
    padding: 10px 6px 0
}

@media screen and (max-width:575px) {
    .section_blog .blog-slider .slick-list {
        margin-left: 0
    }
    .section_blog .blog-slider .slick-list .item {
        margin-left: 0;
        padding: 0 4px
    }
}

@media screen and (max-width:575px) {
    .section_whyus {
        padding-bottom: 15px!important
    }
}

.section_banner_blog {
    background-image: url(/storage/general/2-ve-dep-thien-nhien-tai-trang-an-ninh-binh-04b44e.jpg);
    background-color: var(--white);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: auto
}

.section_banner_blog .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3)
}

.section_banner_blog .block_title {
    padding: 100px 0;
    color: var(--white);
    position: relative
}

@media screen and (max-width:767px) {
    .section_banner_blog .block_title {
        padding-top: 60px;
        padding: 60px 0
    }
}

.section_blog_cat {
    padding-top: 10px;
}

.section_blog_cat .category-aside {
    background: #f7f8fa;
    border-radius: 8px;
    padding: 30px 20px;
    margin-bottom: 30px
}

.section_blog_cat .category-aside .title {
    font-weight: 700;
    font-size: 18px;
    color: #232323;
    border-bottom: 1px solid #dedede;
    margin-bottom: 20px;
    padding-bottom: 16px;
    width: 100%
}

.section_blog_cat .category-aside ul li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 17px 20px 17px 16px;
    background: var(--white);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .05);
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #d9d9d9
}

.section_blog_cat .category-aside ul li .name {
    padding: 6px 15px 6px 24px;
    border-radius: 8px;
    color: #232323;
    position: relative;
    font-weight: 700
}

.section_blog_cat .category-aside ul li .name::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-size: 8px;
    position: absolute;
    top: 50%;
    left: 9px;
    transform: translate(0, -50%)
}

.section_blog_cat .category-aside ul li .name.eat {
    background: rgba(136, 7, 53, .06);
    color: #880735
}

.section_blog_cat .category-aside ul li .name.play {
    background: rgba(0, 0, 0, .06);
    color: #000
}

.section_blog_cat .category-aside ul li .name.place {
    background: rgba(0, 38, 171, .06);
    color: #0026ab
}

@media screen and (max-width:996px) {
    .section_blog_cat .category-aside ul {
        display: flex;
        gap: 16px
    }
    .section_blog_cat .category-aside ul li {
        width: 33.33%
    }
}

@media screen and (max-width:575px) {
    .section_blog_cat .category-aside ul {
        flex-direction: column
    }
    .section_blog_cat .category-aside ul li {
        width: 100%
    }
}

.section_banner_product {
    background-image: url(/themes/travel/assets/images/tour-du-lich-nha-trang-gia-re.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
    padding: 50px 0
}

.section_banner_product .block_title {
    text-align: center;
    color: var(--white);
    padding: 0
}

.section_banner_product .block_title .heading {
    padding-top: 60px
}

.section_banner_product .block_title .subheading {
    font-size: 13px;
    margin-bottom: 30px;
    font-weight: 300
}

@media screen and (max-width:575px) {
    .section_banner_product {
        padding: 30px 0
    }
    .section_banner_product .block_title .heading {
        padding-top: 0
    }
}

.sidebar-item {
    padding: 30px 20px;
    background: #f7f8fa;
    border-radius: 8px;
    margin-bottom: 30px;
    border: none
}

.section_tours_main {
    padding-top: 10px
}

.section_tours_main .top-wr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 6px
}

.section_tours_main .top-wr .sort-acts .filter-btn {
    cursor: pointer;
    background: var(--white);
    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;
    font-weight: 500;
    font-size: 14px;
    color: #232323;
    padding: 8px 16px
}

.section_tours_main .top-wr .sort-acts>ul {
    display: flex;
    align-items: center;
    gap: 10px
}

.section_tours_main .top-wr .sort-acts>ul>li {
    position: relative
}

.section_tours_main .top-wr .sort-acts>ul>li span {
    cursor: pointer
}

.section_tours_main .top-wr .sort-acts>ul>li span.active svg circle,
.section_tours_main .top-wr .sort-acts>ul>li span.active svg path,
.section_tours_main .top-wr .sort-acts>ul>li span:hover svg circle,
.section_tours_main .top-wr .sort-acts>ul>li span:hover svg path {
    fill: var(--main-color)
}

.section_tours_main .top-wr .sort-acts>ul>li span svg {
    width: 16px;
    height: 16px
}

.section_tours_main .top-wr .sort-acts>ul>li span svg circle,
.section_tours_main .top-wr .sort-acts>ul>li span svg path {
    fill: #727272;
    transition: all .3s
}

.section_tours_main .top-wr .sort-acts .sort-dropdown {
    padding: 20px;
    background: var(--white);
    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;
    margin-top: 8px;
    min-width: 200px;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 100;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all .3s
}

.section_tours_main .top-wr .sort-acts .sort-dropdown.open {
    opacity: 1;
    pointer-events: unset;
    transform: translateY(0)
}

.section_tours_main .top-wr .sort-acts .sort-dropdown ul li {
    display: flex;
    flex-direction: column
}

.section_tours_main .top-wr .sort-acts .sort-dropdown ul li .title {
    font-size: 14px;
    color: #727272;
    margin-top: 10px
}

.section_tours_main .top-wr .sort-acts .sort-dropdown ul li label {
    font-size: 14px;
    padding-left: 26px;
    position: relative;
    cursor: pointer
}

.section_tours_main .top-wr .sort-acts .sort-dropdown ul li input {
    opacity: 0
}

.section_tours_main .top-wr .sort-acts .sort-dropdown ul li input:checked~.checkmark {
    border-color: var(--main-color)
}

.section_tours_main .top-wr .sort-acts .sort-dropdown ul li input:checked~.checkmark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: var(--main-color);
    border-radius: 50%;
    padding: 4px
}

.section_tours_main .top-wr .sort-acts .sort-dropdown ul li .checkmark {
    position: absolute;
    top: 4px;
    left: 2px;
    height: 16px;
    width: 16px;
    background-color: var(--white);
    border-radius: 50%;
    border: 1px solid #a0a9b2
}

.section_tours_main .top-wr .total {
    font-size: 16px;
    font-weight: 700
}

.section_tours_main .top-wr .sort-btn {
    font-size: 14px;
    border: 1px solid #727272;
    color: #727272;
    border-radius: 4px;
    padding: 4px 10px;
    transition: all .3s
}

.section_tours_main .top-wr .sort-btn.active,
.section_tours_main .top-wr .sort-btn:hover {
    background-color: var(--main-color);
    color: var(--white);
    border-color: var(--main-color)
}

.section_tours_main .top-wr .sort-btn i {
    margin-left: 4px
}

@media screen and (max-width:996px) {
    .section_tours_main .top-wr {
        padding: 0;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 20px
    }
    .section_tours_main .top-wr .sort-acts {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%
    }
}

@media screen and (max-width:575px) {
    .section_tours_main .product-list .col-h-padding {
        padding-left: 0;
        padding-right: 0
    }
}

.section_tours_main .product-item {
    margin: 10px 6px 16px
}

.section_evaluate .section-evaluate-inner {
    display: flex
}

.section_evaluate .section-evaluate-inner .box-img {
    width: auto;
    margin-right: 10px
}

.section_tour_detail .left-sidebar-bg {
    max-height: 100vh;
    overflow-y: auto;
    top: 60px
}

.section_blog_main {
    padding-top: 10px;
}

.section_blog_main #article_main .article_main_inner {
    margin-top: 32px
}

.section_blog_main #article_main .article_main_inner p img {
    width: 100%;
    margin: 5px 0;
    border-radius: 8px;
}

.section_blog_main #article_main .article_main_inner #toc_block .toc-accordion {
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden
}

.section_blog_main #article_main .article_main_inner #toc_block .accordion-toggle {
    padding: 10px
}

.section_blog_main #article_main .article_main_inner #toc_block .accordion-toggle:hover {
    background-color: var(--main-color);
    color: var(--white)
}

.section_blog_main #article_main .article_main_inner #toc_block .accordion-toggle.active {
    background-color: var(--main-color);
    color: var(--white)
}

.section_blog_main #article_main .article_main_inner #toc_block ol {
    padding: 15px 20px
}

.section_blog_main #article_main .article_main_inner #toc_block ol li:last-child {
    margin-bottom: 0
}

.section_blog_main #article_main .article_main_inner #toc_block ol li a {
    color: #232323;
    transition: color .3s;
    display: block
}

.section_blog_main #article_main .article_main_inner #toc_block ol li a:hover {
    color: var(--main-color)
}

.product_details_service {
    padding: 10px 0 0;
}

.product_details_service .service-header .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px
}

@media screen and (max-width:575px) {
    .product_details_service .service-header .title {
        font-size: 20px
    }
}

.product_details_service .service-header .meta {
    display: flex;
    align-items: center;
    gap: 30px
}

.product_details_service .service-header .meta .rating {
    display: flex;
    align-items: center;
    gap: 4px
}

.product_details_service .service-header .meta .rating .count {
    font-size: 14px;
    color: #727272
}

.product_details_service .service-header .meta .rating .count span {
    font-weight: 700;
    font-size: 16px;
    margin-right: 4px;
    color: var(--text-color)
}

.product_details_service .service-header .meta .location {
    color: #727272;
    font-size: 14px
}

.product_details_service .service-header .meta .location svg {
    width: 18px;
    height: 18px;
    margin-right: 4px
}

.product_details_service .service-image {
    margin: 32px 0;
    position: relative
}

.product_details_service .service-image .images-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin: auto
}

.product_details_service .service-image .images-grid-container .image-grid-item:first-child {
    grid-row: span 2;
    grid-column: span 1
}

.product_details_service .service-image .images-grid-container .image-grid-item:first-child img {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px
}

.product_details_service .service-image .images-grid-container .image-grid-item:nth-child(3) img {
    border-top-right-radius: 8px
}

.product_details_service .service-image .images-grid-container .image-grid-item:nth-child(5) img {
    border-bottom-right-radius: 8px
}

.product_details_service .service-image .images-grid-container .image-grid-item:nth-child(n+6) {
    display: none
}

.product_details_service .service-image .images-grid-container .image-grid-item a {
    height: 100%
}

.product_details_service .service-image .images-grid-container .image-grid-item img {
    width: 100%;
    height: 100%;
    display: block
}

.product_details_service .service-image .view-all {
    background: rgba(0, 0, 0, .4);
    border: 1px solid rgba(255, 255, 255, .7);
    box-sizing: border-box;
    border-radius: 40px!important;
    color: var(--white);
    font-size: 16px;
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    transition: all .3s
}

.product_details_service .service-image .view-all:hover {
    background-color: var(--main-color)
}

.product_details_service .service-image .view-all svg {
    width: 16px;
    height: 16px;
    margin-right: 4px
}

.product_details_service .service-image .view-all svg path {
    fill: var(--white)
}

@media screen and (max-width:767px) {
    .product_details_service .service-image .images-grid-container {
        grid-template-columns: 1fr 1fr;
    }
    .product_details_service .service-image .images-grid-container .image-grid-item:first-child {
        grid-row: span 1;
        grid-column: span 1
    }
    .product_details_service .service-image .images-grid-container .image-grid-item:nth-child(n+5) {
        display: none
    }
    .product_details_service .service-image .images-grid-container .image-grid-item img {
        border-radius: 8px;
    }
}

.product_details_main {
    padding-top: 10px;
    padding-bottom: 0;
    font-family: var(--font-family) !important;
}


/* .product_details_main .product_details_container .title-heading {
    margin: 40px 0 24px
} */

@media screen and (max-width:575px) {
    .product_details_main .product_details_container .title-heading {
        font-size: 20px
    }
}

.product_details_main .product_details_container h1,
.product_details_main .product_details_container h2,
.product_details_main .product_details_container h3,
.product_details_main .product_details_container h4,
.product_details_main .product_details_container h5,
.product_details_main .product_details_container h6 {
    line-height: 1.5;
    margin-bottom: 8px;
    font-weight: 700;
    font-family: var(--font-family) !important;
}

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

.product_details_main .product_details_container h3 {
    font-size: 20px
}

.product_details_main .product_details_container h4 {
    font-size: 16px
}

.product_details_main .product_details_container h2 {
    font-size: 24px
}

.product_details_main .product_details_container p {
    line-height: 1.5;
    margin-bottom: 16px;
    font-family: var(--font-family) !important;
}

.product_details_main .product_details_container strong {
    font-family: var(--font-family) !important;
}

.product_details_main .product_details_container figure {
    max-width: 100%
}

.product_details_main .product_details_container figure.image-wrapper {
    padding: 20px;
    margin: 0 0 24px;
    background-color: var(--main-color)
}

.product_details_main .product_details_container figure img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none
}

.product_details_main .product_details_container figure figcaption {
    color: var(--white);
    font-size: 14px;
    font-style: italic;
    padding-top: 16px;
    text-align: center
}

.product_details_main .product_details_container ul.highlight-list {
    padding-left: 0
}

.product_details_main .product_details_container ul.highlight-list.exclude li i {
    background: #fad6d6;
    color: #da3838
}

.product_details_main .product_details_container ul.highlight-list li {
    margin-bottom: 16px
}

.product_details_main .product_details_container ul.highlight-list li i {
    background: #cef2e5;
    color: #10ac58;
    border-radius: 50%;
    font-size: 10px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 1;
    padding: 5px;
    margin-right: 10px
}

.product_details_main .product_details_container ul li {
    list-style: disc;
    margin-bottom: 8px !important;
    font-family: var(--font-family) !important;
    margin-left: 10px;
}

.product_details_main .product_details_container .accordion-item .accordion-toggle {
    padding: 0
}

.product_details_main .product_details_container .accordion-item .accordion-toggle:hover {
    background-color: transparent;
    color: var(--text-color)
}

.product_details_main .product_details_container .accordion-item .accordion-toggle:hover i {
    background: var(--main-color);
    border-color: var(--main-color);
    color: var(--white)
}

.product_details_main .product_details_container .accordion-item .accordion-toggle:hover svg path {
    fill: unset
}

.product_details_main .product_details_container .accordion-item .accordion-toggle.active i {
    background: var(--main-color);
    border-color: var(--main-color);
    color: var(--white);
    transform: rotate(-180deg)
}

.product_details_main .product_details_container .accordion-item .accordion-toggle.active svg path {
    fill: unset
}

.product_details_main .product_details_container .accordion-item .accordion-toggle i {
    background: 0 0;
    color: #727272;
    border: 1px solid #727272;
    border-radius: 50%;
    font-size: 10px;
    width: 28px;
    height: 28px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-90deg);
    transition: all .3s
}

.product_details_main .product_details_container .accordion-item .accordion-panel.expanded {
    border: none
}

.product_details_main .product_details_container .accordion-item .accordion-panel .accordion-panel-inner {
    padding: 16px 0
}

.product_details_main .product_details_container .accordion-item .accordion-heading {
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 0
}

.product_details_main .product_details_container .star-list {
    display: flex
}

.product_details_main .product_details_container .star-list li {
    margin-right: 5px
}

.product_details_main .tour-feature {
    margin-left: 10px
}

.product_details_main .tour-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem
}

.product_details_main .tour-feature-item .icon {
    border: 1px solid #dedede;
    box-sizing: border-box;
    border-radius: .5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px
}

.product_details_main .tour-feature-item .icon svg {
    width: 20px;
    height: 20px
}

.product_details_main .tour-feature-item .icon svg path {
    fill: #727272
}

.product_details_main .tour-feature-item .info .name {
    font-size: 16px;
    font-weight: 700
}

.product_details_main .tour-feature-item .info .value {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #727272
}

.product_details_main .tour-schedule .accordion-item {
    background: linear-gradient(90deg, #fff 0, #fff 18px, #dedede 18px, #dedede 20px, #fff 20px);
    padding-bottom: 24px
}

.product_details_main .tour-schedule .accordion-item:first-child {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.product_details_main .tour-schedule .accordion-item:last-child {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    padding-bottom: 0
}

.product_details_main .tour-schedule .accordion-item .accordion-heading span {
    background: var(--text-color);
    color: var(--white);
    border-radius: 50px;
    height: 40px;
    width: 40px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 5px;
    text-align: center;
    margin-right: 16px
}

.product_details_main .tour-schedule .accordion-item .accordion-panel .accordion-panel-inner {
    margin-left: 40px
}

.product_details_main figure.table {
    border: 1px solid #dedede;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .05);
    border-radius: .5rem;
    overflow: hidden;
    margin: 1rem 0 1.5rem;
    font-family: var(--font-family) !important;
}

.product_details_main figure.table .table {
    margin-bottom: 0
}

.product_details_main .table table {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    font-family: var(--font-family) !important;
}

.product_details_main figure.table table tr {
    border: 1px solid #dedede
}

@media screen and (max-width:575px) {
    .product_details_main figure.table table tr {
        margin-bottom: 0;
        border: none
    }
    .product_details_main figure.table table tr+tr {
        border-top: 1px solid #dedede
    }
}

.product_details_main figure.table table th {
    text-transform: none;
    letter-spacing: normal;
    font-size: 16px;
    font-weight: 700
}


/* .product_details_main figure.table table td,
.product_details_main figure.table table th {
    border: none
} */

.product_details_main figure.table table thead tr th {
    background-color: #fcfcfc;
    padding: 10px 20px
}

.product_details_main figure.table table tbody tr td,
.product_details_main figure.table table tbody tr th {
    padding: 10px 20px;
    font-size: 16px !important;
}

.product_details_main .tour-inexclude ul.highlight-list li {
    display: flex;
    align-items: center
}

.product_details_main .tour-faq .accordion-item {
    border: 1px solid #dedede;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 16px 10px;
    margin-bottom: 16px
}

.product_details_main .tour-faq .accordion-item .accordion-heading svg {
    width: 30px;
    height: 30px;
    margin-right: 10px
}

.product_details_main .tour-feedback .rating-box {
    background: #fcfcfc;
    border: 1px solid #dedede;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 24px 16px;
    margin: 0
}

.product_details_main .tour-feedback .rating-inner {
    display: flex
}

@media screen and (max-width:575px) {
    .product_details_main .tour-feedback .rating-inner {
        flex-direction: column;
        gap: 20px
    }
}

.product_details_main .tour-feedback .star-evaluate {
    width: 33.3%
}

.product_details_main .tour-feedback .star-evaluate .star-point {
    display: flex;
    align-items: center
}

.product_details_main .tour-feedback .star-evaluate .star-point span {
    font-size: 24px;
    margin-right: 8px;
    font-weight: 700
}

.product_details_main .tour-feedback .star-quality {
    flex: 1
}

.product_details_main .tour-feedback .star-quality .quality-list li {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 14px
}

.product_details_main .tour-feedback .star-quality .quality-list li .title {
    min-width: 100px
}

.product_details_main .tour-feedback .star-quality .quality-list li .quantity {
    padding: 0 16px
}

.product_details_main .tour-feedback .star-quality .quality-list .progress-bar-wrapper {
    flex: 1;
    width: 100%;
    height: 8px;
    background-color: #eee;
    border-radius: 20px;
    position: relative
}

.product_details_main .tour-feedback .star-quality .quality-list .progress-bar-wrapper .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--main-color);
    border-radius: 20px
}

.product_details_main .tour-feedback .feedback-box .summary {
    font-size: 16px;
    font-weight: 700;
    margin-top: 32px
}

.product_details_main .tour-feedback .feedback-box .review-list {
    margin-top: 30px
}

.product_details_main .right-sidebar-bg {
    top: var(--sticky-top-spacing)
}

.product_details_main .right-sidebar-bg ul li {
    list-style: none;
}

.product_details_main .right-sidebar-bg .whyus-box {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 30px;
    background: var(--white);
    border: 1px solid #d7dce3;
    margin-top: 24px
}

.product_details_main .right-sidebar-bg .whyus-box h4 {
    font-weight: 700
}

.product_details_main .right-sidebar-bg .whyus-box .whyus-list li {
    margin-bottom: 16px
}

.widget-box {
    padding: 0 0 30px 0;
    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 .widget-heading {
    font-size: 14px;
    color: #727272;
    margin-bottom: 25px;
    width: 100%;
    padding: 30px 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.widget-box .widget-heading .price p {
    margin-bottom: 0;
}

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

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

.widget-box .widget-heading .price .origin span,
.widget-box .widget-heading .price .new span {
    font-size: 20px;
    color: #232323;
    font-weight: 700;
    margin-left: 8px;
}

.widget-box .widget-heading .rating {
    display: flex;
    align-items: center
}

.widget-box .widget-heading .rating .count span {
    font-weight: 700;
    margin: 0 2px
}

.widget-box .tab-list {
    margin-bottom: 20px;
    padding: 0 24px;
    display: flex;
    gap: 10px
}

.widget-box .tab-list li {
    width: 100%
}

.widget-box .tab-list li button {
    width: 100%;
    border-radius: 50px;
    padding: 15px 0;
    background: #f7f8fa;
    color: #232323;
    display: inline-block;
    transition: all .3s
}

.widget-box .tab-list li button.active {
    background-color: var(--main-color);
    color: var(--white)
}

.widget-box .tab-list li button:hover {
    background-color: var(--main-color);
    color: var(--white)
}

.widget-box .tab-pane {
    opacity: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: all .3s
}

.widget-box .tab-pane.active {
    opacity: 1;
    height: auto;
    pointer-events: unset
}

.widget-box .form-price-preview {
    padding-left: 24px;
    padding-right: 24px
}

.widget-box .form-price-preview .form-guest-wrapper {
    border: 1px solid #dedede;
    padding: 0;
    border-radius: 8px
}

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

.widget-box .form-price-preview .guest-wrapper+.guest-wrapper {
    border-top: 1px solid #dedede
}

.widget-box .form-price-preview .guest-wrapper .check-in-wrapper {
    flex: 1
}

.widget-box .form-price-preview .guest-wrapper .select-wrapper .number-control {
    display: flex;
    gap: 10px
}

.widget-box .form-price-preview .guest-wrapper .select-wrapper input {
    max-width: 30px;
    text-align: center
}

.widget-box .form-price-preview .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
}

.widget-box .form-price-preview .guest-wrapper .select-wrapper span:hover {
    background: var(--main-color);
    color: var(--white)
}

.widget-box .form-price-preview .guest-wrapper .select-wrapper span:active {
    transform: scale(.9)
}

.widget-box .form-price-preview .guest-wrapper .select-wrapper span.disabled {
    opacity: .7;
    pointer-events: none
}

.widget-box .form-price-preview .total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px
}

.widget-box .form-price-preview .total h5 {
    font-size: 20px;
    font-weight: 700
}

.widget-box .form-price-preview .submit-wrapper {
    margin-top: 25px
}

.widget-box .form-price-preview .submit-wrapper .btn-submit {
    width: 100%;
    font-size: 16px;
    text-align: center;
}

.widget-box .form-advise {
    padding: 0 24px
}

.widget-box .form-advise form {
    padding: 0 8px
}

.widget-box .form-advise .input-gr {
    margin-bottom: 16px
}

.widget-box .form-advise .input-gr label {
    display: block
}

.widget-box .form-advise .input-gr input,
.widget-box .form-advise .input-gr textarea {
    border: 1px solid #dedede;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 10px 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #83929d;
    width: 100%;
    outline: 0
}

.widget-box .form-advise button {
    margin-left: unset;
    width: 100%;
    border-radius: 50px;
    font-size: 16px
}

.booking-bottom {
    position: fixed;
    left: 0;
    bottom: 0;
    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
}

.booking-bottom .price {
    font-size: 18px;
    font-weight: 700
}

.booking-bottom .rating {
    display: flex;
    align-items: baseline
}

.booking-bottom .rating .text {
    font-size: 14px;
    color: #727272
}

.booking-bottom .rating .text span {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 700;
    margin: 0 2px
}

.header-main {
    padding: 0 30px;
    border-bottom: 1px solid var(--light-grey-color, #eaeef3);
    background-color: var(--white)
}

@media screen and (max-width:575px) {
    .header-main {
        padding: 15px 10px
    }
}

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

.header-inner .header-nav {
    position: relative
}

.header-inner .header-nav .menu-list {
    display: flex;
    align-items: center;
    gap: 40px
}

@media (max-width:1400px) {
    .header-inner .header-nav .menu-list {
        gap: 20px;
    }
}

.header-inner .header-nav .menu-list .menu-item.dropdown>a {
    position: relative;
    padding-right: 20px;
    transition: all ease 0.4s;
}

.header-inner .header-nav .menu-list .menu-item.dropdown>a::before {
    position: absolute;
    right: 0;
    top: 18px;
    transition: all ease 0.4s;
    font-family: fontawesome;
    content: "\f107";
}

.header-inner .header-nav .menu-list .menu-item.dropdown:hover a::before {
    color: var(--main-color);
    transform: rotate(180deg)
}

.header-inner .header-nav .menu-list .menu-item.dropdown i {
    display: inline-block
}

.header-inner .header-nav .menu-list .menu-item.active>a {
    color: var(--main-color)
}

.header-inner .header-nav .menu-list .menu-item:hover>a {
    color: var(--main-color)
}

.header-inner .header-nav .menu-list .menu-item:hover>a i {
    transform: rotate(180deg)
}

.header-inner .header-nav .menu-list .menu-item:hover .dropdown-box {
    opacity: 1;
    transform: translateY(0);
    pointer-events: unset
}

.header-inner .header-nav .menu-list .menu-item>a {
    display: flex;
    align-items: center;
    height: 65px;
    font-weight: 700
}

.header-inner .header-nav .menu-list .menu-item>a i {
    display: none;
    margin-left: 4px;
    transition: transform .3s
}

.header-inner .header-nav .dropdown-box {
    position: absolute;
    top: 100%;
    left: 0;
    padding-left: 0;
    margin-bottom: 0;
    min-width: 230px;
    background: var(--white);
    z-index: 999;
    border: 1px solid #dedede;
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .05);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all .2s ease-in-out;
    pointer-events: none
}

.header-inner .header-nav .dropdown-box .submenu-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap
}

.header-inner .header-nav .dropdown-box .submenu-list a {
    padding: 8px 15px;
    display: flex;
}

.header-inner .header-nav .dropdown-box .submenu-list .submenu-item {}

.header-inner .header-nav .dropdown-box .submenu-list .submenu-item ul {
    position: absolute;
    right: -100%;
    top: 0;
    min-width: 230px;
    background: var(--white);
    z-index: 999;
    border: 1px solid #dedede;
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .05);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    visibility: hidden;
}

.header-inner .header-nav .dropdown-box .submenu-list .submenu-item ul li a {
    padding: 8px 15px;
    display: flex;
}

.header-inner .header-nav .dropdown-box .submenu-item:hover>a {
    color: var(--main-color)
}

.header-inner .header-nav .dropdown-box .submenu-item:hover ul {
    opacity: 1;
    visibility: visible;
}

.header-inner .header-nav .dropdown-box .submenu-item li:hover>a {
    color: var(--main-color)
}

.header-inner .header-nav .dropdown-box .submenu-item ul>li>a {
    padding: 5px 0
}

.header-inner .header-nav .dropdown-box .submenu-item>a {
    position: relative;
}

.header-inner .header-nav .dropdown-box .has-sub>a::before {
    position: absolute;
    content: "\f054";
    font-family: fontawesome;
    right: 10px;
}

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

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

.header-inner .language .dropdown button:hover,
.header-inner .language .dropdown button.show {
    background-color: var(--main-color);
    color: var(--white);
}

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

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

.header-inner .language .dropdown .dropdown-menu li a:hover {
    color: var(--main-color);
}

@media screen and (max-width:575px) {
    .header-inner .header-logo img {
        max-width: 120px
    }
}

.menu-mobile .mobile-nav {
    padding: 20px 10px
}

.menu-mobile .menu-list>li {
    border: 1px solid #d9d9d9;
    padding-left: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .07);
    margin-bottom: 16px
}

.menu-mobile .menu-list>li.dropdown>a {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.menu-mobile .menu-list>li.dropdown>a i {
    display: inline-flex;
    transform: rotate(-90deg)
}

.menu-mobile .menu-list>li.active {
    padding-bottom: 16px
}

.menu-mobile .menu-list>li.active>a {
    color: var(--main-color)
}

.menu-mobile .menu-list>li.active>a i {
    transform: rotate(0)
}

.menu-mobile .menu-list>li.active .dropdown-box {
    padding-bottom: 16px
}

.menu-mobile .menu-list>li.active .dropdown-box>ul {
    opacity: 1;
    transform: translateX(0)
}

.menu-mobile .menu-list>li>a {
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    font-weight: 700;
    transition: all .3s
}

.menu-mobile .menu-list>li>a i {
    width: 50px;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform .3s
}

.menu-mobile .menu-list>li .dropdown-box {
    padding: 0 16px;
    overflow: hidden;
    transition: all .3s
}

.menu-mobile .menu-list>li .dropdown-box>ul {
    min-height: auto;
    max-height: 450px;
    overflow-y: scroll;
    opacity: 0;
    transform: translateX(-10%);
    transition: all .3s
}

.menu-mobile .menu-list>li .dropdown-box>ul>li+li {
    margin-top: 10px
}

.menu-mobile .menu-list>li .dropdown-box>ul>li ul {
    padding-left: 12px
}

.menu-mobile .menu-list>li .dropdown-box>ul>li ul li {
    font-size: 16px
}

@media (max-width:996px) {
    .menu-mobile .menu-list>li .dropdown-box .submenu-list .submenu-item>a {
        font-weight: 500;
    }
    .menu-mobile .menu-list>li .dropdown-box .submenu-list .submenu-item>ul li {
        margin-bottom: 10px;
        list-style: disc;
    }
    .menu-mobile .menu-list>li .dropdown-box .submenu-list .submenu-item>ul {
        padding-top: 10px;
        padding-left: 15px;
    }
}

.section_mail {
    background-color: transparent;
    background-image: linear-gradient(180deg, #fff 50%, #f7f8fa 50%);
    padding-top: 30px
}

.section_mail .form-register {
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid #dedede;
    box-shadow: 0 6px 9px 0 rgba(0, 0, 0, .07);
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
    margin: 10px;
    padding: 10px
}

@media screen and (max-width:575px) {
    .section_mail .form-register {
        margin: 0
    }
}

.section_mail .form-register .form-register-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media screen and (max-width:996px) {
    .section_mail .form-register .form-register-inner {
        flex-direction: column;
        align-items: unset
    }
}

.section_mail .form-register .box-content {
    margin: 0;
    padding: 30px 20px 30px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center
}

@media screen and (max-width:575px) {
    .section_mail .form-register .box-content {
        flex-direction: column
    }
}

.section_mail .form-register .mail-register-icon {
    background-color: rgba(103, 181, 194, .1019607843);
    fill: #d12727;
    color: #d12727;
    border-radius: 50%;
    padding: 15px;
    width: 70px;
    height: 70px;
    margin-right: 20px
}

.section_mail .form-register .mail-register-icon svg {
    width: 40px;
    height: 40px
}

.section_mail .form-register .mail-register-text {
    color: #4a5568
}

@media screen and (max-width:575px) {
    .section_mail .form-register .mail-register-text {
        text-align: center
    }
}

.section_mail .form-register .mail-register-text .title {
    font-size: 16px;
    font-weight: 700
}

.section_mail #mail-register-form .form-gr {
    padding: 30px 20px 30px 0
}

@media screen and (max-width:996px) {
    .section_mail #mail-register-form .form-gr {
        padding: 0 20px 20px
    }
}

.section_mail #mail-register-form .input-wr {
    width: 500px;
    height: 60px;
    border: 1px solid #dedede;
    border-radius: 80px;
    font-size: .875rem;
    color: #83929d;
    padding: 0 30px;
    position: relative
}

.section_mail #mail-register-form .input-wr input {
    width: 100%;
    height: 100%
}

@media screen and (max-width:996px) {
    .section_mail #mail-register-form .input-wr {
        width: 100%
    }
}

.section_mail #mail-register-form .btn-submit {
    background: var(--main-color);
    border-radius: 50px;
    font-size: .875rem;
    line-height: 15px;
    color: #fff;
    padding: 15px 20px;
    position: absolute;
    top: 6px;
    right: 6px;
    transition: all .3s
}

.section_mail #mail-register-form .btn-submit:hover {
    opacity: .9
}

#footer {
    background-color: #f7f8fa
}

#footer .footer-col-item {
    padding: 10px
}

@media screen and (max-width:575px) {
    #footer .footer-col-item {
        padding: 10px 0
    }
}

#footer .footer-col-item h3,
#footer .footer-col-item .title {
    font-size: 16px;
    font-weight: 700;
    color: #4a5568
}

#footer .footer-col-item ul {
    padding-top: 20px
}

#footer .footer-col-item ul li {
    padding: 5px
}

#footer .footer-col-item ul li:hover a {
    color: var(--main-color)
}

#footer .footer-col-item ul li a {
    transition: color .3s
}

#footer figure.box-img img {
    max-width: 196px
}

#footer .info-gr {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 5px
}

#footer .info-gr span {
    display: block
}

#footer .social-list {
    display: flex;
    gap: 10px
}

#footer .social-list .social-item {
    padding: 0;
    border-radius: 6px;
    transition: opacity .3s
}

#footer .social-list .social-item:hover {
    opacity: .9
}

#footer .social-list .social-item.facebook {
    background-color: #3b5998
}

#footer .social-list .social-item.twitter {
    background-color: #1da1f2
}

#footer .social-list .social-item.instagram {
    background-color: #262626
}

#footer .social-list .social-item.youtube {
    background-color: #cd201f
}

#footer .social-list .social-item a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

#footer .social-list .social-item svg {
    width: 20px;
    height: 20px;
    fill: var(--white)
}

#footer .divider {
    border-top: 1px solid #dedede
}

#footer .footer-copyright {
    font-size: 14px;
    text-align: center;
    padding: 5px 0
}


/* UPDATE CSS */

article figure {
    padding: 0;
    margin: 0;
    background: none;
}