.btn-primary {
    border-radius: 20px;
    width: 100px;
}

.slider-container-prdk {
    position: center;
    margin: 0 auto;
    width: 80%;
    max-width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.slider-track-prdk {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.card-prdk {
    flex: 0 0 30%;
    margin: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    height: 400px;
}

.card-prdk img {
    width: 100%;
    object-fit: cover;
}

.card-prdk h3 {
    margin: 15px 0 5px;
    font-size: 1.2em;
}

.card-prdk p {
    margin: 0 15px 15px;
    color: #555;
}

.slider-prdk-btns {
    position: center;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
    
.prev-btn-prdk {
    left: 10px;
    margin-right: 10px;
    background-color: rgb(255, 255, 255);
    color: rgb(77, 77, 77);
    padding: 5px 30px;
    border-width: 1px;
    border-color: rgb(77, 77, 77);
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.next-btn-prdk {
    left: 10px;
    margin-right: 10px;
    background-color: rgb(255, 255, 255);
    color: rgb(77, 77, 77);
    padding: 5px 30px;
    border-width: 1px;
    border-color: rgb(77, 77, 77);  
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.prev-btn-prdk:hover, .next-btn-prdk:hover {
    color: #fff;
    background-color: rgb(0, 0, 255);
}


@media (max-width: 768px) {
    .card-prdk {
        flex: 0 0 45%;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .card-prdk {
        flex: 0 0 90%;
        height: 350px;
    }
}
