*{
    font-family: 'Roboto', Arial;
}

html {
    scroll-behavior: smooth;
}
  

body{
    background-color: #ffffff;
    padding-top: 48px;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x:hidden;
}

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    height: 55px;
    background-color: #014080;
    display: flex;

    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    z-index: 10000000;
    border-bottom: rgba(39,39,39,255) 1px solid;
    margin-bottom: 0;

    border: none;
}

.linksy{
    text-decoration: none;
}


/* left section */

.filler{
    flex: 1;
}

.left{
    text-align: center;
    flex: 1; /* Add this line */
    vertical-align: top;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-pic{
    max-height: 30px;
    margin-right: 8px;
  }

.logo{
    color: #ffffff;
}

.logo-none{
    display: none;
}


/* right secion */

.right{
    flex: 1;
    vertical-align: top;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    margin-right: 30px;
}

.nav-button{
    border: none;
    background-color: #014080;
    cursor: pointer;
    color: #ffffff;
    height: 50px;
    font-weight: 600;
    transition: 0.32s;
    font-size: 14px;
}

.nav-button:hover{
    /* box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15); horizontal vertical blur color */
    color: #d73c37;
}

.nav-button:active{
    opacity: 0.6;
}

.hamb-menu{
    display: none;
    color: #ffffff;
}

.overlay{
    display: none;
}




@media (max-width: 320px) {
    .logo{
        font-size: 15px;
    }
    .right-links{
        display: none;
    }
    .hamb-menu{
        display: flex;
        background-color: #ffffff;
    }
    
}

@media (max-width: 1080px) {
    .logo-none{
        display: flex;
        align-items: center;
        margin-left: 10px;
        text-decoration: none;
    }
    .left{
        display: none;
    }
}

@media (max-width: 554px) {
    .right-links{
        display: none;
    }
    .hamb-menu{
        display: flex;
        background-color: #ffffff;
        cursor: pointer;
        border: none;
        padding: 2px;
    }
    .navbar{
        padding-top: 5px;
    }
    .overlay{
        display: flex;
        position: fixed;
        top: 0;
        right: -200px;
        bottom: 0;
        width: 150px;
        z-index: 1000000000;
        transition: right 0.3s ease-out;
        flex-direction: column;
        text-decoration: none;
        background-color: #014080;
    }
    .slide-button{
        display: flex;
        width: 100%;
        padding: 30px;
        background-color: #014080;
        border: none;
        cursor: pointer;
        text-decoration: none;
        color: #ffffff;
        text-decoration-line: none;
        font-weight: 600;
    }
    .link-color{
        text-decoration: none;
    }
    .slide-button:hover{
        /* box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15); horizontal vertical blur color */
        color: #d73c37;
    }
    
    .slide-button:active{
        opacity: 0.6;
    }
    
    
  }






