.footer {
    height: auto;
    width: 100%;
    position: relative;
    background-color: #000000;
    overflow: hidden;
}

.footer-container {
    width: 100%;
    max-width: 1280px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    position: relative;
    padding: 5% 5% 2.5% 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
    color: var(--color--white);
}

.footer-title{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.footer-title h1 {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
}

.footer-title h1 b {
    font-weight: 600;
    color: var(--color--red);
}

.form-footer{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-color: var(--color--white);
    color: var(--color--black);
    padding: 20px 2.5%;
    margin-top: 10vh;
}

.form-footer p {
    font-size: 1rem;
    font-weight: 300;
}

.form-footer div {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 150px;
}

.form-footer span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 300;
}

.form-footer span a img {
    width: 80px;
}

@media (max-width: 768px){
    .footer-title h1{
        font-size: 1.4rem;
    }

    .form-footer{
        flex-direction: column;
        gap: 10px;
        margin-top: 5vh;
    }

    .form-footer div {
        display: none;
    }

    .form-footer p{
        font-size: 0.8rem;
        font-weight: 400;
    }

    .form-footer span{
        flex-direction: column;
        font-size: 0rem;
    }

    .form-footer span a img {
        width: 80px;
    }
}