@charset "utf-8";

/*-------------------------------------------- reset --------------------------------------------*/
* {
    margin: 0;
    padding: 0;
}
html,body,div,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,
pre,abbr,address,cite,code,del,dfn,img,ins,kbd,q,samp,small,var,
i,dl,dt,dd,ol,ul,li,fieldset,form,legend,table,caption,tbody,tfoot,thead,tr,
article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,audio,video {
    word-break: keep-all;
    -webkit-text-size-adjust: none;
    word-wrap: break-word;
    box-sizing: border-box;
    font-family: 'Rajdhani1', sans-serif;
}
ul, ol, li {
    list-style: none;
}

a {
    text-decoration: none;
    box-sizing: border-box;
    color: inherit;
    font-family: 'Rajdhani1', sans-serif;
}
html, body{
    overflow-x: hidden;
}
body {
    width: 100%;
    height: 100%;
    /* overflow-y: hidden; */
    background-color: #0c1328;
    background-image: url('../image/bg.png');
    background-repeat: no-repeat;
    /* background-size: 100%; */
    /* background-position: 0 130px; */
    background-position: center -4px;
}
input {
    box-sizing: border-box;
    font-family: 'Rajdhani1', sans-serif;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
}
/* input[type="number"] {
    -moz-appearance: textfield;
} */
select {
    box-sizing: border-box;
    -o-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: 'Rajdhani1', sans-serif;
}
select option[value=""][disabled] {
    display: none;
}
textarea {
    font-family: 'Rajdhani1', sans-serif;
}
select::-ms-expand{ display:none }
/*-------------------------------------------- Content --------------------------------------------*/
.Wrap {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.video_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
    text-align: center;
}
.video_bg video {
    width: 100%;
    /* min-width: 1920px; */
}
.scroll_btn {
    position: fixed;
    bottom: 60px;
    right: 5%;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    grid-gap: 25px;
    z-index: 4;
}
.scroll_up {
    cursor: pointer;
    display: none;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
}
.scroll_up::before {
    content: '';
    display: block;
    width: 15px;
    height: 8px;
    margin: 0 auto;
    padding: 5px 0;
    background-image: url('../image/scroll_up.png');
    background-repeat: no-repeat;
}

.sound_btn {
    cursor: pointer;
    display: block;
    width: 36px;
    height: 36px;
    background-image: url('../image/btn_1.png');
    background-repeat: no-repeat;
}
header {
    width: 95%;
    height: auto;
    margin: 0 auto;
    padding: 60px 0 80px;
    z-index: 2;
}
.gnb {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.gnb_list {
    width: auto;
    height: auto;
}
.gnb_list:nth-child(2) {
    width: 80%;
    height: auto;
}
.menu_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.hamburger {
    display: none;
}
.hamburger .line{
    width: 35px;
    height: 3px;
    border-radius: 7px;
    background-color: #ecf0f1;
    display: block;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.hamburger:hover{
    cursor: pointer;
}

#hamburger-1.is-active .line:nth-child(2){
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1){
    -webkit-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    -o-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3){
    -webkit-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    -o-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
}
.logo {
    display: block;
}
.menu_list {
    width: auto;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    grid-gap: 60px;
}
.menu_link {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #adafba;
}
.menu_link:hover {
    color: #ffffff;
}
.lnb_btn {
    width: auto;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    grid-gap: 60px;
}
.lnb_list {
    width: auto;
    height: auto;
}
.lnb_list a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}
.lang_chk {
    width: 100%;
    height: auto;
    padding-right: 15px;
    border: 0;
    border-radius: 6px;
    background: none;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-image: url('../image/down.png');
    background-repeat: no-repeat;
    background-position: 98% 50%;
}
main {
    width: 100%;
    height: auto;
    z-index: 2;
}
.sec_1 {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 190px 0 310px;
}
.sec_2 {
    position: relative;
    width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0 0 360px;
}
.sec_3 {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0 0 180px;
}
.sec_4 {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0 0 235px;
}
.sec_5 {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0 0 200px;
}
.sec_6 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 0 140px;
    text-align: center;
}
.content_box {
    width: 100%;
    height: auto;
}
.cont_1 {
    width: 673px;
}
.cont_title {
    margin-bottom: 30px;
    line-height: 1.2;
    font-size: 72px;
    font-weight: 600;
    color: #ffffff;
}
.cont_title2 {
    line-height: 1.5;
    font-size: 52px;
    font-weight: 600;
    color: #ffffff;
}
.cont_title3 {
    margin-bottom: 30px;
    line-height: 1.2;
    font-size: 52px;
    font-weight: 600;
    color: #ffffff;
}
.cont_title4 {
    margin-bottom: 30px;
    line-height: 1.2;
    font-size: 52px;
    font-weight: 600;
    color: #ffffff;
}
.teal_c {
    color: #0abea6;
}
.gray_c {
    color: #8d8f97;
}
.sub_text {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 400;
    color: #adafba;
}
.btn_box {
    width: auto;
    height: auto;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    grid-gap: 8px;
}
.same_btn {
    width: 200px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    border: 1px solid #0abea6;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #0abea6;
}
.same_btn:hover {
    color: #ffffff;
    background-color: #0abea6;
}
.sub_link {
    width: auto;
    height: auto;
}
.sub_tag {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}
.sub_tag::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, #0abea6 80%, #ffffff 20%);
}
.littel_title {
    margin-bottom: 50px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}
.bx-viewport {
    width: 1800px !important;
}
.trade_slide {
    width: 100%;
    height: auto;
}
.trade_list {
    width: 276px;
    height: 244px;
    padding: 40px 30px;
    border-radius: 10px;
    background-color: rgba(68, 73, 93, 0.3);
}
.trade_list:hover {
    background-color: #44495d;
}
.trade_no {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #adafba;
}
.trade_title {
    line-height: 1.1;
    font-size: 38px;
    font-weight: 400;
    color: #ffffff;
}
.trade_bold {
    font-weight: 500;
}
.trade_sub {
    font-size: 16px;
    font-weight: 400;
    color: #adafba;
}
.trade_min {
    font-size: 16px;
    font-weight: 500;
}
.meta_mid {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.meta_box {
    position: relative;
    width: 45%;
    height: auto;
}
.meta_box:nth-child(1) {
    margin-top: -540px;
}
.meta_box:nth-child(2) {
    margin-top: 50px;
}
.meta_text {
    font-size: 16px;
    font-weight: 400;
    color: #adafba;
}
.os_list {
    width: 100%;
    height: auto;
    margin: 30px 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    grid-gap: 60px;
}
.os_box {
    position: relative;
}
.os_box::after {
    content: '';
    position: absolute;
    top: 10px;
    right: -31px;
    width: 1px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
}
.os_box:nth-child(2)::after {
    right: -33px;
}
.os_box:nth-child(3)::after {
    right: -29px;
}
.os_box:last-child::after {
    display: none;
}
.meta_cont {
    width: 276px;
    height: auto;
    min-height: 418px;
    padding: 50px 40px;
    border-radius: 10px;
    /* z-index: 2; */
}
.meta_cont:hover {
    background-color: rgb(68, 73, 93, 0.7);
    z-index: 3;
}
.meat4 {
    position: relative;
    /* position: absolute;
    top: 0;
    left: 0; */
}
.meat5 {
    position: relative;
    margin-left: 300px;
    margin-top: -260px;
    /* position: absolute;
    top: 50%;
    right: 0; */
}
.baba {
    position: relative;
    margin-top: 0;
    /* position: absolute;
    bottom: 0;
    left: 50px; */
}
.meat4::after {
    content: '';
    position: absolute;
    top: -63px;
    right: -63px;
    width: 159px;
    height: 281px;
    background-image: url('../image/meta_1.png');
    background-repeat: no-repeat;
    z-index: -1;
}
.meat4:hover::after {
    top: -110px;
    right: -201px;
    width: 319px;
    height: 351px;
    background-image: url('../image/meta_1_on.png');
}
.meat5::after {
    content: '';
    position: absolute;
    top: -75px;
    right: -240px;
    width: 453px;
    height: 343px;
    background-image: url('../image/meta_2.png');
    background-repeat: no-repeat;
    z-index: -1;
}
.meat5:hover::after {
    background-image: url('../image/meta_2_on.png');
}
.baba::after {
    content: '';
    position: absolute;
    top: -85px;
    right: -280px;
    width: 504px;
    height: 371px;
    background-image: url('../image/meta_3.png');
    background-repeat: no-repeat;
    z-index: -1;
}
.baba:hover::after {
    background-image: url('../image/meta_3_on.png');
}
.meta_title {
    margin-bottom: 19px;
    font-size: 38px;
    font-weight: 500;
    color: #ffffff;
}
.meta_subtext {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}
.meta_subject {
    margin-bottom: 35px;
    font-size: 16px;
    font-weight: 500;
    color: #adafba;
}
.download {
    display: inline-block;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}
.download::after {
    content: '';
    display: inline-block;
    width: 13px;
    height: 12px;
    margin-left: 8px;
    background-image: url('../image/download.png');
    background-repeat: no-repeat;
}
.meta_cont:hover .download {
    border-color: #ffffff;
    color: #0c1328;
    background-color: #ffffff;
}
.meta_cont:hover .download::after {
    background-image: url('../image/download_on.png');
}
.trade_ul {
    width: 100%;
    height: auto;
    padding-top: 20px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    grid-gap: 30px;
}
.trade_li {
    width: 16%;
    height: auto;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: rgba(68, 73, 93, 0.5);
}
.trade_li:hover {
    background-color: #44495d;
}
.trade_subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #adafba;
}
.trade_view {
    font-size: 52px;
    font-weight: 500;
    color: #ffffff;
}

.account_box {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    /* align-items: center; */
}
.account_list {
    width: 100%;
    height: auto;
}
.account_list:nth-child(1) {
    padding-left: 50%;
}
.account_list:nth-child(2) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
/* .account_list:nth-child(1) {} */
.account_cont {
    position: relative;
    width: 45%;
    height: auto;
    margin-bottom: 25px;
    padding: 50px 40px;
    border-radius: 10px;
    z-index: 2;
}
.account_cont:hover {
    box-shadow: 65px 0 90px rgba(0, 0, 0, 0.3);
    background-color: rgb(68, 73, 93, 0.7);
}
.account_1 {
    margin-top: -250px;
}
.account_3 {
    margin-top: -240px;
}
.account_4 {
    margin-top: 80px;
}
.account_1::before {
    content: '';
    position: absolute;
    bottom: -65px;
    left: -247px;
    width: 416px;
    height: 368px;
    background-image: url('../image/account_1.png');
    background-repeat: no-repeat;
    z-index: -1;
}
.account_1:hover::before {
    background-image: url('../image/account_1_on.png');
}
.account_2::before {
    content: '';
    position: absolute;
    bottom: -85px;
    left: -160px;
    width: 426px;
    height: 321px;
    background-image: url('../image/account_2.png');
    background-repeat: no-repeat;
    z-index: -1;
}
.account_2:hover::before {
    background-image: url('../image/account_2_on.png');
}
.account_3::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -206px;
    width: 496px;
    height: 310px;
    background-image: url('../image/account_3.png');
    background-repeat: no-repeat;
    z-index: -1;
}
.account_3:hover::before {
    background-image: url('../image/account_3_on.png');
}
.account_4::before {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -60px;
    width: 504px;
    height: 371px;
    background-image: url('../image/account_4.png');
    background-repeat: no-repeat;
    z-index: -1;
}
.account_4:hover::before {
    background-image: url('../image/account_4_on.png');
}
.account_no {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #adafba;
}
.account_mid {
    width: auto;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    grid-gap: 30px;
}
.account_body:nth-child(1) {
    width: 40%;
    height: auto;
}
.account_body:nth-child(2) {
    width: 60%;
    height: auto;
}
.account_title {
    font-size: 38px;
    font-weight: 500;
    color: #ffffff;
}
.account_text {
    margin-bottom: 35px;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    color: #adafba;
}
.same_box {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}
.same_box:last-child {
    margin-bottom: 0;
}
.account_subtitle {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}
.mt_btn {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    grid-gap: 5px;
}
.mt_list {
    width: auto;
    height: auto;
}
.mt_box {
    display: inline-block;
    padding: 2px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}
.account_cont:hover .mt_box {
    border-color: #ffffff;
    color: #1d202b;
    background-color: #ffffff;
}
.account_cont:hover .mt_box span {
    color: #ef5d00;
}
.baba_box {
    display: inline-block;
    padding: 2px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}
.baba_box:hover {
    border-color: #ffffff;
    color: #1d202b;
    background-color: #ffffff;
}
.account_cont:hover .baba_box{
    border-color: #ffffff;
    color: #1d202b;
    background-color: #ffffff;
}
.currency_box {
    width: 22px;
    height: 22px;
    display: inline-block;
}
.en_chk {
    background-image: url('../image/usd.png');
}
.eu_chk {
    background-image: url('../image/eur.png');
}
.ind_chk {
    background-image: url('../image/ind.png');
}
.mal_chk {
    background-image: url('../image/mal.png');
}
.thi_chk {
    background-image: url('../image/thi.png');
}

.account_cont:hover .en_chk {
    background-image: url('../image/usd_on.png');
}
.account_cont:hover .eu_chk {
    background-image: url('../image/eur_on.png');
}
.account_cont:hover .ind_chk {
    background-image: url('../image/ind_on.png');
}
.account_cont:hover .mal_chk {
    background-image: url('../image/mal_on.png');
}
.account_cont:hover .thi_chk {
    background-image: url('../image/thi_on.png');
}
.about_baba_box {
    width: 1230px;
    height: auto;
    margin: 0 auto;
}
.end_text {
    font-size: 20px;
    font-weight: 400;
    color: #adafba;
}
.end_title {
    font-size: 38px;
    font-weight: 500;
    color: #ffffff;
}


footer {
    width: 100%;
    height: auto;
    background: linear-gradient(to left, #050c1f 67%, #0c1328 33%);
    /* background: linear-gradient(to left, #050c1f 60%, #0c1328 40%); */
}
.foot_box {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 50px 0;
    display: flex;
    justify-content: flex-start;
    grid-gap: 230px;
}
.side_box {
    width: auto;
    height: auto;
}
.side_box:nth-child(1) {
    width: 15%;
}
.side_box:nth-child(2) {
    width: 70%;
}
.ft_logo { 
    display: block;
    margin-bottom: 160px;
}
.ft_logo img {
    width: 123px;
    opacity: 0.7;
}
.list {
    width: 100%;
    height: auto;
}
.list_cont {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}
.ending_cont {
    width: 170px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}
.ending_cont::after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    background-image: url('../image/plus.png');
    background-repeat: no-repeat;
}
.ending_cont.change::after {
    height: 1px;
    background-image: url('../image/minus.png');
}
.sns_list {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 20px;
}
.sns_list::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: #8d8f97;
}
.sns_cont {
    width: auto;
    height: auto;
}




.title {
    font-size: 52px;
    font-weight: 500;
    color: #ffffff;
}
.form_box {
    width: 100%;
    height: auto;
    margin: 40px 0 20px;
}
.input_box {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.join_us {
    width: 100%;
    height: auto;
    padding: 24px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    background: #161c31;
}
.placeholder {
    position: absolute;
    top: 23px;
    left: 20px;
    display: block;
    font-weight: 500;
    color: #8e9098;
}
.star {
    color: #0abea6;
}
.join_us.chk {
    border-color: #fe297e;
}
.input_box.chk::after {
    position: absolute;
    top: 27px;
    right: 15px;
    content: '';
    width: 17px;
    height: 17px;
    display: inline-block;
    background-image: url('../image/warning.png');
    background-repeat: no-repeat;
}
.input_box.chk .placeholder {
    color: #fe297e;
}
.input_box.chk .star {
    color: #fe297e;
}

.join_us2 {
    width: 100%;
    height: auto;
    padding: 24px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: #161c31;
    color: #8e9098;
    background-image: url('../image/down2.png');
    background-repeat: no-repeat;
    background-position: 98% 50%;
}
/* .select_box {
    position: relative;
    width: 100%;
    height: auto;
}
.selected_cont {
    width: 100%;
    height: auto;
    padding: 21px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: #161c31;
    color: #8e9098;
    background-image: url('../image/down2.png');
    background-repeat: no-repeat;
    background-position: 98% 50%;
}
.select_list {
    display: none;
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.select_option {
    cursor: pointer;
    padding: 10px 20px;
    color: #8e9098;
}
.selected_cont.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0;
} */
.join_us2.chk {
    border-color: #fe297e;
    background-image: unset;
}
.join_us:focus {
    border-color: #ffffff;
    background: #0c1328;
}
.join_us2:focus {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-color: #ffffff;
    background: #0c1328;
    background-image: url('../image/down2.png');
    background-repeat: no-repeat;
    background-position: 98% 50%;
}
.input_box.chk .join_us2 {
    border-color: #fe297e;
    background-image: none;
}
.join_us:focus .placeholder {
    display: none;
}
.error {
    border-color: #fe297e;
}
.error2::after {
    position: absolute;
    top: 27px;
    right: 15px;
    content: '';
    width: 17px;
    height: 17px;
    display: inline-block;
    background-image: url('../image/warning.png');
    background-repeat: no-repeat;
}
.check_list {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.chk_box {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}
.chk_box a {
    margin: 0 5px;
}
.chk_box a::after {
    content: '';
    width: 100%;
    height: 1px;
    display: block;
    background-color: #adafba;
}
/* .chk_box:nth-child(2) .custom_chk .on {
    width: 38.7px;
} */
.custom_chk {
    cursor: pointer;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    /* position: relative; */
    /* padding-left: 35px; */
    /* margin-bottom: 10px; */
    font-size: 14px;
    font-weight: 400;
    color: #adafba;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.custom_chk input[type="checkbox"] {
    display: none;
}
.on {
    position: relative;
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: inline-block;
    margin-right: 15px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: none;
    /* position: absolute;
    top: 0;
    left: 0; */
}
.custom_chk input[type="checkbox"]:checked+.on {
    background: none;
}
.on:after {
    content: "";
    position: absolute;
    display: none;
}
.custom_chk input[type="checkbox"]:checked+.on:after {
    display: block;
}
.on:after {
    width: 7px;
    height: 13px;
    border: solid #0abea6;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 12px;
    top: 6px;
}
.register {
    cursor: pointer;
    width: 300px;
    height: 64px;
    border: none;
    font-size: 20px;
    border-radius: 6px;
    color: #ffffff;
    background: #0abea6;
}
.copyright {
    border-top: 1px solid rgba(92, 94, 102, 0.5);
    /* padding: 50px 0; */
}
.side_1 {
    width: 190px;
}
.file_title {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}
.file_list {
    width: 100%;
    height: auto;
}
.file_list li {
    width: 100%;
    height: auto;
    margin-bottom: 3px;
}
.file_link {
    display: block;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
}
.file_link:hover {
    text-decoration: underline;
}
.copy_box {
    margin-left: -20px;    
}
.copy_text {
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    color: #adafba;
}
.copy_title {
    font-weight: 600;
}
.copy_sub {
    margin-top: 20px;
    display: block;
    color: #5c5e66;
}
.mobile_copy {
    display: none;
}
.cookie_box {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    grid-gap: 15px;
    z-index: 3;
}
.cookie_list {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 6px;
}
.cookie_list p {
    font-size: 13px;
    font-weight: 400;
    color: #adafba;
}
.cookie_btn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 15px;
    border-radius: 6px;
    border: 1px solid #0abea6;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #0abea6;
}
.cookie_btn:hover {
    background-color: #0abea6;
    color: #ffffff;
}

/* 슬라이드 */
.slick_tradeSlide{
    display: none !important;
    position: relative;
}

.slick_tradeSlide .slick-slide .trade_list{
    transform: scale(0.8);
    opacity: 0.6;
}
.slick_tradeSlide .slick-slide .trade_list .trade_no{
    font-size: 14px;
}
.slick_tradeSlide .slick-slide .trade_list .trade_title{
    font-size: 30px;
}
.slick_tradeSlide .slick-slide .trade_list .trade_sub{
    font-size: 14px;
}

.slick_tradeSlide .slick-slide.slick-current .trade_list{
    transform: scale(0.9) !important;
    opacity: 1 !important;
}
.slick_tradeSlide .slick-slide.slick-current .trade_list .trade_no{
    font-size: 16px !important;
}
.slick_tradeSlide .slick-slide.slick-current .trade_list .trade_title{
    font-size: 38px !important;
}
.slick_tradeSlide .slick-slide.slick-current .trade_list .trade_sub{
    font-size: 16px !important;
}

.slick-arrow{
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255, 0.3);
    border-radius: 100%;
    color: #ffffff;
    background-color: #171d32;
    background: url(../images/controls.png) no-repeat -43px -32px;
    background-image: url(../image/right.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    position: absolute;
    top: 0;
    cursor: pointer;
}
.slick-next{
    right: 5px;
}
.slick-next:hover{
    background-color: #ffffff;
    background-image: url(../image/left_on.png);
    background-repeat: no-repeat;
    transform: rotate(180deg);
}
.slick-prev{
    right: 40px;
    transform: rotate(180deg);
}
.slick-prev:hover{
    background-color: #ffffff;
    background-image: url(../image/left_on.png);
    background-repeat: no-repeat;
    transform: rotate(0deg);
}


@media screen and (min-width: 1920px) {
    .Wrap {
        width: 1920px;
        margin: 0 auto;
        overflow: hidden;
    }
    footer {
        width: 1920px;
        margin: 0 auto;
    }
}
 /* IE10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    p, a, select, label, button, input, .scroll_up, .cookie_btn {
        font-family: 'Rajdhani', sans-serif;
    }
    .menu_list {
        margin-left: 180px;
    }
    .menu {
        margin-right: 60px;
    }
    .menu:last-child {
        margin-right: 0;
    }
    .lnb_list {
        margin-left: 60px;
    }
    .same_btn {
        margin-right: 8px;
    }
    .same_btn:last-child {
        margin-right: 8px;
    }
    .os_box {
        margin-right: 60px;
    }
    .os_box:last-child {
        margin-right: 0;
    }
    .mt_list {
        margin-right: 5px;
    }
    .mt_list:last-child {
        margin-right: 0;
    }
    .side_box {
        margin-right: 230px;
    }
    .side_box:last-child {
        margin-right: 0;
    }
    .cookie_list {
        margin-right: 15px;
    }
    .cookie_list:last-child {
        margin-right: 0;
    }
    .cookie_btn {
        margin-right: 6px;
    }
    .cookie_btn:last-child {
        margin-right: 0;
    }
    .scroll_up {
        margin-bottom: 25px;
    }
}

@supports (-ms-ime-align:auto) {
    p, a, select, label, button, input, .scroll_up, .cookie_btn {
        font-family: 'Rajdhani', sans-serif;
    }
    .menu_list {
        margin-left: 180px;
    }
    .menu {
        margin-right: 60px;
    }
    .menu:last-child {
        margin-right: 0;
    }
    .lnb_list {
        margin-left: 60px;
    }
    .same_btn {
        margin-right: 8px;
    }
    .same_btn:last-child {
        margin-right: 8px;
    }
    .os_box {
        margin-right: 60px;
    }
    .os_box:last-child {
        margin-right: 0;
    }
    .mt_list {
        margin-right: 5px;
    }
    .mt_list:last-child {
        margin-right: 0;
    }
    .side_box {
        margin-right: 230px;
    }
    .side_box:last-child {
        margin-right: 0;
    }
    .cookie_list {
        margin-right: 15px;
    }
    .cookie_list:last-child {
        margin-right: 0;
    }
    .cookie_btn {
        margin-right: 6px;
    }
    .cookie_btn:last-child {
        margin-right: 0;
    }
    .scroll_up {
        margin-bottom: 25px;
    }
}
@media (max-width: 1400px) {
    .meta_box {
        width: 100%;
    }
    .meta_box:nth-child(1) {
        margin-top: 0;
    }
    .meta_box:nth-child(2) {
        margin-top: 80px;
        padding-left: 25%;
    }
}
@media (max-width: 1280px) {
    .video_bg {
        display: none;
    }
    .sec_1, .sec_2, .sec_3, .sec_4, .sec_5, .sec_6, .about_baba_box, .foot_box {
        width: 90%;
    }
    .account_title {
        font-size: 28px;
    }
}
@media (max-width: 1024px) {
    .trade_ul {
        margin: 0 auto;
        flex-wrap: wrap;
        justify-content: center;
        /* grid-gap: 15px; */
    }
    .trade_li {
        min-width: 130px;
    }
    .cont_title3 {
        font-size: 40px;
    }
    .sub_text {
        font-size: 16px;
    }
    .cont_title4 {
        font-size: 40px;
    }
    .end_title {
        font-size: 24px;
    }
    .end_text {
        font-size: 16px;
    }
}
@media (max-width: 890px) {
    .meta_box:nth-child(2) {
        padding-left: 15%;
    }
    .account_cont {
        padding: 30px;
    }
    .cookie_box {
        padding: 20px 50px;
    }
    .cookie_list p {
        font-size: 12px;
    }
    .cookie_btn {
        font-size: 13px;
    }
    .cookie_btn:nth-child(1) {
        min-width: 114px;
    }
    .cookie_btn:nth-child(2) {
        min-width: 146px;
    }
    .cookie_btn:nth-child(3) {
        min-width: 76px;
    }
}
@media (max-width: 800px) {
    body {
        background-color: #0c1328;
    }
    .Wrap {
        position: relative;
    }
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        padding: 30px 0 15px;
    }
    header.scroll_on {
        background-color: rgba(0,0,0,0.8);
        z-index: 5;
    }
    .gnb {
        width: 90%;
        margin: 0 auto;
    }
    .logo img {
        width: 103px;
    }
    .hamburger .line {
        width: 28px;
    }
    .gnb_list:nth-child(2) {
        width: auto;
    }
    .hybrid_menu.menuOn {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.85);
        z-index: 3;
    }
    .menu_box {
        width: 100%;
        height: 100%;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: baseline;
    }
    .menu_box.menuActive {
        display: flex;
    }
    .menu_list {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: baseline;
        grid-gap: 0;
        order: 2;
    }
    .menu_list .menu {
        width: 100%;
        padding: 15px;
        border-bottom: 1px solid rgba(173, 175, 186, 0.15);
    }
    .menu_list .menu:last-child {
        border-bottom: none;
    }
    .lnb_btn {
        order: 1;
        padding: 40px 90px 10px 15px;
    }
    .hamburger {
        display: block;
        text-align: left;
    }
    .hamburger.is-active {
        position: absolute;
        top: 30px;
        right: 20px;
    }
    .cont_1 {
        width: 100%;
    }
    .cont_title {
        font-size: 60px;
    }
    .sec_1 {
        padding: 230px 0 250px;
    }
    .sec_2 {
        padding: 0 0 250px;
    }
    .sec_3 {
        padding: 0 0 120px;
    }
    .ft_logo img {
        width: 103px;
    }
}
@media (max-width: 768px) {
    .meta_box:nth-child(2) {
        padding-left: 5%;
    }
    .end_text {
        font-size: 14px;
    }
    .account_list:nth-child(1) {
        padding-left: 0;
    }
    .account_list:nth-child(2) {
        flex-direction: column;
    }
    .account_cont {
        width: 70%;
    }
    .account_1, .account_3, .account_4 {
        margin-top: 0;
    }
    .account_2::before {
        left: -210px;
    }
    .account_3::before {
        left: -240px;
    }
    .account_4::before {
        left: -140px;
    }
    footer {
        background: #050c1f;
    }
    .foot_box {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        grid-gap: 20px;
    }
    .foot_box:nth-child(1) {
        padding: 50px 0 15px;
    }
    .foot_box:nth-child(1) .side_box:nth-child(1) {
        order: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .foot_box:nth-child(1) .side_box:nth-child(2) {
        width: 100%;
    }
    .ft_logo {
        margin-bottom: 0;
    }
    .list {
        display: none;
    }
    .copyright {
        display: none;
    }
    .register {
        width: 100%;
    }
    .join_us {
        padding: 15px 20px;
    }
    .join_us2 {
        padding: 15px 20px;
        background-size: 10px 7px;
    }
    .placeholder {
        top: 17px;
        font-size: 14px;
    }
    .input_box.chk::after {
        top: 17px;
    }
    .custom_chk {
        font-size: 12px;
    }
    .on {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }
    .on:after {
        top: 2px;
        left: 8px
    }
    .sns_list {
        width: 160px;
    }
    .sns_list::before {
        display: none;
    }
    .foot_box:nth-child(3) {
        padding: 0 0 50px;
    }
    .foot_box:nth-child(3) .side_box:nth-child(1) {
        width: 100%;
    }
    .foot_box:nth-child(3) .side_box:nth-child(2) {
        width: 100%;
    }
    .copy_box {
        margin-left: 0;
    }
    .side_1 {
        width: 100%;
    }
    .file_list {
        width: 60%;
        margin-left: 38%;
        margin-top: -15%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    .file_list li:nth-child(1) {
        width: 100%;
    }
    .file_list li:nth-child(2),
    .file_list li:nth-child(3),
    .file_list li:nth-child(4),
    .file_list li:nth-child(5),
    .file_list li:nth-child(6),
    .file_list li:nth-child(7) {
        width: 45%;
    }
    .copy_sub {
        display: block;
        margin-top: 20px;
    }
    .error2::after {
        top: 18px;
    }
}
@media (max-width: 700px) {
    .meta_box:nth-child(2) {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-gap: 50px;
    }
    .meat5 {
        margin-left: 0;
        margin-top: 0;
    }
    .baba {
        margin-top: 0;
    }
    .cont_title4 {
        font-size: 30px;
    }
    .cookie_box {
        flex-direction: column;
    }
}
@media (max-width: 660px) {
    .file_list {
        position: relative;
        width: 100%;
        margin: 0 auto;
    }
    .file_title {
        font-size: 14px;
    }
    .file_link {
        font-size: 14px;
    }
    .foot_box:nth-child(3) .side_box:nth-child(2) .copy_text {
        font-size: 12px;
    }
    .copy_title {
        font-size: 14px;
    }
}
@media (max-width: 600px) {
    .cont_title {
        font-size: 42px;
    }
    .cont_title2 {
        font-size: 42px;
    }
    .sub_text {
        font-size: 16px;
    }
    .same_btn {
        width: 160px;
        font-size: 14px;
    }
}
@media (max-width: 555px) {
    .account_cont {
        width: 90%;
    }
    .bx-wrapper{
        display: none !important;
    }
    .slick_tradeSlide{
        display: block !important;
    }
    .slick-prev{
        /* right: 50px; */
    }
    .slick-arrow {
        top: -80px;
        width: 30px;
        height: 30px;
    }
}
@media (max-width: 465px) {
    .trade_li {
        width: 43%;
        min-width: 110px;
    }
    .trade_subtitle {
        font-size: 14px;
    }
    .trade_view {
        font-size: 32px;
    }
}
    
@media (max-width: 450px) {
    .bx-wrapper .bx-controls-direction a {
        width: 30px !important;
        height: 30px !important;
        margin-top: -30px !important;
    }
    .bx-wrapper .bx-prev {
        right: 35px !important;
    }
    .littel_title {
        font-size: 18px;
    }
    .meat4::after {
        right: -33px;
    }
    .meat4:hover::after {
        right: -174px;
    }
    .meat5::after {
        right: -200px;
    }
    .baba::after {
        right: -219px;
        width: 454px;
        height: 321px
    }
}
@media (max-width: 430px){
    .slick_tradeSlide .slick-slide .trade_list .trade_no{
        font-size: 13px;
    }
    .slick_tradeSlide .slick-slide .trade_list .trade_title{
        font-size: 26px;
    }
    .slick_tradeSlide .slick-slide .trade_list .trade_sub{
        font-size: 13px;
    }
    .slick_tradeSlide .slick-slide.slick-current .trade_list .trade_no{
        font-size: 15px !important;
    }
    .slick_tradeSlide .slick-slide.slick-current .trade_list .trade_title{
        font-size: 32px !important;
    }
    .slick_tradeSlide .slick-slide.slick-current .trade_list .trade_sub{
        font-size: 15px !important;
    }
}
@media (max-width: 390px) {
    .littel_title{
        font-size: 16px;
    }
}
@media (max-width: 380px) {
    .baba::after {
        right: -190px;
    }
    .account_cont {
        padding: 30px 15px;
    }
    .file_link {
        font-size: 12px;
    }

    .slick_tradeSlide .slick-slide .trade_list .trade_title{
        font-size: 26px;
    }
    .slick_tradeSlide .slick-slide.slick-current .trade_list .trade_no{
        font-size: 14px !important;
    }
    .slick_tradeSlide .slick-slide.slick-current .trade_list .trade_title{
        font-size: 30px !important;
    }
    .slick_tradeSlide .slick-slide.slick-current .trade_list .trade_sub{
        font-size: 14px !important;
    }
}
@media (max-width: 365px) {
    .slick_tradeSlide .slick-slide .trade_list{
        height: 220px;
    }
    .slick_tradeSlide .slick-slide .trade_list .trade_title{
        font-size: 21px;
    }
    .slick_tradeSlide .slick-slide.slick-current .trade_list .trade_title{
        font-size: 24px !important;
    }
}
