:root {
    --primary: #ffa501;
    --secondry: #dd920a;
}

body {
    overflow-x: hidden;
}

body,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jost", system-ui;
}

section.home-banner {
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    box-shadow: inset 0px 0px 0px 2000px #0000007d;
    display: flex;
    align-items: center;
}

header.header {
    width: 100%;
    top: 0;
    background-color: #fff;
}

.nav-menu li.with-icon a {
    display: flex;
    color: #fff;
    column-gap: 6px;
    align-items: center;
    border-right: dotted 2px #ffffff40;
    padding: 0px 13px;
    text-decoration: none;
}

.nav-menu li.with-icon img {
    width: 40px;
    background-color: #1612127;
    padding: 4px;
    border-radius: 50%;
    height: 40px;
}

.nav-menu {
    display: flex;
    justify-content: end;
}

.nav-menu li.with-icon span {
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: #ffffffc7;
}

.nav-menu li.with-icon p {
    margin: 0px;
    line-height: 18px;
    font-size: 14px;
    font-weight: 500;
}

.header-logo img {
    width: 150px;
}

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

.nav-menu li {
    display: block;
}

li.with-icon a:hover {
    color: var(--primary);
}

a,
button {
    transition: 0.3s;
}

li.with-icon.border-none a {
    border: none;
}

.web-btn {
    display: block;
    width: fit-content;
    background-color: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 8px 20px 6px;
    border-radius: 50px;
    font-size: 18px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0px 4px 20px -10px #000;
    transition: 0.3s;
    border: none;
}

.container {
    max-width: 1240px;
}

li.header-login {
    padding-left: 30px;
    position: relative;
    display: block;
}

.header-nav li {
    display: inline-block;
}

.nav-menu {
    border-top: solid 1px #00000017;
    padding: 10px 0px;
}

.nav-menu li a {
    color: #000000b3;
    text-decoration: none;
    font-size: 18px;
    margin-right: 28px;
    text-align: center;
    display: block;
}

.nav-menu li a:hover {
    color: var(--primary);
}

.header-nav a img {
    display: block;
    width: 25px;
    margin: 0px auto 5px;
}

.hear-btn {
    text-align: center;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0000000f;
    width: fit-content;
    float: right;
}

.hear-btn a {
    display: block;
    width: fit-content;
    padding: 15px 14px;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

.hear-btn .tab-active-link {
    color: #fff;
    background-color: var(--primary);
}


.web-btn i {
    padding-left: 6px;
}

.web-btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 43px;
    height: 100%;
    background-color: var(--secondry);
    border-radius: 50px;
    z-index: -1;
    transition: 0.3s;
    opacity: 0.5;
}

.web-btn:hover:after {
    opacity: 1;
    width: 100%;
}

.web-btn:hover {
    box-shadow: unset;
}

.search-popup {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 0px 10px -10px;
    border-radius: 0px 0px 10px 10px;
    padding: 0px 20px 20px;
    width: 100%;
}

.search-tour {
    max-width: 340px;
    margin: auto;
    text-align: center;
    position: relative;
    transition: 0.5s;
}

.search-tour input {
    border: solid 1px #0000002e;
    outline: none;
    width: 100%;
    border-radius: 50px;
    padding: 10px 20px 10px 60px;
}

.search-tour i {
    position: absolute;
    left: 30px;
    top: 13px;
    color: var(--primary);
}



::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 50px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.tab-head {
    width: fit-content;
    margin: auto;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    z-index: 99;
    position: relative;
    box-shadow: 0px 0px 14px -10px;
}

.tab-head a {
    font-size: 18px;
    color: #000;
    display: block;
    text-align: center;
    padding: 13px 30px 7px;
    text-decoration: none;
}

.tab-head i {
    display: block;
}

.tab-head a.active {
    color: #fff;
    background-color: var(--primary);
}

.tab-body {
    background-color: #fff;
    border-radius: 10px;
    padding: 70px 40px;
    margin-top: -30px;
    box-shadow: 0px 0px 20px -10px;
    position: relative;
}

.input label {
    display: block;
    font-size: 18px !important;
    color: #000000c2;
    font-weight: 500;
}

.input input,
.input select {
    width: 100%;
    padding: 12px 20px;
    border-radius: 6px;
    border: solid 2px #00000017;
    outline: none;
    font-size: 20px;
    color: #000000d9;
}

.search-form {
    max-width: 90%;
    margin: 30px auto 0px;
}

.form-submit button {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    border: none;
    outline: none;
    bottom: -25px;
    padding: 14px 52px;
}

.tab-body form .row {
    /* border: solid 1px #00000014; */
    padding: 15px 10px 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 11px -10px;
}

.activities_inters i {
    display: block;
    font-size: 30px;
    color: var(--primary);
}

.activities_inters label {
    font-size: 20px;
}

.activities_inters {
    padding: 20px !important;
    width: fit-content !important;
}

.activities_inters i.fa-close {
    color: red;
}

.step_flex {
    justify-content: center;
}

.step-flex .error {
    color: #ff2300;
}

span.flatpickr-day.selected {
    background: var(--primary);
    border-color: var(--primary);
}

span.flatpickr-day.today {
    border-color: var(--primary);
}

.form_loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000e0;
    z-index: 9999;
    display: none;
}

.form_loader .footer_bg_one {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto 0px;
}

.success_message {
    text-align: center;
    padding: 20px 0px;
    display: none;
}

.success_message i {
    background: var(--primary);
    font-size: 40px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #fff;
    padding-top: 15px;
}

.success_message h2 {
    color: #fff;
    margin: 20px 0px;
    font-size: 40px;
}

.success_message p {
    color: #fff;
    font-size: 20px;
}

.package-pagination,
.pagination {
    padding-top: 40px;
}

.package-pagination li,
.pagination li {
    margin: 0px 10px;
}

.package-pagination ul li:first-child,
.package-pagination ul li:last-child {
    display: none !important;
}

.package-pagination li a,
.pagination a {
    border-radius: 50%;
    width: 40px;
    text-align: center;
    color: #000;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pagination li:first-child,
.pagination li:last-child {
    display: none;
}

li.page-item.active a {
    background-color: var(--primary);
    border-color: var(--primary);
}

section.home-slider img {
    max-height: 600px;
    object-fit: cover;
}

section.home-slider {
    position: relative;
    z-index: 1;
}

section.home-slider:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #080303b0;
    top: 0;
}

.banner-text h4 {
    color: #fff;
}

.banner-text span {
    color: var(--primary);
}

.cat-box img {
    width: 100%;
    border-radius: 10px;
    min-height: 300px;
    object-fit: cover;
}

.cat-box {
    border: dashed 1px #00000021;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

.cat-box h4 {
    font-size: 20px;
    padding-top: 15px;
}

.cat-box p {
    margin-bottom: 8px;
    color: #000000a8;
}

.heading.text-center {
    margin: auto;
    max-width: 600px;
}

.heading p {
    color: #000000a8;
}

.heading h2 {
    font-size: 35px;
}

section.section.pop-package {
    background-color: #7c8d8d26;
    padding: 50px 0px;
}

.pack-box {
    background-color: #fff;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 14px -10px;
}

.pack-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pack-txt {
    padding: 14px;
}

.pack-txt h4 {
    font-size: 20px;
    line-height: 25px;
}

.pack-txt p {
    color: #000000c4;
}
#activities .pack-txt p{
    min-height: 70px;
}
p.pack-price {
    text-align: right;
    font-size: 19px;
    color: var(--primary);
    font-weight: 500;
}

p.pack-price span {
    font-size: 15px;
    color: #000000cf;
}

.pack-txt a {
    text-decoration: none;
    color: #000000d9;
}
.testimonial_slider .item {
    height: 100%;
}

.review-box {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-box p {
    margin-top: auto;
}

.review-box {
    box-shadow: 0px 0px 14px -10px;
    border-radius: 10px;
    overflow: hidden;
    padding: 15px;
    position: relative;
    margin-top: 20px;
    height: 100%;
}

.review-head img {
    width: 80px !important;
    border-radius: 10px;
}

.review-head {
    display: flex;
    column-gap: 30px;
    text-align: left;
    align-items: center;
}

.review-head i.fa.fa-quote-right {
    position: absolute;
    right: 20px;
    top: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    text-align: center;
    border-radius: 50%;
    color: #fff;
    padding-top: 12px;
    font-size: 20px;
}

.review-head h4 {
    font-size: 22px;
    margin-bottom: 4px;
}

.review-head .fa-star {
    font-size: 13px;
    margin-right: 3px;
    color: var(--primary);
}

.review-box p {
    margin: 15px 0px 0px;
    color: #000000c9;
}

.not-found {
    text-align: center;
    color: red;
    font-size: 20px;
}

.not-found b {
    color: var(--primary);
}



section.home-banner.page-banner {
    min-height: 300px;
    position: relative;
}

.banner-text {
    position: absolute;
    top: 0;
    margin: auto;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 700px;
    height: fit-content;
    text-align: center;
    z-index: 99;
}

.banner-text h1,
.banner-text h2 {
    font-size: 60px;
    color: #fff;
    margin-bottom: 20px;
}

.banner-text p {
    color: #fff;
    font-size: 20px;
}

.banner-text a {
    color: var(--primary);
    text-decoration: none;
}

.cab-flex {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
}

.cab-detail {
    width: 47%;
}

.cab-img {
    width: 20%;
}

.cab-price {
    width: 22%;
    text-align: right;
}

.cab-box {
    border: solid 1px #0000002b;
    border-radius: 10px;
    padding: 20px;
    transition: 0.5s;
    margin: 20px 0px;
}

section.section {
    margin-top: 60px;
}

.cab-price button {
    display: inline-block;
    border: none;
}

.cab-price p {
    font-size: 29px;
    font-weight: 700;
}

.cab-price button:after {
    display: none;
}

.cab-detail h4 {
    font-weight: 700;
}

.cab-detail h4 span {
    font-size: 15px;
    font-weight: 400;
    color: #0000008c;
}

p.car-typ {
    display: flex;
}

.car-typ {
    display: flex;
}

.car-typ li {
    display: block;
    font-size: 17px;
}

.car-typ li:after {
    content: "";
    /* font-size: 38px; */
    margin: 0px 11px;
    display: inline-block;
    width: 5px;
    height: 6px;
    background-color: #000;
    border-radius: 50%;
}

.car-typ li:nth-child(4):after {
    display: none;
}

.cab-desc {
    padding-top: 20px;
}

.cab-desc p {
    margin: 8px 0px;
    font-size: 15px;
}

.cab-desc p span {
    font-weight: 800;
    display: inline-block;
    width: 160px;
}

.cab-desc p img {
    width: 20px;
    margin-right: 5px;
    margin-top: -2px;
}

.cab-box:hover {
    border-color: var(--primary);
}

.cab-pricing {
    display: flex;
    overflow: auto;
    background-color: #00000012;
    padding: 20px;
    column-gap: 20px;
    border-radius: 10px;
}

.pricing-box {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
}

.pricing-head h4 {
    font-size: 20px;
    margin-bottom: 0px;
}

.pricing-head h4 span {
    font-size: 14px;
    color: #00000075;
    display: block;
}

.pricing-head p {
    float: right;
    font-size: 23px;
    margin-top: -48px;
}

.pricing-box .cab-desc p span {
    width: 146px;
}

.cab-pricing-main {
    display: none;
}

.pricing-box .cab-price {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.pricing-box .cab-price button {
    width: auto;
    margin: auto;
    margin-top: 6px;
    font-size: 15px;
    margin: 10px 10px 0px;
}

.filter-box {
    margin-top: 20px;
}

.filter-box label {
    display: block;
    font-size: 18px;
    cursor: pointer;
    padding: 3px 0px;
    color: #000000a6;
}

.filter-box h6 {
    font-size: 19px;
}

.filter-box label span {
    float: right;
}

.cab-filter {
    padding-right: 40px;
    padding-top: 20px;
    position: sticky;
    top: 50px;
}

.cab-filter h4 {
    font-size: 23px;
    color: #000000d6;
}

.filter-box button {
    display: block;
    width: 100%;
}

p.no-result {
    text-align: center;
    background-color: #f3f3f7;
    padding: 20px 0px;
    font-size: 20px;
    color: #ff3a00;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 6px;
    border-radius: 5px;
    width: 100%;
}

p.no-result img {
    width: 25px;
}

li.header-login span {
    color: #000;
    font-size: 19px;
}

li.header-login img {
    width: 39px;
    height: 39px;
    object-fit: cover;
    border-radius: 50%;
}

li.header-login span i {
    display: block;
    font-size: 15px;
    margin-top: -6px;
}

li.header-login p {
    display: flex;
    align-items: center;
    margin: 0px;
    column-gap: 10px;
    justify-content: end;
}

ul.user_log {
    position: absolute;
    right: -30px;
    background-color: #fff;
    width: 190px;
    padding: 10px 22px;
    border-radius: 6px;
    margin-top: 50px;
    z-index: 99;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 0px 14px -10px;
}

ul.user_log a {
    color: #000;
    font-size: 16px;
    text-decoration: none;
    padding: 5px 0px;
    display: block;
}

ul.user_log:before {
    content: "";
    width: 30px;
    height: 30px;
    background-color: #ffff;
    position: absolute;
    top: -7px;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
    z-index: -1;
}

li.header-login:hover>ul {
    visibility: visible;
    opacity: 1;
    margin-top: 15px;
}

ul.user_log a:hover {
    color: var(--primary);
}

ul.user_log a i {
    padding-right: 5px;
}

.usr-log {
    text-align: right;
}

.usr-log a {
    color: #000000cc;
    text-decoration: none;
    font-size: 18px;
}

/*.usr-log a:nth-child(1):after {*/
/*    content: "/";*/
/*    padding: 0px 9px;*/
/*}*/
.usr-log a i {
    background-color: var(--primary);
    margin-right: 5px;
    border: solid 2px var(--primary);
    height: 30px;
    width: 30px;
    text-align: center;
    border-radius: 50%;
    padding-top: 4px;
    color: #fff;
}


/* my account */
.account-sidebar a {
    display: flex;
    color: #000;
    text-decoration: none;
    padding: 8px 14px;
    background-color: #0000000f;
    border-radius: 50px;
    margin: 14px 0px;
    transition: 0.5s;
    align-items: center;
    column-gap: 9px;
    font-size: 17px;
}

.account-sidebar {
    box-shadow: 0px 0px 5px -1px #0000003d;
    border-radius: 5px;
    padding: 20px;
    width: 90%;
}

.account-sidebar a.active,
.account-sidebar a:hover {
    background-color: var(--primary);
    color: #fff;
}

.badge-gradient-success {
    background: -webkit-gradient(linear, left top, right top, from(#84d9d2), to(#07cdae));
    background: linear-gradient(to right, #84d9d2, #07cdae);
    color: #ffffff;
}

.badge {
    border-radius: .125rem;
    font-size: 11px;
    font-weight: initial;
    line-height: 1;
    padding: .375rem .5625rem;
    font-family: "ubuntu-medium", sans-serif;
}

.badge.badge-gradient-warning {
    background-color: #ff8c01;
}

.badge.badge-gradient-danger {
    background-color: red;
}

td img {
    width: 35px;
    border-radius: 50%;
}

.table th,
.table td {
    vertical-align: middle;
    font-size: 0.875rem;
    line-height: 1;
    white-space: nowrap;
    padding: 9px 1px;
    border-color: #00000017;
}

.account-content .card {
    padding: 20px 20px;
    border: none !important;
    box-shadow: 0px 0px 5px -1px #0000003d;
}

.account-content .card-body {
    padding: 0px;
}

.account-content h4.card-title {
    margin-bottom: 20px;
    font-size: 25px;
}

.custom-page-header li {
    display: inline-block;
        white-space: nowrap;
}

.custom-page-header a {
    display: block;
    padding: 8px 18px 6px;
    background-color: #fff;
    border-radius: 10px 10px 0px 0px;
    margin-left: 6px;
    color: #000;
    background-color: #f0f0f0;
}

.custom-page-header {
    padding-left: 14px;
}

.custom-page-header a.active,
.custom-page-header a:hover {
    background: linear-gradient(to right, var(--primary), var(--secondry)) !important;
    color: #fff;
}

.custom-page-header a i {
    margin-right: 6px;
}

.btn.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: unset !important;
}

.account-content .form-group {
    margin: 6px 0px;
}

input#profile-img {
    display: none;
}

img.profile_image {
    width: 100%;
}

p.message {
    position: fixed;
    z-index: 9;
    top: 100px;
    background: linear-gradient(to right, var(--primary), var(--secondry)) !important;
    color: #fff;
    border: none !important;
    margin: auto;
    right: 30px;
    min-width: 300px;
    width: fit-content;
    text-align: center;
}

.checkout {
    box-shadow: 0px 0px 18px -10px #00000075;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    margin-top: 100px;
}

.checkout-tbs-head {
    position: absolute;
    top: -70px;
    width: fit-content;
    margin: auto;
    left: 0;
    right: 0;
}

.checkout-tbs-head a {
    display: inline-block;
    margin: 0px 15px;
    padding: 7px 20px;
    background-color: #0000000a;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    position: relative;
    counter-increment: count-step;
}

.checkout-tbs-head a.active {
    background-color: var(--primary);
    color: #fff;
}

.checkout-tbs-head a:before {
    content: counter(count-step);
    position: absolute;
    top: -40px;
    width: 30px;
    height: 30px;
    background-color: #f5f5f5;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
    color: var(--primary);
    padding-top: 3px;
}

a.active:before {
    background-color: var(--primary);
    color: #fff;
}

.checkout-tbs-head:before {
    content: "";
    position: absolute;
    top: -26px;
    width: 51%;
    height: 3px;
    background-color: var(--primary);
    left: 0;
    right: 0;
    margin: auto;
}

.input-box {
    margin: 10px 0px;
}

.input-box label {
    color: #000000bd;
    font-size: 12px;
}

.text-right {
    text-align: right;
}

.text-right button {
    display: inline-block;
}

.step-btn {
    padding-top: 10px;
}

.input-box label.error {
    color: red;
}

.checkout-tabs-box {
    display: none;
}

table .btn {
    padding: 3px 6px;
    font-size: 14px;
        white-space: nowrap;
}

.order-details {
    background-color: #0000000d;
    padding: 10px 18px;
    border-radius: 5px;
    margin-top: 20px;
}

.order-details p span.parent {
    width: 74%;
    text-align: right;
}

input.razorpay-payment-button {
    display: block;
    width: 100%;
    background-color: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px 9px;
    border-radius: 50px;
    font-size: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0px 4px 20px -10px #000;
    transition: 0.3s;
    border: none;
    margin-top: 20px;
}

.order-details p {
    background-color: #0000000a;
    padding: 7px;
    border-radius: 5px;
    margin: 9px 0px !important;
    display: flex;
    align-items: center;
}

.order-details p b {
    width: 24%;
    text-align: left;
}

button#payNowButton {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
}

.order-details p span.parent span:not(.occupancy_price) {
    display: block;
    color: #0cab0c;
    font-size: 17px;
}

.packae-img {
    overflow: hidden;
}

.packae-img img {
    width: 100%;
    transition: 0.3s;
    min-height: 242px;
}

.tour-package {
    box-shadow: 0px 0px 14px -10px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.packae-img .price {
    position: absolute;
    right: -52px;
    top: 30px;
    background: linear-gradient(to right, #84d9d2, #07cdae);
    color: #fff;
    font-size: 30px;
    width: 230px;
    text-align: center;
    transform: rotate(45deg);
}

.packae-img .price span {
    font-size: 15px;
}

.tour-package:hover .packae-img img {
    transform: scale(1.3);
}

.package-content {
    padding: 20px;
}

.package-content li {
    list-style: none;
}

.package-content a {
    display: block;
    margin: 20px auto 0px;
    padding: 5px 50px;
    font-size: 20px;
}

.package-content h4 {
    text-align: center;
    font-size: 20px;
}

.package-feature li {
    font-size: 18px;
    display: flex;
    margin: 5px 0px;
    color: #000000d1;
    width: 50%;
}

.package-feature li p {
    width: 100%;
    margin: 0px;
}

.package-feature li span i {
    background-color: #0ebf0e;
    color: #fff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    text-align: center;
    padding-top: 3px;
    border-radius: 4px;
}

.package-feature {
    margin: 20px 0px;
    display: flex;
    flex-wrap: wrap;
    border-bottom: solid 1px #0000001a;
    padding-bottom: 10px;
}

.package-feature li p i {
    color: var(--primary);
    width: 24px;
}

h2.heading {
    font-size: 40px;
    margin-bottom: 40px;
}

i.fa.fa-close.danger {
    background-color: #ff1500;
}

.singe-tab-menu {
    position: sticky;
    top: 0;
    background-color: #ffffff !important;
    z-index: 99;
    padding: 16px 0px;
    box-shadow: 0px 0px 15px -10px;
    max-width: 803px;
}

.whatsAppbtn a {
    background: #09b509;
    margin: 20px auto 0px;
}

.whatsAppbtn a i {
    color: #fff;
}

.whatsAppbtn a:after {
    display: none;
}

.popop_image img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
}

.tour-img-popup .popup-header {
    padding: 0px;
}

.popup {
    z-index: 999 !important;
}

.tox-dialog {
    z-index: 9999999 !important;
    position: fixed !important;
}

.singe-tab-menu a {
    display: inline-block;
    padding: 2px 13px;
    text-decoration: none;
    color: #000000c9;
    font-size: 16px;
    border: solid 1px var(--primary);
    margin: 0px 10px;
    transition: 0.4s;
    border-radius: 50px;
}

.singe-tab-menu a.active,
.singe-tab-menu a:hover {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

.single-package-content {
    margin-top: 20px;
}

.package-content-box,
.package-sidebar-box {
    box-shadow: 0px 0px 12px -10px;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    counter-increment: box-count;
    margin-bottom: 30px;
}

.package-content-box p {
    margin: 0px;
}

.accordion-container {
    position: relative;
    max-width: 500px;
    height: auto;
    margin: 10px auto;
}

.accordion-container>h2 {
    text-align: center;
    color: #fff;
    padding-bottom: 5px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.set {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #f5f5f5;
    margin-top: 10px;
}

.set>a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #555;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    border-radius: 5px;
}

.set>a i {
    float: right;
    margin-top: 2px;
}

.set>a.active {
    background-color: var(--primary);
    color: #fff;
}

.content {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    display: none;
}

.content p {
    padding: 10px 15px;
    margin: 0;
    color: #333;
}

div#pricing p {
    font-size: 34px;
    color: #6fa60e;
}

div#pricing h6 {
    font-size: 16px;
}

.pack-imgs img {
    width: 100%;
    height: 150px;
    border-radius: 6px;
    object-fit: cover;
}

.tour_img_btn {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    margin: auto;
    left: 20px;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    cursor: pointer;
}

div#next {
    left: auto;
    right: 20px;
}

.pack-imgs {
    margin-top: 15px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pack-imgs i {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    background-color: #ffa50175;
    border-radius: 5px;
    transition: 0.4s;
    transform: scale(0, 0);
}

.pack-imgs:hover>i {
    transform: scale(1, 1);
}

.package-content-box li::marker {
    color: var(--primary);
}

.package-content-box ul {
    padding-left: 20px;
}

.package-sidebar-box {
    text-align: center;
}

.package-sidebar-box p {
    margin: 0px;
    font-size: 17px;
}

.package-sidebar-box i {
    color: var(--primary);
}

.package-sidebar {
    position: sticky;
    top: 0;
}

.package-feature li:nth-child(even) {
    text-align: right;
}

table.pricing-table td,
th {
    padding: .7em 1em;
    border-width: 0 1px 1px 0;
}

table.pricing-table {
    width: 100%;
    border: solid 1px #00000021;
}

table.pricing-table h6 {
    margin: 0px;
    color: red;
}

.popup-body.package_booking label {
    text-align: left !important;
    width: 100%;
}

.card-body.tabs {
    display: none;
}

.pricing-box h6 {
    text-align: center;
    margin-top: 20px;
    color: #0eb50e;
}

.agency-details img {
    width: 100%;
    border-radius: 10px;
}

.agency-details h4 {
    font-size: 20px;
    margin: 15px 0px;
}

.agency-details li {
    display: block;
    margin: 8px 0px;
}

.agency-details li i {
    color: var(--primary);
}

.agency-about {
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px -10px;
    margin-bottom: 30px;
    position: relative;
}

.agency-about h4 {
    font-size: 22px;
}

.agency-about h5 {
    font-size: 16px;
    margin-top: 20px;
}

.agency-about span {
    padding: 0px 14px;
    border-radius: 5px;
    margin-left: 10px;
}

.rating i {
    font-size: 14px;
    color: #ff00009c;
}

.rating {
    margin-top: -7px;
}

.agency-about p {
    margin: 10px 0px 0px;
    color: #000000c7;
}

.agency-data h2 {
    font-size: 32px;
}

.account-sidebar {
    position: sticky;
    top: 30px;
}

.agency-t-b {
    position: absolute;
    right: 13px;
    top: 10px;
    background-color: #f2f2f2;
    padding: 6px 10px 0px;
    border-radius: 10px;
}

.agency-t-b h6 {
    font-size: 17px;
}

.agency-t-b p {
    font-size: 33px;
    margin-top: -10px;
    color: #198754;
}

.tab-bos {
    display: none;
}

section.top-boxes {
    background-color: #f6f6f6;
    padding: 40px 0px;
}

.icon-box {
    text-align: center;
    background-color: #fff;
    padding: 20px 0px;
    border-radius: 10px;
}

.icon-box i {
    display: flex;
    width: 60px;
    height: 60px;
    border: solid var(--primary);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    margin: auto;
    transition: 0.5s;
}

.icon-box h4 {
    margin: 13px 0px 0px;
    color: #000000b8;
    font-size: 20px;
}

.icon-box:hover>i {
    color: #fff;
    background-color: var(--primary);
}

h2.text-center.heading span {
    color: var(--primary);
}

button.slick-prev,
button.slick-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary) !important;
    align-items: center;
}

.slick-arrow:before {
    font-size: 24px;
    top: 1px;
    position: relative;
}

.review-detail i {
    color: green;
    margin: 0px 2px;
}

.packages .slick-track {
    margin: unset !important;
}

section#tourpackage .slick-slide {
    padding: 0px 10px;
}

.slick-prev {
    left: -10px !important;
    z-index: 999;
}

.slick-next {
    right: -10px !important;
    z-index: 999;
}

section.tour-banner {
    position: relative;
}

section.tour-banner img {
    height: 600px;
    object-fit: cover;
    width: 100%;
}

/* section.tour-banner:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(255, 0, 0, 0), #000);
} */
.tour-banner:before {
  
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}
.tour-btn-txt {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 900px;
    width: 90%;
    text-align: center;
    z-index: 0 !important;
}

.tour-btn-txt h4 {
    color: #fff;
}

.tour-btn-txt h4 span,
.tour-btn-txt h1 span {
    color: var(--primary);
}

.tour-btn-txt h1 {
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 16px 0px;
}

.tour-btn-txt p {
    color: #fff;
    font-size: 22px;
}

.tour-btn-txt a {
    margin: auto;
    padding: 12px 40px;
    font-size: 20px;
}

.tour-btn-txt p b {
    font-size: 24px;
    color: var(--primary);
}

.accordian .set:first-child .content {
    display: block;
}

.set a span {
    background-color: #fff;
    color: var(--primary);
    padding: 4px 16px;
    border-radius: 50px;
    margin-right: 10px;
    font-size: 17px;
}

.package-enquiry label {
    text-align: left;
    font-size: 14px;
    margin-bottom: 4px;
}

.package-enquiry .input {
    margin: 12px 0px;
}

.package-enquiry input {
    padding: 8px 10px;
    font-size: 14px;
}

.package-enquiry textarea {
    height: 150px;
}

div#enquery .popup-container {
    max-width: 500px;
}

div#enquery .popup-container textarea {
    height: 100px;
}

div#download_itinerary .input.input-box {
    margin: 20px 0px;
}

div#download_itinerary button {
    padding: 13px 30px;
    margin: auto;
}

div#download_itinerary h4 {
    justify-content: center;
}

.header-nav a.active {
    color: var(--primary) !important;
}

#loader,
div#loader_package {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #ffffff8f;
    width: 100%;
    height: 100%;
}

.review-form input {
    padding: 10px 10px;
    font-size: 17px;
}

.review-form .input {
    margin: 10px 0px;
}

.header-search {
    transition: 0.5s;
}

.header-search.activesearch {
    /* transform: scale(1.1); */
    box-shadow: 0px 0px 15px -10px;
    max-width: 490px;
    margin: auto;
    padding: 10px 0px;
    border-radius: 10px;
    position: relative;
    z-index: 9999;
}

.header-search.activesearch .search-popup {
    display: block;
}

.search-box h4 {
    font-size: 18px;
    color: #000000bd;
}

.search-box {
    border-bottom: dashed 1px #0000001a;
    padding: 20px 0px;
}

.searc-input input:not(.filter-checkbox input) {
    display: none;
}

.searc-input label span:not(.filter-checkbox span) {
    font-size: 12px;
    padding: 3px 14px;
    border: solid 1px #00000038;
    border-radius: 50px;
    margin: 4px 4px 0px 0px;
    display: block;
    background-color: #00000000;
    color: #000;
    transition: 0.5s;
    cursor: pointer;
}

.searc-input label input:checked+span:not(.filter-checkbox span) {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.header-search.activesearch .search-tour {
    max-width: 90%;
}

.price-input {
    width: 100%;
    display: flex;
    margin: 20px 0 0px;
}

.price-input .field {
    display: flex;
    width: 100%;
    align-items: center;
}

.field input {
    width: 100%;
    outline: none;
    font-size: 19px;
    border-radius: 0px 5px 5px 0px;
    text-align: center;
    padding: 4px 10px;
    border: solid 1px var(--primary);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.price-input .separator {
    width: 130px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
}

.slider {
    height: 4px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
    margin: 30px 0px 0px;
}

.slider .progress {
    height: 100%;
    left: 0%;
    right: 20%;
    position: absolute;
    border-radius: 5px;
    background: var(--primary);
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: grab;
}

input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: var(--primary);
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.cab-search-txt.text-center.make-trip-txt h1 {
    font-size: 45px;
}

.cab-search-txt.text-center.make-trip-txt p {
    font-size: 18px;
}

.step-flex {
    display: flex;
    column-gap: 25px;
}

.step-flex .csf {
    width: 30%;
}

.csf.btn {
    width: fit-content;
}

.csf.btn button {
    width: max-content;
    margin-top: 22px;
    bottom: 0;
}

.multi_step_head {
    display: flex;
    justify-content: center;
    margin: 40px auto 30px;
    width: fit-content;
}

.head-steps {
    padding: 10px 50px;
    color: #ffffff85;
    font-size: 20px;
    cursor: pointer;
    position: relative;
}

.head-steps:after {
    content: "";
    position: absolute;
    right: -34px;
    width: 70px;
    background-color: #ffffff78;
    height: 2px;
    margin: auto;
    top: 0;
    bottom: 0;
}

.multi_step_head .head-steps:last-child:after {
    display: none;
}

.head-steps.active {
    color: #fff;
}

.head-steps.active:after {
    background-color: #fff;
}

.head-steps.complete {
    color: var(--primary);
}

.head-steps.complete:after {
    background-color: var(--primary);
}

.step_flex {
    display: flex;
    column-gap: 15px;
}

.step_flex .cab-box img {
    width: 100px;
    display: block;
    margin-top: -18px;
}

.step_flex .cab-box {
    border-color: #ffffff57;
    padding: 0px;
    text-align: center;
    color: #fff;
    width: -webkit-fill-available;
    cursor: pointer;
}

.step_flex .cab-box input {
    position: absolute;
    opacity: 0;
}

.make_trip_form_step h4 {
    color: #fff;
    text-align: center;
}

.step_flex .cab-box.active {
    border-color: var(--primary);
}

.step_flex .cab-box span {
    display: block;
    margin-top: -14px;
    margin-bottom: 8px;
}

.make_trip_form_step .web-btn {
    position: relative;
    bottom: 0px;
}

.make_trip_form_step {
    display: none;
}

div#activite_selection .activite_box {
    width: 18%;
    position: relative;
}

.common_box {
    display: none;
}

div#activite_selection {
    flex-wrap: wrap;
}

.cab-box.activite_box h5 {
    font-size: 17px;
    margin-bottom: 0px;
}

.cab-box.activite_box span {
    display: block;
    margin: 10px 0px 0px;
    color: var(--primary);
}

.cab-box.activite_box input:checked+h5+span:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: solid 2px var(--primary);
    border-radius: 10px;
}

.cab-box.activite_box label {
    display: block;
    height: 100%;
    padding: 20px;
    cursor: pointer;
}

.show_hide {
    display: none;
}

.acco_form.row {
    margin: 30px 0px;
}

/* Support */
.support-box {
    top: 2rem;
    position: relative;
    bottom: 0;
    text-align: center;
    display: block;
}

.b-btn {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.b-btn.paypal i {
    color: blue;
}

.b-btn:hover {
    text-decoration: none;
    font-weight: bold;
}

.b-btn i {
    font-size: 20px;
    color: yellow;
    margin-top: 2rem;
}

.hear-btn a span {
    position: absolute;
    top: -5px;
    right: -10px;
    font-size: 12px;
    background-color: red;
    color: #FFF;
    padding: 0px 5px 2px;
    border-radius: 20px;
    transform: rotate(45deg);
    animation: new forwards 2s infinite;
}

@keyframes new {
    50% {
        background: #0c9de3;
    }

    80% {
        background: red;
    }
}

.hear-btn a {
    position: relative;
}

.review-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.stars {
    display: flex;
    justify-content: center;
    margin: 15px 0px;
}

p#review_success {
    text-align: center;
    padding-top: 10px;
    font-size: 20px;
}

.stars i {
    font-size: 22px;
    color: #ccc;
    cursor: pointer;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.stars i.active {
    color: #f4b400;
}

.tox-statusbar,
.tox-bottom-anchorbar {
    display: none !important;
}

.tox.tox-tinymce.tox-tinymce--toolbar-bottom {
    height: 200px !important;
}

button.tox-button {
    background: var(--primary) !important;
    border: none !important;
}

.r-head {
    display: flex;
    column-gap: 20px;
}

.r-head img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.c-r-b {
    margin: 15px 0px;
    border: solid 1px #0000002b;
    border-radius: 10px;
    padding: 20px;
}

.r-info i {
    color: #09b509;
    margin: 0px 2px;
    font-size: 15px;
}

.r-info h5 {
    margin-bottom: 0px;
}

.reviews h4 a {
    float: right;
    margin-top: -10px;
    color: var(--primary);
}

.field span {
    background-color: var(--primary);
    width: 60px;
    text-align: center;
    height: 100%;
    padding-top: 7px;
    color: #fff;
    border-radius: 5px 0px 0px 5px;
}

.search-popup .search-box:last-child {
    border: none;
}

.search-popup button {
    margin-top: 18px;
}

.text-danger.text-left {
    text-align: left;
    font-size: 12px;
}

.loader {
    border: 6px solid #f3f3f3;
    /* Light grey */
    border-top: 6px solid var(--primary);
    /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    top: 0;
}

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

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

div#enquery {
    position: relative;
}

.tour-locations {
    position: absolute;
    z-index: 99;
    background-color: #fff;
    width: 100%;
    text-align: left;
    border: solid 1px var(--primary);
    border-radius: 10px;
    margin-top: 7px;
    overflow: auto;
    max-height: 400px;
    display: none;
}

.tour-locations li {
    display: block;
    padding: 10px;
    cursor: pointer;
    transition: 0.5s;
}

.tour-locations li:hover {
    color: #fff;
    background-color: var(--primary);
}

section.cab-search {
    padding: 100px 0px;
    background-image: url(/public/assets/frontend/images/slide-1.webp);
    background-position: center;
    background-size: cover;
    box-shadow: inset 0px 0px 0px 2000px #000000a6;
}

.cab-search-txt {
    text-align: left;
    padding-right: 50px;
}

.cab-search-txt h1 {
    color: #fff;
    font-size: 70px;
}

.cab-search-txt p {
    color: #fff;
    font-size: 25px;
}

.cab_search_form {
    background-color: #0000008c;
    padding: 20px;
    border-radius: 10px;
}

div#searchboxcabs {
    display: block;
}

.csf label {
    color: #fff;
    margin-bottom: 4px;
}

.csf {
    margin: 19px 0px;
}

.csf button {
    position: relative;
    width: 100%;
    margin-top: 30px;
}

section.cab-search .row {
    align-items: center;
    justify-content: center;
}

.heading h2 span,
.cab-search-txt h1 span {
    color: var(--primary);
}

.support-box h4 {
    font-size: 20px;
    color: #000000c9;
}

.support-box {
    border-radius: 10px;
    background-color: #fff;
    position: unset;
    margin-top: 20px;
}

section.section.why {
    margin-bottom: 60px;
}

.support-box p {
    color: #000000b0;
}

.support-box img {
    width: 50px;
    margin: 15px 0px;
}

.package-filter .search-popup {
    display: block;
    position: unset;
}

.package-filter .searc-input label span {
    padding: 1px 7px;
    font-size: 12px;
    margin: 5px;
}

.package-filter .field input {
    font-size: 14px;
}

.package-filter .search-tour {
    margin-bottom: 10px;
}

.package-filter button.web-btn {
    width: 100%;
}

section#packages .col-md-12.col-lg-3 {
    height: fit-content;
    position: sticky;
    top: 20px;
}

.package-filter h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

section.home-slider.activities-slider img {
    max-height: 400px;
}

section.home-slider.activities-slider h1 {
    font-size: 44px;
}

section.home-slider.activities-slider .banner-text {
    max-width: 750px;
}

.owl-arrow {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    display: flex;
    column-gap: 15px;
}

.heading.mx {
    position: relative;
}

.owl-arrow button {
    width: 40px;
    height: 40px;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 2px var(--primary);
    border-radius: 50%;
    background: none;
    color: var(--primary);
}

.owl-arrow button:hover {
    color: #fff;
    background-color: var(--primary);
}

.searc-input.filter-checkbox label {
    display: block;
    position: relative;
    margin: 5px 3px;
}

span.mark {
    position: absolute;
    top: -2px;
    left: -6px;
    height: 18px;
    width: 18px;
    border: 1px solid var(--primary);
    border-radius: 2px;
    background: #fff;
}

span.mark:after {
    left: 5px;
    top: 0px;
    width: 5px;
    height: 11px;
    border: solid white;
    border-width: 0 3px 3px 0px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
    position: absolute;
    display: none;
}

.searc-input.filter-checkbox input:checked+.mark {
    background-color: var(--primary);
}

.searc-input.filter-checkbox input:checked+.mark:after {
    display: block;
}

.searc-input.filter-checkbox span {
    font-size: 18px !important;
}

.touractivities-box {
    display: flex;
    column-gap: 20px;
    border: solid 1px #00000014;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 30px;
    align-items: center;
}

.touractivities-img {
    width: 25%;
}

.touractivities-img img {
    width: 100%;
    border-radius: 10px;
    height: 180px;
    object-fit: cover;
}

.touractivities-info {
    width: 52%;
}

.touractivities-price {
    width: 18%;
}

.touractivities-info h4 {
    font-size: 22px;
}

.touractivities-info p {
    margin: 0px;
    font-size: 15px;
    color: #000000b3;
    line-height: 28px;
}

.touractivities-meta {
    display: flex;
    margin-bottom: 4px;
}

.touractivities-meta li {
    display: flex;
    align-items: center;
    margin-right: 14px;
    column-gap: 5px;
    font-size: 17px;
}

.touractivities-meta li i {
    color: var(--primary);
}

.touractivities-price .price {
    font-size: 28px;
    text-align: right;
    font-weight: 600;
}

.touractivities-price p.price span {
    font-size: 17px;
    font-weight: 400;
    display: block;
}

.touractivities-price a {
    margin-top: 40px;
    float: right;
}

.package-filter .field span {
    font-size: 11px;
}

.activities-gallery .owl-item {
    overflow: hidden;
    border-radius: 10px;
}

.activities-gallery button {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto !important;
    height: 40px;
    width: 40px;
    z-index: 99;
    background-color: var(--primary) !important;
    color: #fff !important;
    opacity: 0;
}

.activities-gallery {
    position: relative;
}

button.owl-prev {
    left: 0;
    right: auto;
}

button.owl-next {
    right: 0;
    left: auto;
}

.activities-gallery:hover.activities-gallery button {
    opacity: 1;
}

.activities-basic {
    margin-bottom: 20px;
}

.activities-basic h4 {
    font-size: 30px;
}

.price {
    font-size: 30px;
    font-weight: 600;
}

.price span {
    font-size: 14px;
}

.activities-box {
    border: solid 1px #0000002b;
    border-radius: 10px;
    margin-top: 30px;
    padding: 20px;
}

.activities-box h4 {
    font-size: 23px;
    margin-bottom: 10px;
}

.activities-box p {
    line-height: 30px;
    color: #000000b8;
    margin-bottom: 0px;
}

strong .touractivities-price {
    width: fit-content;
}

.activities-gallery .owl-carousel .owl-item img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.activities-box-flex {
    display: flex;
    column-gap: 20px;
    flex-wrap: wrap;
}

.activities-box-flex div {
    width: 48.7%;
}

.activities-box.in {
    background-color: #0cb50c1f;
}

.activities-box.ex {
    background-color: #ff000017;
}

.activities-box li {
    display: flex;
    position: relative;
}

.activities-box li:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    padding-right: 5px;
}

.activities-box ul {
    margin: 0px;
    padding: 0px;
}

.activities-box.ex li:before {
    color: red;
}

.activities-box.in li:before {
    color: green;
}

.activities-sidebar-box .input-flex {
    display: flex;
    column-gap: 10px;
}
.activities-sidebar-box .input-flex {
    display: flex;
    column-gap: 10px;
    width: 100%;
    flex-wrap: wrap;
}

.activities-sidebar-box .input-flex .input {
    width: 100%;
}
/* Make date input look same in Safari, Chrome, Firefox */
input[type="date"] {
    appearance: none;
    -webkit-appearance: none; /* Safari & iOS */
    -moz-appearance: none;

    width: 100%;
    padding: 10px 12px;
    font-size: 15px;

    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;

    height: 44px; /* match select/input height */
    outline: none;
}

/* Fix the calendar icon spacing on Safari */
input[type="date"]::-webkit-date-and-time-value {
    text-align: left;
    padding-left: 0;
}

/* Prevent calendar icon cutting off */
input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 1;
    cursor: pointer;
    padding: 0 8px;
    margin-right: 5px;
}

/* Fix design for input & select */
.activities-sidebar-box .input-flex input,
.activities-sidebar-box .input-flex select {
    width: 100%;                /* Full width */
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #ddd;     /* Clean border */
    border-radius: 6px;         /* Rounded look */
    background: #fff;
    height: 44px;               /* Equal height */
    outline: none;
}

/* On focus */
.activities-sidebar-box .input-flex input:focus,
.activities-sidebar-box .input-flex select:focus {
    border-color: #f9a825;      /* Your theme color (yellow/orange) */
    box-shadow: 0px 0px 4px rgba(249, 168, 37, 0.4);
}

.activities-sidebar-box .input input,
.activities-sidebar-box .input select {
    padding: 10px 10px;
    font-size: 16px;
}

.activities-sidebar-box {
    background-color: #c3c3c308;
    border: solid 1px #00000014;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.activities-sidebar-box .price {
    color: var(--primary);
    border-bottom: dashed 1px #00000038;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.activities-sidebar-box .price span {
    color: #000000c2;
}

.activities-sidebar-box h4 {
    font-size: 20px;
    color: #000000cc;
}

section.section.single-package .col-lg-4 {
    height: fit-content;
    position: sticky;
    top: 20px;
}

.total-pay p {
    margin-bottom: 0px;
    color: #000000bf;
}

.total-pay {
    border-top: dashed 1px #00000038;
    margin-top: 20px;
    padding-top: 20px;
}

.total-pay p span {
    float: right;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
}

.total-pay p b {
    font-weight: 600;
    padding-top: 7px;
    display: inline-block;
}

.activities-sidebar-box button.web-btn {
    width: 100%;
    margin-top: 20px;
}

section.tour-banner.sm img {
    height: 300px;
}

section.tour-banner.sm .tour-btn-txt {
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
}

section.tour-banner.sm p a {
    padding: 0px;
    color: var(--primary);
    text-decoration: none;
}

section.tour-banner.sm p {
    font-size: 19px;
}

span.date {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #505050f7;
    width: fit-content;
    white-space: nowrap;
    font-size: 15px;
    text-align: center;
    border-radius: 5px;
    padding: 8px 10px;
    box-shadow: 0px 0px 16px -10px;
    color: var(--primary);
}

.pack-box.blog-box {
    position: relative;
}

.pack-box.blog-box img {
    height: 270px;
}

.pack-img {
    position: relative;
}

.single-blog-box img {
    width: 100%;
    border-radius: 10px;
}

.single-blog-box .pack-txt {
    padding: 20px 0px;
}

.blog-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 16px;
}

.blog-flex .pack-img {
    width: 30%;
}

.blog-flex .pack-img img {
    min-height: 100px;
    border-radius: 10px;
}

.blog-flex .pack-txt {
    width: 70%;
    padding-top: 0px;
}

.blog-flex h4 {
    font-size: 16px;
    margin-bottom: 0px;
}

.blog-flex p {
    font-size: 12px;
    margin-bottom: 0px;
}

i#mobile_search {
    display: none;
}

.itinerary_message {
    text-align: center;
}

.itinerary_message i {
    color: red;
    background-color: #ff00004f;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 23px;
    padding-top: 8px;
}

.itinerary_message p {
    font-size: 20px;
    line-height: 30px;
    margin-top: 20px;
}

.itinerary_message i.fa-check {
    color: green;
    background: #00800038;
}

.tox-toolbar__primary {
    background: none !important;
}

.post-rating {
    position: absolute;
    bottom: 33px;
    z-index: 99;
    left: 15px;
    color: #000;
}

.pack-box {
    position: relative;
}

.act-img img {
    width: 100% !important;
    max-height: 110px;
    margin: -5px 0px 10px !important;
    display: block;
    border-radius: 10px;
}


/* footer css */
.new_footer_area {
    background: #fbfbfd;
}

.new_footer_top {
    padding: 60px 0px 170px;
    position: relative;
    overflow-x: hidden;
    z-index: 1;
}

.footer_bottom {
    text-align: center;
    padding: 0px 0px 30px;
    /* background-color: #00000005; */
}

.new_footer_top .company_widget p {
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    color: #6a7695;
    margin-bottom: 20px;
}

.new_footer_top .company_widget .f_subscribe_two .btn_get {
    border-width: 1px;
    margin-top: 20px;
}

.btn_get_two:hover {
    background: transparent;
    color: var(--primary);
}

.btn_get:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    -webkit-box-shadow: none;
    box-shadow: none;
}

a:hover,
a:focus,
.btn:hover,
.btn:focus,
button:hover,
button:focus {
    text-decoration: none;
    outline: none;
}

.new_footer_top .f_widget.about-widget .f_list li a:hover {
    color: var(--primary);
}

.new_footer_top .f_widget.about-widget .f_list li {
    margin-bottom: 11px;
}

.f_widget.about-widget .f_list li:last-child {
    margin-bottom: 0px;
}

.f_widget.about-widget .f_list li {
    margin-bottom: 15px;
}

.f_widget.about-widget .f_list {
    margin-bottom: 0px;
}

.new_footer_top .f_social_icon a {
    width: 44px;
    height: 44px;
    line-height: 43px;
    background: transparent;
    border: 1px solid #e2e2eb;
    font-size: 24px;
    text-decoration: none;
}

.f_social_icon a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 45px;
    color: #858da8;
    display: inline-block;
    background: #ebeef5;
    text-align: center;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.ti-facebook:before {
    content: "\e741";
}

.ti-twitter-alt:before {
    content: "\e74b";
}

.ti-vimeo-alt:before {
    content: "\e74a";
}

.ti-pinterest:before {
    content: "\e731";
}

.btn_get_two {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn_get_two:hover {
    background: transparent;
    color: var(--primary);
}

.new_footer_top .f_social_icon a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.new_footer_top .f_social_icon a+a {
    margin-left: 4px;
}

.new_footer_top .f-title {
    margin-bottom: 30px;
    color: #263b5e;
}

.f_600 {
    font-weight: 600;
}

.f_size_18 {
    font-size: 18px;
}

.new_footer_top .f_widget.about-widget .f_list li a {
    color: #6a7695;
    text-decoration: none;
}

.new_footer_top .footer_bg {
    position: absolute;
    bottom: 0;
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigB8iI5tb8WSVBuVUGc9UjjB8O0708X7Fdic_4O1LT4CmLHoiwhanLXiRhe82yw0R7LgACQ2IhZaTY0hhmGi0gYp_Ynb49CVzfmXtYHUVKgXXpWvJ_oYT8cB4vzsnJLe3iCwuzj-w6PeYq_JaHmy_CoGoa6nw0FBo-2xLdOPvsLTh_fmYH2xhkaZ-OGQ/s16000/footer_bg.png") no-repeat scroll center 0;
    width: 100%;
    height: 266px;
    z-index: -1;
}

.footer_bg_one {
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia0PYPxwT5ifToyP3SNZeQWfJEWrUENYA5IXM6sN5vLwAKvaJS1pQVu8mOFFUa_ET4JuHNTFAxKURFerJYHDUWXLXl1vDofYXuij45JZelYOjEFoCOn7E6Vxu0fwV7ACPzArcno1rYuVxGB7JY6G7__e4_KZW4lTYIaHSLVaVLzklZBLZnQw047oq5-Q/s16000/volks.gif") no-repeat center center;
    width: 330px;
    height: 105px;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    left: 30%;
    -webkit-animation: myfirst 22s linear infinite;
    animation: myfirst 22s linear infinite;
}

.new_footer_top .footer_bg .footer_bg_two {
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyLGwEUVwPK6Vi8xXMymsc-ZXVwLWyXhogZxbcXQYSY55REw_0D4VTQnsVzCrL7nsyjd0P7RVOI5NKJbQ75koZIalD8mqbMquP20fL3DxsWngKkOLOzoOf9sMuxlbyfkIBTsDw5WFUj-YJiI50yzgVjF8cZPHhEjkOP_PRTQXDHEq8AyWpBiJdN9SfQA/s16000/cyclist.gif") no-repeat center center;
    width: 88px;
    height: 100px;
    background-size: 100%;
    bottom: 0;
    left: 38%;
    position: absolute;
    -webkit-animation: myfirst 30s linear infinite;
    animation: myfirst 30s linear infinite;
}

footer.new_footer_area.bg_color {
    margin-top: 70px;
}

.cab-img img {
    width: 100%;
}


@-moz-keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

@-webkit-keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

@keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

/*************footer End*****************/


.pack-box-new {
    margin: 20px 0px;
    background-color: #fff;
    box-shadow: 0px 0px 20px -16px;
    padding: 10px;
    border-radius: 10px;
}

.tour-pack-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
}

.tour-time-rateing .post-rating {
    position: unset;
    font-size: 18px;
    width: 50%;
    text-align: right;
}

.total-timing {
    font-size: 18px;
    width: 50%;
}

.tour-time-rateing {
    display: flex;
    padding: 10px 0px;
}

a.tour-title {
    text-decoration: none;
    color: #000000d1;
}

.pack-box-new .pack-txt {
    padding: 7px 0px;
}

.pack-box-new p.pack-price {
    text-align: left;
}

.pack-box-new p.pack-price span {
    display: none;
}

.pack-box-new p.pack-price {
    color: #000000b8;
}

.pack-btn {
    display: flex;
    column-gap: 20px;
}

.pack-btn a {
    display: flex;
    background-color: var(--primary) !important;
    font-size: 18px;
    color: #fff !important;
    text-decoration: none;
    text-align: center;
    padding: 5px 9px;
    border-radius: 15px;
    border: solid 2px var(--primary);
    align-items: center;
    justify-content: center;
}

a.request-btn {
    width: 80%;
}

.pack-btn a.outline-btn {
    width: 20%;
    background: none !important;
    color: var(--primary) !important;
}

a.tour-title h4 {
    font-size: 15px;
}

form.enquiryFormPack .input {
    margin: 15px 0px;
}

div#responseMessage .alert {
    text-align: center;
    font-size: 22px;
}

.error {
    color: red !important;
}

form.enquiryFormPack .input input {
    padding: 6px 14px !important;
    font-size: 16px;
}

/* button.wh-ap-btn {
	outline: none;
	width: 100px;
	height: 100px;
	border: 0;
	background-color: #2ecc71;
	padding: 0;
	border-radius: 100%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	cursor: pointer;
	transition: opacity 0.3s, background 0.3s, box-shadow 0.3s;
}
button.wh-ap-btn::after {
	content: "";
	background-image: url("//i.imgur.com/cAS6qqn.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 60%;
	width: 100%;
	height: 100%;
	display: block;
	opacity: 1;
}
button.wh-ap-btn:hover {
	opacity: 1;
	background-color: #20bf6b;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.wh-api {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index:9999;
}
.wh-fixed {
	margin-right: 15px;
	margin-bottom: 15px;
}
.wh-fixed > a {
	display: block;
	text-decoration: none;
}

.whatsapp-pulse {
	width: 100px;
	height: 100px;
	right: 10px;
	bottom: 10px;
	background: #10b418;
	position: fixed;
	text-align: center;
	color: #ffffff;
	cursor: pointer;
	border-radius: 50%;
	z-index: 99;
	display: inline-block;
	line-height: 65px;
}

.whatsapp-pulse:before {
	position: absolute;
	content: " ";
	z-index: -1;
	bottom: -15px;
	right: -15px;
	background-color: #10b418;
	width: 130px;
	height: 130px;
	border-radius: 100%;
	animation-fill-mode: both;
	-webkit-animation-fill-mode: both;
	opacity: 0.6;
	-webkit-animation: pulse 1s ease-out;
	animation: pulse 1.8s ease-out;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}
button.wh-ap-btn:before {
    content: "Chat With Us";
    position: absolute;
    left: -160px;
    background-color: #2ecc71;
    width: 150px;
    font-size: 20px;
    height: 35px;
    top: 0;
    bottom: 0;
    margin: auto;
    line-height: 37px;
    border-radius: 50px;
    color: #fff;
    transition: 0.5s;
    opacity: 0;
}
button.wh-ap-btn:hover:before {
    opacity: 1;
}
@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(0);
		opacity: 0;
	}
	25% {
		-webkit-transform: scale(0.3);
		opacity: 1;
	}
	50% {
		-webkit-transform: scale(0.6);
		opacity: 0.6;
	}
	75% {
		-webkit-transform: scale(0.9);
		opacity: 0.3;
	}
	100% {
		-webkit-transform: scale(1);
		opacity: 0;
	}
}
@keyframes pulse {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	25% {
		transform: scale(0.3);
		opacity: 1;
	}
	50% {
		transform: scale(0.6);
		opacity: 0.6;
	}
	75% {
		transform: scale(0.9);
		opacity: 0.3;
	}
	100% {
		transform: scale(1);
		opacity: 0;
	}
} */
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999999;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
    animation: glow 2s infinite ease-in-out;
}

/* Soft Glow Animation */
@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 25px rgba(37, 211, 102, 0.8);
        transform: scale(1.08);
    }

    100% {
        box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
}

/* Pulse Outer Circle */
.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(37, 211, 102, 0.4);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite ease-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

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

.whatsapp-float i {
    color: #fff;
    font-size: 30px;
}

.course-overview {
    display: flex;
    column-gap: 20px;
    align-items: center;
}

.course-overview img {
    width: 60px;
    border-radius: 10px;
    height: 60px;
    object-fit: cover;
}

.c-o-txt p {
    margin: 0px;
    font-size: 22px;
}

.c-o-txt h4 {
    font-size: 18px;
}

.enquery-popup-header.popup-header {
    background-color: #ffa50173;
    border-radius: 10px 10px 0px 0px;
    border: none;
}

.tour_package_slider .item {
    padding: 5px;
}

.tour_package_slider{
    display: none  !important;
}

@media (max-width:600px) {
   .testimonial_slider .owl-item.active {
    width: 386px !important;
}
.testimonial_slider .owl-stage{
    display: flex;
}
    .mobile-none{
        display: none;
    }
    .tour_package_slider{
    display: block  !important;
}
.tour_package_slider .owl-item.active {
    width: 343px !important;
}
  .location_slider .owl-item.active {
    width: 306px !important;
}
    section.section.top-package.des-section {
    padding-bottom: 22px !important;
}
    .des-section .cat-box img {
        height: 257px;
    }

    .content p {
        padding: 10px 15px;
        margin: 0;
        color: #333;
        font-size: 16px;
    }

    footer.new_footer_area.bg_color {
        margin-top: 49px;
    }

    .reviews h4 {
        font-size: 19px;
    }

    .reviews h4 a {
        float: right;
        margin-top: -6px;
        color: var(--primary);
        font-size: 15px;
    }

    .package-sidebar-box p {
        margin: 0px;
        font-size: 14px;
    }

    table.pricing-table td,
    th {
        padding: 0.3em 0em;
        border-width: 0 1px 1px 0;
        font-size: 14px;
    }

    .web-btn {
        padding: 5px 14px 4px;
        font-size: 16px;
    }

    section.tour-banner:after {

        background-image: linear-gradient(to bottom, rgb(0 0 0 / 51%), #000000);
    }

    section.tour-banner img {
        height: 395px !important;
    }

    .tour-btn-txt a {
        margin: auto;
        padding: 9px 28px;
        font-size: 14px;
    }

    .new_footer_top {
        padding: 0px 0px 170px;
        position: relative;
        overflow-x: hidden;
        z-index: 1;
    }

    section.section.pop-package {
        background-color: #7c8d8d26;
        padding: 19px 0px;
    }

    .cat-box p {
        margin-bottom: 8px;
        color: #000000a8;
        font-size: 14px;
    }

    .heading p {
        color: #000000a8;
        font-size: 15px;
    }

    .banner-text h4 {
        font-size: 15px;
    }

    .banner-text h1 {
        font-size: 22px;
        margin-bottom: 7px;
    }
section.home-slider.activities-slider h1 {
    font-size: 22px;
}
    .banner-text p {
        color: #fff;
        font-size: 16px;
    }

    section.section {
        margin-top: 25px;
    }

    .heading h2 {
        font-size: 20px;
    }

    .cat-box h4 {
        white-space: nowrap;
        width: 95px;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 18px;
        margin-bottom: 1px;
        text-align: center;
        animation: c;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .review-head i.fa.fa-quote-right {

        display: none;
    }
.account-content .card {
    padding: 13px 12px;

}
    .account-sidebar {
        padding: 10px;
        width: 100%;
        /* width: 128px; */
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        column-gap: 0px;
        row-gap: 2px;
    }

    .account-sidebar a {
        font-size: 12px;
        justify-content: center;
        width: 134px;
        margin: 5px 0px;
    }

    .content-wrapper {
        padding: 10px !important;
    }

    .custom-page-header {
        padding-left: 0px;
    }

    .single-package-content {
        margin-top: 0px;
        position: relative;
    }

    .tour-btn-txt h1 {
        font-size: 20px;
    }

    .tour-btn-txt h4 {
        font-size: 17px;
    }

    .set a span {
        display: block;
        text-align: center;
        width: fit-content;
        margin-bottom: 10px
    }

    .single-package-content .package-content-box:before {

        left: -31px;
        width: 28px;
        height: 28px;
        font-size: 16px;
        font-weight: 800;
    }

    .package-content-box,
    .package-sidebar-box {
        padding: 10px;
    }

    .set>a {
        font-size: 15px;
        padding: 10px 7px;
        position: relative;

    }

    .cab-filter {
        padding: 0px;
    }

    .cab-img,
    .cab-detail,
    .cab-price {
        width: 100%;
        text-align: left;
    }

    .pricing-box {
        min-width: 210px;
    }

    .pricing-head h4 {
        font-size: 16px;
    }

    .pricing-head h4 span {
        font-size: 9px;
    }

    .pricing-head p {
        font-size: 18px;
        margin-top: -30px;
    }

    .pricing-box .cab-price button {
        width: fit-content;
        font-size: 12px;
    }

    .pricing-box .cab-desc p span,
    .cab-desc p span {
        width: 100%;
        font-size: 15px;
        margin-bottom: 6px;
    }

    .cab-desc p {
        font-size: 12px;
    }

    .cab-pricing {
        margin-top: 30px;
    }

    .car-typ li {
        font-size: 10px;
    }

    .cab-detail {
        padding-top: 15px;
    }

    .car-typ li:after {
        margin: 0px 6px;
    }

    .new_footer_top .col-lg-3 {
        padding-left: 20px !important;
    }

    .new_footer_top h3 {
        margin: 30px 0px 10px !important;
    }

    .tab-head a {
        font-size: 12px;
        padding: 7px 12px;
    }

    .input input,
    .input select {
        padding: 5px 10px;
        font-size: 14px;
    }

    .input label {
        font-size: 12px;
    }

    .input {
        margin: 5px 0px;
    }

    button.web-btn {
        padding: 7px 30px;
        font-size: 13px;
    }

    .tab-body {
        padding: 22px 20px;
    }

    .tab-body form .row {
        box-shadow: unset;
        padding: 10px 0px 5px;
    }

    .form-submit button {
        bottom: -15px;
    }

    .custom-page-header a {
        font-size: 12px;
    }

    .account-content {
        padding-top: 40px;
    }

    .account-sidebar {
        width: 100%;
                justify-content: start;
        gap: 10px;
    }

    .account-sidebar a {
        font-size: 12px;
        justify-content: center;
    }

    section.home-banner {
        min-height: 520px;
    }

    section.section.top-package .col-md-6 {
        width: 50%;
    }

 section.section.top-package img {
       height: 100px;
    } 

    .banner-text {
        max-width: 80% !important;
    }

    .cab-search-txt h1 {
        font-size: 25px !important;
    }

    .cab-search-txt p {
        color: #fff;
        font-size: 14px;
    }

    .cab-search-txt {
        text-align: center;
        padding: 0px;
    }

    .package-filter .header-search {
        display: block;
        position: unset;
    }

    section#packages .col-md-12.col-lg-3 {
        position: unset;
    }

    .owl-arrow {
        position: unset;
        justify-content: end;
    }

    .owl-arrow button {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }

    .touractivities-box {
        display: block;
    }

    .touractivities-box div {
        width: unset;
    }

    .touractivities-img img {
        height: unset;
        margin-bottom: 10px;
    }

    .touractivities-price {
        border: none;
    }

    .touractivities-price a.web-btn {
       float: none;
        margin: 20px 0px 0px;
        padding: 8px 45px;
        font-size: 18px;
    }

    .touractivities-price .price {
        position: absolute;
        top: 20px;
        background-color: #fff;
        padding: 12px;
        border-radius: 5px;
        left: 20px;
        font-size: 19px;
    }

    .touractivities-box {
        position: relative;
    }

    .touractivities-price .price span {
        font-size: 12px !important;
    }

    i#mobile_search {
        position: absolute;
        right: 80px;
        top: 21px;
        font-size: 23px;
        color: var(--primary);
        display: block;
    }

    .hear-btn {
        float: none;
    }

    .multi_step_head {
        display: none;
    }

    .step-flex .csf {
        width: 100% !important;
        margin: 0px;
    }

    .step-flex {
        flex-wrap: wrap;
    }

    .step_flex .cab-box {
        width: 47% !important;
    }

    .step_flex {
        flex-wrap: wrap;
    }

    .cab-box.activities_inters {
        width: 47% !important;
    }
}
li.item.mobile-shows {
    display: none;
}
@media (max-width:900px) {
    li.item.mobile-shows {
    display: block !important;
}
    .header-nav {

    display: block !important;
}
.tour-category-slider{
    display: none !important;
}
    .nav-menu {
        position: fixed;
        left: -100%;
        width: 80%;
        top: 0;
        height: 100%;
        background-color: #fff;
        z-index: 999;
        display: block;
        transition: 0.5s;
        box-shadow: 0px 0px 13px -10px;
    }

    .nav-menu li {
        width: 100% !important;
        display: block;
        margin: 28px 0px;
    }

    .mobile-menu div {
        width: 28px;
        height: 3px;
        background-color: var(--primary);
        margin: 6px 0px 0px;
        transition: 0.5s;
    }

    .mobile-menu {
        width: max-content;
        padding: 1px 6px 7px;
        border-radius: 4px;
        position: absolute;
        right: 10px;
        top: 14px;
    }

    .mobile-menu.show div:nth-child(3) {
        opacity: 0;
    }

    .mobile-menu.show div:nth-child(1) {
        transform: rotate(45deg);
    }

    .mobile-menu.show div:nth-child(2) {
        transform: rotate(-45deg);
        margin: -2px 0px 0px 0px;
    }

    .mobile-menu.show {
        padding-top: 8px;
    }

    .nav-menu.show-nav {
        left: 0;
    }

    .singe-tab-menu {
        display: none !important;
    }

    section.tour-banner img {
        height: 500px;
    }

    .header-logo img {
        width: 120px;
    }

    button.slick-prev.slick-arrow {
        margin-left: 16px;
        opacity: 1 !important;
    }

    button.slick-next.slick-arrow {
        margin-right: 16px !important;
    }

    section.top-boxes .row .col-md-6 {
        width: 50%;
        margin: 10px 0px;
    }

    section.top-boxes .row .col-md-6 h4 {
        font-size: 13px;
    }

    section.top-boxes .row .col-md-6 i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    section.top-boxes {
        padding: 7px 0px;
    }

    h2.heading {
        font-size: 30px;
    }

    .hear-btn a {
        font-size: 14px;
        padding: 8px 10px;
    }

    .nav-menu .col-lg-3 {
        padding-left: 20px;
    }

    .nav-menu li a {
        margin: 0px;
        display: flex;
        align-items: center;
    }

    .nav-menu li a img {
        margin: -5px 6px 0px;
        width: 20px;
    }

    .mobile-user-ac li.header-login {
        padding-left: 0px;
        display: block;
    }

    .mobile-user-ac li a {
        display: contents;
    }

    .mobile-user-ac .usr-log {
        text-align: left !important;
    }

    .mobile-user-ac {
        border-top: dashed 1px #00000030;
        margin-top: 30px;
    }

    li.header-login {
        display: none;
    }

    .header-search {
        position: absolute;
        background-color: #fff;
        left: 0;
        width: 100%;
        padding: 10px 0px;
        display: none;
        z-index: 999;
    }

    section.home-slider img {
        min-height: 440px;
    }

    li.header-login p {
        justify-content: start !important;
    }

    ul.user_log {
        left: 0;
    }

    .activities-box-flex {
        margin-bottom: 30px;
    }

    .activities-box-flex div {
        width: 100%;
    }
}

@media (min-width:1000px) {
    .mobile-user-ac {
        display: none;
    }
}

.category-sec ul {
    padding: 0;
    line-height: normal;
    list-style: none;
    padding-top: 8px;
}

.category-sec ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #2f2d2d;
}

.trim-section {
    display: inline-block;
    background-color: rgb(255 165 1 / 31%);
    color: #080808c4;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 5px;
}

.activities-sidebar-box h4:not(.pack-txt h4) {
    border-bottom: 1px solid #b9b8b8;
    padding-bottom: 12px;
}

section.partner-banner {
    background-image: url(https://bookmyvocation.com/public/assets/frontend/images/home-banner.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
    box-shadow: inset 0px 0px 0px 1000px #000000b3;
    background-attachment: fixed;
}

.partner-banner-txt h4 {
    background-color: var(--primary);
    width: fit-content;
    color: #fff;
    font-size: 15px;
    padding: 6px 28px;
    border-radius: 20px;
    transform: rotate(-2deg);
}

.partner-banner-txt h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
}

.partner-banner-txt a {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--primary);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    margin-top: 30px;
}

.partner-banner-txt a i {
    padding-left: 13px;
}

.partner-banner-txt p {
    font-size: 20px;
    margin-top: 20px;
    color: #ffffffd6;
}

.partner-banner-txt a:hover {
    background-color: var(--primary);
}

.partner-banner-form button {
    width: 100%;
    padding: 11px 30px;
    background-color: var(--primary);
    color: #fff;
    text-decoration: none;
    border-color: var(--primary);
    box-shadow: unset;
    border-radius: 10px;
}

.partner-banner-form div {
    margin-left: 0px;
}

.partner-banner-form h4 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.partner-banner-form input {
    height: fit-content;
    padding: 8px 20px !important;
    font-size: 15px;
}

.partner-banner-txt {
    padding-right: 80px;
}

section.partner-banner .row,
section#partners .row {
    align-items: center;
}

.partner-banner-form label {
    font-size: 13px;
}

.partner-banner-form .input {
    margin: 8px 0px;
}

.partner-banner-form div#verify_otp_form input,
.partner-banner-form div#send_otp_form input {
    padding: 12px 20px !important;
}

section#why-us .row,
section#help .row {
    align-items: center;
}

.why-text h2,
section#our_partner h2 {
    font-size: 50px;
    margin-bottom: 20px;
}

.why-text p {
    font-size: 17px;
    color: #000000b8;
}

.why-image img {
    width: 100%;
    border-radius: 10px;
}

section#help {
    background-color: #f5f5f5;
    padding: 60px 0px 0px !important;
    position: relative;
    z-index: 9;
}

section#help .why-text {
    padding-left: 50px;
}

.partner-text h2 {
    font-size: 50px;
    font-weight: 400;
    color: var(--primary);
}

.partner-text h2 span,
.partner-text h2 b {
    font-size: 30px;
    color: #000000b3;
}

.partner-text p {
    font-size: 20px;
}

.partner-text p span {
    color: var(--primary);
}

.marquee {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: inline-flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;


}

.marquee-content img {
    height: 70px;
    margin-right: 20px;
    vertical-align: middle;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

section#designed {
    background-color: #f5f5f5;
    padding: 60px 0px;
    position: relative;
}

.left-heading h2 {
    font-size: 50px;
    color: #000000b3;
}

.left-heading p {
    font-size: 25px;
    color: #000000a6;
}

.left-heading {
    max-width: 700px;
}

section#designed:after,
section#help:after {
    content: "";
    position: absolute;
    bottom: -100px;
    width: 100%;
    height: 200px;
    background-color: #f5f5f5;
    z-index: -1;
    border-radius: 0px 0px 50% 50%;
}

.designed-box {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 12px -10px;
}

.designed-box h4 {
    font-size: 25px;
    margin-bottom: 20px;
}

.designed-box p {
    color: #000000bf;
    line-height: 30px;
}

.step-box {
    margin-top: 40px;
    padding: 0px 20px;
}

.step-box span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    color: rgb(255, 255, 255);
    font-size: 32px;
    font-weight: 900;
    background-image: linear-gradient(122deg, rgb(255 165 1) 5%, rgb(201 103 13) 83%);
}

.step-box h4 {
    font-size: 30px;
    margin: 20px 0px;
}

section.action-section {
    position: relative;
    background-image: linear-gradient(122deg, rgb(255 165 1) 5%, rgb(201 103 13) 83%);
    padding: 170px 0px 43px;
}

section.action-section h2 {
    font-size: 50px;
    color: #fff;
}

.action-btn {
    text-align: right;
}

.action-btn a {
    display: inline-block;
    padding: 20px 45px 16px;
    background-color: #fff;
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    font-size: 20px;
}

.action-btn a i {
    margin-left: 10px;
}

div#partners_register .modal-body,
div#partners_register .col-md-5,
div#partners_register .col-md-7 {
    padding: 0px;
}

.modal-image img {
    width: 100%;
    min-height: 550px;
    object-fit: cover;
}

.modal-header {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 99;
    border: none;
}

.modal-image {
    position: relative;
}

.modal-image:after {
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000000a8;
    z-index: 99;
    top: 0;
}

.image-txt {
    position: absolute;
    top: 0;
    margin: auto !important;
    bottom: 0;
    height: fit-content;
    border: solid 1px #ffffffa8;
    z-index: 999;
    right: 0;
    left: 0;
    max-width: 310px;
    padding: 20px;
    text-align: center;
}

.image-txt h2 {
    color: #fff;
    font-size: 30px;
}

.image-txt h4 {
    color: #fff;
    font-size: 20px;
}

.partner-start-head {
    background-color: #e9eef1;
    padding: 40px 60px 0px;
}

.partner-start-head h4 {
    text-align: left;
    font-size: 20px;
    margin: 40px 0px 0px;
}

.partner-form.add-bg form {
    padding-left: 40px;
}

.partner-banner-form {
    overflow: hidden;
}

.partner-form form {
    padding: 30px 60px;
}

.partner-start-head h3 {
    font-size: 25px;
    margin: 20px 0px;
}

.partner-start-head li {
    display: block;
    margin: 5px 0px;
}

.partner-start-head span {
    color: #fe760d;
}

.steps-flex {
    display: flex;
    column-gap: 20px;
}

.step-input {
    width: 60%;
}

.steps-flex .text-danger.text-left {
    margin-top: -17px;
}

div#partners_register .modal-dialog.modal-xl {
    max-width: 1000px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 60px;
}

.partner-bnr-img img {
    width: 100%;
}

.why-box h4 {
    font-size: 20px;
}

section.action-section p {
    font-size: 25px;
    color: #fff;
}

.designed-box li {
    display: flex;
    column-gap: 10px;
    margin: 6px 0px;
}

.designed-box li i {
    color: #0da60d;
    padding-top: 4px;
}


@media (max-width:600px) {
.set>a i {
    float: right;
    margin-top: -45px;
    position: absolute;
    top: 63px;
    right: 7px;
}
    .partner-banner-txt h1,
    section.action-section h2 {
        font-size: 35px;
    }

    .partner-banner-txt {
        padding-right: 0px;
        padding-bottom: 50px;
    }

    .left-heading h2,
    .why-text h2 {
        font-size: 30px;
    }

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

    .why-text {
        padding-left: 0px !important;
    }

    .action-btn {
        text-align: left;
        padding-top: 30px;
    }

    .modal-image img {
        min-height: 350px;
    }

    .partner-start-head {
        padding: 40px;
    }

    .steps-flex {
        display: block;
    }

    .steps-flex div {
        width: 100%;
    }

    .partner-form form {
        padding: 34px;
    }

    .modal-header {
        z-index: 9999;
    }

    .modal-header button {
        background-color: #fff;
        opacity: 1;
    }
}


#inclusions p {
    position: relative;
    padding-left: 12PX;
}

#inclusions p::before {
    color: var(--primary);
    position: absolute;
    left: 0px;
    background-color: var(--primary);
    height: 5px;
    width: 5px;

    border-radius: 50%;
    content: "";
    top: 8px;

}
#exclusions p {
    position: relative;
    padding-left: 12PX;
}

#exclusions p::before {
    color: var(--primary);
    position: absolute;
    left: 0px;
    background-color: var(--primary);
    height: 5px;
    width: 5px;

    border-radius: 50%;
    content: "";
    top: 8px;

}

/* OVERLAY BACKDROP */
.popup-slider {
    position: fixed !important;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

/* CENTERED POPUP */
.popup-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SLIDER */
.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* POPUP IMAGE */
/* POPUP OVERLAY FULL SCREEN */
#popupSlider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 999999;
    display: none;
    justify-content: center;
    align-items: center;
}

/* CENTER SLIDE PERFECTLY */
#popupSlider .owl-stage-outer {
    height: 100vh;
    display: flex;
    align-items: center;
}

#popupSlider .owl-stage {
    display: flex;
    align-items: center;
}

/* CENTER SLIDE ITEM */
#popupSlider .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* IMAGE FIT PERFECTLY */
#popupSlider img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}
.arrow.disabled {
    opacity: 0.3;
    pointer-events: none;
}
.arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    background: rgba(255,255,255,0.1);
}
.arrow.disabled i {
    color: #aaa !important;
}

/* ARROWS FIXED CENTER LEFT/RIGHT */
.arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    background: rgba(255,255,255,0.2);
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    z-index: 1000;
}

.prev { left: 20px; }
.next { right: 20px; }

/* CLOSE BUTTON */
.close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 35px;
    color: white;
    cursor: pointer;
    z-index: 1000;
}

/* Prevent scroll jump */
html, body {
    scroll-behavior: auto !important;
}

.blog-tags {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-tags a {
    white-space: nowrap;
}

@media only screen and (max-width: 1024px) {
    .popular-destination-sec {
        padding-left: 1.5rem;
        padding-bottom: 10px;;
    }button.web-btn.btn_get.btn_get_two {
    margin-top: 10px;
}
}

/* MOBILE SCROLL — SAFARI + ALL BROWSERS */
@media (max-width: 600px) {
    .custom-page-header {
        display: flex;
        overflow-x: auto;       /* enable horizontal scroll */
        padding-left: 0;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling for Safari */
    }
}

/* FIREFOX THIN SCROLLBAR */
.custom-page-header {
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

/* CHROME, SAFARI, EDGE — THIN SCROLLBAR */
.custom-page-header::-webkit-scrollbar {
    height: 2px; /* thin scrollbar height */
}

.custom-page-header::-webkit-scrollbar-track {
    background: transparent;
}

.custom-page-header::-webkit-scrollbar-thumb {
    background: #cfcfcf;   /* scrollbar color */
    border-radius: 10px;
}

.custom-page-header::-webkit-scrollbar-thumb:hover {
    background: #b5b5b5;
}
div#reviews {
    margin-bottom: 27px;
}

/* .hear-btn a:nth-child(2) {
    background: #ff9800;
    color: #fff !important;
    border-radius: 6px;
    padding: 8px 15px;
} */
 section.section.top-package.des-section {
    padding-bottom: 50px;
}

tr.not-found td:not(td.sorting_1) {
    display: none;
}

.activities-sidebar-box .pack-txt p {
    min-height: auto !important;
}



.accordion-button {
    font-size: 16px;
    padding: 15px 20px;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: #fdb813;
    color: #000;
}
.tour_package_slider.owl-carousel .owl-item{
    display: block !important;
}
.location_slider.owl-carousel .owl-item{
    display: block !important;
}
.testimonial_slider .item {
    padding: 10px 2px;
}

.testimonial_slider .item {
    margin-bottom: 30px;
}