.slides{
    min-width: 100%;
    max-width: 100%;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
}

.slides img{
    z-index: 0 !important;
    width: 100% !important;
    height: auto !important;
}

.slide{
    position: relative;    
    width: 100%;
    transition: .5s;
    z-index: 1;
}

.slidesBts, .slidesDot{
    position: absolute;
}

.slidesBts{
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
    background-color: rgba(57, 57, 57, 0.3);
    top: calc(50% - 50px);
    cursor: pointer;
    padding: 2px 10px;
    border: none;
    z-index: 1;
}

.slidesBts:hover{
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(57, 57, 57, 0.7);
}

.slidesBts:first-of-type{
    left: 30px;
}

.slidesBts:last-of-type{
    right: 30px;
}

.slide a{
    z-index: 1;
    cursor: pointer;
}

.slide img{
    top: 0;
    position: absolute;
    width: 100%;
    min-width: 100% !important;
    max-width: 100% !important;
    
}

.slidesDot{
    z-index: 1;
    bottom: 30px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
}

.slidesDot span{
    margin: 0 3px;
    cursor: pointer;
}

@media screen and (max-width: 740px) {
    .slides img{
        width: auto;
        /*height: 300px !important;*/
    }
}