* {
    box-sizing: border-box;
}

body {
    margin: 0px;
    font-family: 'segoe ui';
}

.nav {
    height: 75px;
    width: 100%;
    background-color: #fff;
    color: #000;
    position: relative;
    display: none !important;
    justify-content: space-between;
    align-items: center;
    padding: 0 5% !important;
}

.nav>.nav-header {
    display: inline;
}

.nav>.nav-header>.nav-title {
    display: inline-block;
    font-size: 22px;
    color: #000;
    /* padding: 10px 10px 10px 10px; */
    font-family: 'Inconsolata';
    font-style: normal;
    font-weight: 900;
    font-size: 1.5em;
    cursor: default;
}

.nav>.nav-btn {
    display: none;
}

.nav>.nav-links {
    display: inline;
    float: right;
    font-size: 18px;
    z-index: 1;
    cursor: pointer;
}

.nav>.nav-links>a {
    display: inline-block;
    padding: 13px 10px 13px 10px;
    text-decoration: none;
    color: #efefef;
}

.nav>.nav-links>a:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.nav>#nav-check {
    display: none;
}

/* @media (max-width:1000px) { */
.nav>.nav-btn {
    display: flex;
    /* position: absolute;
        right: 0px;
        top: 0px; */
}

.nav>.nav-btn>label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
    margin: auto;
    cursor: pointer;
}

.nav>.nav-btn>label:hover,
.nav #nav-check:checked~.nav-btn>label {
    background-color: rgba(0, 0, 0, 0.3);
}

.nav>.nav-btn>label>span {
    display: block;
    width: 25px;
    height: 8px;
    border-top: 2px solid #000;
}

.nav>.nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: #333;
    height: 0px;
    /* transition: all 0.3s ease-in; */
    overflow-y: hidden;
    top: 75px;
    left: 0px;
}

.nav>.nav-links>a {
    display: block;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.nav>#nav-check:not(:checked)~.nav-links {
    height: 0px;
}

.nav>#nav-check:checked~.nav-links {
    /* height: calc(100vh - 50px); */
    height: max-content;
    overflow-y: auto;
    z-index: 2;
}

.activePage {
    background: #6e4a9b;
}

@media (max-width:1000px) {
    .nav {
        display: flex !important;
    }

    .gotoMobileSignInPageIcon ion-icon {
        font-size: 1.3em;
        cursor: pointer;
    }

    .gotoMobileSignInPageIcon ion-icon:hover {
        scale: 1.1;
    }

}