/*resCarousel Css*/

.resCarousel .leftRs {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    z-index: 100;
    left: 0;
    width: 50px;
    height: 50px;
    box-shadow: 1px 2px 10px -1px rgba(0, 0, 0, .3);
    border-radius: 999px;
}
.resCarousel .rightRs {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    width: 50px;
    height: 50px;
    box-shadow: 1px 2px 10px -1px rgba(0, 0, 0, .3);
    border-radius: 999px;
}

.resCarousel {
    position: relative;
    display: block;
    box-sizing: border-box;
    width: 100%;
}

.resCarousel .resCarousel-inner {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
    white-space: nowrap;
    font-size: 0 !important;
    vertical-align: top;
}

.resCarousel .item {
    position: relative;
    display: inline-block;
    white-space: initial;
    font-size: 1rem;
    vertical-align: top;
}


/*animation*/
.resCarousel .item {
    transition: .6s ease all;
}

@media (max-width: 767px) {
    .resCarousel .leftRs,
    .resCarousel .rightRs {
        display: none !important;
    }
    .resCarousel .resCarousel-inner {
        overflow-x: auto;
    }
}

/*resCarousel Css End*/