:root {
    --header: 'Roboto Slab',serif;
    --subheader: "Inter Tight", sans-serif, system-ui;
    --bodytext: "Inter", sans-serif, system-ui;
    --primary: #564840;
    --primaryDark: #271f1b;
    --secondary: #7d6b51;
    --highlight: #dc3838;
    --text: #363636;
    --mute: #303e49;
    --gray: #f5f4f1;
    --light: #d1cbb7;
    --offwhite: #f5f4f1;
    --white: #FFFFFF;
    --error: #ea1000;
    --sliderHeight: 600px;
    --hover:#ffad00;
}

html {
    text-size-adjust: 100%;
    font-family: sans-serif;
    scroll-behavior: smooth;
}

body {
    color: var(--text);
    display: flex;
    flex-direction: column;
    font-family: var(--bodytext);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    margin: 0px;
    position: relative;
    text-align: left;
}

button, input, optgroup {
    margin: 0px;
    font: inherit;
    color: inherit;
    border: 1px solid var(--gray);
}

button {
    overflow: visible;
    appearance: button;
}

.button, input[type="button"], input[type="reset"], input[type="submit"] {
    display: inline-block;
    line-height: 1;
    width: auto;
    background-color: var(--highlight);
    color: var(--white);
    fill: var(--white);
    text-align: center;
    transition: 0.3s;
    font-size: 1.2em;
    font-weight: 400;
    border-radius: 5px;
    padding: 15px 30px;
    &:hover {
        background: var(--highlight);
        color: var(--white);
    }

    &:active {
        background: var(--highlight);
    }
}

input {
    line-height: normal;
    &[type="checkbox"], &[type="radio"] {
        box-sizing: border-box;
        padding: 0px;
        margin: 0px 3px;
    }

    &[type="number"]: :-webkit-inner-spin-button, &[type="number"]::-webkit-outer-spin-button {
        height: auto;
    }

    &[type="email"], &[type="password"], &[type="tel"], &[type="text"], &[type="number"] {
        width: 100%;
        min-height: 40px;
        background-color: color-mix(in srgb, var(--gray) 25%, transparent);
        border: 1px solid color-mix(in srgb, var(--gray) 70%, transparent);
        padding: 10px;
        text-align: left;
        color: var(--text);
        border-radius: 5px;
        &::-webkit-input-placeholder {
            font-family: Inter, sans-serif;
            color: var(--dark);
        }
    }

    &[type="radio"] {
        display: block;
        float: left;
        margin-right: 10px;
    }
}

select, textarea {
    width: 100%;
    background-color: color-mix(in srgb, var(--gray) 25%, transparent);
    border: 1px solid color-mix(in srgb, var(--gray) 70%, transparent);
    padding: 10px;
    text-align: left;
    color: var(--text);
    border-radius: 5px;
}

#layout {
    background: var(--white);
    display: flex;
    flex-direction: column;
    left: 0px;
    min-height: 100vh;
    min-width: 100%;
    position: relative;
    top: 0px;
    width: 100%;
    overflow: hidden;
}

#wrapper {
    flex: 1 0 auto;
    height: auto;
    margin: 0px auto;
    position: relative;
    width: 100%;
}

body::-webkit-scrollbar-track {
    background-color: rgb(255, 255, 255);
}

body::-webkit-scrollbar {
    width: 7px;
    background-color: rgb(255, 255, 255);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
}

header h1 {
    display: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0px;
    margin-bottom: 0.5rem;
    font-family: var(--header);
    font-weight: 500;
    text-align: left;
    text-rendering: optimizelegibility;
    line-height: 1.2;
    color: var(--primary);
    & a {
        color: inherit;
    }
}

.h1, h1 {
    font-size: calc(1.375rem + 1.5vw);
    @media (min-width: 1200px) {
        font-size: 2.5rem;
    }
}

.h2, h2 {
    font-size: calc(1.3rem + 0.6vw);
    @media (min-width: 1200px) {
        font-size: 1.75rem;
    }
}

.h3, h3 {
    font-size: calc(1.25625rem + 0.075vw);
    @media (min-width: 1200px) {
        font-size: 1.3125rem;
    }
}

.h4, h4 {
    font-size: 1.125rem;
}

.h5, h5 {
    font-size: 1rem;
}

.h6, h6 {
    font-size: 0.875rem;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border: 0px;
}

strong, b {
    font-weight: bold;
}

p {
    line-height: 1.7em;
    margin: 0.5em 0px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: 0.4s;
    &:hover, &:focus {
        color: var(--highlight);
        text-decoration: none;
    }
}

.hide {
    display: none;
}

.button {
    background-color: var(--primary);
    border-radius: 5px;
    color: var(--white);
    display: inline-block;
    fill: var(--white);
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1;
    padding: 12px 24px;
    text-align: center;
    transition: 0.3s;
    &.button-lg {
        font-size: 1.5em;
        padding: 20px 30px;
    }

    &.button-sm {
        border-radius: 0.25rem;
        padding: 0.35rem 0.7rem;
        font-size: 1rem;
    }

    &.button-primary {
        background: var(--primary);
        border: 1px solid transparent;
        color: var(--white);
        &:hover {
            background: var(--highlight);
        }

        &.button-lines {
            border-color: var(--primary);
            color: var(--primary);
        }

        &.button-lines:hover {
            background: var(--primary);
            color: var(--white);
        }
    }

    &.button-highlight {
        background: var(--highlight);
        border: 1px solid transparent;
        color: var(--white);
        &:hover {
            background: var(--primary);
        }

        &.button-lines {
            border-color: var(--highlight);
            color: var(--highlight);
        }

        &.button-lines:hover {
            background: var(--highlight);
            color: var(--white);
        }
    }

    &.button-white {
        background: var(--white);
        border: 1px solid transparent;
        color: var(--dark);
        &:hover {
            background: var(--dark);
            color: var(--white);
        }

        &.button-lines {
            border-color: var(--white);
            color: var(--white);
        }

        &.button-lines:hover {
            background: var(--primary);
            color: var(--white);
        }
    }

    &.button-dark {
        background: var(--dark);
        border: 1px solid transparent;
        color: var(--white);
        &:hover {
            background: var(--white);
            color: var(--dark);
        }

        &.button-lines {
            border-color: var(--dark);
            color: var(--dark);
        }

        &.button-lines:hover {
            background: var(--dark);
            color: var(--white);
        }
    }

    &.button-lines {
        background: transparent;
        border-width: 0.11em;
    }

    &.button-arrow {
        &::after {
            content: "";
            display: inline-block;
            font-size: 40px;
            line-height: 30px;
            padding: 0px 0px 0px 4px;
            vertical-align: middle;
            font-family: bootstrap-icons !important;
        }

        &::before {
            content: "";
            display: inline-block;
            font-size: 40px;
            line-height: 30px;
            padding: 0px 4px 0px 0px;
            vertical-align: middle;
            font-family: bootstrap-icons !important;
        }

        &.right::after {
            content: "";
        }

        &.left::before {
            content: "";
        }

        &.down::after {
            content: "";
        }

        &.up::after {
            content: "";
        }

        &.button-sm::after, &.button-sm::before {
            font-size: 24px;
            line-height: 1;
        }
    }
}

.skip-to-main-content-link {
    display: block;
    position: absolute;
    left: -999px;
    top: -999px;
    &:focus {
        left: 0px;
        top: 0px;
        z-index: 9999;
        padding: 3px;
        background: var(--dark);
        border: 1px solid var(--primary);
        color: var(--white);
    }
}

:focus, :focus-visible {
    outline: 1px dashed var(--primary);
}

#form_paging_links, #calendar_paging_links, #paging_links, #newschannel_paging_links, .gallery_paging_links {
    clear: both;
    float: none;
    margin: 50px 0px 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    &::after {
        clear: both;
        content: "";
        display: table;
    }

    & span {
        display: inline-block;
        text-align: center;
        & a, &.gallery_next_link_inactive, &.gallery_prev_link_inactive {
            font-weight: 300;
            font-size: 0.9em;
            text-transform: uppercase;
            background: var(--light);
            color: var(--text);
            padding: 5px 10px;
            display: flex;
            align-items: center;
            margin: 0px 3px;
            min-width: 30px;
            justify-content: center;
            &:hover {
                background: var(--primary);
                color: var(--white);
                text-decoration: none;
            }
        }

        &.gallery_next_link_inactive, &.gallery_prev_link_inactive {
            color: color-mix(in srgb, var(--mute) 50%, transparent);
            &:hover {
                background: color-mix(in srgb, var(--gray) 85%, transparent);
                color: color-mix(in srgb, var(--mute) 50%, transparent);
            }
        }

        &.gallery_prev_link a: :before, &.gallery_next_link a::after, &.gallery_next_link_inactive::after, &.gallery_prev_link_inactive::before {
            content: "";
            display: inline-block;
            vertical-align: middle;
            line-height: 1;
            font-family: bootstrap-icons !important;
        }

        &.gallery_prev_link a: :before, &.gallery_prev_link_inactive::before {
            content: "";
        }

        &.gallery_next_link a: :after, &.gallery_next_link_inactive::after {
            content: "";
        }

        &.currentpage a {
            color: var(--white);
            &.gallery_prev_link_inactive, &.gallery_next_link_inactive {
                display: none;
            }
        }
    }
}

#paging_links {
    & span {
        &.next_link {
            width: auto;
        }

        &.prev_link_inactive, &.next_link_inactive {
            display: none;
        }
    }
}

.modal.show {
    & .modal-body {
        padding: 0px;
        line-height: 0;
    }

    & .modal-content {
        border-radius: 0px;
    }

    & .btn-close {
        position: absolute;
        right: 0px;
        top: 0px;
        border-radius: 0px;
        background: red;
        z-index: 100;
        text-shadow: none;
        color: var(--white);
        line-height: 25px;
        width: 25px;
        font-size: 24px;
        padding: 0px;
        opacity: 1;
    }
}

form#changepass, .general_login, #sendinstructions {
    border: 1px solid rgb(233, 233, 233);
    margin: 0px auto;
    max-width: 360px;
    padding: 15px;
    text-align: left;
    & h2, & .logintitle {
        background: transparent;
        color: var(--dark);
        font-size: 18px;
        font-weight: 400;
        line-height: 25px;
    }

    & .loginmessage {
        font-style: italic;
        margin-bottom: 20px;
    }

    & .row {
        display: flex;
        flex-direction: column;
        margin: 10px 0px;
        text-align: left;
        & label, & .label {
            min-width: 100px;
            text-align: left;
        }

        & label {
            display: block;
            font-weight: 400;
            margin-bottom: 0px;
        }

        & span, & .formw {
            display: inline-block;
            vertical-align: middle;
        }

        & span {
            display: block;
            & input {
                max-width: 100%;
            }

            & .pwdlevel {
                font-size: 0.8em;
                font-style: italic;
            }
        }

        &:last-child {
            text-align: center;
            & label {
                display: none;
            }
        }
    }

    & .loginbtn {
        flex-direction: inherit;
        justify-content: center;
        text-align: center;
        & input {
            width: auto;
        }
    }

    & .forgotpassword, & .errmsg {
        text-align: center;
        &.errmsg {
            color: var(--primary);
            font-size: 0.84em;
            overflow: hidden;
            padding: 0px;
        }
    }

    & .remember {
        flex-direction: row;
    }
}

#filter {
    display: none;
}

.searchBlock {
    & .searchBlock_backdrop {
        background: color-mix(in srgb, var(--text) 30%, transparent);
        height: 100%;
        left: 0px;
        position: fixed;
        top: 0px;
        width: 100%;
        z-index: 9999;
        display: none;
    }

    & .searchBlock_body {
        height: auto;
        left: 0px;
        padding: 15px 0px;
        position: fixed;
        top: 0px;
        transform: translateY(-200px);
        width: 100%;
        z-index: 9999;
        transition: 0.5s;
        & .container {
            height: 100%;
            position: relative;
        }

        & .search_Close {
            color: var(--white);
            display: none;
            position: relative;
            top: 120px;
        }

        & .searchBlock {
            position: relative;
            & form {
                display: flex;
                flex-wrap: wrap;
                min-width: 100%;
                width: 100%;
                & label {
                    color: var(--highlight);
                    display: none;
                    font-family: var(--bodytext);
                    font-size: 5em;
                    font-weight: 600;
                    min-width: 100%;
                    text-transform: uppercase;
                }

                & .fieldsRow {
                    display: flex;
                    width: 100%;
                    & #textfield {
                        background: var(--white);
                        border: 1px solid var(--gray);
                        width: 100%;
                        border-bottom-left-radius: 5px;
                        border-top-left-radius: 5px;
                        font-size: 1.5em;
                        margin: 0px;
                        padding: 20px;
                    }

                    & input[type="submit"] {
                        background: transparent;
                        border-radius: 0px 5px 0px 0px;
                        font-size: 0px;
                        height: 100%;
                        width: 80px;
                    }

                    & span {
                        background: var(--primary);
                        border-bottom-right-radius: 5px;
                        border-left: 0px;
                        border-top-right-radius: 5px;
                        display: block;
                        height: 100%;
                        position: absolute;
                        right: 0px;
                        top: 0px;
                        width: 80px;
                        z-index: -1;
                        &::after {
                            color: var(--white);
                            content: "";
                            display: block;
                            font-size: 30px;
                            width: 80px;
                            height: 80px;
                            line-height: 80px;
                            text-align: center;
                            font-family: bootstrap-icons !important;
                        }
                    }
                }
            }
        }
    }

    &.show {
        & .searchBlock_body {
            transform: translateY(100px);
            transition: 0.5s;
        }

        & .searchBlock_backdrop {
            display: block;
        }
    }
}

form#sitesearch {
    display: flex;
    margin-bottom: 15px;
    & input {
        margin: 0px;
        &[type="text"] {
            border-radius: 5px 0px 0px;
        }

        &[type="submit"] {
            border-radius: 0px 5px 0px 0px;
        }
    }
}

#searchresults {
    padding: 15px 0px;
    & .search_url {
        border-bottom: 1px dashed var(--gray);
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
}

#calendar {
    background: transparent;
    border-collapse: collapse;
    color: var(--primary);
    margin: 0px auto;
    width: 90%;
    & tr {
        & th, & td {
            border: 1px solid var(--gray);
            height: 75px;
            width: 14.28%;
            vertical-align: top;
            padding: 5px;
        }

        & th {
            background: var(--gray);
            color: var(--primary);
            font-family: Inter, sans-serif;
            font-size: 18px;
            line-height: 20px;
            text-align: center;
            vertical-align: middle;
        }

        & td.caption {
            background: var(--primary);
            color: var(--white);
            font-size: 24px;
            font-weight: 500;
            height: 50px;
            line-height: 50px;
            text-align: center;
            text-transform: uppercase;
            & a.nav {
                color: var(--white);
                font-size: 34px;
                height: 55px;
                line-height: 50px;
                padding: 0px 20px;
                vertical-align: middle;
                display: inline-block !important;
            }
        }
    }

    & ul {
        display: block;
        list-style: none;
        margin: 0px;
        padding: 0px;
        & li {
            background: var(--primary);
            border-bottom: 1px solid var(--white);
            color: var(--white);
            font-size: 11px;
            line-height: 16px;
            padding: 2px;
            & a {
                color: var(--white);
            }
        }
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1240px !important;
    }
}

@media (min-width: 1640px) {
    .container {
        max-width: 1440px !important;
    }
}

@media (min-width: 1840px) {
    .container {
        max-width: 1640px !important;
    }
}

@media (min-width: 2040px) {
    .container {
        max-width: 1840px !important;
    }
}

header.Header {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 999;
    transition: 0.5s;
    background: var(--primaryDark);
    & h1 {
        display: none;
    }

    & .logo {
        position: absolute;
        top: 0px;
        & img {
            max-height: 70px;
            opacity: 1;
            padding: 7px 0px;
            position: relative;
            transition: 0.5s;
            z-index: 1;
        }
    }

    & .navigation {
        display: flex;
        justify-content: end;
        align-items: center;
        & .iconMenu {
            display: flex;
            & button {
                background: none;
                border: 0px;
                padding: 15px 18px;
                color: var(--white);
                font-size: 3rem;
                &:hover {
                    color: var(--white);
                    & i {
                        color: var(--highlight);
                    }
                }
            }
        }
    }
}

body.subpage .Header.headBg {
    background: var(--primaryDark);
    box-shadow: rgba(4, 4, 4, 0.35) 1px 1px 3px;
}

body.subpage .Header .NavbarToggle span {
}

.Header.headBg {
    background: var(--primaryDark);
    transition: 0.5s;
    box-shadow: rgba(4, 4, 4, 0.15) 1px 1px 3px;
    opacity: 1;
}

.Header.headBg {
    background: var(--primaryDark);
    transition: padding 0.5s, background 0.5s;
    box-shadow: rgba(4, 4, 4, 0.35) 1px 1px 3px;
    padding: 0px;
}

.Header.headBg .logoBlock a {
    padding: 0px;
}

.logoBlock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
    width: 100%;
    flex-wrap: nowrap;
}

.logo {
    position: absolute;
    z-index: 999;
    left: 0px;
    top: 0px;
    margin: 0px;
    display: block;
    text-align: left;
    transition: 0.5s;
    height: 110px;
    opacity: 0;
}

.Header.headBg .logo {
    height: 90px;
    opacity: 1;
    transition: 0.5s;
}

.Header .Navigation {
    background: transparent;
}

.Header.headBg .Navigation {
    margin-top: 0px;
    position: relative;
    transition: 0.5s;
}

.Header.headBg .HeaderMenu > ul > li a, .Header.headBg .HeaderMenu > ul > li.home a::before {
    transition: color 0.5s;
}

.HeaderMenu > ul > li.home a {
    font-size: 0px;
    line-height: 1;
    height: auto;
    padding: 23px 10px;
}

.HeaderMenu > ul > li.home a::before {
    content: "";
    font-size: 18px;
    display: block;
    margin: 0px auto;
    color: rgb(255, 255, 255);
    font-family: bootstrap-icons !important;
}

.Header.subpageHeader .HeaderMenu > ul > li.home a::before {
}

.Header.headBg.subpageHeader .HeaderMenu > ul > li.home a::before {
    filter: none;
    transition: 0.3s;
}
 

.breadcrumbs {
    color: var(--text);
    line-height: 0;
    background: var(--light);
    transition: 0.5s;
    & .container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    & a {
        color: var(--text);
        font-size: 12px;
        line-height: 1;
        padding: 10px 5px;
        font-weight: 400;
        display: inline-block;
    }
}

.cd-top {
    display: inline-block;
    height: 48px;
    width: 48px;
    position: fixed;
    bottom: 66px;
    right: 20px;
    z-index: 10;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 10px;
    overflow: hidden;
    background: rgb(86, 72, 64);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    border-radius: 50px;
    & i {
        color: rgb(255, 255, 255);
        font-size: 2em;
        text-align: center;
        line-height: 50px;
        text-indent: 0px;
        display: block;
        position: absolute;
        inset: 0px;
        margin: 0px auto;
    }
}

.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
}

.cd-top.cd-is-visible {
    visibility: visible;
    opacity: 1;
}

.cd-top.cd-fade-out {
    opacity: 0.5;
}

.cd-top:hover, .no-touch .cd-top:hover {
    opacity: 1;
    background: rgb(220, 56, 56);
}

#social {
    margin: 0px;
    position: relative;
    width: 100%;
    z-index: 99;
    padding: 0;
    justify-content: center;
    
    
    
    & ul {
        align-items: center;
        display: flex;
        justify-content: center;
        margin: 0px;
        padding: 0px;
        text-align: left;
        & li {
            display: inline-block;
            float: none;
            margin: 0px;
            vertical-align: middle;
        }

        & li a {
            color: var(--gray);
            display: block;
            text-align: left;
            font-size: 0px;
            border-radius: 3px;
            overflow: hidden;
            padding: 0 5px !important;
        }

        & li a span {
            color: var(--highlight);
            display: none;
            font-family: Inter, sans-serif;
            font-size: 1.2rem;
            font-weight: 500;
            text-transform: capitalize;
        }

        & li a::before {
            color: rgb(185, 178, 165);
            content: "";
            display: inline-block;
            font-size: 28px;
            text-align: center;
            vertical-align: middle;
            width: 40px;
            height: 40px;
            line-height: 40px;
            font-family: bootstrap-icons !important;
        }

        & li.facebook a::before {
            content:"\f344";
        }

        & li.twitter a::before {
            content: "\f8db";
        }

        & li.instagram a::before {
            content: "\f437";
        }

        & li.linkedin a::before {
            content:"\f472";
        }

        & li.youtube a::before {
            content:"\f62b";
        }

        & li.pinterest a::before {
            content:"\f663";
        }

        & li.contact a::before, & li.email a::before {
            content:"\f32c";
        }

        & li a: hover::before {
            color: var(--primary);
            background: none;
        }
    }
}

.sliderSection {
    height: var(--sliderHeight);
    max-height: 100vh;
    overflow: hidden;
    position: relative;
    & .slide {
        position: relative;
        height: var(--sliderHeight);
        & .image {
            background-position: center center;
            background-size: contain;
            background-repeat: no-repeat;
            position: absolute;
            display: flex;
            align-items: center;
            width: 100%;
            height: 100%;
            z-index: 0;
            top: 0px;
            left: 0px;
            & img {
                width: auto;
            }

            &.Fullwidth {
                background-size: cover;
                & img {
                    width: 100%;
                }
            }
        }

        & .captionData {
            height: 100%;
            left: 0px;
            right: 0px;
            margin: auto;
            position: relative;
            width: 100%;
            &.justify-content-right {
                justify-content: end;
            }

            &.justify-content-left {
                justify-content: start;
            }

            &.align-items-bottom {
                align-items: end;
            }

            &.align-items-top {
                align-items: start;
            }
        }

        & .caption {
            display: none;
            padding: 45px;
            position: relative;
            z-index: 2;
            &::after {
                content: "";
                position: absolute;
                top: 0px;
                left: 0px;
                width: 100%;
                height: 100%;
                background-color: transparent;
                z-index: -1;
            }

            & h1, & h2, & h3, & h4, & h5, & h6 {
                color: var(--text);
            }

            & .h1, & h1 {
                font-size: calc(1.35rem + 1.5vw);
                @media (min-width: 1200px) {
                    font-size: 3rem;
                }
            }

            & .h2, & h2 {
                font-size: calc(1.2rem + 0.5vw);
                @media (min-width: 1200px) {
                    font-size: 2.5rem;
                }
            }

            & .h3, & h3 {
                font-size: calc(1rem + 0.075vw);
                @media (min-width: 1200px) {
                    font-size: 2rem;
                }
            }

            & p, & div {
                font-size: calc(1rem + 0.05vw);
                @media (min-width: 1200px) {
                    font-size: 1.6rem;
                }
            }
        }

        &.video {
            & .image {
                display: none;
            }

            & .tao-video-wrapper {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0px;
                left: 0px;
                & .container {
                    max-width: none !important;
                    display: none !important;
                }

                & .tao-video-tn {
                    background-size: cover;
                }

                & iframe {
                    position: fixed;
                    width: 100%;
                    height: 100%;
                    inset: 0px;
                    min-width: 100%;
                    min-height: 100%;
                    z-index: 99;
                }
            }
        }

        &.slShow .caption {
            display: block;
            color: var(--text);
        }
    }

    & .tao-nav button {
        &: hover {
            background: none;
        }

        &.tao-next {
            right: -10%;
            & span: :after {
                content: "";
            }
        }

        &.tao-prev {
            left: -10%;
            & span: :after {
                content: "";
            }
        }

        & span {
            &: :after {
                content: "";
                color: var(--primary);
            }

            &:hover::after {
                color: var(--highlight);
            }
        }

        &:hover {
            background: none !important;
        }
    }

    @media (min-width: 0px) and (max-width: 991px) {
        --sliderHeight: 540px;
        height: var(--sliderHeight); & .slide {
            height: var(--sliderHeight);
        }

        & img {
            width: auto;
            height: 100%;
        }

        & .Fullwidth img {
            object-fit: cover;
        }

        & .slShow .caption {
            padding: 15px;
            width: 100% !important;
        }
    }

    @media (min-width: 0px) and (max-width: 549px) {
        --sliderHeight: 400px;
        & .slide {
            display: flex;
            flex-wrap: wrap;
            height: var(--sliderHeight);
            & .image {
                order: 0;
                height: calc( var(--sliderHeight));
                width: 100%;
                background-size: cover;
                background-position: center center;
            }

            & .captionData {
                order: 1;
                height: auto;
                & .caption {
                    width: 100%;
                }
            }

            & .caption {
                & .h1, & h1 {
                    font-size: calc(1.2rem + 1.5vw);
                    @media (min-width: 1200px) {
                        font-size: 3rem;
                    }
                }

                & .h2, & h2 {
                    font-size: calc(1.1rem + 0.5vw);
                    @media (min-width: 1200px) {
                        font-size: 2.5rem;
                    }
                }

                & .h3, & h3 {
                    font-size: calc(0.7rem + 0.06vw);
                    @media (min-width: 1200px) {
                        font-size: 2rem;
                    }
                }

                & p, & div {
                    font-size: calc(1rem + 0.05vw);
                    @media (min-width: 1200px) {
                        font-size: 1.6rem;
                    }
                }
            }
        }
    }
}

.sideNav {
    & ul {
        list-style: none;
        margin: 0px;
        padding: 0px;
        & li {
            position: relative;
            &:hover > ul {
                display: block;
            }

            & a, & span {
                border-bottom: 1px solid color-mix(in srgb, var(--primary) 45%, transparent);
                color: var(--primary);
                background: color-mix(in srgb, var(--primary) 10%, transparent);
                display: block;
                font-weight: 500;
                padding: 10px;
            }

            & a: hover {
                background: var(--primary);
                color: var(--white);
            }

            &:last-child a {
                border: 0px;
            }
        }

        & li ul {
            display: block;
            left: 0%;
            position: relative;
            top: 0px;
            width: 100%;
            & li {
                & a {
                    padding: 5px 10px;
                    border-bottom: 0px;
                    font-size: 0.9em;
                    &:hover {
                        background: var(--primary);
                        color: var(--white);
                    }

                    &:hover::before {
                        visibility: hidden;
                    }
                }
            }
        }
    }
}

.news {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    & .article {
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px dashed var(--primary);
        & h2 {
            font-size: 1.33em;
        }

        & .splitleft, & .splitright {
            display: block;
            & em {
                font-size: 0.9em;
            }

            & a {
                display: inline-block;
                padding: 3px 10px;
                font-size: 0.8em;
                text-transform: uppercase;
                border: 1px solid var(--primary);
                border-radius: 5px;
                &:hover {
                    background: var(--primary);
                    color: var(--white);
                }
            }
        }
    }

    & .newsRow {
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 1px dashed var(--gray);
    }
}

.events {
    & h2 {
        margin-top: 50px;
        margin-bottom: 15px;
        color: var(--mute);
    }

    & .eventrow {
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 1px dashed var(--gray);
        & h3 {
            font-size: 1.125rem;
        }

        & p {
            margin: 0px;
        }

        & ul {
            margin-bottom: 10px;
            & li {
                margin-right: 15px;
            }
        }
    }
}

.imageGallery {
    display: flex;
    flex-wrap: wrap;
    & .ligBox {
        cursor: pointer;
        max-width: 25%;
        position: relative;
        margin: 2px;
        border: 1px solid var(--gray);
        &::after {
            content: "";
            display: block;
            position: absolute;
            z-index: 3;
            width: 100%;
            height: 100%;
            top: 0px;
            left: 0px;
        }

        &:hover::after {
            background-color: rgba(0, 0, 0, 0.3);
        }

        & img {
            object-fit: cover;
            height: 100%;
            width: 100%;
            position: relative;
        }

        & .gContent {
            display: none;
        }
    }

    @media (min-width: 0px) and (max-width: 579px) {
        justify-content: center;
        & .ligBox {
            max-width: 45%;
        }
    }
}

.galleryLists {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    & .gallerylist {
        max-width: 40%;
        flex: 0 0 auto;
        border: 1px solid var(--gray);
        text-align: center;
        margin: 15px;
        padding: 5px;
        & h3 {
            margin: 10px 0px;
            text-align: center;
            font-size: 1.1em;
            font-weight: 400;
        }

        & p {
            display: none;
        }

        @media (min-width: 0px) and (max-width: 579px) {
            width: 80%;
            max-width: none; flex: 0 0 auto; }
    }
}

.error, .taoCMSerror {
    border-left: 5px solid;
    padding-left: 5px;
    color: var(--error);
    margin-bottom: 3px;
    & p {
        margin: 0px;
    }
}

table.webform {
    max-width: 80vw;
    & .labelcol, & .valuecol {
        width: 40%;
    }

    & .middlecol {
        width: 1%;
    }
}

.errmsg {
    color: var(--error);
}

.group_nogroup_label, .group_nogroup_tr {
    display: none;
}

.fieldgroup {
    clear: both;
    margin-bottom: 30px;
    & .fieldgroup_label {
        border-bottom: 1px solid var(--primary);
        color: var(--primary);
        display: block;
        font-size: 1.3em;
        line-height: 1;
        font-weight: 500;
        padding-left: 5px;
        padding-bottom: 5px;
    }

    & .fieldgroup_desc, & .field_desc {
        font-weight: inherit;
        margin-bottom: 15px;
        color: var(--mute);
        font-size: 0.87em;
        font-style: italic;
    }

    & .fieldrow {
        display: block;
        text-align: left;
        margin: 10px 0px;
        & .fieldlabel {
            display: block;
            & sup {
                font-size: 0.95em;
                color: var(--error);
            }
        }

        & .fieldval {
            display: block;
            width: 100%;
            & input, & input[type="text"], & input[type="tel"], & input[type="email"], & select {
                width: 100%;
            }

            & input[type="button"], & input[type="reset"], & input[type="submit"], & .button {
                width: auto;
            }

            & textarea {
                min-height: 100px;
                width: 100%;
            }

            & input[type="file"] {
                border: 1px solid rgb(221, 221, 221);
            }
        }
    }
}

.shippinginfotable {
    max-width: 420px;
    & tr {
        & td {
            padding: 5px;
            vertical-align: middle;
            & label {
                width: 100px;
            }
        }
    }
}

#cartbuttons, #changeinfo {
    margin-top: 30px;
    text-align: left;
    & ul {
        list-style: none;
        margin: 30px 0px 0px;
        padding: 0px;
        & li {
            & .catalog.cancel: hover {
                background: var(--error);
                color: var(--white);
            }

            & a {
                display: inline-block;
                line-height: 1;
                padding: 10px;
                border: 1px solid var(--mute);
                color: var(--mute);
                border-radius: 4px;
                &:hover {
                    background: var(--mute);
                    color: var(--white);
                }

                &::before {
                    content: "";
                    display: inline-block;
                    vertical-align: middle;
                    margin-right: 5px;
                    font-family: bootstrap-icons !important;
                }
            }

            &:nth-child(3)::before {
                content: "";
                display: inline-block;
                margin-right: 5px;
                font-family: bootstrap-icons !important;
            }
        }
    }
}

#cartbuttons {
    text-align: left;
    width: 420px;
    & ul {
        padding: 0px;
        margin: 30px 0px 0px;
        display: flex;
        list-style: none;
        justify-content: space-between;
        flex-direction: row-reverse;
        & input.cancel {
            background: var(--error);
        }
    }

    & input.payment.cancel, & .payment.cancel {
        background: var(--error);
    }
}

#paymentinvoice {
    display: flex;
    flex-wrap: wrap;
    & #billtable, & #shiptable {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 15px;
        & h3 {
            font-size: 1.4em;
        }

        & > div {
            padding: 10px;
            border: 1px solid var(--gray);
            & div.name {
                font-weight: bold;
            }
        }
    }
}

#cartform {
    flex: 0 0 100%;
    max-width: 100%;
}

#subscriptionorder, #paymentcharge, #payment_totalamount, #giftcertificateamount {
    display: block;
    float: none;
    clear: both;
    width: 100%;
    padding: 15px 0px;
    font-weight: bold;
}

.paymentcharge {
    display: none;
}

.paymenttitle {
    margin-top: 15px;
    font-family: var(--header);
    font-size: 1.3em;
}

.paymentmessage {
    color: var(--mute);
}

#paymentdiv {
    margin-bottom: 30px;
}

.paymentchoice {
    font-weight: bold;
}

#authorizenet_radio {
    background: url("/image/cache/visa-mastercard.png") right center / 150px no-repeat;
    min-height: 50px;
    display: flex;
    font-size: 0px;
    width: 171px;
}

#mail_payment_details .instructions, #paymentinstructions {
    margin: 10px 0px;
    padding: 15px 0px;
}

.paymentdetails {
    max-width: 460px;
    & .nameoncardlabel, & .nameoncardinput {
        width: 100%;
        display: block;
    }

    & .ccnameoncard-block, & .carddetail-block {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        & .cardnumber-block {
            flex: 0 0 69%;
            max-width: 69%;
            padding: 10px 0px;
        }

        & .codeoncard-block {
            flex: 0 0 30%;
            max-width: 30%;
            padding: 10px 0px;
        }

        & .expireoncardinput select {
            flex: 0 0 49%;
            max-width: 49%;
        }
    }
}

.expireoncard-block {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 10px 0px;
    & label {
        display: block;
        width: 100%;
    }

    & .expireoncardinput {
        display: flex;
        width: 100%;
        justify-content: space-between;
        & select {
            width: 49%;
        }
    }
}

#returntocart {
    text-align: center;
    margin: 10px;
    & a {
        display: inline-block;
        line-height: 1;
        background-color: rgb(25, 25, 25);
        color: rgb(255, 255, 255);
        fill: rgb(255, 255, 255);
        text-align: center;
        transition: 0.3s;
        font-size: 1.2em;
        font-weight: 400;
        border-radius: 5px;
        padding: 10px 30px;
        &:hover {
            background: rgb(221, 221, 221);
        }
    }
}

.shippinginfotable {
    max-width: 420px;
    & tr td {
        padding: 5px;
        & label {
            width: 100px;
        }
    }
}

.Sidebar {
    & .Sidebar_backdrop {
        background: color-mix(in srgb, var(--text) 30%, transparent);
        height: 100%;
        left: 0px;
        position: fixed;
        top: 0px;
        width: 100%;
        z-index: 9999;
        display: none;
    }

    & .Sidebar_body {
        background-color: var(--primaryDark);
        bottom: 0px;
        overflow-y: auto;
        position: fixed;
        right: -320px;
        top: 0px;
        transition: right 0.3s ease-in-out;
        width: 320px;
        z-index: 10000;
        & .sidebar_Close {
            text-align: right;
            & button {
                & i {
                    font-size: 2em;
                    color: var(--white);
                    display: block;
                }

                &:hover i {
                    background: var(--dark);
                }
            }
        }
    }

    &.show {
        & .Sidebar_body {
            right: 0px;
        }

        & .Sidebar_backdrop {
            display: block;
        }
    }

    & .SidebarMenu {
        padding: 30px 0px;
        & ul {
            list-style: none;
            margin: 0px;
            padding: 0px;
            & li {
                & a {
                    color: var(--white);
                    display: block;
                    font-size: 1.1em;
                    font-weight: 400;
                    padding: 10px 15px;
                    text-decoration: none;
                    text-transform: uppercase;
                }

                & ul li {
                    padding: 0px;
                }

                & ul li a {
                    text-transform: none;
                    font-size: 0.96em;
                }
            }

            & a: hover {
                background: var(--primary);
                color: var(--light);
            }
        }
    }
}

footer {
    background: var(--dark);
    position: relative;
    z-index: 1;
    & .address {
        display: block;
        text-align: left;
        color: var(--white);
        & p {
            padding-left: 25px;
            word-break: break-all;
            & i {
                display: inline-block;
                margin-left: -25px;
                text-align: center;
                vertical-align: middle;
                width: 25px;
            }
        }

        & a {
            color: var(--white);
        }

        & .button-sm {
            padding: 13px;
        }
    }

    & ul {
        margin: 0px;
        padding: 0px;
        flex-wrap: nowrap;
        justify-content: end;
        list-style: none;
        & li {
            text-align: right;
            display: block;
            & a {
                color: var(--white);
                /* display: inline-block; */
                font-size: 1em;
                padding: 5px 0px;
            }

            & ul li {
                padding: 1px 15px;
            }

            & ul li a {
                font-size: 1em;
                font-weight: 400;
                padding: 5px 0px;
            }
        }

        & a: hover {
            color: var(--primary);
        }
    }

    & .copyright {
        background-color: transparent;
        color: var(--white);
        display: flex;
        justify-content: flex-end;
        font-size: 12px;        
        & .subfooter-nav {
            & ul {
                margin: 0px;
                padding: 0px;
            }

            & ul li {
                display: inline-block !important;
                vertical-align: middle;
                & a {
                    color: var(--white);
                    padding: 0px 10px 0px 0px !important;
                    &:hover {
                        color:var(--hover);
                        background: none !important;
                    }
                }
            }
        }

        & span {
            display: block;
            text-align: right;
        }
        @media (min-width: 0px) and (max-width: 991px) {
            justify-content:center;
        }
    }  

    @media (min-width: 0px) and (max-width: 579px) {
        & .footerMenu, & footer .contact {
            float: none;
        }

        & .footer-nav {
            margin-bottom: 0px;
            text-align: center;
        }

        & .footer-nav > ul {
            display: block;
            width: 100%;
        }

        & .footer-nav > ul > li, & .footer-nav ul li a {
            display: block;
            text-align: center;
            margin-bottom: 10px;
        }

        & .address p {
            text-align: center !important;
            margin-top: 20px;
        }

        & .subfooter-nav ul, & .copyright span {
            display: block;
            text-align: center;
            float: none;
        }

        & .subfooter-nav ul {
            margin: 0px auto;
            display: block;
        }

        & .subfooter-nav ul li {
            float: none;
            display: inline-block;
        }

        & .copyright {
            display: block;
        }
    }
}

@media (min-width: 0px) and (max-width: 1199px) {
}

@media (min-width: 0px) and (max-width: 1080px) {
}

@media (min-width: 0px) and (max-width: 779px) {
}

@media (min-width: 0px) and (max-width: 639px) {
}

@media (min-width: 0px) and (max-width: 579px) {
}

@media (min-width: 0px) and (max-width: 460px) {
}

@media (min-width: 0px) and (max-width: 380px) {
}

#ngfModal .modal-dialog.modal-lg {
    position: relative;
    z-index: 99999;
    & .close {
        color: rgb(255, 255, 255);
        background: red;
        right: 0px;
        position: absolute;
        z-index: 99;
        top: 0px;
        width: 25px;
        height: 25px;
        line-height: 25px;
        opacity: 1;
        text-shadow: none;
    }

    & #modalData {
        min-width: 100%;
        & iframe {
            width: 100%;
        }
    }
}

.pageHeader-block.no-pageHeader {
    padding-top: 62px;
    position: relative;
}

.pageHeader-block.no-pageHeader::after {
    content: "";
    position: relative;
    height: 67px;
    background: rgb(209, 203, 183);
    width: 100%;
    display: block;
}

.HeaderMenu ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.HeaderMenu > ul > li {
    display: inline-block;
    padding: 0px;
}

.HeaderMenu > ul > li a {
    color: rgb(0, 0, 0);
    font-size: 1.1em;
    font-weight: 400;
    padding: 20px 15px;
    display: block;
    transition: 0.5s;
}

.HeaderMenu > ul > li a.button {
    margin: 7px;
    padding: 15px;
    border-radius: 30px;
    background: var(--primary);
    font-size: 1em;
    border: 1px solid var(--light);
    color: var(--white);
}

.HeaderMenu > ul > li a:hover {
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary);
}

body.subpage img.logo, body.tribesHome img.logo, body.tribesSearch  img.logo {
    opacity: 1;
}

body.subpage .HeaderMenu > ul > li a {
    color: rgb(255, 255, 255);
}

.Sidebar__body {
    background-color: var(--primaryDark);
    right: -320px;
    width: 320px;
    top: 0px;
    bottom: 0px;
    position: fixed;
    overflow-y: auto;
    z-index: 9999;
    transition: right 0.3s ease-in-out;
}

.Sidebar.show .Sidebar__body {
    right: 0px;
}

.Sidebar.show .Sidebar__backdrop {
    display: block;
}

.SidebarMenu {
    padding: 0px 36px;
}

.SidebarMenu ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.SidebarMenu ul li {
    margin-bottom: 24px;
}

.SidebarMenu ul a {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.navIcon {
    position: relative;
}

.NavbarToggle {
    display: inline-block;
    vertical-align: middle;
    background-color: transparent;
    border: 0px;
    padding: 0px;
}

.NavbarToggle span {
    font-size: 2em;
    color: rgb(255, 255, 255);
    font-weight: 700;
}

.sidebar__Close {
    padding: 0px 20px;
    color: rgb(255, 255, 255);
}

.sidebar__Close i {
    font-size: 2em;
}

body.tribesHome .NavbarToggle,  body.tribesSearch .NavbarToggle{
    display: none !important;
}

footer {
    clear: both;
    bottom: 0px;
    left: 0px;
    background: rgb(39, 31, 27);
    color: rgb(255, 255, 255);
    z-index: 1;
    width: 100%;
    padding: 0px;
    text-align: left;
    position: relative;
    border: 0px;
}

footer * {
    color: rgb(251, 251, 251);
}

footer .address {
    margin: 0px 15px;
    text-align: left;
}

footer .address * {
    color: rgb(251, 251, 251);
}

footer .address p span {
    font-size: 0.8em;
    display: none;
}

footer img {
    max-width: 110px;
}

.footer-nav {
    width: 100%;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul::after {
    content: "";
    display: table;
    clear: both;
}

.footer-nav ul li a:hover {
    color: rgb(255, 255, 255);
}

.footer-nav > ul > li > span, .footer-nav > ul > li > a {
    font-size: 16px !important;
}

.footer-nav ul li a {
    padding: 2px 5px;
    font-size: 13px;
}

.footer-nav ul li.head > a, .footer-nav ul li.head > span {
    color: rgb(238, 238, 238);
    display: none;
    font-size: 0px !important;
}

.subfooter-nav ul {
    /* text-align: right; */
}

.subfooter-nav ul li {
    display: inline-block !important;
    float: none !important;
}

.subfooter-nav ul li a {
    padding: 0 5px !important;
    font-size: .8em;
    line-height: 25px;
}

.subfooter-nav ul li a:hover {
    background: none !important;
}

.copyright {
    font-size: 12px;
}

.copyright a {
    padding: 10px;
    color: rgb(175, 164, 159);
    padding: 0 5px !important;
    /* font-size: .8em; */
}

.copyright span {
    display: block;
    text-align: right;
}

.mapWrapper {
    /* position: fixed; */
    width: 100%;
    height: 100vh;
    bottom: 0px;
}

#mapBlock {
    height: 100%;
    min-height: 580px;
    width: 100%;
}

#mapBlock :focus, #mapBlock :focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.trbeListWrapper {
    overflow-y: scroll;
    height: calc(-200px + 100vh);
}

.trbeListWrapper::-webkit-scrollbar-track {
    background-color: rgb(255, 255, 255);
}

.trbeListWrapper::-webkit-scrollbar {
    width: 4px;
    background-color: rgb(255, 255, 255);
}

.trbeListWrapper::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
}

.searchParams {
    font-size: 1.2em;
}

.searchParams em {
    display: block;
}

.searchParams strong, .searchParams span {
    text-transform: capitalize;
}

.tribesList {
    background: rgb(249, 248, 242);
}

.tribesList h3 {
    margin-top: 15px;
}

.tribesList .tribeRow {
    background: rgb(255, 255, 255);
    padding: 15px;
    margin-bottom: 25px;
    transition: 0.3s;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 10px 0px;
}

.tribesList .tribeRow:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px 5px;
    transition: 0.3s;
}

.tribesList .tribeRow a:hover {
    color: rgb(86, 72, 64);
}

.tribesList .tribeRow.highlight {
    border-width: 2px 2px 2px 4px;
    border-style: solid;
    border-color: rgb(141, 125, 101);
    border-image: initial;
}

.tribesList .tribeRow img {
    max-width: 150px;
    width: 100%;
}

.tribesList .tribeRow ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.tribesList .tribeRow .activities {
    margin-top: 10px;
}

.tribesList .tribeRow .activities > b {
    font-weight: 500;
    font-size: 0.9em;
}

.tribesList .tribeRow .activities ul.iconsList {
    display: flex;
    flex-wrap: wrap;
}

.tribesList .tribeRow .activities ul li {
    padding: 0px 10px 0px 0px;
}

.tribesList .tribeRow .activities ul li span {
    font-size: 0.75em;
}

.tribesList .tribeRow .activities ul li ul li {
    height: 40px;
}

.tribesList .tribeRow .activities li img {
    display: block;
    width: 40px;
    margin: 0px auto;
    border: 1px solid rgb(221, 221, 221);
    padding: 5px;
    border-radius: 5px;
    background: rgb(249, 248, 242);
}

.tribesList .tribeRow .activities ul li ul li img {
    width: 38px;
    height: 100%;
}

.infoWindow {
    display: flex;
    align-items: flex-start;
    border-top: 1px solid rgb(245, 245, 241);
    padding-top: 5px;
    max-width: 400px;
}

.infoWindow img {
    max-width: 150px;
}

.infoWindow .details {
    padding-left: 15px;
}

.infoWindow ul {
    margin: 10px 0px 0px;
    padding: 0px;
    list-style: none;
}

.infoWindow ul li {
    font-weight: 300;
    margin-bottom: 10px;
    font-size: 14px;
}

.infoWindow ul li span, .infoWindow ul li a {
    display: block;
    font-weight: 500;
    font-size: 15px;
}

.infoWindow a, .infoWindow ul li a {
    color: rgb(244, 67, 54);
}

.infoWindow > p {
    display: flex;
}

.infoWindow > p span {
    padding-right: 30px;
    font-size: 0.9em;
    font-weight: 500;
}

.infoWindow > p span.member[data="No"] {
    display: none;
}

.tribeDirectory #loader {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 99;
    background: rgba(26, 26, 26, 0.19);
    border-radius: 40px;
    text-align: center;
}

.searchOptions .option {
    margin: 10px;
    padding: 5px 10px;
    color: rgb(39, 31, 27);
    background: transparent;
    border: 0px;
    text-align: center;
    min-width: 150px;
    filter: invert(1) brightness(0.5);
}

.searchOptions .option img {
    height: 37px;
    display: block;
    margin: 0px auto;
}

.searchOptions .option:hover {
    filter: invert(0);
}

.searchOptions .option.active {
    filter: invert(0);
}

.searchInputBlock #loader i {
    left: 0px;
    top: 0px;
    font-size: 0px;
    position: relative;
    width: 65px;
    height: 65px;
    text-align: center;
    line-height: 65px;
}

.searchInputBlock #loader i::before {
    font-size: 24px;
}

.search-container {
    display: flex;
    align-items: center;
    background: white;
    padding: 0px;
    border-radius: 40px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 10px;
    border: 1px solid rgb(209, 203, 183);
    position: relative;
}

.search-container i {
    color: rgb(74, 74, 74);
    font-size: 24px;
    width: 35px;
    text-align: center;
    display: inline-block;
}

.search-container label {
    display: none;
}

.search-container input {
    border: none;
    outline: none;
    font-size: 16px;
    width: 100%;
    padding: 0px 20px;
    background: transparent;
    min-height: 40px;
}

.search-container button {
    background: rgb(86, 72, 64);
    height: 60px;
    padding: 0px 15px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    font-size: 0px;
}

.search-container button i {
    color: rgb(255, 255, 255);
}

.ActivityImage img {
    padding: 5px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(230, 227, 219);
    border-radius: 5px;
    box-shadow: rgb(221, 221, 221) 0px 0px 5px;
    transform: rotate(-3deg);
}

.ActivityImage.block2 img {
    transform: rotate(2deg);
    position: relative;
    top: 30px;
}

.searchformBlock {
    text-align: center;
    padding: 15px 0px;
}

.searchformBlock h2 {
    text-align: center;
    font-size: 3em;
    font-weight: 900;
    letter-spacing: 1px;
    background: url("/image/cache/fancyBG.svg") center bottom / contain no-repeat;
}

.searchformBlock p {
    font-weight: 500;
}

.tribeDirectory {
    position: relative;
    padding: 10px 0px;
}

.keywordsPanel {
    margin: 15px 0px;
    overflow: hidden;
    transition: opacity 0.2s ease-in, filter 0.2s ease-in;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 10px;
    border-radius: 15px;
    border: 1px solid rgb(246, 242, 229);
    display: none;
}

.keywordsPanel.active {
    position: absolute;
    width: 100%;
    max-width: 600px;
    background: rgb(255, 255, 255);
    z-index: 99;
    display: block;
}

.keywordWrapper {
    padding: 15px 0px 15px 10px;
    overflow-y: auto;
    max-height: 300px;
}

.keywordWrapper .optionsPanel label {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    line-height: 1;
    padding: 0px 5px 0px 0px;
    margin-bottom: 10px;
    flex: 0 0 50%;
    max-width: 50%;
}

.keywordWrapper .optionsPanel label.show {
    display: flex !important;
}

.keywordWrapper .optionsPanel label input {
    margin: 0px 2px;
}

.keywordWrapper .optionsPanel#reservations label {
    min-width: 50%;
}

.keywordWrapper .optionsPanel strong {
    display: block;
    min-width: 100%;
}

.keywordWrapper .speciesOptions {
    padding: 3px;
    border-bottom: 1px solid rgb(238, 238, 238);
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.keywordWrapper .speciesOptions b {
    display: flex;
    min-width: 100%;
    justify-content: space-between;
    font-weight: 400;
    cursor: pointer;
}

.keywordWrapper .speciesOptions b::after {
    content: "";
    font-weight: 200;
    font-size: 0.65em;
    font-family: bootstrap-icons !important;
}

.keywordWrapper .speciesOptions label {
    display: none;
}

.speciesOptions.keywordWrapper .speciesOptions label.show {
    display: flex !important;
    align-items: center;
}

.keywordWrapper .optionsPanel {
    padding-right: 10px;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgb(238, 238, 238);
    display: flex;
    flex-wrap: wrap;
}

.keywordWrapper .optionsPanel#keywords {
    border: 0px;
}

.keywordWrapper::-webkit-scrollbar-track {
    background-color: rgb(232, 228, 215);
}

.keywordWrapper::-webkit-scrollbar {
    width: 5px;
    background-color: rgb(209, 203, 183);
}

.keywordWrapper::-webkit-scrollbar-thumb {
    background-color: rgb(106, 100, 96);
}

.highligtTextBlock {
    margin: 60px 0px;
    padding: 34px;
    text-align: center;
    background: rgb(125, 107, 81);
    color: var(--white);
    font-size: 1.2em;
    font-style: italic;
    border-top: 1px solid rgb(204, 204, 203);
    border-bottom: 1px solid rgb(204, 204, 203);
}

.contactDetails {
    margin: 0px;
    padding: 0px;
    list-style: none;
    flex-basis: 0px;
    flex-grow: 1;
    /* max-width: 100%; */
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.contactDetails li {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 5px;
}

.contactDetails li.link {
    min-width: 100%;
}

.contactDetails li.contactData {
    margin-bottom: 5px;
    width: 100%;
    text-align: left;
}

.contactDetails li.contactData div {
    display: flex;
    min-width: 100%;
    align-items: center;
}

.contactDetails li.member[data="No"] {
    display: none;
}

i.bi {
    vertical-align: middle;
}

.contactDetails li.contactData div span, .contactDetails li.contactData div i {
    margin-right: 5px;
    line-height: 1.3;
}

.contactDetails li.contactData div i {
    font-size: 1.1em;
    font-weight: 200;
    color: rgb(86, 72, 64);
}

.contactDetails li.contactData div[data=""] {
    display: none;
}

.contactDetails li.address, .contactDetails li.phone {
    width: auto;
    min-width: 30%;
}

.contactDetails li.member a {
    display: inline-block;
    font-size: 0.85em;
    margin: 5px 0px;
}

.contactDetails li.address span + span {
    line-height: 1.3;
}

.contactDetails li span.material-symbols-outlined {
    font-variation-settings: "FILL" 1, "wght" 200, "GRAD" 0, "opsz" 48;
    color: rgb(121, 103, 85);
}

.contactDetails li.link.cta a {
    margin: 15px 0px 0px;
}

.tribeDetails {
    background: rgb(255, 255, 255);
    padding: 10px;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 2px;
    margin: 15px 0px;
}

.tribeDetail {
    margin-bottom: 30px;
    margin-top: 15px;
}

.tribeDetail .imageWrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(245, 244, 241);
}

.tribeDetail .headerImageWrapper {
    width: 80%;
    display: flex;
}

.tribeDetail .headerImageWrapper img {
    object-fit: cover;
    height: 100%;
    padding-bottom: 2px;
    margin-bottom: 2px;
}

.tribeDetail .headrPhotos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 20%;
    align-items: flex-start;
}

.tribeDetail .headrPhotos span {
    max-width: 100%;
}

.tribeDetail .headrPhotos span[data="1"] {
}

.tribeDetail .headrPhotos img {
    margin: 0px 2px 2px;
    object-fit: cover;
}

.tribeDetail .headrPhotos img.active {
    opacity: 0.5;
}

.tribeDetail .img {
    height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tribeDetail .img img {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
    display: block;
    margin: 0px auto;
}

a.tribeLink {
    display: block;
}

.linksBlock {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 15px;
}
.tribeNameBlock { }
.tribeNameBlock .tribeName {
    margin-bottom: 15px;
    display: flex;
}

.tribeNameBlock div.website {}

.tribeNameBlock div.website img {
    display: block;
    margin: 0;
    padding-right: 15px;
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
}

.tribeNameBlock div.website[data=""], .tribeNameBlock div.website img[src=""] {
    display: none;
}

.tribeNameBlock div.website span {
    vertical-align: middle;
    font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 48;
    font-size: 18px;
    color: rgb(121, 103, 85);
}

#tribeTabs {
    margin: 0px 0px -1px;
    padding-left: 30px;
    display: flex;
    flex-wrap: nowrap;
}

#tribeTabs .nav-link {
    background: rgb(245, 244, 241);
    margin-right: 4px;
    margin-bottom: 0px;
    font-size: 1.0em;
    font-weight: 400;
    padding: 8px 20px;
    border-width: 1px 1px 0px;
    border-top-style: solid;
    border-right-style: solid;
    border-left-style: solid;
    border-top-color: rgb(230, 227, 219);
    border-right-color: rgb(230, 227, 219);
    border-left-color: rgb(230, 227, 219);
    border-image: initial;
    border-bottom-style: initial;
    border-bottom-color: initial;
    height: 100%;
}

#tribeTabs .nav-link.active {
    background: rgb(255, 255, 255);
    box-shadow: rgba(49, 49, 49, 0.15) 1px -1px 2px;
    position: relative;
    z-index: 3;
}

#tribeTabContent {
    box-shadow: rgba(49, 49, 49, 0.15) 0px -1px 0px;
    position: relative;
    background: rgb(255, 255, 255);
    padding-top: 15px;
}

.tribeDetail > ul {
    margin: 15px 0px 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.tribeDetail > ul li {
    min-width: 50%;
    font-weight: 300;
    margin-bottom: 10px;
    font-size: 14px;
}

.tribeDetail > ul li span, .tribeDetail > ul li a {
    display: block;
    font-weight: 500;
    font-size: 15px;
}

.tribeDetails a, .tribeDetails ul li a {
    color: rgb(244, 67, 54);
}

.tribeDetail > p {
    display: flex;
    justify-content: flex-end;
}

.tribeDetail > p span {
    padding-right: 30px;
    font-size: 0.9em;
    font-weight: 500;
}

.tribeDetail > p span.member[data="No"] {
    display: none;
}

.tribeDetail h1 {
    margin: 0px;
}

.tribeDetail h2 {
    margin: 0px;
    font-size: 1.4em;
}

.tribeDetail .infoBlock ul {
    padding: 0px;
    list-style: none;
    display: none;
    flex-wrap: wrap;
    margin: 0px;
}

.tribeDetail .infoBlock {
    margin-bottom: 15px;
    display: none;
}

.tribeDetail .infoBlock.show {
    display: block;
}

.tribeDetail .infoBlock .blockName {
    margin-bottom: 10px;
    font-size: 13px;
}

.tribeDetail .infoBlock .blockName b {
    display: block;
    font-size: 18px;
}

.tribeDetail .infoBlock ul.show {
    display: flex !important;
    flex-wrap: wrap;
}

.tribeDetail .infoBlock ul li {
    padding-right: 10px;
}

.tribeDetail .infoBlock ul li.label {
    min-width: 100%;
    margin-bottom: 5px;
}

.tribeDetail .infoBlock ul li.label b {
    font-weight: 500;
}

.tribeDetail .infoBlock ul li.values {
    background: rgb(245, 244, 241);
    border: 1px solid rgb(230, 227, 219);
    margin: 0px 10px 10px 0px;
    padding: 10px;
    flex: 1 1 auto;
    border-radius: 5px;
    flex-wrap: wrap;
}

.tribeDetail .infoBlock ul li.values span {
    min-width: 100%;
    margin-top: 5px;
}

.tribeDetail .infoBlock ul li.values span label {
    margin: 0px;
    font-weight: 500;
    font-size: 16px;
}

.tribeDetail .infoBlock ul li.values span.desc {
    font-size: 0.8em;
    line-height: 1.2;
    margin: 0px;
}

.tribeDetail .infoBlock ul li.values span.val {
    min-width: auto;
    padding-left: 10px;
    line-height: 26px;
    display: flex;
    align-items: center;
}

.infoBlock.Species ul.show, .infoBlock.activities ul.show {
    display: block !important;
}

.infoBlock.Species span.val::before {
    content: "";
    display: none;
    width: 7px;
    height: 7px;
    border-radius: 7px;
    background: rgb(51, 51, 51);
    margin: 5px;
}

ul.contactDetails li[data=""], .tribeDetail ul li[data=""] {
    display: none;
}

.tribeDetail ul li span {
    display: block;
    font-weight: 300;
}

.mapPanel {
    width: 100%;
    height: 300px;
    background: rgb(245, 245, 241);
    border-radius: 5px;
}

.mapPanel ~ small {
    display: block;
    text-align: center;
}

.subPagesearchBlock {
    position: relative;
    z-index: 2;
    background: var(--offwhite);
    margin-top: 60px !important;
    & .searchOptions .option {
        margin: 0px;
        padding: 0px 0px 5px;
        font-size: 14px;
        & img {
            max-height: 30px;
        }
    }
}

.tribelinksBlock {
    margin-bottom: 30px;
    & ul {
        list-style: none;
        padding: 0px;
        margin: 0px;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: space-between;
        & li {
            text-align: center;
            margin: 15px 0px;
            padding: 15px;
            & a {
                font-weight: 500;
                font-size: 1.1em;
            }

            & img {
                max-width: 130px;
                border-radius: 50%;
                display: block;
                margin: 0px auto;
            }
        }
    }

    &#stateLinks ul li {
        text-align: left;
        flex: 0 0 25%;
        max-width: 25%;
        & a span {
            display: block;
            font-size: 0.9em;
            color: var(--secondary);
        }
    }

    @media (min-width: 0px) and (max-width: 991px) {
        & ul {
            justify-content: center;
            & li {
                flex: 0 0 25%;
                max-width: 25%;
            }
        }
    }

    @media (min-width: 0px) and (max-width: 780px) {
        & ul li {
            flex: 0 0 50%;
            max-width: 50%;
        }

        &#stateLinks ul li {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }
}

.divTable {
    width: 100%;
    & .divRow {
        display: flex;
        width: 100%;
        flex-wrap: nowrap;
        & .divCol {
            padding: 5px;
            border-bottom: 1px solid var(--gray);
            vertical-align: bottom;
            flex: 0 0 20%;
            max-width: 20%;
            &.tribe{ 
                a{font-weight:400;}
                span{display:block;font-size:0.9em;font-style: italic;}
            }
            &.Email {
                word-break: break-all;
            }
        }

        &:nth-child(2n+1) .divCol {
            background: var(--gray);
        }
        &.Header .divCol {
            background: var(--light);
            font-weight: 500;
        }
    }

    @media (min-width: 0px) and (max-width: 780px) {
        & .divRow {
            flex-direction: column;
            border: 1px solid var(--light);
            margin-bottom: 10px;
            &.header {
                display: none;
            }

            & .divCol {
                flex: 0 0 100%;
                max-width: 100%;
                display: flex;
                flex-wrap: nowrap;
                font-weight: 400;
                &::before {
                    content: attr(data);
                    min-width: 130px;
                    padding-right: 10px;
                    font-weight: 300;
                    font-size: 0.9em;
                }

                &.tribe {flex-wrap: wrap;font-size: 1.2em;
                   span{flex: 0 0 100%;max-width: 100%; font-size:0.8em;}
                    &::before {
                        display: none;
                    }
                }
            }
        }
    }
}

/*Seasons & Dates*/
.seasons_datesDetails {
    .divTable {margin-bottom: 25px;
        & .divTable{border: 1px solid var(--light);border-top: 0;margin-bottom: 0;}
        & .divRow {
            & .divCol {flex: 0 0 33.333%;max-width: 33.333%;}      
            &:nth-child(2n+1) .divCol {background:none;}             
            &.stampRow{padding: 5px;background: var(--gray); 
                & .divCol{/* flex: 0 0 100%; *//* max-width: 100%; */
                    &.type span{display:block; text-align:right; font-weight:500;}        
                }
                strong{font-weight:500;}
                span{margin-left:5px;}
            }
            &.Header{margin-bottom: 0;
                 .divCol {background: var(--light);font-size: .90em;padding: 3px 5px;}  
            }            
        }
        @media (min-width: 0px) and (max-width: 780px) {
            & .divRow {margin-bottom:0;border-bottom: 0;
                &.Header{display:none;}
                & .divCol {flex: 0 0 100%;max-width: 100%;
                     &[data="Tribal Status"]{word-break:break-all;}         
                }    
                &.stampRow{
                    div.stamp:before, div.type:before{display:none;}
                    & .divCol{flex: 0 0 100%;max-width: 100%;}
                }
            }
        }               
    }
}
/*Banners*/
.bannerBlock {
    & .banner{margin:15px 0;margin-top: 60px;text-align:center;
        img{display:block;margin: 0 auto;}         
    }
}

/*sponsors*/
.sponsorLogo{ text-align:center;
    a span{font-weight:500; font-size:1.3em;}
}

.emailSignup {background:var(--gray);}
    
@media (min-width: 780px) {
    .subpage-content-block.page-content-block {
        margin: 20px 0px;
    }

    .footer-logo a {
        display: inline-block;
        vertical-align: top;
    }

    .footer-logo a img {
        max-height: 70px;
    }
}

@media (min-width: 0px) and (max-width: 1080px) {
    #socail > span {
        display: block;
        line-height: normal;
    }

    #socail li a::after {
        line-height: normal;
        font-size: 25px;
        margin: 0px 2px;
    }
}

@media (min-width: 0px) and (max-width: 991px) {

    .subPagesearchBlock{padding-top: 3em !important;}
    
    .logo {
        margin-top: 2px;
    }

    .NavbarToggle {
        padding: 11px 0px;
    }

    .HeaderMenu > ul > li {
        padding: 0px 7px;
    }

    .Navigation .navbar-collapse {
        display: flex;
        justify-content: flex-end;
    }

    .Sidebar__backdrop {
        background-color: rgba(0, 0, 0, 0.25);
        left: 0px;
        top: 0px;
        z-index: 999;
        display: none;
    }

    .Sidebar--active, .Sidebar__backdrop {
        position: fixed;
        height: 100%;
        width: 100%;
    }

    .Sidebar.active .Sidebar__backdrop {
        display: block;
    }

    .Sidebar--active, .Sidebar__backdrop {
        position: fixed;
        height: 100%;
        width: 100%;
    }

    .Header.headBg .NavbarToggle span {}
    
    body.subpage .Header .sidebar__Close i, .Header.headBg .sidebar__Close i {
        color: rgb(220, 53, 69);
    }

    body.tribesHome, body.tribesSearch {
        height: auto !important;
    }

    .mapWrapper {
        position: relative;
        width: 100%;
        height: 420px !important;
    }

    #mapBlock {
        height: 100%;
        min-height: 100%;
    }

    .trbeListWrapper {
        overflow: visible;
        height: auto;
    }

    .tribeDetail .img {
        height: auto;
    }

    .tribeNameBlock {
        margin-top: 30px;
    }

    .tribesList .tribeRow.highlight {
        border-left: 2px dashed rgb(141, 125, 101);
        border-bottom: 4px solid rgb(141, 125, 101);
    }

    .tribeDetail > .d-flex {
        flex-wrap: wrap;
    }

    .tribeDetail .headerImageWrapper {
        width: 100%;
    }

    .tribeDetail .headrPhotos {
        width: 100%;
    }

    .tribeDetail .headrPhotos span[data="1"] {
        display: block;
    }

    .tribeDetail .headrPhotos span {
        max-width: 25%;
    }

    .tribeDetail .headrPhotos span img {
        padding: 2px;
        border: 1px solid rgb(221, 221, 221);
    }

    .tribeDetail .headrPhotos img {
        padding: 0px;
        margin: 0px;
    }

    .contactDetails {
        -ms-flex: 0 0 70%;
        flex: 0 0 70%;
        max-width: 70%;
    }

    .subfooter-nav  {text-align:center;justify-content: center;}
}

@media (min-width: 0px) and (max-width: 880px) {}

@media (min-width: 0px) and (max-width: 779px) {
    .page-content-block {
        margin-top: 20px;
        padding-top: 0px;
    }

    .nav-top {
        margin-top: 0px;
    }

    .nav-top li a {
        padding: 8px 6px !important;
    }

    .header {
        padding: 0px;
        border: 0px;
    }

    .header > .container {
        width: 98%;
    }

    .logo {
        padding: 0px;
        margin-top: 3px;
    }

    .Header.headBg {
        padding: 0px;
    }

    .Header.headBg .logo {
        height: 80px;
    }

    .pageHeader-block.no-pageHeader {
        padding-top: 85px;
    }

    .Navigation .NavbarToggle {
        top: 0px;
        z-index: 1;
        display: block;
        float: right;
        margin: 10px 0px;
    }

    .nav-top ul {
        margin: 0px !important;
    }

    #main-navigation {
        position: fixed;
        overflow-y: auto;
        width: 0px;
        height: 100%;
        margin-bottom: 0px;
        z-index: 1;
        left: 0px;
        top: 0px;
        background: rgb(8, 54, 76);
        display: none;
    }

    #main-navigation.navbar-block {
        display: block;
    }

    footer .footer-bg {
        background-position: center bottom;
    }

    .footer-nav > ul > li {
        vertical-align: top;
    }

    .footer-nav-block {
        clear: both;
    }

    .footer-logo, .newsletter {
        width: 100%;
        float: none;
    }
    footer  .copyright { justify-content: center;}
    .copyright, .copyright span {
        text-align: center;
       
    }

    nav#privacy {
        justify-content: center;
    }

    .searchformBlock {
        padding: 0px;
    }

    .searchformBlock h2 {
        font-size: 2.35em;
    }

    .ActivityImage.block1 {
        text-align: right;
    }

    .ActivityImage img {
        max-width: 200px;
    }

    .searchOptions .option {
        min-width: 100px;
    }

    .keywordWrapper .speciesOptions {
    }

    .keywordWrapper .optionsPanel label {
        min-width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .keywordWrapper .optionsPanel#reservations label {
        min-width: 100%;
    }

    #tribeTabs {
        padding-left: 15px;
    }

    #tribeTabs .nav-link {
        padding: 6px 10px;
        font-size: 0.9em;
    }
    .infoBlock.huntDetails ul.show{flex-wrap: nowrap;flex-direction: column;}   
}

@media (min-width: 0px) and (max-width: 639px) {
    .nav-top {
        display: none;
    }

    .info-Block, .featuresBlock .detailBlock, .modulesBlock .detailBlock {
        display: block;
    }

    .detailBlock div.lead, .detailBlock p {
        text-align: center !important;
    }
}

@media (min-width: 0px) and (max-width: 579px) {
    .logo img {
        max-width: 200px;
        padding: 18px 0px;
    }

    .home-content-block, .page-content-block.news-block, .feature-blocks {
        padding: 30px 0px;
    }

    .subpage-content-block.page-content-block {
        margin-top: 129px;
    }

    #launcher {
        bottom: 50px !important;
    }

    #socail li {
        margin: 0px 2px;
    }

    .ActivityImage img {
        max-width: 100%;
    }

    #tribeTabs {
        padding-left: 0px;
    }

    .tribeNameBlock .contactDetails, .tribeNameBlock div.website {
        /* flex: 0 0 100%; */
        /* max-width: 100%; */
        margin-bottom: 15px;
    }

    .subPagesearchBlock {
        padding-top: 40px;
    }

    .cd-top {
        bottom: 120px;
    }
}

@media (min-width: 0px) and (max-width: 460px) {
    .nav-top {
        position: relative;
        text-align: right;
    }

    #socail > span {
        display: inline-block;
        vertical-align: middle;
        font-family: Montserrat, sans-serif;
        font-size: 11px;
    }

    #socail li a::after {
        font-size: 20px;
        margin: 2px;
    }

    .keywordWrapper .optionsPanel label {
        min-width: 100%;
        flex: 0 0 100%;
        max-width: 50%;
    }
    .tribeName{flex-direction: column;}
    .tribeNameBlock .contactDetails, .tribeNameBlock div.website {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }

    #tribeTabs{flex-direction:column;}
    #tribeTabs li{flex: 0 0 100%;max-width: 100%;}
    #tribeTabs li a.nav-link{font-weight: 500;padding: 10px;}
}

@media (min-width: 0px) and (max-width: 380px) {
    .logo a {
        letter-spacing: 0px;
    }

    .logo img {
        margin-right: -5px;
    }

    .logo .tag {
        letter-spacing: 1px;
        font-size: 15.5px;
    }

    .search-btn, .nav-icon {
        margin: 0px 5px;
        padding: 0px;
    }

    .footer-nav > ul > li {
        display: block;
        width: auto;
    }
}

@media (orientation: landscape) and (min-height: 100px) and (max-height: 540px) {
}
