.footer-banner-area {
    background: #ffffff;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    padding: 18px 20px;
}

.footer-banner-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.footer-banner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 70px;
    margin: 6px 14px 6px 0;
    padding: 12px 20px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-banner-link:hover,
.footer-banner-link:focus {
    border-color: #b8b8b8;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.footer-banner-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 42px;
}

@media (max-width: 767px) {
    .footer-banner-list {
        justify-content: center;
    }

    .footer-banner-link {
        width: 100%;
        max-width: 280px;
        margin: 6px;
    }
}