.fixed {
    position: fixed !important;
}

.social-icons {
    position: absolute;
    margin-bottom: 2rem;
    width: 100%;
    z-index: 5;
}

.social-icons ul {
    margin-top: 2rem;
    width: 100%;
    text-align: center;
}

.social-icons ul>li {
    margin-left: 1rem;
    margin-right: 1rem;
    display: inline-block;
}

.social-icons ul>li>a {
    display: inline-block;
    color: white;
    border-radius: 100%;
    font-size: 2rem;
    line-height: 4rem;
    height: 4rem;
    width: 4rem;
}

@media (min-width: 768px) {
    .social-icons {
        margin: 0;
        position: absolute;
    }
    .social-icons ul {
        margin-top: 0;
        width: auto;
    }
    .social-icons ul>li {
        display: inline-block;
        margin-left: 1rem;
        margin-right: 1rem;
        margin-bottom: 0;
    }
    .social-icons ul>li:last-child {
        margin-bottom: 0;
    }
    .social-icons ul>li>a {
        transition: all 0.2s ease-in-out;
        font-size: 2rem;
        line-height: 4rem;
        height: 4rem;
        width: 4rem;
        background-color: #1ed7b9;
    }
    .social-icons ul>li>a:hover {
        background-color: #01b9fc;
    }
}