@keyframes footerOn {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 100;
    }
}
footer{
    position: relative;
    display: block;
    padding: 32px 0px 24px 0px;
    height: auto;
    width: 100%;
    opacity: 0;
    animation-name: footerOn;
    animation-duration: 300ms;
    animation-delay: 300ms;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    background-color: rgb(200, 209, 217);
    z-index: 11;
    }
footer .footer{
    position: relative;
    display: block;
    margin: 0px auto;
    width: 100%;
    max-width: 1700px;
    padding: 0px 16px;
    }
footer .footer .upper{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    height: auto;
    border-bottom: 1px solid rgb(157, 157, 157);
    padding: 0px 0px 24px 0px;
    }
footer .footer .upper .upper-left{
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 20px;
    }
footer .footer .upper .upper-left .footer-contact-header{
    text-transform: uppercase;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.12em;
    font-weight: 400;
    }
footer .footer .upper .upper-right{
    position: relative;
    display: block;
    }
footer .footer .upper .upper-right .footer-logo{
    position: relative;
    display: block;
    width: 240px;
    margin-top: 24px;
    height: 152px;
    }
footer .footer .lower{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 1.1em;
    letter-spacing: 0.034em;
    border-top: 1px solid #c2d1dd;
    }
footer .footer .lower .lower-left{
    position: relative;
    display: flex;
    }
footer .footer .lower .lower-left .social-media-logo{
    position: relative;
    display: inline-block;
    height: 28px;
    width: 28px;
    cursor: pointer;
    margin: 6px 10px 0px 0px;
    }
footer .footer .lower .lower-right{
    text-align: left;
    padding-top: 5px;
    }

@media only screen and (min-width:576px){
footer .footer{
    padding: 0px 36px;
    }
}

@media only screen and (min-width:768px){
footer .footer{
    padding: 0px 55px;
    }
footer .footer .upper{
    flex-direction: row;
    }
footer .footer .upper .upper-right .footer-logo{
    margin-top: -36px;
    width: 293px;
    }
footer .footer .lower{
    flex-direction: row;
    }
footer .footer .lower .lower-right{
    text-align: right;
    }
}