.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--dark-bg-color);
    color: var(--bg-color);
    padding: 60px 20px 80px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 0;
    border-left: 0;
}

.footer-brand {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-right: auto;
}

.footer-logo {
    height: 50px;
    width: fit-content;
}

.small-bio {
    font-size: 14px;
    opacity: 0.6;
}

.small-link {
    width: fit-content;
    font-size: 14px;
    opacity: 0.6;
}

.small-link:hover {
    opacity: 1;
}

.footer-col {
    display: flex;
    flex-direction: column;
    width: calc((100% - 400px) / 3);
    gap: 10px;
}

.footer-col-title {
    text-transform: uppercase;
    color: var(--gold-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer-link {
    font-size: 13px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .2s ease-in-out opacity;
}

.footer-link:hover {
    opacity: 1;
}

.newsletter-band {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--dark-bg-color);
    color: var(--bg-color);
    padding: 60px 20px 80px 20px;
}

.newsletter-band-col {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.small-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-title {
    font-size: 58px;
    margin-bottom: 10px;
}

.newsletter-desc {
    font-size: 14px;
    opacity: 0.7;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 36px;
}

.newsletter-form > .input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.input-wrapper > input {
    width: 100%;
    height: 60px;
    border: 0;
    background: none;
    outline: transparent;
    font-size: 18px;
    color: var(--bg-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 120px;
}

.input-wrapper > button {
    color: var(--gold-color);
    background: none;
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 20px;
}

.input-wrapper > button > span {
    margin-top: -2px;
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: gray;
}

.newsletter-privacy a {
    color: var(--gold-color);
    text-decoration: underline;
}

.newsletter-privacy > input {
    accent-color: #c49323;
}

.copyright {
    width: 100%;
    height: 60px;
    background-color: var(--dark-bg-color);
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.copyright > .box {
    align-items: center;
}

.rights {
    margin-right: auto;
}

.links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rights,
.links > a {
    color: var(--bg-color);
    opacity: 0.5;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1pxs;
    transition: .2s ease-in-out opacity;
}

.links > a:hover {
    opacity: 1;
}

@media screen and (max-width: 1200px) {
    .footer-brand {
        width: 300px;
    }

    .footer-col {
        width: calc((100% - 400px) / 2);
    }

    .newsletter-title {
        font-size: 48px;
    }

    .newsletter-desc {
        padding-right: 120px;
    }
}

@media screen and (max-width: 950px) {
    .footer > .box {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .footer-brand {
        width: 100%;
        max-width: 400px;
        text-align: center;
        align-items: center;
        margin: 0;
    }

    .footer-col {
        width: 100%;
        max-width: 400px;
        width: 100%;
        align-items: center;
    }

    .newsletter-band > .box {
        flex-direction: column;
        gap: 20px;
    }

    .newsletter-title {
        line-height: 48px;
    }

    .newsletter-band-col {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .newsletter-desc {
        padding: 0;
        max-width: 300px;
    }

    .newsletter-privacy {
        text-align: left;
        gap: 10px;
    }

    .copyright > .box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 12px;
    }

    .copyright > .box > * {
        margin: 0;
    }
}