#topbar {
    overflow: hidden;
    background-color: var(--text-dark);
    font-size: .9em;
    height: 40px;
    padding: 0;
    margin-top: 0;
    display: flex;
    z-index: 10;
}

#topbar .contact-info a {
    line-height: 0;
    color: var(--text-light);
    transition: 0.3s;
    width: 30%;
}

#topbar .contact-info p {
    margin: 0;
    display: inline;
}

#topbar .contact-info {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0 15px;
    flex-direction: row;
    width: 75%;
}

#topbar .social-links {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 25%;
}

#topbar .contact-info div:hover a {
    color: var(--text-ilight);
}

#topbar .contact-info div:hover i {
    color: var(--text-light);
}

#topbar .contact-info i {
    color: var(--text-ilight);
    line-height: 0;
    margin-right: 5px;
}

#topbar .contact-info .phone-icon,
#topbar .contact-info .return {
    margin-left: 15px;
}

#topbar .social-links a {
    color: var(--text-light);
    padding: 4px 12px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a:hover {
    color: var(--text-ilight);
}

@media screen and (max-width: 720px) {
    #topbar {
        flex-direction: row;
    }
    #topbar .contact-info {
        justify-content: start;
        width: 50%;
    }
    #topbar .social-links {
        justify-content: end;
        width: 50%;
    }
    #topbar .contact-info div a p {
        display: none;
    }
}