
    :root {
        --text: #565656;
--links: #0F79D0;
--titles: #000000;
--page-background: #F8F9FC;
--highlight: #0F79D0;
--boxes-background: #FFFFFF;
--boxes-border: #CBD2DB;
--section-titles: #142E7B;
--section-titles-background: #F6F8FB;
--header-background: #142E7B;
--header-links: #FFFFFF;
--footer-background: #FFFFFF;
--footer-links: #0F79D0;
    }
    
:root {
    --secondary-color: #142E7B;
    --darkblue: #152B51;
}

header, footer{
    font-family: "Barlow", sans-serif;
}

/* HEADER */


.ods-front-header__management-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0;
    padding: 0;
    list-style-type: none;
    line-height: 55px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: end;
}

.ods-front-header__management-menu-item:last-child{
    grid-area:2/2
}

.ods-front-header {
    height: fit-content;
    padding: 0 20px;
    position: relative;
    z-index: 1000;
    background-color: var(--darkblue);
}

main {
    height: auto;
    margin: 20px 10px;
    position: relative;
}

.ods-front-header__menu {
    padding: 0;
    list-style-type: none;
    display: inline-block;
    vertical-align: top;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -38px;
    position: relative;
}

.ods-front-header__menu-item-link--active {
    border-bottom: none;
}

.ods-front-header__menu-item-link::after{
    content: "";
    display: block;
    position: absolute;
    width: 2px;
    height: 22px;
    background: white;
    top: 19px;
    right: 0;
}

.ods-front-header__menu-item-link {
    font-size: 20px;
    font-weight: 400;
    display: inline-block;
    padding: 0 25px;
    line-height: 55px;
    color: #fff;
    opacity: 1;
    transition: all .15s ease-in-out;
    position:relative;
    &:hover{
        background-color:white;
        color:black;
    }
}

.ods-front-header__portal-brand .ods-front-header__logo {
    height: 4.8rem;
}

.ods-responsive-menu-collapsible--collapsed .ods-front-header__menu{
    margin: 0;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
}

.ods-front-header__portal-brand {
    height:100%;
    z-index:1000;
}

.ods-front-header__portal-brand {
    display: inline-block;
    top: 25px;
    left: 20px;
    position: relative;
}

.ods-responsive-menu-collapsible--collapsed .ods-responsive-menu-collapsible__container{
    background-color:var(--darkblue);
}

.ods-responsive-menu-collapsible--collapsed .ods-responsive-menu-collapsible__toggle{
    border:none;
}

.ods-responsive-menu-collapsible--collapsed .ods-front-header__management-menu{
    display: flex;
    flex-direction: column;
}

@media screen and (max-width:768px) {
    .ods-front-header__menu-item-link::after{
        display:none;
    }
}


/* FOOTER */

.ods-front-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    height: 100px;
    background-color: var(--darkblue);
}

.ods-front-footer__link, .links > a {
    color:white;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    .logo {
        margin-left:40px;
        height: 60px;
    }
    .social{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
} 


@media screen and (max-width:999px){
    .ods-front-footer {
        display: flex;
        gap: 10px;
        flex-direction: column;
    }
    .ods-front-footer{
        height:150px;
    }
    .ods-front-header{
        height:100px;
    }
    .ods-front-header__portal-brand{
        top: 15px;
        left:0px;
    }
}

@media screen and (min-width: 451px) and (max-width: 768px) {
    .ods-responsive-menu-placeholder__toggle{
        height:100px;
        width:100px;
    }
}

@media screen and (max-width:450px){
    .footer-logo{
        flex-direction:column;
    }
    .ods-front-footer{
        height:200px;
    }
    .ods-front-header{
        height:60px;
    }
    .ods-front-header__portal-brand .ods-front-header__logo {
        height: 3rem;
    }
}

