.content{
    margin-top: 250px;
    margin-bottom: 0;
    padding: 0;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider{
    width: 100vw;
    height: 910px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}
.slides{
    line-height: 0;
    width: 500%;
    height: 500px;
    display: flex;
}
.slides input{
    display: none;
}

.slide{
    width: 20%;
    transition: 2s;
}
.slide img{
    width: 100vw;
    height: 600px;
    object-fit: cover;
}
.navigation-manual{
    position: absolute;
    z-index: 98;
    width: 100vw;
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.manual-btn{
    border: 2px solid #48BF84;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}
.manual-btn:not(:last-child){
    margin-right: 60px;
}
.manual-btn:hover{
    background: #48BF84;
}

#radio1:checked ~ .first{
    margin-left: 0;
}
#radio2:checked ~ .first{
    margin-left: -20%;
}
#radio3:checked ~ .first{
    margin-left: -40%;
}
#radio4:checked ~ .first{
    margin-left: -60%;
}


.navigation-auto{
    position: absolute;
    z-index: 97;
    display: flex;
    width: 100vw;
    justify-content: center;
    margin-top: 560px;
}

.navigation-auto div{
    border: 2px solid #48BF84;
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
}

.navigation-auto div:not(:last-child){
    margin-right: 60px;
}
#radio1:checked ~ .navigation-auto .auto-btn1{
    background: #48BF84;
}
#radio2:checked ~ .navigation-auto .auto-btn2{
    background: #48BF84;
}
#radio3:checked ~ .navigation-auto .auto-btn3{
    background: #48BF84;
}
#radio4:checked ~ .navigation-auto .auto-btn4{
    background: #48BF84;
}



@media(max-width: 800px){
    .slide img{
        width: 100vw;
        height: 400px;
    }
    .navigation-manual{
        margin-top: -170px;
    }
    .navigation-auto{
        margin-top: 330px;
    }
}

@media(max-width:650px){
    .slide img{
        width: 100vw;
        height: 280px;
    }
    .navigation-manual{
        margin-top: -250px;
    }
    .navigation-auto{
        margin-top: 250px;
    }
}