#masterFooter {
    width: 100%;
    background: #efefef;
    flex: 0 1 auto;
}

#ccFooterTop {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em 0;
    background: var(--cc-lightGrey);
}

#footerLogo {
    display: flex;
    flex-direction: row;
    width: 40em;
    align-items: center;
    justify-content: center;
}

    #footerLogo .ccLogoImg {
        width: 110px;
        height: 110px;
        margin: 0em 2em;
    }

    #footerLogo .ccTitle {
        font-size: 1.5rem;
        width: 100%;
        color: var(--cc-darkBlue);
        line-height: 1em;
        padding: 0 0 .25em 0;
    }

.linkfooterText {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}


.footerText {
    width: 100%;
}

    .footerText .rowBlock {
        display: flex;
        align-items: center;
        margin-bottom: 0;
        padding: 0;
    }

.footerLinks {
    width: auto;
    padding: 0 2em;
}

    .footerText ul,
    .footerLinks ul {
        list-style: none;
        padding: 0 0.5em;
    }

    .footerLinks ul {
        border-left: 1px solid #003b8d;
        margin-left: 0;
        padding-left: 1.2em;
    }

    .footerLinks a,
    .footerLinks a:visited {
        text-decoration: none;
        color: #0072c6;
    }

        .footerLinks a:hover {
            color: #c24646 !important;
        }

.footerText .icon-phone {
    color: var(--cc-blue);
    font-size: 2em;
    line-height: 1;
}

#ccFooterBottom {
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1em;
    color: #fff;
    background: var(--cc-darkBlue);
}

#footerCopyright {
    font-size: 0.9em;
}

#footerSocial {
    font-size: 2em;
    width: 8em;
    padding: 0 0.5em;
    margin: 0 1em;
    border-left: 1px solid #ccc;
}

    #footerSocial a,
    #footerSocial a:visited {
        color: #fff;
        text-decoration: none;
    }

        #footerSocial a:focus,
        #footerSocial a:hover {
            color: #D7A31A;
        }




/* RESPONSIVE */

/* Extra large desktops */
@media (max-width: 1400px) {
}

/* Large desktops */
@media (max-width: 1200px) {
}

/* Small desktops / large tablets */
@media (max-width: 992px) {
}

/* Tablets */
@media (max-width: 835px) {
    #footerLogo .ccLogoImg {
        width: 95px;
        height: 95px;
        margin: 0em 2em;
    }

    #footerLogo {
        width: 25em;
    }
}



/* Large phones */
@media (max-width: 680px) {
    #ccFooterTop {
        flex-wrap: wrap;
    }

    #footerLogo {
        width: 100%;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--cc-medGrey);
    }

        #footerLogo .ccLogoImg {
            width: 4rem;
            height: 4rem;
        }

    figcaption.footerText {
        width: auto;
    }

    #footerLogo .ccTitle {
        font-size: 1.25rem;
    }

    .footerText {
        line-height: 1.5em;
    }

        .footerText .icon-phone {
            display: none;
        }

        .footerText .rowBlock {
            padding: 0 0 0 .5rem;
            border-left: 1px solid var(--cc-blue);
        }

    .footerLinks ul {
        border-left: 0;
        margin-left: 0;
        margin: 0;
        padding-left: 0;
        width: 45%;
        width: max-content;
    }

        .footerLinks ul li {
            padding: .25rem 0;
        }

            .footerLinks ul li:not(:last-child) {
                border-bottom: 1px solid var(--cc-medGrey)
            }

    #ccFooterBottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #footerSocial {
        width: auto;
        padding: .75rem 0 0 0;
        margin: .75rem 0 0 0;
        font-size: 1.75rem;
        border-left: 0;
        border-top: 1px solid #ccc;
    }

        #footerSocial a {
            padding: 0 .5rem;
        }


    @media (max-width: 576px) {
        #footerLogo .ccLogoImg {
            margin: 0em 1rem;
        }

        #footerLogo {
            justify-content: space-evenly;
        }
    }

    /* Very small devices */
    @media (max-width: 360px) {
    }
