/*=========================== Body ===========================*/
html, body {
    height: 100%;
}
body {
    background-color: white;
    color: black;
    font-family: Verdana;
    text-transform: uppercase;
    margin: 0%; 
    z-index: 100;
    transition: 1s;
}
/*=========================== Header ===========================*/
#header-section {
    background-color: white;
    box-shadow: 0px 0px 5px rgb(0, 0, 0);
    position: fixed;
    width: 100%;
    height: 12%;
    z-index: 40;
    transition: 1s;
}
.header-section-logo {
    position: relative;
    width: 5%;
    height: 90%;
    left: 1%;
    top: 0%;
}
.header-section-title {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    left: 2%;
    font-size: 25px;
    top: 10%;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
}
.header-section-title span:nth-child(1) {
    color: rgb(255, 0, 34);
    font-size: 25px;
    font-weight: 800;
}
.header-section-title span:nth-child(2) {
    color: rgba(255, 255, 0, 0.76);
}
.header-section-title span:nth-child(3) {
    color: rgba(0, 209, 98, 0.781);
}
.header-section-sidebarMenuIcon:hover {
    background-color:rgb(0, 107, 80);
    border-radius: 5px;
    transition: 1s;
    cursor: pointer;
}
/*=========================== Sidebar Menu ===========================*/
#sidebar-menu {
    text-align: center;
    position: fixed;
    width: 25%;
    height: 100%;
    right: -35%;
    z-index: 100;
    background-color: white;
    box-shadow: 0px 0px 5px rgb(0, 0, 0);
}
.sidebar-menu-title {
    position: absolute;
    top: 3%;
    left: 8%;
    padding: 5%;
    font-size: 20px;
    border-radius: 20px;
    color: rgb(0, 132, 255);
    font-weight: 700;
}
.sidebar-menu-routes {
    top: 15%;
    position: relative;
    list-style-type: none;
    padding: 0%;
}
.sidebar-menu-routes li {
    position: relative;
    left: 0%;
    right: 0%;
    height: 60px;
    display: inline-block;
    width: 100%;
    margin-top: 1%;
}
.sidebar-menu-routes li:hover {
    background-color: rgba(0, 75, 88, 0.801);
    transition: 1s;
}
.sidebar-menu-routes li a {
    font-size: 20px;
    text-decoration: none;
    color: black;
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    padding: 5%;
}
.sidebar-menu-routes li a:hover {
    color: white;
}
.sidebar-menu-routes li a img {
    position: relative;
    bottom: 30%;
    float: right;
}
#sidebar-menu .main-button {
    background-color: rgba(255, 255, 255, 0.74);
    box-shadow: 0px 0px 10px black;
    border-radius: 45px;
    position: absolute;
    top: 91%;
    bottom: 5%;
    left: 42%;
    right: 42%;
}
#sidebar-menu .main-button .moving-button {
    background-color: rgba(255, 255, 0, 0.849);
    box-shadow: 0px 0px 10px black;
    border-radius: 100%;
    position: absolute;
    top: 10%;
    bottom: 10%;
    cursor: pointer;
}

/*=========================== Footer ===========================*/
#footer-section {
    box-shadow: 0px 0px 5px rgb(0, 0, 0);
    background-color: white;
    position: relative;
    bottom: 0%;
    top: 40%;
    height: 15%;
    text-align: center;
    transition: 1s;
}
.footer-section-content {
    position: relative;
    top: 20%;
}