.footer {
    background: #111;
    color: #fff;
    padding: 80px 120px 20px 120px;
}

/* layout */
.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

/* brand */
.footer-brand h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #aaa;
    font-size: 14px;
}

/* links */
.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links h4 {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 6px;
    font-size: 13px;
}

.footer-links a:hover {
    color: #fff;
}

/* subscribe */
.footer-subscribe h4 {
    margin-bottom: 10px;
}

.footer-subscribe p {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
}

/* input */
.footer-input {
    display: flex;
}

.footer-input input {
    padding: 10px;
    border: none;
    outline: none;
    width: 70%;
}

.footer-input button {
    background: #fff;
    color: #111;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

/* bottom */
.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #777;
}