﻿.footer {
    z-index: 500;
    left: 0;
    bottom: 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 89px;
    white-space: nowrap;
    /* Set the fixed height of the footer here */
    background: #ffffff;
}

.footer-link-container {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 50%;
}

.footer-link-container p {
    color: #35376C;
    font-size: 16px;
    font-family: qualy, sans-serif;
}

.footer-icons {
    display: flex;
    justify-content: flex-end;
    width: 70%;
    height: 50%;
}

    .footer-icons i {
        font-size: 26px;
        color: #35376C;
    }

    .footer-icons i:nth-child(2) {
        margin: 0 0 0 26px;
    }

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 10px 0;
}

@media only screen and (min-width: 1080px) {

    .footer {
        height: 138px;
    }

    .footer-container {
        flex-direction: row;
    }

    .footer-link-container,
    .footer-icons {
        align-items: center;
    }

    .footer-link-container {
        justify-content: flex-start;
        margin: 0 0 0 27px;
    }

    .footer-icons {
        margin: 0 141px 0 0;
    }

    .footer-icons i {
        font-size: 37px;
        color: #35376C;
    }
}

