
/* Flex footer */

.flex-footer-div {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
}

.flex-footer-div:nth-child(1) {
    flex: 1 0 auto;
}

.flex-footer-div:nth-child(2) {
    flex: 1 0 auto;
}

.flex-footer-div:nth-child(3) {
    flex: 1 0 auto;
}

.flex-footer-div:nth-child(4) {
    flex: 1 0 auto;
}


/* Contact info center text */

.contact-header {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}

.contact-header:nth-child(1) {
    flex: 0 1 auto;
}

.contact-header:nth-child(2) {
    flex: 1 0 70%;
}

.contact-info-icon {
    max-width: 2vw;
    min-width: 45px;
    margin: 0 5px 0 0;
    max-height: 50px;
}


/* SMALL SCREEN LAYOUT ADJUSTMENTS */

@media (max-width: 850px) {
    .flex-footer-div {
        display: flex;
        flex-flow: column nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .flex-footer-div:nth-child(1) {
        flex: 1 0 auto;
    }

    .flex-footer-div:nth-child(2) {
        flex: 1 0 auto;
    }

    .flex-footer-div:nth-child(3) {
        flex: 1 0 auto;
    }

    .flex-footer-div:nth-child(4) {
        flex: 1 0 auto;
    }
}