.slider {
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: #eee;
    /*cursor: grab;*/
}

.slide {
    /*background-color: palegreen;*/
    height: 100%;
    width: 100%;
    display: flex;
/*    justify-content: center;
    align-items: center;*/
    color: white;
    overflow: hidden;
    font-size: 1rem;
    font-weight: bold;
    position: absolute;
    opacity: 0;
    transition: all 0.5s;
}
.slide img{
    height: 100%;
    width: 100%;
}

.active_slide {
    z-index: 2;
    opacity: 1;
}

.slider_dots_container {
    position: absolute;
    bottom: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

}

.slider_dot {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: white;
    margin: 0 0.2rem;
    cursor: pointer;
}

.active_slider_dot {
    background-color: black;
}



.slider_buttons {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: white;
    opacity: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.slider_button_left {
    left: 1rem
}

.slider_button_right {
    right: 1rem
}


.slider_buttons:hover {
    opacity: 1;
}
@media screen and (max-width: 1000px) {
    .slider {
        height: 300px;
    }
    .home_info{ 
        overflow: scroll;
        height: 300px;
    }
}
.active_slide .slider_div img{
   
  animation: zoom-in-zoom-out 30s ease infinite; 
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  
  100% {
    transform: scale(1.5, 1.5);
  }
}