.single-property-hero{
    height: 100vh;
}

@media(max-width: 991px){
    .single-property-hero{
        height: 60vh;
    }
    
}

.property-featured-image{
    height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.ry-property-meta{
    overflow: hidden;
    text-align: center;
    padding: 0 !important; 
    max-width: 60%;
    margin: auto;
}

.ry-property-meta li{
    width: calc(100% / 3);
    float: left;
    padding: 0 .25rem;
    text-transform: capitalize;
    color: var(--bs-primary);
    margin-bottom: 2rem;
}

@media(max-width:1024px){
    .ry-property-meta{
        max-width: 100%;
    }
    
    .ry-property-meta li{
        padding: 0;
        margin-bottom: 1.5rem;
    }
    
}

@media(max-width:767px){
    .ry-property-meta li{
        width: 50%;
    }
}

.ry-property-meta li span{
    display: block;
    text-transform: uppercase;
    font-size: .8rem;
    font-family: 'Lora', serif;
    margin-bottom: .5rem;
    color: #3a3a3a;
}

.property-gallery .item img{
    aspect-ratio: 5/3;
    object-fit:cover;
}




.property-details-holder{
    background: #fff;
    padding: 8px;
    border-radius: 5px;
    text-align: center;
    position: relative;
    z-index: 9;
    width: 700px;
    margin: -10rem auto 0 auto;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
     -webkit-animation: fadeinup 2s ease;
}

.property-details-inner{
    padding: 30px;
    border: 1px solid var(--bs-primary);
}

.archive-title{
    justify-content: center;
    align-items: end;
    height: 75vh;
}

@media(max-width: 991px){
    .archive-title{
        height: 50vh;
    }
}

.archive-title-outer{
    background: #fff;
    padding: 8px;
    border-radius: 5px;
    text-align: center;
    position: relative;
    z-index: 9;
    width: auto;
    display: inline-block;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    margin-bottom: 4rem;
}

.archive-title-inner{
    padding: 30px;
    border: 1px solid var(--bs-primary);
    width: auto;
    display: inline-block;
}

.archive-title-inner h1{
    width: auto;
    display: inline-block;
}

@media(max-width:767px){
    .property-details-holder{
        width: calc(100% - 2rem);
    }
}

.property-details-holder .street{
    margin-bottom: 1rem;
    font-size: .9rem;
    color: var(--bs-dark);
    text-transform: uppercase;
}

.property-details-holder h1{
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.property-details-holder h1:after{
    content:'';
    height: 2px;
    width: 60px;
    border-radius: 100px;
    margin: 1rem auto 1rem auto;
    background: var(--bs-primary);
    display: block;
}

.property-details-holder .summary .text-right{
    display: none;
}


@-webkit-keyframes fadeinup{
    from{
        opacity: 0;
        margin-top: 0;
    }
    
    to{
        opacity: 1;
        margin-top: -10rem;
    }
}







.ry-property-actions{
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}