:root {
    --inner-block-gap: 5%;
}

#zigZagList {
    position: relative;
    overflow: hidden;
}

#zigZagList .container-items {
    margin-bottom: var(--space-between-sections);
    background-color: #9ab4c7;
}

#rooms #zigZagList .container-items {
    margin-bottom: 80px;
}

#zigZagList .container-items:nth-child(even) {
    background-color: #edf0f4;
}

#zigZagList .container-items:nth-child(even) .items {
    flex-direction: row-reverse;
}

#zigZagList .items {
    display: flex;
    position: relative;
    width: 100%;
    gap: var(--inner-block-gap);
    width: 90vw;
    margin: 0 auto;
}

#zigZagList .items:last-child {
    margin-bottom: 0;
}

#zigZagList .items .slider {
    align-self: flex-start;
    position: relative;
    float: left;
    width: calc(45% - var(--inner-block-gap));
}

#zigZagList .items .slider .eyeIcon {
    pointer-events: none;
    width: 42px;
    height: auto;
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 1;
    display: none;
}

#zigZagList .items .slider .customNav {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 1;
    display: none;
}

#zigZagList .items .slider .customNav button {
    width: 37px;
    padding: 0;
    background-color: transparent;
}

#zigZagList .items .info {
    display: flex;
    align-items: center;
    position: relative;
    float: left;
    text-align: center;
    width: calc(60% - var(--inner-block-gap));
    padding-inline: 121px;
}

#zigZagList .items .info .bgBox {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -100px;
    z-index: -1;
}

#zigZagList .items .btn-orange {
    margin-top: var(--space-between-sections);
}

#zigZagList .items .btn-transparent-blue {
    margin-top: 20px;
    display: block;
    width: fit-content;
    margin-inline: auto;
}

#zigZagList .items .info .items-info h2 {
    margin: 0 0 20px 0;
    font-size: 30px;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 30px;
    text-transform: uppercase;
}

#zigZagList .items .info .items-info ul.facilities {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 10px;
    padding: 0;
    margin: 0 0 20px 0;
    list-style-type: none;
}

#zigZagList .items .info .items-info ul.facilities li {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
    width: auto;
    padding: 10px 17px;
    background-color: #eff4f8;
    font-size: 14px;
    color: #5c6779;
    font-weight: 500;
    line-height: 20px;
}

#zigZagList .items .info .items-info ul.facilities li img {
    width: 20px;
    height: auto;
}

#zigZagList .items .info .items-info p {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 400;
    line-height: 26px;
}

#zigZagList .items .info .items-info p:last-child {
    margin-bottom: 0;
}


#rooms #zigZagList .items-slider .owl-dots {
    position: absolute;
    bottom: -44px;
}

#environment #zigZagList .items-slider .owl-dots {
    display: none;
}

@media (max-width: 1024px) {
    #zigZagList .items .info {
        padding-inline: unset;
    }
}

/* #Tablet (Portrait)
================================================== */
/* Note: Design for a width of 768px */
@media only screen and (min-width: 768px) and (max-width: 959px) {

    #zigZagList {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    #zigZagList .items {
        margin-bottom: 40px;
    }

    #zigZagList .items .slider {
        margin-top: 30px;
    }

    #zigZagList .items .info {
        margin-bottom: 30px;
        padding: 30px;
    }

    #zigZagList .items .info .items-info h2 {
        font-size: 22px;
        line-height: 22px;
    }

    #zigZagList .items .info .items-info ul.facilities li {
        padding: 7px 10px;
    }
}



/*  #Mobile (Portrait)
================================================== */
/* Note: Design for a width of 320px */
@media only screen and (max-width: 767px) {

    #zigZagList .container-items .items,
    #zigZagList .container-items:nth-child(even) .items {
        flex-direction: column !important;
        margin-bottom: 50px;
    }

    #zigZagList .items .slider {
        width: 100%;
        margin-top: 30px;
    }

    #zigZagList .items .slider .eyeIcon {
        width: 32px;
        top: 15px;
        bottom: auto;
        right: 15px !important;
        left: auto !important;
    }

    #zigZagList .items .slider .customNav {
        bottom: 55px;
        right: 15px !important;
        left: auto !important;
    }

    #zigZagList .items .info {
        width: 100%;
        margin-block: 40px;
        z-index: 1;
        padding-inline: unset;
    }

    #zigZagList .items .info .bgBox {
        right: 0 !important;
        left: 0 !important;
    }

    #zigZagList .items .info .items-info h2 {
        font-size: 20px;
        line-height: 20px;
    }

    #zigZagList .items .info .items-info ul.facilities li {
        padding: 7px 10px;
    }

    #zigZagList .items {
        flex-direction: column;
    }

    #rooms #zigZagList .items-slider .owl-dots {
        top: -43px;
    }

    .owl-theme .owl-dots .owl-dot.active {
        margin-left: unset;
    }

    #rooms #zigZagList .items-slider .owl-dots .owl-dot.active::before,
    #rooms #zigZagList .items-slider .owl-dots .owl-dot.active::after {
        display: none;
    }

    #rooms #zigZagList .container-items {
        margin-top: 100px;
        margin-bottom: unset;
    }

}