.footer {
    position: relative;
    width: 100%;
    bottom: auto;
    display: block;
    box-sizing: border-box;
    margin: 80px 0 0;
    background: #fff;
    color: rgba(0, 0, 0, 0.62);
    font-family: 'Montserrat', 'Source Sans Pro', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, sans-serif;
}

.footer .footer-inner {
    width: 100%;
    max-width: 1250px;
    display: grid;
    grid-template-columns:
        minmax(150px, 0.9fr)
        minmax(255px, 1.35fr)
        minmax(170px, 0.95fr)
        minmax(170px, 0.95fr)
        minmax(220px, 1.15fr);
    gap: 18px 32px;
    align-items: start;
    justify-content: center;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 50px 40px 44px;
}

.footer .footItem {
    min-height: 0;
    padding: 24px 0;
    color: rgba(0, 0, 0, 0.62) !important;
}

.footer .footItem .t5,
.footer .footItem .b {
    color: rgba(0, 0, 0, 0.72);
    font-weight: 700 !important;
    letter-spacing: 0;
}

.footer .footMenuItem {
    color: rgba(0, 0, 0, 0.62) !important;
    line-height: 1.35 !important;
    margin: 0 0 7px;
}

.footer .footItem .linkGlowBlack {
    color: rgba(0, 0, 0, 0.62) !important;
    border-bottom: 1px solid transparent;
    text-decoration: none;
}

.footer .footItem .linkGlowBlack:hover,
.footer .mediaIcon:hover {
    color: #0da2b5 !important;
    border-bottom-color: #0da2b5;
    -webkit-text-stroke-width: 0;
    text-decoration: none;
}

.footer .mediaIcon {
    display: inline-block;
    margin: 6px 8px 0 0;
    color: #848c8c;
}

.footer .copyright {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
    padding: 16px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.58);
    text-align: center;
}

@media only screen and (min-width: 1181px) {
    .footer .footMenuItem a {
        white-space: nowrap;
    }
}

@media only screen and (max-width: 1180px) {
    .footer .footer-inner {
        width: 100%;
        max-width: none;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media only screen and (max-width: 820px) {
    .footer {
        margin-top: 64px;
    }

    .footer .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 28px;
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 36px;
    }
}

@media only screen and (max-width: 560px) {
    .footer {
        margin-top: 52px;
    }

    .footer .footer-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 32px;
    }

    .footer .footItem {
        padding: 16px 0;
    }

    .footer .footMenuItem {
        line-height: 1.45 !important;
        margin-bottom: 9px;
    }

    .footer .copyright {
        justify-content: flex-start;
        text-align: left;
    }
}
