/* Informa Connect Footer only */
footer {
    background-color: var(--footerBgColor);
    color: var(--color-white);
    padding: 30px 0;
    width: 100%;
}

footer a, footer a:hover, footer a:visited, footer a:active {
    color: var(--color-white);
    font-weight: 500;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer img {
    width: 220px;
    height: auto;
}

footer ul {
    list-style: none;
    margin: 10px 0;
    display: inline-block;
    clear: both;
    width: 100%;
    padding: 0;
}

footer ul li {
    clear: left;
    display: inline-block;
    font-size: 0.8rem;
    margin-right: 10px;
    padding: 3px 5px;
    width: 100%;
}

footer p {
    color: var(--color-white);
    float: left;
    font-size: 1.4rem;
    text-align: left;
    width: 100%;
}
footer hr {
    border-weight: 2px;
    width: 100%;
}
@media screen and (min-width: 992px) {
    footer ul {
        clear: none;
        float: right;
        width: auto;
    }
    footer ul li {
        clear: none;
        width: auto;
    }
    footer ul li:last-child {
        margin-right: 0;
    }
    footer p {
        float: right;
        text-align: right;
        width: auto;
    }
}

/* SMW Footer -- styling */
.footer {
    text-align: center;
}

.footer img {
    border: unset;
    margin: 5px 0;
    padding: 0;
}

.footer ul {
    list-style: none;
    margin: 20px 0 15px;
    padding: 0;
    text-align: center;
}

.footer ul li {
    float: none;
    margin-left: 0;
    font-size: 1.3rem;
    position: relative;
}

.footer ul li a {
    font-size: inherit;
}

.footer ul li:first-child {
    margin-left: 0;
}

@media screen and (min-width: 768px) {
    .footer {
        text-align: left;
    }
    .footer ul {
        margin: 25px 0 20px;
    }
    .footer ul li {
        float: left;
        margin-left: 12px;
    }
    .footer img {
        border: unset;
        margin: 40px auto 25px;
        padding: 0;
    }
    .footer ul li::before {
        content: "|";
        height: 14px;
        position: absolute;
        right: -8px;
        top: 0;
        width: 3px;
    }
    .footer ul li:last-child::before {
        content: unset;
    }
}

.footer ul li::before {
    content: "";
    display: none;
}