.mobileElement{
    display:none !important;
}
header{
    position:relative;
    width:100%;
    height: 60px;
    overflow:hidden;
    background: black;
    color: white;
}
#headerLogo{
    position:relative;
    float:left;
    height:50px;
    margin-top: 4px;
    margin-left: 1%;
}
#headerOptions{
    position:relative;
    float:right;
    height: 59px;
    margin-right: 1%;
}
.headerOption{
    position: relative;
    float: left;
    /* font-weight: 800; */
    font-size: 14px;
    text-align: center;
    margin-right: 30px;
    height: 20px;
    margin-top: 25px;
    letter-spacing: 1px;
    cursor:pointer;
    top:0px;
    transition: top .2s ease-out;
    -moz-transition: top .2s ease-out;
    -webkit-transition: top .2s ease-out;
    -o-transition: top .2s ease-out;
}

.headerOption:hover{
    top:-3px;
}
.selectedOption .selectedLine{
    display:block;
}
.heading-slash {
    position: relative;
    margin-top: 50px;
    margin-left: 5%;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}
.heading-slash::before {
    content: '//';
    margin-right: 0.2rem;
    /* color: #000; */
    font-weight: normal;
}
.section {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
@media all and (max-width:768px){
    .mobileElement{
        display:block !important;
    }
    .desktopElement{
        display:none !important;
    }
    header{
        background:white !important;
        border-bottom: 0.5px solid black;
        height: 55px;
    }
    #headerLogo{
        filter: invert(0) !important;
        margin-top: 18px;
        /* bottom: 15px; */
        height: 25px;
        margin-left: 5%;
    }
    #headerMobileMenuIcon {
        /* top: 51.5px; */
        width: 24px;
        height: 17px;
        position: absolute;
        z-index: 6;
        /* left: 4%; */
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: margin-top 0.3s ease-in-out, left 0.3s ease-in-out;
        -moz-transition: margin-top 0.3s ease-in-out, left 0.3s ease-in-out;
        -o-transition: margin-top 0.3s ease-in-out, left 0.3s ease-in-out;
        transition: margin-top 0.3s ease-in-out, left 0.3s ease-in-out;
        cursor: pointer;
        bottom: 15px;
        right: 20px;
    }

    #headerMobileMenuIcon span {
        display: block;
        position: absolute;
        height: 2px;
        width: 21px;
        background: black;
        opacity: 1;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }
    #headerMobileMenuIcon span:nth-child(even) {
        left: 8%;
        border-radius: 0 9px 9px 0;
    }
    #headerMobileMenuIcon span:nth-child(odd) {
        left: 0;
        border-radius: 13px 0 0 13px;
    }

    #headerMobileMenuIcon span:nth-child(1),
    #headerMobileMenuIcon span:nth-child(2) {
        top: 0;
    }

    #headerMobileMenuIcon span:nth-child(3),
    #headerMobileMenuIcon span:nth-child(4) {
        top: 7px;
    }

    #headerMobileMenuIcon span:nth-child(5),
    #headerMobileMenuIcon span:nth-child(6) {
        top: 14px;
    }

    #headerMobileMenuIcon.open span:nth-child(1),
    #headerMobileMenuIcon.open span:nth-child(6) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    #headerMobileMenuIcon.open span:nth-child(2),
    #headerMobileMenuIcon.open span:nth-child(5) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    #headerMobileMenuIcon.open span:nth-child(1) {
        /* left: 4px; */
        top: 7px;
    }

    #headerMobileMenuIcon.open span:nth-child(2) {
        /* left: calc(10% - 7px); */
        top: 7px;
    }

    #headerMobileMenuIcon.open span:nth-child(3) {
        /* left: -50%; */
        opacity: 0;
    }

    #headerMobileMenuIcon.open span:nth-child(4) {
        left: 100%;
        opacity: 0;
    }

    #headerMobileMenuIcon.open span:nth-child(5) {
        /* left: 4px; */
        top: 6px;
    }

    #headerMobileMenuIcon.open span:nth-child(6) {
        /* left: calc(10% - 7px); */
        top: 6px;
    }
    div#mobileMenuDiv {
        position: fixed;
        top: 55px;
        width: 100vw;
        height: 100vh;
        background: black;
        z-index: 9999;
        left:-100%;
        transition: left 0.2s linear;
    }
    div#mobileMenuDiv.open {
        left: 0;
    }
    div#mobileMenuItemsContainer {
        position: relative;
        display: flex;
        width: 60%;
        margin: 0 auto;
        margin-top: 40px;
        height: auto;
        overflow: hidden;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    a.mobileMenuOption {
        position: relative;
        height: 48px;
        color: white;
        width: 100%;
        display: block;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 0.5px solid white;
        font-size: 14px;
    }
    a.mobileMenuOption.selectedOption {
        font-weight: 600;
    }
}