/* FOOTER */

.footer {
    min-height: 300px;
    height: auto;
    max-height: fit-content;
    display: flex;
    flex-direction: column;
    position: sticky;

    & > img {
        position: absolute;
        object-fit: cover;
        width: 100%;
        height: 100%;
        z-index: -1;
        filter: blur(0px);
    }
    & hr {
        border-color: #fff;
    }
}
.footer_container {
    background: #185069cc;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
    & .footer_img_text {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin: 20px 0;
        & img {
            object-fit: scale-down;
            height: 150px;
            width: 100%;
        }
        & h2 {
            color: #fefefe;
            letter-spacing: 1px;
            font-family: sans-serif;
            width: 300px;
            text-align: center;
        }

    }
    & .info_contact_footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 500px;
        & h3 {
            color: #fefefe;
            margin-bottom: 20px;
            text-align: center;
            
        }
    }
}
#ul_footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
        & li {
            text-align: center;
            color: #fefefe;
            margin: 10px 0;
        }
}
#container_copyrigth {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #185069cc;
    flex: 1;
    & #footer_copyrigth {
        font-size: 15px;
        background: none;
        color: #fefefe;
        font-style: italic;
    }

}

/* NAV */

.nav {
    display: flex;
    position: fixed;
    flex-direction: row;
    height: 100px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: #f7f7f7;
    padding: 0px 20px;
    top: 0;
    left: 0;
    z-index: 1000;

    & ul {
        display: flex;
        width: 100%;
        margin-left: 90px;
        justify-content: flex-start;
        background: none;
        & li {
            list-style: none;
            margin: 0 25px;
            font-size: 17px;
            background: none;
            & a {
                color: #393D3F;
                text-decoration: none;
                background: none;
            }
        }
    }
}
.icon_menu{
    font-size: 22px;
    color: #222;
}
.container_menu_icon:hover {
    cursor: pointer;
}
.container_menu_icon {
    display: none;
    margin-right: 20px;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: filter;
    transition: filter 300ms;
    min-width: 250px;
    & img {
        border-radius: 1px;
        padding: 5px;
        height: 100px;
        width: auto;
        object-fit: cover;
        /* box-shadow: 0 0 2em #646cffaa; */
    }
    & h3 {
        color: #393D3F;
        letter-spacing: 1px;
        font-size: 21px;
        text-align: center;
        text-wrap: balance;
    }
  }
.logo:hover {
    filter: drop-shadow(0 0 2em #646cffaa);
}

@media(max-width: 768px) {
    .nav ul {
        display: none;
        background: linear-gradient(to top, rgb(255, 255, 76), #dbdab5);
        flex-direction: column;
        position: absolute;
        height: 100vh;
        justify-content: flex-start;
        align-items: center;
        top: 0;
        padding: 200px 0px;
        margin: 0;
        & li {
            margin: 20px 0;
            font-size: 20px;
        }
    }
    .container_menu_icon {
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        width: 100%;
    }
    #ul_footer {
        align-items: center;
        & li {
            width: 100%;
            list-style: none;
            text-align: center;
        }
    }
    #footer_copyrigth {
        height: 90px;
    }
    .logo {
        justify-content: flex-start;
        & img {
            width: auto;
        }
        & h3 {
            display: none;
        }
    }

    .nav {
        justify-content: space-evenly;
    }
}