/*resCarousel Css*/

.outt {
    display: none;
}

.leftRs {
    box-shadow: 0 1px 12px 0 rgba(0,0,0,.12);
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 18px;
    margin-top: -12.5px;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: all .1s cubic-bezier(.4,0,.6,1);
    transition: all .1s cubic-bezier(.4,0,.6,1);
    opacity: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    outline: 0;
    visibility: visible;
    transform: translateX(calc(-50% + 0px));
    left:0;
    padding: 0;
}
.leftRs .fas, .rightRs.fas{
    height: 1rem;
    width: 1rem;
    color: rgba(0,0,0,.8);
    fill: currentColor;
    stroke: currentColor;
    -webkit-transition: width .1s cubic-bezier(.4,0,.6,1);
    transition: width .1s cubic-bezier(.4,0,.6,1);
}
.leftRs:hover, .rightRs:hover{
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
}
.rightRs {
    box-shadow: 0 1px 12px 0 rgba(0,0,0,.12);
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 18px;
    margin-top: -12.5px;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: all .1s cubic-bezier(.4,0,.6,1);
    transition: all .1s cubic-bezier(.4,0,.6,1);
    opacity: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    outline: 0;
    right:0;
    padding: 0;
    visibility: visible;
    transform: translateX(calc(50% - 0px));
}

.resCarousel {
    /*float: left;
    overflow: hidden;*/
    width: 100%;
    position: relative;
}

.resCarousel-inner {
    overflow-x: hidden;
    white-space: nowrap;
    font-size: 0;
    vertical-align: top;
}

.resCarousel-inner .item {
    display: inline-block;
    font-size: 14px;
    white-space: initial;
}


/*banner*/

.banner {
    overflow: hidden !important;
}


/*tile css*/

.resCarousel-inner .item .tile {
    background: white;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    margin: 5px;
}


/*animation*/

.resCarousel[data-animator="lazy"] .item {
    transition: .6s ease all;
}

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


/*resCarousel Css End*/