* {

}
body {
    margin: 0;
    padding: 0;
    font-family: "Roboto";
    background: #FBF1E3;
}
nav {
    height: 50px;
    width: 100%;
    background: #FF5E57;
}
.navContent {
    width: 100%;
    height: 50px;
    display: grid;
    grid-template-columns: 55px auto 55px;
    position: relative;
    z-index: 10;
    box-shadow: 0px -8px 0px 0px #FFA9BB inset, 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
}
.navOpenList, .navUser {
    width: 55px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: #FFF;
}
.navList {
    width: 100%;
    display: grid;
    grid-template-columns: auto 67px auto;
}
.navContentLogo {
    position: absolute;
    top: 2;
    left: calc(50% - 44.5px);
}
.navLogoBackground {
    width: 89px;
    height: 72px;
    filter: drop-shadow(0px 0px 10.199999809265137px rgba(0, 0, 0, 0.25));
}
.navLogoElement {
    width: 55px;
    height: 55px;
    position: absolute;
    left: 17px;
    top: 4px;
}
.navElements {
    position: fixed;
    z-index: 8;
    top: 50px;
    width: 100%;
    height: calc(100vh - 50px);
    background: #FF5E57;
}
.navButton, .navButton:link, .navButton:visited {
    display: block;
    height: 62px;
    width: calc(100%-20px);
    font-size: 16px;
    color: #FFF;
    text-decoration: none !important;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px 0 30px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}
.navButton:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}
.navButton:hover {
    background: rgba(255, 255, 255, 0.3);
}
.active {
    background: #FF3F34;
}
.active:hover {
    background: #E83930;
}
.navHidden {
    display: none !important;
}
.navContentLeft, .navContentRight {
    display: none;
}
.navLogin {
    display: none;
}
.button {
    padding: 15px 25px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.btn-primary {
    background: #DB4F47;
    color: #FFF;
}
.btn-primary:hover {
    background: #C63D35;
}
.btn-primary:active {
    background: #B32B23;
}
@media screen and (min-width: 401px) and (max-width: 1279px) {
    nav {
        height: 60px;
    }
    .navContent {
        height: 60px;
        grid-template-columns: 65px auto 65px;
    }
    .navOpenList, .navUser {
        width: 65px;
        height: 52px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 35px;
        color: #FFF;
    }
    .navContentLogo {
        left: calc(50% - 56px);
    }
    .navLogoBackground {
        width: 112px;
        height: 106px;
        filter: drop-shadow(0px 0px 10.199999809265137px rgba(0, 0, 0, 0.25));
    }
    .navLogoElement {
        width: 80px;
        height: 80px;
        position: absolute;
        left: 17px;
        top: 4px;
    }
}
@media screen and (min-width: 1280px) {
    nav {
        height: 70px;
    }
    .navLogin {
        height: 60px;

        display: flex;
        align-items: center;
        justify-content: center;
    }
    .navContent {
        height: 70px;
        grid-template-columns: 100%;
    }
    .navOpenList, .navUser {
        display: none;
    }
    .navContentLogo {
        left: calc(50% - 63px);
    }
    .navLogoBackground {
        width: 126px;
        height: 120px;
    }
    .navLogoElement {
        width: 93px;
        height: 93px;
    }
    .navContentLeft {
        display: flex;
        justify-content: flex-end;
    }
    .navContentRight {
        display: flex;
    }
    .navList {
        grid-template-columns: calc(50% - 67px) 134px auto 240px;
    }
    .navElements {
        display: none;
    }
}