.show-popup .newsletter-popup {
    display:flex;
}
.newsletter-popup {
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:9999;
    display:flex;
    justify-content: center;
    align-items: center;
    background:rgba(0,0,0,0.6);
    display:none;
}
.newsletter-popup.hide {
    opacity:0;
    z-index:-1;
    visibility:hidden;
}
.newsletter-popup__overlay {
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
}
.newsletter-popup__close {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 28px;
    padding: 4px;
    font-weight: bold;
    color: #AAAAAA;
    cursor: pointer;
    transition: color 0.2s;
    font-family:antarctican mono, monospace;
    font-stretch:100%;

}
.newsletter-popup__content {
    background-color: #fdf5eb;
    color: #2b4f7b;
    max-width: fit-content;
    max-width:100%;
    max-height: 80vh;
    overflow: auto;
    margin: 5vw 5vh;
    padding: 32px;
    display: flex;
    flex-flow: row wrap;
    gap: 32px;
    position: relative;
    width:780px;
    overflow-x:auto;
}

.newsletter-popup__left-col {
    flex:1;
}
.newsletter-popup img {
    height:auto;
}

.newsletter-popup__right-col {
    max-width:283px;
}
.newsletter-popup form {
    width:283px;
    max-width:100%;
}
.newsletter-popup h2 {
    text-transform: uppercase;
    font-size:30px;
    color:#1d63ae;
    margin-bottom:16px;
}
.newsletter-popup h2.gform_submission_error {
    font-size:16px;
    color:red;
    margin-top:16px;
    margin-bottom:0;
}
.newsletter-popup .gform_wrapper.gravity-theme .gform_validation_errors>h2 .gform-icon {
    display:none;
}
.newsletter-popup p {
    font-size:16px;
}
.newsletter-popup .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap:0;
}
.newsletter-popup .gfield_label {
    height:0;
    overflow:hidden;
    opacity:0;
}
.newsletter-popup .gfield--type-consent {
    margin-top:8px!important;
}
.newsletter-popup .ginput_container_consent {
    display:flex;
}
.newsletter-popup input[type=checkbox] {
    width:13px;
    height:13px;
    margin-right:10px;
}
.newsletter-popup .gfield_consent_label {
    font-size:12px;
    font-family:antarctican mono, monospace;
    font-weight:400;
}
.newsletter-popup input[type=text],
.newsletter-popup input[type=email] {
    height:40px;
    line-height:40px;
    border-radius:0;
    border:1px solid rgb(204, 204, 204);
    padding-left:10px;
    font-family:antarctican mono, monospace;
    font-size:16px;
    letter-spacing:normal;
}
.newsletter-popup .gform_wrapper.gravity-theme .gform_footer {
    padding:0;
    margin:0;
}
.newsletter-popup .gform_button {
    background:#D62E10;
    color:white;
    height:40px;
    line-height:40px;
    text-align:center;
    min-width:150px;
    border-radius:20px;
    margin-top:16px;
    font-weight:600;
    font-size:16px;
    transition:all 0.2s ease-in;
}
.newsletter-popup .gform_button:hover {
    background:#2C4A6D;
}
.newsletter-popup ::placeholder {
    color:#5d799a;
}
.offers-listings .offers-item-content h2{
    font-size: clamp(40px, 3.125vw, 60px);
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
}
@media (max-width:768px) {
    .newsletter-popup__content {
        max-width:400px;
        width:100%;
        display:block;
        margin-left:3px;
        margin-right:3px;
    }
    .offers-listings .offers-item-content h2 {
        line-height: 1;
        margin-bottom: 12px;
    }
    .newsletter-popup__left-col {
        margin-bottom:32px;
    }
    .newsletter-popup p {
        font-size:14px;
    }
    .newsletter-popup .gfield_consent_label {
        font-size:10.5px;
    }
    .newsletter-popup .gform_button {
        font-size:14px;
    }
}

footer .image {
    width: 100%;
    text-align: center;
    margin-top: -88px;
    margin-bottom: 41px;
}

footer .image img {
    max-width: 100px;
}
.masthead{
    color:#ffffff;
}



.popup-overlay {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    width: 100%;
    height: 100%;
    padding: 15px;
    top:0px;
    overflow-y: scroll;
}

.popup-overlay.active {
    display: flex;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}


.popup-box {
    background: #fff;
    width: 100%;
    max-width: 760px;
    border-radius: 12px;
    padding: 45px;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0px 2px 4px 3px #00000040;
    margin: auto;
}

@keyframes slideUp {
    from {transform: translateY(20px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}


.popup-close {
    position: absolute;
    right: 20px;
    top: 10px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 60px;
    line-height: 0.5;
    color: #d62e10;
}


.popup-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    max-height: 307px;
}

.popup-content {
    text-align: center;
    margin-top: 20px;
}

.popup-title, .popup-desc p{
    line-height: 1;
    letter-spacing: 0px;
    color: #000000;
    font-family: Helvetica;
}
.popup-title {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 46px;
    text-transform: uppercase;
    color: #1d63ae;
}
.popup-desc p{
    font-family: antarctican-mono;
    max-width: clamp(400px, 43.5416666667vw, 836px);
    font-weight: 500;
    color: #2b4f7b;
    font-size:16px;
    line-height:1.3;
    margin: auto auto 35px;
}
.popup-image img{
    border-radius: 12px;
    height: auto;
    max-height: 220px;
    width: 100%;
    object-fit: cover;
}
.popup-image{
    width: calc(100% - 40px);
    margin: auto;
}
.content-wrap ul li{
    font-size: clamp(14px, .9375vw, 18px);
    line-height: 1.5;
    font-family: 'antarctican-mono';
    font-weight: 500;
}
.room-listings .content-wrap ul li, .explore-listings .content-wrap ul li{
    font-size: clamp(24px, 1.533333333vw, 32px);
    font-weight: 400;
    font-family: 'antarctican-headline';
}
.room-listings .content-wrap ul li:before, .explore-listings .content-wrap ul li:before{
    top: clamp(20px, .78125vw, 15px);
}
.explore-listings__list .explore-main .explore-item{
    height: 100%;
    flex-direction: column;
    display: flex;
}
.explore-listings__list .explore-main .explore-item-content{
    flex: 1;
}
@media(max-width:767px){
    .explore-listings__list .explore-main .explore-item{
        height: auto;
        flex-direction: column;
        display: block;
    }
    .popup-image{
        width:100%;
    }
    .content-wrap ul li{
        font-size: 15px;
        padding-bottom: 10px;
    }
    .popup-title{
        font-size: 26px;
        line-height: 1.2;
    }
    .popup-desc p{
        font-size: 14px;
        margin-bottom: 30px;
    }
    .popup-content{
        margin-top: 15px;
    }
    .popup-box{
        padding: 50px 25px 40px;
    }
}