.listAllRange .hero {
    display: block;
    margin: 1rem 0 3rem;
}
.listAllRange .hero .heroTit {
    margin-bottom: 1.5rem;
}
.listAllRange .hero .heroTxt {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    margin: 0;
    max-width: inherit;
}
@media (min-width: 768px) {
    .listAllRange .hero .heroTxt {
        max-width: calc(0.5833333333 * (100% - 13.75rem) + 7.5rem);
    }
}
.listAllRange .listItemRange {
    display: block;
    margin: 20px 0px;
}
.listAllRange .listItemRange h4 {
    font-size: 1rem;
    line-height: 1.1rem;
}
.listAllRange .listItemRange > ul {
    list-style: none;
    display: block;
    margin: 0.5rem 0;
    padding: 0;
}
.listAllRange .listItemRange > ul li {
    display: block;
    padding: 0;
}
.listAllRange .listItemRange > ul li > a {
    display: block;
    font-size: 0.875rem;
    line-height: 1.5;
    text-decoration: underline;
}
.listAllRange .listItemRange > ul li:first-of-type {
    margin-top: 0;
}
.listAllRange .listItemRange > ul li:last-of-type {
    margin-bottom: 0;
}

.listAllRooms {
    margin-bottom: 1.5rem;
}
.listAllRooms .hero {
    display: block;
    margin: 1rem 0 3rem;
}
.listAllRooms .hero .heroTit {
    margin-bottom: 1.5rem;
}
.listAllRooms .hero .heroTxt {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    margin: 0;
    max-width: inherit;
}
@media (min-width: 768px) {
    .listAllRooms .hero .heroTxt {
        max-width: calc(0.5833333333 * (100% - 13.75rem) + 7.5rem);
    }
}
.listAllRooms .listRoom .card-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: black;
}
.listAllRooms .listRoom .card-link .img-wrapper {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 10px;
    border: 1px solid #eee;
    overflow: hidden;
    padding-bottom: 59.25%;
    display: block;
    box-sizing: border-box;
}
.listAllRooms .listRoom .card-link .img-wrapper img {
    transform: scale(1);
    position: absolute;
    top: 0;
    background: #fff;
    transition: all ease-in-out 0.15s;
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-width: 50%;
    min-height: 50%;
}
.listAllRooms .listRoom .card-link:hover .img-wrapper img {
    transform: scale(1.15);
    transition: all 500ms ease-out;
}
