/*=====================================================
ROOM 360 SECTION
=====================================================*/

.room360-section {

    padding: 100px 0;

    background: #faf9f7;

    overflow: hidden;

}

.room360-section .container-fluid {

    max-width: 1800px;

    margin: auto;

}

/*=====================================================
SWIPER
=====================================================*/

.room360Swiper {

    overflow: visible;

    padding: 15px 0 70px;

    position: relative;

}

.room360Swiper .swiper-wrapper {

    align-items: stretch;

}

.room360Swiper .swiper-slide {

    width: 420px;

    height: auto;

}

/*=====================================================
CARD
=====================================================*/

.room360-card {

    display: block;

    position: relative;

    width: 100%;

    height: 560px;

    border-radius: 24px;

    overflow: hidden;

    text-decoration: none;

    background: #f5f5f5;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);

    transition: .45s;

}

.room360-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);

}

/*=====================================================
IMAGE
=====================================================*/

.room360-image {

    width: 100%;

    height: 100%;

    overflow: hidden;

}

.room360-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 1s;

}

.room360-card:hover img {

    transform: scale(1.08);

}

/*=====================================================
OVERLAY
=====================================================*/

.room360-overlay {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    padding: 35px;

    color: #fff;

    background: linear-gradient(to top,
            rgba(0, 0, 0, .82),
            rgba(0, 0, 0, .40),
            rgba(0, 0, 0, 0));

    transition: .35s;

}

.room360-card:hover .room360-overlay {

    padding-bottom: 48px;

}

.room360-overlay h3 {

    margin: 0;

    font-size: 30px;

    font-weight: 700;

    color: #fff;

}

.room360-overlay span {

    display: inline-flex;

    align-items: center;

    margin-top: 14px;

    color: #C9A96E;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.room360-overlay span:after {

    content: "→";

    margin-left: 10px;

    transition: .35s;

}

.room360-card:hover .room360-overlay span:after {

    transform: translateX(8px);

}

/*=====================================================
EDGE FADE
=====================================================*/

.room360Swiper:before,

.room360Swiper:after {

    content: "";

    position: absolute;

    top: 0;

    width: 180px;

    height: 100%;

    z-index: 20;

    pointer-events: none;

}

.room360Swiper:before {

    left: 0;

    background: linear-gradient(to right, #faf9f7, transparent);

}

.room360Swiper:after {

    right: 0;

    background: linear-gradient(to left, #faf9f7, transparent);

}

/*=====================================================
PAGINATION
=====================================================*/

.room360-pagination {

    margin-top: 35px;

    text-align: center;

}

.room360-pagination .swiper-pagination-bullet {

    width: 10px;

    height: 10px;

    background: #ccc;

    opacity: 1;

}

.room360-pagination .swiper-pagination-bullet-active {

    width: 32px;

    border-radius: 20px;

    background: #C9A96E;

}

/*=====================================================
RESPONSIVE
=====================================================*/

@media(max-width:1199px) {

    .room360Swiper .swiper-slide {

        width: 360px;

    }

    .room360-card {

        height: 500px;

    }

}

@media(max-width:991px) {

    .room360Swiper .swiper-slide {

        width: 300px;

    }

    .room360-card {

        height: 420px;

    }

    .room360-overlay {

        padding: 25px;

    }

    .room360-overlay h3 {

        font-size: 24px;

    }

}

@media(max-width:767px) {

    .room360-section {

        padding: 70px 0;

    }

    .room360Swiper {

        padding-bottom: 50px;

    }

    .room360Swiper .swiper-slide {

        width: 260px;

    }

    .room360-card {

        height: 360px;

    }

    .room360Swiper:before,

    .room360Swiper:after {

        width: 60px;

    }

    .room360-overlay {

        padding: 18px;

    }

    .room360-overlay h3 {

        font-size: 20px;

    }

}