/* Footer */

.main-footer {
    padding: 40px 10vw;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--white);
}

.main-footer-nav {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    border-left: solid 3px var(--blue);
}

.main-footer-nav ul li a {
    line-height: 2.75rem;
    font-weight: 500;
}

.main-footer-nav ul li a:hover {
    color: var(--blue);
    border-color: var(--blue);
}

.main-footer-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-footer-logo img {
    height: 100px;
}

.main-footer-button {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-footer-button button {
    width: 200px;
    height: 60px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
}

/* Footer - <992 */

@media only screen and (max-width: 992px) {
    
    .main-footer {
        padding: 30px 0;
        flex-direction: column;
        row-gap: 40px;
    }
    
    .main-footer-nav {
        padding: 0;
        border: none;
        text-align: center;
    }

    .main-footer-nav ul li a {
        font-size: 1.2rem;
    }

    .main-footer-contact {
        position: static;
        left: 0;
        transform: translateX(0);
        display: flex;
        align-items: center;
        column-gap: 30px;
    }

    .main-footer-contact ul {
        font-size: 1.2rem;
        line-height: 2rem;
    }
    
    .main-footer-contact img {
        height: 75px;
    }

    .main-footer-admin {
        display: none;
    }

    .main-footer-button {
        display: none;
    }
    
}