.footerNav {
    display: flex;
    flex-direction: row;
    height: auto;
    padding-bottom: 50px;
    justify-content: space-between;
    max-width: 1200px;
    left: 50%;
    transform: translate(-50%, 0);
    padding-top: 30px;
}
.footerBottom{
    border-top: 1px solid #e5e5e5;
    padding: 20px 0px;
    height: auto;
}
.footerBottom > div {
    display: flex;
    align-items: center;
    max-width: 1200px;
    left: 50%;
    transform: translate(-50%, 0);
}
.navlist {
    display: flex;
    flex-direction: column;
    width: auto;
    color: #82878b;
}
.navTitle {
    font-weight: 400;
}
.navTitle, .navItem {
    margin: 10px 0px;
}
.navItem {
    font-size: 14px;
    font-weight: 300;
    color: gray;
}
.navContact {
    font-size: 14px;
    font-weight: 300;
    width: auto;
    display: flex;
    margin-left: -6px;
    margin-bottom: 6px;
}
.navContact i {
    font-size: 14px;
    margin: 5px;
    color: #157eaf;
}
.navContactWrap{
    width: auto;
    margin-top: 10px;
}
.footerBottom >div img {
    width: auto;
    height: 35px;
    filter: grayscale(100%);
    opacity: 0.5;
}
.footerBottom >div div::before{
    content: '';
    width: 1px;
    height: 40px;
    background: lightgray;
    display: block;
    position: absolute;
    left: -25px;
    top: 0px;
    margin: 0 10px;
}
.footerBottom > div div{
    margin-left: 26px;
    font-size: 13px;
    font-weight: 300;
    color: #82878b;
}
.footerBottom span {
    font-size: 13px;
    font-weight: 300;
    white-space: nowrap;
    color: #82878b;
}

@media screen and (max-width: 900px) {
    .footerBottom {
        padding: 20px !important;
    }
    .footerBottom > div {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .footerBottom > div div {
        margin: 20px 0px !important;
        font-size: 12px;
    }
    .footerBottom > div div::before {
        display: none !important;
    }
    .footerNav{
        padding: 0px 20px 20px 20px !important;
    }
    .navlist:not(:last-child) {
        display: none;
    }
}