@import url('https://fonts.googleapis.com/css2?family=Suez+One&display=swap');

*:focus {
    outline: 0!important;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: #f3f3f5;
}

select {
    border-radius: 5px;
    background-color: #f3f3f5;
}

header {
    background-color: #22242A;
    /*display: inline-block;*/
    width: 100%;
    height: 9vh;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

header .lang {
    margin-left: auto;
}

header a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: white;
    padding: 0 25px;
    height: 100%;
    box-sizing: border-box;
}

header a:hover {
    background-color: #f3f3f5;
    color: black;
}

.active_url {
    background-color: #f3f3f5;
    color: black;
}

header .logo  {
    background-color: #f3f3f5;
    color: #e7a622;
    display: inline-block;
    padding: 20px;
    margin-right: 10px;
    height: 100%;
}

header .logo_f_p {
    color: black;
    font-size: 30px;
    font-weight: 800;
    font-family: 'Suez One', serif;
}

header .stat_list {
    background-color: black;
    position: absolute;
    top: 9vh;
}

header .stat_list li {
    list-style-type: none;
    color: white;
    padding: 15px 30px;
}

.logout_btn {
    padding: 5px;
    background-color: #fab834;
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 600;
    float: right;
}

section {
    width: 100%;
}

.up_btn_container {
    margin: 20px 0;
    text-align: right;
}

.up_btn {
    background-color: #00bd95;
    text-decoration: none;
    color: white;
    padding: 15px;
    font-weight: bold;
    display: inline-block;
    border-radius: 20px;
    margin-right: 100px;
    border: none;
    cursor: pointer;
}

.up_btn:hover {
    background-color: #00916a;
}

.sub_nav {
    background-color: #aeaeae;
    margin-bottom: 20px;
    /*padding: 10px;*/
}
.sub_nav a {
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
    padding: 10px;
    color: white;
    background-color: black;
}
.sub_nav a:hover {
    background-color: white;
    color: black;
}
.sub_nav .active_sub_url {
    background-color: white;
    color: black;
}

footer {
    text-align: center;
    margin: 4em 0;
    font-size: 12px;
}
.div_footer {
    padding-top: 3em;
    width: 60%;
    margin: auto;
}
.footer_images {
    display: flex;
    justify-content: space-between;
    height: 15vh;
}
.footer_images img {
    width: 15%;
    object-fit: contain;
}
.eu_desc {
    text-align: center;
    padding: 1em 0;
}
