body {
    --nav: #323232;
    --navH: #fff;
}

.frameA::before {
    content: '';
    width: calc(100vw - 80px);
    height: 1px;
    background: var(--nav);
    position: fixed;
    top: 30px;
    left: 40px;
    z-index: 12;
}

.frameA::after {
    content: '';
    height: calc(100vh - 80px);
    width: 1px;
    background: var(--nav);
    position: fixed;
    top: 40px;
    left: 30px;
    z-index: 12;
}

.frameB::before {
    content: '';
    width: calc(100vw - 82px);
    height: 1px;
    background: var(--nav);
    position: fixed;
    bottom: 30px;
    left: 40px;
    z-index: 10;
}

.frameB::after {
    content: '';
    height: calc(100vh - 80px);
    width: 1px;
    background: var(--nav);
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 12;
}

.frameC::before {
    content: '';
    width: calc(100vw - 68px);
    height: 1px;
    background: var(--nav);
    position: fixed;
    bottom: 80px;
    left: 30px;
    z-index: 12;
}

.frameC.is-inview::before {
    opacity: 0;
}

.frameC::after {
    content: '';
    height: calc(100vh - 60px);
    width: 1px;
    background: var(--nav);
    position: fixed;
    top: 30px;
    right: 90px;
    z-index: 12;
}

.frame01 {
    fill: var(--nav);
    width: 10px;
    height: auto;
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 12;
}

.frame02 {
    fill: var(--nav);
    width: 10px;
    height: auto;
    transform: rotate(90deg);
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 12;
}

.frame03 {
    fill: var(--nav);
    width: 10px;
    height: auto;
    transform: rotate(180deg);
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10;
}

.frame04 {
    fill: var(--nav);
    width: 10px;
    height: auto;
    transform: rotate(-90deg);
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10;
}



.navBar {
    width: 60px;
    height: calc(100vh - 60px);
    border-right: 1px solid var(--nav);
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 12;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.status {
    width: calc(100vw - 68px);
    height: 50px;
    border-bottom: 1px solid var(--nav);
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 11;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    backdrop-filter: blur(10px);
    border-radius: 10px 10px 0 0;
}

.newsIcon {
    width: 60px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsIcon i {
    font-size: 24px;
}

.hamberger {
    width: 60px;
    height: 50px;
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 13;
    cursor: pointer;
}

.hamberger::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--navH);
    position: fixed;
    top: 52px;
    left: 45px;
    z-index: 13;
}

.hamberger::after {
    content: '';
    width: 25px;
    height: 2px;
    background: var(--navH);
    position: fixed;
    top: 57px;
    left: 45px;
    z-index: 13;
    text-align: center;
    transition: .3s;
}

.hamberger:hover::after,
.hamberger:hover::before {
    background: var(--G01);
    transition: .3s;
}

.menuLogo {
    display: block;
    width: 20px;
    height: auto;

    fill: var(--navH);
}

marquee {
    height: 15px;
    width: calc(100% - 128px);

    overflow: hidden;
    position: relative;

    font-size: 12px;
    line-height: 1em;
    color: var(--navH);
}

nav {
    width: 350px;
    height: calc(100vh - 60px);
    border-radius: 10px;
    position: fixed;
    top: 30px;
    left: -350px;
    z-index: 15;

    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: row;

    background: var(--Glass);
    backdrop-filter: blur(5px);
    border: 1px solid var(--darkGray);
    color: var(--Text);
    transition: .5s;
}

nav.active {
    left: 30px;
    transition: .5s;
}

.navContent {
    width: calc(100% - 60px);
    height: 100%;
}

.navOption {
    width: 100%;
    height: calc(100% - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.navSocial {
    width: 100%;
    height: 100px;
    border-top: 1px solid var(--darkGray);
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    color: var(--Text);
    text-transform: uppercase;
    font-size: 10px;
    text-align: center;
}

.navSocial span {
    width: 100%;
    display: block;

}

.navSocial a {
    color: var(--Text);
    font-size: 26px;
    margin: 0 0 0 10px;
    transition: .3s;
}

.navControl {
    width: 60px;
    height: 100%;
    border-left: 1px solid var(--darkGray);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.navControl .menuLogo {
    fill: var(--Text);
}

.navClose {
    width: 60px;
    height: 50px;
    border-bottom: 1px solid var(--darkGray);
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 30px;
    cursor: pointer;
    transition: .3s;
}

.navClose:hover {
    opacity: .5;
    transition: .3s;

}

.navOption li {
    list-style: none;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--lightGray);
}

.navOption a {
    text-decoration: none;
    color: var(--Text);
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5em;
}

.navOption li .secNav {
    margin-left: 10px;
}

.navOption li .secNav li a,
.navOption li .secNav li {
    font-weight: normal;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--lightGray);
    line-height: 2em;
}

.subNav {
    font-size: 16px !important;
    display: block;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--lightGray) !important;
}


/*DropDownList A*/
.dropDownA {
    display: block;
    width: 140px;
    height: 30px;
    padding: 0 15px 0 15px;
    color: var(--White);
    font-size: 12px;
    font-family: var(--Sans);
    text-transform: uppercase;
    border: 1px solid var(--darkGray);
    border-radius: 20px 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    background-color: transparent;
    background-image: url(../img/chevron-down-solid.svg);
    background-position: 90% center;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    margin-top: 50px;
}

.dropDownA:focus {
    box-shadow: none;
    outline: none;
}


/*////RWD////*/
@media screen and (max-width:1660px) {}

@media screen and (max-width:1440px) {}

@media screen and (max-width:1366px) {}

@media screen and (max-width:1280px) {}

@media screen and (max-width:1024px) {

    .status {
        width: calc(100vw - 52px);
    }

    .frameC::before {
        width: calc(100vw - 60px);
    }

    .frameA::before,
    .frameB::before {
        width: calc(100vw - 70px);
    }

    .frameA::after,
    .frameB::after {
        height: calc(100vh - 70px);
    }

    .frameC::before {
        width: calc(100vw - 53px);
    }

    .frameC::after {
        height: calc(100vh - 53px);
    }
}

@media (orientation:landscape) and (max-height: 768px) {}

@media (orientation:portrait) and (max-height:1180px) {
    .status {
        width: calc(100vw - 68px);
    }

    .frameC::before {
        width: calc(100vw - 68px);
    }

    .frameC::after {
        height: calc(100vh - 60px);
    }

    .frameA::before,
    .frameB::before {
        width: calc(100vw - 85px);
    }

    .frameA::after,
    .frameB::after {
        height: calc(100vh - 78px);
    }
}

@media (orientation:portrait) and (max-height:1024px) {

    .frameA::before,
    .frameB::before {
        width: calc(100vw - 70px);
    }

    .frameA::after,
    .frameB::after {
        height: calc(100vh - 70px);
    }

    .status {
        width: calc(100vw - 53px);
    }

    .frameC::before {
        width: calc(100vw - 53px);
    }

    .frameC::after {
        height: calc(100vh - 53px);
    }

    .navBar {
        height: calc(100vh - 50px);
    }
}

@media screen and (max-width:480px) {
    .frame {
        display: none;
    }

    .frameC::before,
    .frameC::after {
        display: none;
    }

    .navBar {
        display: none;
    }

    .newsIcon {
        opacity: 0;
    }

    .status {
        width: 100vw;
        height: 50px;
        border-radius: 0 0 0 0;
        border-bottom: 1px solid var(--nav);
        background: var(--Black);
        position: fixed;
        top: 0px;
        left: 0px;
    }

    .hamberger {
        top: 0px;
        left: 0px;
        border-right: 1px solid var(--nav);
    }

    .hamberger::before {
        top: 22px;
        left: 15px;
    }

    .hamberger::after {
        top: 27px;
        left: 15px;
    }



    nav {
        width: 100vw;
        height: 100vh;
        border-radius: 0px;
        top: 0;
        left: -100vw;
    }

    nav.active {
        left: 0;
    }

    .frameA::before,
    .frameB::before,
    .frameA::after,
    .frameB::after,
    .frame01,
    .frame02,
    .frame03,
    .frame04 {
        display: none;
    }

    .navOption li,
    .navOption a {
        font-size: 24px;
    }

    .navSocial span {
        margin-right: 20px;
    }
}

/*Iphone XR 414*896 */
@media (orientation: portrait) and (max-height: 896px) {}

/*Iphone 12Pro 390*844 */
@media (orientation: portrait) and (max-height: 844px) {}

/*Iphone 10 375*812 */
@media (orientation: portrait) and (max-height: 812px) {}

/*Iphone 8Plus 414*736 */
@media (orientation: portrait) and (max-height: 736px) {}

/*Iphone 8 375*667 */
@media (orientation: portrait) and (max-height: 667px) {}

@media screen and (max-width: 360px) {}

@media screen and (max-width: 320px) {

    .navOption li,
    .navOption a {
        font-size: 24px;
    }

    .navSocial {
        font-size: 10px;
    }

    .navSocial a {
        font-size: 20px;
        margin: 0 0 0 5px;
    }

    .navSocial span {
        margin-right: 15px;
    }

}