.full-container{
    width: 100vw;
}
.logo-container .logo{
    flex: 1;
}
.logo-container img{
    width: 100%;
    height: auto;
}
.logo-container{
    transition: all 0.2s ease;
}
.logo-container.column {
    flex-direction: column;
    gap: 20px;
}

header .nav-link{
    position: relative;
    transition: all 0.2s ease;
}
/* MENU LINKS HOVERS */
 /* strong::before{
    content: '';
    position: absolute;
    bottom: -10px;
    opacity: 0;
    height: 2px;
    width: 10px;
    background: orange;
}
.nav-link strong:hover  strong::before{
    content: '';
    position: absolute;
    opacity: 1;
    bottom: 0;
    height: 2px;
    width: 80%;
    background: orange;
} */
/* header .nav-link:hover + . */

/* RESPONSIVE HEADER */
@media screen and (max-width: 950px) and (min-width: 812px){
    #headernav .nav .nav-item,
    #headernav .nav .nav-item a{
        /* margin: 0 !important; */
        padding: 0 !important;
        padding-right: 5px !important;
        font-size: .7rem !important;
    }
    .logo-container{
        width: 80%;
    }
}
@media screen and (max-width: 811px) {
    #headernav .nav .nav-item,
    #headernav .nav .nav-item a{
        /* margin: 0 !important; */
        padding: 0 !important;
        padding-right: 5px !important;
        font-size: .65rem !important;
    }
    .logo-container{
        width: 70%;
    }
}