slideshow{
    position: relative;
    padding: 0;
    width: 100vw;
    display: flex;
    overflow: hidden;
}
.slider{
    display: flex;
    width: 1000vw;
    transition: 0.5s;
}
.slide{
    width: 100vw;
    display: flex;
    justify-content: center;
}
.internal_slide{
    width: 1200px;
}
.arrow_control{
    width: 96vw;
    height: 10px;
    position: absolute;
    display: flex;
    justify-content: space-between;
    top: calc(50% - 5px);
    left: 2vw;
}
.arrows{
    width: 15px;
    height: 23px;
    cursor: pointer;
}
.slides_controls{
    position: absolute;
    bottom: 130px;
    display: flex;
    justify-content: center;
}
.slide_control{
    width: 25px;
    height: 6px;
    border-radius: 3px;
    background-color: orange;
    margin: 0 5px;
    cursor: pointer;
}
.slide_control.active{
    width: 35px; 
    background-color: red;
}