.navbar
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand
{
    width: 12%;
}

.header__logo
{
    width: 100%;
}

.header__icons
{
    width: 14%;
    display: flex;
    justify-content: space-around;
}

.header__icon
{
    width: 36px;
}

.navbar-nav
{
    width: 60%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.nav-link
{
    font-size: 1rem;
    color: var(--dark-red-color);
    text-align: center;
}

.nav-link:hover
{
    text-decoration: underline;
    color: var(--dark-red-color);
}

.errors
{
    list-style-type: none;
}

.error, .success
{
    padding: 1rem;
    text-align: center;
    font-size: .9rem;
    background-color: var(--red-color);
    color: var(--light-color);
}

.error
{
    background-color: var(--red-color);
    opacity: .7;
}

.success
{
    background-color: green;
}

.footer
{
    margin-bottom: 0;
    background: var(--dark-red-color);
}

.footer__title
{
    color: var(--light-color);
    text-decoration: underline;
}

.form__contact-title
{
    font-size: 1.2rem;
    text-decoration: none;
}

.footer__nav-item
{
    font-size: 1rem;
    margin: 1rem auto;
}

.footer__nav-link
{
    text-decoration: none;
    color: var(--light-color);
    font-size: 1rem;
}

.footer__nav-link:hover,
.footer__nav-link:active,
.footer__nav-link:focus
{
    text-decoration: underline;
}

.footer__user, .footer__legal-items
{
    display: flex;
    justify-content: space-around;
}

@media all and (max-width: 1080px)
{
    .footer__title
    {
        font-size: 1.1rem;
    }

    .footer__nav-link
    {
        font-size: .9rem; 
    }

    .footer__legal-items
    {
        display: flex;
        flex-direction: column;
        
    }
} 

@media all and (max-width: 810px)
{
    .footer
    {
        display: flex;
        flex-direction: column;
    }
   
    .footer__title
    {
        margin-top: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
 
    .footer__plan
    {
        display: flex;
        flex-direction: row;
        justify-content: space-around; 
        margin: 1rem auto;
    }

    .footer__legal-items
    {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
}

@media all and (max-width: 420px)
{
    .navbar-brand
    {
        width: 30%;
    }

}
