@import url('https://fonts.googleapis.com/css?family=Oswald');
@import url('https://fonts.googleapis.com/css?family=Open Sans');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

header {
    width: 100%; 
}

.contenedor {
    width: 100%;
    margin: auto;
}

.barra {
    height: 41px;
    background: rgba(0, 0, 0, 0.03);
    margin-top: 30px;
    margin-bottom: 15px;
}

.barra hr {
    width: 100%;
}

.social-bar {
    position: fixed;
    right: 0;
    top: 35%;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 100;
} 

.social-bar .icon {
    color: white;
    text-decoration: none;
    padding: .7rem;
    display: flex;
    transition: all .5s;
}

.social-bar .icon-instagram-circled {
    background: #a0a0a0;
}

.social-bar .icon-facebook-circled {
    background: #fbb900;
    border-radius: 1rem 0 0 0;
}

.social-bar .icon-youtube-play { 
    background: #fbb900;
}

.social-bar .icon-linkedin-circled {
    background: #a0a0a0;
    border-radius: 0 0 0 1rem;
}

.social-bar .icon:hover {
    padding-right: 2rem;
    border-radius: 1rem 0 0 1rem;
}

@media (min-width:1024px) {
    .contenedor {
        width: 1140px;
    }
    
    .barra {
        height: 41px;
        background: rgba(0, 0, 0, 0.03);
        margin-top: 30px;
        margin-bottom: 15px;
        position: relative;
        top: 108px;
    }
}