.pricing {
    width: 100%;
    height: 100%;
}

.owl-carousel .owl-stage {
    height: 600px;
    margin-top: 100px;
    display: flex;
    align-content: center
}

.pricing-title {
    background-color: #25316D;
    border-radius: 100%;
    width: 150px;
    height: 150px;
    padding: 10px;
    position: absolute;
    top: -60px;
    left: 0px;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
    z-index: 100;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.best-seller {
    background-color: #FE7724;
    border-radius: 100%;
    width: 150px;
    height: 150px;
    padding: 10px;
    position: absolute;
    top: -60px;
    left: 0px;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
    z-index: 100;
    justify-content: center;
    align-content: center
}

.pricing .card {
    border: none white;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 500px; 
    margin: auto;
    
}

.pricing .card:hover{
    transform: scale(1.05);
}

.pricing .content {
    margin-top: 100px !important
}

.pricing .content h5 {
    color: #25316D
}


@media (min-width: 576px) {  
    .owl-carousel .owl-stage {
        height: 700px;
       
    }
    .pricing .card {
        max-width: 400px; 
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    .owl-carousel .owl-stage {
        height: 600px;       
    }
 }

 /* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
    .owl-carousel .owl-stage {
        height: 700px;
       
    }
    .pricing .card {
        max-width: 400px; 
    }
 }