*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; /*resetea los valores*/
}
.navbar{
    background-color: white; /*Color de fondo navbar (Arreglar)*/
    height: 12vh;
    text-align: center;
    background: cover;
    width: 100%;
    display: flex;
}
.navbar .link{
    display: flex;
    align-items: center;
    width: 20%;
    justify-content: center;
}

.navbar .link a{
    color: #0c0c0c;
    text-decoration: none;
}
.navbar .link img{
    width: 100%;
}
.navbar .link .img-link{
    width: 15%;
    height: 35%;
}

.navbar .link:hover{
    background-color: #00b6e5;
}

.about-services .h2{
    color: #00b6e5;
}
.cards{
    display: flex;
    justify-content: space-evenly;
}

.cards .card{
    background: #4d0686;
    display: flex;
    width: 46%;
    height: 200px;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.6);
}


h2{
    text-align: center;
    
}
.cards .card img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid blue;
    border-radius: 50%;
    display: block;
}

.cards .card > .contenido-texto-card{
    width: 50%;
    color: beige;
    
}

.cards .card > .contenido-texto-card p{
    font-weight: 300;
    padding-top: 5px;
}


/*  Our team */

.about-services{
    background: #f2f2f2;
    padding-bottom: 30px;
    text-align: center;

}


.servicio-cont{
    display:flex;
    justify-content: space-between;
    align-items: center;
}

.servicio-ind{
    width: 28%;
    text-align: center;
}

.servicio-ind img{
    width: 90%;
}

.servicio-ind h3{
    margin: 10px 0;
}

.servicio-ind p{
    font-weight: 300;
    text-align: justify;
}
