/**
*   Eiika Travel Expenditions
*   Main Css
*/


/*  Common */
/* --------------------------------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 248.3px;
}

body {
    /* color: #3E4559; */
    background-color: #F3F3F3;
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    font-weight: 400;
    /* color: rgb(51, 45, 45); */
    color: rgb(19, 17, 17);
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}


.text-black {
    color: #000 !important;
}


/*  Google recaptcha badge  */
/* --------------------------------------------------------------------------- */
.grecaptcha-badge {
    z-index: 4;
}

/* .grecaptcha-badge {
    opacity: 0.3;
    transition: opacity 0.3s;
}

.grecaptcha-badge:hover {
    opacity: 1;
} */



/*  Chatbox  */
/* --------------------------------------------------------------------------- */


/*  */

#chatbox-bot .form-control:focus {
    box-shadow: inset 0px 0px 0px 1px transparent;
}

.chat-toggle-btn-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

#chatbox-bot {
    border-radius: 15px;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 26rem;
    flex-direction: column;
    z-index: 1033;
    /* Initial hidden state */
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s;
}

#chatbox-bot.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}


/*  Forms  */
/* --------------------------------------------------------------------------- */
.forms-style-one .form-label,
.forms-style-one .form-control {
    color: #000;
    font-size: 17px;
}

.forms-style-one .form-control {
    border-radius: 0;
    border-color: rgba(29, 28, 28, 0.4);
}

.forms-style-one .btn {
    border-radius: 0;
}



/*   Our Promise Page  */
/* --------------------------------------------------------------------------- */


#our_promise_section {
    background-image: url('../assets/images/7.webp');
    height: 300px;
}

#our_promise_section .mask {
    background-color: rgba(0, 0, 0, .8);
}


.our-promise-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.our-promise-img-wrap .about-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.our-promise-img-wrap .shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #efefef;
    /* #F3F3F3;*/
    border: 0;
    mix-blend-mode: screen;
}

@media (max-width:991px) {
    .our-promise-img-wrap {
        display: none
    }
}



/*   Fancy baloons  */
/* --------------------------------------------------------------------------- */

.fancy-balloon .display-5 {
    font-weight: 600;
}

.fancy-border-radius-1 {
    border-radius: 29% 79% 56% 44% / 43% 67% 33% 57%;
    width: 390px;
    height: 220px;
    background: #f6c102;
    background: -webkit-linear-gradient(to bottom right,
            #f6c102,
            #ffe496);
    background: linear-gradient(to bottom right,
            #f6c102,
            #ffe496);
}

.fancy-border-radius-2 {
    border-radius: 70% 30% 33% 67% / 27% 66% 34% 73%;

    width: 250px;
    height: 400px;
    background: #f793b3;
    background: -webkit-linear-gradient(to bottom right,
            #f793b3,
            #fcbfd1);
    background: linear-gradient(to bottom right,
            #f793b3,
            #fcbfd1);
}

.fancy-border-radius-3 {
    border-radius: 27% 73% 42% 58% / 71% 74% 26% 29%;

    width: 300px;
    height: 330px;
    background: #76b8cd;
    background: -webkit-linear-gradient(to bottom right,
            #76b8cd,
            #b5def2);
    background: linear-gradient(to bottom right,
            #76b8cd,
            #b5def2);
}




/*   To top  */
/* --------------------------------------------------------------------------- */

#btn-back-to-top {
    z-index: 4;
    position: fixed;
    bottom: 80px;
    right: 20px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}





/*   Text  */
/* --------------------------------------------------------------------------- */

.text-multi-shadow {
    text-shadow: 1px 1px 2px #000, -1px -1px 2px #666;
}

.text-fire {
    color: #ff4500;
    text-shadow: 2px 2px 8px #ff6347, 4px 4px 16px #ff4500;
}

.text-retro {
    text-shadow: -3px 3px 0 #ff0, -6px 6px 0 #f0f;
}

.text-blur {
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
}

.text-embossed {
    text-shadow: 1px 1px 0px #aaa, 2px 2px 0px #888;
}

.text-gradient-shadow {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.text-layered {
    text-shadow: -2px -2px 0 #ff4500, 2px 2px 0 #00bcd4;
}

.text-frosted {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.text-smudge {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3), -2px -2px 5px rgba(0, 0, 0, 0.3);
}

.text-vintage {
    color: #8b4513;
    text-shadow: 2px 2px 4px #000, -2px -2px 4px #666;
}

.text-smoky {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
}

.text-fire-ice {
    text-shadow: 0 0 5px #ff4500, 0 0 10px #ff6347, 0 0 15px #00bcd4, 0 0 20px #00ffff;
}






/*   Sections  */
/* --------------------------------------------------------------------------- */

.section-title {
    position: relative;
    margin-bottom: 14px;
}



/*   Underline  */
/* --------------------------------------------------------------------------- */

.half-underline {
    position: relative;
    display: inline-block;
}

.half-underline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 25%;
    height: 2px;
    /* thickness of the underline */
    background: #dac406;
}



/*   Font Sizes  */
/* --------------------------------------------------------------------------- */

.fs-1-5 {
    font-size: 1.5em;
}

.fs-10 {
    font-size: 0.625em;
}

.fs-11 {
    font-size: 0.6875em;
}

.fs-12 {
    font-size: 0.75em;
}

.fs-13 {
    font-size: 0.8125em;
}

.fs-14 {
    font-size: 0.875em;
}

.fs-15 {
    font-size: 0.9375em;
}

.fs-16 {
    font-size: 1em;
}

.fs-17 {
    font-size: 1.0625em;
}

.fs-18 {
    font-size: 1.125em;
}

.fs-19 {
    font-size: 1.1875em;
}

.fs-20 {
    font-size: 1.25em;
}

.fs-21 {

    font-size: 1.31em;
}

.fs-22 {
    font-size: 1.37em;
}

.fs-23 {
    font-size: 1.43em;
}

.fs-24 {
    font-size: 1.5em;
}

.fs-25 {
    font-size: 1.6em;
}

.fs-28 {
    font-size: 1.75em;
}

.fs-29 {
    font-size: 1.8em;
}

.fs-30 {
    font-size: 1.9em;
}

.fs-40 {
    font-size: 2.5em;
}

.fs-42 {
    font-size: 2.6em;
}

.fs-45 {
    font-size: 2.812em;
}

.fs-46 {
    font-size: 2.875em;
}



/*  Navbar */
/* --------------------------------------------------------------------------- */

#mainNavBar {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
    z-index: 10;
}

#mainNavBar.scrolled {
    /* background: #0077BE; */
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

#mainNavBar.scrolled #topJumbotron {
    visibility: hidden;
    opacity: 0;
    height: 0px;
}

#topJumbotron .top_bar_right a {
    border: 1px solid #fff;
    color: #fff;
    transition: .5s;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#topJumbotron .top_bar_right a i {
    font-size: 14px;
}

#topJumbotron .top_bar_right a:hover {
    background-color: rgb(20, 164, 77);
}



#mainNavBar #navbarContent ul li .nav-link {
    color: #000;
    text-transform: uppercase;
    position: relative;
}


#mainNavBar #navbarContent #navigationContent li .nav-link {
    padding: 0 25px;
    font-weight: 600;
    font-size: 16px;
}

#mainNavBar #navbarContent #navigationContent li .nav-link:hover {
    color: rgb(0, 255, 255);
}


#mainNavBar #navbarContent #navigationContent>li>a.active {
    color: rgb(255, 255, 255);
    text-decoration: underline;
    text-underline-offset: 5px;
}


#mainNavBar #navbarContent #menuSocialContent li .nav-link {
    padding: 0 10px;
}

#mainNavBar #navbarContent #menuSocialContent li .nav-link i {
    font-size: 1.2em;
}



/*  Colors */
/* --------------------------------------------------------------------------- */

.text-red {
    color: #fc0000;
}

.bg-red {
    background-color: #fc0000;
}



/*  Heights */
/* --------------------------------------------------------------------------- */


.mh-400px {
    min-height: 400px;
}

.mh-465px {
    min-height: 465px;
}

.h-75px {
    height: 75px;
}


.h-100px {
    height: 100px;
}

.h-150px {
    height: 150px;
}

.h-175px {
    height: 175px;
}

.h-200px {
    height: 200px;
}

.h-250px {
    height: 250px;
}

.h-275px {
    height: 275px;
}

.h-300px {
    height: 300px;
}

.h-350px {
    height: 350px;
}

.h-375px {
    height: 375px;
}

.h-400px {
    height: 400px;
}

.h-425px {
    height: 425px;
}

.h-450px {
    height: 450px;
}

.h-465px {
    height: 465px;
}

.h-475px {
    height: 475px;
}

.h-500px {
    height: 500px;
}

.h-550px {
    height: 550px;
}

.h-575px {
    height: 575px;
}

.h-600px {
    height: 600px;
}

.h-650px {
    height: 600px;
}

.h-700px {
    height: 700px;
}

.h-750px {
    height: 750px;
}

.h-800px {
    height: 800px;
}

.h-850px {
    height: 850px;
}

.h-900px {
    height: 900px;
}



/*  Parallax */
/* --------------------------------------------------------------------------- */

.parallax-window {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}



/*  Google translate */
/* --------------------------------------------------------------------------- */

.goog-te-spinner-pos,
.goog-te-spinner {
    display: none !important;
}

.goog-te-gadget img {
    display: none !important;
}

body>.skiptranslate {
    display: none;
}

#google_translate_element select {
    background-color: #f6edfd;
    color: #383ffa;
    border: none;
    border-radius: 50rem;
    /* padding: 6px 8px; */
    padding: 4.5px 12px 3.68px 12px;
    outline: none;
    transition: all .1s linear;
    font-size: .775rem;
    line-height: 1.5
}

.goog-te-banner-frame {
    display: none !important;
}

/* .goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
} */


/*  Owl carousel */
/* --------------------------------------------------------------------------- */



/*  Blog Page */
/* --------------------------------------------------------------------------- */



#blog-articles-carousel .item .card .bg-image img {
    aspect-ratio: 16 / 9;
    /* Adjust the ratio as needed */
    width: 100%;
    /* Ensure full width */
    object-fit: cover;
    /* Prevent distortion */
}


#blog-articles-listing .owl-stage {
    margin-top: 20px;
    margin-bottom: 20px;
    overflow: visible;
}

/* Modal Customization */
#blogDetailsModal .modal-dialog-scrollable .modal-content {
    max-height: 90vh;
    /* Ensures modal doesn't exceed viewport */
}

#blogDetailsModal .blog-header {
    position: relative;
    text-align: center;
    color: white;
}

#blogDetailsModal .blog-header img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

#blogDetailsModal .blog-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 8px 0 0;
}

#blogDetailsModal .blog-title {
    font-size: 24px;
    font-weight: bold;
}

#blogDetailsModal .blog-content {
    padding: 20px;
    overflow-y: auto;
    max-height: calc(100% - 300px);
}

@media (max-width: 768px) {
    #blogDetailsModal .modal-dialog {
        max-width: 95%;
    }
}



/*  Home Page */
/* --------------------------------------------------------------------------- */

/* .slider-container {
    position: relative;
}

.owl-carousel .item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.owl-dots {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.owl-dot span {
    width: 12px;
    height: 12px;
    background: white !important;
    margin: 5px 0;
    display: block;
    border-radius: 50%;
}

.owl-dot.active span {
    background: red !important;
} */


#home_slider_section .owl-carousel {
    position: relative;
    width: 100% !important;
    height: 75vh;
    overflow: hidden;
}

#home_slider_section .owl-carousel .item {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: white;
}

#home_slider_section .owl-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

#home_slider_section .owl-carousel .owl-dots .owl-dot {
    margin: 5px 0;
    display: block;
}

#home_slider_section .owl-carousel .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.5);
    display: block;
    border-radius: 50%;
}

#home_slider_section .owl-carousel .owl-dots .owl-dot.active span {
    background: white;
}

.animate__animated.animate__delay-05s {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}


#home_slider_section .mask {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 107, 0.4), rgba(0, 0, 0, 0.4));
}

#home_slider_section .slider-text {
    /* position: absolute; */
    /* top: 25%; */
    text-align: start;
    color: #fff;
    /* opacity: 0; */
    width: 75%;
    opacity: 0;
    /* Initially hidden */
    visibility: hidden;
    /* Ensure it's invisible until the animation starts */
}

#home_slider_section .owl-item.active .slider-text {
    visibility: visible;
    /* Make visible once animation starts */
    opacity: 1;
    /* Make sure opacity is 1 once it's shown */
}

.slide__text-heading {
    font-size: 4em;
    font-weight: 800;
}

.slider__btn_book {
    font-size: 1.2em;
}

.slider__btn_book:hover {
    color: rgb(228, 161, 27);
}

/* .slide__text-desc {
    font-size: 1.5em;
    font-weight: 400;
    line-height: 1.44;
    font-style: italic;
} */




/*  About Page */
/* --------------------------------------------------------------------------- */


.about-video-and-img .video-wrapper {
    position: relative;
    min-width: 205px;
    /*305px*/
    z-index: 1;
    top: 20%;
}

@media (max-width:991px) {
    .about-video-and-img .video-wrapper {
        top: 0;

    }
}

@media (max-width:1199px) {
    .about-video-and-img .video-wrapper {
        min-width: unset
    }
}

.about-video-and-img .video-wrapper img {
    border-radius: 50px
}

@media (max-width:1199px) {
    .about-video-and-img .video-wrapper img {
        width: 100%
    }
}

.about-video-and-img .video-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background-color: rgba(16, 12, 8, .5)
}

.about-video-and-img .video-wrapper .video-area {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer
}

.about-video-and-img .video-wrapper .video-area .icon {
    position: relative
}

.about-video-and-img .video-wrapper .video-area .icon .video-circle {
    stroke: #fff;
    fill: none;
    transition: .5s
}

.about-video-and-img .video-wrapper .video-area .icon .video-circle .top-half {
    stroke-dasharray: 320;
    stroke-dashoffset: 320;
    transition: stroke-dashoffset .8s cubic-bezier(.33, 1, .68, 1)
}

.about-video-and-img .video-wrapper .video-area .icon i {
    color: #fff;
    font-size: 30px;
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%)
}

/* .about-video-and-img .video-wrapper .video-area h6 {
    color: #fff;
    font-family: var(--font-rubik);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .48px;
    text-transform: capitalize;
    margin-bottom: 0
} */

.about-video-and-img .video-wrapper .video-area:hover .icon .video-circle .top-half {
    stroke-dashoffset: 0
}

.about-video-and-img .about-section-img {
    position: relative
}

@media (max-width:1199px) {
    .about-video-and-img .about-section-img {
        display: none
    }
}

/* .about-video-and-img .about-section-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 12, 8, .3)
} */

/* .about-video-and-img .about-section-img:after {
    content: "";
    position: absolute;
    top: -9px;
    left: -9px;
    width: 105%;
    height: 100%;
    border: 1px solid rgba(99, 171, 69, .3);
    z-index: -1
} */

.making_us_unique_cards:hover .fa-star {
    animation: spin 2s linear;
}

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

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

#makes_use_unqiue {
    padding: 100px 300px 260px 300px;
    text-align: center;
    width: 100%;
}

/* #makes_use_unqiue_section::before video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
} */

#makes_use_unqiue::before {
    content: "";
    background: url('../assets/images/19.webp') no-repeat center center / cover;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    opacity: 0.8;
}

#makes_use_unqiue::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.make_use_unique_crads {
    margin-top: -10rem;
}



/*  Itineraries Page */
/* --------------------------------------------------------------------------- */

/* #itineraryModal .modal-body {
    display: flex;
} */

/* .fixed-column {
    flex: 0 0 30%;
    height: 100%;
    position: sticky;
    top: 0;
    max-width: 30%;
}

.scrollable-column {
    flex: 1;
    overflow-y: auto;
    height: 100%;
} */
.itinerary-modal-content .fixed-column {
    position: sticky;
    top: 0;
    height: calc(100% - 0.5rem*2)
}

.itinerary-details legend {
    font-weight: 600;
}

.itinerary-details p,
.itinerary-details li,
#tripIncluExcluAccordion .accordion-collapse ul li {
    color: #000;
    font-size: 1.125em;
}

.itineraries-item .mask {
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 50%;
    bottom: 20px;
    top: auto;
    padding-left: 5px;
    padding-right: 5px;
    background-color: rgba(0, 0, 0, .3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.63);
    border-radius: 1.25rem;
}

.hover-overlay .itineraries-item .mask:hover {
    border-radius: 1.25rem;
}

#itineraries-section .itineraries-inner {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}


/* Left Content (Fixed Sidebar) */
.itineraries-left {
    position: -webkit-sticky;
    /* For Safari */
    position: sticky;
    top: 100px;
    /* Makes it stick to the top */
    width: 50%;
    /* background-color: #f8f8f8; */
    padding: 20px;
    height: 100%;
}

/* Right Content (Scrolling Content) */
.itineraries-right {
    width: 50%;
    padding: 20px;
    height: 100%;
}


.itineraries-item .mask h3 {
    font-size: 1.25em;
    padding-bottom: 5px;
    margin-bottom: 1.5rem;
    font-weight: bold;
    border-bottom: 1px solid #fff;
}



.itineraries-item .mask .list-inline .list-inline-item {
    font-size: 1.125em;
}

.days-nights-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    /* Dark background */
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 10;
    /* Ensure it stays above the image */
}





/*  Contact Page */
/* --------------------------------------------------------------------------- */


#dt_frm__send_message .form-control {
    background-color: #16110E;
    padding-top: .5rem;
    padding-bottom: .5rem;
    transition: border .3s ease;
    border-color: #F1AC3200;
}

#dt_frm__send_message .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
    opacity: 1
}

#dt_frm__send_message .form-control:hover {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #FFFFFF1F;
}

.contact_details_card .contact_title {
    margin-bottom: 10px;
}

.contact_details_card .contact_icon {
    height: 44px;
    min-width: 44px;
    max-width: 44px;
    border-radius: 50px;
    background-color: rgb(228, 161, 27);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 5px;
}

.contact_details_card .contact_info {
    color: #100c08;
    font-weight: 500;
    padding-top: 10px;
    transition: .35s;
}

.contact_details_card .contact_info h6 {
    font-size: 18.5px;
}






/*  Gallery Page */
/* --------------------------------------------------------------------------- */

#gallery-section .gallery-img-wrap {
    position: relative;
    transition: all .45s;
    height: 100%
}

#gallery-section .gallery-img-wrap img {
    object-fit: cover;
    height: 200px;
    width: 100%;
}

#gallery-section .gallery-img-wrap a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(16, 12, 8, .6);
    color: #fff;
    text-align: center;
    font-family: "Rubik", sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .6px;
    flex-direction: column;
    transition: all .45s;
    transform: scale(.4);
    opacity: 0
}

#gallery-section .gallery-img-wrap a i {
    color: #fbb03b;
    font-size: 35px
}

#gallery-section .gallery-img-wrap:hover a {
    transform: scale(1);
    opacity: 1;
    color: #fff
}


#gallery-section .nav-pills .nav-item .nav-link {
    background-color: #ece0e0;
    font-size: 16px;
    color: #332d2d;
    border: 1px solid hsla(0, 0%, 93%, .6);
    /* padding: 4px 5px;
    display: flex;
    align-items: center;
    border-radius: 200px;
    cursor: pointer; */
}

#gallery-section .nav-pills .nav-item .nav-link.active {
    background-color: #fbb03b;
    color: #fff;
}








/*  Footer */
/* --------------------------------------------------------------------------- */

/* #bottom-footer-content .swiper-pagination {
    text-align: left;
} */

/* Default (non-active) bullets */
#bottom-footer-content .swiper-pagination-bullet {
    background-color: #ccc;
    /* Change to your preferred color */
    opacity: 0.6;
    /* Optional: Makes non-active bullets slightly transparent */
}

/* Active bullet */
#bottom-footer-content .swiper-pagination-bullet-active {
    background-color: #ff6600;
    /* Change to your preferred active color */
    opacity: 1;
}



/*  Media Queries */
/* --------------------------------------------------------------------------- */



/*  320px  */
/* ................ */

@media screen and (max-width: 320px) {}




/*  360px  */
/* ................ */

@media screen and (max-width: 360px) {}




/*  398px  */
/* ................ */

@media screen and (max-width: 398px) {}



/*  480px  */
/* ................ */

@media screen and (max-width: 480px) {

    #chatbox-bot {
        width: 96%;
        right: 2%;
    }

    /* .fancy-balloon {
        height: 200px;
    }

    .fancy-balloon .display-5 {
        font-size: 1.7rem;
    } */

    #our_promise_section {
        height: 400px !important;
    }

    #makes_use_unqiue {
        padding: 60px 20px 180px 20px;
    }

    .slide__text-heading {
        font-size: 1.5em;
    }

    .slider__btn_book {
        font-size: .6em;
    }

    .itineraries-item .mask {
        height: 70%;
        bottom: 5px;
    }

    .itineraries-item .mask h3 {
        margin-bottom: .6rem;
        font-size: .8em;
    }

    .itineraries-item .mask .list-inline .list-inline-item {
        font-size: .75em;
    }

    .days-nights-label {
        font-size: 0.5rem;
        padding: 2px 5px;
        top: 6px;
        left: 6px;
    }
}



/*  540px  */
/* ................ */

@media screen and (max-width: 540px) {

    .slide__text-heading {
        font-size: 1.6em;
    }

    .slider__btn_book {
        font-size: .65em;
    }
}



/*  576px  */
/* ................ */


@media screen and (max-width: 576px) {

    .days-nights-label {
        font-size: 0.8rem;
        /* Even smaller text */
        padding: 2px 6px;
        /* Less padding */
        top: 5px;
        /* Keep it closer to the top */
        left: 5px;
        /* Keep it closer to the left */
    }

}

@media screen and (max-width: 766px) {


    .fancy-balloon {
        display: none !important;
    }

    .our_promise_title {
        display: block;
    }
}


@media screen and (max-width: 767px) {

    #makes_use_unqiue::before {
        background-attachment: scroll;
    }

    #chatbox-bot {
        right: 10px;
        width: 80%;
    }

    /* .making_us_unique_cards {
        margin-top: -6.5rem;
    } */
}

@media screen and (min-width: 768px) {


    /* .fancy-balloon {
        display:block;
    } */

    .our_promise_title {
        display: none;
    }

    .days-nights-label {
        top: 5px;
        /* Less space on smaller screens */
        left: 5px;
        /* Less space on smaller screens */
        font-size: 1rem;
        /* Slightly smaller text */
        padding: 3px 8px;
        /* Less padding */
    }
}

@media screen and (max-width: 768px) {

    #itineraries-section .itineraries-inner {
        flex-direction: column;
    }

    .itineraries-left {
        position: relative;
        width: 100%;
        margin-bottom: 1rem;
        top: auto;
        padding-bottom: 0;
    }

    .itineraries-right {
        width: 100%;
        padding-top: 0;
    }

    #makes_use_unqiue {
        padding: 60px 20px 230px 20px;
    }

    .slide__text-heading {
        font-size: 1.9em;
    }

    .slider__btn_book {
        font-size: .75em;
    }

    .fancy-balloon {
        height: 200px;
    }

    .fancy-balloon .display-5 {
        font-size: 1.6rem;
    }

    #gallery-section .gallery-img-wrap img {
        height: auto
    }
}



/*  860px  */
/* ................ */
@media screen and (max-width: 860px) {

    .itineraries-item .mask {
        height: 70%;
    }
}




/*  992px  */
/* ................ */

@media (min-width: 992px) and (max-width: 1199px) {
    .our-promise-img-wrap .about-img {
        height: 85%;
    }

    .our-promise-img-wrap .shape {
        height: 85%;
    }
}

/*  991px  */
/* ................ */

@media screen and (max-width: 991px) {

    .itinerary-modal-content .fixed-column {
        position: relative;
        height: auto;
        margin-bottom: 1.5rem;
    }

    #navbarContent {
        margin-top: 19px;
    }

    #makes_use_unqiue {
        padding: 70px 20px 260px 20px;
    }

    .slide__text-heading {
        font-size: 2.5em;
    }

    .slider__btn_book {
        font-size: 1em;
    }

    .fancy-balloon {
        height: 200px;
    }

    .fancy-balloon .display-5 {
        font-size: 1.6rem;
    }

    #our_promise_section {
        height: 350px;
    }

    .fancy-balloon {
        margin-bottom: 1.5rem;
    }
}



/*  1000px  */
/* ................ */
@media screen and (max-width: 1000px) {}



/*  1200px  */
/* ................ */

@media (min-width: 1200px) {

    .fancy-balloon .display-5 {
        font-size: 2rem;
    }
}



/*  767px and 1199px  */
/* ................ */
@media (min-width: 767px) and (max-width: 1199px) {
    #makes_use_unqiue {
        padding: 70px 100px 260px 100px;
    }
}

/*  1600px  */
/* ................ */
@media screen and (max-width: 1600px) {}


/*  2000px  */
/* ................ */
@media screen and (max-width: 2000px) {}
