@media (max-width: 713px) {
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0e0e0e;
}

#header_logo {
    width: 100%;
    max-width: 20rem;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding-left: 2rem;
}

.off_screen_menu {
    background-color: rgb(22, 22, 22);
    height: 100vh;
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0;
    right: -450px;
    display: flex;
    flex-direction: column;
    padding-top: 15rem;
    align-items: center;
    text-align: center;
    font-size: 2rem;
    transition: .3s ease;
}

.off_screen_menu.active {
    right: 0;
}

.off_screen_menu ul {
    padding-right: 2rem;
    list-style: none;
}

.off_screen_menu ul li {
    padding-bottom: 2rem;
    color: #707df4;
}

.off_screen_menu ul li a {
    text-decoration: none;
    color: #707df4
}

.off_screen_menu ul li a:hover {
    color: #c8c019;
}

#ham_menu_nav {
    /* padding: 1rem; */
    padding-right: 3rem;
    display: flex;
}

#ham_menu_nav:hover {
    cursor: pointer;
}

#ham_menu {
    height: 50px;
    width: 50px;
    margin-left: auto;
    position: relative;
}

#ham_menu span {
    height: 5px;
    width: 100%;
    /* background-color: #018dff; */
    background-color: #2c64cd;
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}

#ham_menu span:nth-child(1) {
    top: 25%;
}

#ham_menu span:nth-child(3) {
    top: 75%;
}

#ham_menu.active span:nth-child(1) {
    top: 60%;
    transform: translate(-50%, -50%) rotate(45deg);
}

#ham_menu.active span:nth-child(2) {
    opacity: 0;
}

#ham_menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, 50%) rotate(-45deg);
}

#nav_menu {
    display: none;
}

.nav_item {
    display: none;
}
}


@media (min-width: 714px) and (max-width: 863px) {
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0e0e0e;
}

#header_logo {
    width: 100%;
    max-width: 20rem;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding-left: 2rem;
}

#nav_menu {
    padding-right: 1rem;
}

.nav_item {
    text-decoration: none;
    height: auto;
    padding-right: 2rem;
    color: #707df4;
    font-size: 120%;
}

.nav_item:hover {
    color: #c8c019;
}

.off_screen_menu {
    display: none;
}

#ham_menu_nav {
    display: none;
}
}

@media (min-width: 864px) and (max-width: 1100px) {
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0e0e0e;
}

#header_logo {
    width: 100%;
    max-width: 20rem;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding-left: 2rem;
}

#nav_menu {
    padding-right: 0;
}

.nav_item {
    text-decoration: none;
    height: auto;
    padding-right: 3rem;
    color: #707df4;
    font-size: 150%;
}

.nav_item:hover {
    color: #c8c019;
}

.off_screen_menu {
    display: none;
}

#ham_menu_nav {
    display: none;
}
}

@media (min-width: 1101px) {
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0e0e0e
}

#header_logo {
    width: 100%;
    max-width: 20rem;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding-left: 7rem;
}

#nav_menu {
    padding-right: 5rem;
}

.nav_item {
    text-decoration: none;
    height: auto;
    padding-right: 5rem;
    color: #707df4;
    font-size: 150%;
}

.nav_item:hover {
    color: #c8c019;
}

.off_screen_menu {
    display: none;
}

#ham_menu_nav {
    display: none;
}
}