.servicios{
    height: max-content;
    width: 100vw;
    background-image: url("../IMGS/fondo_servicios.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-clip: content-box;
    background-size: cover;
   
    
}.servicios-container{
    height: max-content ;
display: grid;
place-content: center;
gap: 30px 0px;
padding-bottom: 30px;

}
.cardServicio{
    height: 640px;
    width: 385px;
    background-color: red;
    border-radius: 50px 0px 50px 0px;
    backdrop-filter: blur("10px");
    background-color: rgba(88, 87, 86, 0.719);
    padding: 15px;  
    margin: auto;
}.servicios .cardServicio:hover{
    border: medium solid green;
    transform: translateY(-10px);
}

.cardServicio h1{
    text-align: center;
   
}

.cardServicio h4{
    height: 10%;
    text-align: center;
    font-size: 22px;
}.servicios .paquete{
    height: 80%;
    background-color: rgba(0, 0, 0, 0.493);
    border-radius: 0px 0px 50px 50px;
    padding: 5px;
}.paquete strong{
    font-size: 20px;
    color: gold;
    margin-right: 5px;
}.paquete h5{
    font-size: 18px;
    margin-bottom: 5px;
    color: white;
}.paquete h2{
    margin-top: 5px;
    text-align: center;
    color: gold;
    border: 2px solid gold;
    font-size: 28px;
}.paquete ul{
    padding: 20px;
    text-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    color: white;
    align-items: stretch;
}.paquete ul li{
    margin:5px;
}


/* // Medium devices (tablets, 768px and up) */
@media (max-width: 577px) {
    .cardServicio{
        width: 310px;
    height: max-content}
    .servicios-container{
        grid-template-columns: repeat(1,1fr);
    
    gap: 30px 0px;
       }
  

    
 }

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .servicios-container{
        grid-template-columns: repeat(2,1fr);
    gap: 30px 0px;
       }
      
 }

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
    .cardServicio{
        width: 360px;}
    .servicios-container{
        grid-template-columns: repeat(3,1fr);
    padding: 0px 1%;
    
       }
      
        
    
}

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
   .servicios-container{
    grid-template-columns: repeat(3,1fr);
place-items: center;
padding: 0px 2.5vw;
   }
    
}