/* Footer Elements */
.footerOuter {
    max-width: 1300px;
    background-color: transparent;
    margin: 0 auto;
}

.topFooter {
    height: 53px;
    background-color: #c2d4db;
    position: relative;
    margin: 0 -10px 0 -10px;
}

@media (max-width: 991px) {
    .topFooter {
        height: 30px;
    }
}

@media (max-width: 767px) {
    .topFooter {
        margin: 0;
    }
}

.triangleLeftUp {
    width: 0px;
    height: 0px;
    border-top: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 5px solid #3d72a0;
    border-right: 5px solid #3d72a0;
    position: absolute;
    top: -10px;
    left: 0px;
}

.triangleRightUp {
    width: 0px;
    height: 0px;
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #3d72a0;
    border-left: 5px solid #3d72a0;
    position: absolute;
    top: -10px;
    right: 0px;
}

.bottomFooter {
    box-sizing: border-box;
    min-height: 100px;
    background-color: #f1ecdf;
}

.footerContentBox, .footerContentBoxCenter {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;

    border-bottom: 1px solid #eee3ca;
    max-width: 1180px;
    min-height: 50px;
    margin: 0 auto;
}

.footerContentBoxInner {
    margin: 30px 8px;
}

.footerImageHeader {
    font-family: "SourceSansPro-Semibold";
    font-size: 18px;
    padding: 16px 0px;
}

@media (max-width: 480px) {
    .footerContentBox {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .footerContentBoxCenter {
        flex-wrap: wrap;
    }

    .footerContentBoxInner {
        margin: 10px 10px;
    }

    .footerImageHeader {
        padding: 10px 0px;
    }
}

.footerImage {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;

    float:left;
    width: 74px;
    height: 46px;
    border-radius: 4px;
    background-color: #ffffff;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
    margin: 0px 10px 10px 0px;
}

.footerImageSocialMedia {
    margin: 10px;
}

.footerCompanyListElement {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 30px 0 30px 0;
}

.footerCompanyListElement > li {
    flex: auto;
    padding: 0px 9px;
    line-height: 1.0;
    border-right: 2px solid #8e876f;
}

.footerCompanyListElement > li a {
    color: #8e876f;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "SourceSansPro-Semibold";
    font-size: 15px;
}

.footerCompanyListElement > li a:hover {
    color: #313d95;
}

.footerCompanyListElement > li:last-child {
    border-right: none;
}

@media (max-width: 480px) {
    .footerCompanyListElement {
        flex-wrap: wrap;
        justify-content: center;
        align-items: baseline;
    }
    .footerCompanyListElement > li {
        flex: none;
        border-right: none;
    }
}

.footerDescription {
    text-align: center;
    font-family: "SourceSansPro-Regular";
    font-size: 15px;
    padding: 10px;
    margin: 0 0 100px 0;
    max-width: 960px;
}

.footerDescription a {
    font-family: "SourceSansPro-Semibold";
    font-size: 15px;
    color: #8e876f;
}