#container {
    margin-top: 68px;
}

.rv-image-box {
    overflow: hidden;
    display: flex;
    justify-content: center;
}



#rv-main-image {
    width: 100%;
    overflow: hidden;
    max-height: 400px;
    display: flex;
    align-items: center;
 }
 #rv-main-image > div {
    width: 100%;
 }
 #rv-sub-images {
    width: 300px;
    max-height: 400px;
    overflow: auto;
 }



.sub-container {
    width: 100%;
    position: relative;
    display: grid;
}

.details-box {
    margin-right: 400px;
    padding: 20px;
    background-color: white;
}

.book-info-box {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 400px;
    border-left: solid 1px #f5f5f5;
}

.book-box {
    position: sticky;
    top: 70px;


}

.details-box>div {
    margin: 30px 0px;
}

.details-box h3 {
    font-size: 36px;
}

#feats {
    display: flex;
    gap: 20px;
}

#feats p {
    padding: 5px 20px;
    background-color: #CDDC39;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

#feats p span {
    font-weight: bold;
}

.sub-title {
    font-size: 28px;
}

.grid-2-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.grid-2-row p {
    padding: 5px;
}

.under-line-head {
    margin-bottom: 50px;
    border-bottom: solid 2px #f5f5f5;
    padding-bottom: 10px;
}

.book-box {
    padding: 20px;
}

.booking-info {
    margin: 50px 0px;
    text-align: center;
}

.booking-rate-box {
    border-bottom: solid 2px #f5f5f5;
    padding: 0px 0px 10px;
}


#rv-photos-box {
    position: fixed;
    height: calc(100vh - 75px);
    width: 100%;
   background: rgba(0,0,0,.7);
    bottom: 0;
    left: 0;
    display: none;
    justify-content: center;
}
#rv-photos-list{
    width: 90%;
    height: calc(100vh - 68px);
    background-color: aliceblue;
    max-width: 700px;
    overflow: auto;
}

#rv-photos-list > div {
    width: 100%;
    background-color: #CDDC39;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0px;
}

#rv-close {
    height: 30px;
    width: 30px;
    position: absolute;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    color: white;

}

.view-more {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    background-color: #8BC34A;
    height: 200px;
    cursor: pointer;
}

.view-more p {
    font-size: 34px;
    font-weight: bold;
    color: white;
}
#open-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}


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

    

    .big-quote h2 {
        font-size: 4vh;
        font-weight: 700;
    }

    .book-email {
        font-size: 4.5vw;
    }
    .booking-rate-box {
        text-align: right;
    }


}



@media screen and (max-width: 800px) {
    .rv-image-box {
        flex-direction: column;
    }
    #rv-sub-images {
        width: 100%;
        display: flex;
        max-height: 100px;
        gap: 5px;
        overflow: hidden;
        align-items: center;
     }
     #rv-sub-images > div {
        width: 150px;
        max-height: 150px;
     }

     .view-more {
        height: auto;
    }

    .details-box {
        margin-right: 0px;
    }

    .book-info-box {
        position: relative;
        width: 100%;
    }

    .display-none-mobile {
        display: none;
    }



    .big-quote h2 {
        font-size: 4vh;
        font-weight: 700;
    }

    .book-email {
        font-size: 4.5vw;
    }


}