.info-wrapper {
    width: 100vw;
    height: 3.3rem;
    background-color: var(--primary-blue);
}

.info-wrap {
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    color: var(--primary-white);
    font-size: 1.4rem;
    text-transform: uppercase;
    
}

.info-wrap > div {
    display: flex;
    align-items: center;
}

.info-wrap > div > i, .info-wrap > div > a > i {
    color: var(--primary-white);
    font-size: 2rem;
}

.info-phone > span {
    margin-left: 1rem;
}

.info-social > span {
    margin-right: 1rem
}


@media screen and (max-width: 650px){

    .info-wrap {
        justify-content: space-between;
        align-items: center;
    }

    .info-wrap .info-slogan {
        display: none;
    }

    .info-wrap .info-social span {
        display: none;
    }

}