
/* common nav styles */
.navigation-wrapper{
    height: 190px;
    background-color: #11123f;
    color: #cbcbcb;
    /* initiate FlexBox contaier */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 100px;
}

/* left column */
.navigation-wrapper > .left-collumn {
    display:flex;
    align-items: center;
}

.navigation-wrapper > .left-collumn > .icon {
    margin-right: 15px;
}

.navigation-wrapper > .left-collumn > .icon i {
    font-size: 2em;
    color: #858585
}

.navigation-wrapper > .left-collumn > .contact-hours-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2px;
}

.navigation-wrapper > .left-collumn > .contact-hours-wrapper > .hours {
    font-family: 'Ubuntu Condensed', sans-serif;
    font-size: 0.8em;
    color: #858585
}

/* center column */
.navigation-wrapper > .center-column{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 42px;
    width: 500px;
}

.navigation-wrapper > .center-column > .banner-image{
    display: flex;
    justify-content: center;
}

.navigation-wrapper > .center-column > .banner-image img{
    width: 150px;
    height: 100%;
}

.links-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.links-wrapper > .nav-link{
    width: 70px;
    text-align: center;
}

.links-wrapper > .nav-link a {
    font-family: 'Ubuntu Condensed', sans-serif;
    color: #cbcbcb;
    text-decoration: none;
    transition: 0.5s;
    font-size: 1.2em;
}

.links-wrapper > .nav-link a:hover{
    color: #cea135;
    letter-spacing: 2px;
}

/* right column */
.navigation-wrapper > .right-column{
    display: flex;
    align-items: center;
}

.navigation-wrapper > .right-column > .address-wrapper{
    font-family: 'Ubuntu Condensed', sans-serif;
    text-align: right;
}

.navigation-wrapper > .right-column > .address-wrapper a{
    color: #858585;
    text-decoration: none;
    font-size: 0.9em;
    transition: 0.5s;
}

.navigation-wrapper > .right-column > .address-wrapper a:hover{
    color: #cea135;
}

.navigation-wrapper > .right-column > .contact-icon{
    margin: 15px;
    font-size: 2em;
}

.navigation-wrapper > .right-column > .contact-icon a{
    color: #858585;
    text-decoration: none;
    transition: 0.5s;
}

.navigation-wrapper > .right-column > .contact-icon a:hover{
    color: #cea135;
}
