body {
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'ABCArizonaMix-Light';
}

p {
    font-family: 'ABCArizonaMix-Light';
}

.btn span {
    font-family: 'BentonSans-RE', sans-serif;
    line-height: 1.5;
}

/*
+* HEADER
*/
.main-nav {
    position: fixed;
    overflow: visible;
    z-index: 1001;
    top: 0;
    left: 0;
    width: 100%;

    font-family: 'BentonSans-WideBold';
}

.main-nav-inner {
    background-color: #201e1e;
    color: #fff;
    padding: 5px 50px;
    width: 100%;
    height: 100%;
    float: left;
    position: relative;
}

.main-nav .main-nav_left {
    float: left;
    padding-top: 2px;
}

.main-nav_centered {
    float: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-nav_right {
    float: right;
    padding: 0;
    /* margin-right: 5px; */
}

.main-nav_secondary {
    background-color: #f2ede6;
    width: 100%;
    float: left;
    text-align: center;
}

.announcement-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
    z-index: 1000;
}

.announcement-container.closed {
    height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    top: 0 !important;
    display: none !important;
}

.announcement-container.fully-closed {
    display: none !important;
}

.announcement-container:not(.closed) {
    height: auto;
    opacity: 1;
    display: block;
}

.announcement-bar {
    width: 100%;
    background-color: #14120a;
    color: #fff;
    text-align: center;
    padding: 10px 40px;
    font-family: 'ABCArizonaMix-Light', sans-serif;
    font-size: 14px;
    position: relative;
    letter-spacing: 0.036rem;
    height: auto;
    transition: height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}


body.has-announcement-closed .featured,
body.has-announcement-closed .banner,
body.has-announcement-closed .hero,
body.has-announcement-closed .main-content,
body.has-announcement-closed main,
body.has-announcement-closed .site-content {
    margin-top: 0 !important;
}

.announcement-bar.closed {
    height: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    margin: 0;
}

.announcement-bar .owl-stage-outer {
    overflow: hidden;
}

.announcement-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-message {
    display: inline;
    color: #fff;
    line-height: 1.3;
    max-width: 90%;
}

.mobile-message {
    display: none;
}

.announcement-link {
    color: #fff;
    text-decoration: underline;
    margin-left: 5px;
    display: inline;
}

.announcement-separator {
    color: #fff;
    margin: 0 5px;
}

/* Navigation Arrows */
.announcement-nav {
    position: absolute;
    width: 100%;
    top: 5px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.announcement-nav-prev,
.announcement-nav-next {
    position: absolute;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    pointer-events: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    outline: none;
}

.announcement-nav-prev {
    left: 15px;
}

.announcement-nav-next {
    right: 35px;
}

.announcement-nav-prev:hover,
.announcement-nav-next:hover {
    opacity: 1;
}

.announcement-nav-prev:focus,
.announcement-nav-next:focus {
    outline: none;
}


.announcement-close {
    position: absolute;
    right: 15px;
    top: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    z-index: 10;
    color: #fff;
}

.announcement-close svg {
    width: 14px;
    height: 14px;
}

.main-nav_centered a img {
    /* max-width: 120px; */
    opacity: 1;
    visibility: visible;
}

.dashboard-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-popup-content {
    background: url(https://www.properhotel.com/wp-content/themes/properhotel-child/images/popup-background.webp) no-repeat 0 0 #fff7e9;
    background-size: cover;
    padding: 2rem;
    width: 60% !important;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    border: 10px solid white;
}

.dashboard-popup-content .popup-btn {
    display: inline;
}

.dashboard-popup-content:before {
    content: '';
    height: 93%;
    width: 97%;
    left: 1.5%;
    top: 3%;
    position: absolute;
    z-index: 1;
}

.dashboard-popup-title {
    font-family: 'BentonSans-WideBold', sans-serif;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 99;
}

.dashboard-popup-body {
    position: relative;
    z-index: 99;
    display: flex;
    flex-direction: column;
}

.dashboard-popup-body p {
    font-family: gt_walsheim_light, sans-serif;
    font-size: 16px;
}

.dashboard-popup-links {
    padding: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}

.dashboard-popup-close {
    position: absolute;
    top: 25px !important;
    right: 30px !important;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    z-index: 99;
    font-size: 2.5rem;
    font-weight: 400;
    font-family: gt_sectra_display_regular, sans-serif;
}

.announcement-popup-trigger {
    color: inherit;
    text-decoration: underline;
    margin: 0 0.5rem;
}

.announcement-carousel-js .owl-item {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}

@media only screen and (max-width: 767px) {
    .desktop-message {
        display: none !important;
    }

    .mobile-message {
        display: inline !important;
    }

    .dashboard-popup-content {
        width: 90% !important;
    }

    .dashboard-popup-title {
        font-size: 35px !important;
    }
}

.main-nav_left .main-nav__ham,
.main-nav_left .main-nav--residence .main-nav__ham {
    position: relative;
    top: 0 !important;
    left: 0;
    display: none;
    height: 44px;
}

.main-nav_left .main-nav__ham div {
    top: 50%;
    left: 0;
}

.main-nav_left .main-nav__ham div,
.main-nav_left .main-nav__ham div::before,
.main-nav_left .main-nav__ham div::after {
    background-color: #fff;
    width: 40px;
}

.hamisopen .main-nav_left .main-nav__ham div {
    background-color: transparent;
}

.main-nav_left .hotelsbtn {
    position: relative;
    color: #fff;
    display: inline-block;
    cursor: pointer;
    overflow: visible;
    margin-right: 50px;
}

.main-nav_left .hotelsbtn span {
    display: inline-block;
    color: #fff;
    font-size: 10px;
    line-height: 2;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 11px 10px 11px 0;
    margin-right: -2px;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}


.main-nav_right .reservebtn {
    position: relative;
}

.main-nav_right .reservebtn span {
    border: 1px solid #fff;
    color: #fff;
    font-size: 10px;
    padding: 10px;
    letter-spacing: 1.5px;
    line-height: 0.8;
    padding: 8px 10px 7px 10px;
}

.main-nav_right .reservebtn--residence {
    display: inline-block;
    margin-left: 30px;
}

.main-nav_right .reservebtn--residence ul {
    padding: 0;
}

.main-nav_right .reservebtn--residence ul li {
    display: inline-block;
    padding: 13px 0;
}

.main-nav_right .reservebtn--residence ul li.inquire-btn a {
    border: 1px solid #fff;
    color: #fff;
    font-size: 10px;
    padding: 5px 10px 3px;
    letter-spacing: 1.5px;
    line-height: .8;
    text-transform: uppercase;
    cursor: pointer;
    margin-left: 20px;
}

.main-nav_right .reservebtn--residence ul li a {
    color: #fff;
    font-size: 14px;
    line-height: 0.8;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.reservebtn__dropdown {
    background-color: #201e1e;
    display: block;
    width: 175px;
    padding: 10px 0 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 38px;
    right: auto;
    left: 50%;
    z-index: 5;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.reservebtn__dropdown ul li a {
    display: block;
    color: #fff;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
    padding: 7px 20px;
    line-height: 1.4;
}

.reservebtn__dropdown ul li:hover a {
    background-color: transparent;
}

.reservebtn__dropdown ul li a:hover {
    background-color: #201e1e;
    color: #fff;
}

.reservebtn__dropdown .dropdown__brand-group {
    margin-bottom: 10px;
}

.reservebtn__dropdown .dropdown__brand-group .placebox-title {
    margin: 0;
}

.reservebtn__dropdown .dropdown__brand-group .placebox-title>a {
    text-transform: none;
    font-family: 'gt_walsheim_light', sans-serif;
    letter-spacing: 1px;
}

.reservebtn__dropdown .dropdown__brand-group .placebox-title>a:hover {
    pointer-events: initial;
    cursor: default;
    background-color: transparent;
}




/* cpt booking dropdown need to differenciate between dropdowns on the left side of the header  */
.booking-reservebtn {
    position: relative;
    padding: 11px 0;
    transition: all 0.4s ease 0s;
}

.booking-reservebtn span {
    border: 1px solid #fff;
    color: #fff;
    font-size: 10px;
    padding: 5px 10px 3px 10px;
    letter-spacing: 1.5px;
    line-height: 0.8;
    text-transform: uppercase;
    cursor: pointer;
}

.booking-reservebtn__dropdown {
    background-color: #201e1e;
    padding: 10px 0 15px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    max-width: 175px;
    width: max-content;
    /* Ensures dropdown width adjusts to content */
    transition: all 0.4s ease 0s;
}

.booking-reservebtn__dropdown ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.booking-reservebtn__dropdown ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    padding: 5px 10px;
}

.booking-reservebtn__dropdown ul li a {
    display: block;
    color: #fff;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.4;
}

.booking-reservebtn__dropdown ul li:hover a {
    background-color: #201e1e;
}

.booking-reservebtn__dropdown.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 768px) {
    .booking-reservebtn__dropdown {
        opacity: 0;
        visibility: hidden;
    }

    .booking-reservebtn__dropdown .mobile-only {
        display: none;
    }
}

@media (max-width: 767px) {
    .main-nav_right .booking-reservebtn {
        position: relative;
        top: 0;
        right: 0;
        margin-left: 30px;
    }

    .booking-reservebtn span {
        border: 1px solid #fff;
        color: #fff;
        font-size: 8px;
        padding: 5px;
        letter-spacing: 1.5px;
        line-height: 0.8;
        text-transform: uppercase;
    }

    .booking-reservebtn__dropdown {
        display: none;
    }

    .booking-reservebtn__dropdown.active {
        display: block;
        opacity: 1;
        visibility: visible;
        width: auto;
        min-width: 100px;
        max-width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    .booking-reservebtn__dropdown ul li {
        padding: 12px 10px;
    }

    .booking-reservebtn__dropdown ul li a {
        font-size: 8px;
    }
}


/* end cpt booking drop down */

.main-nav_secondary .main-nav__menu,
.main-nav_secondary .main-nav__residence {
    position: relative;
    top: 0;
    right: 0;
    z-index: 0;
}

.main-nav_secondary .main-nav__residence-bottom {
    right: 0;
}

.main-nav_secondary .main-nav__menu>ul {
    padding: 7px 0;
}

.main-nav_secondary .main-nav__menu>ul>li,
.main-nav_secondary .main-nav__residence-bottom>ul>li {
    margin-right: 20px;
}

.main-nav_secondary .main-nav__menu>ul>li.menu-item-has-children,
.main-nav_secondary .main-nav__residence-bottom>ul>li.menu-item-has-children {
    margin-right: 40px;
}

.main-nav_secondary .main-nav__menu>ul>li>a,
.main-nav_secondary .main-nav__residence-bottom>ul>li>a {
    color: #201e1e;
    font-family: 'BentonSans-WideBold', sans-serif;
    font-size: 10px;
    font-weight: 900;
    line-height: 18px;
    text-transform: uppercase;
    text-shadow: none;
    letter-spacing: 1.5px;
}

.main-nav_left .hotelsbtn a::before,
.main-nav_secondary .main-nav__menu>ul>li.menu-item-has-children>a::before,
.main-nav_secondary .main-nav__residence-bottom>ul>li.menu-item-has-children>a::before {
    content: '';
    width: 0;
    height: 0;
    margin-top: -6px;
    position: absolute;
    top: 50%;
    right: -10px;
    -webkit-transition: border-top 0.4s ease 0s;
    -moz-transition: border-top 0.4s ease 0s;
    -ms-transition: border-top 0.4s ease 0s;
    -o-transition: border-top 0.4s ease 0s;
    transition: border-top 0.4s ease 0s;
    border: solid #201e1e;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.main-nav_left .hotelsbtn a::before {
    border: solid #fff;
    margin-top: -5px;
    border-width: 0 2px 2px 0;
}

.main-nav_left .hotelsbtn .dropdown__brand-group-menu a::before {
    display: none;
}

.main-nav_secondary .main-nav__menu .sub-menu,
.main-nav_secondary .main-nav__residence-bottom .sub-menu {
    background-color: #f2ede6;
    width: 150px;
    left: calc(50% + 7px);
}

.main-nav_secondary .main-nav__menu>ul>li:hover .sub-menu,
.main-nav_secondary .main-nav__residence-bottom>ul>li:hover .sub-menu {
    margin-top: 8px;
    box-shadow: 0 4px 6px -3px rgba(0, 0, 0, .35);
}

.main-nav_secondary .main-nav__menu .sub-menu>li>a,
.main-nav_secondary .main-nav__residence-bottom .sub-menu>li>a {
    font-size: 10px;
    text-transform: uppercase;
    padding: 12px 25px;
    color: #201e1e;
    white-space: normal;
    line-height: 1.3;
    letter-spacing: 0;
}

.main-nav_secondary .main-nav__menu .sub-menu>li:hover,
.main-nav_secondary .main-nav__residence-bottom .sub-menu>li:hover {
    background-color: #201e1e;
}

.main-nav_secondary .main-nav__menu .sub-menu>li:hover>a,
.main-nav_secondary .main-nav__residence-bottom .sub-menu>li:hover>a {
    color: #fff;
}

.hide-menu-desktop {
    display: none !important;
}

.ham-popup {
    background-color: #f2ede6;
    max-width: 100%;
}

.ham-popup .ham-popup__property {
    padding-top: 55px;
}

.ham-popup.with_ad .ham-popup__property {
    padding-top: 90px;
}

.ham-popup__property-container {
    padding-top: 50px;
}

.ham-popup__property-menu {
    padding: 0 5%;
}

.ham-popup__property-menu>ul>li {
    margin-bottom: 20px;
    border-bottom: 1px solid #AEA89D;
    padding: 0 15px 20px 15px;
}

.ham-popup__property-menu>ul>li>a {
    width: 100%;
}

.ham-popup__property-menu>ul>li>a,
.ham-popup__property-menu>ul .sub-menu>li a {
    color: #201e1e;
    font-family: 'BentonSans-WideBold', sans-serif;
    letter-spacing: 1.5px;
    font-size: 12px;
}

.ham-popup__property-menu>ul .sub-menu {
    padding: 0 15px;
}

.ham-popup__property-menu>ul .sub-menu>li {
    margin-bottom: 0;
    margin-top: 15px;
}

.ham-popup__property-menu>ul .sub-menu>li a {
    text-transform: uppercase;
    letter-spacing: 0px;
    font-family: 'BentonSans-WideBold', sans-serif;
}

.ham-popup__property-menu>ul>li.menu-item-has-children>a::before,
.ham-popup__property-menu>ul>li.menu-item-has-children>a::after {
    content: '';
    width: 0;
    height: 0;
    margin-top: -6px;
    position: absolute;
    top: 50%;
    right: 0px;
    -webkit-transition: border-top 0.4s ease 0s;
    -moz-transition: border-top 0.4s ease 0s;
    -ms-transition: border-top 0.4s ease 0s;
    -o-transition: border-top 0.4s ease 0s;
    transition: border-top 0.4s ease 0s;
    border: solid #201e1e;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
}

.ham-popup__property-menu>ul>li.menu-item-has-children>a::before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.ham-popup__property-menu>ul>li.menu-item-has-children>a::after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.ham-popup__property-contact {
    padding: 20px 5%;
}

.ham-popup__property-contact .ham-popup__contact-col1 {
    display: inline-block;
    vertical-align: top;
    width: 59%;
}

.ham-popup__property-contact .ham-popup__contact-col2 {
    display: inline-block;
    vertical-align: bottom;
    width: 40%;
}

.ham-popup__contact-col1 a {
    font-family: "gt_walsheim_light", sans-serif;
    color: #000;
    font-size: 18px;
}

.ham-popup__property-contact .ham-popup__contact-col2 .socialbox {
    padding: 0;
    padding-left: 15px;
    text-align: right;
}

.ham-popup__property-contact .ham-popup__contact-col2 .socialbox li {
    display: inline-block;
}

@media only screen and (max-width: 768px) {

    .ham-popup__property-container {
        padding-top: 80px;
    }

    .announcement-container:not(.closed):not(.fully-closed)~.ham-popup .ham-popup__property-container {
        padding-top: 120px;
    }

    .announcement-container.closed~.ham-popup .ham-popup__property-container,
    .announcement-container.fully-closed~.ham-popup .ham-popup__property-container,
    body.has-announcement-closed .ham-popup .ham-popup__property-container {
        padding-top: 40px;
    }
}

/* Hero */
.featured .featured__homebox-title {
    font-family: 'BentonSans-WideBold', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    pointer-events: all;
    /* margin-bottom: 44px; */
}

.featured .arrownav-hotellist>li>a {
    letter-spacing: 1.5px;
}

@media screen and (max-width: 959px) {
    .featured .arrownav {
        display: block;
    }

    .featured .featured__destination-btn {
        display: none;
    }

    .featured .arrownav-hotellist>li {
        display: block;
        margin: 20px;
    }
}



@media screen and (max-width: 480px) {

    .featured .arrownav {
        bottom: 160px;
    }

    .featured .arrownav-hotellist>li {
        margin: 17px;
    }

}

.austin-show-desktop {
    display: inline-block !important;
}

.austin-show-mobile {
    display: none !important;
}

/* Responsive navigation menu */
@media screen and (max-width: 1024px) {

    .main-nav_left .hotelsbtn,
    .main-nav_right .reservebtn--residence,
    .main-nav_secondary {
        display: none;
    }

    .main-nav_left .main-nav__ham {
        display: block;
    }

    .hide-menu-desktop {
        display: block !important;
    }

    .austin-show-desktop {
        display: none !important;
    }

    .austin-show-mobile {
        display: inline-block !important;
    }
}

@media screen and (max-width: 599px) {
    .main-nav-inner {
        padding: 5px 20px;
    }

    .main-nav_right {
        padding: 0;
        margin-right: 0;
    }

    .main-nav_right .reservebtn span {
        border: 1px solid #fff;
        color: #fff;
        font-size: 8px;
        padding: 7px 6px;
        letter-spacing: 1.5px;
        line-height: 0.9;
        text-transform: uppercase;
    }

    .main-nav .main-nav_left {
        padding-top: 0;
    }
}

@media screen and (max-width: 479px) {
    .ham-popup__property-contact .ham-popup__contact-col1 {
        display: block;
        width: 100%;
    }

    .ham-popup__property-contact .ham-popup__contact-col2 {
        display: block;
        width: 100%;
    }

    .ham-popup__property-contact .ham-popup__contact-col2 .socialbox {
        padding-top: 50px;
        text-align: left;
    }
}

/*
+* FOOTER
*/
.footer.ftr {
    background-color: #f2ede6;
    /* float: left;
    width: 100%; */
    display: flex;
    flex-direction: column;
}

.footer .ftr-features {
    padding: 0 30px;
    margin: 0;
    background-color: #fff;
    border: 0;
}

.footer .ftr-box-lefty, .footer .ftr-box-righty {
    box-sizing: border-box;
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.footer .ftr-box-lefty {
    padding: 0 35px 35px 0;
    max-width: 600px;
    width: 35%;
}

.footer .ftr-box-lefty--top-row {
    width: 55%;
    max-width: 820px;
    text-align: left;
}

.ftr-box-lefty--top-row .signup-copy h3 {
    font-family: 'BentonSans-WideBold', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 1.6px;
    text-align: left;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ftr-box-lefty--top-row .signup-copy p {
    font-family: 'ABCArizonaMix-Light', sans-serif;
    text-align: left;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    max-width: 50%;
    /* 21px */
}

.footer .ftr-box-righty {
    /* padding: 0 0 35px 35px; */
    width: calc(60% - 70px);
}

.footer .ftr-box-righty--top-row {
    width: calc(45% - 70px);
    /* padding-top: 30px; */
    align-self: center;
}

.footer .ftr-box-righty.twocols {
    columns: 2;
}


.footer .ftr-socialemail {
    padding: 45px 0 0;
    color: #201e1e;
    max-width: none;
    position: relative;
    text-align: left;
    max-width: 90%;
}

.footer .ftr-wrapper--top-row {
    width: 90%;
    padding: 55px 0 50px 0;
    margin: 0 auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.50);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer .ftr-wrapper--bottom-row {
    width: 90%;
    padding: 20px 0 80px;
    margin: 30px auto 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer .ftr-socialemail.ftr-socialemail-showresponse .ftr-box {
    display: inline-block !important;
}

.footer .ftr-socialemail.ftr-socialemail-showresponse .ftr-email {
    display: none;
}

.footer .ftr-response p {
    font-family: 'gt_walsheim_medium', sans-serif;
    text-align: left;
    padding: 35px 0 0;
    font-size: 14px;
    text-transform: none;
}

.footer .ftr-response span {
    letter-spacing: 1.5px;
}

.footer .ftr-emailtitle {
    margin-bottom: 15px;
    text-align: left;
    font-size: 14px;
    font-family: 'gt_walsheim_regular', sans-serif;
}

.footer .ftr-emailinput {
    padding: 0 165px 0 15px;
    background-color: transparent;
    border: 2px solid #201E1E;
    height: 50px;
    font-size: 14px;
    letter-spacing: 0;
}

.footer .ftr-emailsubmit {
    bottom: 1px;
    top: auto;
    background-color: #201E1E;
    color: rgba(242, 237, 230, 1);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 48px;
    font-family: 'BentonSans-RE', sans-serif;
}

.footer input::placeholder {
    font-family: 'ABCArizonaMix-Light', sans-serif;
    font-size: 14px
}

.footer .ftr-social {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    float: none;
    text-align: left;

}

.footer .ftr-followtitle {
    text-transform: none;
    font-family: 'BentonSans-RE', sans-serif;
    font-size: 12px;
    letter-spacing: 0;
    top: unset;
    position: unset;
    margin: 0;
    text-transform: uppercase;
}

.footer .ftr-social .socialbox a,
.ham-popup .socialbox a {
    background-color: #201E1E;
    border-radius: 50%;
    margin-right: 10px;
}

.ham-popup .socialbox a {
    float: left;
}

.footer .ftr-social .socialbox i,
.ham-popup .socialbox i {
    height: 35px;
    line-height: 35px;
    width: 35px;
    font-size: 21px;
}

.footer .ftr-credbox,
.ham-popup .ftr-credbox {
    padding: 0;
    text-align: right;
    position: relative;
}

.footer .ftr-credbox__container {
    min-height: 290px;
}

.ham-popup .ftr-credbox {
    text-align: left;
    padding-left: 15px;
}

.ftr-credbox__container,
.ham-popup .ftr-credbox__container {
    display: inline-block;
    width: 100%;
    font-size: 0;
    max-width: 280px;
    margin-right: 80px;
    vertical-align: top;
}

.ham-popup .ftr-credbox__container {
    max-width: none;
    margin-right: 0;
}

.footer .ftr-credbox .ftr-address,
.ham-popup .ftr-credbox .ftr-address {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    color: rgba(32, 30, 30, 1);
    margin: 0;
}

.footer .ftr-credbox h3,
.ham-popup .ftr-credbox h3 {
    font-family: 'BentonSans-WideBold', sans-serif;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: rgba(32, 30, 30, 1);
    margin-bottom: 10px;
}

.footer .ftr-credbox .ftr-address p,
.ham-popup .ftr-credbox .ftr-address p {
    padding: 0;
}

.footer .ftr-credbox .ftr-address a,
.ham-popup .ftr-credbox .ftr-address a {
    display: inline !important;
    width: 100% !important;
    color: rgba(32, 30, 30, 1);
}

.footer .ftr-credbox .ftr-address a,
.footer .ftr-credbox .ftr-address span,
.footer .ftr-credbox .ftr-address p {
    line-height: 20px;
    font-size: 14px;
    font-family: 'BentonSans-RE', sans-serif;
}

.ham-popup .ftr-credbox .ftr-address a,
.ham-popup .ftr-credbox .ftr-address span,
.ham-popup .ftr-credbox .ftr-address p {
    line-height: 24px;
    font-size: 14px;
}

.footer .ftr-menubox a,
.ftr-lang-trans-box #google_language_translator select.goog-te-combo {
    color: rgba(32, 30, 30, 1);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'BentonSans-WideBold', sans-serif;
    opacity: 1 !important;
    text-align: left;
}

.footer .ftr-box-righty .ftr-menubox li.ot-sdk-show-settings {
    color: rgba(32, 30, 30, 1);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'BentonSans-WideBold', sans-serif;
    opacity: 1 !important;
    text-align: left;
    cursor: pointer;
    padding-bottom: 5px;
    padding-right: 10px;
}

.ftr-lang-trans-box #google_language_translator select.goog-te-combo {
    min-width: 110px !important;
    width: 110px !important;
    margin-left: 1px;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    -o-appearance: auto;
    -ms-appearance: auto;
    appearance: auto;
}

.ftr-lang-trans-box #google_language_translator select.goog-te-combo:has(option[value=""]:checked) {
    width: 165px !important;
    min-width: 165px !important;
    /* margin-left: -3px; */
}

ul#menu-footer-sister-properties.ftr-menubox li a {
    color: rgba(242, 237, 230, 1);
    font-family: 'BentonSans-WideBold', sans-serif;
    font-size: 14px;
}

.footer .ftr-menubox li:hover {
    opacity: .6;
}

.footer .ftr-box-righty .ftr-menubox {
    padding: 0;
    text-align: left;
    column-count: 2;
    overflow: visible;
}

.footer .ftr-box-righty .ftr-menubox.threecols {
    column-count: 3;
    float: right;
    max-width: 650px;
}

.footer .ftr-box-righty .ftr-menubox li {
    margin: 0 20px 0;
    display: inline-block;
    width: 100%;
}

.footer .ftr-box-righty .ftr-menubox li:after {
    content: '';
    width: 100%;
    display: inline-block;
}

.footer .ftr-box-righty .ftr-langbox {
    text-align: left;
}

.footer .ftr-box-righty .ftr-langbox>div {
    text-align: left;
    display: block;
    margin-top: -4px;
}

.footer .ftr-lists {
    background-color: #201E1E;
}

.footer .ftr-lists .ftr-debugtitle {
    margin-bottom: 20px;
    font-family: 'BentonSans-RE', sans-serif;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(242, 237, 230, 1);
}

.footer .ftr-lists .ftr-menubox li {
    margin: 0;
}

.footer .ftr-lists .ftr-menubox li a {
    margin: 0 15px;
}

.footer .ftr-lists .ftr-menubox li+li::before {
    content: "·";
    margin-right: 6px;
    color: rgba(255, 255, 255, 1);
}

.footer .ftr-lists .ftr-designhotel {
    width: 15vw;
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translate(0%, -50%);
}

.footer .ftr-lists .ftr-designhotel img {
    height: 33px;
    float: right;
    width: auto;
}

.footer .ftr-lists .ftr-copyright {
    left: 35px;
    top: 50%;
    right: auto;
    transform: translate(0%, -35%);
    text-align: left;
    display: inline-block;
    position: absolute;
}

.footer .ftr-lists .ftr-copyright div {
    font-size: 14px;
    line-height: 25px;
    margin: 0;
}

.footer .ftr-lists .ftr-copyright div p {
    padding: 0;
    line-height: 1em;
}

.footer .ftr-lists .ftr-copyright div img {
    display: inline;
    max-height: 30px;
    width: auto;
    margin-right: 15px;
}

@media only screen and (max-width: 1300px) {
    .footer .ftr-box-righty .ftr-menubox.threecols {
        column-count: 2;
    }
}

@media only screen and (max-width: 1024px) {
    .footer .ftr-box-righty .ftr-menubox.threecols {
        column-count: 2;
        float: none;
    }

    .footer .ftr-socialemail {
        padding: 40px 0 100px;
    }

    .footer .ftr-box-lefty, .footer .ftr-box-righty {
        width: 100%;
    }

    .footer .ftr-box-lefty {
        margin: 0;
        padding: 0;
    }

    .footer .ftr-box-righty {
        padding: 0;
    }

    .footer .ftr-emailinput {
        font-size: 16px;
    }

    .ftr-emailinput::placeholder {
        text-align: left;
    }

    .footer .ftr-social {
        margin-bottom: 40px;
        padding: 0 0 40px 0;
    }

    .footer .ftr-followtitle {
        font-size: 16px;
        text-align: left;
        margin-right: unset
    }


    .footer .ftr-box-righty .ftr-menubox li {
        margin-left: 0;
        float: none;
        width: 100%;
    }

    .footer .ftr-credbox__container,
    .ham-popup .ftr-credbox__container {
        width: auto;
        text-align: left;
        max-width: none;
    }

    .footer .ftr-lists .ftr-designhotel {
        width: 250px;
        right: 35px;
        bottom: auto;
        top: -87px;
        transform: none;
    }

    .footer .ftr-lists .ftr-menubox {
        padding: 0 35px;
        text-align: center;
    }

    .footer .ftr-lists .ftr-menubox li {
        margin: 0 0 10px;
        float: none;
        width: auto;
    }

    .footer .ftr-lists .ftr-copyright {
        text-align: center;
        margin: 15px 0 0;
        transform: none;
        position: relative;
        width: 100%;
        left: auto;
        top: auto;
        right: auto;
    }

    .footer .ftr-lists .ftr-copyright div {
        margin: 0 10px;
        display: inline-block;
    }
}

@media only screen and (max-width: 767px) {
    .footer .ftr-box-righty.twocols {
        columns: 1;
    }


    .footer .ftr-box-lefty {
        border-top: 1px solid rgba(0, 0, 0, 0.50);
        max-width: 100%;
    }

    .footer .ftr-box-righty {
        padding: 0;
    }

    .footer .ftr-credbox {
        margin-bottom: 35px;
    }

    .footer .ftr-lists .ftr-menubox li a {
        margin: 0 10px;
    }

    .footer .ftr-credbox .ftr-credbox__container,
    .ham-popup .ftr-credbox .ftr-credbox__container {
        width: 100%;
        margin: 0;
    }

    .footer .ftr-wrapper--top-row {
        width: 90%;
        margin: 0 auto;
        padding: 55px 0 15px 0;
        border-bottom: none;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .footer .ftr-wrapper--bottom-row {
        width: 90%;
        padding: 20px 0;
        margin: 20px auto 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .ftr-box-lefty--top-row .signup-copy h3 {
        text-align: center;
        margin-bottom: 20px;
    }

    .ftr-box-lefty--top-row .signup-copy p {
        text-align: center;
        padding: 0 5px;
        max-width: 100%;
        font-size: 13px;
    }

    .footer .ftr-box-righty--top-row {
        width: 100%;
        padding-top: 5px;
    }

    .footer .ftr-box-lefty--top-row {
        width: 100%;
        max-width: none;
        text-align: center;
    }

    .footer .ftr-wrapper--bottom-row.design_padding {
        padding-bottom: 120px;
    }

    .footer .ftr-social {
        margin-bottom: 40px;
        padding: 40px 0 40px 0;
    }
}

@media only screen and (max-width: 599px) {

    .footer .ftr-credbox .ftr-address span,
    .ham-popup .ftr-credbox .ftr-address span {
        position: relative;
    }

    .footer .ftr-lists .ftr-designhotel {
        right: auto;
        top: -70px;
        left: 35px;
    }

    .footer .ftr-lists .ftr-designhotel img {
        float: left;
    }

    .footer .ftr-social .socialbox i {
        height: 47px;
        line-height: 47px;
        width: 47px;
        font-size: 26px;
    }

    .footer .ftr-social .socialbox a {
        margin-right: 5px;
    }

    .footer .ftr-lists .ftr-menubox li a {
        margin: 0 5px;
    }

    .footer .ftr-socialemail.design_padding {
        padding: 0;
    }

    .footer .ftr-box-lefty--top-row {
        padding: 55px 0 15px 0;
    }

    .footer .ftr-wrapper--top-row.design_padding {
        padding-bottom: 15px;

    }

    .footer .ftr-socialemail.ftr-wrapper--bottom-row {
        padding-bottom: 90px;
    }

    .footer .ftr-socialemail.design_padding .ftr-social {
        bottom: 110px;
    }
}

@media only screen and (max-width: 440px) {
    .footer .ftr-lists .ftr-menubox li+li:nth-child(3)::before {
        content: none;
    }
}


.with-bg-colour {
    background-color: #F2EDE6;
}

.revinate-form--content.with-bg-colour {
    padding-top: 25px;
}

.with-bg-colour .banner-form-con-inner .formy-input input {
    border: none;
    border-bottom: 1px solid #828282;
    background: transparent;
    height: 30px;
    padding: 10px 15px;
    text-align: center;
    margin-bottom: 35px;
    max-width: 480px;
}

.with-bg-colour .banner-form-con-inner .formy-input input::placeholder {
    text-align: center;
    color: #000;
}



.banner-form-con {
    position: relative;
    margin: 0 auto;
    left: auto;
    transform: none;
}

.banner-form-con-inner form {
    max-width: 800px;
    margin: 0 auto;
}

.banner-form-con.flex-spacing {
    padding-top: 10px;
    padding-bottom: 40px;
}

@media only screen and (max-width: 870px) {
    .banner-form-con.flex-spacing {
        width: 100%;
    }
}

.banner-form-con-inner .formy-input label {
    height: 1px !important;
    width: 1px !important;
}


.banner-form-spacer {
    height: 0;
}

.popup-two {
    top: 0;
}

table.alignleft {
    text-align: left;
}

table.alignleft tr {
    vertical-align: top;
}

.baseformat .baseintrocon table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
    border: 1px solid #dee2e6;
    border-collapse: collapse;
}

.baseformat .baseintrocon table td {
    border: 1px solid #dee2e6;
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

/* Fix Offers gutter columns */
.offersbox.offersbox-threecol .offersbox-item.offersbox-item-mid,
.offersbox.offersbox-threecol .offersbox-item.offersbox-item-left,
.offersbox.offersbox-threecol .offersbox-item.offersbox-item-right {
    padding: 0 7px;
}


#order-widget .order-button {
    margin-bottom: 1.5em;
}


.see-all-content h2 {
    font-family: 'BentonSans-WideBold', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.wpcf7-response-output {
    text-align: center;
}


/* fix video background Header banner */
.featured--isvideo .featured__vide {
    position: absolute !important;
}

.formy-submit button[type="submit"] {


    background-color: #fff;
    border-bottom: 1px solid #000;
    color: #000;
    font-family: 'BentonSans-WideBold', sans-serif;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding-bottom: 0;
    line-height: 12px;
    cursor: pointer;

}

/* Video background styles - full bleed image module - overlay logo */
.bleedimage-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bleedimage-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bleedimage .bleedimage-box.has-video-bg .dropanchor {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.bleedimage .bleedimage-box .bleedimage-overlay-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.bleedimage .bleedimage-box .bleedimage-overlay-logo img {
    width: clamp(120px, 40vw, 400px);
    height: auto;
    max-width: 500px;
    display: block;
}

.bleedimage .bleedimage-box.has-video-bg .bleedimage-title {
    position: absolute;
    bottom: 25px;
    left: 40px;
    color: #fff;
    font-size: 21px;
    letter-spacing: 1px;
    text-transform: none;
    z-index: 3;
}

.bleedimage .bleedimage-box.has-video-bg {
    background-image: none !important;
}

.bleedimage-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

@media (max-width: 1024px) {
    .bleedimage .bleedimage-box.has-video-bg {
        height: auto !important;
        padding-bottom: 56.25%;
        min-height: 0 !important;
        position: relative;
    }

    .bleedimage .bleedimage-box.has-video-bg:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 2;
    }

    .bleedimage .bleedimage-box.has-video-bg .dropanchor {
        position: absolute;
        z-index: 4;
    }

    .bleedimage .bleedimage-box.has-video-bg .bleedimage-title {
        position: absolute !important;
        bottom: 25px !important;
        left: 40px !important;
        z-index: 5;
    }
}

@media (max-width: 767px) {
    .bleedimage .bleedimage-box.has-video-bg {
        padding-bottom: 75%;
    }

    .bleedimage .bleedimage-box.has-video-bg .bleedimage-title {
        font-size: 18px;
        bottom: 20px !important;
        left: 20px !important;
    }

    .bleedimage .bleedimage-box .bleedimage-overlay-logo img {
        width: clamp(200px, 25vw, 350px);
    }
}

/**
 * general banner and Rooms Banner Styles
 * 
 * These styles maintain the same look and feel as the footer banner
 * but include specific classes for the rooms banner implementation
 */

.banner-footer-container {
    position: relative;
    width: 100%;
    background-color: #000;
    padding: 50px 110px;
    overflow: hidden;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
}

.banner-top-container {
    margin-bottom: 0px;
}

.banner-footer-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.banner-footer-header {
    margin-bottom: -1px;
    /* max-width: 400px; */
    flex-shrink: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* Formula: (container width - padding - gap) / 3 slides - owl gaps - extra shrinking */
    width: calc((100vw - 220px - 60px) / 3 - 20px);
    max-width: min(400px, calc((100vw - 200px - 60px) / 3 - 20px));
}

@media (max-width: 1200px) {
    .banner-footer-header {
        width: calc((100vw - 220px - 60px) / 3 - 18px);
        max-width: min(380px, calc((100vw - 200px - 60px) / 3 - 28px));
    }
}

@media (max-width: 1000px) {
    .banner-footer-header {
        width: calc((100vw - 220px - 60px) / 3 - 16px);
        max-width: min(350px, calc((100vw - 200px - 60px) / 3 - 16px));
    }
}

@media (max-width: 900px) {
    .banner-footer-header {
        width: calc((100vw - 220px - 60px) / 3 - 14px);
        max-width: min(320px, calc((100vw - 200px - 60px) / 3 - 14px));
    }
}


.banner-footer-carousel-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding-top: 20px */
}

.banner-footer-module-title {
    font-size: 20px;
    font-weight: bold;
    font-family: 'BentonSans-WideBold', sans-serif;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 3px;
    margin: 0 0 10px;
}

.banner-footer-module-description {
    font-size: 12px;
    line-height: 1.4;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 0.9px;
    color: #fff;
}

.banner-footer-module-description p {
    margin: 0;
    font-family: 'BentonSans-RE', sans-serif;
    color: #fff;
    font-size: 12px;
    padding: 0;
}

.banner-footer-slider,
.banner-rooms-carousel-js {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.banner-footer-slide {
    position: relative;
    height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
    box-sizing: border-box;
}

.banner-footer-content {
    padding: 0;
    max-width: 100%;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.banner-footer-message {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.banner-footer-content,
.banner-footer-message {
    margin: 0;
    max-width: 100%;
    width: 100%;
}

.banner-footer-title {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin: 0 0 5px;
    line-height: 1.2;
    font-family: 'BentonSans-WideBold', sans-serif;
    text-align: left;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.banner-footer-description {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-align: left;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.banner-footer-description p {
    margin-bottom: 5px;
    font-family: 'BentonSans-RE', sans-serif;
    color: #ffffff;
    font-size: 12px;
}

.banner-top-container .banner-footer-description p {
    margin-bottom: 5px;
    font-family: 'BentonSans-RE', sans-serif;
    color: #ffffff;
    word-break: keep-all;
    font-size: 12px;
}

.banner-footer-description p:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.banner-footer-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    pointer-events: none;
}

.banner-footer-nav button {
    pointer-events: auto;
}

.banner-footer-nav button {
    background-color: rgba(255, 255, 255, 0);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.banner-footer-nav button:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.banner-footer-bullets {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    z-index: 10;
    padding: 0;
    margin-top: 20px;
}

.banner-footer-bullet {
    width: 11.11px;
    height: 11.11px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.banner-footer-bullet.active {
    background-color: #fff;
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .banner-footer-container {
        padding: 40px 40px 80px;
    }

    .banner-footer-wrapper {
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
        min-height: auto;
    }

    .banner-footer-header {
        max-width: 100%;
        width: 100%;
        padding-left: 1px;
    }

    .banner-footer-carousel-column {
        align-items: stretch;
        justify-content: flex-start;
    }

    .banner-footer-slider,
    .banner-rooms-carousel-js {
        padding: 0;
        margin-bottom: 0;
        align-items: flex-start;
    }

    .banner-footer-slide {
        margin: 0;
        align-items: flex-start;
    }

    .banner-footer-content {
        justify-content: flex-start;
    }

    .banner-footer-message {
        justify-content: flex-start;
        align-items: center;
    }

    .banner-footer-module-title {
        font-size: 20px;
    }

    .banner-footer-module-description {
        font-size: 12px;
        word-break: normal;
    }

    .desktop-message {
        display: none;
    }

    .mobile-message {
        display: block;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: flex !important;
        position: relative;
        justify-content: center;
        margin-top: 30px;
        padding: 0;
    }

    .banner-footer-title {
        font-size: 14px;
        word-break: normal;
    }

    .banner-footer-description {
        font-size: 12px;
        word-break: normal;
    }

    .banner-footer-bullets {
        position: relative;
        margin-top: 30px;
        padding: 0 0 0 2px;
        display: flex;
        justify-content: flex-start;
    }
}

@media (min-width: 768px) and (max-width: 959px) {
    .banner-footer-wrapper {
        align-items: end;
        min-height: 180px;
    }

    .banner-footer-slide {
        margin: 0;
    }

    .mobile-message {
        display: none;
    }

    .desktop-message {
        display: block;
    }

    .mobile-nav {
        display: none;
    }
}

/* Desktop adjustments (960px+) */
@media (min-width: 768px) {
    .banner-footer-wrapper {
        align-items: center;
    }

    .banner-footer-slide {
        margin: 0;
    }

    .mobile-message {
        display: none;
    }

    .desktop-message {
        display: block;
    }

    .mobile-nav {
        display: none;
    }
}

.banner-footer-container .owl-stage {
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.banner-footer-container .owl-stage-outer {
    text-align: center;
}

.banner-footer-container .owl-item {
    display: flex;
    align-items: center;
    height: auto;
    justify-content: flex-start;
    margin-left: 0;
}

.banner-footer-container .owl-item {
    margin-left: 20px;
    margin-right: 20px;
}

.banner-footer-container .owl-item:first-child,
.banner-footer-container .owl-item:last-child {
    margin-left: 0;
}

.banner-footer-container .owl-height {
    height: auto !important;
}

.banner-top-container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: -30px;
    padding-top: 60px;
}

@media (max-width: 767px) {
    .banner-top-container {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 30px;
        padding-top: 60px;
    }

    .banner-footer-container .owl-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 2px;
        padding-right: 0;
    }

    .banner-footer-container .owl-stage {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .banner-footer-container .owl-stage-outer {
        overflow: hidden;
        width: 100%;
    }
}

.roomintro+.banner-top-container {
    margin-top: 0;
}

.banner-rooms-carousel-js .owl-stage {
    display: flex;
    align-items: end;
}

.banner-rooms-carousel-js .owl-item {
    display: flex;
    align-items: end;
    height: auto;
    justify-content: left;
}

.acf-field-page-specific-banners .acf-fields {
    border: 1px solid #ccd0d4;
    margin-bottom: 15px;
}

.acf-field-page-specific-banners .acf-label {
    font-weight: bold;
}

.banner-footer-cta-container {
    display: flex;
    justify-content: left;
    margin-top: 90px;
    width: 100%;
}

.banner-footer-cta {
    margin: 0;
    font-family: 'BentonSans-RE', sans-serif;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .banner-footer-cta-container {
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .banner-footer-cta {
        font-size: 12px;
        font-weight: 400;
        line-height: 22px;
    }
}


.instagrambox {
    clear: both;
}