﻿/*--------------------------------------------------------------
# GOOGLE FONTS 
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# ROOT 
--------------------------------------------------------------*/
:root {
    --ht-font-default: "Albert Sans", sans-serif;
    --bs-primary-dark: #1565C0;
    --bs-primary-dark-rgb: 21, 101, 192;
    --bs-primary-darker: #1a2b49;
    --bs-primary-darker-rgb: 26, 43, 73;
    --bs-secondary-dark: #707275;
    --bs-lighter: #f2f2f2;
    --bs-primary-light: #86b7fe;
    --bs-primary-lighter: #e6f4fd;
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# SCROLL BAR 
--------------------------------------------------------------*/
*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background-color: var(--bs-lighter);
}

*::-webkit-scrollbar-thumb {
    border-radius: 100px;
    border: 2px solid transparent;
    background-clip: content-box;
    background-color: var(--bs-secondary);
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# GENERAL
--------------------------------------------------------------*/
body {
    font-family: var(--ht-font-default);
    color: var(--bs-body-color);
    font-size: var(--ht-body-font-size);
}

a {
    color: var(--bs-primary);
    text-decoration: none;
    cursor:pointer;
}

    a:hover, a:focus {
        color: var(--bs-secondary);
    }

    a.link-dark {
        color: var(--bs-dark);
    }

        a.link-dark:hover {
            color: var(--bs-secondary);
        }

b, strong {
    font-weight: 600;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--bs-dark);
    font-weight: 600;
    line-height: 1.35;
}

figure {
    margin: 0;
    overflow: hidden;
}

    figure img {
        max-width: 100%;
    }

    figure .img-fluid {
        max-width: 100%;
        height: auto;
        width: 100%;
    }

.ti {
    vertical-align: -0.125rem;
    font-size: 110%;
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# COLORS
--------------------------------------------------------------*/
/* Text color */
.text-primary-dark {
    color: var(--bs-primary-dark) !important;
}

.text-primary-darker {
    color: var(--bs-primary-darker) !important;
}

/* Background color */
.bg-primary-darker {
    background: var(--bs-primary-darker) !important;
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# PRELOADER
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
    opacity: 0.9;
}

    #preloader:before {
        content: "";
        position: absolute;
        background-color: var(--bs-primary);
        width: 40px;
        height: 40px;
        border-radius: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
        animation: sk-scaleout 1.0s infinite ease-in-out;
    }

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# SCROLL TOP
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 20px;
    bottom: 60px;
    z-index: 99999;
    background: rgba(var(--bs-primary-rgb),0.75);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.15rem;
}

    .scroll-top:hover {
        background: var(--bs-primary-lighter);
        color: var(--bs-primary);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# PAGING
--------------------------------------------------------------*/
@media (max-width: 575.98px) {
    .pagination:not(.page-load-more):not(.page-next-back) .page-item:not(.active):not(.next):not(.first):not(.last):not(.prev) {
        display: none;
    }
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# STICKY
--------------------------------------------------------------*/
.sticky-top-120 {
    top: 120px !important;
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# CONTROLS
--------------------------------------------------------------*/
/* Icon Button */
.btn-icon {
    width: 2.375rem;
    height: 2.375rem;
    text-align: center;
    padding-left: 0.375rem;
    padding-right: 0.375rem;
}

/* Control with icon */
.control-icon {
    position: relative;
}

    .control-icon > .form-control,
    .control-icon > .form-select,
    .control-icon button.form-select {
        padding-left: 2.35rem;
    }

        .control-icon > .form-control.form-control-lg,
        .control-icon > .form-select.form-select-lg,
        .control-icon button.form-select.form-select-lg {
            padding-left: 2.75rem;
        }

    .control-icon > .ti,
    .control-icon > i {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 1rem;
        color: var(--ht-color-secondary);
        z-index: 1;
    }

    .control-icon.control-icon-lg > .ti,
    .control-icon.control-icon-lg > i {
        left: 0.7rem;
        font-size: 130%;
    }

    .control-icon.control-icon-sm > .ti,
    .control-icon.control-icon-sm > i {
        left: 1rem;
        font-size: 120%;
    }

/* Placeholder */
.placeholder-dark::-webkit-input-placeholder {
    color: var(--bs-dark) !important;
}

/* Dropdown guest */
.dropdown.dropdown-guest .dropdown-menu {
    width: 100%;
}
/* Video play button */
.video-play-button {
    position: relative;
    box-sizing: content-box;
    display: inline-flex;
    border-radius: 50%;
    padding-left: 5px;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
}

    .video-play-button:before,
    .video-play-button:after {
        content: "";
        position: absolute;
        z-index: 0;
        left: 50%;
        top: 50%;
        display: block;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        transition: all 0.3s ease-in-out;
        background: var(--bs-primary);
        transform: translateX(-50%) translateY(-50%);
    }

    .video-play-button:before {
        animation: pulse-border 1500ms ease-out infinite;
    }

    .video-play-button:after {
        transition: all 200ms;
    }

    .video-play-button:hover:before {
        background: var(--bs-primary-darker);
    }

    .video-play-button:hover:after {
        background: var(--bs-primary-darker);
    }

    .video-play-button img {
        position: relative;
        z-index: 3;
        max-width: 100%;
        width: auto;
        height: auto;
    }

    .video-play-button span {
        display: block;
        position: relative;
        z-index: 3;
        width: 0;
        height: 0;
        border-left: 16px solid #fff;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# IMAGE
--------------------------------------------------------------*/
/* Image box */
.image-box {
    overflow: hidden;
    position: relative;
}

    .image-box figure:after {
        background: linear-gradient(180deg,rgba(26,43,73,0),rgba(26,43,73,.55) 46.42%,rgba(26,43,73,1));
        position: absolute;
        content: "";
        left: 0;
        right: 0;
        bottom: 0;
        height: 50%;
        z-index: 0;
    }

    .image-box figure figcaption {
        position: absolute;
        color: #fff;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        z-index: 1;
        font-size: 0.95rem;
        font-weight: 600;
        transition: 0.3s ease-in-out;
    }

    .image-box.image-box-title-lg figure figcaption {
        font-size: 1.15rem;
        font-weight: 600;
    }

    .image-box figure img {
        transition: 0.3s ease-in-out;
    }

@media (hover: hover) {

    .image-box:hover figure img {
        transform: scale(1.1);
    }
}

.image-box:hover figure figcaption {
    bottom: 1.75rem;
}

.image-box.image-box-title-lg figure figcaption {
    bottom: 1.5rem;
}

.image-box.image-box-title-lg:hover figure figcaption {
    bottom: 2.5rem;
}

.image-box.see-all figure:after {
    background: rgba(var(--bs-primary-darker-rgb),.8);
    height: 100%;
    transition: 0.3s ease-in-out;
}

.image-box.see-all:hover figure:after {
    background: rgba(var(--bs-primary-darker-rgb),.9);
}

.image-box.see-all figure figcaption {
    bottom: unset;
    transform: translateY(-50%);
    top: 50%;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.image-box.see-all:hover figure figcaption {
    color: var(--bs-primary);
}

/* Overlay Image box */
.overlay-image-box {
    display: block;
    overflow: hidden;
    position: relative;
    height: 209px;
}

    .overlay-image-box .image {
        display: block;
        height: 100%;
        transition: all 0.3s ease-in-out;
    }

    .overlay-image-box .name,
    .overlay-image-box .tour {
        color: #fff;
        white-space: nowrap;
        position: absolute;
        left: 0;
        right: 0;
        margin-bottom: 0;
        z-index: 1;
    }

    .overlay-image-box .name {
        bottom: 1.75rem;
        transition: all 0.3s ease-in-out;
    }

    .overlay-image-box .tour {
        bottom: -1.25rem;
        transition: all 0.3s ease-in-out;
        font-size: 0.9rem;
    }

    .overlay-image-box:after {
        background: linear-gradient(180deg,rgba(26,43,73,0),rgba(26,43,73,.50) 50%,rgba(26,43,73,1));
        position: absolute;
        content: "";
        left: 0;
        right: 0;
        bottom: 0;
        height: 50%;
        z-index: 0;
    }

@media (hover: hover) {
    .overlay-image-box:hover .image {
        transform: scale(1.1);
    }
}

.overlay-image-box:hover .name {
    bottom: 3.25rem;
}

.overlay-image-box:hover .tour {
    bottom: 1.55rem;
}

.overlay-image-box.see-all:after {
    background: rgba(26,43,73,.8);
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.overlay-image-box.see-all:hover:after {
    background: rgba(26,43,73,1);
}

.overlay-image-box.see-all .name {
    bottom: unset;
    transform: translateY(-50%);
    top: 50%;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.overlay-image-box.see-all:hover .name {
    color: var(--bs-primary);
}

@media (max-width:1399.98px) {
    .overlay-image-box {
        height: 192px;
    }
}

@media (max-width:1199.98px) {
    .overlay-image-box {
        height: 229px;
    }
}

@media (max-width:991.98px) {
    .overlay-image-box {
        height: 180px;
    }
}

@media (max-width:768.98px) {
    .overlay-image-box {
        height: 160px;
    }
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# BACKGROUND
--------------------------------------------------------------*/

/* Background Transparent */
.bg-lighter {
    background-color: var(--bs-lighter) !important;
}

.bg-primary-lighter {
    background-color: var(--bs-primary-lighter) !important;
}

.bg-primary-dark {
    background-color: var(--bs-primary-dark) !important;
}

/* Background Image */
.bg-image-wrapper {
    background: no-repeat center center;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.bg-image-wrapper {
    background-attachment: fixed !important;
}

    .bg-image-wrapper.bg-image-auto {
        background-size: auto;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll !important;
    }

    .bg-image-wrapper.bg-image-full {
        background-size: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll !important;
    }

    .bg-image-wrapper.bg-image-cover {
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll !important;
    }

    .bg-image-wrapper.bg-image-overlay:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        background-color: rgba(26, 43, 73, 0.5);
    }

    .bg-image-wrapper.rounded.bg-image-overlay:before {
        border-radius: var(--bs-border-radius-lg);
    }

    .bg-image-wrapper.bg-image-overlay-300:before {
        background: rgba(26, 43, 73, 0.3);
    }

    .bg-image-wrapper.bg-image-overlay-400:before {
        background: rgba(26, 43, 73, 0.4);
    }

    .bg-image-wrapper.bg-image-overlay-600:before {
        background: rgba(26, 43, 73, 0.6);
    }

    .bg-image-wrapper.bg-image-overlay-700:before {
        background: rgba(26, 43, 73, 0.7);
    }

    .bg-image-wrapper.bg-image-overlay-800:before {
        background: rgba(26, 43, 73, 0.8);
    }

    .bg-image-wrapper.bg-image-overlay-900:before {
        background: rgba(26, 43, 73, 0.9);
    }

    .bg-image-wrapper.bg-image-overlay * {
        z-index: 2;
    }

    .bg-image-wrapper.bg-image-overlay-darkblue:before {
        background: rgba(26, 43, 73, 0.75)
    }

    .bg-image-wrapper.card:before {
        border-radius: var(--bs-border-radius-lg) !important;
    }

@media(max-width:991.98px) {
    .bg-image-wrapper {
        background-attachment: scroll !important;
        background-position: center !important;
    }
}

/* Background video */
.bg-video-wrapper {
    position: relative;
    overflow: hidden;
}

    .bg-video-wrapper.ratio-16x9 {
        --bs-aspect-ratio: 56.25%;
    }

    .bg-video-wrapper.bg-video-overlay:after {
        content: "";
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(26, 43, 73, 0.55);
        z-index: 1;
    }

    .bg-video-wrapper.bg-video-overlay.bg-video-overlay-gradient:after {
        opacity: 0.4;
        background: linear-gradient(120deg, #542461 50%, #332487 100%);
    }

    .bg-video-wrapper video {
        -o-object-fit: cover;
        object-fit: cover;
        display: block;
        position: absolute;
        height: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        top: 0;
        left: 0;
        background: #000;
    }

        .bg-video-wrapper video:-webkit-media-controls {
            display: none !important;
        }

    .bg-video-wrapper .video-content {
        position: absolute;
        z-index: 2;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# HEADING 
--------------------------------------------------------------*/
/* Title */
.heading {
    margin-bottom: 1.5rem;
    position: relative;
}

    .heading .title {
        position: relative;
    }

        .heading .title a {
            color: var(--bs-dark);
            transition: 0.15s ease-in-out;
        }

            .heading .title a:hover {
                color: var(--bs-primary);
            }

    .heading p {
        font-size: 1.15rem;
        font-weight: 300;
    }

    .heading.right-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

@media (max-width: 575.98px) {
    .heading.right-link {
        display: unset;
        align-items: unset;
        justify-content: unset;
    }

        .heading.right-link .title {
            position: relative;
            margin-bottom: 1rem;
        }

        .heading.right-link .see-all {
            margin-bottom: 30px;
            display: inline-block;
        }
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# CONTENT
--------------------------------------------------------------*/
.light-content {
    color: rgba(var(--bs-white-rgb),0.85);
}

    .light-content a,
    .light-content h1,
    .light-content h2,
    .light-content h3,
    .light-content h4,
    .light-content h5,
    .light-content h6 {
        color: #ffffff;
    }
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# STAR RATE
--------------------------------------------------------------*/
.star-rate-view {
    width: 0;
    position: relative;
    display: inline-block;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDguOSIgaGVpZ2h0PSIxMDMuNiIgdmlld0JveD0iMCAwIDEwOC45IDEwMy42Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2UzZTZlNjt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPnN0YXJfMDwvdGl0bGU+PGcgaWQ9IkxheWVyXzIiIGRhdGEtbmFtZT0iTGF5ZXIgMiI+PGcgaWQ9IkxheWVyXzEtMiIgZGF0YS1uYW1lPSJMYXllciAxIj48cG9seWdvbiBjbGFzcz0iY2xzLTEiIHBvaW50cz0iMTA4LjkgMzkuNiA3MS4zIDM0LjEgNTQuNCAwIDM3LjYgMzQuMSAwIDM5LjYgMjcuMiA2Ni4xIDIwLjggMTAzLjYgNTQuNCA4NS45IDg4LjEgMTAzLjYgODEuNyA2Ni4xIDEwOC45IDM5LjYiLz48L2c+PC9nPjwvc3ZnPg0K);
    background-position: 0 0;
    background-repeat: repeat-x;
}

    .star-rate-view .star-value {
        position: absolute;
        height: 100%;
        width: 100%;
        background: url('data:image/svg+xml;base64,PHN2Zw0KCXhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwOC45IiBoZWlnaHQ9IjEwMy42IiB2aWV3Qm94PSIwIDAgMTA4LjkgMTAzLjYiPg0KCTxkZWZzPg0KCQk8c3R5bGU+LmNscy0xe2ZpbGw6I2YxYzk0Nzt9PC9zdHlsZT4NCgk8L2RlZnM+DQoJPHRpdGxlPnN0YXIxPC90aXRsZT4NCgk8ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIj4NCgkJPGcgaWQ9IkxheWVyXzEtMiIgZGF0YS1uYW1lPSJMYXllciAxIj4NCgkJCTxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSI1NC40IDAgNzEuMyAzNC4xIDEwOC45IDM5LjYgODEuNyA2Ni4xIDg4LjEgMTAzLjYgNTQuNCA4NS45IDIwLjggMTAzLjYgMjcuMiA2Ni4xIDAgMzkuNiAzNy42IDM0LjEgNTQuNCAwIi8+DQoJCTwvZz4NCgk8L2c+DQo8L3N2Zz4NCg==');
        background-repeat: repeat-x;
    }

        .star-rate-view .star-value.rtl {
            -moz-transform: scaleX(-1);
            -o-transform: scaleX(-1);
            -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
            filter: FlipH;
            -ms-filter: "FlipH";
            right: 0;
            left: auto;
        }

    .star-rate-view.size-16 {
        width: 80px;
        height: 16px;
        background-size: 16px;
    }

    .star-rate-view,
    .star-rate-view.size-16 {
        width: 80px;
        height: 16px;
        background-size: 16px;
        text-align: left;
    }

        .star-rate-view.size-24 {
            width: 120px;
            height: 24px;
            background-size: 24px;
        }

        .star-rate-view.size-32 {
            width: 160px;
            height: 32px;
            background-size: 32px;
        }

        .star-rate-view.size-16 .star-value {
            background-size: 16px;
        }

        .star-rate-view.size-24 .star-value {
            background-size: 24px;
        }

        .star-rate-view.size-32 .star-value {
            background-size: 32px;
        }

        .star-rate-view .star-value.rate-00 {
            width: 0%;
        }

        .star-rate-view .star-value.rate-05 {
            width: 10%;
        }

        .star-rate-view .star-value.rate-10 {
            width: 20%;
        }

        .star-rate-view .star-value.rate-15 {
            width: 30%;
        }

        .star-rate-view .star-value.rate-20 {
            width: 40%;
        }

        .star-rate-view .star-value.rate-25 {
            width: 50%;
        }

        .star-rate-view .star-value.rate-30 {
            width: 60%;
        }

        .star-rate-view .star-value.rate-35 {
            width: 70%;
        }

        .star-rate-view .star-value.rate-40 {
            width: 80%;
        }

        .star-rate-view .star-value.rate-45 {
            width: 90%;
        }

        .star-rate-view .star-value.rate-50 {
            width: 100%;
        }
/*--------------------------------------------------------------/
    
/*--------------------------------------------------------------
# HEADER
--------------------------------------------------------------*/
/* Header */
.header {
    transition: 0.35s ease-in-out;
}

    .header.header-transparent {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 990;
    }

    /* Logo */
    .header .logo-nav {
        transition: all 0.35s ease-in-out;
        opacity: 1;
    }

        .header .logo-nav .logo-nav-container {
            display: flex;
            align-items: center;
            position: relative;
        }

        .header .logo-nav .logo {
            margin-right: auto;
            padding: 18px 0;
            height: 60px;
            position: relative;
            top:0px;
        }

            .header .logo-nav .logo h1 {
                font-size: 2rem;
                margin: 0;
                font-weight: 700;
                color: #fff;
            }

            .header .logo-nav .logo img {
                height: 60px;
                position: absolute;
                left: 0;
                bottom: 0;
            }

                .header .logo-nav .logo img.logo-dark {
                    opacity: 1;
                    transition: all 0.35s ease-in-out;
                }

                .header .logo-nav .logo img.logo-light {
                    opacity: 0;
                    transition: all 0.35s ease-in-out;
                }

    .header.header-transparent:not(.sticked, .showed) .logo-nav .logo img.logo-dark {
        opacity: 0;
    }

    .header.header-transparent:not(.sticked, .showed) .logo-nav .logo img.logo-light {
        opacity: 1;
    }

/* Mobile Nav */
@media (max-width: 1199.98px) {
    /* General */
    .header .navbar {
        position: fixed;
        top: 0;
        bottom: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        z-index: 9997;
        transition: all 0.35s ease-in-out;
    }

        .header .navbar ul {
            position: absolute;
            inset: 0;
            margin: 0;
            overflow-y: auto;
            padding: 70px 0 0 0;
            background: #1a2b49;
            z-index: 9998;
            transition: 0.3s ease-in-out;
        }

            .header .navbar ul ul {
                background: rgba(var(--bs-dark-rgb), 0);
            }

        .header .navbar a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 30px;
            font-size: 1.75rem;
            line-height: 24px;
            font-weight: 600;
            color: var(--bs-primary-lighter);
            white-space: nowrap;
            transition: all 0.35s ease-in-out;
        }

        .header .navbar .active,
        .header .navbar li.active > a {
            color: var(--bs-primary);
        }

        .header .navbar .has-icon a {
            justify-content: start;
        }

        .header .navbar ul ul a,
        .header .navbar ul ul a:focus {
            font-weight: normal;
            padding: 10px 30px !important;
        }

        /* Indicator icon */
        .header .navbar a i.dropdown-indicator {
            line-height: 0;
            display: inline-flex;
            height: 40px;
            width: 40px;
            justify-content: center;
            align-items: center;
            position: absolute;
            right: 0.75rem;
            margin-bottom: 0;
            font-size: 1.35rem;
        }

            .header .navbar a i.dropdown-indicator:before {
                content: "\eb0b";
            }

        .header .navbar a.active i.dropdown-indicator:before {
            content: "\eaf2";
        }

        .header .navbar ul li.has-icon a i:not(.dropdown-indicator) {
            line-height: 0;
            margin-right: 0.4rem;
            margin-bottom: 0;
            font-size: 1.15rem;
        }

        /* Dropdown box */
        .header .navbar .dropdown ul,
        .header .navbar .dropdown .dropdown ul {
            position: static;
            display: none;
            padding: 0;
            margin-left: 30px;
        }

            .header .navbar .dropdown ul li a {
                font-size: 1.5rem;
                padding: 12px 30px;
            }

            .header .navbar .dropdown .dropdown ul li a {
                font-size: 1.25rem;
                padding: 12px 30px;
            }

        .header .navbar .dropdown > .dropdown-active,
        .header .navbar .dropdown .dropdown > .dropdown-active {
            display: block;
        }

    /* Show - Hide Mobile Nav*/
    .header .mobile-nav-toggle.mobile-nav-show {
        color: var(--bs-dark);
        font-size: 1.65rem;
        cursor: pointer;
        line-height: 1;
        transition: 0.5s;
        z-index: 9;
        margin-left: 2rem;
    }

    .header.header-transparent:not(.sticked, .showed) .mobile-nav-toggle.mobile-nav-show {
        color: var(--bs-white);
    }

    .header .mobile-nav-toggle.mobile-nav-hide {
        color: #fff;
        font-size: 1.55rem;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 1.5rem;
        top: 2.75rem;
        z-index: 9999;
        transition: all 0.35s ease-in-out;
    }

    /* Mobile menu active */
    .header .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .header .navbar {
        right: 0;
        padding: 0;
    }

        .mobile-nav-active .header .navbar:before {
            content: "";
            position: fixed;
            inset: 0;
            background: rgba(var(--bs-white-rgb), 0.85);
            z-index: 9996;
            transition: all 0.35s ease-in-out;
        }
}

@media (max-width: 768.98px) {

/*    .header .logo-nav {
        height: 140px;
    }*/

        .header .logo-nav .logo-nav-container {
            border-bottom: 1px solid var(--bs-border-color);
        }

    .header.header-transparent:not(.sticked, .showed) .logo-nav .logo-nav-container {
        border-bottom: 1px solid rgba(var(--bs-white-rgb),0.35);
    }

    .header .mobile-nav-toggle.mobile-nav-show {
        margin-left: 0.5rem;
    }
}

@media (min-width: 1200px) {

    /* Mobile toggle */
    .header .mobile-nav-show,
    .header .mobile-nav-hide {
        display: none;
    }

    /* Desktop Nav */
    .header .navbar {
        padding: 0;
        font-size: 1.1rem;
    }

        .header .navbar > ul > li {
            margin-left: 28px;
        }

        .header .navbar ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

            .header .navbar ul li {
                position: relative;
            }

                .header .navbar ul li a {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    white-space: nowrap;
                    padding: 35px 0 35px 0;
                    line-height: 20px;
                    font-weight: 600;
                    color: var(--bs-dark);
                }

    .header.header-transparent:not(.sticked, .showed) .navbar > ul > li > a {
        color: var(--bs-white);
    }

    .header .navbar ul li a:hover,
    .header .navbar ul li.active,
    .header .navbar ul li:hover > a,
    .header .navbar ul li.active > a {
        color: var(--bs-primary);
    }

    .header.header-transparent:not(.sticked, .showed) .navbar > ul > li > a:hover,
    .header.header-transparent:not(.sticked, .showed) .navbar > ul > li.active > a {
        color: var(--bs-white);
    }

    .header .navbar ul li a .dropdown-indicator {
        font-size: 1rem;
        margin-left: 0.25rem;
    }

    .header .navbar ul li.dropdown ul {
        position: absolute;
        top: calc(100% - 10px);
        margin: 0;
        padding: 10px 0;
        font-size: 1rem;
        display: block;
        background: #fff;
        border-bottom-right-radius: 0.55rem;
        border-bottom-left-radius: 0.55rem;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        opacity: 0;
        visibility: hidden;
        z-index: 1030;
        transition: all 0.35s ease-in-out;
    }

    .header.header-transparent:not(.sticked, .showed) .navbar ul li.dropdown ul {
        border-top-right-radius: 0.55rem;
        border-top-left-radius: 0.55rem;
    }

    .header .navbar ul li.dropdown ul li {
        min-width: 180px;
    }

        .header .navbar ul li.dropdown ul li a {
            color: var(--bs-gray-dark);
            padding: 8px 20px;
            font-weight: 400;
        }

            .header .navbar ul li.dropdown ul li a:hover,
            .header .navbar ul li.dropdown ul li.active,
            .header .navbar ul li.dropdown ul li:hover > a,
            .header .navbar ul li.dropdown ul li.active > a {
                color: var(--bs-primary);
            }

    .header .navbar ul li.dropdown:hover > ul {
        top: 100%;
        opacity: 1;
        visibility: visible;
    }

    .header .navbar ul li.dropdown:not(.mega-menu) li.dropdown ul {
        top: -10px;
        left: calc(100% - 10px);
        border-radius: 0.55rem;
        visibility: hidden;
    }

    .header .navbar ul li.dropdown:not(.mega-menu) li.dropdown:hover > ul {
        top: -10px;
        left: 100%;
        opacity: 1;
        visibility: visible;
    }

    /* Mega Menu */
    .header .navbar ul li.dropdown.mega-menu {
        position: static;
    }

        .header .navbar ul li.dropdown.mega-menu > ul {
            display: inline-flex;
            align-items: start;
            white-space: nowrap;
            vertical-align: top;
        }

            .header .navbar ul li.dropdown.mega-menu > ul > li {
                min-width: unset;
            }

                .header .navbar ul li.dropdown.mega-menu > ul > li > a {
                    font-weight: 500;
                    font-size: 1.05rem;
                }

                    .header .navbar ul li.dropdown.mega-menu > ul > li > a .dropdown-indicator {
                        display: none;
                    }

                .header .navbar ul li.dropdown.mega-menu > ul > li > ul {
                    opacity: unset;
                    visibility: unset;
                    font-size: 0.95rem;
                    box-shadow: none;
                    position: relative;
                    padding: 0;
                }

                    .header .navbar ul li.dropdown.mega-menu > ul > li > ul > li {
                        min-width: 160px;
                    }

                        .header .navbar ul li.dropdown.mega-menu > ul > li > ul > li a {
                            padding: 7px 20px;
                        }

                        .header .navbar ul li.dropdown.mega-menu > ul > li > ul > li.see-all a {
                            justify-content: start;
                        }
}

/* Language & Currency */
.header .lang-cur {
    font-weight: 600;
}

    .header .lang-cur > ul {
        margin-bottom: 0;
        margin-left: 35px;
    }

        .header .lang-cur > ul .dropdown > a {
            line-height: 20px;
            color: var(--bs-dark);
            padding: 34px 0 34px 0;
            display: inline-block;
        }

.header.header-transparent:not(.sticked, .showed) .lang-cur > ul .dropdown > a {
    color: var(--bs-white);
}

.header .lang-cur > ul .dropdown > a:hover,
.header .lang-cur > ul .dropdown > a:focus {
    color: var(--bs-primary);
    outline: none;
    box-shadow: none;
    border: 0;
}

.header.header-transparent:not(.sticked, .showed) .lang-cur > ul .dropdown > a:hover,
.header.header-transparent:not(.sticked, .showed) .lang-cur > ul .dropdown > a:focus {
    color: var(--bs-white);
}

.header .lang-cur > ul .dropdown .dropdown-menu {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    display: block;
    transition: all 0.3s ease-in-out;
    --bs-dropdown-spacer: 0;
    z-index:9999;
}

.header.header-transparent:not(.sticked, .showed) .lang-cur > ul .dropdown .dropdown-menu {
    border-top-right-radius: 0.75rem;
    border-top-left-radius: 0.75rem;
}

.header .lang-cur > ul .select-language {
    margin-right: 20px;
}

    .header .lang-cur > ul .select-language .lang-flag {
        display: inline-flex;
        align-items: center;
    }

        .header .lang-cur > ul .select-language .lang-flag img {
            height: 0.75rem;
            width: auto;
            margin-right: 0.35rem;
        }


@media (max-width: 768.98px) {

    .header .lang-cur {
      /*  position: absolute;
        bottom: -54px;*/
    }

        .header .lang-cur > ul {
            margin-left: 0;
        }

            .header .lang-cur > ul .dropdown > a {
                padding: 16px 0 16px 0;
            }
}

/* Cart & Favourite*/
.header .fav-cart {
    font-size: 1.25rem;
}

    .header .fav-cart > ul {
        margin-bottom: 0;
        margin-left: 20px;
    }

        .header .fav-cart > ul a {
            line-height: 20px;
            color: var(--bs-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: all 0.3s;
        }

.header.header-transparent:not(.sticked, .showed) .fav-cart > ul a {
    color: var(--bs-white);
}

    .header .fav-cart > ul a:hover,
    .header .fav-cart > ul a:focus,
    .header.header-transparent:not(.sticked, .showed) .fav-cart > ul a:hover,
    .header.header-transparent:not(.sticked, .showed) .fav-cart > ul a:focus {
        background: var(--bs-lighter);
        color: var(--bs-primary);
    }

.header .fav-cart > ul .shopping-cart {
    position: relative;
}

    .header .fav-cart > ul .shopping-cart .badge {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.55rem;
        font-weight: normal;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        right: -2px;
        top: -2px;
        line-height: 0;
    }


@media (max-width: 768.98px) {

    .header .fav-cart {
        position: absolute;
        bottom: 11px;
        right: 44px;
    }
}


/* MyAccount */
.header .my-account {
    margin-left: 30px;
    font-weight: 600;
    font-size: 1.1rem;
}

    .header .my-account > a,
    .header .my-account.my-account-online a.dropdown-toggle {
        color: var(--bs-dark);
        display: flex;
        align-items: center;
        padding: 23px 0;
    }

.header.header-transparent:not(.sticked, .showed) .my-account > a,
.header.header-transparent:not(.sticked, .showed) .my-account.my-account-online a.dropdown-toggle {
    color: var(--bs-white);
}

.header .my-account > a:hover,
.header .my-account.my-account-online a.dropdown-toggle:hover {
    color: var(--bs-primary);
}

.header .my-account.my-account-online .dropdown-menu {
    border-radius: 0 0 0.55rem 0.55rem;
    min-width: 160px;
}

.header .my-account > a .user-avatar {
    display: inline-flex;
    align-items: center;
}

.header .my-account .user-avatar img {
    width: 40px;
    height: 40px;
    background: var(--bs-lighter);
    border-radius: 50%;
    margin-right: 10px;
}

.header .my-account > a:hover .user-avatar img {
    opacity: 0.8;
}

@media (max-width: 768.98px) {

    .header .my-account > a .user-avatar span,
    .header .my-account.my-account-online a.dropdown-toggle .user-avatar span {
        display: none;
    }
}

/* Header Sticked */
.header.sticked.header-transparent {
    background: #ffffff;
    box-shadow: 0px 2px 20px rgb(14 29 52 / 10%);
}

.header.sticked:not(.header-transparent) .logo-nav {
    background: #ffffff;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    position: fixed;
    top: -90px;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1);
}

.header.sticked.showed:not(.header-transparent) .logo-nav {
    opacity: 1;
    top: 0px;
}

.header.sticked:not(.header-transparent) + main {
    padding-top: 90px;
}

@media (max-width: 768.98px) {
    .header.sticked:not(.header-transparent) .logo-nav {
        top: -140px;
    }

    .header.sticked:not(.header-transparent) + main {
        padding-top: 140px;
    }
}

/* Quick view cart */
.quick-view-cart .offcanvas-title {
    line-height: 2.55rem;
}

.quick-view-cart .tour-cart .tour-item .tour-image figure {
    width: 90px;
}

    .quick-view-cart .tour-cart .tour-item .tour-image figure img {
        transition: all 0.3s ease-in-out;
    }

.quick-view-cart .tour-cart .tour-item .tour-image .tour-remove {
    position: absolute;
    top: -5px;
    right: -5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: #fff;
    background: var(--bs-danger);
    line-height: 1;
    font-size: 0.55rem;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

    .quick-view-cart .tour-cart .tour-item .tour-image .tour-remove:hover {
        background: var(--bs-secondary);
    }

@media (hover: hover) {

    .quick-view-cart .tour-cart .tour-item:hover .tour-image figure img {
        transform: scale(1.1);
    }
}

.quick-view-cart .tour-cart .tour-item .tour-content .tour-title a {
    transition: all 0.3s ease-in-out;
    color: var(--bs-dark);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.quick-view-cart .tour-cart .tour-item:hover .tour-content .tour-title a {
    color: var(--bs-primary);
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# TITLE PAGE
--------------------------------------------------------------*/
.page-title.page-title-background {
    padding-top: 80px;
    padding-bottom: 65px;
}

    .page-title.page-title-background.page-title-check-tour {
        padding-top: 260px;
        padding-bottom: 65px;
    }

.page-title.bg-image:before {
    background: linear-gradient(180deg,rgba(26,43,73,0),rgba(26,43,73,.35) 50%,rgba(26,43,73,1));
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
}

.page-title .heading .title {
    margin-bottom: 1rem;
    font-size: 3.15rem;
    line-height: 1.2;
}

@media(max-width:991.98px) {
    .page-title.page-title-background.page-title-check-tour {
        padding-top: 80px;
    }
}

@media(max-width:576.98px) {
    .page-title {
        padding-bottom: 0;
    }

        .page-title.page-title-background.page-title-check-tour {
            padding-bottom: 10px;
            padding-top: 160px;
        }

        .page-title .heading .title {
            font-size: 2.5rem;
        }

        .page-title .heading p {
            display: none;
        }
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# HERO SLIDER
--------------------------------------------------------------*/
/* General */
.hero {
    width: 100%;
    height: calc(100vh - 168px);
    position: relative;
}

    /* Hero Slider */
    .hero .swiper .swiper-slide {
        height: calc(100vh - 168px);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        position: relative;
    }

        .hero .swiper .swiper-slide:after {
            background: linear-gradient(180deg,rgba(26,43,73,0),rgba(26,43,73,.35) 60%,rgba(26,43,73,1));
            position: absolute;
            content: "";
            left: 0;
            right: 0;
            bottom: 0;
            height: 100%;
            z-index: 1;
        }

    .hero .swiper .swiper-button-next {
        right: 55px;
    }

    .hero .swiper .swiper-button-prev {
        left: 55px;
    }

    .hero .swiper .swiper-button-next,
    .hero .swiper .swiper-button-prev {
        color: rgba(var(--bs-white-rgb),0.55);
    }

        .hero .swiper .swiper-button-next:hover,
        .hero .swiper .swiper-button-prev:hover {
            color: rgba(var(--bs-primary-rgb),0.85);
        }

    .hero .swiper .swiper-pagination {
        right: 65px;
        bottom: 65px;
        width: auto;
        left: unset;
        font-size: 1.5rem;
        line-height: 0;
    }

        .hero .swiper .swiper-pagination .swiper-pagination-bullet {
            background-color: #fff;
        }

        .hero .swiper .swiper-pagination .swiper-pagination-bullet-active {
            background-color: rgba(var(--bs-white-rgb), 0.65);
        }

    /* Hero video & image */
    .hero .hero-video,
    .hero .hero-image {
        position: relative;
        overflow: hidden;
        height: calc(100vh - 168px);
    }

        .hero .hero-video:after,
        .hero .hero-image:after {
            background: linear-gradient(180deg,rgba(26,43,73,0),rgba(26,43,73,.35) 60%,rgba(26,43,73,1));
            position: absolute;
            content: "";
            left: 0;
            right: 0;
            bottom: 0;
            height: 100%;
            z-index: 1;
        }

    /* Hero caption  */
    .hero .hero-caption {
        position: absolute;
        transition: all 0.35s ease-in-out;
        bottom: 30px;
        z-index: 2;
        left: 0;
        right: 0;
    }

        .hero .hero-caption .hero-title {
            margin-bottom: 1rem;
            padding: 0;
            font-size: 2.75rem;
            font-weight: 600;
            color: #fff;
            line-height: 1.2;
        }

        .hero .hero-caption .hero-desc {
            font-size: 1.25rem;
            font-weight: 300;
            margin-bottom: 2rem;
            color: #fff;
        }

    /* Hero Fullscreen */
    .hero.hero-fullscreen {
        height: 100vh;
    }

        .hero.hero-fullscreen .hero-video,
        .hero.hero-fullscreen .hero-image {
            height: 100vh;
        }

        .hero.hero-fullscreen .swiper .swiper-slide {
            height: 100vh;
        }

@media (max-width:1199.98px) {
    .hero .hero-video .bg-video-wrapper.ratio-16x9 {
        --bs-aspect-ratio: 115%;
    }

    .hero.hero-fullscreen .hero-video .bg-video-wrapper.ratio-16x9 {
        --bs-aspect-ratio: 75%;
    }
}

@media (max-width:991.98px) {
    .hero {
        height: auto;
    }

        .hero .hero-caption {
            bottom: 105px;
        }

        .hero .hero-video .hero-caption,
        .hero .hero-image .hero-caption {
            bottom: 40px;
        }

        .hero .swiper .swiper-slide,
        .hero .hero-video,
        .hero .hero-image {
            height: 450px;
        }

        .hero.hero-fullscreen {
            height: auto;
        }

            .hero.hero-fullscreen .hero-image,
            .hero.hero-fullscreen .hero-video,
            .hero.hero-fullscreen .swiper .swiper-slide {
                height: 540px;
            }

                .hero.hero-fullscreen .hero-video .bg-video-wrapper.ratio-16x9 {
                    --bs-aspect-ratio: 75%;
                }

        .hero .swiper .swiper-pagination {
            right: unset;
            left: 1.75rem;
        }
}

@media (max-width:768.98px) {

    .hero .hero-caption .hero-desc {
        display: none;
    }

    .hero .swiper .swiper-slide,
    .hero .hero-video,
    .hero .hero-image {
        height: 438px;
    }

    .hero .swiper .swiper-pagination {
        left: .75rem;
    }

    .hero.hero-fullscreen .hero-image,
    .hero.hero-fullscreen .hero-video,
    .hero.hero-fullscreen .swiper .swiper-slide {
        height: 578px;
    }

        .hero.hero-fullscreen .hero-video .bg-video-wrapper.ratio-16x9 {
            --bs-aspect-ratio: 85%;
        }
}

@media (max-width:576.98px) {

    .hero .hero-caption {
        bottom: 80px;
    }

        .hero .hero-caption .hero-title {
            font-size: 1.5rem;
        }

    .hero .swiper .swiper-slide,
    .hero .hero-video,
    .hero .hero-image {
        height: 262px;
    }

        .hero .hero-video .hero-caption,
        .hero.hero-fullscreen .hero-video .hero-caption,
        .hero.hero-fullscreen .hero-image .hero-caption {
            bottom: 20px;
        }

    .hero.hero-fullscreen .hero-video,
    .hero.hero-fullscreen .swiper .swiper-slide,
    .hero.hero-fullscreen .hero-image {
        height: 402px;
    }

        .hero.hero-fullscreen .hero-video .bg-video-wrapper.ratio-16x9 {
            --bs-aspect-ratio: 115%;
        }

    .hero .swiper .swiper-pagination {
        bottom: 40px;
    }
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# CHECK/SEARCH TOUR
--------------------------------------------------------------*/
/* Hore check rooms */
.check-tour:not(.check-tour-static) {
    position: absolute;
    z-index: 10;
    top: 40px;
    right: 0;
    left: 0;
}

.hero-fullscreen .check-tour {
    top: 130px;
}

.check-tour .check-tour-form {
    position: relative;
    padding: 0.5rem;
    border-radius: var(--bs-border-radius-lg);
    background-color: rgba(var(--bs-white-rgb), 0.85);
}

.check-tour.check-tour-static .check-tour-form {
    background-color: #fff;
    padding: 0.25rem;
}

.check-tour .form-control::-webkit-input-placeholder {
    color: var(--bs-dark);
}

.check-tour .input-group-lg > .input-group-text i {
    font-size: 1.35rem;
}

.check-tour .flatpickr-wrapper {
    display: block;
}

    .check-tour .flatpickr-wrapper .flatpickr-calendar {
        width: auto;
        left: 3.5rem;
    }

    .check-tour .where-input,
    .check-tour .flatpickr-wrapper .when-input,
    .check-tour .adv-input {
        transition: all 0.3s ease-in-out;
    }

        .check-tour .where-input:hover,
        .check-tour .flatpickr-wrapper:hover .when-input,
        .check-tour .adv-input:hover {
            background: rgba(var(--bs-white-rgb), 1);
            border-radius: 0.35rem;
        }

        .check-tour .adv-input .dropdown-menu {
            min-width: 100%;
            padding: 0.75rem 1.25rem;
            top: calc(100% - 10px);
            display: block;
            transition: all 0.3s ease-in-out;
        }

            .check-tour .adv-input .dropdown-menu.show {
                top: calc(100%);
            }

        .check-tour .adv-input .dropdown-toggle:hover,
        .check-tour .adv-input .dropdown-toggle:focus {
            color: var(--bs-dark);
            outline: none;
            box-shadow: none;
            border: 0;
        }

        .check-tour .adv-input .dropdown-toggle:after {
            right: 1rem;
            position: absolute;
            top: 50%;
            transform: translate(0, -50%);
        }

        .check-tour .adv-input .dropdown-menu .form-check {
            margin-top: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .check-tour .adv-input .dropdown-menu .form-check-label strong {
            display: block;
        }

        .check-tour .adv-input .dropdown-menu .form-check-label span {
            display: block;
            font-weight: 300;
            font-size: 0.9rem;
        }

@media (max-width:991.98px) {

    .hero .hero-caption .hero-title {
        font-size: 1.8rem;
    }

    .check-tour:not(.check-tour-static) {
        position: unset;
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
        background: var(--bs-primary-darker);
    }

    .check-tour .check-tour-form {
        background: unset;
        padding: 0;
    }

    .check-tour .where-input,
    .check-tour .when-input,
    .check-tour .adv-input {
        background: rgba(var(--bs-white-rgb), 1);
        border-radius: 0.35rem;
    }

    .check-tour.check-tour-static .check-tour-form {
        background-color: transparent;
    }
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# MY ACCOUNT
--------------------------------------------------------------*/
/* Side Bar */
.account-sidebar .btn-change-avatar,
.account-sidebar .btn-update-avatar {
    height: 24px;
    width: 24px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-sidebar .btn-change-avatar {
    top: 0;
    right: -5px;
}

    .account-sidebar .btn-change-avatar:hover {
        background-color: var(--bs-primary-lighter) !important;
        color: var(--bs-primary);
    }

.account-sidebar .btn-update-avatar {
    bottom: 0;
    right: -5px;
    color: var(--bs-primary);
}

    .account-sidebar .btn-update-avatar:hover {
        background-color: var(--bs-primary) !important;
        color: #fff;
    }

.account-sidebar ul.user-menu > li > a {
    display: block;
    padding: 0.35rem 0;
    color: var(--bs-dark);
}

    .account-sidebar ul.user-menu > li > a:hover,
    .account-sidebar ul.user-menu > li > a:focus,
    .account-sidebar ul.user-menu > li.active > a {
        color: var(--bs-primary);
    }

/* Main Board */
.account-board .user-profile label {
    min-width: 100px;
}

.account-board .user-profile .btn-edit-profile {
    height: 32px;
    width: 32px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -10px;
    right: -10px;
}

    .account-board .user-profile .btn-edit-profile:hover {
        background-color: var(--bs-primary) !important;
        color: #fff;
    }

.account-board .wishlist,
.account-board .booking {
    transition: all 0.3s ease-in-out;
}

    .account-board .wishlist:hover,
    .account-board .booking:hover {
        border-color: transparent !important;
        background-color: var(--bs-primary-lighter) !important;
    }

.account-board .booking-list figure {
    width: 128px;
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# TOUR CATEGORY
--------------------------------------------------------------*/
/* Category Grid */
.category-grid {
}

    .category-grid .category-tall {
        height: 524px;
    }

    .category-grid .category-short {
        height: 254px;
    }

@media(max-width: 1399.98px) {
    .category-grid .category-tall {
        height: 484px;
    }

    .category-grid .category-short {
        height: 234px;
    }
}

@media(max-width:1199.98px) {
    .category-grid .category-tall {
        height: 474px;
    }

    .category-grid .category-short {
        height: 229px;
    }
}

@media(max-width:991.98px) {
    .category-grid .category-tall {
        height: 746px;
    }

    .category-grid .category-short {
        height: 365px;
    }
}

@media(max-width:567.98px) {
    .category-grid .category-tall,
    .category-grid .category-short {
        height: 260px;
    }
}
/* Modal Category */
.modal-category a {
    color: var(--bs-dark);
    font-weight: 600;
}

    .modal-category a:hover {
        color: var(--bs-primary);
    }

.modal-category .modal-category-item:not(:last-child) {
    border-bottom: 1px solid var(--bs-border-color);
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
}

.modal-category .modal-category-item figure {
    border-radius: 0.35rem;
}

    .modal-category .modal-category-item figure img {
        width: 60px;
        transition: all 0.3s ease-in-out;
    }

@media (hover: hover) {

    .modal-category .modal-category-item:hover figure img {
        transform: scale(1.1);
    }
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# ADVENTURES
--------------------------------------------------------------*/
.adventure-list .adventure-item {
    color: var(--bs-dark);
    transition: 0.3s ease-in-out;
}

    .adventure-list .adventure-item figure {
        margin-left: -1px;
        margin-right: -1px;
        margin-top: -1px;
    }

        .adventure-list .adventure-item figure img {
            transition: all 0.3s ease-in-out;
        }

@media (hover: hover) {

    .adventure-list .adventure-item:hover figure img {
        transform: scale(1.1);
    }
}

.adventure-list .adventure-item h3 {
    font-size: 1.2rem;
}

    .adventure-list .adventure-item h3 a {
        color: var(--bs-dark);
        transition: all 0.3s ease-in-out;
    }

        .adventure-list .adventure-item h3 a:hover {
            color: var(--bs-primary);
        }

.adventure-list .adventure-item .detail-link {
    color: var(--bs-primary);
    transition: all 0.3s ease-in-out;
}

    .adventure-list .adventure-item .detail-link:hover {
        color: var(--bs-dark);
    }

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# WHY CHOOSE
--------------------------------------------------------------*/
.why-choose .why-list {
    list-style: none;
    padding: 0;
}

    .why-choose .why-list .why-item {
        display: flex;
        align-items: start;
        margin-bottom: 0.5rem;
    }

        .why-choose .why-list .why-item.why-item2 {
            align-items: center;
        }




.why-choose .why-list .why-item .icon {
    padding-right: 20px;
    /* margin-top: 0.35rem;*/
}

        .why-choose .why-list .why-item img {
            width: 48px;
        }

        .why-choose .why-list .why-item h4 {
            font-size: 1.25rem;
        }

@media(max-width:991.98px) {
    .why-choose .why-image {
        height: 400px !important;
    }
}

@media(max-width:576.98px) {
    .why-choose {
        margin-bottom: 35px;
    }

        .why-choose .why-image {
            height: 250px !important;
        }

        .why-choose .why-content {
            padding: 2rem 1rem 0 1rem;
        }
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# COUNTRY & CITY
--------------------------------------------------------------*/
/* Country list */
.country-list {
    border-radius: var(--bs-border-radius-lg) var(--bs-border-radius-lg) 0 0;
    background: rgba(var(--bs-white-rgb),0.9);
}

    .country-list ul a {
        color: var(--bs-dark);
    }

        .country-list ul a:hover {
            color: var(--bs-primary);
        }

    .country-list ul > li > ul > li.see-all a {
        color: var(--bs-primary);
    }

        .country-list ul > li > ul > li.see-all a:hover {
            color: var(--bs-secondary);
        }

/* All Country / Popuplar Cities */
.all-country ul li a .input-group-text,
.popular-city ul li a .input-group-text {
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

.all-country ul li a:hover .input-group-text,
.popular-city ul li a:hover .input-group-text {
    border-color: var(--bs-primary-light);
    background: var(--bs-primary-lighter) !important;
    color: var(--bs-primary);
}

.all-country .regions-title a {
    color: var(--bs-dark);
    transition: all 0.3s ease-in-out;
}

    .all-country .regions-title a:hover {
        color: var(--bs-primary);
        transition: all 0.3s ease-in-out;
    }
/* Sight in City */
.sight-box .sight-image figure img {
    transition: all 0.3s ease-in-out;
}

@media (hover: hover) {

    .sight-box:hover .sight-image figure img {
        transform: scale(1.1);
    }
}

.sight-box .sight-title {
    font-size: 1.1rem;
}

    .sight-box .sight-title a {
        color: var(--bs-dark);
        transition: all 0.3s ease-in-out;
    }

        .sight-box .sight-title a:hover {
            color: var(--bs-primary);
        }

.swiper.sight-swiper .sight-dot .swiper-pagination-bullet-active {
    background-color: #fff;
}

.swiper.sight-swiper .sight-dot .swiper-pagination-bullet {
    background-color: rgba(var(--bs-white-rgb), 0.65);
}

/* City in Country */
.swiper.city-swiper .city-dot.swiper-pagination {
    position: static;
    margin-top: 20px;
}

.swiper.city-swiper .swiper-button-prev,
.swiper.city-swiper .swiper-button-next {
    top: calc(50% - 20px);
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# TOURS
--------------------------------------------------------------*/
/* Tour grid */
.tour-grid .tour-item {
    transition: all 0.3s ease-in-out;
}

    .tour-grid .tour-item .tour-image {
        position: relative;
    }

        .tour-grid .tour-item .tour-image figure:after {
            background: linear-gradient(180deg,rgba(26,43,73,0),rgba(26,43,73,.55) 45%,rgba(26,43,73,1));
            position: absolute;
            content: "";
            left: 0;
            right: 0;
            bottom: 0;
            height: 40%;
            z-index: 0;
        }

        .tour-grid .tour-item .tour-image figure img {
            transition: all 0.3s ease-in-out;
        }

@media (hover: hover) {
    .tour-grid .tour-item:hover .tour-image figure img {
        transform: scale(1.1);
    }
}

.tour-grid .tour-item .tour-image figure figcaption {
    position: absolute;
    color: #fff;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.35rem;
    z-index: 1;
    font-size: 0.95rem;
    transition: 0.3s ease-in-out;
}

.tour-grid .tour-item .tour-content {
    position: relative;
}

    .tour-grid .tour-item .tour-content .tour-title {
        font-size: 1.15rem;
        transition: all 0.3s ease-in-out;
        margin-bottom: 0rem;
    }

        .tour-grid .tour-item .tour-content .tour-title a {
            color: var(--bs-dark);
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

            .tour-grid .tour-item .tour-content .tour-title a:hover {
                color: var(--bs-primary);
            }

    .tour-grid .tour-item .tour-content .tour-duration-location,
    .tour-grid .tour-item .tour-content .tour-duration-location a {
        margin-bottom: 0.5rem;
        font-size: 0.8rem;
        text-transform: uppercase;
        color: var(--bs-secondary-dark);
        font-weight: 500;
    }

        .tour-grid .tour-item .tour-content .tour-duration-location a:hover {
            color: var(--bs-primary);
        }

    .tour-grid .tour-item .tour-content .tour-review {
        display: flex;
        align-items: center;
        width: 100%;
        margin-bottom: .35rem;
    }

        .tour-grid .tour-item .tour-content .tour-review .tour-star-rate {
            line-height: 1;
        }

        .tour-grid .tour-item .tour-content .tour-review .tour-review-number {
            font-size: 0.9rem;
            color: var(--bs-secondary);
            white-space: nowrap;
        }

    .tour-grid .tour-item .tour-content .tour-price {
        display: flex;
        align-items: center;
        width: 100%;
        margin-bottom: .35rem;
    }

    .tour-grid .tour-item .tour-content .tour-ext {
        margin-bottom: .35rem;
        font-size: 0.9rem;
        color: var(--bs-success);
    }

.tour-grid .tour-item .tour-sticker {
    position: absolute;
    display: inline-block;
    top: 20px;
    background: var(--bs-primary);
    color: #fff;
    border-radius: 0 0.25rem 0.25rem 0;
    padding: 0.35rem 0.75rem;
    text-transform: uppercase;
    font-size: 0.65rem;
    line-height: 1;
    white-space: nowrap;
}

.tour-grid .tour-item .tour-like {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
    font-size: 1.15rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(var(--bs-dark-rgb),0.35);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

    .tour-grid .tour-item .tour-like:hover,
    .tour-grid .tour-item .tour-like.liked {
        background: rgba(var(--bs-primary-rgb),0.85);
    }

        .tour-grid .tour-item .tour-like:hover .ti-heart:before,
        .tour-grid .tour-item .tour-like.liked .ti-heart:before {
            content: "\f67c";
        }

.tour-grid .tour-item .remove-like {
    position: absolute;
    top: -10px;
    right: -10px;
    color: var(--bs-danger);
    line-height: 1;
    white-space: nowrap;
    font-size: 1.15rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

    .tour-grid .tour-item .remove-like:hover {
        color: #fff;
        background: var(--bs-danger);
    }


@media(max-width:576.98px) {
    .tour-grid .tour-item .tour-image figure figcaption {
        left: 1rem;
        right: 1rem;
    }
}

/* Tour list */
@media(min-width:768px) {

    .tour-grid.by-list .tour-item {
        border-bottom: 1px solid var(--bs-border-color) !important;
        padding-bottom: 1.5rem;
    }

        .tour-grid.by-list .tour-item > div .tour-image {
            width: 45%;
            flex-shrink: 0;
        }

        .tour-grid.by-list .tour-item > div .tour-content {
            width: 55%;
        }

        .tour-grid.by-list .tour-item > div {
            display: flex;
            align-items: center;
        }
}

@media(min-width:992px) {
    .tour-grid.by-list .tour-item > div .tour-image {
        width: 28%;
        flex-shrink: 0;
    }

    .tour-grid.by-list .tour-item > div .tour-content {
        width: 72%;
    }

    .tour-grid.by-list .tour-item .tour-detail {
        display: inline-block;
        position: absolute;
        right: 1.5rem;
        bottom: 1.5rem;
    }
}

/* Tour Carousel */
.tour-swiper.swiper .tour-prev,
.tour-swiper.swiper .tour-next {
    top: 28%;
}

.tour-swiper.swiper .swiper-pagination {
    position: static;
    margin-top: 10px;
}

/* Tour Sort */
.tour-filter .tour-sort .dselect-wrapper .dropdown-menu {
    width: auto;
}

@media (max-width:768.89px) {
    .tour-filter .btn-tour-view,
    .tour-filter .btn-tour-filter {
        width: 50%;
    }
}

/* Tour Filter */
.tour-filter-group {
    margin-bottom: 5.75rem;
}

    .tour-filter-group li {
        padding: 0;
    }

    .tour-filter-group .form-check {
        margin-bottom: 0.75rem;
        color: var(--bs-body-color);
    }

    .tour-filter-group .accordion-item {
        border-bottom: 1px solid var(--bs-border-color);
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .tour-filter-group .accordion-body {
        margin-bottom: 1rem;
    }

    .tour-filter-group .accordion-header button {
        font-size: 1.25rem;
        font-weight: 500;
        padding-left: 0;
        padding-right: 0;
    }

        .tour-filter-group .accordion-header button:not(.collapsed) {
            color: var(--bs-dark);
            background-color: transparent;
            box-shadow: none;
        }

    .tour-filter-group .accordion-header .accordion-button:not(.collapsed)::after {
        background-image: var(--bs-accordion-btn-icon);
    }

    .tour-filter-group .accordion-body {
        padding: 0;
    }

/* filtered */
.filtered-item ul li span {
    color: var(--bs-secondary-dark);
    cursor:pointer;
}

.filtered-item ul li span:hover {
    color: var(--bs-danger);
}

    .filtered-item ul li span i {
        color: var(--bs-danger);
    }

/* Price range */
.price-range .price-slider {
    padding-bottom: 1rem;
}

.price-range .slider {
    height: 5px;
    position: relative;
    background: var(--bs-gray-200);
    border-radius: 5px;
}

    .price-range .slider .progress {
        height: 100%;
        left: 25%;
        right: 25%;
        position: absolute;
        border-radius: 5px;
        background: var(--bs-primary);
    }

.price-range .range-input {
    position: relative;
}

    .price-range .range-input input {
        position: absolute;
        width: 100%;
        height: 5px;
        top: -5px;
        background: none;
        pointer-events: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

.price-range input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: var(--bs-primary);
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

.price-range input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: #17A2B8;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# DETAIL TOUR
--------------------------------------------------------------*/
/* Tour photo */
.tour-detail .tour-gallery .photo-list {
    max-height: 450px;
}

    .tour-detail .tour-gallery .photo-list .photo-item figure {
        overflow: hidden;
        position: relative;
    }

        .tour-detail .tour-gallery .photo-list .photo-item figure::before {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            content: "";
            color: #fff;
            z-index: 1;
            background: rgba(var(--bs-primary-darker-rgb),0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease-in-out;
        }

    .tour-detail .tour-gallery .photo-list .photo-item.all-photo figure::before {
        background: rgba(var(--bs-primary-darker-rgb),0.75);
        opacity: 0.8;
        visibility: visible;
    }

    .tour-detail .tour-gallery .photo-list .photo-item.all-photo figure figcaption {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        color: #fff;
        font-size: 1.15rem;
        line-height: 0;
        transition: all 0.3s ease-in-out;
        white-space: nowrap;
    }

    .tour-detail .tour-gallery .photo-list .photo-item:not(.all-photo) figure::after {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        content: "\eb56";
        font-family: "tabler-icons" !important;
        font-weight: normal;
        z-index: 2;
        color: #fff;
        font-size: 2rem;
        line-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
    }

    .tour-detail .tour-gallery .photo-list .photo-item:hover figure::before,
    .tour-detail .tour-gallery .photo-list .photo-item:hover figure::after {
        opacity: 1;
        visibility: visible;
    }

    .tour-detail .tour-gallery .photo-list .photo-item figure img {
        transition: all 0.3s ease-in-out;
    }

@media (hover: hover) {
    .tour-detail .tour-gallery .photo-list .photo-item:hover figure img {
        transform: scale(1.1);
    }
}

@media(max-width:1399.98px) {
    .tour-detail .tour-gallery .photo-list {
        max-height: 420px;
    }
}

@media(max-width:1199.98px) {
    .tour-detail .tour-gallery .photo-list {
        max-height: 315px;
    }
}

@media(max-width:991.98px) {
    .tour-detail .tour-gallery .photo-list {
        max-height: 240px;
    }
}

@media(max-width:768.98px) {
    .tour-detail .tour-gallery .photo-list {
        max-height: unset;
    }
}

/* Tour Wishlist */
.tour-detail .btn-wishlist {
    top: 1.5rem;
    left: 1.5rem;
    z-index: 1;
}

    .tour-detail .btn-wishlist:hover i::before,
    .tour-detail .btn-wishlist:focus i::before,
    .tour-detail .btn-wishlist.liked i::before,
    .tour-detail .btn-wishlist.liked i::before {
        font-weight: normal;
        color: var(--bs-primary);
        content: "\f67c";
    }

@media(max-width:768.98px) {
    .tour-detail .btn-wishlist {
        top: 1rem;
        left: 1rem;
    }
}

/* Tour Itinerary */
.tour-detail .tour-itinerary ul li {
    position: relative;
    padding-left: 40px;
    margin-left: 12px;
}

    .tour-detail .tour-itinerary ul li:not(:last-child):before {
        position: absolute;
        content: "";
        border-left: 1px dashed #c7d0d9;
        width: 0;
        height: calc(100% + 1rem);
        left: 0;
        top: 1rem;
        z-index: 1;
    }

    .tour-detail .tour-itinerary ul li .accordion-button:before {
        position: absolute;
        width: 32px;
        height: 32px;
        content: "\f637";
        font-family: "tabler-icons" !important;
        font-weight: normal;
        border-radius: 50%;
        display: flex;
        line-height: 0;
        justify-content: center;
        align-items: center;
        background: var(--bs-primary);
        top: 1rem;
        left: -56px;
        color: #fff;
        z-index: 2;
        transition: all 0.3s ease-in-out;
        border: 1px solid var(--bs-primary);
    }

    .tour-detail .tour-itinerary ul li .accordion-button:not(.collapsed):before {
        background: var(--bs-primary-darker);
        border: 1px solid var(--bs-primary-darker);
    }

    .tour-detail .tour-itinerary ul li .accordion-button strong {
        white-space: nowrap;
        font-weight: 600;
    }

/* Tour review */
.tour-overall-rating {
    border-right: 1px solid var(--bs-border-color);
}

.tour-review-summary .summary-list .summary-item .title {
    width: 120px;
}

.tour-review-summary summary-list .summary-item .review-progress {
    width: 140px;
    height: 8px;
    --bs-progress-border-radius: 0.2rem;
}

@media(max-width:576.98px) {
    .tour-overall-rating {
        border-right: 0;
    }
}

/* Top review */
.top-review .review-content figure img {
    width: 80px;
}

.top-review .review-content div {
    width: calc(100% - 80px);
}

.top-review .swiper.review-swiper {
    padding-left: 5px;
    padding-right: 5px;
}

    .top-review .swiper.review-swiper .swiper-pagination {
        position: static;
        margin-top: 20px;
    }

@media(max-width:768.98px) {
    .top-review .swiper.review-swiper {
        padding-left: 2px;
        padding-right: 2px;
    }
}

@media(max-width:576.98px) {

    .top-review .review-content {
        display: flex;
        flex-direction: column;
    }

        .top-review .review-content div {
            width: 100%;
            padding-left: unset;
            text-align: center;
        }

        .top-review .review-content figure {
            text-align: center;
            margin-bottom: 1.25rem;
        }

    .top-review .swiper .swiper-pagination {
        display: block;
        text-align: center;
    }
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# SHOPPING CART & CHECKOUT
--------------------------------------------------------------*/
/* View Cart */
.view-cart .list-item .item {
    position: relative;
}

    .view-cart .list-item .item .item-image figure {
        width: 180px;
    }

@media (hover: hover) {
    .view-cart .tour-grid .tour-item:hover .tour-image figure img {
        transform: scale(1.1);
    }
}

.view-cart .tour-grid .tour-item .tour-image figure img {
    transition: all 0.3s ease-in-out;
}

.view-cart .list-item .item .item-content .item-title {
    transition: all 0.3s ease-in-out;
}

    .view-cart .list-item .item .item-content .item-title a {
        color: var(--bs-dark);
        transition: all 0.3s ease-in-out;
    }

        .view-cart .list-item .item .item-content .item-title a:hover {
            color: var(--bs-primary);
        }

.view-cart .list-item .item .item-price-remove {
    min-width: 170px;
}

.view-cart .list-item .item .item-remove a {
    color: var(--bs-secondary);
}

    .view-cart .list-item .item .item-remove a:hover,
    .view-cart .list-item .item .item-remove a:focus {
        color: var(--bs-danger);
    }

@media(max-width:576.98px) {
    .view-cart .list-item .item .item-image {
        position: absolute;
    }

        .view-cart .list-item .item .item-image figure {
            width: 105px;
        }

    .view-cart .list-item .item .item-content .item-title {
        font-size: 1.1rem !important;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .view-cart .list-item .item .item-content .item-title,
    .view-cart .list-item .item .item-content .item-duration-location,
    .view-cart .list-item .item .item-content .item-star-rate {
        padding-left: calc(105px + 1rem);
    }
}

/* Checkout */
.order-summary .order-item {
    border-bottom: 1px solid var(--bs-border-color);
    position: relative;
    padding-right: 80px;
}

    .order-summary .order-item .item-title a {
        color: var(--bs-dark);
        transition: all 0.3s ease-in-out;
    }

        .order-summary .order-item .item-title a:hover {
            color: var(--bs-primary);
        }

    .order-summary .order-item .item-price {
        position: absolute;
        top: 0;
        right: 0;
    }

/* Payment */
.payment-methods .form-check {
    min-height: 2.775rem;
}

    .payment-methods .form-check .form-check-label {
        position: relative;
        white-space: nowrap;
        padding-left: 1rem;
        cursor: pointer;
    }

    .payment-methods .form-check .form-check-input {
        margin-left: -0.5rem;
    }

    .payment-methods .form-check .form-check-label:before {
        content: "";
        left: -1.5rem;
        right: 0;
        bottom: -0.75rem;
        top: -0.75rem;
        border: 1px solid var(--bs-border-color);
        position: absolute;
        border-radius: 0.55rem;
        box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%)
    }

/* Step by step */
.ps-horizontal .ps-item .ps-icon {
    width: 44px;
    height: 44px;
    border: 1px solid #ced4da;
    color: var(--bs-gray);
}

.ps-horizontal .ps-item.ps-status-process .ps-icon {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
    background-color: var(--bs-primary-lighter);
}

.ps-horizontal .ps-item.ps-status-done .ps-icon {
    border-color: var(--bs-primary);
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.ps-horizontal .ps-item.ps-status-done:not(.show-number) .ps-icon span {
    display: none;
}

.ps-horizontal .ps-item.ps-status-done:not(.show-number) .ps-icon::after {
    content: "\ea5e";
    font-family: "tabler-icons" !important;
    font-weight: normal;
}

.ps-horizontal ul li:last-child .ps-item::after {
    content: unset;
}

.ps-horizontal ul li .ps-item::before,
.ps-horizontal ul li .ps-item::after {
    content: '';
    position: absolute;
    top: 22px;
    border-top: 1px solid #ced4da;
    left: 0;
    margin-left: -0.75rem;
    width: calc(50% - 22px + 0.75rem);
}

.ps-horizontal ul li .ps-item::after {
    left: auto;
    right: 0;
    margin: 0 -0.75rem 0 0;
}

.ps-horizontal ul li:first-child .ps-item::before {
    content: unset;
}

.ps-horizontal ul li .ps-status-done.ps-item::after,
.ps-horizontal ul li .ps-status-done.ps-item::before,
.ps-horizontal ul li .ps-status-process.ps-item::before {
    border-top-color: var(--bs-primary);
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# BLOG
--------------------------------------------------------------*/
/* Mini blog */
.blog-mini .blog-post .post-list .card-body {
    padding: 2.25rem;
}

.blog-mini .blog-post {
    transition: all 0.3s ease-in-out;
}

    .blog-mini .blog-post:hover {
        border-color: var(--bs-primary-light) !important;
    }

    .blog-mini .blog-post figure {
        width: 110px;
        overflow: hidden;
        margin: -1px 0 -1px -1px;
    }

        .blog-mini .blog-post figure img {
            transition: all 0.3s ease-in-out;
        }

@media (hover: hover) {
    .blog-mini .blog-post:hover figure img {
        transform: scale(1.1);
    }
}

.blog-mini .blog-post .post-content .post-date {
    font-size: 0.85rem;
    color: var(--bs-secondary);
}

.blog-mini .blog-post .post-content .post-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--bs-dark);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-mini .blog-post:hover .post-content .post-title {
    color: var(--bs-primary);
}

/* Swiper Blog */
.blog-swiper.swiper .blog-prev,
.blog-swiper.swiper .blog-next,
.related-posts-swiper.swiper .related-posts-prev,
.related-posts-swiper.swiper .related-posts-next {
    top: 28%;
}

.blog-swiper.swiper .swiper-pagination {
    position: static;
    margin-top: 10px;
}

.blog-grid .blog-post .post-image figure:after {
    background: linear-gradient(180deg,rgba(26,43,73,0),rgba(26,43,73,.55) 45%,rgba(26,43,73,1));
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    z-index: 0;
}

.blog-grid .blog-post .post-image figure figcaption {
    position: absolute;
    color: #fff;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1;
    font-size: 0.85rem;
    transition: 0.3s ease-in-out;
}

.blog-grid .blog-post .post-image figure img {
    transition: 0.3s ease-in-out;
}

@media (hover: hover) {
    .blog-grid .blog-post:hover .post-image figure img {
        transform: scale(1.1);
    }
}

.blog-grid .blog-post .post-content .post-title {
    font-size: 1.15rem;
    transition: all 0.3s ease-in-out;
    margin-bottom: 1rem;
}

    .blog-grid .blog-post .post-content .post-title a {
        color: var(--bs-dark);
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        transition: 0.3s ease-in-out;
    }

        .blog-grid .blog-post .post-content .post-title a:hover {
            color: var(--bs-primary);
        }

.blog-grid .blog-post .post-content .post-category a {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--bs-secondary-dark);
    font-weight: 500;
    display: inline-block;
}

    .blog-grid .blog-post .post-content .post-category a:hover {
        color: var(--bs-primary);
    }

.blog-grid .blog-post .post-content .post-desc p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Blog by list */
@media(min-width:768px) {

    .blog-grid.by-list .blog-post {
        border-bottom: 1px solid var(--bs-border-color) !important;
        border-radius: 0;
    }

        .blog-grid.by-list .blog-post .post-title {
            font-size: 1.25rem;
        }

        .blog-grid.by-list .blog-post > div .post-image {
            width: 45%;
            flex-shrink: 0;
        }

        .blog-grid.by-list .blog-post > div .tour-content {
            width: 55%;
        }

        .blog-grid.by-list .blog-post > div {
            display: flex;
            align-items: center;
        }
}

@media(min-width:992px) {

    .blog-grid.by-list .blog-post .post-title {
        font-size: 1.35rem;
    }

    .blog-grid.by-list .blog-post > div .post-image {
        width: 28%;
        flex-shrink: 0;
    }

    .blog-grid.by-list .blog-post > div .tour-content {
        width: 72%;
    }

    .blog-grid.by-list .blog-post .tour-detail {
        display: inline-block;
        position: absolute;
        right: 1.5rem;
        bottom: 1.5rem;
    }
}

/* Swiper Blog */
.blog-overlay .blog-post .post-image figure:after {
    background: linear-gradient(180deg,rgba(26,43,73,0),rgba(26,43,73,.55) 45%,rgba(26,43,73,1));
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    height: 75%;
    z-index: 0;
}

.blog-overlay .blog-post figure img {
    transition: all 0.3s ease-in-out;
}

.blog-overlay .blog-post .post-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 0 2rem 2rem 2rem;
    transition: all 0.3s ease-in-out;
}

    .blog-overlay .blog-post .post-content .post-date {
        color: rgba(var(--bs-white-rgb),0.55);
        display: inline-block;
        margin-bottom: 0.5rem;
    }

    .blog-overlay .blog-post .post-content .post-title a {
        color: #fff;
        transition: all 0.3s ease-in-out;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        transition: 0.3s ease-in-out;
    }

        .blog-overlay .blog-post .post-content .post-title a:hover {
            color: rgba(var(--bs-white-rgb),0.55);
        }

.blog-overlay .blog-post:hover .post-content {
    bottom: 1.25rem;
}

@media (hover: hover) {
    .blog-overlay .blog-post:hover figure img {
        transform: scale(1.075);
    }
}

@media (max-width:991.98px) {
    .swiper-blog .swiper-button-next,
    .swiper-blog .swiper-button-prev {
        top: 30%;
    }
}

/* Blog Menu sidebar*/
.menu-sidebar ul li a {
    display: block;
    padding: 0.35rem;
    color: var(--bs-dark);
    transition: all 0.3s ease-in-out;
    font-weight: 600;
}

    .menu-sidebar ul li a:hover {
        color: var(--bs-primary);
    }

/* Detail blog */
.detail-post .post-meta,
.detail-post .post-meta a {
    color: var(--bs-secondary)
}

    .detail-post .post-meta a:hover {
        color: var(--bs-primary) !important;
    }
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------
# TOP TAGS
--------------------------------------------------------------*/
.tag-list li a {
    padding: 0.35rem 1rem;
    display: block;
    border-radius: 0.25rem;
    background: var(--bs-lighter);
    color: var(--bs-body-color);
    margin-bottom: 0.75rem;
    transition: 0.3s ease-in-out;
}

    .tag-list li a:hover {
        background: var(--bs-primary-lighter);
        color: var(--bs-primary);
    }
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# MOBILE APPS
--------------------------------------------------------------*/
.app-info .app-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.app-info .app-link,
.app-info .app-download {
    max-width: 360px;
}

.app-info .app-qrcode {
    max-width: 160px;
}

.app-phone-image img {
    max-width: 240px;
}

@media(max-width: 991.98px) {

    .app-info .app-download,
    .app-info .app-link {
        width: 100%;
    }
}

@media(max-width: 576.98px) {
    .app-info .app-qrcode,
    .app-info .app-phone-image {
        display: none;
    }
}
/*--------------------------------------------------------------

/*--------------------------------------------------------------
# ABOUT
--------------------------------------------------------------*/
/* About city */
.about-city .about-image {
    border-radius: var(--bs-border-radius-lg) 0 0 var(--bs-border-radius-lg);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width:768.98px) {

    .about-city .about-image {
        display: none;
    }
}

@media (max-width:576.98px) {
    .about-city .about-content {
        padding: 1rem .75rem;
    }
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# TEAM
--------------------------------------------------------------*/
/* Team list */
.team-list .team-item .social-list a {
    color: var(--bs-secondary);
    transition: 0.3s ease-in-out;
    margin-right: 0.15rem;
}

    .team-list .team-item .social-list a:hover {
        color: var(--bs-primary);
    }

/* team Swiper */
.team-list .team-dot.swiper-pagination .swiper-pagination-bullet {
    background-color: #fff;
}

.team-list .team-swiper .team-prev,
.team-list .team-swiper .team-next {
    top: 28%;
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# SIGN UP
--------------------------------------------------------------*/
.signup-email .signup-image {
    border-radius: var(--bs-border-radius-lg) 0 0 var(--bs-border-radius-lg);
}

.signup-email .signup-content .input-group {
    max-width: 400px;
}

.signup-email .signup-note {
    font-size: 0.9rem;
    color: var(--bs-secondary-dark);
}

@media (max-width:768.98px) {

    .signup-email .signup-image {
        display: none;
    }
}

@media (max-width:576.98px) {
    .signup-email .signup-content {
        padding: 1rem .75rem;
    }
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# COUNDOWN TIMER
--------------------------------------------------------------*/
.countdown {
    display: inline-flex;
    align-items: center;
    list-style: none;
    padding-left: 0;
    text-align: center;
}

    .countdown .date-time {
        display: block;
        min-width: 90px;
        border-radius: var(--bs-border-radius-lg);
        background-color: rgba(var(--bs-white-rgb), 0.15);
        padding: 0.5rem;
    }

        .countdown .date-time:not(:last-child) {
            margin-right: 1rem;
        }

        .countdown .date-time .num {
            font-size: 2.15rem;
            display: block;
            font-weight: 600;
            line-height: 1.1;
        }

        .countdown .date-time .word {
            font-size: 0.85rem;
            display: block;
            text-transform: uppercase;
        }

@media(max-width:576.98px) {

    .countdown .date-time {
        min-width: 70px;
    }

        .countdown .date-time:not(:last-child) {
            margin-right: 0.5rem;
        }

        .countdown .date-time .num {
            font-size: 1.85rem;
        }

        .countdown .date-time .word {
            font-size: 0.75rem;
        }
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
/* General */
.footer {
    background-color: var(--bs-primary-darker);
    color: rgba(var(--bs-white-rgb), 0.55);
    padding-top: 20px;
}

    .footer a {
        color: var(--bs-white);
        transition: 0.3s ease-in-out;
    }

        .footer a:hover {
            color: var(--bs-primary);
        }

    /* Brand & Logo */
    .footer .brand-box img {
        max-height: 68px;
    }

    /* Get App */
    .footer .get-app-box {
        margin-bottom: 30px;
    }

        .footer .get-app-box img {
            height: 40px;
        }

    /* Linh box */
    .footer .link-box ul li:not(:last-child) {
        margin-bottom: 1.5rem;
    }

    /* Social */
    .footer .footer-social .social-list a {
        background: rgba(var(--bs-white-rgb),0.1);
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        margin-right: 0.25rem;
        color: #fff;
        transition: 0.3s ease-in-out;
    }

        .footer .footer-social .social-list a:hover {
            background: var(--bs-primary-lighter);
            color: var(--bs-primary);
        }

    .footer .footer-bottom {
        border-top: 1px solid rgba(var(--bs-white-rgb),0.15);
    }

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# FONTS
--------------------------------------------------------------*/
/* Font weght */
.fw-bold {
    font-weight: 600 !important;
}

.fw-bold-1 {
    font-weight: 500 !important;
}

.fw-bold-2 {
    font-weight: 600 !important;
}

.fw-bold-3 {
    font-weight: 700 !important;
}

.fw-bold-4 {
    font-weight: 800 !important;
}
/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# SPACING
--------------------------------------------------------------*/
/* Margin */
.section-mb-40 {
    margin-bottom: 40px !important;
}

.section-mt-40 {
    margin-top: 40px !important;
}

.section-mb-60 {
    margin-bottom: 60px !important;
}

.section-mt-60 {
    margin-top: 60px !important;
}

.section-mb-80 {
    margin-bottom: 80px !important;
}

.section-mt-80 {
    margin-top: 80px !important;
}

/* Pading*/
.section-pb-20 {
    margin-bottom: 20px !important;
}

.section-pt-20 {
    margin-top: 20px !important;
}

.section-pt-40 {
    padding-top: 40px !important;
}

.section-pb-40 {
    padding-bottom: 40px !important;
}

.section-pt-80 {
    padding-top: 80px !important;
}

.section-pb-80 {
    padding-bottom: 80px !important;
}

.section-pt-100 {
    padding-top: 100px !important;
}

.section-pb-100 {
    padding-bottom: 100px !important;
}

.section-pt-120 {
    padding-top: 120px !important;
}

.section-pb-120 {
    padding-bottom: 120px !important;
}

.section-pt-160 {
    padding-top: 160px !important;
}

.section-pb-160 {
    padding-bottom: 160px !important;
}

.section-pt-200 {
    padding-top: 200px !important;
}

.section-pb-200 {
    padding-bottom: 200px !important;
}

.section-pt-260 {
    padding-top: 260px !important;
}

.section-pb-260 {
    padding-bottom: 260px !important;
}

li.why-item div.content {
    margin: 0px 0px !important;
}

.countryli {
  margin: 0;
}


@media (max-width:991.98px) {
    .section-fix-mobile {
        margin-bottom: 10px !important;
    }
    .why-choose, .why-list {
        margin-bottom: 0px !important;
    }
    .amega-menu > .dropdown-menu.show {
        position: relative !important;
        display: block !important;
    }
    .amega-menu > .dropdown-menu {
        --bs-dropdown-box-shadow: none !important;
    }
        .amega-menu .dropdown-menu li div {
            color: #fff !important;
        }    
        .amega-menu > .dropdown-menu li:hover > a {
            background-color: #324d7b !important;
        }
}

a.destinationlink::after {
    padding-top: 3px;
    padding-left: 3px;
}

#search {
    padding-bottom:100px;
}
    #search .row .col-12 {
        border-bottom: 1px solid whitesmoke;
    }

.countrycombodiv button.form-select {
    border:none;
    padding:0px;
}

.paymentrow {
    display: none;
    background-color: #354769;
    color: white;
}

#header.showed .header-container .logo-nav .paymentrow {
    display: block !important;
}

.form-check input, .form-check img {
    cursor: pointer;
}


.OveronsClear .col-12:first-child, .HoewerkthetClear .col-12:first-child, .HoewerkthetClear .btn {
    display: none;
}
.OveronsClear .col-12:last-child, .HoewerkthetClear .col-12:last-child {
    width: 100% !important;
}
.HoewerkthetClear .section-mb-80 {
    margin-bottom: 0px !important;
}
.HoewerkthetClear b:first-child {
 font-size:20px;
}

.HoewerkthetClear .card-body .col-12 .pt-3 
{
    padding-top: 0px !important;
}
.OveronsClear .section-mb-80 {
    margin-bottom: 0px !important;
}

.custominvalid {
    border-color: #dc3545 !important;
    padding-right: calc(1.5em + .75rem) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right calc(.375em + .1875rem) center !important;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem) !important;
}

.flatpickr-calendar {
    max-width:300px;
}