/*Portada*/



.container-portada{
    width: 100%;
    height: 260px;
    position: relative;
    background-image: url("../images/encabezados/profesionales.jpg");
    background-size: 200%;
    animation: movimiento 20s infinite linear alternate;  
}

@keyframes movimiento{
    from{
        background-position: bottom left;
    }to{
        background-position: top right;
    }
}


.capa-gradient{
    width: 100%;
    height: 100%;
    position: absolute;
    background: -webkit-linear-gradient(left, black, #0672d0);
    opacity: 0.5;
}

.container-details{
    width: 100%;
    max-width: 1200px;
    position: relative;
    margin: auto;
}


.details{
    width: 100%;
    max-width: 500px;
    position: relative;
    top: 10rem;
    color: white;
}

.details h1{
    text-align: center;
    justify-content: center;  
    font-size: 40px;
    font-weight: 100;
    margin-left: 4.4rem;
}

.details p{
    margin-top: 10px;
    font-size: 20px;
    font-weight: 100;
    margin-left: 10px;
}


@media screen and (max-width: 500px){
    .details p{
        font-size: 18px;
    }
}

.centrado h3{
    text-align: left;
}
.centrado p{
    text-align: left;
    font-size: 18px;
    color:  #6A6A6D;
}


.subrayado h3{
    color: #000000;
    margin-bottom: 50px;
    margin-top: 30px;
    font-weight: 500; 
    position: relative;
    text-align: left;
    transition: all 0.4s ease;
    }
.subrayado h3:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: rgba(23, 160, 162, 0.63);
    height: 2px;
    box-sizing: border-box;
    width: 120px;
}

.subrayado h3:hover{
  color: #000000;
  padding-left: 20px;
}