/* Global Styles */
body {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    overflow-x: hidden;
}

html.lenis,
html.lenis body {
    height: auto;
}

.opacity-0{
    opacity: 0;
}

.opacity-100{
    opacity: 1;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

*::selection {
    background-color: black;
    color: white;
}





.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    height: 100%;
}


.hero-title {
    font-size: 6vw;
}

.btn-primary {
    background: white;
    padding: 15px 40px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary::after {
    content: " ";
    transition: 0.5s left cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: absolute;
    background-color: black;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
}

.btn-primary:hover::after {
    left: 0;
}

.btn-primary:hover span {
    position: relative;
    color: white;
    z-index: 7;
}

.btn-primary-black {
    background: black;
    padding: 15px 40px;
    text-transform: uppercase;
    color: white;
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary-black::after {
    content: " ";
    transition: 0.5s left cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: absolute;
    background-color: white;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
}

.btn-primary-black:hover::after {
    left: 0;
}

.btn-primary-black:hover span {
    position: relative;
    color: black;
    z-index: 7;
}

.slider-nav>* {
    border-radius: 100%;
    padding: 30px 20px;
    color: white;
    text-transform: uppercase;
    font-size: 18px;
    overflow: hidden;
    font-weight: 400;
}

.slider-prev .icon-left {
    position: absolute;
    top: 0;
    font-size: 32px;
    left: 100%;
    background-color: black;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: left 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-prev:hover .icon-left {
    left: 0;
}

.slider-next .icon-right {
    position: absolute;
    top: 0;
    font-size: 32px;
    left: -100%;
    background-color: black;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: left 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-next:hover .icon-right {
    left: 0;
}


.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
}

.slider-prev {
    left: 2%;
}

.slider-next {
    right: 2%;
}

.mySwiper .swiper-pagination-bullet {
    background-color: white;
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.92);
    padding: 2px;
    padding: 5px;
    transition: 0.3s all ease-in-out;
}

.mySwiper .swiper-pagination-bullet:hover {
    border-radius: 100%;
    padding: 10px;
    border: 2px solid white;
    background-color: transparent;
}

.mySwiper .swiper-pagination-bullet-active {
    border-radius: 100%;
    padding: 10px;
    border: 2px solid white;
    background-color: transparent;
}

.mySwiper .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-destination {
    aspect-ratio: 9 /13;
    overflow: hidden;
    position: relative;
}

.image-portion {
    transition: all 0.9s cubic-bezier(0.075, 0.82, 0.165, 1);

}


.feature-destination:hover .image-portion {
    margin-top: -30px;
}

.feature-destination:hover .show-activity-portion {
    bottom: 0;
}

.feature-destination .show-activity-portion {
    position: absolute;
    padding: 20px 25px;
    cursor: pointer;
    bottom: -20%;
    left: 0;
    width: 100%;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    text-align: center;
    background-color: black;
}


/* Apply to the active slide's heading */
.mySwiper .swiper-slide-active * {
    transition: animation .5s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: slider_animation 0.5s linear;
}

@keyframes slider_animation {
    0% {
        transform: scale(0.8);
        /* Use transform for scaling */
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        transform: scale(1);
        /* Use transform for scaling */
        transform: translateY(0px);
        opacity: 1;
    }
}


.feature-itinerary-item img {
    transition: all 0.2s ease-in-out;
}

.feature-itinerary-item:hover img {
    margin-left: 5px;
}

.tags {
    display: inline-flex;
    position: relative;
    font-size: 12px;
    padding: 2px 10px;
    overflow: hidden;
    text-transform: uppercase;

    background-color: #f0f0f0;
}

.tags>a:nth-child(1) {
    margin-left: 0;
}

.tags>a:nth-child(1)::before {
    padding: 0px;
}

.tags>a::before {
    content: " ";
    position: absolute;
    padding: 2px;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
    background-color: black;
    border-radius: 100%;
}

.tags>a {
    position: relative;
    display: inline-block;
    cursor: pointer;
    letter-spacing: 0.5px;

    margin-left: 15px;
    z-index: 9;
}

.tags:hover a {
    color: rgb(255 255 255);
}

.tags:hover::after {
    left: 0;
}

.tags::after {
    content: " ";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: 0.3s left cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 8;
    background-color: black;
}

.btn-itinerary {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.btn-itinerary:nth-child(1) {
    letter-spacing: 1.5px;
}

.btn-itinerary:hover>span.right {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
}

.btn-itinerary>span.right {
    content: " ";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background-color: black;
    transition: 0.3s left cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



.cursor-animation {
    transition: 0.3s left top cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.grain {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    z-index: 300;
    transform: translateZ(0);
}

.grain:before {
    content: "";
    top: -10rem;
    left: -10rem;
    width: calc(100% + 20rem);
    height: calc(100% + 20rem);
    z-index: 9999;
    position: fixed;
    background-image: url(https://upload.wikimedia.org/wikipedia/commons/5/5c/Image_gaussian_noise_example.png);
    opacity: 0.15;
    pointer-events: none;
    -webkit-animation: noise 1s steps(2) infinite;
    animation: noise 1s steps(2) infinite;
}

@-webkit-keyframes noise {
    to {
        transform: translate3d(-7rem, 0, 0);
    }
}

@keyframes noise {
    0% {
        transform: translate3d(0, 9rem, 0);
    }

    10% {
        transform: translate3d(-1rem, -4rem, 0);
    }

    20% {
        transform: translate3d(-8rem, 2rem, 0);
    }

    30% {
        transform: translate3d(9rem, -9rem, 0);
    }

    40% {
        transform: translate3d(-2rem, 7rem, 0);
    }

    50% {
        transform: translate3d(-9rem, -4rem, 0);
    }

    60% {
        transform: translate3d(2rem, 6rem, 0);
    }

    70% {
        transform: translate3d(7rem, -8rem, 0);
    }

    80% {
        transform: translate3d(-9rem, 1rem, 0);
    }

    90% {
        transform: translate3d(6rem, -5rem, 0);
    }

    to {
        transform: translate3d(-7rem, 0, 0);
    }
}



.feature-trek-title {
    line-height: 1.5;
}

.testimonial-item:nth-child(1) {
    border-top: 2px solid rgb(229 231 235);
    border-bottom: 2px solid rgb(229 231 235);
}

.testimonial-item {
    border-bottom: 2px solid rgb(229 231 235);
}

.rotate-animation {
    transform: translateX(-50%) translateY(-50%);
    left: 0;
    animation: rotate 8s linear infinite;
}

.gallary img:hover {
    margin-left: 10px;
}

.gallary img {
    transition: 0.3s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

input:focus {
    outline: 0;
}


.input-animation~.right-arr {
    margin-right: -18px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.input-animation p span {
    display: none !important;
}

.input-animation:hover~.right-arr {
    margin-right: -0px;
}

#footer-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

#footer-menu>li>a {
    display: block;
    color: rgb(236, 236, 236);
    padding: 0;
}

#footer-menu a {
    transition: all 0.08s ease-in;
}

#footer-menu a:hover {
    margin-left: 5px;
}

.footer-logo img {
    width: 50px;
}

@keyframes rotate {
    from {
        transform: translateX(-50%) translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) translateY(-50%) rotate(360deg);
    }
}


/* .wpcf7-response-output {
    color: white;
    border: 0px !important;
    margin: 10px 0 !important;
    padding: 0 !important;
} */


.breadcrumb-li li {
    position: relative;
    cursor: pointer;
    margin-right: 10px;
}

.breadcrumb-li li:nth-child(1)::before {
    content: " ";
    background: transparent;
    position: absolute;
    padding: 2px;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
}

.breadcrumb-li li::before {
    content: " ";
    background: gray;
    position: absolute;
    padding: 2px;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
}

.pagination .page-numbers {
    display: flex;
    gap: 5px;
}

.pagination .current {
    padding: 5px 15px;
    background-color: black;
    color: white;
}

.pagination .page-numbers li a {
    padding: 5px 15px;
    background-color: #f0f0f0;
}

.page-numbers.next,
.page-numbers.prev {
    background-color: transparent !important;
    color: black !important;
}

.itinerary-item-taxonomy {
    overflow: hidden;
}

.itinerary-item-taxonomy .image-frame img {
    scale: 1.1;
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.itinerary-item-taxonomy:hover .image-frame img {
    margin-left: 10px;
}

.wp-block-search__label {
    font-size: 18px;
    font-weight: 700;
    display: none;
}

.wp-block-search__input {
    border-bottom: 2px solid #e9e9e9;
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
    margin: 0;
}

.wp-block-search__button.wp-element-button {
    background: black;
    padding: 0px 10px;
    font-size: 12px;
    text-transform: uppercase;
    color: white;
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
}

.sidebar-destinations {
    position: relative;
    overflow: hidden;
}

.sidebar-destinations li {
    position: relative;
    transition: 0.3s all cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sidebar-destinations li::before {
    content: ' ';
    position: absolute;
    top: 50%;
    left: -10px;
    border-radius: 100%;
    transform: translateY(-50%);
    padding: 2px;
    background-color: black;
}

.sidebar-destinations li:hover {
    margin-left: 10px;
}

.sidebar-trek-item {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sidebar-trek-item img,
.sidebar-trek-item a {
    position: relative;
    z-index: 99;
}

.sidebar-trek-item::before {
    content: " ";
    position: absolute;
    background: #000;
    top: 0;
    left: -100%;
    height: 100%;
    transition: 0.6s left cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
}

.sidebar-trek-item:hover::before {
    left: 0;
}

.sidebar-trek-item:hover {
    color: white;
}

.cost-in-ex-list {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.cost-in-ex-list li {
    display: flex;
    gap: 10px;
}



.location-top,
.location-bottom {
    position: absolute;
    left: -13px;
    padding: 2px 4px;
    border-radius: 100%;
    font-size: 18px;
    top: -20px;
}
/*
.accordion {
    position: relative;
    border-left: 1px dashed black;
    padding-left: 18px;
}
.accordion button {
    position: relative;
}

.accordion button::before {
    content: " ";
    position: absolute;
    background-color: black;
    padding: 5px;
    top: 50%;
    transform: translateY(-50%);
    left: -24px;
    border-radius: 100%;
}

.accordion .accordion-item button[aria-expanded=true] {
    border-bottom: 1px dashed #000000;
}

.accordion button {
    position: relative;

    text-align: left;
    width: 100%;
    color: #000000;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: #000000;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: #000000;
    border: 1px dashed #000000;
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded=true] {
    color: #000000;
}

.accordion button[aria-expanded=true] .day-btn {
    color: #ffffff;
    transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1);
    background: #000;
}

.accordion button[aria-expanded=true] .icon::after {
    width: 0;
}

.accordion button[aria-expanded=true]+.accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.downarrow {
    transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) all;
}


.accordion .accordion-content p {
    margin-top: 20px;
    margin-bottom: 30px;
}
*/

.collapse {
    visibility: unset !important;
}

.accordion-button:not(.collapsed) {
    color:#F7471B;
}
.accordion-button:focus {
    border-color: unset;
    box-shadow: unset;
    background-color: unset;
}
hr {
    margin: 1rem 0 !important;
    color: inherit !important;
    border: 0 !important;
    border-top: var(--bs-border-width) solid !important;
    opacity: .25 !important;
}

.swiper.memorySlider {
    aspect-ratio: 16/8;
    width: 80%;
    overflow: visible !important;
    color: #fff;
}

.memorySlider .swiper-slide {
    background-color: #000;
}

.memorySlider .swiper-slide-active {
    transform: scale(1.02);
    transition: transform cubic-bezier(0.075, 0.82, 0.165, 1) 0.03s;
}

.contact-us .wpcf7-response-output {
    color: black;
}

.image-hover-effect {
    transition: all 0.03s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.text-red-500 {
    color: rgb(205, 20, 20)
}

.text-red-700 {
    color: red
}


/* Headings */
.main-content h1 {
    font-size: 2.5rem;
    /* Adjust size as needed */
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;

    /* Darker heading color */
}

.main-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;

}

.main-content h3 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-top: 1.6rem;
    margin-bottom: 0.8rem;

}

.main-content h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 1.4rem;
    margin-bottom: 0.7rem;

}

.main-content h5 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;

}

/* Paragraph */
.main-content p {
    margin-bottom: 1.5rem;
    /* Space after each paragraph */
    font-size: 1rem;
    /* Base font size */

    /* Text color */
}

/* Blockquote */
.main-content blockquote {
    font-size: 1.25rem;
    /* Larger font size for emphasis */
    font-style: italic;

    /* Lighter color for blockquote text */
    border-left: 4px solid #ddd;
    /* Subtle left border */
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    /* Vertical spacing around blockquote */
    background-color: #f9f9f9;
    /* Light background for blockquote */
    padding: 1rem;
    /* Padding inside the blockquote */
}

/* Additional Styles for a Consistent Look */
ul,
.main-content ol {
    margin-bottom: 1.5rem;
    /* Space after lists */
    padding-left: 2rem;
    /* Indentation for lists */
}

.main-content a {
    color: #1e90ff;
    /* Link color */
    text-decoration: none;
    /* No underline */
    transition: color 0.3s ease;
    /* Smooth transition on hover */
}

.main-content a:hover {
    color: #ff6347;
    /* Hover color for links */
    text-decoration: underline;
    /* Underline on hover */
}

/* Responsive Styles for Mobile */
@media screen and (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .slider-nav {
        position: absolute;
        top: 90%;
        transform: translateY(-50%);
        z-index: 99;
    }


    .current_page_item a {
        background-color: black;
    }

    .dark-text .current_page_item:hover a {
        color: white;
    }

    .dark-text .menu {
        color: white !important;
    }

    .dark-text i {
        color: white;
    }




    .hero-title {
        font-size: 32px;
    }

    .container {
        padding: 0 20px;
    }

    .main-navigation .menu {
        display: flex;
        position: fixed;
        top: 0;
        overflow-x: hidden;
        left: 0;
        width: 50%;
        height: 100vh;
        flex-direction: column;
        padding-top: 50px;
        background-color: black;
        color: white;
        font-size: 12px;
        text-transform: uppercase;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .main-navigation .menu.open {
        transform: translateX(0);
    }

    /* Hide Submenu on Hover */
    .main-navigation .menu>li>ul.sub-menu {
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    .main-navigation .menu>li:hover>ul.sub-menu {
        display: none;
    }

    /* Show Submenu when Active with Slide Down Animation */
    .main-navigation .menu>li.active>ul.sub-menu {
        display: flex;
        opacity: 1;
        border-top: 0;
        background-color: transparent;
        top: 10px;
        padding-left: 10px;
        position: relative;
        flex-direction: column;
        color: white;
        font-size: inherit;
        max-height: 500px;
        /* Adjust according to the content */
    }

    .main-navigation .menu>li a {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .main-navigation .sub-menu>li {
        background-color: transparent;
    }

    .main-navigation .menu>li>.sub-menu>li {
        background-color: transparent;
    }

    .hamburger {
        display: block;
        position: relative;
        cursor: pointer;
        right: 5%;
        top: 20%;
        width: 30px;
        /* Adjust size as needed */
        height: 20px;
        /* Adjust size as needed */
    }

    .hamburger.open {
        position: fixed;
        cursor: pointer;
        right: 5%;
        top: 5%;
    }

    .hamburger .bar {
        display: block;
        width: 100%;
        height: 2px;
        /* Thickness of the bars */
        background-color: white;
        transition: all 0.3s ease;
        position: absolute;
    }

    .dark-text .hamburger .bar {
        display: block;
        width: 100%;
        height: 2px;
        /* Thickness of the bars */
        background-color: black !important;
        transition: all 0.3s ease;
        position: absolute;
    }


    .hamburger .bar:nth-child(1) {
        top: 0;
    }

    .hamburger .bar:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger .bar:nth-child(3) {
        bottom: 0;
    }

    .hamburger.open .bar:nth-child(1) {
        transform: rotate(45deg);
        top: 40%;
    }

    .hamburger.open .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open .bar:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 50%;
    }

    .social_media {
        display: none;
    }

    .image-background-feature {
        height: 100%;
        transform: scale(1.4);
    }

    #footer-menu {
        transform: translateX(0);
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .breadcrumb-li li:nth-child(1)::before {
        content: " ";
        background: black;
        position: absolute;
        padding: 2px;
        border-radius: 100%;
        top: 50%;
        transform: translateY(-50%);
        left: -10px;
    }

    .itinerary-day {
        display: inline-block;
    }

}