@charset "UTF-8";
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/**==Typhograhy setion css start==**/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --color-primary: #3184e7;
    --color-secondary: #2965aa;
    --color-gradiant: #002676;
    --color-heading: #4b4b4b;
    --color-text: #333;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-light-blue: #f4f8fd;
    --color-grey: #fafafa;
    --color-footer: #fff9ed;
    --color-footer2: #c59783;
    --font-text: "Roboto", sans-serif;
    --font-heading: "Roboto", sans-serif;
}

body {
    font-family: var(--font-text);
    line-height: 1.4;
    color: var(--color-text);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.1;
    color: var(--color-heading);
    letter-spacing: 1px;
}

h1 {
    font-size: 50px;
    font-weight: 700;
}

h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

h6 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
}

.title_head {
    font-size: 18px
}

a,
a:focus,
a:hover {
    text-decoration: none;
    color: inherit;
    transition: all 0.5s ease;
    outline: none;
}

@media (max-width: 767px) {

    h1,
    h1 span {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    p {
        font-size: 14px;
    }
}

/**css for the heading bottom border at left**/
.heading-line {
    position: relative;
    margin-bottom: 30px;
}

.heading-line::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    border-bottom: 3px solid var(--color-heading);
}

/**heading line css ends here**/
img {
    max-width: 100%;
}

.m-80 {
    margin: 80px 0;
}

.m-60 {
    margin: 60px 0;
}

.m-40 {
    margin: 40px 0;
}

.m-30 {
    margin: 30px 0;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-30 {
    margin-bottom: 30px;
}

.p-80 {
    padding: 80px 0;
}

.innerpage,
.p-60 {
    padding: 60px 0;
}

.p-40 {
    padding: 40px 0;
}

.p-30 {
    padding: 30px 0;
}

.p-0 {
    padding: 0;
}

.title_section {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .m-80 {
        margin: 50px 0;
    }

    .m-60 {
        margin: 30px 0;
    }

    .m-40 {
        margin: 20px 0;
    }

    .m-30 {
        margin: 15px 0;
    }

    .mb-60 {
        margin-bottom: 30px;
    }

    .mb-50 {
        margin-bottom: 25px;
    }

    .mb-40 {
        margin-bottom: 20px;
    }

    .mb-30 {
        margin-bottom: 15px;
    }

    .p-80 {
        padding: 50px 0;
    }

    .innerpage,
    .p-60 {
        padding: 30px 0;
    }

    .p-40 {
        padding: 20px 0;
    }

    .p-30 {
        padding: 15px 0;
    }

    .title_section {
        margin-bottom: 20px;
    }
}

@media (min-width: 992px) {
    .container-fluid {
        max-width: 100%;
        padding: 0 60px;
    }
}

@media (min-width: 1400px) {
    .container-fluid {
        max-width: 100%;
        padding: 0 100px;
    }

    .container {
        max-width: 1380px;
        width: 100%;
    }
}

/**==Typhograhy setion css end==**/
/**== Form CSS OPEN ==**/
form input.form-control,
form textarea.form-control {
    width: 100%;
    border-radius: 4px;
    background: transparent;
    height: 50px;
    padding: 0 20px;
    outline: none;
    border: 1px solid #ced7e4;
    margin: 15px 0;
}

form input.form-control:focus,
form input.form-control:hover,
form textarea.form-control:focus,
form textarea.form-control:hover {
    border: 1px solid #ced7e4;
    outline: none;
    box-shadow: none;
}

form textarea.form-control {
    height: auto;
    padding: 20px;
    min-height: 120px;
}

form button {
    margin-top: 30px;
}

form button i {
    margin-left: 10px;
}

.form-select {
    width: 100%;
    border-radius: 4px;
    height: 50px;
    padding: 0 20px;
    outline: none;
    border: 1px solid #ced7e4;
}

.form-select:focus,
.form-select:hover {
    border: 1px solid #ced7e4;
    outline: none;
    box-shadow: none;
}

/**== Form CSS CLOSE ==**/
/**== Commoon Css Open-- ==**/
.bg-grey {
    background: var(--color-grey);
}

.bg-white {
    background: var(--color-white);
}

.bg-light-blue {
    background: var(--color-light-blue);
}

.bg-img {
    background-image: url(../img/Map-w.png);
    background-size: cover;
    background-position: center;
}

.bg-img2 {
    background-image: url(../img/Travel.png);
    background-size: cover;
    background-position: center;
}

.bg-mountain {
    // background-image: url(../img/Everest.png);
    // background-size: cover;
    // background-position: center;
}

.bg-mountain {
    position: relative;
}

.bg-mountain::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../img/mountains.png);
    background-size: cover;
    background-position: top center;
    opacity: 0.2;
}

.btn,
input[type=submit],
button {
    transition: all 0.5s ease-in-out;
    border-radius: 5px;
    padding: 12px 40px;
    width: auto;
    font-size: 16px;
    line-height: 1.5;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background: var(--color-primary);
    outline: none;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn:hover,
input[type=submit]:hover,
button:hover {
    background: var(--color-secondary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


.btn.btn-mt,
input[type=submit].btn-mt,
button.btn-mt {
    margin-top: 30px;
}

.btn-white {
    background: var(--color-white);
    color: var(--color-secondary);
}

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

.btn_transparent,
.btn_transparent_white {
    display: inline-block;
    color: var(--color-heading);
    font-size: 20px;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
}

.btn_transparent:hover,
.btn_transparent_white:hover {
    color: var(--color-secondary);
}

.btn_transparent_white,
.btn_transparent_white:hover {
    color: var(--color-white);
}

.btn_transparent i,
.btn_transparent_white i {
    margin-left: 10px;
}

.btn_transparent:hover i,
.btn_transparent_white:hover i {
    margin-left: 15px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.icon li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 16px;
}

ul.icon li:before {
    position: absolute;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    left: 0;
    top: 2px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    font-size: 12px;
    border-radius: 100%;
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    line-height: 20px;
}

ul.icon_list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
    color: var(--color-text);
}

ul.icon_list li:before {
    position: absolute;
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    left: 0;
    top: 2px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    font-size: 14px;
    border-radius: 100%;
    color: var(--color-text);
    text-align: center;
    line-height: 20px;
}

ul.icon_list li:hover {
    padding-left: 30px;
    color: var(--color-secondary);
}

ul.icon_list li:hover:before {
    color: var(--color-secondary);
}

ul.social_icons {
    padding: 0;
    margin: 0;
}

ul.social_icons li {
    display: inline-block;
}

ul.social_icons li.facebook a {
    background: #385da9;
}

ul.social_icons li.twitter a {
    background: #3cf;
}

ul.social_icons li.pinterest a {
    background: #bd081c;
}

ul.social_icons li.linkedin a {
    background: #0073b1;
}

ul.social_icons li.instagram a {
    background: #D53F7F;
}

ul.social_icons li.youtube a {
    background: #FF0000;
}

ul.social_icons li.whatsapp a {
    background: #25D366;
}

ul.social_icons li a {
    display: inline-block;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transition: all 0.3s;
    border-radius: 4px;
}

ul.social_icons li a i {
    color: #fff;
    font-size: 13px;
    line-height: 30px;
}

ul.social_icons li a:hover {
    background: var(--color-primary);
    transform: translateY(-5px);
}

.icon_box_left {
    display: flex;
    column-gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px dashed var(--color-secondary);
}

.icon_box_left:last-child {
    border-bottom: none;
}

.icon_box_left .icon_img {
    min-width: 80px;
}

.icon_box_left .icon_img img {
    width: 80px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
    border-radius: 100%;
    padding: 5px;
    background: var(--color-light-blue);

}

.icon_box_left .icon_text h3 {
    margin-bottom: 10px;
    color: var(--color-secondary);
}


.box-shadow {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.slick-dots {
    text-align: center;
    position: relative;
    width: 100%;
}

.slick-dots li {
    display: inline-block;
    margin: 0px;
    width: 40px;
}

.slick-dots li button {
    text-indent: -99999px;
    border: none;
    padding: 0;
    margin-left: 10px;
    z-index: 1;
    cursor: pointer;
    background: no-repeat;
    transition: .3s;
    background-color: #b7b7b7;
    height: 6px;
    width: 30px;
    border-radius: 5px;
}

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

/**Back to Top Css Open**/
#backtotop {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg,
            var(--color-primary) 0%,
            var(--color-secondary) 100%);
    width: 48px;
    height: 48px;
    border-radius: 14px;
    position: fixed;
    bottom: 24px;
    right: 24px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    overflow: hidden;
}

#backtotop::before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(../img/shiva.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

#backtotop::after {
    content: "TOP";
    position: absolute;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

#backtotop:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg,
            var(--color-primary) 0%,
            var(--color-gradiant) 70%,
            var(--color-gradiant) 100%);
}

#backtotop:hover::before {
    transform: translateY(-10px) scale(0.8);
}

#backtotop:hover::after {
    opacity: 1;
    transform: translateY(10px);
}

#backtotop:active {
    transform: scale(0.96) translateY(-3px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 3px 6px rgba(0, 0, 0, 0.08);
}

#backtotop.show {
    opacity: 1;
    visibility: visible;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


@media (max-width: 768px) {
    #backtotop {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
    }

    #backtotop::before {
        font-size: 20px;
    }

    #backtotop::after {
        font-size: 8px;
    }
}

/**Back to Top Css Close**/

/**==Sal css start==**/
[data-sal] {
    transition-duration: 0.2s;
    transition-delay: 0s;
    transition-duration: var(--sal-duration, 0.2s);
    transition-delay: var(--sal-delay, 0s);
    transition-timing-function: var(--sal-easing, ease);
}

[data-sal][data-sal-duration="200"] {
    transition-duration: 0.2s;
}

[data-sal][data-sal-duration="250"] {
    transition-duration: 0.25s;
}

[data-sal][data-sal-duration="300"] {
    transition-duration: 0.3s;
}

[data-sal][data-sal-duration="350"] {
    transition-duration: 0.35s;
}

[data-sal][data-sal-duration="400"] {
    transition-duration: 0.4s;
}

[data-sal][data-sal-duration="450"] {
    transition-duration: 0.45s;
}

[data-sal][data-sal-duration="500"] {
    transition-duration: 0.5s;
}

[data-sal][data-sal-duration="550"] {
    transition-duration: 0.55s;
}

[data-sal][data-sal-duration="600"] {
    transition-duration: 0.6s;
}

[data-sal][data-sal-duration="650"] {
    transition-duration: 0.65s;
}

[data-sal][data-sal-duration="700"] {
    transition-duration: 0.7s;
}

[data-sal][data-sal-duration="750"] {
    transition-duration: 0.75s;
}

[data-sal][data-sal-duration="800"] {
    transition-duration: 0.8s;
}

[data-sal][data-sal-duration="850"] {
    transition-duration: 0.85s;
}

[data-sal][data-sal-duration="900"] {
    transition-duration: 0.9s;
}

[data-sal][data-sal-duration="950"] {
    transition-duration: 0.95s;
}

[data-sal][data-sal-duration="1000"] {
    transition-duration: 1s;
}

[data-sal][data-sal-duration="1050"] {
    transition-duration: 1.05s;
}

[data-sal][data-sal-duration="1100"] {
    transition-duration: 1.1s;
}

[data-sal][data-sal-duration="1150"] {
    transition-duration: 1.15s;
}

[data-sal][data-sal-duration="1200"] {
    transition-duration: 1.2s;
}

[data-sal][data-sal-duration="1250"] {
    transition-duration: 1.25s;
}

[data-sal][data-sal-duration="1300"] {
    transition-duration: 1.3s;
}

[data-sal][data-sal-duration="1350"] {
    transition-duration: 1.35s;
}

[data-sal][data-sal-duration="1400"] {
    transition-duration: 1.4s;
}

[data-sal][data-sal-duration="1450"] {
    transition-duration: 1.45s;
}

[data-sal][data-sal-duration="1500"] {
    transition-duration: 1.5s;
}

[data-sal][data-sal-duration="1550"] {
    transition-duration: 1.55s;
}

[data-sal][data-sal-duration="1600"] {
    transition-duration: 1.6s;
}

[data-sal][data-sal-duration="1650"] {
    transition-duration: 1.65s;
}

[data-sal][data-sal-duration="1700"] {
    transition-duration: 1.7s;
}

[data-sal][data-sal-duration="1750"] {
    transition-duration: 1.75s;
}

[data-sal][data-sal-duration="1800"] {
    transition-duration: 1.8s;
}

[data-sal][data-sal-duration="1850"] {
    transition-duration: 1.85s;
}

[data-sal][data-sal-duration="1900"] {
    transition-duration: 1.9s;
}

[data-sal][data-sal-duration="1950"] {
    transition-duration: 1.95s;
}

[data-sal][data-sal-duration="2000"] {
    transition-duration: 2s;
}

[data-sal][data-sal-duration="2500"] {
    transition-duration: 2.5s;
}

[data-sal][data-sal-duration="3000"] {
    transition-duration: 3s;
}

[data-sal][data-sal-delay="50"] {
    transition-delay: 0.05s;
}

[data-sal][data-sal-delay="100"] {
    transition-delay: 0.1s;
}

[data-sal][data-sal-delay="150"] {
    transition-delay: 0.15s;
}

[data-sal][data-sal-delay="200"] {
    transition-delay: 0.2s;
}

[data-sal][data-sal-delay="250"] {
    transition-delay: 0.25s;
}

[data-sal][data-sal-delay="300"] {
    transition-delay: 0.3s;
}

[data-sal][data-sal-delay="350"] {
    transition-delay: 0.35s;
}

[data-sal][data-sal-delay="400"] {
    transition-delay: 0.4s;
}

[data-sal][data-sal-delay="450"] {
    transition-delay: 0.45s;
}

[data-sal][data-sal-delay="500"] {
    transition-delay: 0.5s;
}

[data-sal][data-sal-delay="550"] {
    transition-delay: 0.55s;
}

[data-sal][data-sal-delay="600"] {
    transition-delay: 0.6s;
}

[data-sal][data-sal-delay="650"] {
    transition-delay: 0.65s;
}

[data-sal][data-sal-delay="700"] {
    transition-delay: 0.7s;
}

[data-sal][data-sal-delay="750"] {
    transition-delay: 0.75s;
}

[data-sal][data-sal-delay="800"] {
    transition-delay: 0.8s;
}

[data-sal][data-sal-delay="850"] {
    transition-delay: 0.85s;
}

[data-sal][data-sal-delay="900"] {
    transition-delay: 0.9s;
}

[data-sal][data-sal-delay="950"] {
    transition-delay: 0.95s;
}

[data-sal][data-sal-delay="1000"] {
    transition-delay: 1s;
}

[data-sal][data-sal-easing=linear] {
    transition-timing-function: linear;
}

[data-sal][data-sal-easing=ease] {
    transition-timing-function: ease;
}

[data-sal][data-sal-easing=ease-in] {
    transition-timing-function: ease-in;
}

[data-sal][data-sal-easing=ease-out] {
    transition-timing-function: ease-out;
}

[data-sal][data-sal-easing=ease-in-out] {
    transition-timing-function: ease-in-out;
}

[data-sal][data-sal-easing=ease-in-cubic] {
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

[data-sal][data-sal-easing=ease-out-cubic] {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

[data-sal][data-sal-easing=ease-in-out-cubic] {
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-sal][data-sal-easing=ease-in-circ] {
    transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

[data-sal][data-sal-easing=ease-out-circ] {
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

[data-sal][data-sal-easing=ease-in-out-circ] {
    transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

[data-sal][data-sal-easing=ease-in-expo] {
    transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

[data-sal][data-sal-easing=ease-out-expo] {
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

[data-sal][data-sal-easing=ease-in-out-expo] {
    transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

[data-sal][data-sal-easing=ease-in-quad] {
    transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-sal][data-sal-easing=ease-out-quad] {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-sal][data-sal-easing=ease-in-out-quad] {
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-sal][data-sal-easing=ease-in-quart] {
    transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

[data-sal][data-sal-easing=ease-out-quart] {
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-sal][data-sal-easing=ease-in-out-quart] {
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

[data-sal][data-sal-easing=ease-in-quint] {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

[data-sal][data-sal-easing=ease-out-quint] {
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

[data-sal][data-sal-easing=ease-in-out-quint] {
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

[data-sal][data-sal-easing=ease-in-sine] {
    transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-sal][data-sal-easing=ease-out-sine] {
    transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-sal][data-sal-easing=ease-in-out-sine] {
    transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-sal][data-sal-easing=ease-in-back] {
    transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-sal][data-sal-easing=ease-out-back] {
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-sal][data-sal-easing=ease-in-out-back] {
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/**
  * Animations
  */
[data-sal|=fade] {
    opacity: 0;
    transition-property: opacity;
}

[data-sal|=fade].sal-animate,
body.sal-disabled [data-sal|=fade] {
    opacity: 1;
}

[data-sal|=slide] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-sal=slide-up] {
    transform: translateY(20%);
}

[data-sal=slide-down] {
    transform: translateY(-20%);
}

[data-sal=slide-left] {
    transform: translateX(20%);
}

[data-sal=slide-right] {
    transform: translateX(-20%);
}

[data-sal|=slide].sal-animate,
body.sal-disabled [data-sal|=slide] {
    opacity: 1;
    transform: none;
}

[data-sal|=zoom] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-sal=zoom-in] {
    transform: scale(0.5);
}

[data-sal=zoom-out] {
    transform: scale(1.1);
}

[data-sal|=zoom].sal-animate,
body.sal-disabled [data-sal|=zoom] {
    opacity: 1;
    transform: none;
}

[data-sal|=flip] {
    backface-visibility: hidden;
    transition-property: transform;
}

[data-sal=flip-left] {
    transform: perspective(2000px) rotateY(-91deg);
}

[data-sal=flip-right] {
    transform: perspective(2000px) rotateY(91deg);
}

[data-sal=flip-up] {
    transform: perspective(2000px) rotateX(-91deg);
}

[data-sal=flip-down] {
    transform: perspective(2000px) rotateX(91deg);
}

[data-sal|=flip].sal-animate,
body.sal-disabled [data-sal|=flip] {
    transform: none;
}

/**Sal Css Close**/
/**== Header Css Open ==**/
.header .stellarnav {
    position: static;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stellarnav .menu-toggle span.bars span {
    background: var(--color-primary);
}

.header .logo a img {
    max-height: 70px;
    object-fit: contain;
}

.header.header-sticky {
    transition: all 0.5s ease-in;
    max-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgb(255 255 255 / 5%) 100%);
    width: 100%;
    animation: headerSticky 0.95s ease forwards;
    z-index: 9999;
    padding: 10px 0;
}

.header.header-sticky.sticky {
    background-color: #ffffff;
    animation: headerSticky 0.95s ease forwards;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.header.header-sticky.sticky .logo a {
    height: 80px;
    line-height: 80px;
}

.stellarnav>ul>li {
    position: static;
}

.stellarnav li a {
    color: var(--color-heading);
    font-weight: 500;
}

.stellarnav>ul>li>a {
    padding: 20px;
}

@media(min-width:992px) {
    .stellarnav>ul>li>a {
        position: relative;
    }

    .stellarnav li a:hover,
    .stellarnav li a.active {
        color: var(--color-primary);
        position: relative;
    }

    .stellarnav ul>li>a:before {
        content: "";
        position: absolute;
        top: 0;
        left: 15%;
        margin: auto;
        background-color: var(--color-primary);
        height: 3px;
        width: 70%;
        transform-origin: right center;
        -webkit-transform-origin: right center;
        -webkit-transform: scale(0, 1);
        -khtml-transform: scale(0, 1);
        -moz-transform: scale(0, 1);
        -ms-transform: scale(0, 1);
        -o-transform: scale(0, 1);
        transform: scale(0, 1);
        -webkit-transition: transform .55s cubic-bezier(.37, .31, .2, .85);
        -khtml-transition: transform 0.55s cubic-bezier(0.37, 0.31, 0.2, 0.85);
        -moz-transition: transform .55s cubic-bezier(.37, .31, .2, .85);
        -ms-transition: transform .55s cubic-bezier(.37, .31, .2, .85);
        -o-transition: transform .55s cubic-bezier(.37, .31, .2, .85);
        transition: transform .55s cubic-bezier(.37, .31, .2, .85);
    }

    .stellarnav li a:hover:before,
    .stellarnav li a.active:before {
        transform-origin: left center;
        -khtml-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    .stellarnav li.has-sub>a:after {
        border-top: 6px solid;
    }
	.stellarnav ul ul {
		background: #fff;
		box-shadow: 0 3px 25px 0 rgba(43, 52, 59, .1), 0 0 0 rgba(43, 52, 59, .1) inset;
	}
    .stellarnav ul ul.package-menu {
        background: #fff;
        box-shadow: 0 3px 25px 0 rgba(43, 52, 59, .1), 0 0 0 rgba(43, 52, 59, .1) inset;
        left: 50%;
        z-index: 999;
        max-width: 1140px;
        width: 100%;
        margin: auto;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
    }

    .stellarnav ul li.has-sub:hover ul.package-menu {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 30px;
    }

    .stellarnav ul ul li {
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
    }

    .stellarnav.desktop ul ul li a {
        font-size: 15px;
    }
}


.stellarnav.desktop ul ul li a:before {
    width: 100%;
    left: 0;
    top: 100%;
}

.stellarnav.desktop ul ul li:last-child {
    border-bottom: none;
}

.stellarnav.mobile.left>ul,
.stellarnav.mobile ul ul {
    background: var(--color-secondary);
}

.stellarnav.mobile a {
    color: var(--color-white);
}

.stellarnav.mobile ul li a {
    border-bottom: 1px solid #ffffffb6;
}

.stellarnav .icon-close:before,
.stellarnav .icon-close:after,
.stellarnav a.dd-toggle .icon-plus:after,
.stellarnav a.dd-toggle .icon-plus:before {
    border-color: var(--color-white);
}

@keyframes continuous-animation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.search-bar a {
    color: var(--color-white);
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 14px;
}

.search-bar a i {
    color: inherit;
    Font-size: 12px;
}

@media(max-width:767px) {
    .stellarnav>ul>li {
        position: relative;
    }

    .search-bar a span {
        display: none;
        ;
    }

    .search-bar a {
        padding: 12px 20px;
    }

}

/* Ensure container is set to display flex */

/**== Header Css Close ==**/
/**== Footer Css Open ==**/
footer .main_footer {
    background-color: var(--color-footer);
    padding: 50px 0;
}

footer .main_footer .logo {
    margin-bottom: 25px;
}

footer .main_footer .logo img {
    width: 100%;
    max-width: 280px;
}

footer .main_footer ul.social_icons li {
    margin-right: 8px;
}

footer .main_footer h4 {
    color: var(--color-heading);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

footer .main_footer h4:before {
    content: "";
    background: var(--color-heading);
    width: 50px;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}

footer .main_footer ul li a {
    font-weight: 500;
}

footer .main_footer .contact_details p {
    font-weight: 500;
    ;
}

footer .main_footer .contact_details p i {
    margin-right: 10px;
    width: 16px;
}

footer .main_footer .contact_details p a:hover {
    color: var(--color-primary);
}

footer .secondary_footer {
    background-color: var(--color-footer2);
    padding: 20px 0 0;
}

footer .secondary_footer p {
    color: #ffffff;
    font-weight: 500;
    opacity: 0.8;
}

footer .secondary_footer p.link {
    text-align: right;
}

footer .secondary_footer p.link a:hover {
    color: var(--color-white);
}

@media (max-width: 767px) {
    footer .main_footer .social_icons {
        margin-bottom: 20px;
    }

    footer .secondary_footer p {
        text-align: center;
    }

    footer .secondary_footer p.link {
        text-align: center;
    }
}

/**== Footer Css Close ==**/
/**== Breadcrumb Css Open ==**/
.page_banner_top {
    height: 400px;
    padding: 180px 20px 60px;
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    margin-bottom: 60px;
    text-align: center;
}

section.page_banner_top:before {
    position: absolute;
    content: '';
    background: #00000033;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.page_banner_top .banner_text {
    position: relative;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 800px;
}

.page_banner_top h1 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-white);
}

@media(max-width:767px) {
    .page_banner_top {
        height: 250px;
        padding: 120px 20px 60px;
    }

    .page_banner_top h1 {
        font-size: 32px;
    }
}

.breadcrumb {
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    margin-right: 10px;
}

.breadcrumb li.active {
    font-weight: bold;
}


.breadcrumb li a {
    font-size: 16px;
}

.breadcrumb li a:hover {
    color: var(--color-primary)
}

.breadcrumb li a i {
    margin-right: 5px;
}


.breadcrumb>li+li:before {
    padding: 0 5px;
    content: "/";
    font-weight: 400;
}

/**== Breadcrumb Css Close ==**/

/**== Banner Css Close ==**/

.banner-video {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: top 20% center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    border: none;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

.banner-counter-overlay {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.banner-counter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
    max-width: 100%;
    //background: #00000080;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
    align-items: center;
    border-radius: 14px;
}

.banner-counter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.banner-counter-icon {
    font-size: 24px;
    margin-bottom: 5px;
}


.banner-counter-content p {
    font-size: 12px;
    margin: 0;
    letter-spacing: 1px;
    font-weight: 500;
}

.banner-counter-content p span {
    display: block;
}

@media(max-width:767px) {


    .banner-video {
        height: 400px;
        margin-top: 84px;
    }

    .banner-video iframe,
    .banner-video .video-bg {
        display: none;
    }


    .banner-counter-overlay {
        bottom: 10px;
    }

    .banner-counter-container {
        gap: 15px;
        background: transparent;
        padding: 0 10px;
    }

    .banner-counter-item {
        min-width: calc(50% - 30px);
    }

    .banner-counter-icon {
        font-size: 20px;
    }

    .banner-counter-content h3 {
        font-size: 22px;
    }

    .banner-counter-content p {
        font-size: 10px;
    }

}


/**== banner Css Close ==**/

/**== About Us Css Open ==**/
.about_us {
   // padding-top: 120px;
}

.inner-tite-section {
    max-width: 800px;
    margin: 0 auto 60px;
}


.icon_box_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.icon_box_top {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.icon_box_top:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.icon_img {
    margin: 0 auto 25px;

}

.icon_img img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.icon_box_top .icon_text h3 {
    margin-bottom: 10px;
    color: var(--color-secondary);
}


@media (max-width: 768px) {
    .about_us {
        padding-top: 40px;
    }

    .icon_box_wrapper {
        gap: 20px;
    }

    .icon_box_top {
        min-width: 100%;
    }
}

/**== About Us Css Close ==**/

/**== Destination Css Open ==**/
.destination_list {
    perspective: 1000px;
    margin-top: 60px;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    overflow: hidden;
}

.flip-card-front {
    position: relative;
    z-index: 2;
    transform: rotateY(0deg);
}

.flip-card-back {
    background: linear-gradient(0deg, var(--color-primary) 0%, var(--color-gradiant) 100%);
    color: var(--color-white);
    transform: rotateY(180deg);
    padding: 40px;
    top: 0;
    left: 0;
    text-align: left;
}

.flip-card-back h3 {
    margin: 0;
    padding: 10px 0;
    color: var(--color-white);
}

.flip-card-back p {
    margin: 10px 0;
    padding: 0;
}

.flip-card-back .btn {
    margin-top: 10px;
}

.flip-card-front .text_content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 5px 10px;

}

.flip-card-front .text_content h3 {
    margin: 0;
    color: var(--color-white);
    text-shadow: 4px 4px 10px #000000b3;
}

.flip-card-front img {
    height: 440px;
    width: 100%;
    object-fit: cover;
}

.flip-card-inner h3 {
    font-size: 36px;
}

@media (max-width:767px) {
    .flip-card-inner h3 {
        font-size: 30px;
    }
}

/**== Destination Css Close ==**/

/**== Activites Css Open ==**/

.activities-section {
    padding: 80px 0;
    background-color: #fff;
}


.activities-section h2 {
    text-align: center;
}

.slider-container {
    position: relative;
}

.activity-item {
    display: block;
    margin: 0 15px;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    transition: all 0.3s ease;
}

.activity-image {
    position: relative;
    height: 100%;
    width: 100%;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
}

.activity-content h4 {
    margin: 0;
    color: #fff;
    position: relative;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.activity-item:hover .activity-image img {
    transform: scale(1.05);
}

.activity-item:hover .activity-content {
    background: rgba(0, 0, 0, 0.7);
}

.activity-item:hover .activity-content h4 {
    transform: translateY(-5px);
}

.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 3;
}

.slick-prev {
    left: -25px;
}

.slick-next {
    right: -25px;
}

.slick-prev:hover,
.slick-next:hover {
    background: white;
    transform: scale(1.1);
    margin: 0;
}

.slick-prev:before,
.slick-next:before {
    font-size: 24px;
    color: #333;
    opacity: 1;
}


@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    .activities-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .activity-item {
        height: 250px;
        margin: 0 10px;
    }

    .activity-content {
        padding: 20px;
    }



    .slick-prev {
        left: -15px;
    }

    .slick-next {
        right: -15px;
    }

    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 20px;
    }
}

/**== Activites Css Close ==**/

/**== Process Css Open ==**/

.wave-process {
    padding: 80px 0;
    background: #f8fafc;
}


.process-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

.process-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.box-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gradiant) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
}

.box-content h4 {
    margin: 15px 0;

}


.step-number {
    display: inline-block;
    background: var(--color-secondary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
}

.wave-connector {
    width: 100px;
    margin: 0 -20px;
    position: relative;
    z-index: 1;
}

.wave-connector svg {
    width: 100%;
    height: 20px;
}

.process-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-box:hover .box-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.process-box:hover~.wave-connector path {
    stroke: #93c5fd;
    animation: waveDraw 1s ease-in-out;
}

@keyframes waveDraw {
    0% {
        stroke-dashoffset: 100;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 992px) {
    .process-container {
        flex-direction: column;
    }

    .process-box {
        width: 100%;
        max-width: 400px;
    }

    .wave-connector {
        width: 60px;
        height: 40px;
        margin: 10px auto;
        transform: rotate(90deg);
    }

}

/**== Process Css Close ==**/


/** testimonuial Css open**/
.testimonials_list .list_item {
    padding: 15px;
    ;
}

.testimonials_list .list_item .inner {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 1px 1.732px 20px 0 rgba(0, 0, 0, .08);
    padding: 35px;
    position: relative;
}

.testimonials_list .list_item p {
    margin-bottom: 25px;
}

.testimonials_list .list_item .testi-author {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.testimonials_list .list_item .testi-author img {
    width: 80px;
    height: 80px;
    padding: 4px;
    object-fit: contain;
    border-radius: 100%;
    border: 2px solid var(--color-secondary);
}

.testimonials_list .list_item .testi-info {
    overflow: hidden;
}

.testimonials_list .list_item .testi-info h6 {
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    color: #010f2e;
}

.testimonials_list .list_item .qt-img {
    bottom: 30px;
    position: absolute;
    right: 30px;
}

.testimonials_list .list_item .qt-img img {
    width: 70px;
    opacity: 0.4;
}

/** testimonuial Css Close**/
/** Blogs Css Open**/
.post-inner {
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.post-inner:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.post-inner figure {
    display: block;
    overflow: hidden;
    margin-bottom: 0px;
}

.post-inner img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.post-inner:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.post-inner .post-content {
    padding: 30px 20px;
    background: #fff;
}

.post-inner .post_date {
    display: flex;
    align-items: center;
}

.post-inner .post_date i {
    margin-right: 10px;
}

.post-inner h4:hover {
    color: var(--color-secondary);
}

/** Blogs Css Close**/

/** Search popup modal CSS open **/
.search-menu_modal {
    background-color: rgba(0, 0, 0, .8);
    color: #fff;
    z-index: 999999;
}

.search-menu_modal.fade .modal-dialog {
    width: 100%;
    max-width: 100%;
    margin: 0;
    transition: transform 0.5s ease-out, opacity 0.3s ease-out;
}

.search-menu_modal.fade.show .modal-dialog {
    animation: slideDown 0.5s ease-out forwards;
}

.modal.fade .modal-dialog {
    animation: slideUp 0.5s ease-out forwards;
}

.search-menu_modal .modal-content {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    border: 0
}

.search-menu_modal .modal-body {
    padding: 20% 15% 0
}

.search-menu_modal .modal-header {
    border-bottom: 0
}

.search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 50px;
    z-index: 2;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    -webkit-transition: all .9s ease-in-out 1.5s;
    transition: all .9s ease-in-out 1.5s;

}

.search-close .search-close-line {
    width: 100%;
    height: 3px;
    float: left;
    margin-bottom: 5px;
    background-color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.search-close .search-close-line:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.search-close .search-close-line:nth-child(2) {
    margin-top: -7px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.search-close:hover .search-close-line {
    background: #fff;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.search-menu_modal form select {
    background-color: transparent;
    color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    border: none;
    border-bottom: 1px solid;
}

.search-menu_modal form select option {
    background: #555555;
}

.search-menu_modal form select:hover,
.search-menu_modal form select:active {
    border: none;
    border-bottom: 1px solid var(--color-grey);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/** Search popup modal CSS Close **/


/**about us css starts here**/

.heading_title {
    text-align: center;
}

.heading_title p {
    width: 75%;
    margin: 0 auto;
}

.arrow-list {
    display: flex;
    justify-content: center;
    width: 100%;
    list-style: none;
    padding-left: 0;
    gap: 10px !important;
}

.arrow-list li {
    position: relative;
    padding-left: 30px;
    color: #fff;
}

.arrow-list li:first-child {

    padding-left: 0;
}

.arrow-list li:first-child::before {
    content: '';
}

.arrow-list li::before {
    content: '>>';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #ffffff;
}

.arrow-list li::marker {
    content: '';
    display: none;
}

.arrow-list li a:hover {
    color: var(--color-primary);
}

@media (max-width:767px) {
    .arrow-list {
        padding: 0;
        margin: 0;
        gap: 0px !important;
    }

    .arrow-list li:first-child {
        position: relative;
        padding-left: 0;
    }

}

/**counter css starts here**/
.counter_banner {
    height: 300px;
    padding: 80px 0px;
    display: flex;
    justify-content: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.counter_banner h2,
.counter_banner p {
    color: white;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
}

.counter_banner p {
    width: 75%;
}

.counter-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 40px;
    margin-top: -70px;
}

@media (max-width: 767px) {
    .counter-container {
        grid-template-columns: 2fr;
    }

    .about-img {
        width: 50%;
    }

    .counter_banner {
        padding: 30px 0px;
    }

    .counter-container {
        padding: 0px 10px 60px 10px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 10px;
    }

    .counter_banner p {
        width: 90%;
    }

    .heading_title p {
        width: 95%;
    }

}

.counter-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.counter-item>div {
    display: flex;
    justify-content: center;
}

.counter-item img {
    width: 30%;
}

.counter-value,
.counter-title {
    display: flex;
    justify-content: center;
    text-align: center;
}

.counter-value {
    font-size: 36px;
    padding: 8px 0px;
    font-weight: 600;
    color: var(--color-primary);
}

.counter-title {
    margin: 0;
}

.content-center {
    display: flex;
    align-items: center;
}

.service-item {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.service-item:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.service-item img {
    height: 100px;
}

.service-item h3 {
    margin: 0;
    padding: 10px 0px;
}

.service-item p {
    margin-bottom: 0;
}

.newsletter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.newsletter>div {
    width: 100%;
}

.newsletter input {
    height: 50px;
    padding: 10px 30px;
    border-radius: 8px;
    border: 1px solid grey;
}

.col_center {
    display: flex;
    align-items: center;
}

/**our teams css**/
.team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .team {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(1, 1fr);
    }
}

.member {
    text-align: center;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.member-img {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.member:hover {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.member img {
    transition: transform 0.3s ease-in-out;
    height: 330px;
    width: 100%;
    object-fit: cover;
}

.member:hover img {
    transform: scale(1.05);
}

.member h3 {
    margin: 0;
    padding: 10px 0px;
    font-weight: 500;
}

/**our guide**/
.guide-member {
    position: relative;
}

.member-name {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    text-align: left;
}

.guide-member h3 {
    font-size: 20px;
    font-weight: 500;
    color: white;
    padding-left: 20px;
}


/**contact us css here**/
.btn-submit {
    border: none;
}

.chat ul {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 20px;
}

.chat h5 {
    margin: 0;
    padding: 10px 0px;
}

.chat ul li a i {
    font-size: 32px;
    margin-right: 5px;
}

.chat ul li a:hover {
    cursor: pointer;
}

.contact-details {
    margin-bottom: 10px;
}

.contact-details h4 {
    margin: 0;
    padding: 10px 0px;
}

.contact-details ul li {
    margin-bottom: 3px;
    gap: 10px;
}

.contact_details li a i {
    margin-right: 5px;
}

.map {
    height: 355px;
    width: 100%;
}



.office-image {
    text-align: center;
    margin-bottom: 15px;
}

.flag-icon {
    height: 50px;
    object-fit: Contain;
}

.office-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.office-info p {
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
    display: inline-flex;
}

.office-info i {
    text-decoration: none;
    margin-right: 5px;
    margin-top: 3px;
    color: var(--color-primary);
}

/**blogs css starts**/
.search-bar-blogs {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.search-bar-blogs input {
    width: 100%;
    padding: 5px 10px;
    margin-right: 55px;
    border-radius: 10px 0px 0px 10px;
    border: 1px solid #c7c7c7;
}

.search-bar-blogs input:focus {
    border-color: #b9b9b9;
    outline: none;
}

.search-bar-blogs input:hover {
    border-color: #b9b9b9;
}

.search-bar-blogs a {
    display: flex;
    color: white;
    align-items: center;
    background-color: var(--color-primary);
    position: absolute;
    right: 0;
    padding: 0px 20px;
    height: 100%;
    border-radius: 0px 10px 10px 0px;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.search-bar-blogs a:hover {
    background-color: var(--color-secondary);
}

.search-container {
    display: flex;
    border-radius: 10px;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.blogs_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    gap: 20px;
}

@media (max-width: 767px) {
    .blogs_list {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(auto, 1fr);
        row-gap: 40px;
    }

    .search-bar-blogs input {
        padding: 8px 20px;
    }
}

.tags {
    margin-top: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.tag-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    gap: 10px;
    margin-top: 30px;
}

.tag-items li {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    border-radius: 10px;
    background-color: #F3F6FD;
    transition: all 0.3s ease-in-out;
}

.tag-items li a,
.category-items li a {
    color: var(--color-heading);
    transition: all 0.3s ease-in-out;
}

.tag-items li:hover,
.category-items li:hover {
    background-color: var(--color-primary);
}

.tag-items li:hover a,
.category-items li:hover a {
    color: white !important;
}

.category {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.category-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    gap: 10px;
    margin-top: 30px;
}

.category-items li {
    padding: 10px 0px;
    border-radius: 10px;
    background-color: #F3F6FD;
    transition: all 0.3s ease-in-out;
    padding-left: 20px;
}

.list {
    display: flex;
    justify-content: space-between;
}

.number {
    display: flex;
    align-items: center;
}

.list-unstyled {
    transition: all 0.3s ease-in-out;
}

.list-unstyled li a {
    padding: 5px 0px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.list-unstyled li {
    border-bottom: 1px dashed rgb(192, 192, 192);
    padding: 5px 0px 5px 0px;
    transition: all 300ms ease-in-out 0s;
}

.list-unstyled li:hover {
    transition: all 400ms ease-in-out 0s;
}

li:hover .list,
li:hover .list a,
li:hover .list p,
li:hover .list .list-number {
    color: var(--color-primary);
}

.list-unstyled li:last-child {
    border-bottom: none;
}

/**pagination css here**/
.pagination-area {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0px;
}

.pagination {
    gap: 10px;
}

.page-item {
    padding: 3px 10px;
    border: 1px solid rgb(145, 145, 145);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.page-item a {
    color: rgb(145, 145, 145);
    transition: all 0.5s ease-in-out;
}

.page-item:hover {
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    cursor: pointer;
}

.page-item:hover a,
.page-item:hover span {
    color: white;
    cursor: pointer;
}

@media (max-width: 767px) {
    .pagination-area {
        margin: 60px 0px 50px 0px;
    }

    .link p,
    .number span {
        font-size: 16px;
    }
}

/** Active state styling **/
.page-item.active {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.page-item.active a {
    color: white !important;
}


/**single blogs section css here**/
.blog-img {
    margin-bottom: 20px;
}

.blog-img img {
    border-radius: 10px;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.calender i {
    margin-right: 5px;
}

.blog-container h3 {
    margin: 20px 0px 10px 0px;
}

.blog-container ul {
    list-style-type: disc;
    margin-left: 20px;
}

.blog-container ul li::marker {
    font-size: 24px;
    color: #4e4e4e;
}

.recent-blog-container h3 {
    margin-bottom: 40px;
}

.blog-item {
    padding-bottom: 15px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px dashed var(--color-secondary);
}

.blog-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.blog-item figure {
    width: 200px;
    margin: 0 0 10px;
}

.blog-item figure img {
    width: 100%;
    display: block;
    border-radius: 5px;
    max-height: 130px;
    object-fit: cover;
}

.popular-blog-content {
    flex-grow: 1;
}

.popular-blog-content h6 {
    font-size: 14px;
    margin: 0;
}

.popular-blog-content p {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-primary);
    margin: 0;
    margin-top: 5px;
}

.popular-blog-content h6:hover {
    color: var(--color-gradiant);
    cursor: pointer;
}

@media (max-width:767px) {
    .blog-img {
        margin-bottom: 0px;
    }

    .content {
        padding: 20px 0px 0px 0px;
    }
}


/*** Single Destination Css Open***/
.tour_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    border-bottom: 2px solid var(--color-secondary);
    overflow: hidden;
    overflow-x: scroll;
    scrollbar-width: none;
    column-gap: 10px;
}

.tour_list_items {
    margin: 0;
    padding: 10px 20px;
    cursor: pointer;
    background-color: var(--color-primary);
    border-radius: 5px 5px 0 0;
    transition: background-color 0.3s, color 0.3s;
}

.tour_list_items a {
    text-decoration: none;
    color: var(--color-white);
    display: block;
}

.tour_list_items.active,
.tour_list_items:not(.active):hover {
    background-color: var(--color-secondary) !important;
}

.tour_list_items.active a,
.tour_list_items:hover a {
    color: white;
}

.tour_list_items:not(.active):hover {
    background-color: #e9ecef;
}


.tour-info {
    margin-top: 25px;
    padding-top: 13px;
    border-bottom: 1px dashed var(--color-secondary);
    padding-bottom: 13px;

}

.tour_info_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tour-info_item {
    flex: 1 1 calc(25% - 10px);
    box-sizing: border-box;
}

.tour-info_icon {
    font-size: 30px;
    padding-right: 20px;
}

.tour-info_text h5 {
    font-weight: 500;
    margin: 5px 0;
}

.tour-info_text p {
    font-size: 14px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .tour-info_item {
        flex: 1 1 calc(50% - 10px);
    }
}

.accordion .accordion-item {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion button {
    margin: 0;
    outline: none !important;
    background: var(--color-secondary) !important;
    color: var(--color-white) !important;
}

.accordion button:focus,
.accordion button:hover {
    transform: none;
    box-shadow: none !important;
    text-shadow: none;
    outline: none !important;
}
.accordion-button::after {
     filter: brightness(0) invert(1);
    
}
.accordion-button:not(.collapsed)::after {
   transform: rotate(0deg);
    
}



.itinery_list li {
    padding: 10px 15px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-left: 5px solid #2965aa;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.itinery_list li:hover {
    background-color: #e9f1f7;
    cursor: pointer;
}

.itinery_list li strong {
    color: #2965aa;
    font-weight: bold;
}


#cost {
    display: flex;
    justify-content: space-between;

}

#cost .section {
    width: 48%;
}

#cost .section.included {
    border-right: 1px dashed var(--color-secondary);
}

#cost .section ul {
    list-style: none;
    padding-left: 0;
}

#cost .section li {
    display: flex;
    align-items: center;
    padding: 5px 0;
    font-size: 14px;
    line-height: 1.6;
}

#cost .section li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 15px;
    color: #28a745;
}

#cost .section.excluded li::before {
    content: "\f00d";
    color: #dc3545;
}

#cost .section li p {
    margin: 0;
}

@media(max-width:767px) {
    #cost {
        display: block;
    }

    #cost .section {
        width: 100%;
    }

    #cost .section.included {
        border-bottom: 1px dashed var(--color-secondary);
        border-right: none;
        margin-bottom: 20px;
        padding-bottom: 15px;

    }
}


#gallery {
    padding: 20px;
}

.gallery_items {
    display: flex;
}

.gallery_items a {
    box-sizing: border-box;
    width: 25%;
    padding: 5px;
}

.gallery_items img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery_items.image-list img {
    height: 150px;
    object-fit: cover;
}


@media (max-width: 992px) {
    .gallery_items a {
        width: 33.33%;
    }
}

@media (max-width: 768px) {
    .gallery_items a {
        width: 50%;
    }
}

.tour_enquiry_form {
    text-align: center;
}

.tour_enquiry_form label {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    padding: 10px;
    margin-bottom: 10px;
}

.tour_enquiry_form label input,
.tour_enquiry_form label textarea {
    border: none;
    padding: 0 10px;
    background: #fff;
    flex: 1;
    outline: none;
    width: 100%;
}

.tour_enquiry_form .searchbox-icon {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.tour_enquiry_form .searchbox-icon i {
    font-size: 18px;
    color: #333;
    margin-right: 8px;
}

.tour_enquiry_form label.message {
    align-items: start;
}

.tour_enquiry {
    position: relative;
    padding: 40px 30px;
    background-image: url(../img/whyus.jpg);
    background-size: cover;
    background-position: center center;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.tour_enquiry:before {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(9, 16, 13, 0.40);
}

.tour_enquiry .inner_content {
    position: relative;
    z-index: 5;
}

.tour_enquiry h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.tour_enquiry ul li {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 18px;
    margin: 5px 0;
}

.tour_enquiry ul li i {
    display: inline-block;
    margin-right: 10px;
}

.tour_items {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
    transition: box-shadow 0.3s ease;
    /* Add transition for box-shadow */
}

.tour_items a {
    display: block;
    text-decoration: none;
    position: relative;
}

.tour_items a:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.tour_items_image {
    background-size: cover;
    background-position: center;
    height: 380px;
    width: 100%;
    transition: transform 0.3s ease;
}

.tour_items_content {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 5px 10px;
    color: #fff;
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.tour_items:hover .tour_items_image {
    transform: scale(1.1);
}

.tour_items:hover {
    box-shadow: 4px 14px 28px rgba(0, 0, 0, 0.1);
}

.tour_items .name {
    margin-bottom: 10px;
    color: var(--color-white);
    text-shadow: 4px 4px 10px #000000b3;
}

.tour_items p {
    font-size: 15px;
    color: var(--color-white);
    margin-bottom: 5px;
    text-shadow: 4px 4px 10px #000000b3;

}

.tour_items p i {
    margin-right: 10px;
}

.tour_items .price {
    font-size: 16px;
}

/*** Single Destination Css Close***/

/*** Tour Css Open***/

form.tour_form label {
    margin-bottom: 20px;
    font-size: 22px;
    display: block;
}

form.tour_form select {
    vertical-align: middle;
    display: inline-block;
    max-width: 100%;
    width: 100%;
    padding: 0 30px 0 15px;
    height: 50px;
    border-radius: 10px;
}

form.tour_form div {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
    padding-left: 0;
}

form.tour_form div:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

#price-slider {
    margin: 10px 0;
    padding-bottom: 0;
}

#price-slider div {
    padding-bottom: 0;
}

.ui-slider {
    position: relative;
    text-align: left;
}

.ui-slider-range {
    position: absolute;
    height: 100%;
    background: #1a9ed9;
    border-radius: 4px;
}

.ui-slider-handle {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1a9ed9;
    border: 2px solid #fff;
    cursor: pointer;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -7px;
}

.ui-slider-vertical .ui-slider-handle {
    left: -7px;
}

form.tour_form #price {
    border: none;
}

.tour_form {
    display: block;
    padding: 30px;
}

#toggle-filter {
    display: none;
    font-size: 16px;
    background: var(--color-secondary);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    #toggle-filter {
        display: block;
    }

    .tour_form {
        display: none;

    }
}

/*** Tour Css Close***/


.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    align-items: center;
}


.partner-logo {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    transition: all 0.3s ease-in-out;
}

.partner-item:hover .partner-logo {

    transform: scale(1.05);
}

@media (max-width: 992px) {
    .partners-grid {
        gap: 20px;
    }
}


/** Tripadvisor css open **/
#CDSRATINGWIDGET111 {
    margin: 20px auto;
}

.cdsROW.narrow {
    width: 200px !important;
}

/** Tripadvisor css Close **/

/** Our Fleet Css Open **/
.gallery {
    columns: 3;
    column-gap: 20px;
    padding: 10px;
}

.gallery a {
    width: 100%;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.gallery a img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: scale(1);
    backface-visibility: hidden;
}

.gallery a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: inherit;
}

.gallery a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gallery a:hover img {
    transform: scale(1.03);
}

.gallery a:hover::before {
    opacity: 1;
}


@media (max-width: 768px) {
    .gallery {
        columns: 2;
        column-gap: 15px;
    }
    
    .gallery a {
        margin-bottom: 12px;
    }
}


/** Our Fleet Css Close **/

/** Banner Search Css Open **/
.banner-search-area{
	position:absolute;
	top: 60%;
    left: 0;
    width: 100%;
    z-index: 4;
	text-align:center;
}

.banner-search-box {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.banner-search-box input {
    width: 100%;
    padding: 18px 24px;
    padding-right: 60px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.2s ease-out;
    height: 56px;
    background-color: #ffffff;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.banner-search-box input::placeholder {
    color: #999;
    font-weight: 300;
}

.banner-search-box input:focus {
    outline: none;
    border-color: rgba(74, 108, 247, 0.4);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.08),
        0 0 0 3px rgba(74, 108, 247, 0.1);
}

.banner-search-box .search-button {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 44px;
    height: 44px;
    margin:0;
    padding:0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.banner-search-box .search-button:hover {
    background: var(--color-secondary);
    transform: scale(1.05);
}

.banner-search-box .search-button:active {
    transform: scale(0.98);
}

.search-results {
    width: 100%;
    background: #fff;
    z-index: 1000;
    max-height: 500px;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.08),
        0 0 0 3px rgba(74, 108, 247, 0.1);

}

.search_tour_list {
    display: flex;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    align-items: center;
    transition: background 0.3s;
}

.search_tour_list:hover {
    background: var(--color-light-blue);
}

.search_tour_list img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 6px;
}
.search-content{
	text-align:left;
}


.search_tour_list strong {
    display: block;
    font-size: 16px;
    color: var(--color-heading);
}

.search_tour_list small {
    font-size: 13px;
    color: var(--color-text);
}

.search_tour_list:hover strong{
    color: var(--color-primary);
}

@media(max-width:767px){
    .banner-search-area{
        top:40%;
    }
}
/** Banner Search Css Close **/