.humana-footer {
    background-color: var(--white);
}

.humana-footer .container {
    padding-left: 2rem;
    padding-right: 2rem;
}

.humana-footer .footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0px;
    background-color: var(--primary-1);
    color: var(--secondary-1);
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
}

.humana-footer .footer-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary-1);
}

.humana-footer .v-links {
    display: flex;
    padding: 3rem 0px;
    column-gap: 3rem;
}

.humana-footer .v-links .link-cards {
    width: calc(100% / 4);
    margin-bottom: 2rem;
}

.humana-footer .v-links .link-cards h2 {
    font-weight: 300;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.humana-footer .v-links .link-cards ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.humana-footer .v-links .link-cards ul li a {
    text-decoration: none;
    color: var(--font-color);
    padding: 0.5rem 0;
    display: inline-block;
}

.humana-footer .v-links .link-cards ul li:first-child a {
    padding-top: 0;
}

.humana-footer .v-links .link-cards ul li:last-child a {
    padding-bottom: 0;
}

.humana-footer .v-links .link-cards ul li a:hover {
    text-decoration: underline;
    text-underline-offset: 0.35rem;
    color: var(--action-link-active);
}

.humana-footer .v-links .link-cards:first-child svg {
    width: 180px;
}

.humana-footer .v-links .link-cards:last-child h2 {
    padding-left: 2rem;
}

.humana-footer .v-links .link-cards:last-child ul {
    padding-left: 2rem;
    border-left: solid 1px var(--border-color);
}

.humana-footer .h-links {
    margin-bottom: 1rem;
}

.humana-footer .h-links .menus {
    flex-wrap: wrap;
    justify-content: center;
}

.humana-footer .h-links .menus li {
    margin-bottom: 0.5rem;
}

.humana-footer .h-links .menus li a {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color: var(--font-color);
    font-size: 15px;
    text-underline-offset: 0.35rem;
}

.humana-footer .h-links .menus li a:hover,
.humana-footer .h-links .menus li a:active {
    color: var(--action-link-active);
    text-decoration: underline dashed var(--action-link-active);
}

.humana-footer .h-links .menus li a img {
    margin-left: 5px;
}

.humana-footer .copyright {
    margin-bottom: 1.75rem;
    font-size: 19px;
    line-height: 1.5rem;
    text-align: center;
    color: var(--font-color-secondary);
}

@media(max-width:1199.98px) {
    .humana-footer .v-links .link-cards {
        width: calc(100% / 3);
    }
}

@media(max-width:991.98px) {
    .humana-footer .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media(max-width:767.98px) {
    .humana-footer .v-links {
        flex-wrap: wrap;
    }

    .humana-footer .v-links .link-cards {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        width: 100%;
    }

    .humana-footer .v-links .link-cards:last-child h2 {
        padding-left: 0;
    }

    .humana-footer .v-links .link-cards:last-child ul {
        padding-left: 0;
        border-left: 0;
    }

    .humana-footer .v-links .link-cards:not(:first-child) {
        border-bottom: solid 1px var(--border-color);
    }
}