.slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    max-width: 100%;
    width: 100%;
}

.controls {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 5;
}

.controls span {
    overflow: visible;
    width: 40px;
    height: 40px;
    margin: 0;
    opacity: 1;
    top: 0;
    text-indent: -9999em;
    text-shadow: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background-color: rgb(203 151 68 / 60%);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.controls span:hover {
    cursor: pointer;
    background-color: rgb(203 151 68 / 100%);
}

.controls .arrow {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    z-index: 6;
}

.controls .prevarrow {
    left: 0;
    background: transparent url(../image/left.svg) no-repeat 2px 5px;
    background-size: 80%;
}

.controls .nextarrow {
    right: 0;
    background: transparent url(../image/right.svg) no-repeat 5px 5px;
    background-size: 80%;
}