
/* rooms_banner_section */
.rooms_banner_section {
    position: relative;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 55vh;
}

.rooms_banner_section::after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.rooms_banner_section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rooms_banner_section h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
}

/* rooms_banner_section */

/* esdw_section */
.esdw_section {
    /* border:1px solid red; */
    padding: 2rem 0 0rem;
}

.esdw_card {
    border: 1px solid lightgray;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.esdw_content {
    padding: 20px 25px;
    text-align: center;
}

.esdw_content h4 {
    text-align: center;
    font-family: system-ui;
    font-size: 23px;
}

.esdw_cimg {
    position: relative;
}

.offer_span_esdw {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #dc3545;
    padding: 6px 9px 5px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.esdw_section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size:35px;
    font-weight:700;
    font-family: system-ui;
}

/* esdw_section */

.esdw_card_slider {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
}

/* each slide */
.esdw_card_slider .item {
    position: absolute;
    inset: 0;
}

.esdw_card_slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    position: absolute;
    top: 0;
    left: 100%;
    transition: all 0.5s ease;
}

/* active image */
.esdw_card_slider img.active {
    left: 0;
}