:root{
    --headerColor:#284387;
    --main-color:#fff;
    --header-button-hover:#15254e;
}
header{
    box-sizing: border-box;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10%;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 21;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
}
.header-helper{
    width: 96%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}
.header-logo{
    height: 80%;
    cursor: pointer;
    box-sizing: border-box;
}
.header-logo img{
    height: 100%;
    object-position: center center;
    object-fit: contain;
}
.header-options{
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    color: #005a7e;
    font-weight: 500;
    font-family: 'Roboto';
    gap: 15px;
}
.header-options a,.mobile-header-extend a{
    color: #005a7e;
    text-decoration: none;
}
.header-options li {
    text-decoration: none;
    position: relative;
}
.header-options li::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 0;
    background-color: #005a7e;
    transition: width 0.3s ease;
}
.header-options li:hover::after {
    width: 100%;
}
.header-bm{
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: background-color 0.3s;
}

.hbm-helper{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 30px;
    width: 30px;
}
.hbm-l{
    width: 100%;
    height: 2px;
    background-color: #005a7e;
}
.mobile-header-extend{
    position: fixed;
    top: 9.5%;
    left: 0;
    right: 0;
    display: none;
    background-color: #fff;
    z-index: 20;
}
.mbe-helper{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
}
.mbe-helper li{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:5px 0px;
    border-bottom: 1px solid #005a7e;
}
.mbe-helper li:hover{
    background-color: #fff;
}

.mbe-helper li:nth-child(9){
    border-bottom: none;
}
.mbe-helper a{
    width: 100%;
    text-align: center;
}

footer{
    background-color: #005a7e;
    display: flex;
    align-items: center;
    color: white;
    justify-content: center;
    font-size: 15px;
}
.footer-helper{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5px;
}
.footer-socials{
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-socials svg{
    width: 30px;
    fill: #b1b1b1;
    height: 30px;
    cursor: pointer;
    transition: fill 0.3s ease;
}
.footer-socials svg:hover{
    fill: white;
}


@media (max-width:550px){
    .footer-helper{
        padding: 20px 5px;
        flex-direction: column;
        gap: 10px;
    }
    footer{
        font-size: 14px;
    }
}
@media (max-width:1225px) {
    .header-logo{
        width: 20%;
        height: 100%;
    }
    .header-options{
        display: none;
    }
    .header-bm{
        width: 52px;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        cursor: pointer;
    }
    .mobile-header-extend{
        box-sizing: border-box;
        height: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        transition: height 0.3s ease;
    }
}
@media (max-width:650px) {
    .header{
        box-shadow: none;
    }
    .header-logo{
        height: 100%;
    }
    .header-logo img{
        max-width: 250px;
    }
}