/* Normal effect for hotel index */
.hero .hero-title {
    mix-blend-mode: normal;

}


.awards{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1480px;
    gap: var(--x40g);
    align-items: center;
    justify-content: center;
}

.awards img{
    display: block;
    max-height: 100px;
    object-fit: contain;
    width: fit-content;
}

@media (max-width: 700px){
    .awards img{
        max-height: 80px;
        max-width: 150px;
    }
}

@media (max-width: 450px){
    .awards{
        display: flex;
        flex-direction: column;
        padding: 0 20px;
        box-sizing: border-box;
        gap: var(--lg);
    }

}




.description{
    margin-bottom: 0;
}



/* Hotel swiper */

.hotelSwiper {
    width: calc(100vw - 40px);
    max-width: 1480px;
}

.hotelSwiper .swiper-slide {
    width: 100%;
    max-width: 470px;
}
.mobile-hotels-logo{
    display: none;
}

.hotelSwiper .swiper-wrapper{
    margin-bottom: var(--l60p);

}

.hotelSwiper.center-two .swiper-wrapper{
    justify-content: center;
}

@media (max-width: 700px) {

    .hotelSwiper {
        width: 100%;
        box-sizing: border-box;
        max-width: 1480px;
    }


    .hotelSwiper .swiper-slide{
        width: 250px;
        margin-bottom: 20px;
    }

    .hotelSwiper .swiper-slide:first-child{
        margin-left: 20px;
    }
    .hotelSwiper .swiper-slide:last-child{
        margin-right: 20px;
    }

    .category-item p,
    .category-item .two-button-wrapper{
        display: none;
    }

    .category-image {
        aspect-ratio: 3/4;
        margin: 0;
        padding: 0;
        z-index: 1;
    }

    .category-item h2{
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 2;
        color: white;
        font-size: 17px;
        text-align: start;
        width: 100%;
        box-sizing: border-box;
        padding: 10px;

    }
    .category-image::after {
        height: 200px;
    }


    /* index carousel styling */
    .mobile-hotels .swiper-slide {
        position: relative;
        isolation: isolate;

        /* Prevent iOS Safari repaint flickering */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
    }

    .mobile-hotels .category-image,
    .mobile-hotels .category-item h2,
    .mobile-hotels-logo {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
    }



    .mobile-hotels .category-item h2{
        top: 0;
        bottom: unset;
        left: 0;
        text-transform: uppercase;
        font-weight: 600;
        line-height: 1.1;
        font-size: 16px;
        text-align: center;
        padding: 25px;

    }

    .mobile-hotels .category-image::after {
        content: "";
        position: absolute;
        bottom: unset;
        top: 0;
        left: 0;
        z-index: 2;
        width: 100%;
        height: 150px;
        background: linear-gradient(to top, rgba(0,0,0,0), rgba(0, 0, 0, 0.5));
    }

    .mobile-hotels .category-image::before{
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 2;
        width: 100%;
        height: 150px;
        background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0, 0, 0, 0.5));
    }

    .mobile-hotels-logo{
        display: block;
        position: absolute;
        bottom: 25px;
        left: 50%;
        transform: translate3d(-50%, 0, 0);
        z-index: 2;
        max-height: 70px;
        max-width: 100px;
        opacity: 0.7;
    }



}

/* other */


.three-cards .rewards-title-vertical{
    right: 20px;
}


.three-cards .swiper-wrapper {
    margin-top: 0;
}

.rewards{
    margin-top: 0;
}









