*{ 
    box-sizing: border-box; 
    margin: 0px; 
}
body{ 
    font-family: "Poppins", "Trebuchet MS", sans-serif; 
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
h1, h2, h3{
    font-weight: 600;
}

#top{ 
    background-color: white; 
    width: 100%; 
    height: 65px;
    display: flex; 
    align-items: center;
    border-bottom: #dfe2ec 1px solid; 
    box-shadow: 0 6px 14px -12px #04112366;
    position: sticky; 
    top: 0px;
    z-index: 2;
}
#top #logo_target{ 
    height: 30px; 
    margin: auto 15px;
    z-index: 3;
}

#top #btn_menu {
    cursor: pointer;
    height: 23px;
    margin-left: 15px;
    transition: 0.4s;
    z-index: 1000;
    user-select: none;
    display: none;
}
#top #btn_menu  > div {
    width: 23px; height: 3px;
    background-color: #05162e;
    margin: 2px 0px 4px;
    transition: 0.4s;
    border-radius: 2px;
}
#top #btn_menu.opened {
    transform: rotate(135deg);
} 
#top #btn_menu.opened div:nth-child(1){
    transform: rotate(90deg) translate(7px, 0px);;
}
#top #btn_menu.opened div:nth-child(3){
    opacity: 0;
}
    


#top #nav_menu, #nav_menu_end{
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    display: flex;
}
#top #nav_menu a, #nav_menu_end a{
    text-decoration: none;
    color: #05162e; 
    white-space: nowrap;
}


#top #nav_menu{
    column-gap: 25px;
    margin-left: 25px;
}

#top  #nav_menu_end{
    display: flex; 
    margin: 10px 15px 0px auto;
}

#top #cnt_menu{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: 0 0px 15px -5px #041123;
    padding-top: 85px;
    padding-bottom: 15px;
    overflow: hidden;
    transition: 0.5s;
    background-color: #185e9d33;
    backdrop-filter: blur(10px);
    position: absolute;
    top: 0px;
    right: 0px;
    width: 0px;
    visibility: hidden;
    z-index: 2;
}
#top #cnt_menu a{
    margin-bottom: 25px;
    margin-left: 20px;
    font-size: 15px;
}
    



@media (max-width: 770px) {
    #top #nav_menu{
        display: none;
    }
    #top #nav_menu_end > a:nth-child(2){
        display: none;
    }
    #top #btn_menu{
        display: block;
    }
    #top #cnt_menu.opened{
        visibility: visible;
        width: 100%; 
    }  
}


#div_bottom{
    padding: 20px 30px;
    background-color: #0b2b48;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-top: auto;
 /*    position: absolute;
    bottom: 48px;
    width: 100%; */
}
#div_bottom div {
    display: flex;
    flex-direction: column;
}
#div_bottom div a{
    font-family: "Poppins", "Trebuchet MS", sans-serif;
    color: white;
    margin: 2px 0px 5px;
    text-decoration: none;
    font-size: 14px;
    /* font-weight: bold; */
}

#div_bottom img{
    width: 100px;
}


#div_footer{
    background-color: #0b2b48;
    padding: 0px 30px;
 /*    position: absolute;
    bottom: 0px; */
    width: 100%;
}
#div_footer p{
    opacity: 0.75;
    border-top: 1px solid white;
    padding: 15px;
    text-align: center;
    font-size: 12px;
    color: white; 
}
    
