.slide {
    display: flex;
    justify-content: center;
    
    position: relative;
    margin-bottom: 52vh;
    
}

.slide_item {
    width: 70vw;
    height: 50vh;
    border-radius: 10px;
    z-index: 0;
    position: absolute;
    opacity: 0;
    transform: scale(0.9);
    transition: all .5s ease-in-out;
}

.slider_showing {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
    
}
  