.ew-footer {
    background: #000;
    color: #fff;
    padding: 90px 32px 36px;
    font-size: 16px;
}

.ew-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 70px;
}

.ew-footer h3 {
    margin: 0 0 28px;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
}

.ew-footer p {
    margin: 0 0 26px;
    color: rgba(255,255,255,.78);
    line-height: 1.55;
}

.ew-footer a {
    display: block;
    margin-bottom: 15px;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    line-height: 1.35;
    transition: color .2s ease;
}

.ew-footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.ew-footer-social-title {
    margin-top: 42px !important;
}

/* Bottom legal section */

.ew-footer-bottom {
    max-width: 1280px;
    margin: 80px auto 0;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.10);
    text-align: center;
}

/* Copyright */

.ew-footer-bottom p:first-child {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.82);
}

/* VAT / RPT */

.ew-footer-bottom p:last-child {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: .2px;
    color: rgba(255,255,255,.72);
}

@media (max-width: 900px) {

    .ew-footer {
        padding: 64px 24px 30px;
    }

    .ew-footer-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .ew-footer-bottom {
        margin-top: 50px;
        text-align: left;
    }

    .ew-footer-bottom p:first-child {
        font-size: 12px;
    }

    .ew-footer-bottom p:last-child {
        font-size: 10px;
    }

}