.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    list-style: none;
}
.social-links a {
    color: #fff;
}

.social-links a:hover {
    color: #fff;
}
.social-links .social-network {
    padding: 0 0.5rem;
    margin: 10px;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 25px;
    border: 2px solid #fff;
    font-size: 20px;
    line-height: 46px;
}
.social-bg-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.social-bg-color {
    display: none;
}
@media screen and (min-width: 64em){
    .social-bg-image {
        opacity: 0;
        transition: opacity 0.4s;
        transition-delay: 1s;
    }
    .desktop-menu.active .social-bg-color {
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
		background-color: #00234c;
    }
    .desktop-menu.active .social-bg-image {
        opacity: 1;
    }
}
