* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
}

*::selection{
    background: #F27823;
}

body {
    position: relative;
    width: 100%;
    height: 100%;
    background: #020202;
}

img{
    object-fit: cover;
}

.container {
    padding: 0px 20px;
}

.font-oswald {
    font-family: "Oswald", sans-serif;
}

.font-opensans {
    font-family: "open sans", sans-serif;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header {
    background-color: rgba(0, 0, 0, 0.761)
}

.logo img {
    width: 200px;
}


.menu {
    display: flex;


    color: white;

}

.menu>li {
    position: relative;

    display: inline-block;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu>li {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 25px 30px;
    font-size: 12px;
    text-transform: uppercase;
    transition: color 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);

}

.menu>li:hover {
    background: #1f1f1f !important;

}

.menu>li:hover a {
    color: #F27823 !important;
}

.bg-orange {
    background-color: #34475B;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Submenu Display on Hover */
.menu>li:hover>.sub-menu {
    display: flex;
    opacity: 1;
}

/* Submenu Styles */
.menu>li>.sub-menu {
    position: absolute;
    display: none;
    opacity: 0;
    color: white;
    flex-direction: column;
    width: 350px;
    z-index: 99;
    border-top: 50px transparent solid;
    top: 15px;
    left: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu>li>.sub-menu>li {
    background-color: black;
    padding: 15px 15px;
}

.menu>li>.sub-menu li {
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu>li>.sub-menu li:hover {
    padding-left: 15px;
}


/* Hover Effect for Main Menu Links */



.menu>li:hover>a {
    color: white;
}

/* Nested Submenu Styles */
.menu .sub-menu>li {
    position: relative;
    display: inline-block;
}

.menu .sub-menu>li>ul {
    display: none;
    position: absolute;
    flex-direction: column;
    opacity: 0;
    left: 100%;
    width: 100%;
    transition: 3s opacity cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-delay: 3ms;
    top: 0;
    background-color: black;
    border-left: 2px solid transparent;
}

.menu .sub-menu>li:hover>ul {
    display: flex;
    opacity: 1;
}

.menu .sub-menu>li>ul>li {
    width: 100%;
    padding: 10px 10px;
}

/* Social Media Icons */
.icons {
    display: flex;
}

.icons i {
    position: relative;
    border-radius: 100%;
    padding: 10px 15px;
    color: white;
    display: inline-block;
    overflow: hidden;
    transition: color 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dark-text .social_media i:hover {
    color: white !important;
}

.icons i:hover::after {
    top: 0;
}


/* Hamburger Menu */
.hamburger {
    display: none;
    position: relative;
}


.main-div {
    position: fixed;
    top: 0;
    z-index: 99;
    left: 0;
    width: 100%;
}


.dark-text .current_page_item:hover a {
    color: white;
}

.dark-text i {
    color: black;
}

.dark-text .current_page_item a {
    background-color: black;
    color: white;
}

@media screen and (max-width: 768px) {
    .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;

        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: 5px;
        position: relative;
        flex-direction: column;
        width: 100%;
        color: white;
        font-size: inherit;
        max-height: 100vh;
        /* 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;
        padding: 15px 5px;
    }

    .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: 20%;
    }

    .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%;
    }

    .tour .accordion button {
        position: relative;  
        display: flex;
        justify-content: space-between;
        
    }


    .itinerary-title{
        display: block;
    }

}

/* CSS */
.button-48 {
    appearance: none;
    background-color: #ffffff02;
    border: 1px solid #667ca6;

    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Clarkson, Helvetica, sans-serif;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1em;

    opacity: 1;
    outline: 0;
    padding: 10px 25px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-rendering: geometricprecision;

    transition: opacity 300ms cubic-bezier(.694, 0, 0.335, 1), background-color 100ms cubic-bezier(.694, 0, 0.335, 1), color 100ms cubic-bezier(.694, 0, 0.335, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    white-space: nowrap;
}

.button-48:before {
    animation: opacityFallbackOut .5s step-end forwards;
    backface-visibility: hidden;
    background-color: #667ca6;
    clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateZ(0);
    transition: clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1), -webkit-clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1);
    width: 100%;
}

.button-48:hover:before {
    animation: opacityFallbackIn 0s step-start forwards;
    clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}



.button-48:after {
    background-color: #FFFFFF;
}

.button-48 span {
    z-index: 1;
    position: relative;
}

.bikeshowcase-overlay {
    background: rgb(0,0,0);
background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(21,21,21,0.5158438375350141) 52%, rgba(0,0,0,1) 100%);
background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(21,21,21,0.5158438375350141) 52%, rgba(0,0,0,1) 100%);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(21,21,21,0.5158438375350141) 52%, rgba(0,0,0,1) 100%);
}

.featuredItem-overlay {
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(21,21,21,0.7343312324929971) 52%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(21,21,21,0.7343312324929971) 52%, rgba(0,0,0,1) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(21,21,21,0.7343312324929971) 52%, rgba(0,0,0,1) 100%);
}

.featured-item-slider{
    transition: all 0.5s ease;    
}

.featured-item-slider:hover img{
    transition: all 0.2s ease;    
    transform: scale(1.02);
}

.featured-item-slider:hover h1{
    color: #F27823;
    font-weight: 600;
}

.contact-map iframe{
    width: 100% !important;
    height: 40vh;
}

.wpcf7-response-output{
    color: rgb(255 255 255);
}

#footer-menu{
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

#footer-menu li{
    padding: 0px;
}

#footer-menu li:hover{
    background-color: transparent !important;
}

.team-social > *:hover{
    color: #F27823;
    cursor: pointer;
}



.accordion{
    position: relative;
}

.accordion button{
    position: relative;    
}



.why-us .accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}
.why-us .accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #e0e0e0;
}
.accordion button {
  position: relative;  
  text-align: left;
  width: 100%;  
  color: #fff;
  
  
  border: none;
  background: none;
  outline: none;
}


.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #e0e0e0;
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #e0e0e0;
  border: 1px solid #e0e0e0;
}
.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: #e0e0e0;
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 1000vh;
  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;
}
.accordion .accordion-content > div {
  font-size: 1rem;
  font-weight: 300;
  padding: 2.5rem;
  margin-top: 1.25rem;
  
}

.accordion .accordion-content > p {  
  font-weight: 300;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;  
}




/* Blockquote Styling */
.accordion .accordion-content > div blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #555;
    border-left: 4px solid #ccc;
    margin: 1.5rem 0;
    padding-left: 15px;
}

/* Ordered List Styling */
.accordion .accordion-content > div ol {
    list-style-type: decimal;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.accordion .accordion-content > div ol li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Unordered List Styling */
.accordion .accordion-content > div ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.accordion .accordion-content > div ul li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Bold and Italic Text Styling */
.accordion .accordion-content > div b,.accordion .accordion-content > div strong {
    font-weight: 700;
}

.accordion .accordion-content > div i,.accordion .accordion-content > div em {
    font-style: italic;
}

/* Text Alignment */
.accordion .accordion-content > div .text-left {
    text-align: left;
}

.accordion .accordion-content > div .text-center {
    text-align: center;
}

.accordion .accordion-content > div .text-right {
    text-align: right;
}

/* Text Weight */
.accordion .accordion-content > div .font-light {
    font-weight: 300;
}

.accordion .accordion-content > div .font-regular {
    font-weight: 400;
}

.accordion .accordion-content > div .font-bold {
    font-weight: 700;
}

.accordion .accordion-content > div .font-extrabold {
    font-weight: 900;
}

/* Additional Enhancements */
.accordion .accordion-content > div h1,.accordion .accordion-content > div h2,.accordion .accordion-content > div h3,.accordion .accordion-content > div h4,.accordion .accordion-content > div h5,.accordion .accordion-content > div h6 {
    margin: 1.5rem 0 1rem 0;
    font-weight: 700;
    color: #222;
}

.accordion .accordion-content > div h1 {
    font-size: 2.5rem;
}

.accordion .accordion-content > div h2 {
    font-size: 2rem;
}

.accordion .accordion-content > div h3 {
    font-size: 1.75rem;
}

/* Anchor Links */
.accordion .accordion-content > div a {
    color: #007BFF;
    text-decoration: none;
}

.accordion .accordion-content > div a:hover {
    text-decoration: underline;
}

.wp-block-search__label{
    color: rgb(255 255 255);
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.wp-block-group{
    background: #2A2A2A;
    color: rgb(255 255 255);
    margin-top: 2.5rem;
    padding: 1.25rem;
}


.wp-block-categories li{
    text-transform: uppercase;
    transition: all ease-in-out 0.2s;    
}

.wp-block-categories{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wp-block-categories li:hover{
    margin-left: 8px;
    color: #F27823;
}

.wp-block-search__inside-wrapper input{
    outline: 0;
}

.wp-block-search__button.has-icon.wp-element-button{
    background: white;
    padding: 10px;
}

/* Parent Blog Container */
.thrill-on-blog {   
    line-height: 1.6;    
    color: #fff;
}

/* Ordered List */
.thrill-on-blog ol {
    padding-left: 20px;
    list-style-type: decimal;
    margin-bottom: 20px;
}
.thrill-on-blog ol li {
    margin-bottom: 10px;
}

/* Unordered List */
.thrill-on-blog ul {
    padding-left: 20px;
    list-style-type: disc;
    margin-bottom: 20px;
}
.thrill-on-blog ul li {
    margin-bottom: 10px;
}

/* Paragraph */
.thrill-on-blog p {
    margin-bottom: 20px;
}

/* Headings */
.thrill-on-blog h1, 
.thrill-on-blog h2, 
.thrill-on-blog h3, 
.thrill-on-blog h4, 
.thrill-on-blog h5, 
.thrill-on-blog h6 {
    margin-bottom: 15px;    
    
}

.thrill-on-blog h1 { font-size: 36px; }
.thrill-on-blog h2 { font-size: 30px; }
.thrill-on-blog h3 { font-size: 24px; }
.thrill-on-blog h4 { font-size: 20px; }
.thrill-on-blog h5 { font-size: 18px; }
.thrill-on-blog h6 { font-size: 16px; }

/* Blockquote */
.thrill-on-blog blockquote {
    border-left: 5px solid #db8734;
    padding-left: 15px;
    background-color: rgb(31 41 55);
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    margin: 20px 0;
    font-style: italic;
    color: #db8734;
}

/* Horizontal Rule */
.thrill-on-blog hr {
    border: none;
    border-top: 1px solid #eaeaea;
    margin: 30px 0;
}

/* Image */
.thrill-on-blog img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

/* Preformatted Text */
.thrill-on-blog pre {
    background-color: #f4f4f4;
    padding: 10px;
    border-left: 3px solid #db9b34;
    overflow-x: auto;
}

/* Code */
.thrill-on-blog code {
    background-color: #f4f4f4;
    padding: 2px 5px;
    font-family: 'Courier New', Courier, monospace;
    border-radius: 3px;
}

/* Button */
.thrill-on-blog button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}
.thrill-on-blog button:hover {
    background-color: #2980b9;
}

.size-full{
    height: auto !important;
}

.size-full img{
    aspect-ratio: 16 / 9;
    width: 100%;
}


.search-field{
    width: 100%;
    padding: 10px;
}

table {
    width: 100%;
    overflow-x: auto;
}

th {
    background-color: #cbd5e0; /* bg-gray-400 */
    padding: 10px;
    text-align: left;
}

tr:nth-child(odd) {
    background-color: #edf2f7; /* bg-gray-200 */
}

tr:nth-child(even) {
    background-color: #f7fafc; /* bg-gray-100 */
}

td {
    padding: 10px;
}


.thrill-on-blog a{
    color: #db8734;
    text-decoration: underline;
}

.TourSlider .swiper-slide{
    height: 50vh;
}

.highlights{
    padding-left: 0px !important;
}



.highlights li{
    list-style-type: none;
    display: flex;
    margin-bottom: 0px !important;
    align-items: flex-start;
    gap: 0.7rem;    
}

.highlights li p{
    margin-bottom: 5px !important;
}

.iframe-tour iframe{
    aspect-ratio: 16/9;
    width: 100%;
}

.is-provider-youtube iframe{
    width: 100%;
    aspect-ratio: 16/9;
}


.tour .accordion{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tour .accordion button{
    position: relative;    
}




.tour .accordion .accordion-item {
  
  border-radius: 5px;
 
}

.tour .accordion .accordion-item button[aria-expanded=true] {
  color: rgb(255 255 255);

}

.tour .accordion button {
  position: relative;  
  display: flex;
  justify-content: space-between;
  align-items: center; 
  gap: 0.5rem;   
  text-align: left;
  width: 100%;
  padding: 0.8em 0.8em ;
  color: rgb(255 255 255);
  font-size: 1.15rem; 
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.day{
  background-color: rgb(194 65 12);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem; 
  border-radius: 0.375rem; 
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-right: 10px;
}

.tour .accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #e0e0e0;
}
.tour .accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #e0e0e0;
  border: 1px solid #e0e0e0;
}
.tour .accordion button .accordion-title {
  padding: 0;
}
.tour .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.tour .accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.tour .accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.tour .accordion button[aria-expanded=true] {
  color: #e0e0e0;
}
.tour .accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.tour .accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  color: rgb(255 255 255);
  
  max-height: 200vh;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.tour .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.tour .accordion .accordion-content > div {
  font-size: 1rem;
  font-weight: 300;
 padding: 1.25rem;
    margin: 0;
}

.thrill-on-blog a.button-48{
    color: white;
    text-decoration: none;
}