header{
    position: fixed;
    width: 100%;
    max-width: 100%;
    top: 0;
}
.container__header{
    position: relative;
    top: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu{
    position: absolute;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.brand{
    width: 18rem;
}
.brand a img{
    width: 100%;
}
.menu__nav{
    display: flex;
    justify-content: space-evenly;
}
.menu__nav li{
    list-style: none;
}
.nav__link{
    display: block;
    padding: .25rem .5rem;
    border-radius: .48rem;
    color: var(---006a94);
    font-size: .85rem;
    margin-right: .7rem;
}
.nav__link:hover{
    color: #c0392b;
}
.active__link{
    background-color: var(---006a94);
    color: #fff;
}
.active__link:hover{
    background-color: #034661;
    color: #fff;
}

/*----redes sociales----*/

.social__media{
    position: absolute;
    top: 6rem;
}
.social__media ul{
    display: flex;
}
.social__media ul li{
    list-style: none;
    margin-right: .6rem;
}
.fa-facebook-f {
    padding:10px 14px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
    background-color: #ffffff;
    border-radius: 100px;
    color: #006A94 !important;
}
.fa-facebook-f:hover {
    background-color: #3d5b99;
    color: #FFFFFF !important;
}
.fa-twitter {
    padding:10px 12px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
    background-color: #ffffff;
    border-radius: 100px;
    color: #00aced !important;
}
.fa-twitter:hover {
    background-color: #00aced;
    color: #FFFFFF !important;
}
.fa-instagram {
    padding:10px 14px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
    background-color: #ffffff;
    border-radius: 100px;
    color: #C13584 !important;
}
.fa-instagram:hover {
    background-color: #C13584;
    color: #FFFFFF !important;
}
.fa-tiktok {
    padding:10px 14px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
    background-color: #ffffff;
    border-radius: 100px;
    color: #C13584 !important;
}
.fa-tiktok:hover {
    background-color: #ff0050;
    color: #FFFFFF !important;
}
.fa-whatsapp {
    padding:10px 14px;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    transition: .5s;
    background-color: #25D366;
    border-radius: 100px;
    color: #ffffff !important;
}
.fa-whatsapp:hover {
    background-color: #075E54;
}
.fa{
    font-size: 1.5rem;
}
@media (min-width: 768px) {
    .container__header{
        top:110px
    }
    .brand{
        width: 25rem;
    }
    .nav__link{ 
        padding: .50rem 1rem;
        border-radius: .48rem;
        font-size: 1.2rem;
        margin-right: .7rem;
    }
    .social__media{
        top: 6.5rem;
    }
 }
 @media (min-width: 1024px) {
    .social__media{
        top: -1.5rem;
        right: 2rem;
    }
  }