@charset "UTF-8";
/*
Terrain360
Version: 3.5
Author: Ryan Abrahamsen
*/

/* Base Styles */
html {
    -webkit-text-size-adjust: none;
}

body {
    font-family: colfax-web, sans-serif;
    font-weight: 500;
    font-style: normal;
    background-image: url('https://d3kfjvhh435dey.cloudfront.net/_laravel/images/uploads/2023/12/pattern.png');
    background-repeat: no-repeat;
    background-size: 80%;
    background-attachment: fixed;
    background-position: right;
    background-color: #000000;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: colfax-web, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
}

p {
    font-size: 16px;
}
/* mapbox styles /*/


/* Navigation */
.navbar {
    position: absolute;
    z-index: 1000;
    top: 30px;
    width: 100%;
    color: #ffffff;
}

.nav-item, .nav-link {
    font-family: colfax-web, sans-serif;
    font-weight: 500;
}

.nav-link {
    color: #ffffff !important;
    position: relative;
}

.nav-link:not(.dropdown-toggle):after,
.dropdown-toggle:before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
}
/* Map and Trail Nav */
.nav-container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.nav-new {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    position: relative;
    font-size: 16px;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-new:hover {
    color: #ffffff;
}

.nav-new::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-new:hover::after {
    width: 100%;
    left: 0;
}

/* Active state styling */
.nav-new.active {
    color: #ffffff;
}

.nav-new.active::after {
    width: 100%;
    left: 0;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

/* logo roll in */
@keyframes rollIn {
  0% {
    transform: translateX(300%) rotate(0deg); /* Increased to roll from further */
  }
  70% {
    transform: translateX(0) rotate(-720deg);
  }
  100% {
    transform: translateX(0) rotate(-720deg);
  }
}

@keyframes textReveal {
  0%, 50% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animated-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  justify-content: flex-start;
  padding-left: 0px;
  overflow: hidden;
  position: relative;
  width: 100%; /* Ensure container takes full width */
}

.animated-logo svg {
  width: 50px;
  height: 50px;
  transform: translateX(300%); /* Match initial keyframe position */
}

.animated-text {
  opacity: 0;
}

.animated-text img {
  height: 42px;
  width: auto;
}

.animate-roll {
  animation: rollIn 2s ease-out forwards;
}

.animate-text {
  animation: textReveal 2.5s ease-out forwards;
}
/* end logo roll in */
.nav-link:not(.dropdown-toggle):hover:after,
.nav-link:not(.dropdown-toggle).active:after,
.dropdown-toggle:hover:before,
.dropdown-toggle.active:before {
    width: 100%;
    left: 0;
}

.dropdown-toggle:after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.navbar .header-logo {
    width: 180px;
}

/* Footer */
#footer .astro a {
    color: #ffffff;
    font-size: 50px;
}

#footer .astro a:hover {
    color: #C3C3C3;
}

#footer ul li a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    font-size: 14px;
}

#footer ul li a:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

#footer ul li a:hover:after {
    width: 100%;
    left: 0;
}

/* Loading Indicator */
.loading-indicator {
    position: absolute;
    top: 60px;
    right: 20px;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.spinner {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid #ccc;
    border-top-color: #333;
    animation: spin 1s infinite linear;
    margin-right: 10px;
}

.loading-text {
    font-family: colfax-web, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #333;
}

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

/* Components */
.side-panel.open {
    height: 100vh;
}

.header_badge {
    position: absolute;
    bottom: 100px;
    z-index: 12;
    left: 20px;
}

.featured-badge {
    border: 2px solid red;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.8em;
    text-transform: uppercase;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Images and Media */
.about_images_block img {
    position: relative;
    object-fit: cover;
    width: 100%;
    height: 550px;
    border-radius: 10px;
}

.about_images_block::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, transparent, #000000);
    opacity: .7;
}

.home_layout .ratio video {
    border-radius: 10px;
}

/* Misc */
.nav_insoide a {
    color: #ffffff;
}

#results_parent {
    position: relative;
}

#search-results-n .container {
    overflow-y: scroll;
}

#new-search-results {
    z-index: 200;
}
/* Background Settings */
.background-set {
    background-color: #161616;
}

.background-set h4 {
    font-family: colfax-web, sans-serif;
    font-size: 26px;
    color: #ffffff;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
    text-transform: uppercase;
}

.background-set p {
    color: #ffffff;
}

.background-set .carousel-item img {
    border-radius: 10px;
    position: relative;
    object-fit: cover;
    width: 100%;
    height: 400px;
}
.text-muted {
   color:#727272!important;
}
/* Typography */
p {
    font-family: colfax-web, sans-serif;
    font-weight: 300;
}

span.bold {
    font-weight: bold;
}

.badge {
    font-family: colfax-web, sans-serif;
    font-weight: 400;
}

/* Contact Section */
.contact .card .card-text a {
    color: #ffffff;
    text-decoration: none;
}

.contact .card .card-text a:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
}

.contact p {
    color: #ffffff;
}

.contact h2 {
    color: #ffffff;
    font-family: colfax-web, sans-serif;
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
}

.contact h3 {
    color: #FD7763;
    font-family: colfax-web, sans-serif;
    font-weight: 700;
    font-size: 20px;
    font-style: normal;
    line-height: normal;
	text-transform: uppercase;
}

.contact h4 {
    line-height: 14px;
}

.contact ul {
    color: #ffffff;
    list-style-type: none;
    margin-left: 0px;
    padding-left: 0px;
}

.contact li {
    padding-bottom: 10px;
}

/* Overlay Text */
.overlay-text h1 {
    font-family: colfax-web, sans-serif;
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
}

.overlay-text h4 {
    font-size: 20px;
    font-family: colfax-web, sans-serif;
    font-weight: 500;
    line-height: 30px;
}

/* Navigation */
body.nav-open {
    overflow: hidden;
}

.dropdown-item:active {
    background-color: #6A6A6A;
}

/* Trail Fade Animation */
.trail_fade {
    transition: opacity 1s ease-in-out;
    opacity: 0;
    display: none;
}

.trail_fade.show {
    opacity: 1;
    display: block;
}

/* Home Content */
.homecontent {
    width: 100%;
}

.homecontent .row {
    margin-left: 0px;
    margin-right: 0px;
}

/* Map */
#master_map {
    width: 100%;
    height: 700px;
    position: relative;
}

/* Search Results */
.search_results {
    font-size: 18px;
    padding-bottom: 3px;
}

.generalback {
    background-color: #FFF;
}

/* Trail Cards */
.all-trails-holder {
    position: relative;
    margin: 3px;
}

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

.all-trails-holder h4 {
    color: rgb(255, 255, 255);
    position: absolute;
    bottom: 0px;
    padding: 15px 5px 5px 5px;
    margin-bottom: 0px;
    background-image: linear-gradient(transparent, rgba(0,0,0,0.6));
    text-shadow: 1px 1px 1px rgb(0 0 0 / 90%), 0 0 1px rgb(0 0 0 / 90%);
    -webkit-font-smoothing: antialiased;
    width: 100%;
    font-size: 14px;
    text-align: left;
}

/* Alert Box */
.alert_box h2 {
    color: #000000;
}

.alert_box p {
    color: #000000;
}

/* Loading Spinner */
#loading-spinner {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

#loading-spinner div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: loading-spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

#loading-spinner div:nth-child(1) {
    animation-delay: -0.45s;
}

#loading-spinner div:nth-child(2) {
    animation-delay: -0.3s;
}

#loading-spinner div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes loading-spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 
/* Search Bar Styles */
.search-bar input::placeholder {
    font-family: colfax-web, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    opacity: 0.5;
    color: #000000;
}



.examples-list {
    margin-bottom: 16px;
}
.search-text-under {
    font-size: 10px;
    font-family: colfax-web, sans-serif;
    font-weight: 400;
    color: #A9A9A9;
}

.search-example-link {
    color: #A9A9A9;
    text-decoration: none;
    font-size: 10px;
    font-family: colfax-web, sans-serif;
    transition: color 0.3s ease;
}

.search-example-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.grid_holder {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.grid_holder:hover {
    transform: translateY(-2px);
}

.grid_content {
    padding: 10px;
    position: relative;
    z-index: 2;
}

.grid_content h4 {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.grid_content span {
    font-size: 12px;
    color: #A9A9A9;
}

.static-map {
    position: absolute;
    
    width: 100%;
    height: 100%;
    z-index: 1;
   
}

.static-map img {
    width: 100px;
    height: 100px;
    object-fit: cover;
	border-radius: 50px;
	 position: absolute;
    top: 20px;
    right: 20px;
  	border:2px #ffffff solid;
    z-index: 1;
}

/* Algolia Autocomplete */
.algolia-autocomplete .aa-input,
.algolia-autocomplete .aa-hint {
    width: 100%;
}

.algolia-autocomplete .aa-hint {
    color: #999;
}

.algolia-autocomplete .aa-dropdown-menu {
    width: 100%;
    background-color: #000000;
    border: 1px solid #999;
    border-top: none;
}

.algolia-autocomplete .aa-dropdown-menu .aa-suggestion {
    cursor: pointer;
}

.algolia-autocomplete .aa-dropdown-menu .aa-suggestion.aa-cursor {
    background-color: #B2D7FF;
}

.aa-suggestion strong {
    color: #000000;
}

.aa-suggestion a {
    color: #000000;
    font-size: 12px;
}

/* Home Page Styles */
.carousel-caption {
    position: absolute;
    top: 42%;
    transform: translate(0%, -30%);
    padding-top: 100px;
    z-index: 4;
}

.hero .ratio::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, #000000, #333333);
    opacity: .7;
}

.hero h3 {
    font-family: colfax-web, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #FD7763;
}

.hero .her_img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, #000000, #333333);
    opacity: .6;
}

.color_change {
    height: 300px;
    background: linear-gradient(to bottom, transparent, #000000);
    position: absolute;
    bottom: 0;
    z-index: 3;
    width: 100%;
}

/* Options Panel */
.options-panel {
    position: absolute;
    left: 0;
    margin-top: 0px;
    z-index: 122;
    width: 55px;
    height: 100%;
    padding: 4px;
    -webkit-font-smoothing: antialiased;
    background: rgba(0, 0, 0);
    color: #FFFFFF;
    box-shadow: 2px 0px 5px rgba(0, 0, 0, .3);
    transition: all 0.5s ease-in-out;
}

.options_buttons {
    padding-top: 50px;
}

.options-panel a {
    color: #ffffff;
    font-size: 20px;
}

.options-panel a:hover {
    color: #D1D9F7;
    transition: all 0.2s ease-in-out;
}

/* Scroll Animation */
.scrolly {
    color: #ffffff;
    font-size: 40px;
}

.scrolly:hover {
    cursor: pointer;
    animation-play-state: paused;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

/* Home Layout Typography */
.home_layout h2 {
    color: #FFF;
    text-align: center;
    font-family: colfax-web, sans-serif;
    font-weight: 700;
    font-size: 36px;
    font-style: normal;
    line-height: 53px;
    text-transform: uppercase;
	margin-bottom: 0px;
}

.home_layout h3 {
    color: #FD7763;
    font-family: colfax-web, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
	text-transform: uppercase;
}

.home_layout p,
.home_layout .press_text {
    color: #FFF;
    text-align: center;
    font-family: colfax-web, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}
/* Grid Layout */
.grid_holder {
    position: relative;
    margin: .4rem;
}

.grid_holder::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, transparent, #000000);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    opacity: .7;
}

.grid_content {
    position: absolute;
    bottom: 10px;
    left: 15px;
    width: 90%;
    z-index: 200;
    color: #FFF;
    font-family: colfax-web, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.grid_content h4 {
    font-family: colfax-web, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    position: relative;
}

.grid_content h4 strong {
    font-family: colfax-web, sans-serif;
    font-weight: 700;
    position: relative;
}

.grid_content h4:after,
.grid_content h4 strong:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.grid_content h4:hover:after,
.grid_content h4 strong:hover:after {
    width: 100%;
    left: 0;
}

.grid_content h5 {
    color: #ffffff;
    font-size: 12px;
    font-family: colfax-web, sans-serif;
    font-weight: 400;
    padding-top: 5px;
}

.grid_img {
    border-radius: 10px;
    position: relative;
    object-fit: cover;
    width: 100%;
    height: 240px;
}

.grid_content a {
    color: #ffffff;
    font-family: colfax-web, sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}

.grid_content a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
}



/* Search Input */
#search-terms::placeholder {
    font-size: 14px;
    color: #999;
    font-family: colfax-web, sans-serif;
    font-weight: 400;
}

/* Observation Grid */
.obs_grid_holder {
    position: relative;
}

.obs_grid_content {
    z-index: 200;
    color: #FFF;
    font-family: colfax-web, sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: normal;
    text-transform: uppercase;
}

.obs_grid_holder a,
.obs_grid_content a {
    color: #ffffff;
    text-decoration: none;
    font-family: colfax-web, sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.obs_grid_holder a:hover,
.obs_grid_content a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
}
#results_parent .grid_content h4 {
    font-family: colfax-web, sans-serif;
    font-size: 16px;
	margin-bottom:5px;
    font-style: normal;
    font-weight: 700;
    position: relative;
}

.home_grid .grid_content h4 {
    font-family: colfax-web, sans-serif;
    font-size: 16px;
	margin-bottom:5px;
    font-style: normal;
    font-weight: 700;
    position: relative;
}
.inat_title {
    font-size: 16px;
}

.image-link {
    text-decoration: none;
    display: block;
}

.image-link:after {
    display: none; /* Prevent underline on image */
}

/* Grid Content Styles */
.obs_grid_content h4 {
    font-family: colfax-web, sans-serif;
    font-style: italic;
    font-size: 13px !important;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.obs_grid_content h4 strong {
    font-family: colfax-web, sans-serif;
    font-weight: 700;
}

.obs_grid_content h5 {
    color: #ffffff;
    font-size: 12px;
    font-family: colfax-web, sans-serif;
    font-weight: 500;
    padding-top: 5px;
}

.obs_grid_content span,
.obs_distance {
    font-family: colfax-web, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
}

/* Image Styles */
.obs_grid_img {
    border-radius: 50%;
    object-fit: cover;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

/* Title Link Styles */
.trail-link {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.trail-link h4 {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.trail-link:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.trail-link:hover:after {
    width: 100%;
    left: 0;
}

.trail-link:hover .obs_grid_img {
    opacity: 0.8;
}

.trail-type {
    font-size: 13px;
    margin-top: 7px;
    color: #A9A9A9;
}

/* Grid Layout */
.obs_grid_holder {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.obs_grid_content {
    padding-bottom: 10px;
}

/* Example Links */
.search-text-under {
    font-size: 10px;
    font-family: colfax-web, sans-serif;
    font-weight: 400;
    color: #A9A9A9;
}

.search-example-link {
    color: #A9A9A9;
    text-decoration: none;
    font-size: 10px;
    font-family: colfax-web, sans-serif;
    transition: color 0.3s ease;
}

.search-example-link:hover {
    color: #ffffff;
    text-decoration: none;
}
/* Modal */
.obs_modal {
    font-size: 14px;
}

.obs_modal p {
    padding: 0;
    margin: 0;
}

.obs_modal h4 {
    font-style: italic;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

/* Image Alignment */
img.alignright,
a img.alignright {
    float: right;
    margin: 10px 0 1em 1em;
}

img.alignleft,
a img.alignleft {
    float: left;
    margin: 10px 1em 1em 0;
}

img.aligncenter,
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

a img {
    border: none;
}

/* Trail Preview */
.trail_preview {
    position: relative;
    margin-bottom: 5px;
}

.trail_preview a {
    color: #FFF;
}

/* Content Layout */
.bodycontent {
    margin: 5px 10px 0;
}

.traillist {
    margin-left: 25px;
    margin-right: 25px;
}
/* ///////     Basic Page ///////* */
/* Basic Layout */
.basic_top {
    height: 50px;
    width: 100%;
    position: relative;
    background-color: #428bca;
}

.basic_top h1 {
    color: #ffffff;
    margin: 0 0 0 10px;
    padding: 4px 0 0 0;
}

.basic_top_overlay {
    position: absolute;
    top: 10px;
}

.basic_top_overlay h1 {
    text-shadow: 2px 2px 2px #333;
    width: 100%;
    font-size: 34px;
    color: #FFFFFF;
}

.basic_top_overlay h2 {
    text-shadow: 2px 2px 2px #333;
    width: 100%;
    font-size: 24px;
    color: #FFFFFF;
    margin: -5px 0 0 10px;
}

/* Content Layout */
.basic_content_left {
    width: 70%;
    float: left;
    border-right: 1px solid #dddddd;
    background-color: #FFFFFF;
    padding: 0 15px;
    max-height: 100%;
}

.basic_content_right {
    width: 30%;
    float: left;
    background-color: #FFFFFF;
    padding: 0 15px;
}

/* Form Styles */
.form_site span {
    color: #DC0004;
    font-size: 15px;
}

/* All Trails Page */
.all_trails_page {
    margin-top: 50px;
    width: 100%;
    position: relative;
    background-color: #171717;
}

.all_trails_page .home_img {
    position: absolute;
    top: -42px;
    right: 5px;
}

.all_search_box h1 {
    font-size: 30px;
    font-family: colfax-web, sans-serif;
    font-weight: 400;
    color: #ffffff;
}

/* Name Overlay */
.name {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 5px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.4);
    overflow: hidden;
    text-shadow: 2px 2px 2px #333;
    color: #FFFFFF;
    z-index: 30;
}

.name h3 {
    margin: 0;
}

/* Trail Page Styles */
.headeredit {
    position: relative;
    z-index: 100;
    left: 50px;
    background-color: #FFF;
    width: 200px;
    top: 10px;
}

.trail_page_container {
    position: absolute;
    width: 100%;
    top: 0;
}

.titleinfo {
    position: absolute;
    margin-top: 10px;
    left: 20px;
    z-index: 100;
    color: #FFF;
    text-shadow: 2px 2px 2px #333;
}

.titleinfo h1 {
    margin: 0;
    padding: 0;
}

.shareembed {
    position: absolute;
    margin-top: 10px;
    right: 20px;
    z-index: 100;
    color: #FFF;
    text-shadow: 2px 2px 2px #333;
    font-size: 30px;
}

/* Footer */
#footer {
    background-image: url(https://d3kfjvhh435dey.cloudfront.net/_laravel/images/uploads/2023/12/ftbk.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: bottom;
    background-size: 40%;
    width: 100%;
    background-color: #0E0E0E;
    color: #ffffff;
}

#footer p {
    font-size: 14px;
}

#footer h3,
#footer h4 {
    font-family: colfax-web, sans-serif;
    font-weight: 500;
    font-style: normal;
}

#footer h4 {
    font-size: 18px;
    text-transform: uppercase;
}

.footer-logo {
    width: 200px;
}

#footer .mob_footer_1 {
    color: #FFFFFF;
    font-size: 10px;
    padding-left: 5px;
    line-height: 1.2;
}

#footer .mob_footer_1 a {
    color: #FFFFFF;
    font-size: 12px;
}

/* Modal Styles */
.modal-header,
.modal-body.obs_modal {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Home Layout */
.home_layout ul {
    margin-left: 0;
    padding-left: 0;
}

.home_layout ul li {
    color: #ffffff;
}

/* Link Animations */
.home-search-suprise a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.home-search-suprise a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.home-search-suprise a:hover:after {
    width: 100%;
    left: 0;
}

/* Trail Info Bar */
.trail-info-bar {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 35px;
    padding: 7px 10px 0 65px;
    margin-bottom: 0;
    font-size: 14px;
    font-family: colfax-web, sans-serif;
    font-weight: 400;
    z-index: 109;
    -webkit-font-smoothing: antialiased;
    background: rgba(0, 0, 0, .8);
    color: #FFFFFF;
    transition: all 0.5s ease-in-out;
}

.trail-info-bar .info-left {
    float: left;
    width: 50%;
    line-height: 1.5;
}

.trail-info-bar .info-right {
    float: right;
    width: 50%;
    line-height: 1.5;
}

.trail-info-bar a {
    color: #ffffff;
}

.trail-info-bar a:hover,
.trail-info-bar .info-left a:hover,
.trail-info-bar #screen-capture-btn:hover,
.trail-info-bar #convert-screen-measurements:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ada-icons {
    color: #ffffff;
    font-size: 30px;
}
/* Map Image */
.map_img img {
    height: 160px;
}

/* Tooltips */
.simpleTooltip {
    position: absolute;
    background-color: #fff;
    border: 2px solid #428bca;
    padding: 5px;
    color: #333;
    z-index: 22;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
}

.simpleTooltip .arrow-down {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #428bca;
    position: absolute;
    left: 50%;
    top: 100%;
    margin-left: -5px;
    margin-top: 2px;
}

.simpleTooltip .arrow-left {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #428bca;
    position: absolute;
    left: 0;
    top: 50%;
    margin-left: -8px;
    margin-top: -5px;
}

/* 404 Page */
.d404 {
    width: 700px;
    margin: 0 auto;
}

.d404 h2 {
    font-size: 38px;
    text-align: center;
}

.d404 p {
    font-size: 16px;
    text-align: center;
}

/* Dropdown Submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu > a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin: 5px -10px 0 0;
}

.dropdown-submenu:hover > a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left > .dropdown-menu {
    left: -100%;
    margin-left: 10px;
    border-radius: 6px 0 6px 6px;
}

/* Navigation */
#new-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    padding: 5px 10px;
    margin: 0;
    z-index: 1040;
}

#new-nav i {
    font-size: 24px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .6), 0 0 30px rgba(0, 0, 0, .1);
    -webkit-font-smoothing: antialiased;
}

#new-nav .row {
    margin-left: 5px;
}

#new-nav .btn-primary {
    color: #fff;
    background: none;
    border: none;
}

#new-nav .alignleft {
    height: 30px;
}

#new-nav .btn-lg,
#new-nav .btn {
    margin: 0;
    padding: 5px 0 0 5px;
}

#new-nav .btn:focus {
    outline: none;
}

#new-nav input {
    float: right;
    font-family: colfax-web, sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #ffffff;
}

#new-nav ::-webkit-input-placeholder,
#new-nav :-moz-placeholder,
#new-nav ::-moz-placeholder,
#new-nav :-ms-input-placeholder {
    color: #E0E0E0;
}

.admin-bar #new-nav {
    top: 32px;
}

/* Navigation Header */
.nav_header {
    background-color: #ffffff;
    padding: 5px 0;
    border-radius: 0;
}

.nav_header a {
    text-decoration: none;
}

.nav_header a .home-link {
    font-size: 1em;
    color: white;
    margin-top: 3px;
}

/* Navigation Modal */
#nav-modal .modal-dialog {
    width: auto;
    margin: 30px;
}

#nav-modal .modal-body h3 {
    text-align: center;
}

#nav-modal .modal-body .thumb-holder a {
    white-space: normal;
}

#nav-modal .main-links .btn-m-first {
    background: linear-gradient(to top right, #d9534f, #337ab7);
}

#nav-modal .main-links .btn-m-second {
    background: linear-gradient(to top left, #d9534f, #337ab7);
}

.nav_footer {
    display: none;
}

/* Search Results */
#search-results {
    position: absolute;
    top: 50px;
    z-index: 400;
    width: 75%;
    left: 12.5%;
    right: 12.5%;
    background: #FFFFFF;
}

.aa-dataset-0 {
    max-height: 660px;
    overflow-y: scroll;
}

.aa-dropdown-menu {
    width: 100%;
    background-color: white;
    padding: 10px;
}

.aa-empty {
    margin-left: 10px;
}

/* Search Header */
.searchh1 {
    background-color: #428bca;
}

.searchh1 h1 {
    color: #FFFFFF;
    padding: 5px 5px 5px 10px;
    margin: 0;
}

.searchh1 span {
    color: white;
    font-size: 1.2em;
}

.searchh1 .algolia-logo-holder {
    float: right;
}

.searchh1 .algolia-logo-holder img {
    height: 30px;
    display: inline-block;
}

/* Main Menu Modal */
.modal-main-menu .modal-body {
    padding: 20px;
}

.modal-main-menu .modal-header img {
    height: 30px;
}

.modal-main-menu .modal-header .close {
    opacity: 1;
}

.modal-main-menu .modal-header i.fa {
    color: #ffffff;
    padding-top: 4px;
}
.modal-main-menu .mmm-d1 {
    padding-right: 5px;
}

/* Header Elements */
#fMaps-h,
#fTrails-h,
#rMaps-h,
#rTrails-h,
.searchh1 h3 {
    color: #ffffff;
    font-size: 22px;
    -webkit-font-smoothing: antialiased;
}
/* Form Elements */
.form_site input,
.form_site textarea {
    font-family: colfax-web, sans-serif;
    font-weight: 400;
}

/* Button Styles */
.btn-blue-round {
    background-color: #3073AC;
    color: #ffffff;
    border: 1px solid #3073AC;
    border-radius: 20px;
    font-family: colfax-web, sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    padding: .5em 1em;
}

.btn-blue-round:hover {
    background-color: #ffffff;
    color: #3073AC;
    border: 1px solid #3073AC;
}

.btn-hom-peach {
    background-color: #fd7763;
    border: 1px solid #fd7763;
    border-radius: 20px;
    font-family: colfax-web, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 14px;
    padding: .5em .4em;
    transition: all 0.5s ease;
}

.btn-hom-peach:hover {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #fd7763;
}

.btn-hom-peach-small {
    background-color: #fd7763;
    border: 1px solid #fd7763;
    border-radius: 15px;
    font-family: colfax-web, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 12px;
    padding: .5em 1em;
    transition: all 0.5s ease;
}

.btn-hom-peach-small:hover {
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #fd7763;
}

/* Trail Featured Button */
.trail-featured-btn {
    position: absolute;
    z-index: 300;
    bottom: 20px;
    left: 20px;
}

.trail-featured-btn h4 {
    color: #FFF;
    font-family: colfax-web, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.trail-featured-btn h5 {
    color: #FFF;
    font-family: colfax-web, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Layout Components */
.home_layout .ratio::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, transparent, #000000);
    opacity: .7;
}

.i5x {
    width: 20%;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

#tcontainer {
    padding: 0 15px;
}

/* Thumbnail Styles */
.thumb_container {
    padding: 0 15px;
}

.thumb-holder {
    float: left;
    position: relative;
    border: 1px solid white;
    width: 12.5%;
    height: 80px;
    overflow: hidden;
}

.thumb-holder img {
    width: 100%;
    height: 130px;
    margin-top: -35px;
}

.thumb-holder h4 {
    color: #FFFFFF;
    font-family: colfax-web, sans-serif;
    font-weight: 400;
    position: absolute;
    bottom: 0;
    padding: 16px 5px 5px;
    margin-bottom: 0;
    text-align: left;
    background-image: linear-gradient(transparent, rgba(0,0,0,0.6));
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .9), 0 0 1px rgba(0, 0, 0, .9);
    -webkit-font-smoothing: antialiased;
    width: 100%;
    font-size: 12px;
}

.thumb-holder h4 em {
    background-color: #CFEAFA;
    font-style: normal;
}

.thumb-holder span {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 14px;
    color: white;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .9), 0 0 1px rgba(0, 0, 0, .9);
    -webkit-font-smoothing: antialiased;
}

/* Enhanced Thumbnail Styles */
.thumb-holder-2 {
    position: relative;
    margin: 0 5px 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border-radius: 0;
    box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.2), -2px 5px 10px rgba(0, 0, 0, 0.2);
}

.thumb-holder-2 img {
    object-fit: cover;
    width: 100%;
    height: 220px;
}

.thumb-holder-2 h4 {
    color: #FFFFFF;
    position: absolute;
    bottom: 0;
    padding: 16px 5px 5px;
    margin-bottom: 0;
    text-align: left;
    background-image: linear-gradient(transparent, rgba(0,0,0,0.6));
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .9), 0 0 1px rgba(0, 0, 0, .9);
    -webkit-font-smoothing: antialiased;
    width: 100%;
    font-size: 14px;
}

.thumb-holder-2 span {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 14px;
    color: white;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .9), 0 0 1px rgba(0, 0, 0, .9);
    -webkit-font-smoothing: antialiased;
}

/* Search Form */
#search-form {
    width: 100%;
}

#search-label {
    position: absolute;
    right: 0;
    background-color: #428bca;
    color: white;
    z-index: 30;
}

#search-label label {
    width: 35px;
    height: 30px;
    padding: 4px 6px;
    cursor: pointer;
}

/* Map Elements */
.map-pointer {
    cursor: pointer;
    height: 86px;
    width: 102px;
    position: absolute;
    z-index: 999;
    pointer-events: none;
}

.map-pointer .mapthumb {
    max-width: 100%;
    position: relative;
    height: 80px;
    width: 100px;
    border: 1px solid white;
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.2s;
}

.map-pointer .caret {
    position: absolute;
    top: 42px;
    left: 14px;
    border: 15px solid transparent;
    border-bottom: 0;
    border-top: 7.5px solid #ffffff;
    transition: top 0.2s;
}

.wide-map-pointer {
    cursor: pointer;
    z-index: 999;
    top: -13px;
    position: relative;
}

.wide-map-pointer .wide-thumb {
    max-width: 100%;
    position: relative;
    height: 100px;
    width: 180px;
    border: 1px solid #ffffff !important;
    background-image: url('/images/loading.gif');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.2s;
    object-fit: cover;
    object-position: center;
}
/* Side Panel */
.side-panel {
    width: 400px;
    position: fixed;
    z-index: 100;
    left: -400px;
    top: 0;
    bottom: 0;
    height: 100%;
    background-color: #000000;
    border-left: 1px solid #121212;
    padding-right: 15px;
    transition: left 0.5s;
}

.side-panel.open {
    left: 55px;
}

.panel-content {
    display: none;
    color: #ffffff;
}

.panel-content p {
    font-size: 14px;
}

.panel-content h3 {
    font-size: 18px;
}

.side-panel .smaller-text {
    margin-top: 5px;
    color: #ffffff;
}

.side-panel .hide-side-panel {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #ffffff;
    cursor: pointer;
}

.options_buttons a {
    font-size: 25px;
}

/* Side Panel Container Layout */
.side-panel .side-panel-container .label-parent {
    display: flex;
    justify-content: space-between;
}

.side-panel .side-panel-container .group-header {
    font-weight: bold;
    margin: 5px 0 9px;
    text-decoration: underline;
}

.side-panel .side-panel-container .left {
    padding-left: 0;
}

.side-panel .side-panel-container .right {
    display: flex;
    align-items: center;
    padding-left: 20px;
    white-space: nowrap;
}

/* Share Link Styles */
.share_link {
    width: 100%;
    padding: 5px;
    background-color: #1a1a1a !important;
    color: #ffffff;
    font-family: monospace;
    font-size: 14px;
    border: 1px solid #333;
    border-radius: 4px;
    transition: border-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.share_link:focus {
    outline: none;
    border-color: #4a9eff;
    box-shadow: 0 0 0 2px rgba(74, 158, 255, 0.1);
    background-color: #1a1a1a !important;
}

.share_link[readonly] {
    cursor: copy;
    user-select: text;
}

.share_link:hover {
    border-color: #444;
}

.side-panel .share_link {
    width: 100%;
    border-style: solid;
    border-width: 1px;
}

.side-panel .share_link_holder a {
    font-size: 18px;
}

.side-panel .map-about {
    margin-top: 20px;
}

/* Wide Map Pointer */
.wide-map-pointer a {
    color: red;
}

.wide-map-pointer a:hover,
.wide-map-pointer a:visited {
    border: 0 !important;
}

.wide-map-pointer .scene-trail-name {
    position: absolute;
    bottom: 2px;
    left: 2px;
    padding: 0 5px 0 5px;
    margin-bottom: 5px;
    text-align: left;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9), 0 0 1px rgba(0, 0, 0, 0.9);
    -webkit-font-smoothing: antialiased;
    width: 100%;
    font-size: 12px;
    z-index: 111111;
    font-family: colfax-web, sans-serif;
    font-weight: 100;
    color: #ffffff;
    line-height: 14px;
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.wide-map-pointer .caret {
    position: absolute;
    top: 100px;
    left: 75px;
    border: 15px solid transparent;
    border-bottom: 0;
    border-top: 7.5px solid #ffffff;
}

/* Map Highlight */
.map-highlight,
.hotspot-category {
    cursor: pointer;
    height: 47px;
    z-index: 999;
}

.map-highlight .thumb,
.hotspot-category .thumb {
    max-width: 100%;
    position: relative;
    height: 40px;
    width: 50px;
    border: 1px solid white;
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.map-highlight .caret,
.hotspot-category .caret {
    position: absolute;
    top: 40px;
    left: 19px;
    border: 15px solid transparent;
    border-bottom: 0;
    border-top: 7.5px solid #ffffff;
}

/* Hotspot Categories */
.hotspot-category-w-highlight {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 4px;
    z-index: 999;
}

.carousel-hotspot-category {
    position: absolute;
    top: 32px;
    left: 10px;
    width: 40px !important;
    height: 40px !important;
}
/* Hotspot Base Styles */
.hotspot-dot {
    border-radius: 5px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
    background: white;
    background-clip: padding-box;
}

.hotspot-dot.hotspot-dot-type-1 {
    border: 3px solid orange;
}

.hotspot-dot.hotspot-dot-type-2 {
    border: 3px solid grey;
}

.hotspot-dot.hotspot-dot-type-3 {
    border: 3px solid green;
}

/* Hotspot Container */
.hotspot {
    font-family: colfax-web, sans-serif;
    font-weight: 100;
    position: absolute;
    visibility: hidden;
    text-align: center;
    color: #333;
    z-index: 99999;
    top: -40px;
    left: -38px;
    font-size: 12px;
    line-height: 14px;
    white-space: nowrap;
    box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
    max-height: 50px;
    min-width: 80px;
    border: 2px solid #428bca;
    background-color: #fff;
    padding: 3px;
    border-radius: 5px;
    margin-top: 5px;
}

/* Hotspot Types */
.hotspot.hotspot-type-1 {
    border: 2px solid orange;
    background-color: orange;
    color: #ffffff;
}

.hotspot.hotspot-type-2 {
    min-width: 30px;
    left: -16px;
    border: 2px solid grey;
}

.hotspot.hotspot-type-3 {
    border: 2px solid green;
    background-color: green;
    color: #ffffff;
}

.hotspot.new-maps {
    visibility: visible;
}

/* Hotspot Arrows */
.hotspot .arrow-down {
    position: absolute;
    left: 30px;
    bottom: -8px;
    width: 0;
    height: 0;
    border-top: 6px solid #428bca;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top-color: inherit;
}

.hotspot .arrow-left {
    position: absolute;
    left: -10px;
    top: 7px;
    bottom: -8px;
    width: 0;
    height: 0;
    border-top: 6px solid #428bca;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    transform: rotate(90deg);
    border-top-color: inherit;
}

.hotspot.hotspot-type-1 .arrow-down,
.hotspot.hotspot-type-1 .arrow-left {
    border-top: 6px solid orange;
}

.hotspot.hotspot-type-2 .arrow-down {
    left: 8px;
    border-top: 6px solid grey;
}

.hotspot.hotspot-type-3 .arrow-down {
    border-top: 6px solid green;
}

/* Button Styles */
.btn-white {
    border: 1px solid white;
    color: white;
    background: rgba(0, 71, 201, 0.15);
    padding: 2px 7px;
    transition: all 0.5s ease;
}

.btn-white-share {
    margin-right: 2px;
    padding: 4px 9px;
}

.btn-white:hover:not([disabled]),
.btn-white.toggle-active {
    border: 1px solid #337ab7;
    color: #337ab7;
    background: white;
}

.btn-white:focus {
    color: white;
}

.btn-white:hover:focus:not([disabled]),
.btn-white.toggle-active:focus {
    color: #337ab7;
}

/* Map Controls */
.mapboxgl-ctrl-attrib a:nth-child(n+3):nth-child(-n+7) {
    display: none;
}

.tooltip-inner {
    font-family: colfax-web, sans-serif;
    font-weight: 400;
}

#viewarea-canvas:focus {
    outline: 0;
}

/* Visual Pages */
.visual-home {
    position: relative;
    overflow: hidden;
    margin: 4px;
    box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.2), -2px 5px 10px rgba(0, 0, 0, 0.2);
}

.visual-home img {
    object-fit: cover;
    width: 100%;
    height: 220px;
}

.visual-home h4 {
    color: #ffffff;
    position: absolute;
    bottom: 0;
    padding: 15px 5px 5px;
    margin-bottom: 0;
    background-image: linear-gradient(transparent, rgba(0,0,0,0.6));
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .9), 0 0 1px rgba(0, 0, 0, .9);
    -webkit-font-smoothing: antialiased;
    text-align: left;
    width: 100%;
    font-size: 14px;
}

.visual-home span {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 13px;
    color: white;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .9), 0 0 1px rgba(0, 0, 0, .9);
    -webkit-font-smoothing: antialiased;
}

/* Pagination */
.pagination .page-link {
    position: relative;
    display: block;
    padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
    font-size: var(--bs-pagination-font-size);
    color: #ffffff;
    text-decoration: none;
    background-color: var(--bs-pagination-bg);
    border: var(--bs-pagination-border-width) solid #ffffff;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, 
                border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.pagination .active > .page-link,
.page-link.active {
    z-index: 3;
    color: #000000;
    background-color: #ffffff;
    border-color: #ffffff;
}
/* Visual High Component */
.visual_high {
    position: relative;
    overflow: hidden;
    margin: 4px;
    box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.2), -2px 5px 10px rgba(0, 0, 0, 0.2);
}

.visual_high img {
    object-fit: cover;
    width: 100%;
    height: 150px;
}

.visual_high h4 {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px 5px 5px;
    margin-bottom: 0;
    color: #ffffff;
    font-size: 14px;
    text-align: left;
    background-image: linear-gradient(transparent, rgba(0,0,0,0.6));
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9), 0 0 1px rgba(0, 0, 0, 0.9);
    -webkit-font-smoothing: antialiased;
}

.visual_high span {
    position: absolute;
    top: 0;
    left: 5px;
    font-size: 18px;
    color: white;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9), 0 0 1px rgba(0, 0, 0, 0.9);
    -webkit-font-smoothing: antialiased;
}

/* Home Holder Component */
.holder-home {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin: 0 5px 10px;
    overflow: hidden;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid white;
    border-radius: 0;
    box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.2), -2px 5px 10px rgba(0, 0, 0, 0.2);
}

.holder-home img {
    object-fit: cover;
    width: 100%;
    height: 220px;
}

.holder-home h4 {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px 5px 5px;
    margin-bottom: 0;
    color: #ffffff;
    font-size: 14px;
    text-align: left;
    background-image: linear-gradient(transparent, rgba(0,0,0,0.6));
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9), 0 0 1px rgba(0, 0, 0, 0.9);
    -webkit-font-smoothing: antialiased;
}

.holder-home span {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 15px;
    color: white;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9), 0 0 1px rgba(0, 0, 0, 0.9);
    -webkit-font-smoothing: antialiased;
}

/* Observation Grid */
.obs_grid_holder {
    position: relative;
}

.obs_grid_content {
    z-index: 200;
    color: #FFF;
    font-family: colfax-web, sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.obs_grid_holder a,
.obs_grid_content a {
    color: #ffffff;
    text-decoration: none;
    font-family: colfax-web, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}

.obs_grid_holder a:hover,
.obs_grid_content a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
}



/* Navigation Menu */
#new-nav-menu #new-nav-menu-close > * {
    cursor: pointer;
}

#new-nav-menu-search {
    height: 50px;
}

#new-nav-menu-search #search-input {
    height: inherit;
}

#new-nav-menu-items {
    list-style: none;
    width: 100%;
    height: calc(100% - 50px);
    padding: 0;
    margin: 0;
}

.new-nav-menu-item {
    float: left;
    height: 100%;
    width: 20%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    color: #fff;
    opacity: 0.6;
}

.new-nav-menu-item:hover {
    background-color: rgba(0,0,0,0.5);
    opacity: 1;
}

.new-nav-menu-item.active {
    background-color: rgba(0,0,0,0.7);
    opacity: 1;
}

.new-nav-menu-item-inner {
    text-align: center;
}

.new-nav-menu-item-inner > .fa {
    font-size: 30px;
    margin-bottom: 2px;
}

.new-nav-menu-active-marker {
    position: absolute;
    bottom: 0;
    width: 20%;
    height: 3px;
    background-color: orange;
    display: none;
}

.new-nav-menu-active-marker::before {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    height: 0;
    width: 0;
    border: 10px solid transparent;
    border-bottom-color: orange;
}

.new-nav-menu-item.active .new-nav-menu-active-marker {
    display: block;
}

/* Media Queries */
@media (max-width: 1200px) {
    .overlay-text h4 {
        font-size: 18px;
        font-family: colfax-web, sans-serif;
        font-weight: 100;
        line-height: 30px;
    }

    .carousel-caption {
        position: absolute;
        top: 32%;
        transform: translate(0, -30%);
        padding-top: 100px;
        z-index: 4;
    }
}
@media (max-width: 768px) {

/* Base Styles */
body {
    font-family: colfax-web, sans-serif;
    font-weight: 400;
    background-color: #000000;
    background-image: url('https://d3kfjvhh435dey.cloudfront.net/_laravel/images/uploads/2023/12/pattern.png');
    background-repeat: no-repeat;
    background-size: 90%;
    background-attachment: fixed;
    background-position: right;
}

/* Grid Container */
.obs_grid_holder {
    position: relative;
}

.obs_grid_content {
    z-index: 200;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

/* Links */
.obs_grid_holder a,
.obs_grid_content a {
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 14px;
}

.obs_grid_holder a:hover,
.obs_grid_content a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Typography */
.inat_title {
    font-size: 14px;
}

.obs_grid_content h4 {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 500;
    font-style: italic;
    margin: 0;
    padding: 0;
}

.obs_grid_content h4 strong {
    font-family: var(--font-primary);
    font-weight: 700;
}

.obs_grid_content h5 {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 400;
    padding-top: 5px;
}

.obs_grid_content span,
.obs_distance {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
}

/* Images */
.obs_grid_img {
    border-radius: 50%;
    object-fit: cover;
    width: 40px;
    height: 40px;
}

/* Modal */
.obs_modal {
    font-size: 12px;
}

.obs_modal p {
    margin: 0;
    padding: 0;
}

.obs_modal h4 {
    font-size: 16px;
    font-style: italic;
    margin: 0;
    padding: 0;
}

/* Navigation */
.navbar .header-logo {
    width: 130px;
}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
    border: 0;
    box-shadow: none;
}

/* Side Panel */
.options-panel {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 122;
    width: 45px;
    height: 100%;
    padding: 4px;
    background: rgba(0, 0, 0);
    color: #ffffff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease-in-out;
    -webkit-font-smoothing: antialiased;
}
/* Options Panel */
.options_buttons {
    padding-top: 50px;
}

.options-panel a {
    color: #ffffff;
    font-size: 16px;
}

.options-panel a:hover {
    color: #D1D9F7;
    transition: all 0.2s ease-in-out;
}

/* Side Panel */
.side-panel.open {
    left: 45px;
}

.side-panel div {
    font-family: colfax-web, sans-serif;
    font-style: normal;
    line-height: normal;
}

/* Hero Section */
.hero .her_img img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.hero .ratio-16x9 {
    height: 77vh;
    background-image: url('https://d3kfjvhh435dey.cloudfront.net/_laravel/images/homenew-.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero video {
    display: none;
}

/* Carousel and Overlay */
.carousel-caption {
    position: absolute;
    top: 32%;
    transform: translate(0, -30%);
    width: 90%;
    max-width: 600px;
    text-align: center;
    padding-top: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.overlay-text h1 {
      font-family: colfax-web, sans-serif;
    font-size: 30px;
    text-transform: uppercase;
}
	
	.color_change {
    height: 50px;
    background: linear-gradient(to bottom, transparent, #000000);
    position: absolute;
    bottom: 0;
    z-index: 3;
    width: 100%;
}

.overlay-text h4 {
       font-family: colfax-web, sans-serif;
    font-size: 16px;
    line-height: 20px;
}

/* Layout and Grid */
#tcontainer {
    padding: 0 15px;
}

.thumb-holder {
    width: 25%;
}

.grid_content h4 {
       font-family: colfax-web, sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
}

/* Search and Maps */
.all_search_box .holder-maps {
    line-height: 15px;
    font-size: 14px;
}

.static-map img {
    width: 90px;
	height:90px;
    border-radius: 45px;
    border: 2px solid #ffffff;
}

.map-rotate-tools {
    display: none;
}

/* Images and Media */
.about_images_block img {
    position: relative;
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}
	
	.grid_content {
    position: absolute;
    bottom: 0px;
    left: 5px;
    width: 90%;
    z-index: 200;
    color: #FFF;
    font-family: colfax-web, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.logo_set img {
    width: 95% !important;
}

/* Video Container */
.ratio_fix_mobile {
    position: relative;
    height: 800px;
    overflow: hidden;
}

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

/* Layout Components */
.i5x {
    width: 33.333333333333%;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.home_layout p {
    color: #FFF;
    text-align: center;
    font-family: colfax-web, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.trail-featured-btn {
    position: absolute;
    z-index: 300;
    bottom: 5px;
    left: 5px;
}

.home_layout h2 {
    color: #FFF;
    text-align: center;
    font-family: colfax-web, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 33px;
    text-transform: uppercase;
}

/* Navigation */
.navbar-toggler {
    color: #ffffff;
    border: 0;
}

.navbar-collapse,
.collapse {
    background-color: #000000;
    padding: 10px;
}

.nav-link {
    font-size: 14px;
    text-decoration: none;
    background: none;
    border: 0;
}

.dropdown-item {
    font-size: 14px;
}

/* Form Elements */
.input-group .btn {
    position: relative;
    z-index: 2;
    font-size: 12px;
    padding-top: 9px;
}
	/* Carousel */
.carousel-caption {
    position: absolute;
    right: 5%;
    left: 5%;
    bottom: 10em;
    color: #fff;
    text-align: center;
}

/* Navigation */
.navbar-default .navbar-toggle {
    border: none;
}

.navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #FFFFFF;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border: none;
}

/* Typography */
.map_filter h2 {
    font-size: 25px;
}

.thumb-holder h4 {
    font-size: 12px;
}

.thumb-holder span {
    font-size: 0.7em;
}

/* Search Elements */
.aa-dataset-0 {
    max-height: 330px;
}

.searchh1 h1 {
    font-size: 1.3em;
}

.searchh1 span {
    font-size: 0.6em;
}

.searchh1 .algolia-logo-holder img {
    height: 15px;
}

.all_search_box h1 {
    font-family: colfax-web, sans-serif;
    font-size: 30px;
    font-weight: 300;
    color: #ffffff;
}

.all_search_box .holder-maps {
    line-height: 15px;
}

.all_search_box .holder-home h4 {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px 5px 5px;
    margin-bottom: 0;
    color: #ffffff;
    font-size: 12px;
    line-height: 15px;
    text-align: left;
    background-image: linear-gradient(transparent, rgba(0,0,0,0.6));
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
    -webkit-font-smoothing: antialiased;
}

/* Images */
.holder-home img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Footer */
#footer {
    width: 100%;
    color: #ffffff;
    background-color: #0E0E0E;
    background-image: url(https://d3kfjvhh435dey.cloudfront.net/_laravel/images/uploads/2023/12/ftbk.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: bottom;
    background-size: 90%;
}

#footer li {
    font-size: 12px;
}

#footer .mob_footer_1 {
    margin: 0 auto;
}

/* Links */
.down_arr a {
    padding: 5px;
    font-size: 14px;
}

/* Layout */
.thumb-holder {
    width: 50%;
}

.homecontent {
    width: 100%;
    margin-top: 0;
}

.basic_content_left {
    width: 100%;
    float: left;
    padding: 0 15px;
    background-color: #FFFFFF;
    border-right: 1px solid #dddddd;
    max-height: 100%;
}

.basic_content_right {
    width: 100%;
    float: left;
    padding: 0 15px;
    background-color: #FFFFFF;
}

/* Navigation */
.mainnav .navbar-brand {
    float: left;
    padding: 4px 2px;
    font-size: 18px;
    line-height: 20px;
}

.navbar-default .navbar-toggle {
    border: none;
}

.navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #FFFFFF;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border: none;
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 6px 5px;
    margin: 6px 15px 2px 0;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
}
   
}

