@charset "UTF-8";
.slideshow-slide{
    position: relative;
    width: 80vw;
    height: 60vw;
    overflow: hidden;
    padding: 0;
    li{
        list-style: none;
        width: 100%;
        height: 100%;
        transition: 1s;
        top: 0;
        left: 0;
        &.slide{
          top: 0;
          left: 100%;
          z-index: 10;
        }
        &:first-of-type{
          display: block!important;
        }
        img{
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
        }
    }
}