* {
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #232929;
    color: white;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

.header {
    background-color: #2FACA9;
    height: 80px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
}

.nav {
    display: flex;
    justify-content: space-between;

    max-width: 992px;
    margin: 0 auto;
}

.nav-link {
    color: #232929;
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    padding: 0 40px;
    text-align: center;
}

.nav-menu {
    display: flex;
    margin-right: 40px;
    list-style: none;
}

.nav-menu-item {
    font-size: 15px;
    margin: 0 10px;
    line-height: 80px;
    text-transform: uppercase;
    width: max-content;
}

.nav-menu-link {
    padding: 8px 12px;
    border-radius: 3px;
}

.nav-menu-link:hover,
.nav-menu-link_active {
    background-color:  #485e5e;
    transition: 0.5s;   
}

/*TOGGLE */
.nav-toggle {
    color: black;
    background: none;
    border: none;
    font-size: 30px;
    padding: 0 20px;
    line-height: 60px;
    cursor: pointer;

    display: none;
}

.logotype {
  display: flex;
  justify-content: center;
}

.footer {
    background-color: #2FACA9;
    position: relative;
    width: 100%;
    left: 0;
    bottom: 0; 
    margin-top: auto;
}

.footer-menu {
    padding-top: 24px; 
    text-align: center;
    max-width: 992px;
    margin: 0 auto;
}

.footer-logos {
    display: flex; 
    justify-content: center; 
    gap: 35px; 
    margin-bottom: 15px;
    color: #232929;
    font-size: 0; 
    text-decoration: none; 
    transition: opacity 0.2s;
}

.footer-menu-item {
    align-items: center;
    width: 100px;
    height: 100px;
}

.footer-logos-link:hover,
.footer-logos-link_active {
    opacity: 0.7;
    transition: 0.5s;   
}


.footer-text {
    font-size: 14px; 
    opacity: 0.8; 
    color: var( --secundary-color);
    margin-bottom: 10px;
}

/* MOBILE*/
@media (max-width: 768px) {
    .body {
        padding-top: 60px;
    }
        
    .header {
        height: 60px
    }

    .logo {
        font-size: 15px;
        padding: 0 20px;
        max-height: 55px;
    }

    .logo-image {
        max-height: 50px;
        margin-top: 5px;
     }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        margin: 0px;
        background-color: #485e5e;
        position: fixed;
        left: 0;
        top: 60px;
        width: 100%;
        padding: 20px 0;

        height: calc(100% - 60px);
        overflow-y: auto;

        left: 100%;
        transition: left 0.3s;
    }

    .nav-menu-item {
        line-height: 70px;
    }

    .nav-menu-link:hover,
    .nav-menu-link_active {
        background: none;
        color: white;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu_visible {
        left: 0;
    }

    .nav-toggle:focus:not(:focus-visible){
        outline: none;
    }

    .footer {
    width: 100%;
    position: relative;
    left: 0;
    bottom: 0;
    }


    .footer-logos {
        gap: 25px; 
        margin-bottom: 10px;
    }

    .footer-menu-item {
        align-items: center;
        width: 40px;
        height: 40px;
    }

    .footer-logos-link:hover,
    .footer-logos-link_active {
        opacity: 0.7;
        transition: 0.5s;   
    }


    .footer-text {
        font-size: 12px; 
        opacity: 0.8; 
        color: var( --secundary-color);
        margin-bottom: 10px;
    }
}