/* =========================== FOOTER =========================== */
.footer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: var(--font1);
}

.footer .foot {
    width: 100%;
    border: 1px solid var(--BGCardHover);
    background-color: var(--BGBody);
    display: flex;
    padding: 40px 60px;
    border-radius: 20px;
    margin-bottom: 20px;
    flex-direction: row;
    justify-content: space-between;
}

.footer .left {
    width: 35%;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--ColorText);
}

.footer .left h1 {
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.footer .left a {
    text-decoration: none;
    display: flex;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: .1rem;
    text-transform: uppercase;
    gap: .6rem;
    margin-top: 10px;
    align-items: center;
    color: var(--ColorText);
    transition: all .3s ease-in-out;
}

.footer .left a i {
    font-size: 25px;
}

.footer .right {
    width: 35%;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--ColorText);
}

.footer .right h1 {
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.footer .right a {
    text-decoration: none;
    display: flex;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: .1rem;
    text-transform: uppercase;
    gap: .6rem;
    margin-top: 10px;
    align-items: center;
    color: var(--ColorText);
    transition: all .3s ease-in-out;
}

.footer .right a:hover,
.footer .left a:hover {
    color: var(--BGButton);
}

.footer .right a i {
    font-size: 25px;
}

.footer .foot .over {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    height: 100%;
}

.footer .foot .over .form {
    display: flex;
    flex-direction: column;
    background: transparent;
    padding: 20px;
    border-radius: 10px;
    /* width: 50px; */
}

.footer .foot .over .form .title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: 1px;
    color: var(--ColorText);
}

.footer .foot .over .description {
    line-height: 1.5rem;
    font-size: 1.2rem;
    margin-top: 1rem;
    color: var(--ColorText);
    opacity: .8;
}

.footer .foot .over .form div {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
    gap: 1rem;
}

.footer .foot .over .form div input {
    outline: none;
    line-height: 1.5rem;
    font-size: 14px;
    color: var(--ColorText);
    padding: 0.5rem 0.875rem;
    background-color: var(--ColorText) / .8;
    border: 1px solid rgba(253, 253, 253, 0.363);
    border-radius: 0.375rem;
    flex: 1 1 auto;
}

.footer .foot .over .form div input::placeholder {
    color: rgb(216, 212, 212);
}

.footer .foot .over .form div input:focus {
    border: 1px solid var(--BGButton);
}

.footer .foot .over .form div button {
    color: var(--ColorButton);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.2rem;
    line-height: 1.25rem;
    padding: 0.625rem 0.875rem;
    background-color: var(--BGButton);
    border-radius: 0.375rem;
    border: none;
    outline: none;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.footer .foot .over .form div button:hover {
    background-color: var(--BGButtonHover);
    color: var(--ColorText);
}

.footer .bottom {
    color: var(--ColorText);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: 1px;
}

.footer .bottom .up {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 200;
}

.footer .bottom .up i {
    transform: rotate(-90deg);
    font-size: 25px;
}

.footer .bottom a {
    margin: 0;
    text-decoration: none;
    color: var(--ColorText);
}


@media screen and (max-width: 835px) {
    .footer .foot {
        display: flex;
        flex-direction: column;
    }
    
    .footer .left {
        width: 35%;
        height: 100%;
        display: flex;
        margin-bottom: 30px;
        color: var(--ColorText);
    }
    
    .footer .right {
        width: 35%;
        height: 100%;
        display: flex;
        flex-direction: column;
        color: var(--ColorText);
    }
    
    .footer .right h1 {
        font-size: 26px;
        font-weight: 300;
        margin-bottom: 10px;
        text-transform: capitalize;
    }
    
    .footer .foot .over {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        height: 100%;
    }
    
    .footer .foot .over .form {
        display: flex;
        flex-direction: column;
        background: transparent;
        padding: 30px 0;
        border-radius: 10px;
        max-width: 350px;
    }
    
    .footer .foot .over .form .title {
        font-size: 2rem;
        font-weight: 500;
        line-height: 2rem;
        letter-spacing: 1px;
        color: var(--ColorText);
    }
    
    .footer .foot .over .description {
        line-height: 2.2rem;
        font-size: 14px;
        font-weight: 200;
        margin: 1.2rem 0;
        color: var(--ColorText);
        opacity: .8;
    }
    
    .footer .bottom {
        flex-direction: column;
        gap: 2.5rem;
        margin-bottom: 5rem;
    }
}


@media screen and (max-width: 768px) {
    .footer {
        align-items: center;
    }

    .footer .bottom {
        letter-spacing: 0;
        font-size: 14px;
    }

    .footer .foot {
        padding: 40px;
    }
}