@import url(https://fonts.googleapis.com/css2?family=Urbanist:wght@100..900&display=swap);

:root {
    --urbanist: "Urbanist", sans-serif;
    --bs-border-color: #dde1de;
    --bs-color-white: #fff;
    --bs-color-black: #000;
    --bs-color-700: #4d4d4d;
    --bs-background-1000: #000;
    --bs-background-white: #fff;
    --bs-color-1000: #000;
    --bs-background-body: #fff;
    --bs-background-1: #fff0ec;
    --bs-background-2: #d8f4db;
    --bs-background-3: #e3f0ff;
    --bs-background-4: #f6f3fc;
    --bs-background-5: #ffec88;
    --bs-background-6: #9dd3fb;
    --bs-background-7: #fcf2fa;
    --bs-background-8: #f6f3fc;
    --bs-background-9: #fcfcf3;
    --bs-background-12: #a8e2ef;
    --bs-background-card: #fff;
    --bs-neutral-0: #fff;
    --bs-neutral-100: #f2f4f6;
    --bs-neutral-200: #e4e6e8;
    --bs-neutral-300: #d6d7d8;
    --bs-neutral-400: #8e8e8e;
    --bs-neutral-500: #737373;
    --bs-neutral-600: #575756;
    --bs-neutral-700: #4d4d4d;
    --bs-neutral-800: #454545;
    --bs-neutral-900: #313131;
    --bs-neutral-1000: #000;
    --bs-button-bg: #70f46d;
    --bs-button-bg-2: #f2f4f6;
    --bs-button-text: #101010;
    --bs-button-text-2: #000;
    --bs-brand-2: #70f46d;
    --bs-brand-2-dark: #70f46d;
    --bs-brand-2-darken: #5edd5b;
    --bs-brand-2-light: #2d4a2c;
    --bs-link-hover-color: #235922;
    --bs-brand-1: #8acfff;
    --bs-warning: #ffc700;
    --bs-success: #34d674;
    --bs-danger: #ff2e00;
    --bs-color-grey: #afafaf;
    --bs-color-2: #c5ff41;
    --bs-color-grey-2: #f0f0f0;
    --bs-neutral-950: #1e1e1e;
    --bs-primary-rgb: 112, 244, 109
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit
}

main {
    display: block;
    clear: both
}

thead {
    font-weight: 600
}

/* product list */

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
}

.header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #70f46d 0%, #5dd45a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header p {
    font-size: 1.3rem;
    color: #b0b0b0;
    font-weight: 300;
}

.filters {

    margin-bottom: 40px;

}

.filter-btn {
    padding: 12px 28px;
    background: #f2f4f6;
    border: 2px solid rgba(112, 244, 109, 0.3);
    border-radius: 50px;
    color: #737373;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover {
    background: rgba(112, 244, 109, 0.2);
    border-color: #70f46d;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #70f46d;
    border-color: #70f46d;
    color: #000;
    box-shadow: 0 8px 25px rgba(112, 244, 109, 0.4);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);

    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: linear-gradient(90deg, #70f46d 0%, #5dd45a 100%); */
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 20px 50px rgba(112, 244, 109, 0.3); */
    /* border-color: rgba(112, 244, 109, 0.5); */
}

.product-image {
    height: 220px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(112, 244, 109, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-icon {
    font-size: 4rem;
    filter: drop-shadow(0 4px 15px rgba(112, 244, 109, 0.3));
    transition: transform 0.4s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 0.75rem;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.product-description {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    padding: 6px 12px;
    background: var(--Button-button-bg-2, #f2f4f6);
    border: .6px solid var(--bs-border-color);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #737373;
    font-weight: 600;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-count {
    font-size: 0.9rem;
    color: #888;
}

.view-btn {
    padding: 10px 20px;
    background: #70f46d;
    border: none;
    border-radius: 25px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-btn:hover {
    box-shadow: 0 8px 20px rgba(112, 244, 109, 0.4);
    transform: translateY(-2px);
}

.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeIn 0.6s ease forwards;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}


article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

img {
    max-width: 100%
}

button,
input,
select,
textarea {
    font-family: var(--urbanist);
    font-size: 14px
}

.custom-select:focus,
:focus,
[contenteditable].form-control:focus,
[type=email].form-control:focus,
[type=password].form-control:focus,
[type=tel].form-control:focus,
[type=text].form-control:focus,
button:focus,
input.form-control:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=text]:focus,
select:focus,
textarea.form-control:focus,
textarea:focus {
    box-shadow: none !important
}

input:focus::-moz-placeholder {
    opacity: 0;
    -moz-transition: .4s;
    transition: .4s
}

a {
    color: var(--bs-neutral-1000)
}

a:hover {
    color: var(--bs-link-hover-color) !important
}

li.hr span {
    width: 100%;
    height: 1px;
    background-color: #e4e4e4;
    margin: 20px 0;
    display: block
}

::placeholder {
    color: var(--bs-neutral-600);
    opacity: 1
}

:-ms-input-placeholder,
::-webkit-input-placeholder {
    color: var(--bs-neutral-600);
    opacity: 1
}

.fix {
    overflow: hidden
}

.hidden {
    display: none
}

.clear {
    clear: both
}

.section {
    float: left;
    width: 100%
}

.f-right {
    float: right
}

.capitalize {
    text-transform: capitalize
}

.uppercase {
    text-transform: uppercase
}

.bg-img {
    background-position: 50%;
    background-size: cover
}

.position-relative {
    position: relative
}

.height-100vh {
    height: 100vh !important
}

.custom-select:focus,
:focus,
[contenteditable].form-control:focus,
[type=email].form-control:focus,
[type=password].form-control:focus,
[type=tel].form-control:focus,
[type=text].form-control:focus,
button:focus,
input.form-control:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=text]:focus,
select:focus,
textarea.form-control:focus,
textarea:focus {
    outline: none !important;
    box-shadow: none
}

.hover-up,
.hover-up:hover {
    transition: all .25s cubic-bezier(.02, .01, .47, 1)
}

.hover-up:hover {
    transform: translateY(-3px)
}

body {
    background: #fff;
    background-size: contain
}

.form-control {
    border: 1px solid var(--bs-neutral-200);
    border-radius: 8px;
    background-color: var(--bs-background-card);
    padding: 11px 15px 13px;
    width: 100%;
    color: var(--bs-neutral-600)
}

.form-control::placeholder {
    color: var(--bs-neutral-400)
}

.form-group {
    position: relative
}

.form-group i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    font-size: 18px;
    color: var(--bs-neutral-600)
}

textarea.form-control {
    height: auto
}

.form-icons {
    padding-left: 41px
}

.text-white {
    color: #fff
}

.brand-1 {
    color: var(--bs-brand-1)
}

@media (min-width:1400px) {
    .container {
        max-width: 1248px
    }
}

strong {
    font-weight: 700
}

.divider {
    border-top: 1px solid var(--bs-neutral-200);
    margin: 20px 0
}

a {
    text-decoration: none
}

:hover {
    transition-duration: .2s
}

.box-section,
.section-box {
    display: block;
    width: 100%;

}

.product {
    padding-bottom: 40px;
    padding-top: 78px;
}

.text-shadow {
    text-shadow: 0 4px 4px rgba(0, 0, 0, .25)
}

.img-responsive {
    max-width: 100%
}

.link-green {
    color: #319f1f
}

.dropdown {
    position: relative
}

.dropdown .dropdown-menu.show {
    border: thin solid var(--bs-neutral-200);
    box-shadow: 0 6px 15px 0 rgba(64, 79, 100, .05);
    background-color: var(--bs-neutral-0);
    border-radius: 10px;
    padding: 0;
    overflow: hidden
}

.dropdown .dropdown-menu.show .dropdown-item {
    padding: 10px 20px;
    color: var(--bs-neutral-900);
    font-size: 14px
}

.dropdown .dropdown-menu.show .dropdown-item.active {
    color: var(--bs-neutral-0);
    text-decoration: none;
    background-color: var(--bs-neutral-700)
}

.dropdown .dropdown-menu.show .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: var(--bs-neutral-700)
}

.dropdown.dropdown-sort .dropdown-menu.show {
    border-radius: 10px;
    margin-top: 20px
}

.display-1 {
    font-size: 96px
}

.display-1,
.display-2 {
    line-height: 76px;
    font-family: var(--urbanist);
    font-weight: 400
}

.display-2 {
    font-size: 82px
}

.heading-1,
.heading-2,
.heading-3,
.heading-4,
.heading-5,
.heading-6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--urbanist);
    font-weight: 700
}

.heading-1,
h1 {
    font-size: 64px;
    line-height: 76px
}

.heading-2,
h2 {
    font-size: 52px;
    line-height: 76px
}

.heading-3,
h3 {
    font-size: 44px;
    line-height: 58px
}

.heading-4,
h4 {
    font-size: 36px;
    line-height: 48px
}

.heading-5,
h5 {
    font-size: 28px;
    line-height: 36px
}

.heading-6,
h6 {
    font-size: 24px;
    line-height: 32px
}

.heading-1-regular {
    font-weight: 400
}

.heading-1-medium {
    font-weight: 500
}

.heading-2-regular {
    font-weight: 400
}

.heading-2-medium {
    font-weight: 500
}

.heading-3-regular {
    font-weight: 400
}

.heading-3-medium {
    font-weight: 500
}

.heading-4-regular {
    font-weight: 400
}

.heading-4-medium {
    font-weight: 500
}

.heading-5-regular {
    font-weight: 400
}

.heading-5-medium {
    font-weight: 500
}

.heading-6-regular {
    font-weight: 400
}

.heading-6-medium {
    font-weight: 500
}

.text-label,
.text-lg,
.text-md,
.text-sm,
.text-xl,
p {
    font-family: var(--urbanist);
    font-weight: 500
}

.text-xs,
.text-xs-bold,
.text-xs-medium {
    font-size: 12px;
    line-height: 18px
}

.text-sm,
.text-sm-bold,
.text-sm-medium {
    font-size: 14px;
    line-height: 22px
}

.text-md,
.text-md-bold,
.text-md-medium {
    font-size: 16px;
    line-height: 26px
}

.text-lg,
.text-lg-bold,
.text-lg-medium {
    font-size: 18px;
    line-height: 28px
}

.text-xl,
.text-xl-bold,
.text-xl-medium {
    font-size: 20px;
    line-height: 32px
}

.text-lg-bold,
.text-md-bold,
.text-sm-bold,
.text-xl-bold,
.text-xs-bold {
    font-weight: 700 !important
}

.text-lg-medium,
.text-md-medium,
.text-sm-medium,
.text-xl-medium,
.text-xs-medium {
    font-weight: 500
}

.text-label {
    font-size: 22px;
    line-height: 27px
}

.text-15-medium {
    font-size: 15px;
    line-height: 23px;
    font-weight: 500;
    font-family: var(--urbanist)
}

.text-20-medium {
    line-height: 26px
}

.text-24-semibold {
    line-height: 29px;
    font-weight: 600;
    letter-spacing: 3%
}

.text-24-bold,
.text-24-semibold {
    font-size: 24px;
    font-family: var(--urbanist)
}

.text-24-bold {
    line-height: 34px;
    font-weight: 700
}

.text-24-medium {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    font-family: var(--urbanist)
}

.text-22-bold {
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    font-family: var(--urbanist)
}

.text-20-medium {
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    font-family: var(--urbanist)
}

.text-18-bold {
    font-size: 18px;
    line-height: 28px
}

.text-16-bold,
.text-18-bold {
    font-weight: 700;
    font-family: var(--urbanist)
}

.text-16-bold {
    font-size: 16px;
    line-height: 16px
}

.text-18-semibold {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    font-family: var(--urbanist)
}

.text-32-bold {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    font-family: var(--urbanist)
}

.text-48-semibold {
    font-size: 48px;
    line-height: 55px
}

.text-48-semibold,
.text-88-semibold {
    font-weight: 600;
    font-family: var(--urbanist)
}

.text-88-semibold {
    font-size: 88px;
    line-height: 76px
}

.text-96 {
    font-size: 96px !important;
    line-height: 103px !important;
    font-weight: 400 !important;
    font-family: var(--urbanist) !important
}

.linear-3 {
    background: linear-gradient(236deg, #22d1ee, #c5ff41)
}

.color-grey {
    color: var(--bs-color-grey)
}

.color-grey-2 {
    color: var(--bs-color-grey-2)
}

.linear-1 {
    background: linear-gradient(236deg, #22d1ee, #3d5af1)
}

.linear-2 {
    background: linear-gradient(236deg, #27d9ae, #23caee)
}

.border-linear-2 {
    border-image-source: linear-gradient(270deg, #22d1ee, #3d5af1) !important
}

.bg-1 {
    background-color: var(--bs-background-1) !important
}

.bg-2 {
    background-color: var(--bs-background-2) !important
}

.bg-3 {
    background-color: var(--bs-background-3) !important
}

.bg-4 {
    background-color: var(--bs-background-4) !important
}

.bg-5 {
    background-color: var(--bs-background-5) !important
}

.bg-6 {
    background-color: var(--bs-background-6) !important
}

.preloader {
    background-color: #ecf0f1;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    transition: .6s;
    margin: 0 auto
}

.preloader img {
    max-width: 250px
}

.w-85 {
    width: 85% !important
}

.dropdown-language .dropdown-item img {
    margin-right: 5px
}

.box-dropdown-cart {
    position: relative
}

.box-dropdown-cart .dropdown-account,
.box-dropdown-cart .dropdown-cart {
    padding: 25px !important;
    width: 120px
}

.box-dropdown-cart .dropdown-cart {
    width: 90px !important
}

.box-dropdown-cart .dropdown-account ul li,
.box-dropdown-cart .dropdown-cart ul li {
    margin-bottom: 15px
}

.box-dropdown-cart .dropdown-account ul li a,
.box-dropdown-cart .dropdown-cart ul li a {
    color: var(--bs-neutral-1000);
    text-decoration: none;
    transition-duration: .2s
}

.box-dropdown-cart .dropdown-account ul li a:hover,
.box-dropdown-cart .dropdown-cart ul li a:hover {
    transition-duration: .2s
}

.box-dropdown-cart .dropdown-account ul li a img,
.box-dropdown-cart .dropdown-cart ul li a img {
    float: left;
    margin: 4px 10px 0 0
}

.dropdown-cart {
    display: none;
    visibility: hidden;
    position: absolute;
    right: -70px;
    top: calc(100% + 22px);
    z-index: 99;
    width: 320px;
    background-color: #fff;
    padding: 22px;
    transition: all .25s cubic-bezier(.645, .045, .355, 1);
    border-radius: 0 0 4px 4px;
    border: 1px solid #3d565f
}

.dropdown-cart.dropdown-open {
    display: block;
    visibility: visible
}

.dropdown-account,
.dropdown-cart {
    right: 0;
    display: none;
    visibility: hidden;
    position: absolute;
    top: calc(100% + 0px);
    border-radius: 8px;
    z-index: 99;
    width: 220px;
    background-color: var(--bs-neutral-0);
    padding: 20px;
    box-shadow: 0 6px 15px 0 rgba(64, 79, 100, .05);
    transition: all .25s cubic-bezier(.645, .045, .355, 1);
    border: 0 !important
}

.dropdown-account.dropdown-open,
.dropdown-cart.dropdown-open {
    display: block;
    visibility: visible
}

.dropdown-account ul li,
.dropdown-cart ul li {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 20px
}

.dropdown-account ul li:last-child,
.dropdown-cart ul li:last-child {
    margin: 0
}

.dropdown-account ul li a,
.dropdown-cart ul li a {
    color: var(--bs-neutral-1000)
}

.dropdown-account ul li a:hover,
.dropdown-cart ul li a:hover {
    color: var(--bs-link-hover-color) !important
}

.bdrd8 {
    border-radius: 8px
}

.form-group .cb-remember {
    height: 15px;
    width: 15px;
    float: left;
    margin: 1px 10px 0 0
}

.form-group .remeber-me label {
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    margin-bottom: 0
}

.form-group label.text-sm-medium {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    color: var(--bs-neutral-1000);
    margin-bottom: 8px
}

.form-group input.username,
.form-group input.username:focus {
    background-image: url(/_next/static/media/username.e5f4b7e9.svg);
    background-position: left 18px center;
    background-repeat: no-repeat;
    padding-left: 45px
}

.form-group input.email,
.form-group input.email:focus {
    background-image: url(/_next/static/media/email.62ca64fc.svg);
    background-position: left 18px center;
    background-repeat: no-repeat;
    padding-left: 45px
}

.form-group input.phone,
.form-group input.phone:focus {
    background-image: url(/_next/static/media/phone.4e5d4cf8.svg);
    background-position: left 18px center;
    background-repeat: no-repeat;
    padding-left: 45px
}

.form-group input.password,
.form-group input.password:focus {
    background-image: url(/_next/static/media/pass.9e12f43e.svg);
    background-position: left 18px center;
    background-repeat: no-repeat;
    padding-left: 45px
}

.box-remember-forgot {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between
}

.background-body {
    background-color: var(--bs-background-body) !important
}

.button-bg-2 {
    background-color: var(--bs-button-bg-2) !important
}

.background-1 {
    background-color: var(--bs-background-1) !important
}

.background-2 {
    background-color: var(--bs-background-2) !important
}

.background-3 {
    background-color: var(--bs-background-3) !important
}

.background-4 {
    background-color: var(--bs-background-4) !important
}

.background-5 {
    background-color: var(--bs-background-5) !important
}

.background-6 {
    background-color: var(--bs-background-6) !important
}

.background-7 {
    background-color: var(--bs-background-7) !important
}

.background-8 {
    background-color: var(--bs-background-8) !important
}

.background-9 {
    background-color: var(--bs-background-9) !important
}

.background-card {
    background-color: var(--bs-background-card) !important
}

.background-0 {
    background-color: var(--bs-neutral-0) !important
}

.background-100 {
    background-color: var(--bs-neutral-100) !important
}

.background-1000 {
    background-color: var(--bs-neutral-1000) !important
}

.color-white {
    color: var(--bs-color-white) !important
}

.neutral-0 {
    color: var(--bs-neutral-0) !important
}

.neutral-100 {
    color: var(--bs-neutral-100) !important
}

.neutral-200 {
    color: var(--bs-neutral-200) !important
}

.neutral-300 {
    color: var(--bs-neutral-300) !important
}

.neutral-400 {
    color: var(--bs-neutral-400) !important
}

.neutral-500 {
    color: var(--bs-neutral-500) !important;
}

.neutral-600 {
    color: var(--bs-neutral-600) !important
}

.neutral-700 {
    color: var(--bs-neutral-700) !important
}

.neutral-800 {
    color: var(--bs-neutral-800) !important
}

.neutral-900 {
    color: var(--bs-neutral-900) !important
}

.neutral-1000 {
    color: var(--bs-neutral-1000) !important
}

.light-mode {
    display: inline-block !important;
    width: 200px
}

.dark-mode {
    display: none !important
}

.divider-line {
    margin: 20px 0;
    border-bottom: 1px solid var(--bs-border-color)
}

[data-bs-theme=dark] .bg-footer,
[data-bs-theme=dark] .card-fuel,
[data-bs-theme=dark] .card-gear,
[data-bs-theme=dark] .card-miles,
[data-bs-theme=dark] .card-seat,
[data-bs-theme=dark] .invert {
    filter: invert(1)
}

[data-bs-theme=dark] .card-journey-big .card-info .card-title a:hover,
[data-bs-theme=dark] .card-popular .card-info .card-title:hover {
    color: var(--bs-brand-2)
}

[data-bs-theme=dark] .card-popular .card-info .card-meta .card-button a svg {
    stroke: var(--bs-color-grey)
}

/* [data-bs-theme=dark] .btn.btn-dropdown {
    background-image: url(/_next/static/media/arrow-down-white.8f3e20ba.svg);
    background-repeat: no-repeat
} */

/* [data-bs-theme=dark] #dropdownSort {
    background: url(/_next/static/media/sort-w.790f39a7.svg) no-repeat right 16px center
} */

/* [data-bs-theme=dark] .header .main-menu li.has-children>a:after,
[data-bs-theme=dark] .header .main-menu li.has-children>a:hover:after {
    background-image: url(/_next/static/media/arrow-down-white.8f3e20ba.svg)
} */

[data-bs-theme=dark] .light-mode {
    display: none !important
}

[data-bs-theme=dark] .dark-mode {
    display: inline-block !important
}

[data-bs-theme=dark] .card-journey-big .card-image .wish,
[data-bs-theme=dark] .card-journey-small .card-image .wish {
    background-color: rgba(25, 25, 25, .796)
}

[data-bs-theme=dark] .card-journey-big .card-image .wish svg,
[data-bs-theme=dark] .card-journey-small .card-image .wish svg {
    stroke: #f2f2f2
}

[data-bs-theme=dark] .icon-cart span {
    background: url(/_next/static/media/arrow-down-sm-w.ea5825aa.svg) no-repeat 100%
}

[data-bs-theme=dark] .card-flight .card-info .card-route .icon-route {
    background: url(/_next/static/media/route.268cc0ae.svg) no-repeat 50%
}

[data-bs-theme=dark] .btn.btn-dropdown-search:after {
    background-image: url(/_next/static/media/dropdown-w.68b0b14f.svg)
}

[data-bs-theme=dark] .need-some-help {
    background: url(/_next/static/media/user-w.dad09fbf.svg) no-repeat 0
}

[data-bs-theme=dark] .box-calendar-date:before {
    background-image: url(/_next/static/media/dropdown-w.68b0b14f.svg)
}

[data-bs-theme=dark] .accordion-button:after {
    background-image: url(/_next/static/media/open-faq-dark.1c6eb6d9.png)
}

[data-bs-theme=dark] .accordion-button:not(.collapsed):after {
    background-image: url(/_next/static/media/close-faq-dark.e9f8271e.png)
}

[data-bs-theme=dark] .box-faqs-inner {
    background-image: url(/_next/static/media/bg-faq2-dark.919bb707.png)
}

[data-bs-theme=dark] .box-faqs {
    background-image: url(/_next/static/media/bg-faq-dark.22dab7fc.png)
}

[data-bs-theme=dark] .cb-container input:checked~.checkmark {
    background-image: url(/_next/static/media/checked-dark.8470fd1d.svg)
}

[data-bs-theme=dark] .link-see-more:hover {
    color: var(--bs-brand-1)
}

[data-bs-theme=dark] .pagination li a:hover {
    background-color: var(--bs-button-bg)
}

[data-bs-theme=dark] .dropdown-sort #dropdownSort,
[data-bs-theme=dark] .dropdown-sort .dropdown-toggle {
    background-image: url(/_next/static/media/dropdown-dark.68b0b14f.svg)
}

[data-bs-theme=dark] .box-filters-sidebar .block-filter .item-collapse {
    background-image: url(/_next/static/media/arrow-up-dark.be10e65c.svg)
}

[data-bs-theme=dark] .box-filters-sidebar .block-filter .item-collapse.collapsed-item {
    background-image: url(/_next/static/media/arrow-down-filter-dark.fae40e9f.svg)
}

[data-bs-theme=dark] .form-group input.username {
    background-image: url(/_next/static/media/username-w.46d935fb.svg)
}

[data-bs-theme=dark] .form-group input.password {
    background-image: url(/_next/static/media/pass-w.0236906b.svg)
}

[data-bs-theme=dark] .form-group input.email {
    background-image: url(/_next/static/media/email-w.b972c924.svg)
}

[data-bs-theme=dark] #scrollUp svg {
    fill: var(--bs-neutral-0)
}

[data-bs-theme=dark] .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children .menu-expand i {
    background: url(/_next/static/media/arrow-right-big-w.6bab5d7d.png) no-repeat 50%
}

[data-bs-theme=dark] .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children.active>.menu-expand i {
    background: url(/_next/static/media/arrow-down-big-w.7bf8aed3.png) no-repeat 50%
}

[data-bs-theme=dark] .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-logo .burger-icon {
    background-image: url(/_next/static/media/close-w.9d1ccc47.png)
}

.mobile-menu {
    margin-top: 30px
}

[data-bs-theme=dark] {
    --bs-border-color: #313131;
    --bs-color-white: #fff;
    --bs-background-1000: #000;
    --bs-background-body: #171717;
    --bs-background-1: #242120;
    --bs-background-2: #739393;
    --bs-background-3: #1d2024;
    --bs-background-4: #242226;
    --bs-background-5: #ffdc88;
    --bs-background-6: #93dced;
    --bs-background-7: #1e1c1d;
    --bs-background-8: #121d20;
    --bs-background-9: #212114;
    --bs-background-card: #191919;
    --bs-neutral-0: #000;
    --bs-neutral-100: #313131;
    --bs-neutral-200: #454545;
    --bs-neutral-300: #4d4d4d;
    --bs-neutral-400: #575756;
    --bs-neutral-500: #737373;
    --bs-neutral-600: #8e8e8e;
    --bs-neutral-700: #d6d7d8;
    --bs-neutral-800: #e4e6e8;
    --bs-neutral-900: #f2f4f6;
    --bs-neutral-1000: #f2f2f2;
    --bs-button-bg: #313131;
    --bs-button-bg-2: #222;
    --bs-button-text: #ededed;
    --bs-button-text-2: #afafaf
}

[data-bs-theme=dark] .dark-invert {
    filter: invert(1) !important
}

[data-bs-theme=dark] .card-popular .card-info .card-meta .meta-links a {
    border: 0 !important
}

.background-brand-2 {
    background-color: var(--bs-brand-2) !important
}

.datepicker table tr td,
.datepicker table tr th {
    width: auto;
    height: auto;
    border-radius: 6px;
    padding: 8px 15px
}

.datepicker .next {
    cursor: pointer;
    text-indent: -100px;
    overflow: hidden
}

.datepicker .next,
.datepicker .next:hover {
    background-image: url(/_next/static/media/next-day.4e3a6b5b.png);
    background-repeat: no-repeat;
    background-position: 50%
}

.datepicker .prev {
    cursor: pointer;
    text-indent: -100px;
    overflow: hidden
}

.datepicker .prev,
.datepicker .prev:hover {
    background-image: url(/_next/static/media/prev-day.c9012bb8.png);
    background-repeat: no-repeat;
    background-position: 50%
}

.datepicker table tr td.active.active,
.datepicker table tr td.active.highlighted.active,
.datepicker table tr td.active.highlighted:active,
.datepicker table tr td.active:active {
    background-color: var(--bs-brand-2);
    border-color: var(--bs-brand-2);
    color: var(--bs-color-black);
    background-image: linear-gradient(to bottom, var(--bs-brand-2), var(--bs-brand-2))
}

.datepicker table tr td.day:hover,
.datepicker table tr td.focused {
    color: var(--bs-color-black)
}

.box-calendar-date {
    position: relative
}

.box-calendar-date:before {
    content: "";
    height: 10px;
    width: 14px;
    background-color: transparent;
    background-image: url(/_next/static/media/dropdown.b6ff8543.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    position: absolute;
    right: 10px;
    top: 10px;
    border: 0
}

.box-calendar-date input {
    height: auto;
    background-color: transparent;
    padding-left: 22px !important;
    font-family: var(--urbanist);
    font-size: 14px;
    line-height: 22px;
    font-weight: 700
}

.box-calendar-date input,
.box-calendar-date input:focus {
    border: 0;
    background: url(/_next/static/media/calendar.633489da.svg) no-repeat 0
}

.w-68 {
    width: 68%
}

.noUi-handle {
    cursor: pointer !important
}

a,
button,
h4,
img,
input,
span {
    transition: all .3s ease 0s
}

@keyframes slideleft {
    10% {
        opacity: 0;
        transform: scale(0);
        right: 0
    }

    50% {
        opacity: 1;
        transform: scale(1)
    }

    90% {
        opacity: 0;
        transform: scale(0);
        right: 100%
    }
}

@keyframes spinner {
    0% {
        transform: perspective(120px) rotateX(0) rotateY(0)
    }

    50% {
        transform: perspective(120px) rotateX(-180deg) rotateY(0)
    }

    to {
        transform: perspective(120px) rotateX(-180deg) rotateY(-180deg)
    }
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(151, 119, 250, .8)
    }

    to {
        box-shadow: 0 0 0 5px transparent
    }
}

@keyframes shadow-pulse-big {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 63, 72, .1)
    }

    to {
        box-shadow: 0 0 0 20px transparent
    }
}

@keyframes jump {
    0% {
        transform: translate3d(0, 20%, 0)
    }

    to {
        transform: translateZ(0)
    }
}

.jump {
    transform-origin: 0;
    animation: jump .5s linear infinite alternate
}

.blur-move {
    animation: blur-move 10s ease infinite
}

@keyframes blur-move {
    0% {
        top: 0;
        left: -10%
    }

    25% {
        top: -45%;
        left: -12%
    }

    50% {
        top: -45%;
        left: 50%
    }

    75% {
        top: -45%;
        left: -12%
    }

    to {
        top: 0;
        left: -10%
    }
}

@keyframes spinning-coin-fall {
    0% {
        transform: translate(-50%, -50%) perspective(160px) rotateY(0deg) rotateX(0deg)
    }

    10% {
        opacity: 1;
        transform: translate(-50%, -50%) perspective(160px) rotateY(-65deg) rotateX(0deg)
    }

    70% {
        opacity: 1;
        transform: translate(-50%, -50%) perspective(160px) rotateY(4turn) rotateX(0deg)
    }

    90%,
    to {
        opacity: 1;
        transform: translate(-50%, -50%) perspective(160px) rotateY(8turn) rotateX(90deg)
    }
}

.spinning-coin-fall:before {
    animation: spinning-coin-fall 3s infinite;
    background-color: var(--bs-brand-2);
    border-radius: 100%;
    content: "";
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform-origin: center;
    width: 40px
}

.page-loader {
    width: 30px;
    height: 30px;
    border: 3px solid #235922;
    display: inline-block;
    position: relative;
    animation: rotation 1s linear infinite
}

.page-loader,
.page-loader:after {
    border-radius: 50%;
    box-sizing: border-box
}

.page-loader:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    border-color: #5edd5b transparent;
    border-style: solid;
    border-width: 3px
}

@keyframes rotation {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

body {
    color: var(--bs-color-1000);
    font-size: 14px;
    line-height: 24px;
    font-style: normal;
    font-weight: 400
}

.btn,
body {
    font-family: var(--urbanist)
}

.btn {
    border-radius: 0;
    padding: 16px 32px;
    font-size: 18px;
    line-height: 1;
    transition: .2s
}

.btn:hover {
    color: var(--bs-brand-2)
}

.btn.btn-dropdown {
    padding: 8px 35px 8px 18px;
    border-radius: 50px;
    border: 1px solid var(--bs-neutral-200);
    color: var(--bs-neutral-1000);
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    background: var(--bs-neutral-200) url(/_next/static/media/arrow-down.3ea4f356.svg) no-repeat right 15px center
}

.btn.btn-dropdown:after {
    display: none
}

.btn.btn-dropdown:hover {
    background-color: var(--bs-neutral-100)
}

.btn.btn-black {
    padding: 8px 18px !important;
    color: var(--bs-neutral-0) !important;
    font-size: 14px !important;
    line-height: 22px !important;
    font-family: var(--urbanist);
    font-weight: 700 !important;
    background-color: var(--bs-neutral-1000);
    border-radius: 12px;
    border: 0
}

.btn.btn-black:hover {
    color: var(--bs-neutral-1000) !important;
    background-color: var(--bs-neutral-100)
}

.btn.btn-small {
    padding: 1px 10px !important;
    font-weight: 500 !important;
    border-radius: 20px !important;
    border: 0 !important
}

.btn.btn-gray {
    padding: 8px 18px !important;
    color: var(--bs-neutral-1000) !important;
    font-size: 14px !important;
    line-height: 22px !important;
    font-family: var(--urbanist);
    font-weight: 700 !important;
    background-color: var(--bs-button-bg-2);
    border-radius: 12px;
    border: 1px solid var(--bs-border-color)
}

.btn.btn-gray svg {
    stroke: var(--bs-neutral-1000);
    margin-left: 13px
}

.btn.btn-gray:hover {
    color: #000 !important;
    background-color: var(--bs-brand-2);
    border: 1px solid var(--bs-brand-2)
}

.btn.btn-gray:hover svg {
    stroke: var(--bs-neutral-0)
}

.btn.btn-gray2 {
    padding: 12px 22px 12px 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--bs-neutral-1000) !important;
    font-size: 16px !important;
    line-height: 26px !important;
    font-family: var(--urbanist);
    font-weight: 700 !important;
    background-color: var(--bs-button-bg-2);
    border-radius: 8px
}

.btn.btn-gray2 svg {
    stroke: var(--bs-neutral-1000)
}

.btn.btn-gray2:hover {
    color: #000 !important;
    background-color: var(--bs-brand-2);
    border: 1px solid var(--bs-brand-2)
}

.btn.btn-gray2:hover svg {
    stroke: #000
}

.btn.btn-primary {
    padding: 12px 22px 12px 28px;
    color: #101010 !important;
    font-size: 14px !important;
    line-height: 26px !important;
    font-family: var(--urbanist);
    font-weight: 700 !important;
    background-color: var(--bs-brand-2);
    border: 0;
    border-radius: 12px;
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content
}

.btn.btn-primary svg {
    stroke: #101010
}

.btn.btn-primary:hover {
    color: #101010 !important;
    background-color: var(--bs-neutral-200)
}

.btn.btn-primary:hover svg {
    stroke: #101010
}

.btn.btn-primary2 {
    padding: 12px 22px 12px 28px;
    color: var(--bs-neutral-1000) !important;
    font-size: 14px !important;
    line-height: 26px !important;
    font-family: var(--urbanist);
    font-weight: 700 !important;
    background-color: var(--bs-background-2);
    border: 1px solid var(--bs-brand-2);
    border-radius: 12px;
    gap: 8px;
    display: flex;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content
}

.btn.btn-primary2 svg path {
    fill: var(--bs-neutral-1000)
}

.btn.btn-primary2:hover {
    color: #101010 !important;
    background-color: var(--bs-brand-2)
}

.btn.btn-primary2:hover svg path {
    fill: #000
}

.btn.btn-tag {
    padding: 12px 22px;
    line-height: 22px;
    background-color: var(--bs-neutral-100);
    color: var(--bs-neutral-1000)
}

.btn.btn-brand-2,
.btn.btn-tag {
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px
}

.btn.btn-brand-2 {
    padding: 16px 32px;
    line-height: 26px;
    background-color: var(--bs-brand-2);
    color: var(--bs-color-1000) !important;
    display: flex;
    align-items: center;
    border: 1px solid var(--bs-brand-2-darken);
    width: -moz-fit-content;
    width: fit-content
}

.btn.btn-brand-2 .first {
    margin-left: 0;
    margin-right: 8px
}

.btn.btn-brand-2:hover {
    color: #000 !important;
    background-color: var(--bs-brand-2-darken)
}

.btn.btn-mode {
    padding: 11px 18px;
    border-radius: 12px;
    background-color: var(--bs-neutral-100);
    color: var(--bs-neutral-1000);
    font-size: 14px;
    line-height: 22px;
    font-weight: 700
}

.btn.btn-mode img {
    display: block;
    vertical-align: middle
}

.btn.btn-dropdown-search {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    border: 0;
    color: var(--bs-neutral-1000);
    background-color: transparent;
    width: auto;
    text-align: left;
    padding: 5px 40px 5px 5px;
    position: relative
}

.btn.btn-dropdown-search:after {
    content: "";
    height: 10px;
    width: 14px;
    background-color: transparent;
    background-image: url(/_next/static/media/dropdown.b6ff8543.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    position: absolute;
    right: 10px;
    top: 10px;
    border: 0
}

.btn.btn-white {
    background-color: var(--bs-neutral-0);
    border: 1px solid var(--bs-border-color);
    border-radius: 12px;
    min-width: 140px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: var(--bs-neutral-1000)
}

.btn.btn-white:hover {
    box-shadow: 0 6px 22px 0 rgba(0, 0, 0, .09)
}

.btn.btn-white-md {
    padding: 10px 21px;
    background-color: var(--bs-neutral-0);
    border: 1px solid var(--bs-border-color);
    border-radius: 38px;
    min-width: auto;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    color: var(--bs-neutral-1000)
}

.btn.btn-white-md:hover {
    box-shadow: 0 6px 22px 0 rgba(0, 0, 0, .09)
}

.btn.btn-white-md img {
    display: inline-block;
    vertical-align: middle;
    margin: 0 1px
}

.btn.btn-signin {
    padding: 11px 18px;
    background-color: transparent;
    border: 0;
    border-radius: 12px;
    font-size: 14px;
    line-height: 26px;
    font-weight: 700;
    color: #fff
}

.btn.btn-signin:hover {
    box-shadow: 0 6px 22px 0 rgba(0, 0, 0, .09);
    background-color: var(--bs-brand-2-darken) !important;
    color: var(--bs-neutral-900) !important
}

.btn.btn-signin:hover svg path {
    fill: var(--bs-neutral-900)
}

.btn.btn-label-tag {
    padding: 8px 18px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    background-color: var(--bs-background-3);
    border-radius: 12px;
    border: 1px solid var(--bs-border-color);
    color: var(--bs-neutral-1000)
}

.btn.btn-label-tag:hover {
    background-color: var(--bs-neutral-1000) !important;
    color: var(--bs-neutral-0)
}

.btn.btn-login {
    background-color: var(--bs-neutral-100);
    border-radius: 8px;
    padding: 14px;
    min-width: 56px;
    color: var(--bs-neutral-1000);
    font-size: 14px;
    line-height: 22px;
    border: 1px solid var(--bs-neutral-200);
    height: 56px
}

.btn.btn-login img {
    display: block;
    margin: auto
}

.btn.btn-login:hover {
    background-color: var(--bs-neutral-900);
    color: var(--bs-neutral-0);
    border-color: var(--bs-neutral-900)
}

.btn.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px
}

.btn.btn-google img {
    margin-right: 10px;
    margin-left: 0
}

.btn.btn-sort {
    padding: 8px 10px
}

.btn.btn-sort svg {
    stroke: var(--bs-neutral-1000)
}

.btn.btn-sort:hover svg {
    stroke: var(--bs-brand-2)
}

.btn.btn-share {
    padding: 9px 18px;
    border: 1px solid var(--bs-border-color);
    border-radius: 50px;
    background-color: var(--bs-background-card);
    color: var(--bs-button-text-2);
    font-size: 14px;
    line-height: 22px;
    font-weight: 700
}

.btn.btn-share svg {
    fill: var(--bs-neutral-1000);
    margin-right: 6px
}

.btn.btn-wishlish {
    padding: 9px 18px;
    border-radius: 50px;
    background-color: var(--bs-button-bg-2);
    color: var(--bs-button-text-2);
    font-size: 14px;
    line-height: 22px;
    font-weight: 700
}

.btn.btn-wishlish svg {
    fill: var(--bs-neutral-1000);
    margin-right: 6px
}

.btn.btn-book {
    border-radius: 8px;

    width: 100%;
    background-color: var(--bs-brand-2);
    color: var(--bs-neutral-1000);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center
}

.btn.btn-book svg {
    stroke: var(--bs-neutral-1000);
    margin-left: 10px
}

@keyframes anime {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    to {
        background-position: 0 50%
    }
}

#scrollUp {
    position: relative;
    z-index: 10;
    display: inline-block;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    width: 40px;
    color: #fff;
    right: 30px;
    bottom: 30px;
    text-align: center;
    z-index: 999 !important;
    border: 0;
    background: var(--bs-neutral-900);
    line-height: 40px
}

#scrollUp svg {
    fill: var(--bs-brand-2);
    height: 14px;
    position: relative;
    z-index: 123
}

#scrollUp {
    animation: scale-up-center 1s cubic-bezier(.68, -.55, .265, 1.55) both
}

@keyframes pulse-border {
    0% {
        transform: translateY(-50%) translateZ(0) scale(1);
        opacity: 1
    }

    to {
        transform: translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0
    }
}

@keyframes scale-up-center {
    0% {
        transform: scale(.5)
    }

    to {
        transform: scale(1)
    }
}

.switch {
    position: relative;
    display: inline-block;
    width: 65px;
    height: 30px;
    vertical-align: middle
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.slider {
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bs-neutral-1000)
}

.slider,
.slider:before {
    position: absolute;
    transition: .4s
}

.slider:before {
    content: "";
    height: 21px;
    width: 21px;
    left: 5px;
    bottom: 5px;
    background: linear-gradient(236deg, #22d1ee, #c5ff41)
}

input:checked+.slider {
    background-color: #70f46d
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--bs-brand-1)
}

input:checked+.slider:before {
    transform: translateX(34px)
}

.avatar {
    position: relative;
    display: inline-block;
    width: 3rem;
    height: 3rem
}

.avatar-xs {
    width: 1.5rem;
    height: 1.5rem
}

.avatar-sm {
    width: 2rem;
    height: 2rem
}

.avatar-md {
    width: 2.5rem;
    height: 2.5rem
}

.avatar-lg {
    width: 3.5rem;
    height: 3.5rem
}

.avatar-xl {
    width: 5rem;
    height: 5rem
}

.avatar-xxl {
    width: 7rem;
    height: 7rem
}

.icon-shape {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle
}

.icon-xxs {
    width: 1rem;
    height: 1rem;
    line-height: 1rem
}

.icon-xs {
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem
}

.icon-sm {
    width: 2rem;
    height: 2rem;
    line-height: 2rem
}

.icon-md {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem
}

.icon-lg {
    width: 3rem;
    height: 3rem;
    line-height: 3rem
}

.icon-xl {
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem
}

.icon-xxl {
    width: 4rem;
    height: 4rem;
    line-height: 4rem
}

.icon-xxxl {
    width: 7rem;
    height: 7rem;
    line-height: 7rem
}

.icon_50 {
    width: 50px;
    height: 50px;
    line-height: 50px
}

.icon_65 {
    width: 65px;
    height: 65px;
    line-height: 65px
}

.icon_70 {
    width: 70px;
    height: 70px;
    line-height: 70px
}

.icon_115 {
    width: 120px;
    height: 120px;
    line-height: 120px
}

.icon_160 {
    width: 160px;
    height: 160px;
    line-height: 160px
}

.icon_150 {
    width: 150px;
    height: 150px;
    line-height: 150px
}

.icon_140 {
    width: 140px;
    height: 140px;
    line-height: 140px
}

.icon_80 {
    width: 80px;
    height: 80px;
    line-height: 80px
}

.cb-container {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    line-height: 24px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.cb-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.checkmark {
    position: absolute;
    top: 1px;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: transparent;
    background-image: url(/_next/static/media/check.ec60cf33.svg);
    border-radius: 4px
}

.cb-container input:checked~.checkmark,
.checkmark {
    background-position: 50%;
    background-repeat: no-repeat
}

.cb-container input:checked~.checkmark {
    background-image: url(/_next/static/media/checked.2411ab2e.svg)
}

.cb-container .text-small {
    color: var(--bs-neutral-500);
    font-weight: 400;
    font-size: 17px;
    line-height: 24px
}

.cb-container input:checked~.text-small {
    color: var(--bs-neutral-1000);
    font-weight: 500
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none
}

.cb-container input:checked~.checkmark:after {
    display: block
}

.cb-container input:checked~.text-lbl {
    color: neutral-500
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    opacity: 1
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    opacity: 1
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    opacity: 1
}

input {
    border: 1px solid #ececec;
    border-radius: 10px;
    height: 50px;
    box-shadow: none;
    padding-left: 20px;
    font-size: 16px;
    width: 100%
}

input:focus {
    border: 1px solid var(--bs-neutral-300)
}

input:focus,
select {
    background: transparent
}

select {
    width: 100%;
    border: 0 solid #ececec;
    box-shadow: none;
    color: var(--bs-neutral-1000)
}

option,
select {
    font-size: 16px
}

option {
    background: #fff;
    border: 0 solid #626262;
    padding-left: 10px
}

textarea {
    border: 1px solid #ececec;
    border-radius: 10px;
    height: 50px;
    box-shadow: none;
    padding: 10px 10px 10px 20px;
    font-size: 16px;
    width: 100%;
    min-height: 250px
}

textarea:focus {
    background: transparent;
    border: 1px solid var(--bs-neutral-300)
}

.contact-from-area .contact-form-style button {
    font-size: 18px;
    font-weight: 500;
    padding: 20px 40px;
    color: #fff;
    border: none;
    background-color: var(--bs-brand-1);
    border-radius: 10px;
    font-family: var(--urbanist)
}

.contact-from-area .contact-form-style button:hover {
    background-color: #8acfff !important
}

.form-group {
    margin-bottom: 12px
}

.form-group label {
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    font-family: var(--urbanist);
    margin-bottom: 16px
}

.form-group input {
    background: var(--bs-neutral-100);
    border: 1px solid var(--bs-neutral-200);
    height: 56px;
    box-shadow: none;
    padding-left: 15px 15px 12px 15px;
    font-size: 16px;
    width: 100%
}

.form-group input:focus {
    background: transparent;
    border-color: var(--bs-neutral-300)
}

.form-group input.form-icons {
    padding-left: 42px
}

label {
    margin-bottom: 5px
}

.radio-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.radio-container input:checked~.checkmark {
    background-color: var(--bs-color-2)
}

.radio-container input:checked~.checkmark:after {
    display: block
}

.radio-container:hover input~.checkmark {
    background-color: var(--bs-neutral-300)
}

.radio-container .checkmark:after {
    left: 7px;
    top: 5px;
    width: 8px;
    height: 10px;
    border: solid var(--bs-neutral-1000);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg)
}

.shadow-2 {
    box-shadow: 0 6px 22px 0 rgba(0, 0, 0, .09)
}

.card-journey-big {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--bs-border-color);
    max-width: 560px;
    width: 100%
}

.card-journey-big:hover {
    box-shadow: 0 6px 22px 0 rgba(0, 0, 0, .09)
}

.card-journey-big .card-image {
    position: relative;
    overflow: hidden;
    height: 326px
}

.card-journey-big .card-image .wish {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background-color: hsla(0, 0%, 100%, .82);
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    z-index: 12
}

.card-journey-big .card-image .wish svg {
    stroke: var(--bs-neutral-1000)
}

.card-journey-big .card-image .wish:hover svg {
    stroke: var(--bs-brand-2);
    fill: var(--bs-brand-2)
}

.card-journey-big .card-image img {
    display: block;
    width: 100%
}

.card-journey-big .card-info {
    padding: 43px 32px 32px;
    background-color: var(--bs-neutral-0);
    border-radius: 12px;
    position: relative;
    margin-top: -40px
}

.card-journey-big .card-info .card-rating {
    position: absolute;
    top: -19px;
    z-index: 13;
    left: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.card-journey-big .card-info .card-rating .card-left .lightning {
    background-color: var(--bs-brand-2);
    display: inline-block;
    padding: 7px 19px 7px 39px;
    border-radius: 50px;
    color: var(--bs-color-1000);
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    background-image: url(/_next/static/media/lightning.c463c1d2.svg);
    background-repeat: no-repeat;
    background-position: left 15px center
}

.card-journey-big .card-info .card-rating .card-right .rating {
    display: inline-block;
    padding: 6px 16px 6px 30px;
    background-color: var(--bs-neutral-0);
    border-radius: 50px;
    color: var(--bs-neutral-1000);
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    border: 1px solid var(--bs-border-color);
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .07);
    background-image: url(/_next/static/media/star.91d69b98.svg);
    background-repeat: no-repeat;
    background-position: left 12px center
}

.card-journey-big .card-info .card-title a {
    color: var(--bs-neutral-1000)
}

.card-journey-big .card-info .card-program {
    position: relative;
    display: flex;
    justify-content: space-between
}

.card-journey-big .card-info .card-program .duration .card-price {
    display: flex;
    align-items: flex-end
}

.card-journey-big .card-info .card-program .duration .card-price h6 {
    margin-right: 6px
}

.card-journey-small {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--bs-border-color);
    margin-bottom: 24px
}

.card-journey-small:hover {
    box-shadow: 0 6px 22px 0 rgba(0, 0, 0, .09)
}

.card-journey-small .card-image {
    position: relative;
    overflow: hidden
}

.card-journey-small .card-image .wish {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background-color: hsla(0, 0%, 100%, .82);
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    z-index: 12
}

.card-journey-small .card-image .wish svg {
    stroke: var(--bs-neutral-1000)
}

.card-journey-small .card-image .wish:hover svg {
    stroke: var(--bs-brand-2);
    fill: var(--bs-brand-2)
}

.card-journey-small .card-image .label {
    position: absolute;
    top: 22px;
    left: 25px;
    border-radius: 50px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    color: var(--bs-brand-2);
    z-index: 12;
    padding: 5px 22px;
    background-color: var(--bs-background-card)
}

.card-journey-small .card-image .label.bestsale {
    color: var(--bs-success)
}

.card-journey-small .card-image .label.saleoff {
    color: var(--bs-brand-2)
}

.card-journey-small .card-image img {
    display: block;
    width: auto;
    height: 100%;
    max-width: none;
    min-width: 100%
}

.card-journey-small .card-info {
    padding: 38px 30px;
    background-color: var(--bs-neutral-0);
    border-radius: 12px;
    position: relative;
    margin-top: -40px
}

.card-journey-small .card-info .card-facilities {
    border-top: 1px solid var(--bs-border-color);
    padding-top: 25px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.card-journey-small .card-info .card-facilities .item-facilities {
    width: 50%
}

.card-journey-small .card-info .card-facilities .item-facilities p {
    background-repeat: no-repeat;
    background-position: 0;
    padding: 0 0 0 30px;
    margin-bottom: 13px
}




.card-journey-small .card-info .card-rating .card-right .rating {
    display: inline-block;
    padding: 2px 14px 2px 28px;
    background-color: var(--bs-neutral-0);
    border-radius: 8px;
    color: var(--bs-neutral-1000);
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    border: 1px solid var(--bs-border-color);
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .07);
    background-image: url(/_next/static/media/star.91d69b98.svg);
    background-repeat: no-repeat;
    background-position: left 10px center
}

.card-journey-small .card-info .card-title {
    margin-bottom: 8px
}

.card-journey-small .card-info .card-title a {
    color: var(--bs-neutral-1000)
}

.card-journey-small .card-info .card-title a:hover {
    color: var(--bs-link-hover-color) !important
}

.card-journey-small .card-info .card-program {
    position: relative
}

.card-journey-small .card-info .card-program .card-location {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px
}

.card-journey-small .card-info .card-program .card-location .text-location {
    background: url(/_next/static/media/location.176dcc17.svg) no-repeat 0;
    padding-left: 20px
}

.card-journey-small .card-info .card-program .card-location .text-star img {
    margin-left: 2px
}

.card-journey-small .card-info .card-program .card-facitlities {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -15px;
    padding-top: 27px;
    border-top: 1px solid var(--bs-border-color);
    margin-bottom: 15px
}

.card-journey-small .card-info .card-program .card-facitlities .card-fuel,
.card-journey-small .card-info .card-program .card-facitlities .card-gear,
.card-journey-small .card-info .card-program .card-facitlities .card-miles,
.card-journey-small .card-info .card-program .card-facitlities .card-seat {
    width: 50%;
    padding: 0 0 0 30px;
    margin-bottom: 13px;
    color: #000
}

.card-journey-small .card-info .card-program .card-facitlities .card-miles {
    background: url(/_next/static/media/mile.3662f0d7.svg) no-repeat 0
}

.card-journey-small .card-info .card-program .card-facitlities .card-gear {
    background: url(/_next/static/media/automatic.e6230f51.svg) no-repeat 0
}

.card-journey-small .card-info .card-program .card-facitlities .card-fuel {
    background: url(/_next/static/media/fuel.e9f73ef5.svg) no-repeat 0
}

.card-journey-small .card-info .card-program .card-facitlities .card-seat {
    background: url(/_next/static/media/seat.d93242be.svg) no-repeat 0
}

.card-journey-small .card-info .card-program .duration {
    margin-bottom: 45px
}

.card-journey-small .card-info .card-program .duration .card-price {
    display: flex;
    align-items: flex-end
}

.card-journey-small .card-info .card-program .duration .card-price h6 {
    margin-right: 6px
}

.card-journey-small .card-info .card-program .card-duration-tour {
    display: flex;
    align-items: center;
    margin-bottom: 35px
}


.card-journey-small .card-info .card-program .endtime {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.card-journey-small .card-info .card-program .endtime .card-price {
    display: flex;
    align-items: flex-end
}

.card-journey-small .card-info .card-program .endtime .card-price h6 {
    margin-right: 6px
}

.card-journey-small.card-journey-small-type-2 .card-image {
    height: 246px
}

.card-journey-small.card-journey-small-type-2 .card-image img {
    min-width: 100%
}

.card-journey-small.card-journey-small-type-2 .card-links {
    margin-top: 24px
}

.card-journey-small.card-journey-small-type-2 .card-links ul {
    display: flex;
    align-items: center;
    margin: 0 -10px;
    flex-wrap: wrap;
    list-style: disc;
    padding-left: 30px
}

.card-journey-small.card-journey-small-type-2 .card-links ul li {
    width: 50%;
    padding: 0 10px 0 0;
    margin-bottom: 18px;
    color: var(--bs-neutral-500)
}

.card-journey-small.card-journey-small-type-2 .card-links ul li:hover {
    color: var(--bs-neutral-1000)
}

.card-journey-small.card-journey-small-type-2 .card-links ul li a {
    color: var(--bs-neutral-500);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500
}

.card-journey-small.card-journey-small-type-2 .card-links ul li a:hover {
    color: var(--bs-neutral-1000)
}

.card-journey-small.card-journey-small-type-3 {
    border: 0
}

.card-journey-small.card-journey-small-type-3 .card-info {
    margin-top: 0;
    padding: 25px 17px 10px
}

.card-journey-small.card-journey-small-type-3 .card-image {
    border-radius: 12px
}

.card-journey-small.card-grid-real .card-info {
    border: 1px solid var(--bs-border-color);
    border-radius: 12px;
    margin: -40px -1px -1px
}

.card-journey-small.card-grid-real .card-info .card-location {
    margin-bottom: 27px
}

.card-journey-small.card-grid-car {
    border: 1px solid var(--bs-border-color);
    background-color: var(--bs-neutral-0) !important
}

.card-journey-small.card-grid-car .card-info {
    border: 1px solid var(--bs-border-color);
    border-radius: 12px;
    margin: 0 -1px -1px
}

.card-journey-small.card-grid-car .card-info .card-location {
    margin-bottom: 27px
}

.card-journey-small.card-grid-car .card-image {
    line-height: 326px
}

.card-journey-small.card-grid-car .card-image img {
    max-width: 100%;
    height: auto;
    min-width: auto;
    margin: auto;
    display: inline-block;
    vertical-align: middle
}

.card-popular {
    padding: 15px 16px 19px;
    border-radius: 12px;
    border: 1px solid var(--bs-border-color);
    margin-bottom: 24px
}

.card-popular .card-image {
    position: relative;
    overflow: hidden;
    height: auto;
    border: 1px solid var(--bs-border-color);
    width: 100%;
    border-radius: 10px;
    margin-bottom: 18px
}

.card-popular .card-image img {
    display: block;
    width: 100%
}

.card-popular .card-info .card-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: var(--bs-neutral-1000);
    margin-bottom: 4px;
    display: block
}

.card-popular .card-info .card-title:hover {
    color: var(--bs-link-hover-color) !important
}

.card-popular .card-info .card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.card-popular .card-info .card-meta .meta-links a {
    color: var(--bs-neutral-500);
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 18px;
    border: .6px solid var(--bs-border-color);
    background: var(--Button-button-bg-2, #f2f4f6)
}

.card-popular .card-info .card-meta .card-button a {
    display: inline-block;
    height: 27px;
    width: 27px;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    background-color: var(--bs-neutral-100)
}

.card-popular .card-info .card-meta .card-button a svg {
    stroke: var(--bs-neutral-1000)
}

.card-popular .card-info .card-meta .card-button a:hover {
    background-color: var(--bs-brand-2)
}

.card-popular .card-info .card-meta .card-button a:hover svg {
    stroke: #000
}

.card-popular.card-top-destination {
    border-radius: 16px;
    display: flex;
    align-items: center
}

.card-popular.card-top-destination:hover {
    box-shadow: 0 6px 22px 0 rgba(0, 0, 0, .09)
}

.card-popular.card-top-destination .card-image {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 18px;
    margin-bottom: 0
}

.card-popular.card-top-destination .card-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%
}

.card-popular.card-top-destination .card-info {
    position: relative;
    width: 100%
}

.card-popular.card-top-destination .card-info .card-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700
}

.card-popular.card-top-destination .card-info .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

.card-popular.card-top-destination .card-info .card-meta .meta-links {
    margin-bottom: 10px
}

.card-popular-2 {
    padding: 18px;
    border-radius: 12px;
    border: 1px solid var(--bs-border-color);
    margin-bottom: 24px;
    background-color: var(--bs-button-bg-2)
}

.card-popular-2 .card-info h6 {
    padding: 10px;
    margin: 0
}

.card-popular-2 .card-meta {
    margin-top: 5px;
    padding: 12px 26px;
    background-color: var(--bs-button-bg);
    color: var(--bs-neutral-0);
    border-radius: 16px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.card-popular-2 .card-meta .meta-links {
    width: 75%;
    line-height: 22px;
    color: var(--bs-color-white)
}

.card-popular-2 .card-meta .card-button {
    width: 45%;
    text-align: right
}

.card-popular-2 .card-meta .card-button a {
    display: inline-block;
    height: 27px;
    width: 27px;
    text-align: center;
    line-height: 25px;
    border-radius: 50%;
    background-color: var(--bs-neutral-0)
}

.card-popular-2 .card-meta .card-button a svg {
    stroke: var(--bs-neutral-1000)
}

.card-popular-2.card-popular-3 {
    background-color: var(--bs-brand-2)
}

.card-popular-2.card-popular-3 .card-info h6 {
    color: var(--bs-neutral-1000) !important
}

.card-why-choose-us {
    text-align: center;
    position: relative;
    border: 1px solid var(--bs-border-color);
    border-radius: 12px;
    padding: 24px 32px;
    margin-bottom: 24px;
    background-color: var(--bs-brand-2)
}

.card-why-choose-us:hover {
    box-shadow: 0 6px 22px 0 rgba(0, 0, 0, .09)
}

.card-why-choose-us .card-image {
    margin-bottom: 11px
}

.card-why-choose-us .card-info h6 {
    margin-bottom: 8px;
    color: var(--bs-neutral-1000)
}

.card-why-choose-us .card-info p {
    color: var(--bs-neutral-600)
}

.card-why-choose-us.card-why-choose-us-type-2,
.card-why-choose-us.card-why-choose-us-type-3 {
    text-align: left;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-color: var(--bs-border-color);
    min-height: 268px
}

.card-why-choose-us.card-why-choose-us-type-3 {
    padding-right: 80px;
    background-color: var(--bs-brand-2)
}

.card-flight {
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    max-width: 612px;
    width: 100%;
    min-width: 612px;
    margin-bottom: 24px
}

.card-flight .card-image {
    max-width: 263px;
    width: 100%;
    height: 311px
}

.card-flight .card-image .wish {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 32px;
    height: 32px;
    background-color: hsla(0, 0%, 100%, .82);
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    z-index: 12
}

.card-flight .card-image .wish svg {
    stroke: var(--bs-neutral-1000)
}

.card-flight .card-image .wish:hover svg {
    stroke: var(--bs-brand-2);
    fill: var(--bs-brand-2)
}

.card-flight .card-image img {
    display: block;
    height: auto;
    min-height: 100%;
    max-width: none;
    min-width: 100%;
    max-height: 100%
}

.card-flight .card-info {
    padding: 38px 31px;
    width: calc(100% + 30px);
    margin-left: -30px;
    background-color: var(--bs-neutral-0);
    border-radius: 12px;
    height: 311px
}

.card-flight .card-info .card-date {
    display: flex;
    align-items: center;
    margin-bottom: 8px
}




.card-flight .card-info .card-route {
    display: flex;
    align-items: center;
    margin-bottom: 18px
}




.slider-labels {
    margin-top: 10px
}

.noUi-target,
.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    touch-action: none;
    -moz-user-select: none;
    user-select: none;
    box-sizing: border-box
}

.noUi-target {
    position: relative;
    direction: ltr
}

.noUi-base {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1
}

.noUi-origin {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0
}

.noUi-handle {
    position: relative;
    z-index: 1
}

.noUi-stacking .noUi-handle {
    z-index: 10
}

.noUi-state-tap .noUi-origin {
    transition: left .3s, top .3s
}

.noUi-state-drag * {
    cursor: inherit !important
}

.noUi-base,
.noUi-handle {
    transform: translateZ(0)
}

.noUi-horizontal {
    height: 4px
}

.noUi-horizontal .noUi-handle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #345dbb
}

.noUi-background {
    background: #d6d7d9
}

.noUi-connect {
    background: #345dbb
}

.noUi-origin,
.noUi-target {
    border-radius: 2px
}

.noUi-draggable {
    cursor: w-resize
}

.noUi-vertical .noUi-draggable {
    cursor: n-resize
}

.noUi-handle {
    cursor: default;
    box-sizing: content-box !important
}

.noUi-handle:active {
    border: 8px solid #345dbb;
    border: 8px solid rgba(53, 93, 187, .38);
    -webkit-background-clip: padding-box;
    background-clip: padding-box
}

[disabled] .noUi-connect,
[disabled].noUi-connect {
    background: var(--bs-neutral-1000)
}

[disabled] .noUi-handle,
[disabled].noUi-origin {
    cursor: not-allowed
}

.ui-slider-handle {
    display: none
}

.ui-widget.ui-widget-content {
    border: 0 solid #ebebeb
}

.noUi-target {
    border-radius: 4px
}

.noUi-horizontal {
    height: 6px
}

.noUi-background {
    background: var(--bs-neutral-200)
}

.noUi-origin {
    border-radius: 4px
}

.noUi-connect {
    background: var(--bs-neutral-1000);
    transition: background .45s;
    height: 6px;
    margin-top: 0
}

.noUi-horizontal .noUi-handle {
    background-color: var(--bs-neutral-1000);
    border: 3px solid var(--bs-neutral-0);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .05);
    left: -6px;
    top: -6px
}

.noUi-handle:active {
    left: -6px;
    top: -6px
}

.noUi-tooltip {
    position: absolute;
    top: -25px;
    left: -11px;
    right: 0;
    color: var(--bs-neutral-1000);
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    width: 25px
}

.banner-hero.hero-1 {
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    position: relative
}

.banner-hero.hero-1 .banner-description,
.banner-hero.hero-1 .heading-banner {
    color: #fff
}

.banner-hero.hero-1 .bg-icon-banner {
    position: absolute;
    bottom: 91px;
    z-index: 1;
    height: 132px;
    width: 140px;
    left: 50px;
    background-size: auto
}

.banner-hero.hero-1 .banner-inner {
    padding-top: 200px;
    padding-bottom: 176px;
    position: relative
}

.banner-hero.hero-1 .banner-inner span.bg-circle {
    position: absolute;
    top: 25%;
    z-index: 1;
    height: 490px;
    width: 35%;
    right: 120px;
    background-size: contain
}

.banner-hero.hero-1 .banner-inner .container {
    position: relative;
    z-index: 2
}

.banner-hero.hero-2 {
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    position: relative
}

.banner-hero.hero-2 .banner-inner {
    padding-top: 200px;
    padding-bottom: 0;
    position: relative
}

.banner-hero.hero-2 .banner-inner h1 {
    color: var(--bs-neutral-0);
    margin-bottom: 100px
}

.banner-hero.hero-2 .banner-inner .bg-banner {
    position: absolute;
    bottom: 0;
    top: 150px;
    z-index: 1;
    width: 100%;
    max-width: 777px;
    right: 120px;
    background-size: contain
}

.banner-hero.hero-2 .banner-inner .block-banner {
    padding-bottom: 90px
}

.banner-hero.hero-2 .banner-inner .container {
    position: relative;
    z-index: 2
}

.cards-banner {
    display: flex;
    flex-wrap: wrap;
    max-width: 701px
}

.cards-banner .card-banner-1 {
    width: calc(35% - 24px);
    padding: 27px;
    margin-right: 24px;
    border-radius: 34px;
    margin-bottom: 24px
}

.cards-banner .card-banner-2 {
    width: 65%;
    padding: 27px;
    border-radius: 34px;
    margin-bottom: 24px
}

@keyframes hero-thumb-animation {
    0% {
        transform: translateY(-20px)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes hero-thumb-sm-animation {
    0% {
        transform: translateY(0) translateX(50px)
    }

    to {
        transform: translateY(0) translateX(0)
    }
}

@keyframes hero-thumb-sm-2-animation {
    0% {
        transform: translateY(-50px)
    }

    to {
        transform: translateY(0)
    }
}

.shape-1 {
    animation: hero-thumb-animation 2s linear infinite alternate
}

.shape-2 {
    animation: hero-thumb-sm-animation 4s linear infinite alternate
}

.shape-3 {
    animation: hero-thumb-sm-2-animation 4s linear infinite alternate
}

.text-primary {
    color: var(--bs-brand-2) !important
}

.text-primary-dark {
    color: var(--bs-link-hover-color) !important
}

.py-96 {
    padding-bottom: 96px
}

.pt-96,
.py-96 {
    padding-top: 96px
}

.pb-96 {
    padding-bottom: 96px
}

.top-bar {
    background-color: #313131;
    padding: 10px 0;
    color: var(--bs-color-white)
}

.top-bar .text-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

.top-bar-2 {
    color: var(--bs-neutral-1000);
    padding: 0
}

.top-bar-2 .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.top-bar-2 .btn.btn-mode {
    background-color: transparent;
    padding: 8px 18px
}

.top-bar-2 .top-right-header {
    display: flex;
    align-items: center;
    justify-content: flex-end
}



.top-bar-2 .text-header .link-secondary {
    color: var(--bs-neutral-0)
}

.top-bar-2 .text-header .link-secondary svg {
    stroke: var(--bs-neutral-0)
}

.top-bar-2 .text-header-info a {
    color: #fff
}

.top-bar-2 .text-header-info a svg {
    margin-right: 3px
}

.top-bar-2 .text-header-info .phone-head {
    margin-right: 34px
}

.top-bar-2 .text-header-info .email-head svg,
.top-bar-2 .text-header-info .phone-head svg {
    fill: #fff
}

.top-bar-2 .head-currency,
.top-bar-2 .head-lang {
    border-right: 1px solid hsla(0, 0%, 100%, .3);
    height: 42px;
    line-height: 42px;
    padding-right: 15px
}

.top-bar-2 .top-button-mode {
    position: relative
}

.top-bar-3 {
    border-bottom: 1px solid hsla(0, 0%, 100%, .3)
}

.header {
    padding: 0;
    float: left;
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    z-index: 123;
    border-bottom: 1px solid var(--bs-neutral-200)
}

.header .container-fluid {
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px
}

.header .main-header {
    position: relative
}

.header .main-header,
.header .main-header .header-left {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header .main-header .header-left {
    width: 100%
}

.header .main-header .header-left .header-logo {
    margin-right: 0;
    min-width: 170px
}

.header .main-header .header-left .header-nav {
    width: 100%;
    text-align: center
}

.header .main-header .header-right {
    width: 30%;
    min-width: 405px;
    text-align: right;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end
}

.header .nav-main-menu {
    display: flex;
    padding: 0;
    align-items: center;
    justify-content: center;
    text-align: left
}

.header .main-menu li {
    float: left;
    position: relative;
    padding: 0 7px
}

.header .main-menu li.has-children>a:after {
    content: "";
    height: 10px;
    width: 10px;
    opacity: 1;
    margin-left: 0;
    position: absolute;
    top: 28px;
    right: 0;
    opacity: .6
}

.header .main-menu li.has-children>a:after,
.header .main-menu li.has-children>a:hover:after {
    /* background: url(/_next/static/media/arrow-down.3ea4f356.svg) no-repeat 50% */
}

.header .main-menu li.arrow-white>a:after,
.header .main-menu li.arrow-white>a:hover:after {
    /* background: url(/_next/static/media/arrow-down-white.8f3e20ba.svg) no-repeat 50% */
}

.header .main-menu li.hr {
    padding: 0 22px
}

.header .main-menu li.hr span {
    background-color: #ececec;
    height: 1px;
    width: 100%;
    display: block;
    margin: 5px 0
}

.header .main-menu li a {
    font-family: var(--urbanist);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: var(--bs-neutral-1000);
    display: block;
    padding: 20px 18px;
    text-decoration: none;
    position: relative;
    transition-duration: .2s
}

.header .main-menu li a:hover {
    color: var(--bs-brand-2) !important;
    transition-duration: .2s
}

.header .main-menu li a i {
    font-size: 10px;
    opacity: .5;
    margin-left: 3px
}

.header .main-menu li ul {
    opacity: 0;
    visibility: hidden;
    transition-duration: .2s;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    min-width: 200px;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 6px 15px 0 rgba(64, 79, 100, .05)
}

.header .main-menu li ul.sub-menu {
    background-color: var(--bs-neutral-0)
}

.header .main-menu li ul:before {
    content: "";
    position: absolute;
    bottom: calc(100% - 6px);
    left: 35px;
    border-top: 10px solid var(--bs-neutral-0);
    border-right: 10px solid transparent;
    transform: rotate(45deg)
}

.header .main-menu li ul li {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px
}

.header .main-menu li ul li a {
    color: var(--bs-neutral-900);
    position: relative;
    padding: 8px 25px 8px 15px;
    transition: .3s;
    font-family: var(--urbanist);
    font-style: normal;
    font-weight: 500;
    display: inline-block;
    min-width: 182px
}

.header .main-menu li ul li a:hover {
    transition: .3s;
    color: var(--bs-link-hover-color) !important;
    padding-left: 20px
}

.header .main-menu li ul li ul {
    top: 0;
    left: 100%
}

.header .main-menu li.mega-li {
    position: static
}

.header .main-menu li.mega-li .mega-menu {
    position: absolute;
    top: 96%;
    left: 0;
    width: 100%;
    display: none;
    z-index: 12345
}

.header .main-menu li.mega-li .mega-menu:before {
    content: "";
    position: absolute;
    bottom: calc(100% - 6px);
    left: 35px;
    border-top: 10px solid var(--bs-neutral-0);
    border-right: 10px solid transparent;
    transform: rotate(45deg)
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner {
    max-width: 1255px;
    margin: auto;
    border: 0 solid var(--bs-neutral-0);
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 6px 22px 0 rgba(0, 0, 0, .09);
    background-color: var(--bs-neutral-0);
    position: relative;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    border-radius: 12px 12px 12px 12px
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner h6 {
    margin-bottom: 4px
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner .btn-brand-2 {
    padding: 12px 22px
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner ul {
    display: inline-block;
    box-shadow: none;
    padding: 0;
    border: 0;
    position: relative;
    top: auto;
    left: auto;
    opacity: 1;
    visibility: visible;
    margin-top: 16px;
    min-width: 100%;
    background-color: transparent
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner ul li {
    padding: 0;
    margin-bottom: 12px
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner ul li a {
    padding: 0
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner ul li a:after {
    display: none
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner .list-featured {
    padding-left: 60px;
    margin-top: 0
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner .list-featured li {
    margin-bottom: 0
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner .list-featured li a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: var(--bs-neutral-1000);
    background-repeat: no-repeat;
    background-position: 0;
    padding: 10px 10px 10px 45px;
    transition-duration: .2s
}

.header .main-menu li.mega-li .mega-menu .mega-menu-inner .list-featured li a:hover {
    color: var(--bs-warning) !important;
    padding-left: 40px;
    transition-duration: .2s
}

.header .main-menu li.mega-li-small .mega-menu {
    position: absolute;
    top: 96%;
    left: 0;
    width: 100%;
    display: none;
    z-index: 12345
}

.header .main-menu li.mega-li-small .mega-menu:before {
    content: "";
    position: absolute;
    bottom: calc(100% - 6px);
    left: 35px;
    border-top: 10px solid var(--bs-neutral-0);
    border-right: 10px solid transparent;
    transform: rotate(45deg)
}

.header .main-menu li.mega-li-small .mega-menu .mega-menu-inner-small {
    border: 0 solid var(--bs-neutral-0);
    border-radius: 8px;
    padding: 20px 25px;
    box-shadow: 0 6px 22px 0 rgba(0, 0, 0, .09);
    background-color: var(--bs-neutral-0);
    position: relative;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-image: none;
    border-radius: 12px 12px 12px 12px;
    max-width: 333px;
    min-width: 333px
}

.header .main-menu li.mega-li-small .mega-menu .mega-menu-inner-small.mega-menu-inner-destinations {
    max-width: 220px;
    min-width: 220px
}

.header .main-menu li.mega-li-small .mega-menu .mega-menu-inner-small h6 {
    margin-bottom: 4px
}

.header .main-menu li.mega-li-small .mega-menu .mega-menu-inner-small ul {
    display: inline-block;
    box-shadow: none;
    padding: 0;
    border: 0;
    position: relative;
    top: auto;
    left: auto;
    opacity: 1;
    visibility: visible;
    margin-top: 8px;
    min-width: 100%;
    background-color: transparent
}

.header .main-menu li.mega-li-small .mega-menu .mega-menu-inner-small ul li {
    padding: 0;
    margin-bottom: 12px
}

.header .main-menu li.mega-li-small .mega-menu .mega-menu-inner-small ul li a {
    padding: 0
}

.header .main-menu li.mega-li-small .mega-menu .mega-menu-inner-small ul li a:after {
    display: none;
    transition-duration: .2s
}

.header .main-menu li.mega-li-small .mega-menu .mega-menu-inner-small ul li a:hover {
    padding-left: 5px;
    transition-duration: .2s
}

.header .main-menu li:hover>ul {
    opacity: 1;
    visibility: visible;
    margin-top: 0
}

.header .main-menu li:hover>ul li {
    width: 100%
}

.header .main-menu li:hover.mega-li .mega-menu,
.header .main-menu li:hover.mega-li-small .mega-menu {
    display: block
}

.header.stick {
    padding: 0
}

.header.stick .top-bar {
    display: none
}

.header.header-fixed {
    position: fixed;
    top: 0;
    left: 0
}

.header.header-fixed.header {
    border-bottom-color: hsla(0, 0%, 100%, .3)
}

.header.header-fixed.header .icon-lang {
    color: #fff
}

/* .header.header-fixed.header .icon-lang span {
    background: url(https://carento-nextjs.vercel.app//_next/static/media/arrow-lang.92747caa.svg) no-repeat 100%
} */

.header.header-fixed.header .icon-cart {
    color: #fff
}

/* .header.header-fixed.header .icon-cart span {
    background: url(https://carento-nextjs.vercel.app//_next/static/media/arrow-lang.92747caa.svg) no-repeat 100%
} */

.header.header-fixed.sticky-bar.stick {
    background-color: rgba(45, 74, 44, .6);
    border-bottom: 0;
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px)
}

.header.header-commingsoon {
    background-color: var(--bs-background-card);
    padding: 23px 0
}

.header.header-commingsoon .main-header .header-left {
    width: 50%
}

.header.header-commingsoon .main-header .header-left .header-logo {
    display: flex;
    align-items: center
}

.header.header-commingsoon .main-header .header-left .header-logo .text-slogan {
    position: relative;
    padding-left: 25px
}

.header.header-commingsoon .main-header .header-left .header-logo .text-slogan:before {
    content: "";
    width: 1px;
    height: 26px;
    background-color: var(--bs-border-color);
    position: absolute;
    top: 2px;
    left: 0
}

.header.header-commingsoon .main-header .header-right {
    width: 50%
}

.icon-lang {
    display: inline-block;
    cursor: pointer;
    padding: 0 0 0 26px;
    color: #fff
}

.icon-lang:hover {
    color: var(--bs-brand-2) !important
}

.icon-lang span {
    display: inline-block;
    padding: 0 18px 0 0;
    background: url(/_next/static/media/arrow-down-sm.4b77a239.svg) no-repeat 100%
}

.icon-cart {
    cursor: pointer;
    color: #fff
}

.icon-cart:hover {
    color: var(--bs-brand-2) !important
}

.icon-cart span {
    display: inline-block;
    padding: 0 18px 0 0;
    background: url(/_next/static/media/arrow-down-sm.4b77a239.svg) no-repeat 100%
}

.box-desc-menu {
    border-radius: 8px;
    background-color: var(--bs-neutral-900);
    padding: 24px;
    margin-top: 40px
}

.box-desc-menu p {
    color: var(--bs-neutral-200)
}

.sticky-bar.stick {
    animation: fadeInDown .7s ease-in-out 0s 1 normal none running;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    left: 0;
    transition: all .3s ease 0s;
    border-bottom: 1px solid var(--bs-neutral-100);
    background: var(--bs-neutral-0)
}

.sticky-bar.stick .main-header {
    padding: 0
}

.card-author {
    display: flex;
    align-items: center
}

.card-author .card-image {
    width: 48px;
    height: 48px;
    margin-right: 12px
}

.card-author .card-image img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: block
}

.user-account {
    display: flex;
    align-items: center
}

.user-account img {
    max-width: 50px;
    border-radius: 50%;
    margin-right: 10px
}

.user-account .user-name {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 14px
}

.perfect-scroll {
    height: 100vh;
    width: 100%;
    position: relative
}

.body-overlay-1 {
    background: transparent;
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    visibility: hidden;
    width: 100%;
    cursor: crosshair;
    z-index: 997
}

.canvas-menu-active .body-overlay-1,
.mobile-menu-active .body-overlay-1 {
    opacity: 1;
    visibility: visible
}

.form-search {
    position: absolute;
    top: 100%;
    right: 50%;
    width: 100%;
    max-width: 350px;
    z-index: 1234;
    padding: 5px;
    display: none;
    border-radius: 8px;
    border: 1px solid var(--bs-neutral-100);
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .07);
    background-color: #fff
}

.form-search.dark {
    background-color: var(--bs-neutral-950);
    border: 1px solid var(--bs-neutral-900)
}

.form-search.dark .form-control {
    border: 1px solid var(--bs-neutral-800);
    border-radius: 8px;
    background-color: var(--bs-neutral-950);
    padding: 11px 15px 13px;
    width: 100%;
    color: #727373
}

.form-search.dark .btn-search-2 {
    background-color: transparent
}

.form-search.dark p.color-white {
    color: var(--bs-neutral-200)
}

.form-search .form-control {
    height: 46px;
    line-height: 1;
    padding: 10px 15px 10px 20px
}

.form-search .btn-search-2 {
    position: absolute;
    top: 20px;
    right: 21px;
    width: 56px;
    height: 46px;
    background: url(/_next/static/media/search.40297e4b.svg) no-repeat 50%;
    background-color: var(--bs-neutral-950);
    border: 0;
    border-radius: 0 8px 8px 0
}

.popular-keywords a {
    color: var(--bs-neutral-500)
}

.popular-keywords a:hover {
    color: var(--bs-color-2)
}

.box-button-logins {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px
}

.mobile-header-wrapper-style,
.sidebar-canvas-wrapper {
    position: fixed;
    top: 0;
    max-width: 385px;
    width: 100%;
    min-height: 100vh;
    bottom: 0;
    right: 0;
    /* visibility: hidden;
    opacity: 0; */
    transition: all .25s cubic-bezier(.645, .045, .355, 1);
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .09);
    z-index: 1006
}

.mobile-header-wrapper-style.sidebar-canvas-visible,
.mobile-header-wrapper-style.sidebar-visible,
.sidebar-canvas-wrapper.sidebar-canvas-visible,
.sidebar-canvas-wrapper.sidebar-visible {
    visibility: visible;
    opacity: 1;
    transform: translate(0)
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner {
    padding: 0 0 30px;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .burger-icon,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .burger-icon {
    top: 25px;
    right: 30px;
    position: absolute;
    height: 34px;
    width: 34px
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-logo,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-logo {
    padding: 7px 10px;
    border-bottom: 1px solid var(--bs-border-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-logo .burger-icon,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-logo .burger-icon {
    display: inline-block;
    position: relative;
    height: 42px;
    width: 42px;
    background-color: var(--bs-neutral-100);
    background-image: url(../images/close.png);
    background-position: 50%;
    background-repeat: no-repeat;
    top: auto;
    right: auto
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px 10px 13px;
    background-color: var(--bs-neutral-0);
    align-items: center;
    align-self: center
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .box-author-profile,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-top .box-author-profile {
    margin-bottom: 10px
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a {
    display: block
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a img,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a img {
    width: 100px
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area {
    padding: 0 30px
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li {
    display: block;
    position: relative;
    padding: 0;
    margin-bottom: 20px
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.hr,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.hr {
    display: none
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li:last-child,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li:last-child {
    border-bottom: none
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children .menu-expand,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children .menu-expand {
    right: 0;
    position: absolute;
    cursor: pointer;
    z-index: 9;
    text-align: center;
    font-size: 12px;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 46px;
    top: 0;
    color: var(--bs-neutral-1000)
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children .menu-expand i,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children .menu-expand i {
    height: 24px;
    width: 24px;
    display: inline-block;
    opacity: 1;
    background: url(/_next/static/media/arrow-right-big.6f09579e.svg) no-repeat 50%
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children.active>.menu-expand,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children.active>.menu-expand {
    background: hsla(0, 0%, 100%, .2)
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children.active>.menu-expand i,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children.active>.menu-expand i {
    background: url(/_next/static/media/arrow-down-big.b6ff8543.svg) no-repeat 50%
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li a,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li a {
    font-size: 16px;
    line-height: 26px;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    display: inline-block;
    color: var(--bs-neutral-1000);
    transition-duration: .2s
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li a i,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li a i {
    margin-right: 5px
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul {
    padding: 10px 0 0
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li {
    padding: 0;
    margin-bottom: 12px;
    border-bottom: none
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li.has-children .menu-expand,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li.has-children .menu-expand {
    top: 0
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li:hover a,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li:hover a {
    padding-left: 13px;
    transition-duration: .2s
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li:hover a:before,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li:hover a:before {
    opacity: 1;
    transition-duration: .2s
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li a,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li a {
    font-size: 16px;
    line-height: 22px;
    display: block;
    font-weight: 500;
    color: var(--bs-neutral-800);
    position: relative;
    transition-duration: .2s;
    padding-left: 10px
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li a:hover,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li a:hover {
    padding-left: 13px;
    transition-duration: .2s;
    color: var(--bs-link-hover-color) !important
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li ul,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li ul {
    margin-top: 0
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li.has-children.active,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li.has-children.active {
    padding-bottom: 0
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li:hover>a,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li:hover>a {
    color: var(--bs-link-hover-color);
    padding-left: 3px;
    transition-duration: .2s
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .categories-dropdown-wrap ul li a,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .categories-dropdown-wrap ul li a {
    padding: 5px 15px
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap {
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ececec;
    margin: 17px 0 30px
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info {
    position: relative;
    margin-bottom: 13px
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info:last-child,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info:last-child {
    margin-bottom: 0
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a {
    font-size: 14px;
    display: block;
    font-weight: 500;
    color: var(--bs-neutral-1000)
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a:hover,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a:hover {
    color: var(--bs-brand-2)
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a i,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a i {
    font-size: 14px;
    color: var(--bs-brand-2);
    margin-right: 8px
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown {
    margin-top: 5px;
    display: none;
    background-color: transparent;
    box-shadow: none;
    padding: 10px 0 0;
    width: 100%;
    z-index: 11
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li {
    padding-bottom: 10px
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li:last-child,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li:last-child {
    padding-bottom: 0
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li a,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li a {
    font-size: 16px;
    color: hsla(0, 0%, 100%, .7);
    font-weight: 400
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li a:hover,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li a:hover {
    color: var(--bs-brand-2)
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info:hover>a,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info:hover>a {
    color: var(--bs-neutral-1000)
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-border,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-border {
    border-bottom: 1px solid hsla(0, 0%, 100%, .15)
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .site-copyright,
.sidebar-canvas-wrapper .mobile-header-wrapper-inner .mobile-header-content-area .site-copyright {
    font-size: 12px;
    color: var(--bs-neutral-800)
}

.sidebar-canvas-wrapper {
    max-width: 385px
}

.sidebar-canvas-wrapper .sidebar-canvas-container {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden
}

.sidebar-canvas-wrapper .sidebar-canvas-container .sidebar-canvas-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid var(--bs-border-color)
}

.sidebar-canvas-wrapper .sidebar-canvas-container .sidebar-canvas-content {
    padding: 38px
}

.box-author-profile {
    border-radius: 8px;
    border: 1px solid var(--bs-border-color);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    width: 100%
}

.close-canvas {
    height: 42px;
    width: 42px;
    border-radius: 4px;
    line-height: 42px;
    background-color: var(--bs-brand-2);
    text-align: center
}

.close-canvas img {
    display: inline-block;
    vertical-align: middle
}

.sidebar-canvas-lang {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.title-quicklinks {
    padding: 0 0 0 32px;
    margin-bottom: 32px
}

.box-list-quicklinks {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -13px 48px
}

.box-list-quicklinks .item-quicklinks {
    width: 50%;
    margin-bottom: 16px;
    padding: 0 13px;
    display: flex;
    align-items: center
}

.box-list-quicklinks .item-quicklinks .item-icon {
    height: 58px;
    width: 58px;
    line-height: 54px;
    min-width: 58px;
    text-align: center;
    border: 1px solid var(--bs-neutral-200);
    border-radius: 8px;
    background-color: var(--bs-neutral-100);
    margin-right: 16px
}

.box-list-quicklinks .item-quicklinks .item-icon img {
    display: inline-block;
    vertical-align: middle
}

.box-list-quicklinks .item-quicklinks:hover .item-icon {
    background-color: var(--bs-brand-2)
}

.box-list-quicklinks .item-quicklinks .item-info a {
    color: var(--bs-neutral-1000)
}

.box-list-quicklinks .item-quicklinks .item-info a:hover {
    color: var(--bs-brand-2)
}

.box-list-quicklinks .item-quicklinks .item-info .online {
    padding: 0 0 0 15px;
    background: url(/_next/static/media/online.164cb39a.svg) no-repeat 0
}

.box-list-quicklinks .item-quicklinks .item-info .resolved {
    padding: 0 0 0 15px;
    background: url(/_next/static/media/resolved.aaff273c.svg) no-repeat 0
}

.box-contactus,
.box-eventsdate,
.box-savedplaces {
    margin-bottom: 48px
}

.contact-info .address-2 {
    background: url(/_next/static/media/address2.5c45b2bf.svg) no-repeat left top 4px
}

.contact-info .address-2,
.contact-info .hour-work-2 {
    padding: 0 0 0 23px;
    color: var(--bs-neutral-400);
    margin-bottom: 19px
}

.contact-info .hour-work-2 {
    background: url(/_next/static/media/hour-work2.60562279.svg) no-repeat left top 5px
}

.contact-info .email-2 {
    padding: 0 0 0 23px;
    background: url(/_next/static/media/mail2.acf6c41f.svg) no-repeat left top 5px;
    color: var(--bs-neutral-400);
    margin-bottom: 19px
}

#calendar-events {
    background-color: var(--bs-neutral-100);
    border-radius: 16px;
    border: 1px solid var(--bs-border-color);
    padding: 31px
}

#calendar-events .datepicker-inline,
#calendar-events .datepicker-inline .table-condensed {
    width: 100%
}

#calendar-events .datepicker-inline .table-condensed thead tr th,
#calendar-events .datepicker-inline .table-condensed thead tr th:hover {
    color: var(--bs-neutral-500)
}

#calendar-events .datepicker-inline .table-condensed tbody tr td {
    vertical-align: middle;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    font-weight: 500;
    color: var(--bs-neutral-1000)
}

#calendar-events .datepicker-inline .table-condensed tbody tr td.day.active {
    background-color: var(--bs-brand-2);
    border-color: var(--bs-brand-2);
    background-image: none;
    color: var(--bs-neutral-1000)
}

#calendar-events .datepicker-inline .table-condensed tbody tr td:hover {
    color: var(--bs-neutral-500)
}

.burger-icon-2 {
    position: relative;
    width: 42px;
    height: 42px;
    cursor: pointer;
    transition: all .25s cubic-bezier(.645, .045, .355, 1);
    top: auto;
    right: auto;
    z-index: 999999;
    display: block;
    background-color: var(--bs-brand-2);
    border-radius: 12px;
    line-height: 40px;
    text-align: center
}

.burger-icon-2 img {
    display: inline-block;
    vertical-align: middle
}

.burger-icon {
    position: absolute;
    width: 42px;
    height: 42px;
    background-color: var(--bs-neutral-100);
    border-radius: 4px;
    cursor: pointer;
    transition: all .25s cubic-bezier(.645, .045, .355, 1);
    /* top: 0; */
    right: 0;
    z-index: 999999;
    display: none
}

.burger-icon>span {
    display: block;
    position: absolute;
    left: 8px;
    width: 24px;
    height: 1px
}

.burger-icon>span.burger-icon-top {
    top: 14px
}

.burger-icon>span.burger-icon-bottom {
    bottom: 14px
}

.burger-icon>span.burger-icon-mid {
    top: 20px
}

.burger-icon img {
    display: inline-block;
    vertical-align: middle
}

.burger-icon.burger-close>span.burger-icon-top {
    display: none;
    opacity: 0
}

.burger-icon.burger-close>span.burger-icon-mid {
    top: 20px;
    transform: rotate(45deg)
}

.burger-icon.burger-close>span.burger-icon-bottom {
    bottom: 21px;
    transform: rotate(-45deg)
}

.burger-icon>span:after,
.burger-icon>span:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #333
}

.sidebar-visible .burger-icon.burger-icon-white>span:after,
.sidebar-visible .burger-icon.burger-icon-white>span:before {
    background-color: var(--bs-neutral-950)
}

.burger-icon.burger-icon-white>span:after,
.burger-icon.burger-icon-white>span:before {
    background-color: var(--bs-neutral-1000)
}

.mobile-search form {
    background-color: var(--bs-neutral-100);
    border-radius: 8px;
    height: 44px;
    padding: 8px 15px 11px 30px;
    position: relative
}

.mobile-search form input {
    border: 0;
    background-color: transparent;
    width: 100%;
    height: auto
}

.mobile-search form i {
    position: absolute;
    left: 18px;
    top: 14px;
    font-size: 18px;
    color: var(--bs-neutral-700)
}

.mobile-social-icon h6 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 30px
}

.mobile-social-icon a.icon-socials {
    background-color: var(--bs-neutral-100)
}

.mobile-social-icon a {
    text-align: center;
    font-size: 14px;
    margin-right: 5px;
    transition-duration: .5s;
    height: 30px;
    width: 30px;
    display: inline-flex;
    background: #efeaff;
    border-radius: 30px;
    line-height: 1;
    align-content: center;
    justify-content: center
}

.mobile-social-icon a img {
    max-width: 18px
}

.mobile-social-icon a img:hover {
    opacity: .8
}

.mobile-social-icon a:hover {
    transform: translateY(-2px);
    transition-duration: .5s;
    margin-top: -2px
}

.mobile-social-icon a:last-child {
    margin-right: 0
}

.mobile-account {
    margin: 15px 0;
    padding: 30px 0 20px;
    border-top: thin solid #ececec
}

.mobile-account .mobile-menu {
    column-count: 2;
    -webkit-columns: 2;
    -moz-columns: 2
}

.mobile-account h6 {
    font-weight: 600;
    font-size: 18px
}

.mobile-account ul li {
    padding: 13px 0
}

.mobile-account ul li a {
    font-size: 15px;
    line-height: 1;
    text-transform: capitalize;
    font-weight: 500;
    position: relative;
    display: inline-block;
    color: var(--bs-neutral-800);
    transition-duration: .2s
}

.mobile-account ul li:hover a {
    padding-left: 3px;
    transition-duration: .2s;
    color: var(--bs-brand-2)
}

.mw-65 {
    min-width: 65px
}

.sidebar-title {
    border-bottom: thin solid #ececec;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 10px
}

.search-form form {
    position: relative
}

.search-form form input {
    border: 1px solid #ececec;
    border-radius: 10px;
    height: 64px;
    box-shadow: none;
    padding-left: 20px;
    font-size: 16px;
    width: 100%
}

.search-form form button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    border: none;
    font-size: 20px;
    height: 100%;
    padding: 0 24px;
    background-color: transparent;
    color: #242424
}

.box-info-contact p {
    margin-bottom: 19px
}


.footer-top {
    border-bottom: 1px solid rgba(87, 86, 86, .49);
    padding-bottom: 35px;
    margin-bottom: 49px
}

.footer-top img {
    display: block
}

site.webmanifest a.icon-socials {
    border-radius: 50%
}

.footer-1 {
    width: 30%
}

.footer-2,
.footer-3,
.footer-4,
.footer-5 {
    width: 17.5%
}

.footer {
    background-color: var(--bs-background-1000);
    padding: 40px 0 0
}

.footer .phone-support {
    color: var(--bs-brand-2)
}

.footer h6 {
    color: var(--bs-color-white);
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px
}

.footer .menu-footer {
    display: inline-block
}

.footer .menu-footer li {
    list-style: none;
    margin-bottom: 18px
}

.footer .menu-footer li:last-child {
    padding-right: 0
}

.footer .menu-footer li a {
    color: var(--bs-neutral-400);
    font-size: 16px;
    text-decoration: none;
    transition-duration: .2s;
    line-height: 26px
}

.footer .menu-footer li a:hover {
    color: var(--bs-neutral-0);
    padding-left: 3px;
    transition-duration: .2s
}

.footer .footer-bottom {
    padding: 30px 0 10px;
    color: var(--bs-neutral-700);
    font-size: 14px;
    border-top: 1px solid rgba(87, 86, 86, .49)
}

.footer .footer-bottom strong {
    color: var(--bs-brand-1);
    font-weight: 700
}

.footer .footer-bottom a {
    text-decoration: none
}

.section-padding-30 {
    padding: 30px 0
}

.section-padding-50 {
    padding: 50px 0
}

.section-padding-60 {
    padding: 60px 0
}

.section-padding {
    padding: 25px 0
}

.ptb-0 {
    padding: 0
}

.ptb-10 {
    padding: 10px 0
}

.ptb-20 {
    padding: 20px 0
}

.ptb-30 {
    padding: 30px 0
}

.ptb-35 {
    padding: 35px 0
}

.ptb-32 {
    padding: 32px 0
}

.ptb-40 {
    padding: 40px 0
}

.ptb-50 {
    padding: 50px 0
}

.ptb-60 {
    padding: 60px 0
}

.ptb-70 {
    padding: 70px 0
}

.ptb-80 {
    padding: 80px 0
}

.ptb-90 {
    padding: 90px 0
}

.ptb-100 {
    padding: 100px 0
}

.ptb-110 {
    padding: 110px 0
}

.ptb-120 {
    padding: 120px 0
}

.ptb-130 {
    padding: 130px 0
}

.ptb-140 {
    padding: 140px 0
}

.ptb-150 {
    padding: 150px 0
}

.ptb-160 {
    padding: 160px 0
}

.ptb-170 {
    padding: 170px 0
}

.ptb-177 {
    padding: 177px 0
}

.ptb-180 {
    padding: 180px 0
}

.ptb-190 {
    padding: 190px 0
}

.ptb-200 {
    padding: 200px 0
}

.ptb-210 {
    padding: 210px 0
}

.ptb-220 {
    padding: 220px 0
}

.ptb-290 {
    padding: 290px 0
}

.ptb-310 {
    padding: 310px 0
}

.p-10 {
    padding: 10px !important
}

.p-15 {
    padding: 15px !important
}

.p-20 {
    padding: 20px !important
}

.p-25 {
    padding: 25px !important
}

.p-30 {
    padding: 30px !important
}

.p-40 {
    padding: 40px !important
}

.p-65 {
    padding: 65px !important
}

.pt-5 {
    padding-top: 5px !important
}

.pt-10 {
    padding-top: 10px !important
}

.pt-15 {
    padding-top: 15px !important
}

.pt-20 {
    padding-top: 20px !important
}

.pt-25 {
    padding-top: 25px !important
}

.pt-30 {
    padding-top: 30px !important
}

.pt-35 {
    padding-top: 35px !important
}

.pt-40 {
    padding-top: 40px !important
}

.pt-45 {
    padding-top: 45px !important
}

.pt-50 {
    padding-top: 50px !important
}

.pt-55 {
    padding-top: 55px !important
}

.pt-60 {
    padding-top: 60px !important
}

.pt-65 {
    padding-top: 65px !important
}

.pt-70 {
    padding-top: 70px !important
}

.pt-75 {
    padding-top: 75px !important
}

.pt-80 {
    padding-top: 80px !important
}

.pt-85 {
    padding-top: 85px !important
}

.pt-90 {
    padding-top: 90px !important
}

.pt-95 {
    padding-top: 95px !important
}

.pt-100 {
    padding-top: 100px !important
}

.pt-105 {
    padding-top: 105px !important
}

.pt-110 {
    padding-top: 110px !important
}

.pt-115 {
    padding-top: 115px !important
}

.pt-120 {
    padding-top: 120px !important
}

.pt-125 {
    padding-top: 125px !important
}

.pt-130 {
    padding-top: 130px !important
}

.pt-135 {
    padding-top: 135px !important
}

.pt-140 {
    padding-top: 140px !important
}

.pt-145 {
    padding-top: 145px !important
}

.pt-150 {
    padding-top: 150px !important
}

.pt-155 {
    padding-top: 155px !important
}

.pt-160 {
    padding-top: 160px !important
}

.pt-165 {
    padding-top: 165px !important
}

.pt-170 {
    padding-top: 170px !important
}

.pt-175 {
    padding-top: 175px !important
}

.pt-180 {
    padding-top: 180px !important
}

.pt-185 {
    padding-top: 185px !important
}

.pt-190 {
    padding-top: 190px !important
}

.pt-195 {
    padding-top: 195px !important
}

.pt-200 {
    padding-top: 200px !important
}

.pt-260 {
    padding-top: 260px !important
}

.pb-5 {
    padding-bottom: 5px !important
}

.pb-10 {
    padding-bottom: 10px !important
}

.pb-15 {
    padding-bottom: 15px !important
}

.pb-20 {
    padding-bottom: 20px !important
}

.pb-25 {
    padding-bottom: 25px !important
}

.pb-30 {
    padding-bottom: 30px !important
}

.pb-35 {
    padding-bottom: 35px !important
}

.pb-40 {
    padding-bottom: 40px !important
}

.pb-45 {
    padding-bottom: 45px !important
}

.pb-50 {
    padding-bottom: 50px !important
}

.pb-55 {
    padding-bottom: 55px !important
}

.pb-60 {
    padding-bottom: 60px !important
}

.pb-65 {
    padding-bottom: 65px !important
}

.pb-70 {
    padding-bottom: 70px !important
}

.pb-75 {
    padding-bottom: 75px !important
}

.pb-80 {
    padding-bottom: 80px !important
}

.pb-85 {
    padding-bottom: 85px !important
}

.pb-90 {
    padding-bottom: 90px !important
}

.pb-95 {
    padding-bottom: 95px !important
}

.pb-100 {
    padding-bottom: 100px !important
}

.pb-105 {
    padding-bottom: 105px !important
}

.pb-110 {
    padding-bottom: 110px !important
}

.pb-115 {
    padding-bottom: 115px !important
}

.pb-120 {
    padding-bottom: 120px !important
}

.pb-125 {
    padding-bottom: 125px !important
}

.pb-130 {
    padding-bottom: 130px !important
}

.pb-135 {
    padding-bottom: 135px !important
}

.pb-140 {
    padding-bottom: 140px !important
}

.pb-145 {
    padding-bottom: 145px !important
}

.pb-150 {
    padding-bottom: 150px !important
}

.pb-155 {
    padding-bottom: 155px !important
}

.pb-160 {
    padding-bottom: 160px !important
}

.pb-165 {
    padding-bottom: 165px !important
}

.pb-170 {
    padding-bottom: 170px !important
}

.pb-175 {
    padding-bottom: 175px !important
}

.pb-180 {
    padding-bottom: 180px !important
}

.pb-185 {
    padding-bottom: 185px !important
}

.pb-190 {
    padding-bottom: 190px !important
}

.pb-195 {
    padding-bottom: 195px !important
}

.pb-200 {
    padding-bottom: 200px !important
}

.pl-0 {
    padding-left: 0 !important
}

.pl-5 {
    padding-left: 5px !important
}

.pl-10 {
    padding-left: 10px !important
}

.pl-15 {
    padding-left: 15px !important
}

.pl-20 {
    padding-left: 20px !important
}

.pl-25 {
    padding-left: 25px !important
}

.pl-30 {
    padding-left: 30px !important
}

.pl-35 {
    padding-left: 35px !important
}

.pl-40 {
    padding-left: 40px !important
}

.pl-45 {
    padding-left: 45px !important
}

.pl-50 {
    padding-left: 50px !important
}

.pl-55 {
    padding-left: 55px !important
}

.pl-60 {
    padding-left: 60px !important
}

.pl-65 {
    padding-left: 65px !important
}

.pl-70 {
    padding-left: 70px !important
}

.pl-75 {
    padding-left: 75px !important
}

.pl-80 {
    padding-left: 80px !important
}

.pl-85 {
    padding-left: 85px !important
}

.pl-90 {
    padding-left: 90px !important
}

.pl-95 {
    padding-left: 95px !important
}

.pl-100 {
    padding-left: 100px !important
}

.pl-105 {
    padding-left: 105px !important
}

.pl-110 {
    padding-left: 110px !important
}

.pl-115 {
    padding-left: 115px !important
}

.pl-120 {
    padding-left: 120px !important
}

.pl-125 {
    padding-left: 125px !important
}

.pl-130 {
    padding-left: 130px !important
}

.pl-135 {
    padding-left: 135px !important
}

.pl-140 {
    padding-left: 140px !important
}

.pl-145 {
    padding-left: 145px !important
}

.pl-150 {
    padding-left: 150px !important
}

.pl-155 {
    padding-left: 155px !important
}

.pl-160 {
    padding-left: 160px !important
}

.pl-165 {
    padding-left: 165px !important
}

.pl-170 {
    padding-left: 170px !important
}

.pl-175 {
    padding-left: 175px !important
}

.pl-180 {
    padding-left: 180px !important
}

.pl-185 {
    padding-left: 185px !important
}

.pl-190 {
    padding-left: 190px !important
}

.pl-195 {
    padding-left: 195px !important
}

.pl-200 {
    padding-left: 200px !important
}

.pr-5 {
    padding-right: 5px !important
}

.pr-10 {
    padding-right: 10px !important
}

.pr-15 {
    padding-right: 15px !important
}

.pr-20 {
    padding-right: 20px !important
}

.pr-25 {
    padding-right: 25px !important
}

.pr-30 {
    padding-right: 30px !important
}

.pr-35 {
    padding-right: 35px !important
}

.pr-40 {
    padding-right: 40px !important
}

.pr-45 {
    padding-right: 45px !important
}

.pr-50 {
    padding-right: 50px !important
}

.pr-55 {
    padding-right: 55px !important
}

.pr-60 {
    padding-right: 60px !important
}

.pr-65 {
    padding-right: 65px !important
}

.pr-70 {
    padding-right: 70px !important
}

.pr-75 {
    padding-right: 75px !important
}

.pr-80 {
    padding-right: 80px !important
}

.pr-85 {
    padding-right: 85px !important
}

.pr-90 {
    padding-right: 90px !important
}

.pr-95 {
    padding-right: 95px !important
}

.pr-100 {
    padding-right: 100px !important
}

.pr-105 {
    padding-right: 105px !important
}

.pr-110 {
    padding-right: 110px !important
}

.pr-115 {
    padding-right: 115px !important
}

.pr-120 {
    padding-right: 120px !important
}

.pr-125 {
    padding-right: 125px !important
}

.pr-130 {
    padding-right: 130px !important
}

.pr-135 {
    padding-right: 135px !important
}

.pr-140 {
    padding-right: 140px !important
}

.pr-145 {
    padding-right: 145px !important
}

.pr-150 {
    padding-right: 150px !important
}

.pr-155 {
    padding-right: 155px !important
}

.pr-160 {
    padding-right: 160px !important
}

.pr-165 {
    padding-right: 165px !important
}

.pr-170 {
    padding-right: 170px !important
}

.pr-175 {
    padding-right: 175px !important
}

.pr-180 {
    padding-right: 180px !important
}

.pr-185 {
    padding-right: 185px !important
}

.pr-190 {
    padding-right: 190px !important
}

.pr-195 {
    padding-right: 195px !important
}

.pr-200 {
    padding-right: 200px !important
}

.plr-5-percent {
    padding: 0 5%
}

.mtb-0 {
    margin: 0
}

.mtb-10 {
    margin: 10px 0
}

.mtb-15 {
    margin: 15px 0
}

.mtb-20 {
    margin: 20px 0
}

.mtb-30 {
    margin: 30px 0
}

.mtb-40 {
    margin: 40px 0
}

.mtb-50 {
    margin: 50px 0
}

.mtb-60 {
    margin: 60px 0
}

.mtb-70 {
    margin: 70px 0
}

.mtb-80 {
    margin: 80px 0
}

.mtb-90 {
    margin: 90px 0
}

.mtb-100 {
    margin: 100px 0
}

.mtb-110 {
    margin: 110px 0
}

.mtb-120 {
    margin: 120px 0
}

.mtb-130 {
    margin: 130px 0
}

.mtb-140 {
    margin: 140px 0
}

.mtb-150 {
    margin: 150px 0
}

.mtb-290 {
    margin: 290px 0
}

.mb-24 {
    margin-bottom: 24px
}

.mt-5 {
    margin-top: 5px !important
}

.mt-8 {
    margin-top: 8px !important
}

.mt-10 {
    margin-top: 10px !important
}

.mt-15 {
    margin-top: 15px !important
}

.mt-20 {
    margin-top: 20px !important
}

.mt-25 {
    margin-top: 25px !important
}

.mt-30 {
    margin-top: 30px !important
}

.mt-35 {
    margin-top: 35px !important
}

.mt-40 {
    margin-top: 40px !important
}

.mt-45 {
    margin-top: 45px !important
}

.mt-50 {
    margin-top: 50px !important
}

.mt-55 {
    margin-top: 55px !important
}

.mt-60 {
    margin-top: 60px !important
}

.mt-65 {
    margin-top: 65px !important
}

.mt-70 {
    margin-top: 70px !important
}

.mt-75 {
    margin-top: 75px !important
}

.mt-80 {
    margin-top: 80px !important
}

.mt-85 {
    margin-top: 85px !important
}

.mt-90 {
    margin-top: 90px !important
}

.mt-95 {
    margin-top: 95px !important
}

.mt-100 {
    margin-top: 100px !important
}

.mt-105 {
    margin-top: 105px !important
}

.mt-110 {
    margin-top: 110px !important
}

.mt-115 {
    margin-top: 115px !important
}

.mt-120 {
    margin-top: 120px !important
}

.mt-125 {
    margin-top: 125px !important
}

.mt-130 {
    margin-top: 130px !important
}

.mt-135 {
    margin-top: 135px !important
}

.mt-140 {
    margin-top: 140px !important
}

.mt-145 {
    margin-top: 145px !important
}

.mt-150 {
    margin-top: 150px !important
}

.mt-155 {
    margin-top: 155px !important
}

.mt-160 {
    margin-top: 160px !important
}

.mt-165 {
    margin-top: 165px !important
}

.mt-170 {
    margin-top: 170px !important
}

.mt-175 {
    margin-top: 175px !important
}

.mt-180 {
    margin-top: 180px !important
}

.mt-185 {
    margin-top: 185px !important
}

.mt-190 {
    margin-top: 190px !important
}

.mt-195 {
    margin-top: 195px !important
}

.mt-200 {
    margin-top: 200px !important
}

.mb-5 {
    margin-bottom: 5px !important
}

.mb-10 {
    margin-bottom: 10px !important
}

.mb-15 {
    margin-bottom: 15px !important
}

.mb-20 {
    margin-bottom: 20px !important
}

.mb-25 {
    margin-bottom: 25px !important
}

.mb-30 {
    margin-bottom: 30px !important
}

.mb-35 {
    margin-bottom: 35px !important
}

.mb-40 {
    margin-bottom: 40px !important
}

.mb-45 {
    margin-bottom: 45px !important
}

.mb-50 {
    margin-bottom: 50px !important
}

.mb-55 {
    margin-bottom: 55px !important
}

.mb-60 {
    margin-bottom: 60px !important
}

.mb-65 {
    margin-bottom: 65px !important
}

.mb-70 {
    margin-bottom: 70px !important
}

.mb-75 {
    margin-bottom: 75px !important
}

.mb-80 {
    margin-bottom: 80px !important
}

.mb-85 {
    margin-bottom: 85px !important
}

.mb-90 {
    margin-bottom: 90px !important
}

.mb-95 {
    margin-bottom: 95px !important
}

.mb-100 {
    margin-bottom: 100px !important
}

.mb-105 {
    margin-bottom: 105px !important
}

.mb-110 {
    margin-bottom: 110px !important
}

.mb-115 {
    margin-bottom: 115px !important
}

.mb-120 {
    margin-bottom: 120px !important
}

.mb-125 {
    margin-bottom: 125px !important
}

.mb-130 {
    margin-bottom: 130px !important
}

.mb-135 {
    margin-bottom: 135px !important
}

.mb-140 {
    margin-bottom: 140px !important
}

.mb-145 {
    margin-bottom: 145px !important
}

.mb-150 {
    margin-bottom: 150px !important
}

.mb-155 {
    margin-bottom: 155px !important
}

.mb-160 {
    margin-bottom: 160px !important
}

.mb-165 {
    margin-bottom: 165px !important
}

.mb-170 {
    margin-bottom: 170px !important
}

.mb-175 {
    margin-bottom: 175px !important
}

.mb-180 {
    margin-bottom: 180px !important
}

.mb-185 {
    margin-bottom: 185px !important
}

.mb-190 {
    margin-bottom: 190px !important
}

.mb-195 {
    margin-bottom: 195px !important
}

.mb-200 {
    margin-bottom: 200px !important
}

.ml-0 {
    margin-left: 0 !important
}

.ml-5 {
    margin-left: 5px !important
}

.ml-10 {
    margin-left: 10px !important
}

.ml-15 {
    margin-left: 15px !important
}

.ml-20 {
    margin-left: 20px !important
}

.ml-25 {
    margin-left: 25px !important
}

.ml-30 {
    margin-left: 30px !important
}

.ml-35 {
    margin-left: 35px !important
}

.ml-40 {
    margin-left: 40px !important
}

.ml-45 {
    margin-left: 45px !important
}

.ml-50 {
    margin-left: 50px !important
}

.ml-55 {
    margin-left: 55px !important
}

.ml-60 {
    margin-left: 60px !important
}

.ml-65 {
    margin-left: 65px !important
}

.ml-70 {
    margin-left: 70px !important
}

.ml-75 {
    margin-left: 75px !important
}

.ml-80 {
    margin-left: 80px !important
}

.ml-85 {
    margin-left: 85px !important
}

.ml-90 {
    margin-left: 90px !important
}

.ml-95 {
    margin-left: 95px !important
}

.ml-100 {
    margin-left: 100px !important
}

.ml-105 {
    margin-left: 105px !important
}

.ml-110 {
    margin-left: 110px !important
}

.ml-115 {
    margin-left: 115px !important
}

.ml-120 {
    margin-left: 120px !important
}

.ml-125 {
    margin-left: 125px !important
}

.ml-130 {
    margin-left: 130px !important
}

.ml-135 {
    margin-left: 135px !important
}

.ml-140 {
    margin-left: 140px !important
}

.ml-145 {
    margin-left: 145px !important
}

.ml-150 {
    margin-left: 150px !important
}

.ml-155 {
    margin-left: 155px !important
}

.ml-160 {
    margin-left: 160px !important
}

.ml-165 {
    margin-left: 165px !important
}

.ml-170 {
    margin-left: 170px !important
}

.ml-175 {
    margin-left: 175px !important
}

.ml-180 {
    margin-left: 180px !important
}

.ml-185 {
    margin-left: 185px !important
}

.ml-190 {
    margin-left: 190px !important
}

.ml-195 {
    margin-left: 195px !important
}

.ml-200 {
    margin-left: 200px !important
}

.mr-0 {
    margin-right: 0 !important
}

.mr-5 {
    margin-right: 5px !important
}

.mr-10 {
    margin-right: 10px !important
}

.mr-15 {
    margin-right: 15px !important
}

.mr-20 {
    margin-right: 20px !important
}

.mr-25 {
    margin-right: 25px !important
}

.mr-30 {
    margin-right: 30px !important
}

.mr-35 {
    margin-right: 35px !important
}

.mr-40 {
    margin-right: 40px !important
}

.mr-45 {
    margin-right: 45px !important
}

.mr-50 {
    margin-right: 50px !important
}

.mr-55 {
    margin-right: 55px !important
}

.mr-60 {
    margin-right: 60px !important
}

.mr-65 {
    margin-right: 65px !important
}

.mr-70 {
    margin-right: 70px !important
}

.mr-75 {
    margin-right: 75px !important
}

.mr-80 {
    margin-right: 80px !important
}

.mr-85 {
    margin-right: 85px !important
}

.mr-90 {
    margin-right: 90px !important
}

.mr-95 {
    margin-right: 95px !important
}

.mr-100 {
    margin-right: 100px !important
}

.mr-105 {
    margin-right: 105px !important
}

.mr-110 {
    margin-right: 110px !important
}

.mr-115 {
    margin-right: 115px !important
}

.mr-120 {
    margin-right: 120px !important
}

.mr-125 {
    margin-right: 125px !important
}

.mr-130 {
    margin-right: 130px !important
}

.mr-135 {
    margin-right: 135px !important
}

.mr-140 {
    margin-right: 140px !important
}

.mr-145 {
    margin-right: 145px !important
}

.mr-150 {
    margin-right: 150px !important
}

.mr-155 {
    margin-right: 155px !important
}

.mr-160 {
    margin-right: 160px !important
}

.mr-165 {
    margin-right: 165px !important
}

.mr-170 {
    margin-right: 170px !important
}

.mr-175 {
    margin-right: 175px !important
}

.mr-180 {
    margin-right: 180px !important
}

.mr-185 {
    margin-right: 185px !important
}

.mr-190 {
    margin-right: 190px !important
}

.mr-195 {
    margin-right: 195px !important
}

.mr-200 {
    margin-right: 200px !important
}

.mask-image {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent)
}

.box-cta-2 {
    position: relative;
    padding-top: 65px;
    padding-bottom: 80px
}

.box-cta-2 .bg-shape {
    right: 0;
    max-width: 101%;
    overflow: hidden;
    background: url('../images/queensway/contact-us/contact-us.png') no-repeat 50% 50%;
    background-size: cover;
}


.box-cta-2 .bg-shape,
.box-cta-2 .bg-shape:after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 1457px;
    border-radius: 12px;
    height: 100%
}

.box-cta-2 .bg-shape:after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) !important;
    max-width: 100%;
    opacity: .6;
    background: #000
}

.box-cta-5 {
    position: relative
}

.box-cta-5 .bg-shape {
    right: 0;
    overflow: hidden;
    /* background: url(https://carento-nextjs.vercel.app/_next/static/media/background-2.fc9de10a.png) no-repeat 50%; */
    background-size: cover
}

.box-cta-5 .bg-shape,
.box-cta-5 .bg-shape:after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%
}

.box-cta-5 .bg-shape:after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) !important;
    max-width: 100%;
    opacity: .6;
    background: #000
}

.box-cta-7 {
    position: relative
}

.box-cta-7 .bg-shape {
    content: "";
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    /* background: url(https://carento-nextjs.vercel.app/_next/static/media/background.4351df5f.png) no-repeat 50%; */
    background-size: cover
}

.box-list-featured {
    margin-top: 12px
}

.box-cta-3 {
    max-width: 1457px;
    width: 100%
}

.box-cta-3 .list-ticks-green li {
    /* background-image: url(https://carento-nextjs.vercel.app/_next/static/media/tick-list-w.ed6832fd.svg) */
}

.box-cta-3 .imgae {
    border-radius: 56px
}

.box-cta-3 .bg-overlay {
    width: 650px
}

.box-app:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url(https://carento-nextjs.vercel.app/_next/static/media/background.34971879.png); */
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover
}

.box-flights {
    padding-top: 90px;
    padding-bottom: 51px
}

.swiper-group-journey {
    padding-bottom: 8px
}

.swiper-group-journey .swiper-slide {
    width: auto
}

.block-banner-home1 {
    min-height: 892px;
    padding-top: 300px;
}

.block-banner-home1 .bg-shape:before {
    /* content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 20%;
    /* background-image: url(../images/queensway/slider/slider-1.jpg); */
    /* background-repeat: no-repeat;
    background-position: top; 
    background-size: cover */
}

.block-banner-home1 .bg-shape:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    background: #000
}

.block-banner-home3 {
    position: relative
}

.block-banner-home3 .swiper-group-1 {
    max-width: 1860px;
    border-radius: 12px
}

.block-banner-home3 .item-banner-slide {
    min-height: 600px;
    position: relative;
    padding: 120px 0 180px
}

.block-banner-home3 .item-banner-slide.banner-1 {
    background: url(/_next/static/media/banner.674fcb65.png) #d3d3d3 50%/cover no-repeat
}

.block-banner-home3 .item-banner-slide.banner-2 {
    background: url(/_next/static/media/banner-2.42d36aa4.png) #d3d3d3 50%/cover no-repeat
}

.block-banner-home3 .item-banner-slide:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .49;
    background: #000;
    z-index: 0
}


.hero-section {
    display: flex;
    align-items: center;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.content-left {
    flex: 1;
    max-width: 600px;
}

.brand-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 20px;
    display: block;
}

.hero-heading {
    font-size: 62px;
    font-weight: 900;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.highlight-green {
    color: #96d11a;
}

.hero-heading .period {
    color: #96d11a;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.btn-story {
    display: inline-block;
    padding: 16px 40px;
    background: #96d11a;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-story:hover {
    background: #85bd15;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(150, 209, 26, 0.3);
}

.image-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    height: 220px;
}

.gallery-item-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    height: 220px;
}

.gallery-item-3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    height: 260px;
}

.gallery-item-4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: 130px;
}

.gallery-item-5 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: 115px;
    margin-top: 145px;
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        padding: 60px 30px;
    }

    .hero-heading {
        font-size: 48px;
    }

    .content-left {
        max-width: 100%;
    }

    .image-gallery {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-section {
        padding: 40px 20px;
    }

    .image-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item-1,
    .gallery-item-2,
    .gallery-item-3,
    .gallery-item-4,
    .gallery-item-5 {
        grid-column: 1 / 2;
        height: 200px;
        margin-top: 0;
    }

    .gallery-item-1 {
        grid-row: 1 / 2;
    }

    .gallery-item-2 {
        grid-row: 2 / 3;
    }

    .gallery-item-3 {
        grid-row: 3 / 4;
    }

    .gallery-item-4 {
        grid-row: 4 / 5;
    }

    .gallery-item-5 {
        grid-row: 5 / 6;
    }
}



.container-search-advance {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 12
}

.container-search-advance .box-search-advance {
    top: 0
}

.block-banner-home2 {
    min-height: 892px;
    padding-top: 300px
}

.block-banner-home2 .bg-shape:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/_next/static/media/banner.33d84654.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover
}

.block-banner-home2 .bg-shape:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    background: #000
}

.section-box-banner-2 .box-banner-1 {
    position: relative
}

.section-box-banner-2 .box-banner-1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/_next/static/media/img-1.6a4ae057.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover
}

.section-box-banner-2 .box-banner-1:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .39;
    border-radius: 12px;
    background: #000
}

.section-box-banner-2 .box-banner-2 {
    position: relative
}

.section-box-banner-2 .box-banner-2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/_next/static/media/img-2.00463fca.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover
}

.section-box-banner-2 .box-banner-2:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .39;
    border-radius: 12px;
    background: #000
}

.box-search-category a svg path {
    fill: var(--bs-neutral-1000)
}

.box-list-brand-car .item-brand {
    padding: 30px;
    background-color: var(--bs-neutral-0);
    border-radius: 12px;
    border: 1px solid var(--bs-border-color, #dde1de);
    background: var(--bs-neutral-0, #fff);
    margin-right: 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center
}

.box-list-brand-car .item-brand img {
    display: block;
    max-height: 28px
}

.box-list-brand-car .item-brand:last-child {
    margin-right: 0
}

.box-list-brand-car .item-brand-2 {
    background-color: var(--bs-neutral-0);
    border-radius: 12px;
    border: 1px solid var(--bs-border-color, #dde1de);
    background: var(--bs-neutral-0, #fff);
    display: flex;
    max-width: 128px;
    height: 128px;
    min-width: 150px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center
}

.box-list-brand-car .item-brand-2 img {
    display: block;
    max-height: 28px
}

.box-list-brand-car .item-brand-2:last-child {
    margin-right: 0
}

.list-ticks-green {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.list-ticks-green li {
    margin-bottom: 18px;
    padding: 3px 25px 3px 36px;
    background-image: url(https://carento-nextjs.vercel.app/_next/static/media/tick-list.755ea2fc.svg);
    background-repeat: no-repeat;
    background-position: 0;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    font-weight: 700
}

.list-ticks-green.list-ticks-green-2 li {
    background-image: url(/_next/static/media/tick-list-2.f6a84f87.svg)
}

.header-home-2 .btn-signin svg path {
    fill: var(--bs-neutral-1000)
}

.section-cta-4 {
    padding-top: 130px;
    padding-bottom: 115px
}

.section-cta-4 .bg-shape:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .26;
    background: url(/_next/static/media/banner.04cbf799.png) #d3d3d3 50%/cover no-repeat
}

.section-cta-4 .bg-shape:after {
    content: "";
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    width: 1472px;
    height: 1472px;
    border-radius: 1472px;
    background: var(--bs-background-2)
}

.rounded-12 {
    border-radius: 12px !important
}

.item-banner-slide-review {
    background-image: url(/_next/static/media/img-1.42fed330.png);
    min-height: 504px;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover
}

.item-banner-slide-review:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    border-radius: 12px;
    height: 100%;
    opacity: .69;
    background: linear-gradient(270deg, hsla(0, 0%, 7%, 0) -.95%, hsla(0, 0%, 7%, .69))
}

.item-banner-slide-review.banner2 {
    background-image: url(/_next/static/media/img-2.9379fe5f.png)
}

.item-banner-slide-review.banner-3 {
    background-image: url(/_next/static/media/img-1-1.63eeeafd.png)
}

.custom-container {
    max-width: 1412px;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto
}

.page-header {
    vertical-align: middle
}

.page-header .bg-overlay {
    position: relative
}

.page-header .custom-container {
    min-height: 430px
}

.page-header .custom-container .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.page-header .custom-container .bg-overlay:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 70%;
    height: 100%;
    opacity: .6;
    background: linear-gradient(90deg, rgba(0, 0, 0, .9), transparent 99.43%)
}

.page-header .custom-container .bg-overlay .img-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top
}

.page-header-2 {
    vertical-align: middle
}

.page-header-2 .custom-container {
    min-height: 430px
}

.page-header-2 .custom-container .bg-overlay,
.page-header-2 .custom-container .bg-overlay:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.page-header-2 .custom-container .bg-overlay:after {
    content: "";
    bottom: 0;
    opacity: .6;
    background: #000
}

.page-header-2 .custom-container .bg-overlay .img-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.section-1 .fs-72 {
    font-size: 72px;
    line-height: 72px;
    font-weight: 700
}

.section-1 .fs-96 {
    font-size: 96px;
    line-height: 96px;
    font-weight: 700
}

.section-box-banner-3 {
    background: url(/_next/static/media/banner.4f941e28.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    position: relative
}

.section-box-banner-3:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .52;
    background: #000
}

.section-box-banner-3.banner-2 {
    background: url(/_next/static/media/banner2.b4ae10b8.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover
}

.accordion .card {
    border: 0
}

.accordion .card .card-header {
    border: 0;
    background: transparent
}

.accordion .card .card-header a.collapsed .arrow {
    transition: .3s;
    transform: rotate(180deg)
}

.accordion .card .card-header a .arrow {
    transition: .3s;
    transform: rotate(0deg)
}

.card-meta-user {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.card-meta-user .box-author-small {
    display: flex;
    align-items: center;
    padding-right: 25px
}

.card-meta-user .box-author-small img {
    width: 32px;
    height: 32px;
    border: 1px solid var(--bs-brand-2);
    border-radius: 50%;
    margin-right: 10px
}

.card-meta-user .box-author-small p {
    color: var(--bs-color-white)
}

.card-meta-user .date-post {
    position: relative;
    padding-left: 5px
}

.card-meta-user .date-post:before {
    content: "";
    position: absolute;
    top: 2px;
    left: -10px;
    width: 1px;
    height: 18px;
    background-color: var(--bs-background-white)
}

.card-meta-user .date-post p {
    color: var(--bs-color-white)
}

.pagination {
    justify-content: flex-start;
    margin-top: 30px;
    flex-wrap: wrap;
    list-style: none !important;
    padding-left: 0 !important
}

.pagination li {
    margin-bottom: 8px
}

.pagination li a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border: 0 solid var(--bs-neutral-100);
    border-radius: 4px;
    text-align: center;
    padding: 0;
    font-family: var(--urbanist);
    font-size: 16px;
    font-weight: 700;
    color: var(--bs-button-text-2);
    margin: 2px 4px;
    background-color: var(--bs-button-bg-2)
}

.pagination li a.active,
.pagination li a:hover {
    background-color: var(--bs-button-bg);
    color: var(--bs-button-text)
}

.pagination .page-item:not(:first-child) .page-link {
    margin-left: 2px
}

.pagination .page-item:last-child .page-link {
    border: 0;
    line-height: 30px;
    border-radius: 4px
}

.pagination .page-item:last-child .page-link svg {
    stroke: var(--bs-button-text-2)
}

.pagination .page-item:last-child .page-link:hover svg {
    stroke: #101010
}

.pagination .page-item:first-child .page-link {
    border: 0;
    line-height: 35px;
    border-radius: 4px
}

.pagination .page-item:first-child .page-link svg {
    stroke: var(--bs-button-text-2)
}

.pagination .page-item:first-child .page-link:hover svg {
    stroke: #101010
}

.block-subscriber {
    display: flex;
    align-items: center;
    background-color: var(--bs-background-2);
    border-radius: 12px;
    border: 1px solid var(--bs-border-color)
}

.block-subscriber .subscriber-left {
    width: 50%;
    padding: 0 76px
}

.block-subscriber .subscriber-left .form-control {
    background-image: url(/_next/static/media/email.db95b1f3.png);
    padding: 19px 24px 19px 50px;
    background-repeat: no-repeat;
    background-position: left 24px center
}

.block-subscriber .subscriber-right {
    width: 50%;
    background: url(/_next/static/media/subscriber.cdfac7ca.png) no-repeat 50%;
    height: 484px;
    background-size: cover;
    border-radius: 0 12px 12px 0
}

.box-banner-ads-recent {
    position: relative;
    padding: 30px 30px 190px;
    background-color: var(--bs-background-12);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: auto;
    border-radius: 8px
}

.box-banner-ads-recent h6 {
    margin-bottom: 22px
}

.box-banner-ads-recent .btn-brand-secondary {
    color: var(--Button-button-text-2, #000);
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    display: inline-flex;
    padding: 12px 22px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    background: #fefa17
}

.post-date {
    background: url(/_next/static/media/calendar.ffcc9482.svg) no-repeat 0
}

.post-date,
.post-time {
    display: inline-block;
    padding: 0 16px 0 20px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    color: var(--bs-neutral-1000)
}

.post-time {
    background: url(/_next/static/media/time.0cb54cd7.svg) no-repeat 0
}

.post-comment {
    display: inline-block;
    padding: 0 0 0 20px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    color: var(--bs-neutral-1000);
    background: url(/_next/static/media/comment.4cd0f2ab.svg) no-repeat 0
}

.content-detail-post {
    max-width: 824px;
    margin: auto
}

.content-detail-post p {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--bs-neutral-700)
}

.content-detail-post h6 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 700;
    color: var(--bs-neutral-1000);
    margin-bottom: 12px
}

a.icon-socials {
    display: inline-block;
    height: 40px;
    width: 40px;
    transition-duration: .2s;
    margin-right: 7px;
    line-height: 40px;
    text-align: center
}

a.icon-socials img {
    vertical-align: middle
}

a.icon-socials svg path {
    fill: var(--bs-neutral-0)
}

a.icon-socials:last-child {
    margin-right: 0
}

a.icon-socials:hover {
    transform: translateY(-3px);
    transition-duration: .2s
}

a.icon-socials:hover svg path {
    fill: #70f46d
}

.box-socials svg path {
    fill: var(--bs-neutral-1000) !important
}

.card-contact {
    width: 100%;
    padding: 22px 25px;
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    background-color: var(--bs-background-body);
    margin-bottom: 25px
}

.card-contact .card-image {
    margin-bottom: 18px
}

.card-contact .card-image .card-icon {
    border-radius: 8px;
    background-color: var(--bs-neutral-200);
    width: 53px;
    height: 53px;
    line-height: 53px;
    text-align: center
}

.card-contact .card-image .card-icon svg path {
    fill: var(--bs-neutral-1000)
}

.card-contact .card-image .card-icon img {
    display: inline-block;
    vertical-align: middle
}

.card-contact .card-info .card-title {
    margin-bottom: 18px
}

.card-contact .card-info .card-title .title {
    display: block;
    margin-bottom: 10px;
    color: var(--bs-neutral-1000)
}

.card-contact .card-info .card-title a {
    color: var(--bs-neutral-1000)
}

.card-contact .card-info .card-title a:hover {
    color: var(--bs-brand-2)
}

.card-contact .card-info .card-title p {
    min-height: 36px
}

.card-contact .card-info .card-method-contact a {
    color: var(--bs-neutral-1000)
}

.card-contact .card-info .card-method-contact a svg path {
    fill: var(--bs-neutral-1000)
}

.card-contact .card-info .card-method-contact a:hover {
    color: var(--bs-brand-2)
}

.card-contact .card-info .card-method-contact a:hover svg {
    stroke: var(--bs-brand-2)
}

.h-520 {
    max-height: 520px
}

.box-section-term .sidebar-menu a {
    transition: all .3s ease-in-out
}

.box-section-term .sidebar-menu a.active,
.box-section-term .sidebar-menu a:hover {
    color: var(--bs-neutral-1000) !important;
    font-weight: 700 !important
}

.box-section-term .content ul {
    list-style: inherit
}

.box-section-term .content ul li {
    margin-left: 20px
}

.sale-lbl {
    position: absolute;
    top: 0;
    right: 30px;
    z-index: 5;
    background-image: url(/_next/static/media/sale.69f0d7e2.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 44px;
    width: 44px;
    color: var(--bs-neutral-1000);
    font-size: 12px;
    line-height: 40px;
    text-align: center;
    font-weight: 700
}

.card-property.card-flight.card-hotel .card-info .card-title {
    margin-bottom: 12px
}

.card-property.card-flight.card-hotel .card-facilities {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.card-property.card-flight.card-hotel .card-facilities .item-facilities {
    width: 33.33%
}

.card-property.card-flight.card-hotel .card-facilities .item-facilities p {
    background-repeat: no-repeat;
    background-position: 0;
    padding: 0 0 0 30px;
    margin-bottom: 13px
}

.card-property.card-flight.card-hotel .card-facilities .item-facilities p.speed {
    background-image: url(/_next/static/media/speed.253ffba1.svg)
}

.card-property.card-flight.card-hotel .card-facilities .item-facilities p.gear {
    background-image: url(/_next/static/media/engineering.9b96323a.svg)
}

.card-property.card-flight.card-hotel .card-facilities .item-facilities p.fuel {
    background-image: url(/_next/static/media/fuel.2f92bd11.svg)
}

.card-property.card-flight.card-hotel .card-facilities .item-facilities p.seats {
    background-image: url(/_next/static/media/seat.9e5fff80.svg)
}

.card-property.card-flight.card-hotel .card-facilities .item-facilities p.room {
    background-image: url(/_next/static/media/mile.3662f0d7.svg)
}

.card-property.card-flight.card-hotel .card-facilities .item-facilities p.size {
    background-image: url(/_next/static/media/automatic.e6230f51.svg)
}

.card-property.card-flight.card-hotel .card-facilities .item-facilities p.bed {
    background-image: url(/_next/static/media/fuel.e9f73ef5.svg)
}

.card-property.card-flight.card-hotel .card-facilities .item-facilities p.bathroom {
    background-image: url(/_next/static/media/seat.d93242be.svg)
}

.card-property.card-flight.card-hotel .card-facilities .item-facilities p.parking {
    background-image: url(/_next/static/media/suitcase.a79808d2.svg)
}

.card-property.card-flight.card-hotel .card-facilities .item-facilities p.pet {
    background-image: url(/_next/static/media/car.5599f296.svg)
}

.card-method-contact2 a {
    color: var(--bs-neutral-1000);
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 18px;
    border: .6px solid var(--bs-border-color);
    background: var(--Button-button-bg-2, #f2f4f6)
}


.form-contact .form-group .cb-remember {
    margin-top: 3px
}

.box-content-room-detail {
    padding-bottom: 90px
}

.box-sidebar-content {
    padding-top: 25px
}

.w-85 {
    width: 85%
}

.w-90 {
    width: 90%
}

.w-95 {
    width: 95%
}

.list-style-disc {
    list-style: disc
}

.w-100px {
    width: 100px
}

.add-to-cart .detail-qty {
    position: relative
}

.add-to-cart .detail-qty .qty-down {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 5
}

.add-to-cart .detail-qty .qty-up {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 5
}

.text-success {
    color: var(--bs-success) !important
}

.box-feature-car {
    padding: 45px 45px 31px;
    border: 1px solid var(--bs-border-color);
    background-color: var(--bs-background-card);
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .07);
    margin-bottom: 20px;
    border-radius: 8px
}

.list-feature-car {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -7px
}

.list-feature-car .item-feature-car {
    padding: 0 7px;
    margin-bottom: 14px
}

.list-feature-car .item-feature-car .item-feature-car-inner {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--bs-border-color);
    background-color: var(--bs-background-2);
    border-radius: 4px
}

.list-feature-car .item-feature-car .item-feature-car-inner .feature-image {
    margin-right: 5px
}

.list-feature-car .item-feature-car .item-feature-car-inner .feature-image img {
    display: block
}

.list-checked-green {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 !important;
    margin: 0 0 10px
}

.list-checked-green li {
    list-style: none !important;
    width: 100%;
    background-image: url(/_next/static/media/tick-green.2bab987d.svg);
    background-repeat: no-repeat;
    background-position: 0;
    padding: 0 30px 0 20px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    color: var(--bs-neutral-1000);
    margin-bottom: 5px
}

.list-checked-green-2 {
    list-style: none;
    padding: 0 !important;
    margin-bottom: 12px
}

.list-checked-green-2 li {
    list-style: none !important;
    background-image: url(/_next/static/media/tick-green.2bab987d.svg);
    background-repeat: no-repeat;
    background-position: 0;
    padding: 0 30px 0 20px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    color: var(--bs-neutral-1000);
    margin-bottom: 12px
}

[data-bs-theme=dark] .box-button-book .btn.btn-book {
    color: var(--bs-neutral-0)
}

[data-bs-theme=dark] .box-button-book .btn.btn-book svg {
    stroke: var(--bs-neutral-0)
}

.box-grid-news .card-news {
    margin-bottom: 32px
}

.box-grid-news .card-news .card-info {
    margin-top: 0;
    height: 360px
}

.box-grid-news .card-news .card-info .card-title {
    margin-bottom: 15px;
    margin-top: 12px
}

.box-grid-news .card-news .card-info .card-meta {
    margin-top: 0
}

.box-grid-news .card-news .card-info .card-desc {
    margin-bottom: 35px
}

.box-grid-news .card-news .card-image {
    height: 360px;
    max-width: 350px
}

.box-grid-news .card-news .card-image img {
    width: auto
}

.list-posts li {
    list-style: none;
    margin-bottom: 22px
}

.card-post .card-image {
    min-width: 85px;
    max-width: 85px;
    margin-right: 13px
}

.card-post .card-image img {
    display: block;
    border-radius: 8px;
    width: 100%
}

.card-post .card-info a {
    display: block;
    margin-bottom: 12px
}

.card-post .card-info .date-post {
    background-repeat: no-repeat;
    background-position: 0;
    padding-left: 24px
}

.box-sidebar-border {
    padding: 30px;
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    background-color: var(--bs-background-card);
    margin-bottom: 32px
}

.box-sidebar-border .box-head-sidebar {
    padding: 0 0 16px;
    border-bottom: 1px solid var(--bs-border-color);
    margin-bottom: 35px
}

.list-photo-col-3 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -9px
}

.list-photo-col-3 li {
    padding: 0 9px;
    width: 33.33%;
    margin-bottom: 18px
}

.list-photo-col-3 li img {
    display: block;
    border-radius: 4px;
    width: 100%
}

.box-search-style-2 {
    position: relative;
    margin-bottom: 32px
}

.box-search-style-2 form input {
    background-color: var(--bs-neutral-100);
    height: 64px;
    border: 1px solid var(--bs-border-color)
}

.box-search-style-2 .btn-search-submit {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: 50%;
    border: 0
}

.list-posts-md .card-post {
    margin-bottom: 24px
}

.list-posts-md .card-post .card-image {
    min-width: 131px;
    max-width: 131px;
    margin-right: 20px
}

.box-posts-grid-2 {
    padding: 90px 0
}

.meta-user {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center
}

.meta-user .box-author-small {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin-bottom: 12px;
    padding-right: 20px
}

.meta-user .box-author-small img {
    width: 32px;
    height: 32px;
    border: 1px solid var(--bs-brand-2);
    border-radius: 50%;
    margin-right: 10px
}

.box-content-detail-blog {
    max-width: 1248px;
    margin: auto
}

.box-content-info-detail {
    background-color: var(--bs-background-body);
    border-radius: 16px;
    padding: 80px 0 0;
    position: relative;
    margin-top: -260px
}

.footer-post-tags {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 25px;
    margin-bottom: 115px;
    border-top: 1px solid var(--bs-border-color)
}

.footer-post-tags .box-tags .btn {
    margin: 0 16px 16px 0
}

.footer-post-tags .box-share {
    margin-bottom: 16px
}

.box-leave-comment,
.box-list-comment {
    padding: 32px;
    border: 1px solid var(--bs-border-color);
    margin-bottom: 38px;
    border-radius: 8px
}

.box-list-comment {
    display: inline-block;
    width: 100%
}

.box-list-comment .list-reviews .item-review:hover {
    box-shadow: 0 6px 22px 0 rgba(0, 0, 0, .09)
}

.form-contact input[type=email],
.form-contact input[type=text] {
    background-color: var(--bs-background-card)
}

.form-contact .btn-book {
    color: #000
}

.form-contact .btn-book svg {
    stroke: #000
}

.box-contact-form {
    padding: 90px 0
}

.swiper-button-prev-style-1 {
    height: 40px;
    width: 40px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--bs-neutral-200)
}

.swiper-button-prev-style-1 svg {
    stroke: #000
}

.swiper-button-prev-style-1:after {
    display: none
}

.swiper-button-prev-style-1:hover {
    background-color: var(--bs-brand-2)
}

.swiper-button-prev-style-1:hover svg {
    stroke: #000
}

.swiper-button-next-style-1 {
    height: 40px;
    width: 40px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--bs-neutral-200)
}

.swiper-button-next-style-1 svg {
    stroke: #000
}

.swiper-button-next-style-1:after {
    display: none
}

.swiper-button-next-style-1:hover {
    background-color: var(--bs-brand-2)
}

.swiper-button-next-style-1:hover svg {
    stroke: #000
}

.box-button-slider-team {
    text-align: right
}

.box-button-slider-team .swiper-button-prev-style-1 {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    margin: 0 4px 0 0;
    display: inline-block
}

.box-button-slider-team .swiper-button-next-style-1 {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin: 0;
    display: inline-block
}

.container-slider {
    padding-left: 30px
}

.popular-categories {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.popular-categories .dropdown-filter {
    margin-left: 8px;
    margin-bottom: 8px
}

.block-testimonials {
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 0
}

.block-testimonials .testimonials-left {
    max-width: 688px;
    width: 40%;
    margin-right: 80px;
    position: relative
}

.block-testimonials .testimonials-left:before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 264px;
    height: 140px;
    background-size: cover;
    z-index: 1
}

.block-testimonials .testimonials-right {
    width: 60%
}

.box-news {
    padding: 91px 0 110px
}

.box-list-news {
    margin-top: 54px
}

.form-subscriber {
    display: flex;
    align-items: center;
    position: relative
}

.form-subscriber .form-control {
    height: 60px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--bs-border-color);
    padding: 21px 31px
}

.form-subscriber .btn-submit {
    position: absolute;
    top: 0;
    right: 0;
    height: 60px;
    background-color: var(--bs-brand-2);
    border-radius: 12px;
    padding: 19px 35px;
    color: var(--bs-neutral-1000);
    width: auto;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700
}

.form-subscriber .btn-submit:hover {
    background-color: var(--bs-neutral-200);
    color: var(--bs-neutral-1000)
}

.box-author-testimonials {
    display: inline-block;
    padding: 10px 12px;
    border-radius: 50px;
    background-color: var(--bs-neutral-0);
    color: var(--bs-neutral-1000);
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 123;
    position: relative;
    border: 1px solid var(--bs-border-color)
}

.box-author-testimonials img {
    border: 1px solid var(--bs-neutral-0);
    border-radius: 50%;
    height: 26px;
    width: 26px;
    margin-right: -13px
}

.box-author-testimonials img:last-child {
    margin-right: 8px
}

.mt-8 {
    margin-top: 8px
}

#dropdownSort {
    padding-right: 40px;
    background: url(/_next/static/media/sort.917ec623.svg) no-repeat right 16px center
}

.box-list-populars {
    margin-top: 25px
}

.download-apps img {
    margin-right: 8px
}

.box-subscriber {
    padding-bottom: 100px
}

.download-apps {
    margin-top: 64px
}

.text-unlock {
    margin-right: 13px;
    display: inline-block;
    padding: 2px 0 2px 20px;
    background: url(/_next/static/media/icon1.0335b2c3.svg) no-repeat 0
}

.category-link {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 12px;
    color: var(--bs-neutral-1000);
    margin: 0 4px 0 0
}

.category-link.active,
.category-link:hover {
    background-color: var(--bs-brand-2);
    color: #000
}

.container-banner {
    position: relative;
    width: 100%
}

.form-newsletter {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 505px;
    width: 100%
}

.form-newsletter .form-control {
    border: 1px solid var(--bs-neutral-500);
    background-color: var(--bs-background-1000);
    color: var(--bs-neutral-500);
    padding: 19px 24px 19px 50px;
    height: 60px;
    width: 100%;
    max-width: 360px;
    margin-right: 8px;
    background-image: url(/_next/static/media/email.b2362891.svg);
    background-repeat: no-repeat;
    background-position: left 24px center
}

.form-newsletter .form-control::placeholder {
    color: var(--bs-neutral-500)
}

.form-newsletter .btn-brand-2 {
    height: 60px;
    color: var(--bs-background-1000)
}

.slick-next,
.slick-prev {
    position: absolute;
    top: auto;
    bottom: 163px;
    transform: translateY(-50%);
    left: 15px;
    z-index: 123;
    height: 40px;
    width: 40px;
    border: 0;
    border-radius: 50%;
    background-color: var(--bs-neutral-200)
}

.slick-next svg,
.slick-prev svg {
    stroke: var(--bs-neutral-1000)
}

.slick-next:hover,
.slick-prev:hover {
    background-color: var(--bs-neutral-1000)
}

.slick-next:hover svg,
.slick-prev:hover svg {
    stroke: var(--bs-neutral-0)
}

.slick-next {
    right: auto;
    left: 60px
}

.slider-thumnail {
    top: 60px;
    position: absolute;
    width: 247px;
    z-index: 110;
    right: 0
}

.slider-thumnail .slick-next,
.slider-thumnail .slick-prev {
    display: none !important
}

.slider-nav-thumbnails .banner-slide {
    margin-bottom: 16px;
    border: 3px solid var(--bs-neutral-0);
    border-radius: 16px;
    overflow: hidden
}

.slider-nav-thumbnails .banner-slide.slick-current {
    border-color: var(--bs-brand-2)
}

.box-search-advance {
    border: 1px solid var(--bs-border-color);
    border-radius: 16px;
    background-color: var(--bs-neutral-0);
    /* padding: 60px 20px 20px 20px; */
    padding: 18px 20px 43px 20px;
    position: relative;
    top: -40px;
    z-index: 12;
    margin-bottom: -112px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .05)
}

.box-search-advance .box-top-search {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.box-search-advance .box-bottom-search {
    border: 1px solid var(--bs-border-color);
    border-radius: 16px;
    background-color: var(--bs-neutral-0);
    padding: 21px 0;
    margin-top: 28px;
    display: flex;
    align-items: flex-end
}

.box-search-advance .box-bottom-search .item-search {
    width: 20%;
    position: relative;
    padding: 0 27px
}

.box-search-advance .box-bottom-search .item-search:before {
    content: "";
    height: 58px;
    right: 10px;
    width: 1px;
    background-color: var(--bs-border-color);
    position: absolute;
    top: 1px
}

.box-search-advance .box-bottom-search .item-search.bd-none:before {
    display: none
}

.box-search-advance .box-bottom-search .btn-black-lg {
    padding: 15px 32px !important
}

.box-search-advance .box-bottom-search .btn-black-lg svg {
    margin: 0 10px 0 0
}

.need-some-help {
    background: url(/_next/static/media/user.dfdcecd2.svg) no-repeat 0;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    color: var(--bs-neutral-500);
    display: inline-block;
    padding: 0 0 0 20px
}

.location-search {
    padding-left: 22px !important;
    background: url(/_next/static/media/location.a6d216f8.svg) no-repeat 0
}

.box-image-payment-2 img {
    border-radius: 56px
}

.box-search-category {
    margin-top: 60px;
    margin-bottom: 50px;
}

.box-list-brand-car {
    margin-top: 32px
}

.passenger-search {
    padding-left: 22px !important;
    background: url(/_next/static/media/user.dfdcecd2.svg) no-repeat 0
}

.accordion-button {
    padding: 48px 90px 48px 0;
    border: 0;
    border-bottom: 1p solid var(--bs-border-color);
    border-color: var(--bs-border-color);
    position: relative
}

.accordion-button h3 {
    color: var(--bs-neutral-1000);
    padding: 0 45px;
    min-width: 146px
}

.accordion-button p {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: var(--bs-neutral-1000)
}

.accordion-button.collapsed {
    border-bottom: 1px solid var(--bs-border-color)
}

.accordion-button:focus {
    border-color: var(--bs-border-color)
}

.accordion-collapse {
    border: 0;
    background-color: var(--bs-neutral-100);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom: 1px solid var(--bs-border-color)
}

.accordion-collapse .accordion-body {
    padding: 0 120px 0 146px;
    margin-bottom: 48px
}

.accordion-button:not(.collapsed) {
    background-color: var(--bs-neutral-100);
    padding-bottom: 15px
}

.box-faqs {
    background-image: url(/_next/static/media/bg-faq.44662b1b.png);
    background-position: 0 100%;
    padding-bottom: 128px;
    padding-top: 90px;
    border-bottom: 1px solid var(--bs-border-color)
}

.box-faqs,
.box-faqs-inner {
    background-repeat: no-repeat
}

.box-faqs-inner {
    background-image: url(/_next/static/media/bg-faq2.74cf5d2b.png);
    background-position: right top 90px
}

.block-faqs {
    max-width: 1036px;
    margin: 65px auto auto
}

.accordion-button:after {
    background-image: url(/_next/static/media/open-faq.8c761629.png);
    transform: rotate(0deg);
    background-position: 50%;
    background-color: var(--bs-neutral-100);
    border-radius: 4px;
    width: 42px;
    height: 42px;
    top: 48px;
    right: 48px;
    position: absolute;
    z-index: 12
}

.accordion-button:not(.collapsed):after {
    background-image: url(/_next/static/media/close-faq.297cbcaa.png);
    background-color: var(--bs-neutral-1000)
}

.accordion-collapse .accordion-body {
    color: var(--bs-neutral-500)
}

.list-check {
    padding: 0;
    margin: 0 0 60px;
    list-style: none
}

.list-check li {
    font-size: 18px;
    line-height: 42px;
    color: var(--bs-neutral-1000);
    padding: 0 0 0 30px
}

.box-authors-partner {
    display: flex;
    align-items: center;
    padding: 16px 12px;
    border: 1px solid var(--bs-border-color);
    border-radius: 16px
}

.box-authors-partner .authors-partner-left {
    display: flex;
    align-items: center;
    min-width: 160px
}

.box-authors-partner .authors-partner-left img {
    width: 51px;
    height: 51px;
    border: 1px solid var(--bs-border-color);
    margin-right: -20px;
    border-radius: 50%
}

.box-authors-partner .authors-partner-left .item-author {
    display: inline-block;
    height: 51px;
    width: 51px;
    border: 1px solid var(--bs-border-color);
    border-radius: 50%;
    background-color: var(--bs-brand-2);
    line-height: 46px;
    text-align: center;
    min-width: 51px
}

.box-authors-partner .authors-partner-right {
    position: relative
}

.box-why-book-22 {
    padding-bottom: 100px
}

.box-banner-home7 {
    position: relative
}

.box-banner-home7 .item-banner-slide {
    min-height: 764px;
    position: relative;
    background-position: top;
    background-repeat: no-repeat;
    padding: 120px 0 180px;
    background-size: cover
}

.box-banner-home7 .item-banner-slide:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.box-banner-home7 .item-banner-slide.banner-1 {
    background: url(/_next/static/media/banner.33d84654.png) #d3d3d3 50%/cover no-repeat
}

.box-banner-home7 .item-banner-slide.banner-2 {
    background: url(/_next/static/media/banner-2.87a49d6a.png) #d3d3d3 50%/cover no-repeat
}

.box-banner-home7 .item-banner-slide .container {
    position: relative;
    z-index: 2
}

.box-banner-home7 .container-search-advance {
    z-index: 2
}

.list-videos-small {
    position: relative;
    padding-right: 20px
}

.list-videos-small .item-video-small {
    display: flex;
    align-items: center;
    margin-bottom: 28px
}

.list-videos-small .item-video-small .item-image {
    width: 188px;
    min-width: 188px;
    height: auto;
    margin-right: 25px;
    border-radius: 16px;
    overflow: hidden;
    position: relative
}

.list-videos-small .item-video-small .item-image img {
    display: block;
    width: 100%
}

.list-videos-small .item-video-small .item-info {
    position: relative
}

.list-videos-small .item-video-small .item-info .heading-6 {
    margin-bottom: 8px;
    color: var(--bs-neutral-1000)
}

.list-videos-small .item-video-small .item-info .heading-6:hover {
    color: var(--bs-neutral-1000)
}

.box-picked {
    position: relative
}

.box-videos-small {
    padding: 49px 0 19px;
    position: relative;
    margin-top: 59px
}

.box-videos-small .bg-video {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 65%;
    background-color: var(--bs-background-2);
    z-index: 1;
    border-radius: 16px
}

.box-videos-small .row {
    position: relative;
    z-index: 2
}

.box-banner-ads {
    position: relative
}

.card-testimonial-2 {
    max-width: 100%;
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent
}

.card-testimonial-2 .card-top {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0
}

.card-testimonial-2 .card-top .card-author {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    width: 100%
}

.card-testimonial-2 .card-top .card-author .card-image {
    margin-bottom: 10px
}

.card-testimonial-2 .card-top .card-author>.card-info {
    margin-bottom: 5px;
    width: 100%
}

.card-testimonial-2 .card-top .card-rate {
    margin-bottom: 10px
}

.card-testimonial-2>.card-info {
    text-align: center
}

.card-testimonial-2 .card-bottom {
    text-align: center;
    margin-top: 15px
}

.box-grid-hotels .card-flight {
    max-width: 100%
}

.box-grid-hotels .card-flight .card-info {
    height: 360px
}

.box-grid-hotels .card-flight .card-image {
    height: 360px;
    max-width: 350px
}

.box-grid-hotels .card-flight .tour-rate {
    margin-bottom: 4px
}

.box-grid-hotels .card-flight .card-tags {
    margin-bottom: 24px
}

.box-grid-hotels .card-flight .card-tags .btn-tag-border {
    margin-right: 5px;
    margin-bottom: 5px
}

.box-grid-hotels .card-flight .card-tags .btn-tag-border:hover {
    box-shadow: 0 6px 22px 0 rgba(0, 0, 0, .09)
}

.box-grid-hotels .card-flight .card-facilities {
    margin-bottom: 24px
}

.box-grid-hotels .card-flight .card-facilities .list-tick-green {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.box-grid-hotels .card-flight .card-facilities .list-tick-green li {
    width: 33.33%;
    background-image: url(/_next/static/media/tick-green.2bab987d.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    padding: 0 30px 0 20px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    color: var(--bs-neutral-1000);
    margin-bottom: 5px
}

.breadcrumbs {
    padding: 34px 0
}

.breadcrumbs li {
    display: inline-block;
    padding-right: 37px;
    position: relative
}

.breadcrumbs li a {
    font-size: 16px;
    line-height: 26px;
    color: var(--bs-neutral-700);
    font-weight: 500;
    text-decoration: none
}

.breadcrumbs li a:hover {
    color: var(--bs-neutral-1000)
}

.breadcrumbs li span.arrow-right {
    position: absolute;
    top: 0;
    right: 15px
}

.breadcrumbs li span.arrow-right svg {
    stroke: var(--bs-neutral-500)
}

.breadcrumbs li .text-breadcrumb {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: var(--bs-neutral-1000)
}

.box-filters-sidebar .title-filter {
    margin-bottom: 24px;
    margin-top: 8px
}

.box-filters-sidebar .block-filter {
    border-top: 1px solid var(--bs-border-color);
    padding: 42px 0 10px
}

.box-filters-sidebar .block-filter .head-filter {
    margin-bottom: 20px
}

.box-filters-sidebar .block-filter:first-child {
    padding-top: 0;
    border-top: 0
}

.box-filters-sidebar .block-filter .item-collapse {
    margin-bottom: 20px;
    background-image: url(/_next/static/media/arrow-up.5b8e4dc5.svg);
    background-position: 100%;
    background-repeat: no-repeat;
    padding-right: 20px;
    cursor: pointer
}

.box-filters-sidebar .block-filter .item-collapse.collapsed-item {
    background-image: url(/_next/static/media/arrow-down-filter.66470b2c.svg)
}

.box-filters-sidebar .block-filter .list-sizes .item-size.active {
    font-weight: 500
}

.box-collapse2 {
    overflow: hidden
}

.box-collapse {
    margin-bottom: 35px
}

.box-value-price {
    margin-top: 8px
}

.box-value-price,
.list-filter-checkbox li {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.list-filter-checkbox li {
    margin-bottom: 18px
}

.list-filter-checkbox li .cb-container {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    color: var(--bs-neutral-1000)
}

.list-filter-checkbox li .cb-container img {
    display: inline-block;
    vertical-align: middle;
    margin: 0 1px
}

.list-filter-checkbox li .number-item {
    min-width: 27px;
    max-width: 27px;
    border-radius: 7px;
    padding: 3px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    color: var(--bs-neutral-1000);
    background-color: var(--bs-border-color);
    text-align: center
}

.sidebar-left {
    padding: 29px 25px 0;
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    margin-bottom: 24px
}

.box-content-main {
    display: flex;
    margin-left: -12px;
    margin-right: -12px
}

.box-content-main .content-left {
    width: 100%;
    padding: 0 12px;
    min-width: 295px;
    max-width: 295px
}

.box-content-main .content-right {
    width: 100%;
    padding: 0 12px
}

.box-content-main {
    padding: 56px 0 90px
}

.box-content-main #dropdownSort {
    padding-right: 0;
    background-image: none
}

.box-item-sort {
    justify-content: flex-end
}

.box-item-sort,
.item-sort {
    display: flex;
    align-items: center
}

.item-sort {
    border: 1px solid var(--bs-border-color);
    border-radius: 4px;
    padding: 7px;
    margin-left: 4px
}

.dropdown-sort {
    top: -1px
}

.dropdown-sort #dropdownSort,
.dropdown-sort .dropdown-toggle {
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    color: var(--bs-neutral-1000);
    background-image: url(/_next/static/media/dropdown.b6ff8543.svg);
    background-position: right 1px center;
    padding: 0 19px 0 0;
    background-repeat: no-repeat;
    border: 0
}

.dropdown-sort #dropdownSort:after,
.dropdown-sort .dropdown-toggle:after {
    display: none
}

.box-view-type {
    min-height: 40px;
    display: flex;
    align-items: center
}

.display-type {
    display: inline-block;
    margin-right: 10px
}

.display-type svg {
    fill: var(--bs-neutral-500)
}

.display-type.active svg {
    fill: var(--bs-neutral-1000)
}

.number-found {
    display: inline-block;
    margin-left: 8px
}

.box-see-more {
    margin-top: 15px
}

.box-see-more,
.link-see-more {
    display: flex;
    align-items: center;
    justify-content: center
}

.link-see-more {
    width: -moz-fit-content;
    width: fit-content;
    color: var(--bs-neutral-1000);
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    text-decoration: none
}

.link-see-more svg {
    margin-left: 5px;
    fill: var(--bs-neutral-1000)
}

.rate-element {
    border: 1px solid var(--bs-border-color);
    border-radius: 33px;
    padding: 6px 16px 6px 30px;
    background-image: url(/_next/static/media/star.91d69b98.svg);
    background-repeat: no-repeat;
    background-position: left 12px center;
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .07);
    display: inline-block;
    background-color: var(--bs-background-card);
    color: var(--bs-neutral-1000)
}

.rate-element .rating {
    font-weight: 700
}

.tour-code,
.tour-location {
    display: flex;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content
}

.tour-code svg,
.tour-location svg {
    fill: var(--bs-neutral-300);
    margin-right: 7px
}

.tour-metas {
    display: flex;
    align-items: flex-end;
    justify-content: space-between
}

.tour-metas .tour-meta-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px
}

.tour-metas .tour-meta-left a {
    text-decoration: underline;
    font-weight: 700
}

.tour-metas .tour-meta-right {
    min-width: 230px;
    margin-bottom: 15px
}

.box-content-tour-detail {
    padding-top: 45px
}

.tour-rate {
    margin-bottom: 22px
}

.tour-title-main {
    margin-bottom: 20px
}

.tour-meta-right .btn-share {
    margin-right: 8px
}

.group-collapse-expand {
    position: relative;
    background-color: var(--bs-background-card);
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    padding: 32px 32px 12px;
    margin-bottom: 20px
}

.group-collapse-expand .btn-collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 0 18px;
    outline: 0
}

.group-collapse-expand .btn-collapse svg {
    stroke: var(--bs-neutral-1000)
}

.group-collapse-expand .card.card-body {
    padding: 0 !important;
    border: 0 !important;
    background-color: var(--bs-background-card)
}

.group-collapse-expand .card.card-body p {
    font-size: 14px;
    line-height: 22px;
    color: var(--bs-neutral-800);
    margin-bottom: 20px
}

.group-collapse-expand .card.card-body ul {
    color: var(--bs-neutral-800);
    padding: 0 0 0 20px
}

.group-collapse-expand .card.card-body ul.list-number {
    list-style: decimal;
    color: var(--bs-neutral-800);
    padding: 0 0 0 20px;
    font-weight: 700;
    margin-bottom: 24px
}

.group-collapse-expand .card.card-body ul.list-number li span {
    font-weight: 400
}

.group-collapse-expand .collapsed svg {
    transform: rotate(-180deg)
}

.btn:first-child:active {
    border-color: transparent
}

.list-questions {
    position: relative
}

.list-questions .item-question {
    position: relative;
    padding: 14px 20px;
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    background-color: var(--bs-background-body);
    margin-bottom: 8px
}

.list-questions .item-question.active {
    background-color: var(--bs-neutral-100)
}

.list-questions .item-question .head-question {
    margin-bottom: 9px
}

.list-questions .item-question .head-question p {
    background-image: url(/_next/static/media/question.b116d50e.png);
    background-position: 0;
    background-repeat: no-repeat;
    padding: 0 0 0 25px;
    margin-bottom: 0
}

.head-reviews {
    display: flex;
    align-items: center;
    margin-bottom: 30px
}

.head-reviews .review-left {
    background-color: var(--bs-background-card);
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    width: 100%;
    height: 186px;
    min-width: 174px;
    margin-right: 34px;
    max-width: 174px;
    text-align: center;
    line-height: 186px
}

.head-reviews .review-left .review-info-inner {
    display: inline-block;
    line-height: 22px;
    vertical-align: middle
}

.head-reviews .review-left .review-info-inner p {
    margin-bottom: 0
}

.head-reviews .review-right {
    width: 100%
}

.group-collapse-expand .item-review-progress,
.item-review-progress {
    display: flex;
    align-items: center;
    margin-bottom: 12px
}

.group-collapse-expand .item-review-progress .text-rv-progress,
.item-review-progress .text-rv-progress {
    min-width: 108px;
    padding-right: 8px
}

.group-collapse-expand .item-review-progress .text-rv-progress p,
.item-review-progress .text-rv-progress p {
    margin-bottom: 0
}

.group-collapse-expand .item-review-progress .bar-rv-progress,
.item-review-progress .bar-rv-progress {
    display: inline-block;
    width: 100%;
    max-width: 232px
}

.group-collapse-expand .item-review-progress .bar-rv-progress .progress,
.item-review-progress .bar-rv-progress .progress {
    background-color: var(--bs-neutral-200);
    border-radius: 2px;
    height: 10px
}

.group-collapse-expand .item-review-progress .bar-rv-progress .progress .progress-bar,
.item-review-progress .bar-rv-progress .progress .progress-bar {
    height: 10px;
    border-radius: 2px;
    background-color: var(--bs-warning)
}

.group-collapse-expand .item-review-progress .text-avarage,
.item-review-progress .text-avarage {
    min-width: 35px;
    padding-left: 8px
}

.group-collapse-expand .item-review-progress .text-avarage p,
.item-review-progress .text-avarage p {
    margin-bottom: 0
}

.list-reviews .item-review {
    border-radius: 8px;
    border: 1px solid var(--bs-border-color);
    padding: 21px 25px;
    background-color: var(--bs-background-body);
    margin-bottom: 17px
}

.list-reviews .item-review .head-review {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--bs-border-color)
}

.list-reviews .item-review .head-review .author-review {
    display: flex;
    align-items: center
}

.list-reviews .item-review .head-review .author-review img {
    margin-right: 12px;
    width: 64px;
    height: 64px;
    border-radius: 50%
}

.list-reviews .item-review .head-review .author-review .author-info p {
    margin-bottom: 0
}

.box-type-reviews {
    margin-top: 15px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bs-border-color)
}

.box-type-review {
    display: flex;
    align-items: center
}

.box-type-review .text-type-rv {
    margin-bottom: 0;
    min-width: 101px;
    padding-right: 5px
}

.box-type-review .rate-type-review {
    margin-bottom: 0
}

.box-form-reviews {
    margin-bottom: 15px
}

.box-form-reviews .form-control {
    background-color: var(--bs-background-card)
}

.box-form-reviews textarea.form-control {
    min-height: 170px
}

.sidebar-banner {
    margin-bottom: 32px
}

.content-booking-form {
    position: relative;
    padding: 28px 35px
}

.content-booking-form .item-line-booking {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--bs-border-color)
}

.content-booking-form .item-line-booking.last-item {
    border-bottom: 0;
    margin-bottom: 0
}

.content-booking-form .item-line-booking .line-booking-right {
    display: flex;
    align-items: center
}

.content-booking-form .item-line-booking .line-booking-right label {
    display: flex;
    margin-left: 18px;
    align-items: center;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--bs-neutral-1000)
}

.content-booking-form .item-line-booking .line-booking-right label input {
    height: auto;
    width: 16px;
    margin-right: 5px
}

.input-calendar {
    position: relative
}

.input-calendar svg {
    position: absolute;
    right: 15px;
    top: 14px;
    fill: var(--bs-neutral-1000)
}

.line-booking-tickets {
    justify-content: space-between
}

.line-booking-tickets,
.line-booking-tickets .item-ticket {
    display: flex;
    align-items: center
}

.line-booking-tickets .item-ticket .list-filter-checkbox li {
    margin-bottom: 0;
    margin-top: 10px
}

.line-booking-tickets .include-price {
    margin-top: 10px
}

.box-tickets {
    width: 100%
}

.booking-form {
    border-radius: 8px;
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .07);
    position: relative;
    border: 1px solid var(--bs-border-color);
    margin-bottom: 32px
}

.booking-form .head-booking-form {
    background-color: var(--bs-neutral-100);
    padding: 25px 35px
}

.booking-form .box-need-help {
    text-align: center;
    padding-top: 20px;
    display: flex;
    justify-content: center
}

.booking-form .box-need-help a {
    display: flex;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--bs-neutral-500);
    font-size: 14px;
    line-height: 22px;
    font-weight: 500
}

.booking-form .box-need-help a svg {
    stroke: var(--bs-neutral-500);
    margin-right: 10px
}

.tour-header {
    margin-bottom: 36px
}

.slider-nav-thumbnails-activities-detail .banner-slide {
    padding: 12px;
    min-height: 85px
}

.slider-nav-thumbnails-activities-detail .banner-slide img {
    border-radius: 8px;
    display: block;
    width: 100%
}

.slider-thumnail-activities {
    margin: 12px -12px 0;
    padding-bottom: 12px
}

.slider-thumnail-activities .slick-next,
.slider-thumnail-activities .slick-prev {
    display: none !important
}

.box-banner-activities {
    position: relative
}

.box-banner-activities .slick-prev {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    z-index: 12;
    left: 38px
}

.box-banner-activities .slick-next {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    z-index: 12;
    right: 38px;
    left: auto
}

.box-banner-activities .banner-slide-activity img {
    border-radius: 8px
}

.container-banner-activities .box-button-abs {
    position: absolute;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%
}

.container-banner-activities .box-button-abs .btn {
    margin: 0 10px 20px
}

.container-banner-activities .box-button-abs .btn img,
.container-banner-activities .box-button-abs .btn svg {
    margin-left: 0;
    margin-right: 8px;
    fill: var(--bs-neutral-1000);
    display: inline-block;
    vertical-align: middle;
    width: auto;
    min-width: auto;
    min-height: auto
}

.box-grid-property .card-journey-small .card-info {
    padding: 28px 15px 20px
}

.box-grid-property .card-journey-small .card-image {
    height: 235px
}

.block-banner-property {
    padding: 113px 0;
    background-size: cover
}

.list-number-choose {
    display: flex;
    align-items: center;
    margin: 9px -8px 19px
}

.list-number-choose a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    line-height: 40px;
    font-weight: 700;
    color: var(--bs-neutral-1000);
    background-color: var(--bs-button-bg-2);
    margin: 0 4px
}

.box-info-contact .mobile-phone {
    background-image: url(/_next/static/media/phone.c5eaf35a.png)
}

.box-info-contact .email,
.box-info-contact .mobile-phone {
    padding: 0 0 0 30px;
    background-position: 0;
    background-repeat: no-repeat
}

.box-info-contact .email {
    background-image: url(/_next/static/media/email.b7a6bb9c.png)
}

.box-info-contact .whatsapp {
    background-image: url(/_next/static/media/whatsapp.d2851b65.png)
}

.box-info-contact .fax,
.box-info-contact .whatsapp {
    padding: 0 0 0 30px;
    background-position: 0;
    background-repeat: no-repeat
}

.box-info-contact .fax {
    background-image: url(/_next/static/media/fax.859c6404.png)
}

.card-author .card-author-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-right: 12px
}

.card-author .card-author-image img {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%
}

.card-author .card-author-info {
    position: relative
}

.box-info-contact {
    margin-top: 25px;
    margin-bottom: 35px
}

.box-info-contact p {
    margin-bottom: 16px
}

.box-link-bottom {
    margin-bottom: 35px
}

.box-logos-tickets {
    padding: 50px 0;
    border-bottom: 1px solid var(--bs-border-color)
}

.box-apply-filter {
    padding-top: 25px;
    margin-top: 35px;
    border-top: 1px solid var(--bs-border-color);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.btn-clear-filter {
    background: url(/_next/static/media/close-filter.e09ff520.svg) no-repeat 0;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    color: var(--bs-neutral-1000);
    padding: 0 0 0 25px
}

.block-banner-tickets {
    padding: 113px 0;
    background-size: cover
}

.box-list-tickets .card-flight {
    min-width: 100%
}

.box-image-book {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 41px;
    display: inline-block;
    width: 100%
}

.box-image-book img {
    display: block
}

.btn-logo {
    padding: 25px 22px;
    border-radius: 8px;
    background-color: var(--bs-background-card);
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 12
}

.input-calendar label {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--bs-neutral-1000);
    margin-left: 20px
}

.input-calendar label input {
    width: auto;
    margin: 0 5px 0 0
}

@media (max-width:1599.98px) {
    .image-banner-top-left {
        top: 30px;
        left: 20px
    }
}

@media (max-width:1399.98px) {
    .custom-class {
        display: block
    }

    .header .main-menu li {
        padding: 0 10px
    }

    .box-banner-home4 .box-image-banner-home4 .shape-phone {
        right: -30px
    }

    .card-journey-small .card-info {
        padding: 20px 16px
    }

    .box-grid-hotels .card-flight .card-image {
        max-width: 280px
    }

    .box-content-info-detail {
        margin-top: -90px
    }
}

@media (max-width:1199.98px) {

    .burger-icon,
    .custom-class {
        display: block
    }

    .header .main-header .header-right {
        min-width: 290px
    }

    .header-right {
        padding-right: 50px
    }

    .header .nav-main-menu {
        display: none
    }

    .header .main-header,
    .sticky-bar.stick .main-header {
        padding: 10px 0
    }

    .popup-firstload .popup-container {
        max-width: 95%
    }

    .box-search-advance .box-bottom-search {
        flex-wrap: wrap
    }

    .box-search-advance .box-bottom-search .item-search {
        width: 25%
    }

    .box-search-advance .box-bottom-search .item-search:last-child {
        width: 100%;
        justify-content: center !important;
        padding-top: 20px
    }

    .box-search-advance .box-bottom-search .item-search:last-child .btn {
        width: 100%;
        justify-content: center
    }

    .banner-main h1 {
        font-size: 50px;
        line-height: 60px
    }

    .box-list-numbers {
        padding: 80px 30px;
        flex-wrap: wrap
    }

    .box-search-advance-2 {
        position: relative;
        top: auto;
        right: auto;
        max-width: 100%;
        margin-top: 20px;
        margin-bottom: 0
    }

    .box-search-advance-2 .box-bottom-search .item-search,
    .box-search-advance-2 .box-bottom-search .item-search:last-child {
        width: 25%
    }

    .box-search-advance-3-col .box-bottom-search .item-search {
        width: 50%
    }

    .box-banner-home4 .box-image-banner-home4 .shape-phone {
        right: -50px
    }

    .banner-marker,
    .banner-plus {
        display: none
    }

    .box-banner-home4 .box-image-banner-home4 .shape-rate {
        left: 130px
    }

    .box-image-banner-home5 {
        max-width: 50%
    }

    .block-banner-home5 {
        background-size: 70% auto
    }

    .block-banner-home5 h1 {
        font-size: 54px;
        line-height: 66px
    }

    .box-footer-col-3 .footer-col-1,
    .box-footer-col-3 .footer-col-2,
    .box-footer-col-3 .footer-col-3 {
        padding: 15px
    }

    .top-bar-2 .text-header-info .phone-head,
    .top-bar-2 .text-header-info a {
        margin-right: 14px;
        width: 17px;
        display: inline-block;
        overflow: hidden;
        height: 20px;
        line-height: 17px;
        vertical-align: middle
    }

    .top-bar-2 .text-header-info a {
        margin-right: 0
    }

    .image-banner-bottom {
        max-width: 400px
    }

    .box-why-home9-inner-inner {
        padding-left: 460px
    }

    .box-img-test-1 {
        left: 10px
    }

    .box-img-test-2 {
        right: 10px;
        top: 70px
    }

    .box-img-test-3 {
        right: -10px;
        bottom: 0
    }

    .box-list-tours.list-tours .card-journey-small .card-image {
        min-width: 281px
    }

    .destination-banner-1 {
        height: 110px
    }

    .destination-banner-2 {
        height: 290px
    }

    .destination-banner-3 {
        height: 242px
    }

    .destination-banner-4,
    .destination-banner-5 {
        height: 155px
    }

    .destination-banner-6 {
        height: 194px
    }

    .destination-banner-7 {
        height: 203px
    }

    .box-header-on-top {
        left: 110px;
        bottom: -20px;
        right: 110px
    }

    .block-room-features {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 35px
    }

    .item-room-feature {
        max-width: 16.28%
    }

    .box-grid-hotels .card-flight {
        flex-wrap: wrap
    }

    .box-grid-hotels .card-flight .card-image {
        height: auto;
        max-width: 100%
    }

    .box-grid-hotels .card-flight .card-info {
        margin-left: 0;
        margin-top: -40px
    }

    .box-image-vision .image-vision-2 {
        max-width: 160px;
        top: -10px;
        right: 10px
    }

    .box-image-vision .image-vision-1 {
        max-width: 160px;
        bottom: -30px;
        left: 10px
    }

    .box-list-hotels-detail .card-flight:nth-of-type(2n) .card-info {
        order: 1 !important
    }

    .box-content-info-detail {
        margin-top: -60px
    }

    .header.header-commingsoon .main-header .header-right {
        width: 60%;
        padding-right: 0
    }

    .header.header-commingsoon .main-header .header-left {
        width: 40%
    }

    .box-video-comming .box-banner-abs {
        bottom: -90px;
        right: -20px
    }

    .box-list-flights-2 .item-flight {
        flex-wrap: wrap
    }

    .box-list-flights-2 .item-flight .flight-price {
        width: 100%;
        padding-left: 0
    }

    .box-list-flights-2 .item-flight .flight-price .flight-price-1 {
        width: 50%;
        padding-left: 0;
        border-left: 0
    }

    .box-list-flights-2 .item-flight .flight-price .flight-price-2 {
        width: 50%
    }

    .box-list-flights-2 .item-flight .flight-route.flight-route-type-2 {
        max-width: 100%
    }

    .box-list-flights-2 .item-flight .flight-route.flight-route-type-2 .flight-route-1,
    .box-list-flights-2 .item-flight .flight-route.flight-route-type-2 .flight-route-2 {
        justify-content: space-between
    }
}

@media (max-width:991.98px) {
    .page-header .custom-container {
        min-height: 280px;
        max-width: 98%
    }

    .w-md-75 {
        width: 75%
    }

    .btn.btn-dropdown-search {
        width: 100% !important
    }

    .footer-1,
    .footer-2,
    .footer-3,
    .footer-4,
    .footer-5 {
        width: 50%;
        margin-bottom: 40px
    }

    .box-banner-home4 .box-image-banner-home4 .shape-rate {
        left: 0
    }

    .block-dropdown-filter,
    .left-dropdown-filter {
        flex-wrap: wrap
    }

    .left-dropdown-filter {
        margin-bottom: 15px
    }

    .box-left-payment {
        padding-left: 0
    }

    .block-testimonials {
        flex-wrap: wrap
    }

    .block-testimonials .testimonials-left {
        max-width: 100%;
        width: 100%
    }

    .block-testimonials .testimonials-left:before {
        right: 10px
    }

    .block-testimonials .testimonials-right {
        width: 100%
    }

    .container-slider {
        padding-left: 0
    }

    .block-subscriber .subscriber-left {
        width: 60%;
        padding: 0 16px
    }

    .block-subscriber .subscriber-right {
        width: 40%
    }

    .box-search-advance .box-bottom-search {
        flex-wrap: wrap
    }

    .box-search-advance .box-bottom-search .item-search {
        width: 50%;
        position: relative;
        padding: 0 27px;
        margin-bottom: 15px
    }

    .box-search-advance .box-bottom-search .item-search:last-child {
        width: 100%;
        justify-content: center !important
    }

    .box-search-advance .box-bottom-search .item-search.item-search-2:before,
    .box-search-advance .box-bottom-search .item-search:last-child:before {
        display: none
    }

    .box-list-numbers {
        padding: 30px 10px;
        flex-wrap: wrap
    }

    .bg-contact-form-2 {
        position: relative;
        height: 500px;
        max-width: 100%;
        margin-bottom: 35px
    }

    .box-list-numbers .item-numbers {
        width: 50%;
        padding: 0 20px
    }

    .box-list-numbers .item-numbers:before {
        right: 10px
    }

    .box-list-numbers .item-numbers.item-numbers-2:before {
        display: none
    }

    .box-search-advance-2 .box-bottom-search .item-search,
    .box-search-advance-2 .box-bottom-search .item-search:last-child {
        width: 50%
    }

    .box-search-advance-3-col {
        margin-bottom: 30px
    }

    .box-banner-home4 .box-image-banner-home4 {
        position: relative;
        bottom: auto;
        right: auto;
        text-align: center
    }

    .box-image-how {
        margin-bottom: 40px
    }

    .box-images-apps {
        margin-top: 0
    }

    .img-laptop,
    .img-phone {
        top: 0
    }

    .box-banner-home4 .box-image-banner-home4 .shape-phone {
        right: -20px
    }

    .card-journey-small.card-journey-small-type-2 .card-links ul {
        flex-wrap: wrap
    }

    .card-journey-small.card-journey-small-type-2 .card-links ul li {
        width: 100%;
        margin-bottom: 7px
    }

    .card-journey-small.card-journey-small-type-2 .card-links {
        margin-top: 15px
    }

    .block-banner-home5 {
        padding-bottom: 400px
    }

    .box-item-download {
        padding: 30px 20px
    }

    .box-footer-col-3 {
        flex-wrap: wrap
    }

    .box-footer-col-3 .footer-col-1,
    .box-footer-col-3 .footer-col-2 {
        width: 100%;
        padding: 25px 35px;
        border-bottom: 1px solid #313131
    }

    .box-footer-col-3 .footer-col-1:before,
    .box-footer-col-3 .footer-col-2:before {
        display: none
    }

    .box-footer-col-3 .footer-col-3 {
        width: 100%;
        padding: 25px 35px
    }

    .box-videos-small .bg-video {
        width: 85%
    }

    .container-search-advance {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 30px;
        margin-bottom: 30px
    }

    .item-banner-slide {
        min-height: 543px;
        padding: 120px 0 145px
    }

    .item-banner-slide h1 {
        font-size: 50px;
        line-height: 60px
    }

    .item-banner-slide h5 {
        font-size: 20px;
        line-height: 30px
    }

    .item-banner-slide.banner-1,
    .item-banner-slide.banner-2 {
        min-height: unset !important
    }

    .box-numbers-home7 {
        padding-left: 0
    }

    .box-testimonials-4,
    .dark .box-testimonials-4 {
        background-position: top 50% left 0
    }

    .swiper-pagination-style-2 {
        right: 15px
    }

    .box-image-banner-home8,
    .image-banner-bottom,
    .image-banner-top-left {
        display: none
    }

    .block-right-banner {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        height: 500px;
        max-width: 100%;
        margin-top: 40px
    }

    .block-banner-9-inner {
        padding-top: 66px;
        padding-bottom: 167px
    }

    .item-people-used {
        bottom: 78px;
        left: auto;
        right: 60px
    }

    .box-why-home9-inner-inner {
        padding: 30px 30px 30px 26px
    }

    .box-why-home9-inner {
        background-image: none
    }

    .box-list-flights .item-flight {
        flex-wrap: wrap
    }

    .box-list-flights .item-flight .flight-route {
        width: 100%;
        margin-bottom: 20px
    }

    .box-list-flights .item-flight .flight-price .flight-price-1 {
        padding-left: 0;
        border-left: 0;
        padding-right: 10px;
        text-align: center
    }

    .box-list-flights .item-flight .flight-price .flight-price-2 {
        padding: 0 0 0 20px;
        text-align: center
    }

    .box-install-app-3 .block-install-apps {
        background-image: none;
        margin: 0;
        padding: 50px 40px 10px
    }

    .box-install-app-3 .block-install-apps:before {
        display: none
    }

    .box-right-skyward {
        padding-left: 0
    }

    .block-banner-home10 {
        min-height: 720px;
        padding-top: 220px;
        padding-bottom: 220px
    }

    .block-banner-home10 h1 {
        font-size: 44px;
        line-height: 56px
    }

    .block-banner-home10 .box-buttons-banner {
        margin-top: 15px !important
    }

    .box-content-main {
        flex-wrap: wrap
    }

    .box-content-main .content-left {
        min-width: 100%
    }

    .box-content-main .content-right {
        padding-bottom: 50px
    }

    .box-search-advance-4 {
        top: 30px
    }

    .block-banner-destination {
        padding: 0 15px
    }

    .box-banner-tour-detail-4 {
        padding: 0 10px
    }

    .box-header-on-top {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 30px
    }

    .tour-metas .tour-meta-left .color-white,
    .tour-title-main .color-white {
        color: var(--bs-color-black) !important
    }

    .item-room-feature {
        max-width: 21.28%;
        padding: 10px;
        margin: 0 6px 20px
    }

    .box-buttons-room-detail-2 .box-button-faq {
        padding-left: 10px;
        padding-right: 10px
    }

    .box-content-info-detail {
        margin-top: 0
    }

    .header-commingsoon .main-menu li {
        padding: 0 5px;
        float: none;
        display: inline-block
    }

    .header-commingsoon .main-menu li a {
        padding: 15px 5px
    }

    .header-commingsoon .main-header {
        flex-wrap: wrap
    }

    .header.header-commingsoon .main-header .header-left {
        width: 100%;
        justify-content: center
    }

    .header.header-commingsoon .main-header .header-right {
        width: 100%;
        padding-right: 0;
        justify-content: center;
        text-align: center
    }

    .box-video-comming {
        margin-bottom: 150px
    }

    .header.header-commingsoon .main-header .header-left .header-logo .text-slogan:before {
        left: -12px
    }

    .header.header-commingsoon .main-header .header-left .header-logo .text-slogan {
        padding-left: 5px
    }
}

@media (max-width:767.98px) {
    .page-header .custom-container {
        min-height: 220px
    }

    .category-link {
        padding: 8px 15px
    }

    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top {
        padding: 15px 30px 13px;
        border-bottom: 1px solid var(--bs-border-color)
    }

    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a img {
        width: 140px
    }

    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area {
        padding: 30px
    }

    .btn-play-video {
        width: 71px;
        height: 71px
    }

    .box-banner-left-how {
        display: none
    }

    .block-subscriber {
        flex-wrap: wrap
    }

    .block-subscriber .subscriber-left {
        width: 100%;
        padding: 35px
    }

    .block-subscriber .subscriber-right {
        display: none
    }

    .card-popular-2 .card-meta .meta-links {
        width: 85%
    }

    .card-popular-2 .card-meta {
        padding: 12px 10px
    }

    .card-flight {
        width: 100%;
        min-width: 100%;
        flex-wrap: wrap
    }

    .card-flight,
    .card-flight .card-image {
        max-width: 100%
    }

    .card-flight .card-info {
        padding: 38px 31px;
        width: calc(100% + 0px);
        margin-left: 0;
        margin-top: -30px
    }

    .block-testimonials .testimonials-left:before,
    .text-unlock {
        display: none
    }

    .popup-firstload .popup-container .popup-content {
        flex-wrap: wrap
    }

    .popup-firstload .popup-container .popup-left {
        padding-left: 22px;
        width: 100%
    }

    .popup-firstload .popup-container .popup-right {
        width: 100%;
        text-align: center
    }

    .popup-firstload .popup-container .popup-right img {
        max-height: 250px
    }

    .slider-thumnail {
        display: none
    }

    .banner-main .banner-image .container {
        padding-right: 0;
        padding-top: 30px
    }

    .banner-image {
        height: auto;
        min-height: 669px
    }

    .box-search-advance .box-top-search {
        flex-wrap: wrap
    }

    .left-top-search {
        margin-bottom: 5px
    }

    .box-search-advance .box-bottom-search .btn-black-lg {
        width: 100%;
        justify-content: center
    }

    .box-flights-type-2 .card-flight .card-image,
    .card-journey-small {
        max-width: 100%
    }

    .image-bottom-how {
        display: flex
    }

    .image-bottom-how img {
        width: 47%
    }

    .box-testimonials-3:before {
        right: 0;
        top: 10px
    }

    .img-phone {
        max-width: 180px;
        left: -30px
    }

    .block-install-apps {
        padding: 30px 10px 0
    }

    .box-banner-home4 .box-image-banner-home4 .shape-phone {
        right: 10px
    }

    .box-image-3-col .img-col img {
        border-radius: 32px
    }

    .card-popular.card-top-destination .card-image {
        width: 60px;
        min-width: 60px;
        height: 60px;
        margin-right: 10px
    }

    .card-popular.card-top-destination .card-image img {
        width: 60px;
        height: 60px;
        border-radius: 50%
    }

    .box-img-test-1,
    .box-img-test-2,
    .box-img-test-3,
    .box-img-test-4 {
        display: none
    }

    .box-title-bestsell {
        background-image: none;
        padding-right: 0
    }

    .list-steps-2-col li {
        width: 100%
    }

    .box-item-sort,
    .box-view-type {
        justify-content: center
    }

    .box-banner-2-col {
        flex-wrap: wrap
    }

    .box-banner-2-col .banner-destination-left {
        width: 100%
    }

    .box-banner-2-col .banner-destination-right {
        position: relative;
        top: auto;
        right: auto;
        bottom: 0;
        width: 100%
    }

    .map-main {
        height: 500px
    }

    .block-banner-destination .box-swiper .swiper-button-prev-style-1 {
        left: 14px
    }

    .block-banner-destination .box-swiper .swiper-button-next-style-1 {
        right: 14px
    }

    .banner-detail-1,
    .banner-detail-2,
    .banner-detail-3,
    .banner-detail-4,
    .banner-detail-5,
    .banner-detail-6,
    .destination-banner-1,
    .destination-banner-2,
    .destination-banner-3,
    .destination-banner-4,
    .destination-banner-5,
    .destination-banner-6,
    .destination-banner-7 {
        height: auto
    }

    .box-info-tour {
        flex-wrap: wrap;
        padding-bottom: 1px
    }

    .box-info-tour .tour-info-group {
        width: 50%;
        margin-bottom: 15px
    }

    .head-reviews,
    .tour-metas {
        flex-wrap: wrap
    }

    .head-reviews {
        justify-content: center
    }

    .head-reviews .review-left {
        margin-right: 0;
        margin-bottom: 24px
    }

    .head-reviews .review-right {
        margin-bottom: 24px
    }

    .list-reviews .item-review .head-review {
        flex-wrap: wrap
    }

    .list-reviews .item-review .author-review,
    .list-reviews .item-review .rate-review {
        margin-bottom: 15px
    }

    .group-collapse-expand {
        padding: 20px 20px 12px
    }

    .box-banner-tour-detail-2 .box-banner-tour-detail-2-inner .banner-image {
        min-height: 300px
    }

    .top-bar,
    .top-bar .text-header {
        display: none
    }

    .item-room-feature {
        max-width: 29.28%
    }

    .box-banner-room {
        padding: 0 10px 30px
    }

    .box-grid-hotels .card-flight .card-image {
        max-width: 100%
    }

    .box-grid-hotels .card-flight .card-info {
        height: auto
    }

    .card-flight.card-hotel .card-info .card-hotel-2-col {
        flex-wrap: wrap
    }

    .card-flight.card-hotel .card-info .card-hotel-2-col .card-program {
        width: 100%;
        margin-bottom: 35px
    }

    .card-flight.card-hotel .card-info .card-hotel-2-col .card-hotel-price {
        max-width: 100%;
        min-width: auto;
        width: 100%
    }

    .text-86-bold {
        font-size: 66px;
        line-height: 76px
    }

    .text-64-medium {
        font-size: 44px;
        line-height: 56px
    }

    .box-video-comming .box-banner-abs {
        bottom: -50px;
        right: -10px;
        max-width: 250px
    }

    .box-video-comming {
        margin-bottom: 90px
    }

    .box-content-tickets-detail {
        padding: 15px 10px
    }

    .btn-logo {
        padding: 15px;
        bottom: 4px;
        left: 4px
    }

    .container-banner-activities .box-button-abs-right {
        justify-content: center
    }

    .box-button-abs {
        display: none !important
    }
}

@media (max-width:575.98px) {

    .footer-1,
    .footer-2,
    .footer-3,
    .footer-4,
    .footer-5 {
        width: 100%
    }

    .header .main-header .header-right {
        min-width: 150px
    }

    .header .main-header .header-right .btn-green-linear {
        display: none
    }

    .burger-icon {
        /* top: 0 */
    }

    .box-grid-hotels .card-flight .card-facilities .list-tick-green li {
        width: 50%
    }

    .sticky-bar.stick .burger-icon {
        top: 0
    }

    .card-journey-small {
        max-width: 100%
    }

    .header .container-fluid {
        padding-left: 10px;
        padding-right: 10px
    }

    .heading-1,
    h1 {
        font-size: 54px;
        line-height: 66px
    }

    .heading-2,
    h2 {
        font-size: 42px;
        line-height: 60px
    }

    .logo-area {
        padding: 21px 21px 21px 22px;
        margin-left: -22px
    }

    .payment-method .btn {
        min-width: 100%
    }

    .box-search-advance .box-bottom-search .item-search {
        width: 100%;
        border-bottom: 1px solid var(--bs-border-color);
        padding-bottom: 10px
    }

    .box-search-advance .box-bottom-search .item-search:last-child {
        border-bottom: 0;
        padding-bottom: 0
    }

    .dark .box-search-advance .box-bottom-search .item-search {
        border-color: #313131
    }

    .dark .box-search-advance .box-bottom-search .item-search:before {
        display: none
    }

    .box-list-numbers .item-numbers {
        margin-top: 10px;
        margin-bottom: 10px
    }

    .box-list-numbers .item-numbers h2 {
        font-size: 32px;
        line-height: 48px
    }

    .box-search-advance-2 .box-bottom-search .item-search,
    .box-search-advance-2 .box-bottom-search .item-search:last-child {
        width: 100%
    }

    .box-search-advance-2 .box-bottom-search .item-search:last-child .btn {
        width: auto
    }

    .item-banner-box .item-banner-box-inner {
        padding: 30px
    }

    .dot-payment {
        top: -15px;
        right: -10px
    }

    .box-search-advance .box-bottom-search .item-search:before {
        display: none
    }

    .container-footer {
        padding: 2px 20px 0
    }

    .box-slide-banner .swiper-button-next-style-1,
    .box-slide-banner .swiper-button-prev-style-1 {
        display: none
    }

    .box-images-apps {
        padding-bottom: 20px
    }

    .review-payment {
        bottom: -70px;
        left: -30px;
        max-width: 290px
    }

    .img-sm-payment {
        left: 260px
    }

    .box-swiper-padding.container-slider {
        padding-right: 15px
    }

    .box-swiper-padding .card-news {
        max-width: 100%
    }

    .btn.btn-border-1 svg {
        height: 18px;
        margin-right: 8px
    }

    .box-buttons-destination .box-button-faq .btn,
    .box-left-payment-destination .box-button-faq .btn {
        padding: 8px;
        font-size: 14px;
        margin-right: 12px;
        margin-bottom: 12px
    }

    .item-room-feature {
        max-width: 45%
    }

    .box-commingsoon-1 {
        padding: 30px 30px 30px 20px
    }

    .box-countdown-comming .box-count .deals-countdown .countdown-section .countdown-amount {
        width: 70px;
        height: 82px;
        font-size: 32px;
        line-height: 82px
    }

    .banne-activities-3 {
        flex-wrap: wrap
    }

    .banne-activities-3 .banner-col-1,
    .banne-activities-3 .banner-col-2,
    .banne-activities-3 .banner-col-3 {
        width: 100%
    }
}

@media (max-width:499.98px) {
    .box-cta-3 .bg-overlay {
        width: 300px;
        height: 60%
    }

    .box-banner-1 .banner-images img {
        position: relative !important;
        margin-bottom: 20px
    }

    .download-apps img {
        max-height: 44px
    }

    .box-list-quicklinks .item-quicklinks {
        width: 100%
    }

    .sidebar-canvas-wrapper .sidebar-canvas-container .sidebar-canvas-content {
        padding: 18px
    }

    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top {
        padding: 15px 15px 13px
    }

    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area {
        padding: 15px
    }

    .heading-1,
    h1 {
        font-size: 44px;
        line-height: 56px
    }

    .banner-main h1 {
        font-size: 40px;
        line-height: 50px
    }

    .box-banner-home4 .box-image-banner-home4 .shape-phone {
        bottom: 5%
    }

    .block-banner-home5 {
        padding-bottom: 300px
    }

    .list-numbers {
        flex-wrap: wrap
    }

    .list-numbers .item-number {
        width: 50%
    }

    .list-check-2-col {
        flex-wrap: wrap
    }

    .list-check-2-col li {
        width: 100%
    }

    .card-grid-video .card-info {
        bottom: 20px
    }

    .card-grid-video .card-image .btn-play {
        margin-top: 20%
    }

    .card-grid-video .card-info h4 {
        font-size: 25px;
        line-height: 35px
    }

    .list-videos-small .item-video-small .item-info .heading-6 {
        font-size: 16px;
        line-height: 23px
    }

    .list-videos-small .item-video-small .item-image {
        width: 108px;
        min-width: 108px;
        margin-right: 15px
    }

    .accordion-collapse .accordion-body {
        padding-left: 76px;
        padding-right: 20px;
        margin-bottom: 28px
    }

    .accordion-button h3 {
        font-size: 30px;
        line-height: 40px;
        padding: 0 15px;
        min-width: 76px
    }

    .accordion-button:after {
        right: 18px
    }

    .accordion-button {
        padding-right: 60px
    }

    .box-swiper-home7 {
        padding: 0
    }

    .box-swiper-home7 .swiper-button-next-style-1,
    .box-swiper-home7 .swiper-button-prev-style-1 {
        display: none
    }

    .box-swiper-home7 .swiper-group-journey {
        padding-left: 0;
        padding-right: 0
    }

    .box-list-flights .item-flight .flight-route {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 0
    }

    .box-list-flights .item-flight .flight-name,
    .box-list-flights .item-flight .flight-price {
        justify-content: center;
        margin-bottom: 20px;
        width: 100%
    }

    .box-list-flights .item-flight .flight-route .flight-route-icon {
        margin-bottom: 15px
    }

    .flight-button {
        width: 100%;
        text-align: center
    }

    .card-journey-grid-3 .card-info .card-program .endtime .card-prices {
        justify-content: space-between;
        width: 100%
    }

    .card-journey-grid-3 .card-info .card-program .endtime .card-rating {
        margin-bottom: 15px
    }

    .card-journey-small .card-info .card-program .endtime {
        flex-wrap: wrap
    }

    .map-main {
        height: 400px
    }

    .box-hotel-facilities-list .list-numbers .item-number {
        width: 33.33%;
        margin-bottom: 25px
    }

    .list-flight-facilities li {
        width: 100%
    }

    .box-timeline .item-timeline {
        padding-left: 65px
    }

    .item-info-flight {
        padding: 20px
    }

    .box-telephone-booking {
        flex-wrap: wrap
    }

    .box-telephone-booking .box-tel-left {
        width: 100%;
        margin-bottom: 20px
    }

    .box-list-flights-2 .item-flight .flight-route.flight-route-type-2 .flight-route-1,
    .box-list-flights-2 .item-flight .flight-route.flight-route-type-2 .flight-route-2 {
        flex-wrap: wrap
    }

    .box-list-flights-2 .item-flight .flight-route .flight-route-icon {
        margin: auto auto 15px
    }

    .datepicker table tr td,
    .datepicker table tr th {
        padding: 8px 12px
    }
}

@media (max-width:449.98px) {
    .card-flight .card-info {
        padding: 16px 12px
    }

    .card-news .card-info {
        padding: 25px
    }

    .block-subscriber .subscriber-left {
        padding: 20px 15px
    }

    .card-news .card-info .card-meta .post-date,
    .card-news .card-info .card-meta .post-time {
        padding-right: 10px
    }

    .box-list-numbers .item-numbers {
        width: 100%
    }

    .box-list-numbers .item-numbers:before {
        display: none
    }

    .card-testimonial {
        max-width: 380px
    }

    .img-phone {
        max-width: 120px
    }

    .download-apps {
        display: flex;
        align-items: center
    }

    .card-banner-slide .card-info {
        right: 10px
    }

    .card-banner-slide.card-banner-slide-2 .card-info,
    .card-banner-slide.card-banner-slide-3 .card-info {
        left: 10px
    }

    .card-journey-small .card-info {
        padding: 33px 10px
    }

    .img-sm-payment {
        bottom: -50px;
        left: 180px;
        max-width: 120px
    }

    .review-payment {
        bottom: -60px;
        left: -20px;
        max-width: 200px
    }

    .box-buttons-banner {
        flex-wrap: wrap
    }

    .heading-3,
    h3 {
        font-size: 34px;
        line-height: 48px;
        /* margin-top: 18px; */
    }

    .popup-signin .popup-container .popup-content {
        padding: 29px 15px
    }

    .btn.btn-google img {
        margin-right: 5px;
        margin-left: 0
    }

    .btn.btn-login {
        padding-left: 9px;
        padding-right: 9px
    }

    .group-collapse-expand .item-review-progress,
    .item-review-progress {
        flex-wrap: wrap
    }

    .group-collapse-expand .item-review-progress .text-rv-progress,
    .item-review-progress .text-rv-progress {
        width: 100%
    }

    .group-collapse-expand .item-review-progress .bar-rv-progress,
    .item-review-progress .bar-rv-progress {
        width: calc(100% - 42px)
    }

    .group-collapse-expand .item-review-progress .text-avarage,
    .item-review-progress .text-avarage {
        min-width: 42px
    }

    .item-room-feature {
        max-width: 100%
    }

    .box-countdown-comming .box-count .deals-countdown .countdown-section .countdown-amount {
        width: 60px;
        height: 72px;
        font-size: 28px;
        line-height: 72px
    }

    .box-countdown-comming .box-count .deals-countdown .countdown-section .countdown-period {
        font-size: 18px;
        line-height: 28px
    }

    .box-button-top-right {
        top: 10px;
        right: 10px
    }

    .box-button-top-right .btn {
        margin-left: 5px
    }

    .heading-4,
    h4 {
        font-size: 24px;
        line-height: 34px
    }

    .box-banner-activities-detail-4 .container-banner-activities .box-button-abs-right .btn-brand-2 {
        bottom: 0;
        right: 5px
    }

    .block-banner-property-detail .banner-property-detail-1 .box-button-abs {
        flex-wrap: wrap
    }
}

@media (max-width:374.98px) {

    .box-footer-col-3 .footer-col-1,
    .box-footer-col-3 .footer-col-2,
    .box-footer-col-3 .footer-col-3,
    .card-news .card-info {
        padding: 15px
    }

    .card-grid-video .card-image .btn-play {
        margin-top: 10%
    }

    .item-sort>span {
        display: none
    }

    .box-grid-hotels .card-flight .card-facilities .list-tick-green li,
    .box-info-tour .tour-info-group {
        width: 100%
    }

    .card-flight.card-hotel .card-info .card-program .endtime {
        flex-wrap: wrap
    }

    .card-flight.card-hotel .card-info .card-program .endtime .card-price {
        width: 100%;
        margin-bottom: 15px
    }
}

@media (max-width:339.98px) {
    .box-numbers .item-number {
        width: 100%
    }

    .box-buttons-feature-4 .btn-black,
    .box-buttons-feature-4 .btn.btn-learmore-2 {
        margin-bottom: 15px
    }
}

@media (min-width:1400px) {
    .container.wide {
        max-width: 1544px
    }

    .pt-lg-60 {
        padding-top: 60px
    }

    .w-lg-100 {
        width: 100% !important
    }

    .w-lg-75 {
        max-width: 75%
    }

    .w-lg-55 {
        max-width: 55%
    }

    .w-lg-25 {
        max-width: 25%
    }

    .cars-details4 .slick-list {
        overflow: visible
    }
}

@media screen and (min-width:1200px) and (max-width:1440px) {
    .header-right {
        display: none
    }
}

@media screen and (min-width:1400px) and (max-width:1610px) {
    .header .container-fluid {
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px
    }

    .header .main-menu li a {
        padding: 20px 14px 20px 8px
    }

    .btn.btn-mode {
        padding: 11px
    }
}

@media screen and (min-width:1200px) and (max-width:1399.98px) {
    .burger-icon {
        display: block
    }

    .header .nav-main-menu {
        display: none
    }

    .header .main-header,
    .sticky-bar.stick .main-header {
        padding: 10px 0
    }
}

@media (min-width:768px) {
    .card-journey-small-listing-3 .card-image {
        width: auto !important
    }

    .card-journey-small-listing-3 .card-info {
        width: 61% !important;
        position: absolute !important
    }

    .section-cta-6 .mt-md-50 {
        margin-top: 50px
    }

    .w-md-25 {
        width: 25%
    }

    .p-md-40 {
        padding: 40px !important
    }

    .list-checked-green li {
        width: 50%
    }

    .pagination li a {
        width: 35px;
        height: 35px;
        line-height: 35px
    }
}

.dropdown-toggle:after {
    display: none
}

.shop-thumb-nav .slick-slide {
    margin: 0 5px
}

.m-w-50px {
    min-width: 50px
}

.btn.btn-clear {
    padding: 6px 18px;
    background-color: transparent;
    border: 0;
    border-radius: 4px;
    font-size: 14px;
    line-height: 26px;
    font-weight: 700;
    color: #000;
    background-color: var(--bs-brand-2) !important
}


.vehicles-section {
    padding: 80px 20px;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 21px;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
}

.vehicles-carousel {
    /* max-width: 1400px; */
    margin: 0 auto;
    position: relative;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    min-height: 600px;
}

.vehicle-card {
    flex: 0 0 auto;
    text-align: center;
    transition: all 0.4s ease;
}

.vehicle-card.side {
    opacity: 0.3;
    transform: scale(0.7);
    filter: blur(2px);
}

.vehicle-card.main {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    z-index: 2;
}

.vehicle-image-container {
    position: relative;
    margin-bottom: 30px;
}

.vehicle-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.vehicle-name {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.nav-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: #96d11a;
}

.nav-button svg {
    width: 24px;
    height: 24px;
}

.progress-bar {
    width: 300px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #96d11a;
    width: 33.33%;
    transition: all 0.3s ease;
}

.vehicle-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #96d11a;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 1024px) {
    .vehicle-card.side {
        display: none;
    }

    .vehicle-image {
        max-width: 500px;
    }

    .section-title {
        font-size: 36px;
    }

    .vehicle-name {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .vehicles-section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .vehicle-image {
        max-width: 100%;
    }

    .progress-bar {
        width: 200px;
    }

    .carousel-controls {
        /* flex-direction: column; */
        gap: 15px;
    }

    .nav-button {
        width: 40px;
        height: 40px;
    }
}

.logo-container {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
}

.logo-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: transparent;
    border: 5px solid #9ACD32;
    border-right: none;
}

.logo-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: transparent;
    border: 5px solid #9ACD32;
    border-left: none;
}

.logo-text {
    color: #9ACD32;
    font-size: 20px;
    /* font-weight: 200; */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: Impact, 'Arial Black', sans-serif;
    text-align: center;
    white-space: nowrap;
}

.scrolled {
    background-color: hsl(116.67deg 18% 19.61%);
}

.simple-footer {
    background: #000;
    color: #fff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.simple-footer h4,
.simple-footer h6 {
    color: #fff;
    margin-bottom: 15px;
}

.simple-footer .newsletter {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.simple-footer .newsletter input {
    padding: 10px;
    width: 250px;
    border: none;
    border-radius: 4px;
}

.simple-footer .newsletter button {
    padding: 10px 20px;
    border: none;
    background: #ffcc00;
    color: #000;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
}


.section-box {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    padding-bottom: 30px;
    padding-top: 30px;
}

.brands-header {

    text-align: center;
    margin-top: 36px;
}

.brands-header h6 {
    font-size: 26px;
    font-weight: 600;
}

/* .brands-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
} */

.brands-header p {
    font-size: 18px;
    color: #6c757d;
}

.show-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    transition: gap 0.3s ease;
}

.show-all:hover {
    gap: 12px;
}

.slider-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    align-items: center;
    gap: 30px;
    /* animation: scroll 25s linear infinite; */
    width: max-content;

}

.slider-track:hover {
    animation-play-state: paused;
}

.brand-card {
    flex: 0 0 200px;
    height: 105px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.brand-card img {
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: filter 0.3s ease;
}

.brand-card:hover img {
    filter: grayscale(0%);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .brands-header h2 {
        font-size: 32px;
    }

    .brand-card {
        flex: 0 0 160px;
        height: 120px;
    }

    .brand-card img {
        max-width: 100px;
    }
}

.error {
    color: #cb3e3e;
}

.header.header-fixed.sticky-bar.stick {
    background-color: rgba(45, 74, 44, .6);
    border-bottom: 0;
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
}