.owl-carousel-container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 15px;
}

.owl-carousel-servicios .carousel-item {
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 40px;
}

.owl-carousel-servicios .carousel-image {
    width: 100px;
    height: auto;
    aspect-ratio: 1 / 1;;
}

.owl-carousel-servicios .carousel-image img {
    width: 100%;
    height: 100%;
    
}

.owl-carousel-servicios .carousel-title {
    color: #203b34;
    font-family: "Rubik", sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    text-align: center;
}

.owl-carousel-servicios .carousel-button {
    background-image:linear-gradient(91deg, #30544a 0%, #1a2c28 50%);
    border: 1px solid #30544a;
    color: #fff;
    display: inline-block;
    font-family: "Rubik", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    padding: 10px 40px;
    text-decoration: none !important;
    transition: background-color 0.3s;
}

.owl-carousel-servicios .carousel-button:hover {
    background: #ffffff !important;
    color: #30544a;
}



@media (max-width: 769px){
    
    .owl-carousel-servicios .carousel-item{
        gap: 20px;
        max-width: 250px;
        max-height: 250px;
        margin: 0 auto;
        padding: 20px;
        justify-content: center;
    }
    .owl-carousel-servicios .carousel-image{
        width: 60px;
    }

    .owl-carousel-servicios .carousel-title{
        font-size: 17px
    }
    .owl-carousel-servicios .carousel-button{
        font-size: 17px;
    }
}