﻿/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}*/


body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

.logo-container {
    background: #333;
    padding: 10px;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    margin-left: 20px;
}

header {
    background-color: #01567d;
    color: #fff;
    padding: 3em 0;
    text-align: center;
    /* border-bottom: 1px solid #ccc; */
    /*    position:fixed;*/
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: -30px;
}

    nav ul li {
        display: inline;
        margin: 0 1em;
        display: inline-block;
    }

nav a {
    color: #fff;
    text-decoration: none;
}
/*
li a{
    margin-top: -px;
}

main {
    padding: 20px;
    
}

section {
    margin-bottom: 20px;
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} */

footer {
    text-align: center;
    padding: 1em 0;
    background-color: #01567d;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* body{
    background: #E3F2FD;
} */
/* .select-menu{
    width: 380px;
    margin: 140px auto;
}
.select-menu .select-btn{
    display: flex;
    height: 55px;
    background: #fff;
    padding: 20px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 8px;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.select-btn i{
    font-size: 25px;
    transition: 0.3s;
}
.select-menu.active .select-btn i{
    transform: rotate(-180deg);
}
.select-menu .options{
    position: relative;
    padding: 20px;
    margin-top: 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
    display: none;
}
.select-menu.active .options{
    display: block;
}

.options .option{
    display: flex;
    height: 55px;
    cursor: pointer;
    padding: 0 16px;
    border-radius: 8px;
    align-items: center;
    background: #fff;
}

.options .option:hover{
    background: #F2F2F2;
}

.option i{
    font-size: 25px;
    margin-right: 12px;
}
 .option .option-text{
    font-size: 18px;
    color: #333;
}  */


