.socials {
    display: flex;
    flex-direction: row;
    height: 4rem;
    width: 100%;
    justify-content: space-around;
    box-sizing: border-box;
}

.socials > a > img{
    width: 2rem;
    width: 2rem;
    filter: grayscale(100)
}

.socials > a:hover > img{
    width: 2rem;
    width: 2rem;
    filter: grayscale(0);
}

@media (min-width: 768px) {
    .socials {
        padding:  0 5rem;
    }
}

@media (min-width: 1200px) {
    .socials {
        padding: 0 30vw;
    }
}



.socials_header {
    flex-direction: column; 
    position: absolute; 
    top: 0;
    bottom: 0;
    right: 0;
    align-items: end;
    margin: auto 0;
    padding-right: 5vw;
    height: 15rem;
}