
.services_cover{
    width: 100%;
}
.services_cover_mobile{
    display: none;
}
.services_wrapper{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 3% 3% 4% 3%;
    font-family: "Oswald",sans-serif;
}
.services_wrapper h1{
    color: #1d0a97;
    text-align: center;
    font-size: 2.4vw;
    margin-top: 0;
    margin-bottom: 60px;
    /*text-transform: uppercase;*/
}
.services_title{
    font-size: 2vw;
    color: #424242;
    margin-bottom: 10px;
    margin-top: 20px;
    text-align: center;
}
.services_text{
    font-size: 1.2vw;
    letter-spacing: 0.2px;
    color: #939393;
    font-weight: 300;
    text-align: center;
    padding-top: 10px;
}
.sliders_wrapper{
    display: flex;
    justify-content: space-around;
}
.slider{
    position: relative;
    width: 27%;
    max-width: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.slides {
    display: flex;
    position: relative;
    transition: transform 0.5s ease-in-out;
}
.slider_img_wrapper{
    position: relative;
}
.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    display: block;
    border-radius: 5px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 49%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 3px;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.next {
    right: 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 1024px){
    .services_cover_web{
        display: none;
    }
    .services_cover_mobile{
        width: 100%;
        display: flex;
    }
    .services_wrapper{
        padding: 5% 5% 5% 5%;
    }
    .services_wrapper h1{
        font-size: 6vw;
    }
    .services_title{
        font-size: 5.3vw;
    }
    .services_text{
        font-size: 3.2vw;
    }
    .sliders_wrapper{
        flex-direction: column;
        align-items: center;
    }
    .slider{
        width: 65%;
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 768px){
    .services_cover_web{
        display: none;
    }
    .services_cover_mobile{
        width: 100%;
        display: flex;
    }
    .services_wrapper{
        padding: 5% 5% 5% 5%;
    }
    .services_wrapper h1{
        font-size: 6vw;
    }
    .sliders_wrapper{
        flex-direction: column;
        align-items: center;
    }
    .slider{
        width: 65%;
        margin-bottom: 50px;
    }
    .prev, .next{
    /*Sin ajustes*/
    }
    .services_title{
        font-size: 5vw;
    }
    .services_text{
        font-size: 3vw;
    }
}

@media screen and (max-width: 425px){
    .services_wrapper{
        padding: 10% 5% 10% 5%;
    }
    .slider{
        width: 85%;
        margin-bottom: 50px;
    }
    .prev, .next{
        font-size: 15px;
        padding: 10px;
        top: 50.3%;
    }
    .services_wrapper h1{
        font-size: 7.5vw;
    }
    .services_title{
        font-size: 7vw;
    }
    .services_text{
        font-size: 5vw;
    }
    
}