body {
    background: #F0ECDC;
}

.post, .page {
    margin: 0;
    position: relative;
}

*:focus {
    outline: none;
}

img {
    width: 100%;
}

/* Fonts
--------------------------------------------- */

h1, h2, h3, h4, h5, h6, p, a {
    font-family: gill-sans-nova, sans-serif;
    font-weight: 400;
}


/* Alert Bar
--------------------------------------------- */

.alert-bar {
    width: 100%;
    display: flex;
    padding: 0 20px;
    background: #0F3C35;
    color: #EBE7D7;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: .07rem;
    text-transform: uppercase;
    height: 36px;
    align-items: center;
    transition: background 300ms ease;
}

    .alert-bar:hover {
        background: #0d312c;
        color: #EBE7D7;
    }

    .alert-bar:active, .alert-bar:visited {
        color: #EBE7D7;
    }


/* Header
--------------------------------------------- */

.site-header {
    padding: 20px;
}

.desktop-head-wrap {
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.desktop-header-inner {
    display: flex;
    background: url('../img/leather_texture.jpg');
    background-size: cover;
    height: 60px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.55);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.55);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.55);
}

    .desktop-header-inner .main-navigation ul {
        display: flex;
        justify-content: space-between;
        width: 100%;
        height: 100%;
    }

    .desktop-header-inner .menu-primary-container {
        width: 100%;
        height: 100%;
    }

    .desktop-header-inner .main-navigation {
        display: flex;
        width: 100%;
        align-items: center;
    }

        .desktop-header-inner .main-navigation li {
            position: relative;
            text-align: center;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 2px solid #EBE7D7;
            border-right: 0;
        }

    .desktop-header-inner .site-branding a {
        line-height: 1;
        padding: 15px 5%;
        border: 2px solid #EBE7D7;
        border-right: 0;
        height: 100%;
        display: flex;
        align-items: center;
        transition: background 300ms ease;
    }

    .desktop-header-inner .main-navigation a {
        display: flex;
        text-decoration: none;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
        color: #EBE7D7;
        font-size: 14px;
        letter-spacing: .07rem;
        text-transform: uppercase;
        font-weight: 500;
        transition: background 300ms ease;
    }

        .desktop-header-inner .main-navigation a:hover, .site-branding a:hover {
            background: rgba(0,0,0,0.3);
        }

    .desktop-header-inner .gold-btn a {
        background: rgb(170, 152, 104);
        background: linear-gradient(270deg, rgba(205,184,129,1) 0%, rgba(125,98,46,1) 100%);
        transition: background 300ms ease;
    }

        .desktop-header-inner .gold-btn a:hover {
            background: rgb(170, 152, 104);
            background: linear-gradient(270deg, rgba(180, 161, 113, 1) 0%, rgba(97, 75, 34, 1) 100%);
        }

.nav-border-rt {
    border-right: 2px solid #EBE7D7 !important;
}

/* Mobile Header
--------------------------------------------- */

.mobile-header {
    display: none;
    position: relative;
    background: url('../img/leather_texture.jpg');
    background-size: cover;
    width: 100%;
    height: 50px;
    z-index: 101;
    border-bottom: 2px solid #EBE7D7;
}

.site-branding-mobile {
    height: 100%;
    display: flex;
    max-width: 280px;
}

    .site-branding-mobile img.custom-logo {
        height: 100%;
        width: auto;
    }

.mobile-header-inner {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
}


/* Icon 4 */

#nav-icon4 {
    position: relative;
    width: 41px;
    min-width: 41px;
    max-width: 41px;
    height: 20px;
    margin: 50px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin: 0;
}

    #nav-icon4 span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: #EBE7D7;
        border-radius: 0;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

        #nav-icon4 span:nth-child(1) {
            top: 0px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }

        #nav-icon4 span:nth-child(2) {
            top: 10px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }

        #nav-icon4 span:nth-child(3) {
            top: 20px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }

    #nav-icon4.open span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: -4px;
        left: 8px;
    }

    #nav-icon4.open span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }

    #nav-icon4.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 25px;
        left: 8px;
    }

.mobile-nav-sub {
    display: none;
    background: #C12033;
    color: #fff !important;
    padding: 10px 30px;
    text-align: center;
    border-radius: 4px;
    transition: opacity 300ms ease;
    font-size: 13px;
    line-height: 1;
    letter-spacing: .05rem;
    text-transform: uppercase;
    margin-left: 20px;
}

    .mobile-nav-sub:hover {
        opacity: .7;
    }

.nav-mobile-pop {
    z-index: 100;
    position: fixed;
    background: #751A1A;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    top: 0;
    visibility: hidden;
    opacity: 0;
    overflow-y: scroll;
    padding-bottom: 30px;
}

    .nav-mobile-pop .inner {
        overflow-x: visible;
    }

.nav-mobile-pop-inner {
    padding: 8rem;
}


.main-mobile-menu {
    margin: 0;
    margin-top: 120px;
    list-style: none;
    padding: 0;
    visibility: hidden;
}

.pop-hide {
    display: none !important;
}

.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}


.nav-mobile-pop .menu-primary-container {
    display: flex;
    justify-content: center;
}

.nav-mobile-pop .main-navigation ul {
    display: inline-block;
}

.nav-mobile-pop .main-navigation li {
    text-align: center;
}

    .nav-mobile-pop .main-navigation li a {
        padding: 10px;
        font-size: 36px;
        font-weight: 300;
        color: #EBE7D7;
        transition: opacity 300ms ease;
    }

        .nav-mobile-pop .main-navigation li a:hover {
            opacity: .7;
        }

.nav-mobile-pop .main-navigation .gold-btn {
    display: none;
}

.order-online-mobile ul {
    column-gap: 20px;
}

.order-online-mobile li.menu-item {
    display: none;
}

.order-online-mobile li.gold-btn {
    display: inherit;
}

.mobile-column-right {
    display: flex;
    column-gap: 20px;
}

.order-online-mobile li.gold-btn a {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #EBE7D7;
    text-transform: uppercase;
    transition: opacity 300ms ease;
}

    .order-online-mobile li.gold-btn a:hover {
        opacity: .7;
    }

/* Hero Slider
--------------------------------------------- */

.hero-slider {
    width: 100%;
    height: calc(75vh + 100px);
    position: relative;
    background: #000;
}

    .hero-slider .slick-list, .hero-slider .slick-track {
        height: 100%;
    }

    .hero-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-slider .slick-arrow {
        position: absolute;
        top: 50%;
        z-index: 2;
        font-size: 0;
        background: #F0ECDC;
        width: 40px;
        height: 80px;
        opacity: .7;
        transition: opacity 300ms ease;
        border-radius: 0;
        border: none;
        cursor: pointer;
    }

        .hero-slider .slick-arrow:hover {
            opacity: 1;
        }

    .hero-slider .slick-next {
        right: 0px;
    }


        .hero-slider .slick-next:before {
            content: '';
            position: absolute;
            top: 0;
            left: 54%;
            transform: translate(-50%);
            width: 15px;
            height: 80px;
            background: url('../img/chev-next.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: 50%;
        }

    .hero-slider .slick-prev {
        left: 0px;
    }

        .hero-slider .slick-prev:before {
            content: '';
            position: absolute;
            top: 3px;
            left: 45%;
            transform: translate(-50%);
            width: 15px;
            height: 80px;
            background: url('../img/chev-prev.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: 50%;
        }


/* Two Up Text Block
--------------------------------------------- */

#two-up-text-block {
    padding: 40px 0;
    background: #751A1A;
}


.content-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.content-wrap {
    width: 100%;
    max-width: 50%;
    padding: 0 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .content-wrap:first-child {
        border-right: 1px solid #F0ECDC;
    }

.animated-horse {
    max-width: 200px;
    margin-bottom: 30px;
}

.column-header {
    font-size: 14px;
    text-transform: uppercase;
    color: #F0ECDC;
    letter-spacing: 2px;
    font-weight: 500;
}

.content-info {
    max-width: 80%;
    margin: 0 auto;
}

    .content-info p {
        font-size: 28px;
        line-height: 1.4;
        color: #F0ECDC;
        font-weight: 300;
    }

.accent-text {
    font-size: 15px;
    line-height: 1.4;
    color: #F0ECDC;
    max-width: 40%;
    margin: 0 auto;
    font-weight: 300;
}

.accent-border {
    width: 100%;
    max-width: 70px;
    height: 1px;
    background: #F0ECDC;
    margin: 0 auto;
    margin-bottom: 30px;
}


/* Team Section
--------------------------------------------- */

#team-section {
    position: relative;
    padding: 40px 30px;
    width: 100%;
    background: #F0ECDC;
}

.top-color-block {
    width: 100%;
    height: 20%;
    background: green;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.team-list {
    max-width: 1000px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.member-wrap {
    width: 100%;
    max-width: 50%;
    padding: 30px 10px;
    text-align: center;
}

.member-headshot {
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: 25px;
}

.name-text {
    font-size: 14px;
    text-transform: uppercase;
    color: #004C45;
    letter-spacing: 2px;
    font-weight: 500;
    margin: 0;
}

.bio {
    max-width: 80%;
    margin: 0 auto;
}

    .bio p {
        font-size: 18px;
        color: #004C45;
        font-weight: 300;
    }

/* Menu List
--------------------------------------------- */

#menus {
    text-align: center;
    padding: 40px 30px 40px;
}

    #menus .menus {
        text-align: center;
        width: 100%;
    }

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 20px;
    display: flex;
}

    .menu-list li {
        padding: 10px;
        width: 100%;
        flex-grow: 1;
        flex-basis: auto;
    }

@media (max-width: 799px) {
    .menu-list {
        flex-wrap: wrap;
    }

        .menu-list li {
            width: 50%;
        }
}

@media (max-width: 599px) {
    .menu-list li {
        width: 100%;
    }
}

.menu-list li a {
    margin-top: 5px !important;
    box-shadow: none;
    background-color: #004C45;
    color: white;
    font-family: gill-sans-nova, sans-serif !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    border-radius: 0;
    border: 1px solid #004C45;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    text-decoration: none;
    width: 100%;
}

    .menu-list li a:hover {
        opacity: .7;
    }


/* Slider Text
--------------------------------------------- */

.slider_text {
    display: flex;
    padding: 40px 0;
}

.body-slider-wrap {
    width: 50%;
    height: 650px;
}


.body-slider-wrap {
    width: 50%;
    height: 650px;
    position: relative;
}

.body-slider, .body-slider .slick-list, .body-slider .slick-track {
    height: 100%;
}

    .body-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .body-slider .slick-dots {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

        .body-slider .slick-dots li {
            margin: 0 8px;
        }

            .body-slider .slick-dots li button {
                cursor: pointer;
                font-size: 0;
                width: 10px;
                height: 10px;
                background: rgba(255,255,255,.7);
                border: none;
                border-radius: 50%;
                transition: background 300ms ease;
            }

                .body-slider .slick-dots li button:hover {
                    background: rgba(255,255,255,1);
                }

            .body-slider .slick-dots li.slick-active button {
                background: rgba(255,255,255,1);
            }

.slider-content {
    position: relative;
    width: 50%;
    height: 650px;
    background: url('../img/leather_square.jpg');
    background-size: cover;
    padding: 20px;
}

.dot-border-outer {
    border: 1px dotted #EBE7D7;
    width: 100%;
    height: 100%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.slider-content-inner {
    max-width: 100%;
    margin: 0 auto;
}

    .slider-content-inner .name-text {
        font-size: 14px;
        color: #EBE7D7;
    }

    .slider-content-inner p {
        font-size: 20px;
        font-weight: 300;
        color: #EBE7D7;
    }

@media (min-width: 800px) {
    .slider-content-inner p {
        font-size: 18px;
    }
}

.paragraph-wrap {
    max-width: 80%;
    margin: 0 auto;
}

.button-row {
    display: flex;
    justify-content: center;
    column-gap: 10px;
}

a.button {
    min-width: 160px;
    border: 1px solid #EBE7D7;
    padding: 8px 25px;
    text-align: center;
    font-size: 12px;
    color: #EBE7D7;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: opacity 300ms ease;
}

    a.button:hover {
        opacity: .7;
    }

/* Two Up Content Wrap
--------------------------------------------- */

.two-up-content-wrap {
    max-width: 1600px;
    padding: 100px 30px;
    display: flex;
    margin: 0 auto;
    column-gap: 80px;
    justify-content: space-between;
}

.food-pic {
    width: 100%;
}

.image-column {
    display: flex;
    flex-direction: column;
    row-gap: 200px;
}

    .image-column:nth-child(2) {
        flex-direction: column-reverse;
        row-gap: 200px;
        margin-top: 200px;
    }

        .image-column:nth-child(2) .icon {
            max-width: 320px;
            margin: 0 auto;
            margin-bottom: 200px;
        }

    .image-column:first-child .icon {
        max-width: 180px;
        margin: 0 auto;
    }

#single-image {
    padding: 40px 30px;
}

.single-image {
    width: 100%;
    display: block;
    max-width: 1400px;
    margin: 0 auto;
}

/* Review Slider
--------------------------------------------- */

#reviews {
    max-width: 1100px;
    padding: 0 30px 80px;
    margin: 0 auto;
    text-align: center;
}

.review-slider {
    max-width: 960px;
    margin: 0 auto;
    margin-top: 40px;
}

.review-stars {
    max-width: 100px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.review-slider .paragraph-wrap p {
    font-size: 24px;
    font-weight: 300;
    color: #004C45;
    padding: 0 60px;
}

.review-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    font-size: 0;
    width: 40px;
    height: 80px;
    opacity: .7;
    transition: opacity 300ms ease;
    border-radius: 0;
    border: none;
    cursor: pointer;
    background: none;
    border: none;
}

    .review-slider .slick-arrow:hover {
        opacity: 1;
    }

.review-slider .slick-next {
    right: 0px;
}


    .review-slider .slick-next:before {
        content: '';
        position: absolute;
        top: 3px;
        left: 54%;
        transform: translate(-50%);
        width: 15px;
        height: 80px;
        background: url('../img/chev-next.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 50%;
    }

.review-slider .slick-prev {
    left: 0px;
}

.review-slider .slick-track {
    display: flex;
}

    .review-slider .slick-track .slick-slide {
        display: flex;
        height: auto;
        align-items: center;
        justify-content: center;
    }

.review-slider .slick-prev:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 45%;
    transform: translate(-50%);
    width: 15px;
    height: 80px;
    background: url('../img/chev-prev.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
}

.review-wrap {
    position: relative;
}

.review-inner {
    postion: absolute;
    top: 50%;
}


/* Instagram Feed
--------------------------------------------- */

#instagram_feed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
}

.feed-intro {
    padding: 0 20px;
}

    .feed-intro p, .feed-intro a {
        font-size: 14px;
        text-transform: uppercase;
        color: #004C45;
        letter-spacing: 2px;
        font-weight: 500;
        margin: 0;
        text-decoration: none;
    }

    .feed-intro a {
        opacity: .7;
        transition: opacity 300ms ease;
    }

        .feed-intro a:hover {
            opacity: 1;
        }


/* Contact
--------------------------------------------- */
#contact {
    padding: 40px 30px;
}

.contact-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    column-gap: 60px;
}

.contact-column {
    width: 100%;
    max-width: 50%;
}

.center-text {
    text-align: center;
    display: block;
    margin: 0 auto;
}

.contact-form-wrap {
    display: block;
    margin-top: 40px;
}

    .contact-form-wrap .wpforms-field-medium {
        width: 100% !important;
        max-width: 100% !important;
        background: #F0ECDC !important;
        border: 1px solid #0F3C35 !important;
        color: #0F3C35 !important;
        font-family: gill-sans-nova, sans-serif !important;
        font-weight: 400 !important;
        font-size: 16px !important;
        padding: 10px 15px !important;
        height: auto !important;
    }

        .contact-form-wrap .wpforms-field-medium::placeholder {
            color: #0F3C35 !important;
            opacity: .6 !important;
            font-size: 16px !important;
            font-weight: 400 !important;
        }

    .contact-form-wrap .wpforms-form textarea {
        min-height: 200px !important;
    }

    .contact-form-wrap .wpforms-error {
        font-family: gill-sans-nova, sans-serif !important;
        color: #751A1A !important;
        padding-top: 5px !important;
    }

    .contact-form-wrap .wpforms-submit {
        min-width: 160px !important;
        border: 1px solid #0F3C35 !important;
        padding: 8px 25px !important;
        text-align: center !important;
        font-size: 12px !important;
        color: #0F3C35 !important;
        text-transform: uppercase !important;
        letter-spacing: 2px !important;
        text-decoration: none !important;
        font-family: gill-sans-nova, sans-serif !important;
        font-weight: 400 !important;
        background: none !important;
        transition: all 300ms ease !important;
        display: block !important;
        margin: 0 auto !important;
    }

        .contact-form-wrap .wpforms-submit:hover {
            background: #0F3C35 !important;
            color: #F0ECDC !important;
        }

    .contact-form-wrap .wpforms-confirmation-container-full {
        text-align: center !important;
    }

/* Footer
--------------------------------------------- */

footer {
    background: #004C45;
    padding: 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 0 0;
}

.footer-columns {
    display: flex;
    column-gap: 30px;
    width: 100%;
    max-width: 50%;
    padding-bottom: 0;
}

.footer-column {
    width: 100%;
    max-width: 33.333333333333%;
}

.footer-img {
    max-width: 180px;
}

footer .name-text {
    color: #F0ECDC;
    font-size: 12px;
}

.footer-content p, .footer-content a {
    color: #F0ECDC;
    text-decoration: none;
    transition: opacity 300ms ease;
}

    .footer-content a:hover {
        opacity: .6;
    }

.social-list {
    width: 100%;
    max-width: 50%;
    display: flex;
    align-items: flex-end;
    column-gap: 40px;
    justify-content: flex-end;
}

.social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    column-gap: 12px;
    margin-bottom: 1.5em;
    position: relative;
    bottom: -5px;
}

    .social-icons li {
        max-width: 40px;
    }

        .social-icons li a {
            transition: opacity 300ms ease;
        }

            .social-icons li a:hover {
                opacity: .7;
            }

.mc4wp-form-fields {
    display: flex;
    justify-content: flex-end;
}

.email-signup {
    margin-bottom: 1.5em;
    position: relative;
    bottom: 2px;
}

.email-sign-up {
    display: flex;
    align-content: flex-end;
    column-gap: 10px;
}

    .email-sign-up label {
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 500;
        margin: 0;
        color: #F0ECDC;
        font-size: 12px;
        font-family: gill-sans-nova, sans-serif;
        display: flex;
        align-items: flex-end;
        column-gap: 10px;
    }

        .email-sign-up label input[type="email"] {
            background: none;
            border: none;
            border-bottom: 1px solid #F0ECDC;
            border-radius: 0;
            font-size: 12px;
            font-family: gill-sans-nova, sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 400;
            color: #F0ECDC;
            padding-left: 0;
            padding-right: 0;
            max-width: 100%;
            width: 280px;
        }

            .email-sign-up label input[type="email"]::placeholder {
                opacity: .7;
            }

    .email-sign-up input[type="submit"] {
        border: 1px solid #F0ECDC;
        padding: 8px 25px;
        text-align: center;
        font-size: 12px;
        color: #F0ECDC;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-decoration: none;
        font-family: gill-sans-nova, sans-serif;
        font-weight: 400;
        background: none;
        transition: all 300ms ease;
        border-radius: 0;
        cursor: pointer;
    }

        .email-sign-up input[type="submit"]:hover {
            opacity: .7
        }

.email-signup .mc4wp-alert {
    font-size: 12px;
    color: #e0ffc7;
    text-align: right;
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #F0ECDC;
}

.footer-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: baseline;
    line-height: 1;
}

    .footer-nav li .footer-link {
        margin: 0;
        padding: 0;
        color: #F0ECDC;
        font-size: 12px;
        text-decoration: none;
        font-size: 13px;
        transition: opacity 300ms ease;
    }

    .footer-nav li {
        margin-right: 10px;
        padding-right: 10px;
        border-right: 1px solid #F0ECDC;
        padding-bottom: 4px;
    }

        .footer-nav li:last-child {
            border-right: none;
            padding-right: 0;
            margin-right: 0;
        }

        .footer-nav li a:hover {
            opacity: .7;
        }

.prop-text p {
    color: #F0ECDC;
    font-size: 12px;
    text-decoration: none;
    font-size: 13px;
    margin: 0;
    padding: 0;
    line-height: 1;
}

/*--------------------------------------------------------------
# Hiring Badge
--------------------------------------------------------------*/

.hiring-badge {
    cursor: pointer;
    background: #F0ECDC;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    z-index: 20px;
    box-shadow: 0 0px 0px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

    .hiring-badge:hover {
        box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    }

.lines-circle {
    width: 170px;
    height: 170px;
    animation: spinning-circle 24s infinite linear;
    transition: animation 200ms ease;
}

@-webkit-keyframes spinning-circle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.hiring-badge:hover .lines-circle {
    animation-play-state: paused;
}

.hiring-inner {
    background: #F0ECDC;
    position: absolute;
    width: 145px;
    height: 145px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hiring-inner h2 {
        font-size: 17px;
        color: #0F3C35;
        font-family: gill-sans-nova, sans-serif;
        font-weight: 500;
        font-style: normal;
        text-transform: uppercase;
        letter-spacing: .3rem;
        margin: 0;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 10px;
    }

    .hiring-inner p {
        font-size: 11px;
        color: #0F3C35;
        font-family: gill-sans-nova, sans-serif;
        font-weight: 500;
        font-style: normal;
        text-transform: uppercase;
        letter-spacing: .13rem;
        margin: 0;
        line-height: 1.2;
        text-align: center;
    }

.hiring-spacer {
    width: 100%;
    height: 200px;
    display: none;
}

.hiring-link-wrap {
    position: fixed;
    z-index: 1000;
    right: 30px;
    bottom: 40px;
}

.viewport-bottom {
    position: absolute;
    right: 30px;
    bottom: 200px;
    margin-top: 20px;
}

.audio-wrap {
    position: fixed;
    z-index: 1000;
    right: 95px;
    bottom: 225px;
}

    .audio-wrap img {
        border-radius: 50%;
        box-shadow: 0 0px 0px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    }

    .audio-wrap:hover img {
        box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    }

.viewport-bottom-audio {
    position: absolute;
    right: 95px;
    bottom: 390px;
    margin-top: 20px;
}

/*--------------------------------------------------------------
# Entertainment List
--------------------------------------------------------------*/

#entertainment {
    padding: 60px 30px;
}

    #entertainment .name-text {
        text-align: center;
        margin-bottom: 40px;
    }

.entertainment-wrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.show-list {
    list-style: none;
    margin: 0;
    padding: 0;
}


    .show-list li {
        display: flex;
    }

.entertainment-header {
    width: 100%;
    border-top: 2px solid #004C45;
    border-bottom: 2px solid #004C45;
    margin-bottom: 10px;
}

.table-head {
    margin: 0;
    padding: 10px 0;
    text-transform: font-size: 14px;
    text-transform: uppercase;
    color: #004C45;
    letter-spacing: 2px;
    font-weight: 500;
    margin: 0;
    width: 100%;
    max-width: 25%
}

#act {
    max-width: 50%;
}

.event-item {
    padding: 10px 0;
}

.event-text {
    margin: 0;
    width: 100%;
    max-width: 25%;
    font-size: 22px;
    color: #004C45;
    font-weight: 300;
}

    .event-text a {
        color: #004C45;
        opacity: .7;
        text-decoration: underline;
        transition: opacity 300ms ease;
    }

        .event-text a:hover {
            opacity: 1;
        }

.features {
    background: #751a1a;
    padding: 40px 30px;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

    .feature-list li {
        width: 100%;
        max-width: 33.3333333333333333%;
        border: 1px solid #F0ECDC;
        border-right: 0;
        text-align: center;
        color: #F0ECDC;
        padding: 30px;
    }

        .feature-list li:last-child {
            border-right: 1px solid #F0ECDC;
        }

.features .name-text {
    color: #F0ECDC;
    margin-bottom: 6px;
}

.feature-text {
    margin: 0;
    font-size: 28px;
    line-height: 1.4;
    color: #F0ECDC;
    font-weight: 300;
}

#entertainement-coming-soon {
    color: #F0ECDC;
    opacity: .7;
    text-decoration: underline;
    transition: opacity 300ms ease;
}

    #entertainement-coming-soon:hover {
        opacity: 1;
    }

#text-block {
    padding: 0 30px;
}

.page-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 200px 0 60px;
    text-align: center;
    border-bottom: 1px solid #004C45;
}

    .page-header h1 {
        font-size: 48px;
        color: #004C45;
    }

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 100px;
}

    .page-content p, .page-content li {
        font-size: 18px;
        color: #004C45;
        font-family: gill-sans-nova, sans-serif;
        font-weight: 400;
    }

    .page-content a {
        font-size: 18px;
        color: #004C45;
        transition: opacity 300ms ease;
    }

        .page-content a:hover {
            opacity: .7;
        }

        .page-content a:active,
        .page-content a:visited {
            color: #004C45;
        }

.feature-list li {
    display: flex;
    justify-content: center;
    align-content: center;
}

.feature-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.audio-wrap {
    display: none;
}

.three-col {
    width: 100%;
    display: flex;
    column-gap: 50px;
    justify-content: space-between;
    padding: 0 30px;
}

.one-third {
    width: 100%;
    max-width: 33.333333333%;
    display: flex;
    justify-content: center;
}

.res-number {
    font-size: 48px;
    font-weight: 300;
    color: #004C45;
    margin: 0;
}

#reservations {
    padding: 30px 30px 30px 30px;
}

    #reservations > .content-inner > .content-wrap:first-child {
        /*border-right: 1px solid #004C45;*/
    }

.res-number a {
    font-weight: 300;
    margin-top: 10px;
    color: #004C45;
    opacity: .7;
    text-decoration: none;
    transition: opacity 300ms ease;
}

    .res-number a:hover {
        opacity: 1;
    }

#hiringthing-jobs .ht-title-link {
    font-family: gill-sans-nova, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #0F3C35;
    text-decoration: none;
    transition: opacity 300ms ease;
    border-top: 1px solid #0F3C35;
    padding-top: 10px;
}

    #hiringthing-jobs .ht-title-link:hover {
        opacity: .6;
    }

#hiringthing-jobs .ht-location {
    font-family: gill-sans-nova, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #0F3C35;
    margin-bottom: 10px;
    opacity: .7;
}

#hiringthing-jobs .ht-summary {
    font-family: gill-sans-nova, sans-serif;
    color: #0F3C35;
}

#hiringthing-jobs .ht-apply-link {
    background: #751A1A;
    font-family: gill-sans-nova, sans-serif;
    border-radius: 5px;
    display: block;
    width: auto;
    padding: 6px 12px;
    margin-top: 15px;
    display: flex;
    max-width: 120px;
    text-align: center;
    color: #F0ECDC;
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 30px !important;
    transition: opacity 300ms ease;
}

    #hiringthing-jobs .ht-apply-link:hover {
        opacity: .7;
    }

.entertainment-wrap {
    text-align: center;
}

.show-list {
    text-align: left;
}

#load-more {
    color: #0F3C35 !important;
    border: 1px solid #0F3C35 !important;
    display: inline-block;
    margin-top: 25px;
}

    #load-more:hover {
        background: #0F3C35 !important;
        color: #F0ECDC !important;
    }

div.wpforms-container-full .wpforms-form .wpforms-field-label {
    background: #F0ECDC !important;
    color: #0F3C35 !important;
    font-family: gill-sans-nova, sans-serif !important;
    letter-spacing: 2px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
}

div.wpforms-container-full .wpforms-form input[type=checkbox], div.wpforms-container-full .wpforms-form input[type=radio] {
    border: 1px solid #0F3C35;
    background-color: #F0ECDC;
    width: 14px;
    height: 14px;
    margin: 0 10px 0 3px;
    display: inline-block;
    vertical-align: baseline;
}

div.wpforms-container-full .wpforms-form .wpforms-field-label-inline {
    margin: 0;
    width: 100%;
    max-width: 25%;
    font-size: 22px;
    color: #004C45;
    font-weight: 300;
    font-family: gill-sans-nova, sans-serif !important;
}

#home-video {
    height: calc(100vh - 95px);
    position: relative;
}

    #home-video .home-video {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

        #home-video .home-video:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to bottom, rgba(15, 44, 82, 0) 0%, #000 100%);
            z-index: 2;
        }

        #home-video .home-video .container {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 999;
        }

        #home-video .home-video .home-video-background {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: absolute;
            top: 0;
            bottom: 0;
        }

        #home-video .home-video video {
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: inline-block;
        }

@media (max-width: 1112px) {
    #home-video {
        height: auto;
        margin-top: 44px;
    }

        #home-video .home-video {
            position: relative;
            z-index: auto;
        }

            #home-video .home-video .home-video-background {
                height: auto;
                line-height: 0;
                position: relative;
            }

            #home-video .home-video video {
                min-width: 100%;
                min-height: auto;
                width: 100%;
                position: relative;
                top: unset;
                left: unset;
                transform: none;
            }
}

.body-video-wrap {
    width: 50%;
    height: 650px;
    position: relative;
}



#body-video {
    height: 100%;
    position: relative;
}

    #body-video .body-video {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

        #body-video .body-video:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to bottom, rgba(15, 44, 82, 0) 0%, #000 100%);
            z-index: 2;
        }

        #body-video .body-video .container {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 999;
        }

        #body-video .body-video .body-video-background {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: absolute;
            top: 0;
            bottom: 0;
        }

        #body-video .body-video video {
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: inline-block;
        }


@media (max-width: 840px) {
    .body-video-wrap {
        width: 100%;
        height: auto;
    }

    #body-video {
        height: auto;
        margin-top: 44px;
    }

        #body-video .body-video {
            position: relative;
            z-index: auto;
        }

            #body-video .body-video .body-video-background {
                height: auto;
                line-height: 0;
                position: relative;
            }

            #body-video .body-video video {
                min-width: 100%;
                min-height: auto;
                width: 100%;
                position: relative;
                top: unset;
                left: unset;
                transform: none;
            }
}

.promo-banner {
    width: 100%;
    display: block;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0 80px;
}

    .promo-banner a .desktop-image {
        display: block;
    }

@media (max-width: 749px) {
    .promo-banner a .desktop-image {
        display: none;
    }
}

.promo-banner a .mobile-image {
    display: none;
}

@media (max-width: 749px) {
    .promo-banner a .mobile-image {
        display: block;
    }
}

#featured-events .name-text {
    text-align: center;
    margin-bottom: 40px;
}

.featured-events {
    width: 100%;
}

.events-container {
    display: flex;
    flex-direction: row;
    column-gap: 70px;
    justify-content: center;
}

@media (max-width: 850px) {

    .events-container {
        flex-direction: column;
        row-gap: 50px;
        align-items: anchor-center;
    }
}

.events-container.events-container-rows .event-holder {
    flex-direction: row;
    column-gap: 25px;
}

    .events-container.events-container-rows .event-holder .content-info {
        margin: 25px 25px 25px 0;
    }

    .events-container.events-container-rows .event-holder.feature-event-image {
        margin: 25px 0 25px 25px;
    }

@media (max-width: 600px) {
    .events-container.events-container-rows .event-holder {
        flex-direction: column;
        column-gap: 0;
    }

        .events-container.events-container-rows .event-holder .content-info {
            margin: 25px;
        }

        .events-container.events-container-rows .event-holder.feature-event-image {
            margin: 25px;
        }
}


.event-holder {
    background-color: #75191a;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.feature-event-image {
    max-width: 300px;
    min-width: 300px;
    min-height: 280px;
    max-height: 280px;
    margin: 25px;
    background-size: cover;
    background-position: center center;
}

.feature-event-info-container {
    text-align: center;
    color: #f1e9de;
}

.event-holder .content-info {
    max-width: 90%;
}

    .event-holder .content-info p {
        font-size: 21px;
        margin-bottom: 20px;
    }

.feature-event-info-container .uppercase {
    text-transform: uppercase;
}

.feature-event-info-container .gold-btn {
    background: linear-gradient(270deg, rgba(205, 184, 129, 1) 0%, rgba(125, 98, 46, 1) 100%);
    transition: background 300ms ease;
    display: flex;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    letter-spacing: .07rem;
    text-transform: uppercase;
    font-weight: 500;
    padding: 15px 20px;
    margin: 25px auto 35px;
    color: #fff;
}
