.banner{
   .banner_wrapper{
    .banner_slider{
        position: relative;
        overflow: hidden !important;
        .banner_item{
            img{
                width: 100%;
                height: 700px;
            }
        }
        .Prev{
            font-size: 35px;
            height: 60px;
            background-color: $white;
            width: 60px;
            color: #7a7878;
            border: 1px solid #c2c1c1;
            border-radius: 50%;
            line-height: 60px;
            text-align: center;
            position: absolute;
            box-shadow: 1px 1.332px 4px 1px #7c7c7c4d;
            left: 5%;
            z-index: 2;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            &:hover{
                color: $black;
            }
        }
        .Next{
            font-size: 35px;
            height: 60px;
            width: 60px;
            background-color: $white;
            color: #7a7878;
            border: 1px solid #c2c1c1;
            box-shadow: 1px 1.332px 4px 1px #7c7c7c4d;
            border-radius: 50%;
            line-height: 60px;
            text-align: center;
            position: absolute;
            right: 5%;
            z-index: 2;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            &:hover{
                color: $black;
            }
        }
    }
    }
}