.contact-content {
    height:100%; 
}

.contact-content>div{
    height:100%;
}

.contacts {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height:  100%;
}

.contact-list {
    display: inline-flex;
    flex: 1 1 100%;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    /* flex-wrap: nowrap; */
}

.contact-item {
    display: inline-flex;
    flex: 1 1 auto;
    max-width: 250px;
    min-width: 200px;
    padding: 0 8px;
    /* height: auto; */
    border-left: 1px solid var(--c-shade-b);
    height: 90px;
}

.contact-item:first-child {
    border-left: none;
    
}

.contact-item a {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.contact-item .contact-title {
    font-size: 21px;
    line-height: 24px;
    padding: 10px 0;
    text-align: center;
    letter-spacing: -0.5px;
    /* white-space: nowrap; */
}

.contact-item .contact-details {
    color: var(--c-emphasis-b);
    white-space: nowrap;
    font-size: 14px;
}

.contact-item img {
    width: 36px;
    transition: width 200ms
}

.contacts footer {
    display: inline-flex;
    flex: 0 0 auto;
    height:  auto;
    font-size: 14px;
    text-align: center;
}
.contact-hours {
    padding: 8px;
    width: 100%;
}

/* Hover States for Desktop */
#root .desktop.device-desktop .contact-item a :hover {
    color: unset;
}

#root .desktop.device-desktop .contact-item:hover .contact-title {
    color: var(--c-black-e)!important
}

#root .desktop.device-desktop .contact-item:hover .contact-details {
    color: var(--c-emphasis)!important
}

#root .desktop.device-desktop .contact-item:hover img {
    width: 54px;
    content: cover;

}
/*  */

/* Mobile Layout */

@media screen and (max-width: 999px) {
    .contacts {

    }
    .contact-list {
        flex: 0 0 auto;
        justify-content: space-around;
        align-items: center;
        align-content: center;
        margin: auto 0;
        flex-wrap: wrap;
    }
    .contact-item {
        min-width: 250px;
        flex: 1 1 25%;
        height: 120px;
        margin: 10px;
        border-left: none;
    }
}
/*  */