header{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    box-sizing: border-box;
}

body{
    min-height: 100vh;
}




.header
{  
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    background-color: #0f4077;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

#logo-img{
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: invert(80%);

}

#navbar a{
    font-size: 22px;
    color: #fff;    
    text-decoration: none;
    font-weight: 500;
    margin-left: 50px;
}

#check{
    display: none;
}


.icons{
    position: absolute;
    right: 5%;
    font-size: 2.8rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

@media (max-width: 1376px)
{
    .header{
        padding: 1.3rem 5%;
    }
}

@media (max-width: 1225px){
    #logo-img{
        width: 80%;
    }


    .icons{
        display: inline-flex;
    }

    #check:checked~.icons #menu-icon{
        display: none;
    }

    .icons #close-icon {
        display: none;
    }

    #check:checked~.icons #close-icon{
        display: block;
    }

    #navbar {
        position: absolute;
        top:100%;
        left: 0;
        width: 100%;
        height: 0;
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
        overflow: hidden;
        background: grey;
        transition: .3s ease;
    }

    #check:checked~#navbar {
        height: 10rem;
    }

    #navbar a{
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-20px);
        opacity:0;
        transition: .3s ease;
    }

    #check:checked~#navbar a{
        transform: translateY(0);
        opacity:1;
        transition-delay: calc(.15s * var(--i));
    }
}






/* Footer */
footer{
    background-color: #0f4077;
}

  .top-footer-wave {
    position: relative;
    height: 40px;
    width: 100%;
    background: #0f4077;
    bottom: 0;
    transform: scaleY(-1); /* Esto invierte la ola verticalmente */
  }
  
  .top-footer-wave::before, .top-footer-wave::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100% 50%;
  }
  
  .top-footer-wave::before {
    width: 55%;
    height: 109%;
    background-color: #fff;
    right: -1.5%;
    top: 60%;
  }

  .top-footer-wave::after {
    width: 55%;
    height: 100%;
    background-color: #0f4077;
    left: -1.5%;
    top: 40%;
  }


#footer-container{
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-right: 2%;
    gap: 30px;
}

#footer-navbar ul{
    padding: 5%;
}

#footer-navbar ul li, .btn-toolbar{
    list-style-type: none;
    margin-right: 20px;

    font-family: "Yanone Kaffeesatz", sans-serif;
    font-size: 24px;
    font-weight: 400;
    padding-bottom: 10px;
}



.social-network{
    color: white;
    padding-bottom: 10px;
}

.social-network a{
    color: white;

}

#footer-container h2{
    font-family: "Barlow Condensed", sans-serif;
    font-size: 30px;
    letter-spacing: 0.02in;

}

#toolbar{
    display: flex;
    flex-direction: column;
    font-size: 24px;
}


footer p{
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    margin-top: 20px;
    color: #fff;

    font-size: 25px;
    text-align: justify;
    font-family: "Yanone Kaffeesatz", sans-serif;
    line-height: 1.5;



}

footer h2, ul li a{
    color: #ffffff;
}

