.footer{
    margin-top: auto;
    padding: 35px 0;
}
.footerLogo{
    height: 50px;
    display: block;
    margin: 0;
    width: auto;
}
.footerRow{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.footerRow:last-child{
    margin-bottom: 0;
}
.footerPrivacyLinks{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footerPrivacyLinks a{
    margin-bottom: 0;
    color: #82879D;
    text-decoration: none;
    opacity: 50%;
    transition: opacity 300ms ease;
}

.footerPrivacyLinks a:hover{
    text-decoration: underline;
    opacity: 100%;
    transition: opacity 300ms ease;
}

.footerCopyright{
    color: #82879D;
    opacity: 50%;
    font-size: 14px;
}
