.multislider {
    position: relative;
    overflow: hidden;
}

.multislider .item {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.multislider .item:first-child {
    position: inherit;
}

.multislider .item .box {
    position: relative;
    width: 100%;
    height: 100%;
}

.multislider .multislider-navigation .navigation {
    opacity: 0;
    position: absolute;
    top: 48%;
    top: calc(50% - 25px);
    top: -webkit-calc(50% - 25px);;
    top: -moz-calc(50% - 25px);
    height: 50px;
    width: 50px;
    color: #000;
    font-size: 25px;
    line-height: 50px;
    transition: all 1s ease-in-out;
    z-index: 3;
}

.multislider:hover .multislider-navigation .navigation {
    opacity: 1;
}

.multislider .multislider-navigation .multi-prev {
    left: 0px;
}

.multislider .multislider-navigation .multi-next {
    right: 0;
    text-align: right;
}

@media screen and (max-width:991px){
    .multislider .multislider-navigation .navigation {
        opacity: 1;
    }

}