@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&family=Poppins:wght@100;200;300;400;500&display=swap');
*{
    font-family: 'Kumbh Sans', sans-serif;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    text-transform: capitalize;
    
}
/*BODY*/
body{
    overflow-x: hidden;
}

/*Menu*/

#menu a{
    font-size: 18px;
   font-weight: bold;
    color: #3f3f3f;
}

/*Imagen*/
.carousel-inner {
    max-height: 45rem;
}
/*Mapa*/
.mapa{
    background-image: url('../img/gps.png');
    width: 100%;
    height: 500px;
   
}

#local{
    background: #f3f3f3;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;

}

.wrapper{
    width: 50%;
    margin-left: 175px;
    padding-top: 50px;
}

#numeros-local div{
    padding: 0 20px 0 0;
    height: 48px;

}
#numeros-local div:not(:last-child){
    border-right: 2px solid #3f3f3f;
}

#numeros-local div:not(:first-child){
    padding-left: 20px;
}

#numeros-local p{
    margin: 0;
}
/*Footer*/
footer{
    background: #1b2a4e;
    min-height: 100px;

}

footer p{
    color: #f3f3f3;
    text-align: center;
}
footer div{
    text-align: center;
}

#icons i{
    font-size: 26px;
    padding: 0 8px;
    color: #f3f3f3;
}



/*Media query para pantalla Ancha*/
@media( max-width:1200px){
    #local{
        flex-wrap: wrap;
        padding-top: 30px;
        
    }
    .wrapper{
        width: 90%;
        margin: auto;
        padding-top: 50px;
    }
}



/*Media query para pantalla pequeña*/
@media( max-width:768px){
    #intro,#equipo{
        width: 90% !important;
    }
    #equipo p{
        display: none;
    }
    .servicio-fila{
        width: 100% !important;
        text-align: center !important;
    }
}

@media( max-width:576px){
    .icono-wrap{
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
}

