header{
    width: 100vw;
    height: 80px;
    position: fixed;
    background-color: #000000bd;
    z-index: 10000;
    top: 0;
    left: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.mainContentHeader{
    width: calc(100% - 8vw);
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    max-width: 1400px;
}

.headerOptions{
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 3.7vw;
}

.redirectionHeader{
    font-weight: bold;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.logo{
    height: 100%;
    cursor: pointer;
}

.logo img{
    height: 100%;
    max-width: 160px;
    object-fit: contain;
}

.headerRegister {
    background-color: transparent;
    border-radius: 24px;
    padding: 7px 15px;
    border: 2px solid #FFFF;
    font-weight: bold;
    color: #FFFF;
    cursor: pointer;
}

.headerRegister:hover {
    scale: 1.03;
}

.hamburgerIcon{
    display: none;
}

.loginIcon {
    display: none;
}

.mobileMenu {
    display: none;
    transition: all 0.3s ease-in-out;
    z-index: 10001;
    width: 84%;
    height: 100vh;
    background-color: #353C48;
}

.mobileMenuHeader {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.mobileMenuRegister {
    display: flex;
    align-items: center;
}

.mobileMenuRegister img {
    width: 45px;
}

.mobileMenuRegister span {
    font-weight: bold;
    color: white;
    margin-left: 10px;
    font-size: 20px;
}

.mobileMenuContent {
    width: 100%;
}

.mobileMenuItem {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    padding-left: 30px;
    color: #95A0B1;
    user-select: none;
    cursor: pointer;
}

.mobileMenuItem span {
    font-weight: bold;
    font-size: 18px;
    margin-left: 15px;
}

.mobileMenuItem.activeOption {
    width: 98%;
    color: white;
    background-color: #0C7FA8;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.mobileMenuItem img {
    width: 32px;
}

.mobileMenu.active {
    display: block;
}

@media (max-width: 1000px){
    .headerOptions{
        display: none;
    }

    .hamburgerIcon{
        display: block;
        width: 30px;
        cursor: pointer;
        user-select: none;
    }

    .loginIcon {
        display: block;
        width: 36px;
        cursor: pointer;
    }
}