:root {
    --bg-colorW: #FFFFFF;
    --bg-colorD: #000000;
    --bg-colorDGray: #1e1e1e;
    --bg-colorDGray2: #EBE7E7FF;
    --text-colorW1: #FFFFFF;
    --text-colorW2: #A8A8A8;
    --text-colorW3: #989898;
    --text-colorWG1: #FDFFF1;
    --text-colorWG2: #C3C5B9;
    --text-colorD: #333333;
    --text-colorGra1: #737373;
    --text-colorGra2: #969595;
}
html {
    scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, p, body {
    margin: 0;
    color: var(--text-colorD)
}
h1, h2, h3, h4, #topMid {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}
h4, h5, p, body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}
h1 {
    font-size: clamp(2.4em, 7vw, 3rem);
}
h2 {
    font-size: clamp(1.3rem, 7vw, 2.7rem);
}
h3 {
    font-size: clamp(1.1rem, 7vw, 2rem);
}
h4 {
    font-size: clamp(1.1rem, 7vw, 1.5rem);
}
h5 {
    font-size: clamp(1.2rem, 7vw, 1.3rem);
}
p {
    line-height: 1.75;
    font-size: 16px;
}
body {
    font-family: "Montserrat", sans-serif;
    padding: 0;
    background-color: #000000;
}
#topBrMenu{
    display: none;
}
/*     NAV     */
a, a:visited {
    color: #FFFFFF;
    text-decoration: none;
}
a:focus, a:active, a:focus a:valid, a:hover {
    font-style: normal;
    color: #FFFFFF;
    text-decoration: underline;
}
#TopBox {
    padding-top: 8px;
}
#NavBox {
    width: 100%;
    height: 50px;
    background-color: hsla(0, 0%, 0%, 0.65);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(134,134,139,.4);
}
#credits{
    color: #FFFFFF;
    font-weight: bold;
}
#NavBar {
    width: 94%;
    margin: 0 auto;
    max-width: 1300px;
    border-bottom: 0;
    background-color: transparent;
    padding-top: 0;
    position: relative;
}
.topLeftLogo {
    width: 34px;
    padding-top: 3px;
}
.topLeft {
    white-space: nowrap;
    padding: 5px 0 4px 0;
    margin-right: 24px;
}
#topMid {
    position: absolute;
    left: 50%;
    top: 12px;
    height: 25px;
    padding-top: 12px;
    font-size: 1.3rem;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.topMid {
    padding-top: 14px;
    text-align: left;
}
.topRight {
    text-align: right;
    right: 3%;
    width: 200px;
    padding-right: 20px;
    padding-top: .70rem;
}
#topMenu {
    right: 0;
    top: 5px;
    position: absolute;
    width: 20px;
    padding-left: 0px;
}
#navTop {
    flex-direction: column;
    justify-content: center;
    display: flex;
    opacity: .98;
    height: calc(100vh - 72px);
    padding-top: 15px;
    padding-bottom: 10px;
    max-width: 400px;
    margin-top: 0;
    margin-left: auto;
    margin-right: 0;
    background-color: rgba(0, 0, 0, 0.97);
    -webkit-animation-delay: .05s;
    animation-delay: .07s;
    animation: fadeNav .5s;
}
@keyframes fadeNav {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}
#navTop ul li {
    padding: 15px 15px;
    text-align: center;
}
#navTop ul li a{
    font-size: 21px;
    font-weight: 500;
}
#navTop ul:hover a {
    opacity: 0.5;
}
#navTop ul a {
    -webkit-transform: translateZ(0);
    transition: opacity 0.3s ease-in-out;
}
#navTop ul a:hover {
    opacity: 1;
}
.bar1, .bar2, .bar3 {
    background-color: var(--bg-colorW);
    width: 21px;
    margin: 8px 0;
    transition: 0.4s;
}
.Btns {
    color: #dedede;
}
.BtnsLog {
    color: var(--text-colorW1);
}
.Btns:hover {
    color: #ffffff;
    font-style: normal;
}
.BtnLogIn {
    background-color: #ffffff;
    padding: .3rem 1rem;
    border: 1px solid #252525;
    color: #252525;
    margin-right: 1rem;
}
.BtnSignUp {
    background-color: #0c0c0c;
    border: 1px solid #252525;
    padding: .3rem 1rem;
    color: #FFFFFF;
}
.BtnSignUp:hover, .BtnLogIn:hover {
    color: #252525;
    font-style: normal;
}
.BtnSignUp:hover {
    color: #FFFFFF;
}
#sub_nav2{
    width: 100%;
    height: 54px;
    margin-top: -50px;
}
#bannerBkg {
    width: 100%;
}
.bnrWrap{
    position: absolute;
    top: 40px;
    width: 100%;
}
.foot_wrap a{
    text-decoration: none;
}
footer {
    background: #000000;
    border-top: 1px #252525;
    z-index: 3;
    position: relative;
}
.bgColorW {
    background-color: var(--bg-colorW);
}
.bgColorGray {
    background-color: var(--bg-colorDGray);
}
.bgColorGray2 {
    background-color: var(--bg-colorDGray2);
}
.bgColorD {
    background-color: var(--bg-colorD);
}
.txColorW1 {
    color: var(--text-colorW1);
}
.txColorW2 {
    color: var(--text-colorW2);
}
.txColorW3 {
    color: var(--text-colorW3);
}
.txColorWG1 {
    color: var(--text-colorWG1);
}
.txColorWG2 {
    color: var(--text-colorWG2);
}
.txColorBlue {
    color: var(--text-colorBlue);
}
.txColorD {
    color: var(--text-colorD);
}
.txColorGray1 {
    color: var(--text-colorGra1);
}
.txColorGray2 {
    color: var(--text-colorGra2);
}
.txBold{
    font-weight: 500;
}
.txBoldX{
    font-weight: 700;
}
.mt1-5rem {
    margin-top: 1.5rem;
}
.mt2rem {
    margin-top: 2rem;
}
.mb1rem{
    margin-bottom: .5rem;
}
.mb5rem {
    margin-bottom: 5rem;
}
.mt1rem{
    margin-top: .5rem;
}
.mb2rem{
    margin-bottom: 2rem;
}
.mt3rem {
    margin-top: 3rem;
}
.mb3rem{
    margin-bottom: 3rem;
}
.mtb5rem {
    margin-top: 5rem;
    margin-bottom: 5rem;
}
.mtb7rem {
    margin-top: 7rem;
    margin-bottom: 7rem;
}
.padAll1rem{
    padding: 1rem;
}
.pb2rem{
    padding-bottom: 1.5rem;
}
.pb3rem{
    padding-bottom: 3rem;
}
.pt1rem {
    padding-top: 1rem;
}
.pb1rem {
    padding-bottom: 1rem;
}
.pt2rem {
    padding-top: 2rem;
}
.pt3rem{
    padding-top: 3rem;
}
.ptb3rem{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.pt3-5rem {
    padding-top: 3.5rem;
}
.pb5rem{
    padding-bottom: 3rem;
}
.ptb2rem{
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.ptb3_5rem{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}
.pt5rem {
    padding-top: 5rem;
}
.pt7rem {
    padding-top: 7rem;
}
.ptbMPayment7rem {
    padding-top: 2.5rem;
}
.posAbsolute {
    position: absolute;
}
.posRelative {
    position: relative;
}
.posAbsoluteCenter{
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.z1 {
    z-index: 1;
}
.z2 {
    z-index: 2;
}
.boxSizing {
    box-sizing: border-box;
}
.displayDesktop {
    display: none;
}
.phone_fw {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.justifyContentLeft{
    justify-content: left;
}
.phone_vf{
    flex-direction: column;
    justify-content: center;
    display: flex;
}
.textCenter {
    text-align: center;
}
.btn1,btn2 {
    color: #ffffff;
    background-color: transparent;
    padding: 11px 35px;
    border: none;
    border-radius: 0.6875rem;
    cursor: pointer;
    transition-duration: .3s;
    box-sizing: border-box;
}
.hidePhone{
    display: none;
}
/*     HomeVideo     */
#T2_1_VideoWrap {
    margin-top: 0;
    width: 100%;
    height: 90%;
    position: relative;
    overflow: hidden;
    opacity: 80;
}
#T2_1_Video{
    width: 100%;
    height: 100%;
}
#T2VideoBox{
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
    height: 56.25vw;
    width: 100vw;
}
#T2VideoPicBox{
    overflow-x: hidden;
    overflow-y: hidden;
    height: 90vw;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
}
#T2VideoPicBox img{
    height: 100%;
}
.topVideoFade{
    margin-top: -150px;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .4), #000000);
    width: 100%;
    height: 150px;
}
.content_wrap,.smallContentWrap {
    width: 94%;
    margin: 0 auto;
    max-width: 1722px;
}
.smallContentWrap{
    max-width: 1050px;
}
.roundEdge{
    border-radius: 0.6875rem;
}
.dividerLine{
    height: 1px;
    background: #555555;
    width: 100%;
}
.whiteLine{
    width: 100%;
    height: 1px;
    background-color: var(--bg-colorW);
}
.blackLine{
    width: 100%;
    height: 1px;
    background-color: var(--bg-colorD);
}
.phonePadUnset{
    padding: unset;
}
.hideBox{
    display: none;
}
.showBox{
    display: block;
}
#brTopVideoWrap{
    margin-top: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-height: 97vh;
}
#brTopPicBox{
    width: 100%;
    height: 87vh;
    position: relative;
    overflow: hidden;
}
.infoError{
    color: #b22020;
}
.Item_wrap {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 30px;
}
.verticalLine{
    width: 1px;
    background-color: rgba(160, 160, 160, 0.55);
}
.horizontalLine{
    width: 100%;
    background-color: rgba(255, 255, 255, 0.55);
    height: 1px;
}
@media only screen and (min-width: 850px) {
    .fw {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -moz-flex;
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .vf {
        flex-direction: column;
        justify-content: center;
        display: flex;
    }
    .displayDesktop {
        display: unset;
    }
    .displayPhone {
        display: none;
    }
    .pt7rem {
        padding-top: 7rem;
    }
    .pb5rem{
        padding-bottom: 5rem;
    }
    .pb7rem{
        padding-bottom: 7rem;
    }
    .left_50,.right_50,.worldMapPicWrap{
        width: 47%;
    }
    .box_30{
        width: 32%;
    }
    .box_70{
        width: 68%;
    }
    .box_25{
        width: 22%;
    }
    .hideBox{
        display: none;
    }
    .showBox{
        display: block;
    }
}
