*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body
{
    font-family: "Alegreya Sans";
}
.account
{
    display: none;
}
html
{
    scroll-behavior: smooth;
}
.defultNav
{
    transition: .6s;
    background-color: transparent;
}
.defultNav .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--bs-white);
}

.whiteNav
{
    transition: .6s;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.whiteNav .nav-link,.defultNav .nav-link
{
    color: #949494;
}
.navbar .nav-link:hover
{
    color: #e2785d;
}
.whiteNav .defultNav .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--bs-black);
}
.nav-item
{
    padding: 0 10px;
    height: 80px;
    color: white;
}
.defultNav .navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=UTF8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="%23ffffff" class="bi bi-list" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M2.5 12.5a.5.5 0 010-1h11a.5.5 0 010 1h-11zm0-5a.5.5 0 010-1h11a.5.5 0 010 1h-11zm0-5a.5.5 0 010-1h11a.5.5.5 0 010 1h-11z" /></svg>');
}
.loginAndRegister
{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 10px;
}
.linelogin
{
    width: 10px;
    height: 100%;
    color:#949494;
}
.navbar
{
    width: 100vw;
    height: 80px;
    position: fixed;
    z-index: 999;
    top: 0;
}
.navbar img
{
    width: 150px;
    z-index: 5;
}
.container-fluid
{
    width: 100vw;
    height: 80px;
    display: flex;
    top: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    z-index: 999;
    font-family: "Alegreya";

}

.navbar a
{
    height: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0 30px;
    font-size: 20px;
    color: white;
}
.up-icon
{
    position: fixed;
    width: 100px;
    bottom: 30px;
    right: 10px;
    cursor: pointer;
    display: none;
    transition: .5s;
}
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    right:  0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}
.navbar-toggler {
    border: none;
    background-color: transparent;
    font-size: 30px;
    cursor: pointer;
}



.openSidebar {
    width: 250px;
}

body {
    transition: margin-left .5s;
}


@media screen and (max-width: 800px)
{
    .container-fluid{
        padding: 0 10px;
    }
} 