.slider-services{
    padding: 1.5rem;
    
}

.service-container{
    display: grid;
    grid-template-columns: 40% 60%;
    width: 90%;
    align-items: center;
    justify-content: center;    
    overflow-x: hidden;
    margin: auto;
    margin-top: 4rem;
}

.service-image{
    display: flex;
    align-items: center;
}
.service-image img{
    width: 90%;
    margin: auto;
    border-radius: 20px;
    box-shadow: 10px 10px 32px -2px rgba(0,0,0,0.48);
-webkit-box-shadow: 10px 10px 32px -2px rgba(0,0,0,0.48);
-moz-box-shadow: 10px 10px 32px -2px rgba(0,0,0,0.48);
}

@media (max-width:900px) {
    .service-image img{
      margin-left: 0px;
    }
}
.services-container{
    text-align: justify;
    width: 100%;
    
}

.services-container h2{
    color: #2A344E;
    text-align: justify;
    font-size: 30px;
}
.services-container h3{
    font-size: 44px;
    text-align: left;
    margin: 0;

}

.services-container p{
    font-size: 24px;
    text-align: left;
    
}


.service{
    display: grid;
    grid-template-rows: 20% 70% 10%;
    width: 100%;
    text-align: justify;
    background-color: white;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    -webkit-box-shadow: 0 0 30px 0 rgb(66 1 131 / 14%);
    -moz-box-shadow: 0 0 30px 0 rgb(66 1 131 / 14%);
    box-shadow: 0 0 30px 0 rgb(66 1 131 / 14%);

}

.service p{
    font-size: 20px;
    margin-top: -1rem;
}

.service a{
    padding: 1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.atras, .siguiente, .atras-service, .siguiente-service{
    /* position: absolute; */
    display: block;
    width: 38px !important;
    height: 38px !important;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.5s ease-in-out;
}

.atras:hover, .siguiente:hover,.atras-service:hover, .siguiente-service:hover{
   opacity: 1;
}

.slider-contenido{
    display: flex;
    flex-direction: row;
    position:relative;
    align-items: center;
    width: 100%;
    
}
@media (max-width:778px) {
    
    .service-container{
        grid-template-columns: 100%;
    }

    .service{
        width: 100%;
        margin-top: 1rem;
    }
    .slider-services{
        padding: 0;
    }

    .atras-service, .siguiente-service{
        width: 20px !important;
        height: 20px !important;
    }

    .service p{
        font-size: 18px;
        margin-top: -1rem;
        text-align: justify;
    }
    

}

