/* flexy sticky footer */
html {
    height: 100%;
}

body {
    margin: 0; /* Takes away the default margin which would otherwise make the body extend beyond 100% of page height */
    display: flex; /* Items have equal height */
    display: -ms-flexbox; /* same as display:flex for IE11 */
    display: -webkit-flex; /* iPad & Safari */
    flex-direction: column; /* layout item's content vertically */
    -ms-flex-direction: column; /* flex-direction: column for IE11 */
    height: 100%; /* Needed for IE11 so that body takes up at least 100% of height */
}

header {
    -webkit-box-flex: 0;
    -webkit-flex: 0;
    -ms-flex: none;
    flex: none;
}

.main {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    flex-basis: auto;
}

footer {
    -webkit-box-flex: 0;
    -webkit-flex: 0;
    -ms-flex: none;
    flex: none;
}

.footer > span {
    color: white;
}
/*flex footer ends here*/

.footer-bottom {
    color: #FFF;
    display: flex;
    min-height: 50px;
    align-items: center;
    font-size: 14px;
    border: 1px solid #707070;
    background: linear-gradient(to right, #1886A5, #063534);
    font-family: "Open Sans", SansSerif, Times, "Times New Roman";
    padding: 10px;
}

.footer-top {
    background-color: #484747;
    border: 1px solid #707070;
    min-height: 100px;
    display: flex;
    align-items: center;
}

.footer-photo {
    height: 50px;
    padding: 10px;
    max-width: 200px;
}

.footer-links {
    text-align: center;
}

.footer-bottom .footer-links a {
    color: #FFF;
}

.footer-bottom .footer-links a:hover {
    text-decoration: none;
    color: #EEE;
    cursor: pointer;
}


