/* Íconos Redes */
.inside-header {
    position: relative;
}

.social-icons {
    position: absolute;
    right: 0;
    top: 0;
    height: 32px;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    justify-content: space-between;
}

.social-icons a {
    padding: 6px;
    border-radius: 50%;
    display: flex;
    height: 32px;
    margin-right: 6px;
    
}

.social-icons a img {
    transition: all 0.2s ease-in-out;
    margin: 0 auto;
    filter: brightness(0);
}

.social-icons a:hover img{
    opacity: 0.8;
}

