@media (min-width: 768px) {
    .slider {
        border-radius: 0 !important;
    }
}
.slider {
    /* width: 800px;
    height: 500px; */
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.pto-banner {
    /* width: 800px;
    height: 500px; */
    /* margin-top: 20px; */
    display: flex;
    justify-content: center;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.slides {
    width: 500%;
    /* height: 500px; */
    display: flex;
}

.slides input {
    display: none;
}

.slide {
    width: 20%;
    transition: 2s;
}

.slide img {
    /* width: 800px;
    height: 500px; */
    width: 100%;
    height: 100%;
}

/*css for manual slide navigation*/

.navigation-manual {
    position: absolute;
    /* width: 800px; */
    width: 100%;
    margin-top: -25px;
    display: flex;
    justify-content: center;
}

.manual-btn {
    border: 2px solid #6923D0;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

.manual-btn:not(:last-child) {
    margin-right: 40px;
}

.manual-btn:hover {
    background: #6923D0;
}

#radio1:checked~.first {
    margin-left: 0;
}

#radio2:checked~.first {
    margin-left: -20%;
}

#radio3:checked~.first {
    margin-left: -40%;
}

#radio4:checked~.first {
    margin-left: -60%;
}

/*css for automatic navigation*/

/* .navigation-auto {
    position: absolute;
    display: flex;
    width: 800px;
    justify-content: center;
    margin-top: 460px;
}

.navigation-auto div {
    border: 2px solid #6923D0;
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
} */

/* .navigation-auto div:not(:last-child) {
    margin-right: 40px;
} */

/* #radio1:checked~.navigation-auto .auto-btn1 {
    background: #6923D0;
}

#radio2:checked~.navigation-auto .auto-btn2 {
    background: #6923D0;
}

#radio3:checked~.navigation-auto .auto-btn3 {
    background: #6923D0;
}

#radio4:checked~.navigation-auto .auto-btn4 {
    background: #6923D0;
} */

/* MEDIA DESKTOP */
@media (min-width: 1024px) {
    .pto-banner {
        margin-top: -8px;
        border-radius: 0;
    }
}

@media (min-width: 1281px) {
    .pto-banner {
        margin-top: 10px;
        border-radius: 0;
    }
}