.single-hotel {
    padding: 8rem 0;
    position: relative;
}

.single-hotel .title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 75%;
    margin: 0 auto 8rem;
}

.single-hotel .title-wrapper h3 {
    margin: 0 0 2rem;
}

.single-hotel .title-wrapper p {
    margin: 0;
}

.single-hotel .offer-subtitle {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.single-hotel .offer-subtitle+p {
    font-size: 1.8rem;
}

.single-hotel .hotel-thumb-wrapper {
    margin-bottom: 2rem;
    overflow: hidden;
}

.single-hotel .hotel-thumb {
    aspect-ratio: 250 / 200;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    transition: transform .3s ease;
}

.single-hotel .row-single-hotel:hover .hotel-thumb{
    transform: scale(1.05);
}

.single-hotel .offer-title>* {
    margin: 0;
    font-size: 3.2rem;
    line-height: 1.5;
}

.single-hotel .offer-rating {
    gap: 0.4rem;
}

.single-hotel .offer-description-box {
    padding: 2rem;
    gap: 2rem;
}

.single-hotel strong,
.single-hotel b {
    font-weight: bold;
}

.single-hotel .hotel-stars {
    padding-top: 0.5rem;
}

.single-hotel .offer-middle-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding-left: 2.7rem;
}

.single-hotel .offer-middle-list li {
    font-size: 1.6rem;
    line-height: 1.8rem;
    position: relative;
}

.single-hotel .offer-middle-list li::before {
    content: "";
    background-image: url(../images/icon-check.svg);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    height: 1.2rem;
    left: -2.6rem;
    position: absolute;
    top: .4rem;
    width: 1.6rem;
}

@media (min-width:1200px) {
    .single-hotel .row-single-hotel {
        max-width: 80%;
        margin: 0 auto;
    }

    .single-hotel {
        padding: 6rem 0;
    }
}

@media (max-width:1199px) {
    .single-hotel {
        padding: 4rem 0;
    }

    .single-hotel .title-wrapper {
        max-width: 100%;
        margin-bottom: 5rem;
    }
}

@media (max-width:991px) {

    .single-hotel .single-hotel-data-wrapper,
    .single-hotel .single-hotel-wrapper {
        margin-bottom: 3rem;
    }
}