:root {
    --ho-green: #1f3d2b;
    --ho-green-dark: #12241a;
    --ho-mud: #5b4636;
    --ho-tan: #c9a876;
    --ho-cream: #f6f3ea;
    --ho-orange: #c1531b;
    --lres-green: #1A6B49;
}

body {
    font-family: "Noto Sans", sans-serif;
    color: #2b2b2b;
    line-height: 1.9em;
}

h1,
h2,
h3,
h4,
h5,
.brand-font {
    font-family: "Noto Serif", serif;
    text-transform: uppercase;
    letter-spacing: .03em;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a{
    text-decoration: none;
}

.lres-green{
    color: var(--lres-green) !important;
}

.lrespage .text-link{
    color: var(--lres-green) !important;
    text-decoration: none;
}

.lrespage .text-link:focus
.lrespage .text-linkhover{
    text-decoration: underline;
}

/* Navbar */
.navbar {
    background: #EAEBEDDE;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
}

.navbar-brand img {
    height: 95px;
}

.navbar-nav .nav-link {
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.08rem;
    color: #4B4F58;
    padding: .5rem .95rem !important;
}

.navbar-nav .nav-link:hover {
    color: var(--ho-orange);
}

.dropdown:hover>.dropdown-menu {
  display: block;
}

.dropdown>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
    pointer-events: none;
}

/* Hero */
/*
.hero {
    position: relative;
    min-height: 78vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(15,25,18,.55),
        rgba(15,25,18,.75)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    color: #fff;
    font-size: 4rem;
    font-style: normal;
    font-weight: 300;
    margin-bottom: 0;
} */
.hero {
    position: relative;
    min-height: 78vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-placeholder {
    position: absolute;
    inset: 0;
    background: url("images/hero-default.jpg") center center / cover no-repeat;
    z-index: 0;
    transition: opacity .6s ease;
}

.hero-placeholder.hide {
    opacity: 0;
}

#player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(15,25,18,.15),
        rgba(15,25,18,.35)
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    color: #fff;
    font-size: 4rem;
    font-style: normal;
    font-weight: 300;
    margin-bottom: 0;
}

.hero-slide {
    position: relative;
    min-height: 78vh;
    overflow: hidden;
}

#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    height: 78vh;
}

#heroCarousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(15,25,18,.15),
        rgba(15,25,18,.45)
    );
    z-index: 2;
}

.hero-slide .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.hero-slide .carousel-indicators {
    z-index: 4;
}

/* Experience cards overlapping hero
.exp-cards {
    padding-top: 60px;
    position: relative;
    z-index: 5;
}

.exp-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
    padding: 1.75rem 1.5rem;
    height: 100%;
    border-top: 4px solid var(--ho-orange);
    transition: transform .2s ease;
}

.exp-card:hover {
    transform: translateY(-6px);
}

.exp-card h3 {
    font-size: 1.05rem;
    color: var(--ho-green-dark);
    margin-bottom: .6rem;
}

.exp-card p {
    font-size: .92rem;
    color: #555;
}

.exp-card a {
    font-family: "Noto Serif", serif;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--ho-orange);
    text-decoration: none;
    font-weight: 600;
}

.exp-card a:hover {
    text-decoration: underline;
}
 */

.exp-card {
    position: relative;
    height: 460px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.exp-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 70, 45, .45);
    transition: .35s ease;
}

.exp-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 45px 30px;
    color: #fff;
}

.exp-content h3 {
    font-size: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Hidden by default */
.exp-content p,
.exp-content .btn-exp {
    opacity: 0;
    transform: translateY(20px);
    transition: all .35s ease;
}

/* Show on hover */
.exp-card:hover p,
.exp-card:hover .btn-exp {
    opacity: 1;
    transform: translateY(0);
}

.exp-card:hover .overlay {
    background: rgba(20, 70, 45, .65);
}

.btn-exp {
    display: inline-block;
    align-self: flex-start;
    margin-top: 10px;
    padding: 12px 30px;
    background: #0b6a45;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-exp:hover {
    background: #085237;
    color: #fff;
}

/* Intro */
.intro {
    padding: 3rem 0;
}

.intro h2 {
    font-size: 2.5rem;
    letter-spacing: .03em;
    color:  var(--ho-green);
    font-weight: 300;
}

/* Feature rows */
.feature-row {
    padding: 3.5rem 0;
    background: #E9ECEC;
}

.feature-row img {
    border-radius: 6px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    width: 100%;
    object-fit: cover;
}

.feature-row .kicker {
    font-family: "Noto Serif", serif;
    color: var(--bs-green);
    font-weight: 600;
    letter-spacing: .12em;
    font-size: .85rem;
}

.feature-row h3 {
    color: var(--ho-green-dark);
    font-size: 1.7rem;
    font-weight: 300;
}

.feature-row.alt {
    background: var(--ho-cream);
}

.whitebg{
  background: #F7F7F7;
  padding: 60px;
}

.btn-talk{
  padding: 12px 30px;
    background: #0b6a45;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-talk:hover{
    background: #085237;
    color: #fff;
}

.btn-primary{
  padding: 12px 30px;
    background: #0b6a45;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-primary:hover{
    background: #085237;
    color: #fff;
}

.btn-white{
  padding: 12px 30px;
    background: #fff;
    color: #0b6a45;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-white:hover{
    background: #4B4F58;
    color: #fff;
}
.btn-red{
  padding: 12px 30px;
    background: #FF2216;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-red:hover{
    background: #4B4F58;
    color: #fff;
}


/* Locations */
.locations {
    background: #D5D6D6;
    color: #eee;
    padding: 4rem 0;
}

.locations h4 {
    color: #1a6b49;
    font-size: 1.4rem;
    font-weight: 300;
}

.latestoffer{
  padding: 20px;
  border: 5px solid #1A6B49;
}

.trek-title {
    color: #1f6b47;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.trek-status {
    color: #1f6b47;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.trek-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.btn-trek {
    width: 100%;
    background: #1f6b47;
    color: #fff;
    padding: 16px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .9rem;
    transition: .3s;
}

.btn-trek:hover {
    background: #184f36;
    color: #fff;
}

#mapid {
    position: relative;
    width: 100%;
    height: 450px;
    z-index: 1;
}

/* Contact blocks */
.contact-blocks {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #12241a 100%);
}

.contact-blocks h3{
    color: var(--lres-green);
    font-size: 30px;
    font-weight: 300;
    line-height: 1.2;
}

.contact-card {
    text-align: center;
    padding: 1.5rem;
    font-size: 1.3rem;
    line-height: 2em;
    font-family: "Noto Serif", serif;
    /*text-transform: uppercase;*/
    height: 100%;
}

.contact-card h4 {
    color: var(--ho-green-dark);
    font-size: 1.8rem;
    font-weight: 300;
}

.contact-card p{
    margin-bottom: 15px;
}
.contact-card a {
    color: #2b2b2b;
    text-decoration: none;
}

.contact-card .btn-primary{
    color: #fff;
}

.contact-card .btn-primary:focus,
.contact-card .btn-primary:hover{
    color: #fff;
}

.contact-card.lres h4{
  color: #1A6B49;
}

.contact-card.lres svg{
  color: #1A6B49;
}

.contact-card.lres a:hover {
    color: #1A6B49;
}

.contact-card.training h4{
  color: #FF2216;
}

.contact-card.training svg{
  color: #FF2216;
}

.contact-card.training a:hover {
    color: #FF2216;
}

#getdirections {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

#getdirections input[type="text"],
#getdirections input[type="submit"] {
    height: 48px;
    box-sizing: border-box;
    font-size: 16px;
}

#getdirections input[type="text"] {
    flex: 1;
    padding: 0 15px;
}

#getdirections input[type="submit"] {
    padding: 0 24px;
    line-height: 48px;
    cursor: pointer;
    border-radius: 0;
    border: 0;
}

/* Footer */
footer {
    background: var(--ho-green-dark);
    color: #c8c8c8;
    padding-top: 3.5rem;
}

footer h5 {
    color: #fff;
    font-size: .95rem;
    letter-spacing: .08em;
}

footer a {
    color: #c8c8c8;
    text-decoration: none;
    font-size: .9rem;
}

footer a:hover {
    color: var(--ho-tan);
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer ul li {
    margin-bottom: .5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 2.5rem;
    padding: 1.2rem 0;
    font-size: .8rem;
    text-align: center;
    color: #9a9a9a;
}

.footer-bottom a {
    color: #c8c8c8;
}

@media only screen and (min-width: 1200px) {

    .hamburger,
    .kebab-toggler,
    .social-menu {
        display: none;
    }
}

@media only screen and (max-width: 1199.98px) {
    .navbar .container{
        position: relative;
    }
    .hamburger {
        padding: 10px 15px;
        display: inline-block;
        cursor: pointer;
        transition-property: opacity, filter;
        transition-duration: 0.15s;
        transition-timing-function: linear;
        font: inherit;
        color: inherit;
        text-transform: none;
        background-color: transparent;
        border: 0;
        margin: 0;
        overflow: visible;
        position: absolute;
        top: 48%;
        right: 15px;
        z-index: 999;
        transform: translateY(-50%);
         margin-top: 5px;
    }

    .hamburger-box {
        width: 32px;
        height: 21px;
        display: inline-block;
        position: relative;
    }

    .hamburger-inner {
        display: block;
        top: 50%;
        margin-top: -1.5px;
    }

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 32px;
        height: 3px;
        background-color: #296d58;
        border-radius: 4px;
        position: absolute;
        transition-property: transform;
        transition-duration: 0.15s;
        transition-timing-function: ease;
    }

    .hamburger-inner::before,
    .hamburger-inner::after {
        content: "";
        display: block;
    }

    .hamburger-inner::before {
        top: -9px;
    }

    .hamburger-inner::after {
        bottom: -9px;
    }

    .hamburger--collapse .hamburger-inner {
        top: auto;
        bottom: 0;
        transition-duration: 0.13s;
        transition-delay: 0.13s;
        transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .hamburger--collapse .hamburger-inner::after {
        top: -18px;
        transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
    }

    .hamburger--collapse .hamburger-inner::before {
        transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .hamburger--collapse.is-active .hamburger-inner {
        transform: translate3d(0, -9px, 0) rotate(-45deg);
        transition-delay: 0.22s;
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .hamburger--collapse.is-active .hamburger-inner::after {
        top: 0;
        opacity: 0;
        transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
    }

    .hamburger--collapse.is-active .hamburger-inner::before {
        top: 0;
        transform: rotate(-90deg);
        transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .slide-out-nav {
        position: fixed;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 20px;
        padding: 40px 0;
        background-color: #fff !important;
        z-index: 999;
        visibility: hidden;
        opacity: 0;
        border: 0;
        transform: translateY(100%) perspective(1px);
        transition: height 0.8s ease-in-out;
        overflow-y: scroll;
        border: 0;
        border-radius: 0;
    }

    .slide-out-nav.nav-open {
        height: calc(100% - 90px);
        opacity: 1;
        transform: translateY(0) perspective(1px);
        visibility: visible;
        opacity: 1;
    }

    .slide-out-nav #navigation {
        width: 100%;
    }

    .slide-out-nav #navigation li {
        display: block;
        text-align: center;
        margin: 0;
    }

    .slide-out-nav #navigation li a {
        margin-right: 0;
        display: inline-block;
        padding: 20px 10px;
        color: #898375;
    }

    .slide-out-nav #navigation li a.header-btn2 {
        margin-top: 20px;
    }

    .slide-out-nav.fadeInDown {
        -webkit-animation-name: unset;
        animation-name: unset;
    }

    .kebab-toggler {
        position: absolute;
        right: 15px;
        width: 50px;
        height: 52px;
        display: block;
        padding: 12px 10px;
        top: 48%;
        z-index: 999;
        transform: translateY(-50%);
        margin-top: -3px;
    }

    .kebab-toggler.active .circleKebab circle {
        transition: .3s
    }

    .social-menu {
        color: #898375;
        background: #ffffff;
        display: none;
        text-align: center;
        z-index: 9;
        padding-top: 10px;
    }

    .social-menu.menu-on {
        display: block;
        position: fixed;
        width: 100%;
        left: 0;
        top: 90px;
    }

    .social-menu li {
        position: relative;
        padding: 10px 40px;
    }

    .social-menu .caption .contact-cap {
        margin-top: -10px;
    }

    .social-menu .caption .contact-cap .contact-info {
        margin-bottom: 0
    }

    .social-menu .caption .contact-cap .contact-info strong {
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .social-menu .caption .contact-cap p {
        color: #898375;
    }

    .social-menu .caption .contact-cap p a {
        color: #595c69;
    }

    .social-menu .icon {
        color: #296d58;
    }

    .socmedia {
        margin-top: 15px;
        background-color: #1a2e25;
        box-shadow: 0 0 10px 3px rgb(0 0 0 / 5%);
    }

    .socmedia .social-info {
        padding: 8px 15px 1px 8px;
    }

    .socmedia .social-info a {
        color: #296d58;
        background-color: #fff;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        line-height: 43px;
        text-align: center;
        display: inline-block;
    }

    .navbar .navbar-nav .nav-link {
        font-size: 18px;
        padding: 12px 16px;
        text-align: center;
        font-weight: 700;
    }

    .navbar .dropdown-menu {
        display: block !important;
        text-align: center;
        border: 0;
        background-color: #296d58;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .navbar .dropdown-menu.show {
        display: block;
    }

    .navbar .dropdown-item {
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
    }

    .navbar .dropdown-item:hover, .navbar .dropdown-item:focus, .navbar .dropdown-item:focus {
        background-color:#296d58 ;
    }

    .navbar .dropdown-toggle::after {
        display: none;
    }
}