* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'OCR A Extended';
    src: url('https://res.cloudinary.com/lionhowse/raw/upload/v1648658046/OCRAEXT_gjbbiy.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body {
    overflow-x: hidden;
    overflow-y: auto;
    font-family: Avenir, sans-serif;
}

.page_content {
    width: 100%;
    max-width: 1920px;
    display: flex;
}

header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: black;
    padding: 10px 22px;
    position: relative;
    z-index: 10;
}


header .mobile_menu {
    display: none;
}

header .page_content {
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'OCR A Extended';
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 15px;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
}

header .logo img {
    margin: 0 3px 0 0;
    max-width: 32px;
}

header .menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

header .menu_item {
    font-size: 13px;
    line-height: 14px;
    font-weight: normal;
    color: white;
    text-decoration: none;
    margin: 0 0 0 40px;
    cursor: pointer;
    letter-spacing: 0.5px;
    padding: 7px 0;
    border-top: 2px solid transparent;
    transition: all .5s;
}

header .menu_item:hover,
header .menu_item.active {
    border-color: white;
}

/*drop down menu*/


header .user_box {
    display: flex;
    justify-items: center;
    align-items: center;
}

.user_drop_down {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}

header .user_name {
    font-size: 15px;
    line-height: 15px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 15px 0 0px;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.user_drop_down .user_icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: black;
    font-size: 21px;
    line-height: 21px;
    font-weight: bold;
    background-color: #5855E5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user_drop_down .drop_down {
    width: 170px;
    padding: 20px;
    background-color: black;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
}

.user_drop_down.show .drop_down {
    display: flex;
}

.user_drop_down .menu_item {
    padding: 10px 0;
    margin: 0;
    border-bottom: 2px solid transparent;
    border-top: none;
}

footer {
    width: 100%;
    background-color: black;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer h1 {
    color: white;
    font-size: 22px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: flex-start;
}

footer h1 span {
    font-size: 16px;
    margin: 0 0 0 5px;
}

footer p {
    color: #919191;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
}

footer p span {
    font-size: 13px;
    margin: 0 10px 0 5px;
}

/*mobile menu style*/
.mobile_menu input {
    visibility: hidden;
}

.mobile_menu input + label {
    position: absolute;
    right: 22px;
    height: 20px;
    width: 25px;
    z-index: 10;
}

.mobile_menu input + label span {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 50%;
    margin-top: -1px;
    left: 0;
    display: block;
    background: white;
    transition: all 0.5s;
}

.mobile_menu input + label span:first-child {
    top: 3px;
}

.mobile_menu input + label span:last-child {
    top: 16px;
}

.mobile_menu label:hover {
    cursor: pointer;
}

.mobile_menu input:checked + label span {
    opacity: 0;
    top: 50%;
}

.mobile_menu input:checked + label span:first-child {
    opacity: 1;
    transform: rotate(405deg);
}

.mobile_menu input:checked + label span:last-child {
    opacity: 1;
    transform: rotate(-405deg);
}

.mobile_menu input ~ nav {
    width: 100vw;
    height: 0;
    z-index: 0;
    transition: 0.5s;
    overflow: hidden;
    transform: translate(0px, -100%);
    background-color: black;
}

.mobile_menu input ~ nav > ul {
    text-align: left;
    position: absolute;
    position: relative;
    width: 100%;
    transition: all .5s;
    padding: 30px 25px;
}

.mobile_menu input ~ nav > ul > li {
    padding: 10px 0;
}

.mobile_menu input:checked ~ nav {
    transform: translate(0px, 0px);
    position: relative;
    height: 100vh;
}

.mobile_menu input ~ nav > ul > li > a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-family: sans-serif;
    display: block;
    margin: 0;
    text-transform: capitalize;
    font-size: 15px;
}

@media all and (max-width:1024px) {
    header .menu_item {
        margin: 0 0 0 30px;
    }
}

@media all and (max-width:800px) {
    header .menu:first-of-type {
        display: none;
    }

    header .mobile_menu {
        display: block;
        position: absolute;
        right: 0px;
        top: 18px;
    }

    header {
        justify-content: flex-start;
        padding: 0;
    }

    header .user_box {
        display: none;
    }

    .page_content {
        padding: 10px 72px 10px 22px;
        background-color: black;
    }


}

@media all and (max-width:600px) {
    header .user_name {
        display: none;
    }

    footer {
        flex-direction: column;
        padding: 15px 0;
    }

    footer p {
        margin: 0px 0 0;
        font-size: 14px;
    }

    footer h1 {
        font-size: 20px;
    }

}
