@charset "utf-8";

* {
  font-family: "Pretendard", 맑은 고딕, 微软雅黑, sans-serif;
  font-weight: 400;
  letter-spacing: -0.5px;
}

html {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
}

body {
  overflow: hidden;
  -webkit-text-size-adjust: none;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 0 50px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.header .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 1200px;
}

.header .fl {
  display: flex;
  align-items: center;
  height: 120px;
}

.header .fl .logo {
  display: block;
  height: 78px;
}

.header .fl .logo img {
  display: block;
  width: auto;
  height: 100%;
}

.header .fl .gnb {}

.header .fl .gnb ul {
  display: flex;
}

.header .fl .gnb ul li {
  margin: 0 0 0 50px;
}

.header .fl .gnb ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
}

.header .fl .gnb ul li.active a {
  color: #ffcc00;
}

.header .fr {
  display: flex;
  align-items: center;
}

.header .fr select {
  display: block;
  margin: 0;
  padding: 0 40px 0 15px;
  width: 100px;
  height: 32px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: url(/images/type_select_bai.png) no-repeat center right 10px rgba(255, 255, 255, 0);
  background-size: 10px 5px;
  line-height: 32px;
  font-size: 14px;
  color: #fff;
  outline: none;
  -webkit-appearance: none;
}

.header .fr select option {
  color: #333;
}

.header .fr .sns {
  display: flex;
  align-items: center;
}

.header .fr .sns a {
  display: flex;
  margin: 0 0 0 20px;
  cursor: pointer;
}

.header .fr .sns img {
  display: block;
  max-width: 24px;
  max-height: 17px;
}

.header.on {
  background: #371c6a;
}

@media (max-width: 1300px) {
  .header .fl .gnb {
    display: none;
  }

  .header .fr {
    margin: 0 50px 0 0;
  }

  .header .fr .sns {
    display: none;
  }
}

@media (max-width: 767px) {
  .header {
    padding: 0 15px;
  }

  .header .fl {
    height: 80px;
  }

  .header .fl .logo {
    width: 110px;
    height: 50px;
  }

  .header .fr {
    margin: 0 40px 0 0;
  }

  .header .fr select {
    width: 80px;
  }
}

.all_menu_btn_close {
  display: none;
  position: fixed;
  z-index: 310;
  top: 40px;
  right: 50px;
  width: 25px;
  height: 40px;
  cursor: pointer;
}

.all_menu_btn_close.open {
  display: block;
}

.all_menu_btn {
  display: none;
  position: fixed;
  z-index: 300;
  top: 40px;
  right: 50px;
  width: 25px;
  height: 40px;
  cursor: pointer;
}

.all_menu_btn #nav-icon1 {
  margin: 11px auto;
  width: 25px;
}

.all_menu_btn #nav-icon1 span {
  background: #fff;
}

.all_menu_btn #nav-icon1 span:nth-child(1) {}

.all_menu_btn #nav-icon1 span:nth-child(2) {}

.all_menu_btn #nav-icon1 span:nth-child(3) {}

.all_menu_btn #nav-icon1.open span {
  width: 25px;
  background: #fff;
}

.all_menu_btn.scroll #nav-icon1 span {
  background: #000;
}

.all_menu_btn.scroll.open #nav-icon1 span {
  background: #fff;
}

@media (max-width: 1200px) {
  .all_menu_btn_close {}

  .all_menu_btn {
    display: block;
  }
}

@media (max-width: 767px) {
  .all_menu_btn_close {
    top: 20px;
    right: 15px;
    margin: 0;
  }

  .all_menu_btn {
    top: 20px;
    right: 15px;
    margin: 0;
  }
}

.all_menu {
  overflow: hidden;
  position: fixed;
  z-index: 200;
  top: 0;
  right: -100%;
  bottom: 0;
  left: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.3s;
}

.all_menu .row {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 100%;
  bottom: 0;
  left: -100%;
  padding: 80px;
  background: #3d4fdc;
  opacity: 0;
  transition: all 0.5s;
}

.all_menu .logo {
  display: inline-block;
  margin: 0 0 20px -15px;
}

.all_menu .logo img {
  display: block;
}

.all_menu .gnb_m {}

.all_menu .gnb_m ul {}

.all_menu .gnb_m ul li {
  padding: 0 0 0 0;
}

.all_menu .gnb_m ul li a {
  display: block;
  line-height: 80px;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
}

.all_menu .gnb_m ul li.active a {
  color: #ffcc00;
}

.all_menu .sns {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 80px;
  left: 80px;
}

.all_menu .sns a {
  display: flex;
  align-items: center;
  margin: 0 30px 0 0;
  cursor: pointer;
}

.all_menu .sns a img {
  max-height: 30px;
}

.all_menu.on {
  right: 0;
  left: 0;
  opacity: 1;
}

.all_menu.on .row {
  right: 50%;
  left: 0;
  opacity: 1;
}

@media (max-width: 1200px) {
  .all_menu.on .row {
    right: 125px;
  }
}

@media (max-width: 767px) {
  .all_menu .row {
    padding: 30px 50px;
  }

  .all_menu .gnb_m ul li a {
    line-height: 60px;
    font-size: 25px;
  }

  .all_menu .sns {
    justify-content: center;
    right: 0;
    bottom: 50px;
    left: 0;
  }

  .all_menu .sns a {
    margin: 0 10px;
  }

  .all_menu .sns a img {
    max-height: 20px;
  }

  .all_menu.on .row {
    right: 55px;
  }
}

.bg_sky {
  position: fixed;
  z-index: 11;
  top: 0;
  right: 0;
  bottom: -200px;
  left: 0;
  background: url(/images/home_bg_sky.jpg) top center no-repeat #67c0fa;
  background-size: cover;
}

.bg_about {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(/images/about_bg.jpg) top center no-repeat;
  background-size: cover;
}

.home {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 100px;
  min-height: 950px;
}

.home .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 30;
  margin: 0 0 150px 0;
}

.home .ft {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home .tit {
  font-size: 80px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0 0 0 / 60%);
}

.home .txt {
  margin: 10px 0 0 0;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0 0 0 / 60%);
}

.home .btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 50px 0 0 0;
  z-index: 200;
}

.home .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 15px;
  width: 180px;
  height: 60px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
}

/*.home .btn a:nth-child(1){ background: #3d4fdc; color:#FFF;}*/
.home .btn a {
  background: #ffcc00;
  color: #000;
}

.home .user {
  display: flex;
  justify-content: center;
  position: relative;
  height: auto;
  z-index: -1;
}

.home .user .bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255 255 255 / 0.1%);
}

.home .user img {
  display: none;
}

.home .user canvas {
  width: 1200px;
}

.home .bg_tree {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(/images/home_bg_tree.png) center bottom 30% no-repeat;
  background-size: 100% auto;
}

.home .bg_land {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(/images/home_bg_land.png) center bottom no-repeat;
  background-size: 100% auto;
}

@media (max-width: 1921px) {
  .home .row {
    margin: 0 0 20px 0;
  }

  .home .ft {
    margin: 0 0 -30px 0;
  }

  .home .user {}

  .home .user canvas {
    width: 1100px;
  }

  .home .bg_tree {
    background: url(/images/home_bg_tree.png) center bottom 30% no-repeat;
    background-size: 1920px auto;
  }

  .home .bg_land {
    background: url(/images/home_bg_land.png) center bottom no-repeat;
    background-size: 1920px auto;
  }
}

@media (max-width: 767px) {
  .home {
    padding: 0;
    min-height: auto;
  }

  .home .row {
    margin: 0;
  }

  .google-play-badge {
    width: 100px;
  }

  .home .ft {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
  }

  .home .tit {
    font-size: 35px;
  }

  .home .txt {
    margin: 5px 0 0 0;
    font-size: 16px;
  }

  .home .btn {
    margin: 30px 0 0 0;
  }

  .home .btn a {
    margin: 0 10px;
    width: 140px;
    height: 50px;
  }

  .home .user {
    margin: 30px 0 0 0;
  }

  .home .user canvas {
    width: 700px;
  }

  .home .bg_tree {
    background: url(/images/home_bg_tree.png) center bottom 20% no-repeat;
    background-size: 250% auto;
  }

  .home .bg_land {
    background: url(/images/home_bg_land.png) center bottom no-repeat;
    background-size: 250% auto;
  }
}

.s_home {
  height: 1500px;
}

.e_home {
  height: 500px;
}

@media (max-width: 767px) {
  .s_home {
    height: 1000px;
  }

  .e_home {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .home .btn {
    width: 360px;
  }

  .home .btn a {
    margin: 5px 20px;
  }
}

.about {
  position: relative;
  z-index: 50;
}

.about .row {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  max-width: 1200px;
}

.about .ft {
  padding: 150px 0 0 0;
}

.about .ft .title {
  position: relative;
  z-index: 10;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  background-image: linear-gradient(180deg, #ffffdf, #f5af5d);
  -webkit-background-clip: text;
  color: transparent;
  transform: scale(1.5) rotate(0deg) translate(0, 200px);
  opacity: 0;
}

.about .ft .book {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 20;
  margin: 30px 0 0 0;
  transform: scale(2) rotate(0deg) translate(0, 800px);
  opacity: 0;
}

.about .ft .book .rolling {
  position: absolute;
  top: 60px;
  left: 50%;
  margin: 0 0 0 40px;
  width: 420px;
}

.about .ft .book .rolling .slide {}

.about .ft .book .rolling .slide a {
  display: block;
}

.about .ft .book .rolling .slide a img {
  display: block;
  width: 100%;
}

.about .ft .book .rolling .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -64px;
  height: 14px;
}

.about .ft .book .rolling .slick-dots li {
  margin: 0 5px;
  width: 14px;
  height: 14px;
}

.about .ft .book .rolling .slick-dots li button {
  display: block;
  width: 14px;
  height: 14px;
  background: url(/images/aoff.png);
}

.about .ft .book .rolling .slick-dots li button:before {
  display: none;
}

.about .ft .book .rolling .slick-dots li.slick-active button {
  display: block;
  width: 14px;
  height: 14px;
  background: url(/images/aon.png);
}

.about .about_l {
  display: block;
  position: absolute;
  z-index: 120;
  top: 50%;
  left: 15px;
  transform: translate(0, -50%);
  cursor: pointer;
}

.about .about_r {
  display: block;
  position: absolute;
  z-index: 120;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%);
  cursor: pointer;
}

.about .ft .book .play {
  display: block;
  position: absolute;
  bottom: 150px;
  left: 50%;
  margin: 0 0 0 185px;
  cursor: pointer;
}

.about .ft .book .bg {
  display: block;
}

.about .ft .ft_bg {
  display: block;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, 0);
}

.about .ft .ft_bg.pad {
  display: none;
}

.about .ft .ft_bg.m {
  display: none;
}

.about .fb {
  position: relative;
  padding: 180px 50px 600px 50px;
  background: #1d1a18;
}

.about .fb .title {
  position: relative;
  z-index: 10;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  background-image: linear-gradient(180deg, #ffffdf, #f5af5d);
  -webkit-background-clip: text;
  color: transparent;
}

.about .fb ul {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
  margin: 10px -10px 0 -10px;
}

.about .fb ul li {
  width: 33.333%;
}

.about .fb ul li a {
  display: block;
  margin: 20px 10px 0 10px;
  padding: 25px;
  border-radius: 10px;
  background: #682111;
  text-align: center;
}

.about .fb ul li a img {
  display: block;
  width: 100%;
}

.about .fb ul li a .tit {
  margin: 20px 0 0 0;
  font-size: 20px;
  font-weight: 800;
  color: #e2c383;
}

.about .fb ul li a .txt {
  margin: 10px 0 0 0;
  min-height: 50px;
  line-height: 25px;
  font-size: 14px;
  color: #fff;
}

.about .fb .user_01 {
  display: block;
  position: absolute;
  z-index: 11;
  top: 50%;
  right: 50%;
  margin: 50px 400px 0 0;
  transform: translate(-600px, 0);
  opacity: 0;
}

.about .fb .user_02 {
  display: block;
  position: absolute;
  z-index: 11;
  top: 50%;
  left: 50%;
  margin: 50px 0 0 500px;
  transform: translate(600px, 0);
  opacity: 0;
}

@media (max-width: 1200px) {
  .about .ft .ft_bg {
    width: 2500px;
  }

  .about .fb .user_01 {
    margin: 100px 350px 0 0;
    height: 300px;
  }

  .about .fb .user_02 {
    margin: 100px 0 0 400px;
    height: 300px;
  }
}

@media (max-width: 1000px) {
  .about .ft .book .bg {
    width: 1000px;
  }

  .about .ft .book .rolling {
    margin: 0 0 0 30px;
    width: 300px;
  }

  .about .ft .book .rolling .slick-dots {
    bottom: -40px;
  }

  .about .ft .book .play {
    bottom: 110px;
    margin: 0 0 0 145px;
    height: 60px;
  }

  .about .about_l {
    left: 10px;
    height: 30px;
  }

  .about .about_r {
    right: 10px;
    height: 30px;
  }

  .about .ft .ft_bg {
    display: none;
  }

  .about .ft .ft_bg.pad {
    display: block;
  }

  .about .fb ul li {
    width: 50%;
  }

  .about .fb .user_01 {
    margin: 250px 200px 0 0;
    height: 250px;
  }

  .about .fb .user_02 {
    margin: 280px 0 0 200px;
    height: 250px;
  }
}

@media (max-width: 767px) {
  .about .ft .title {
    font-size: 30px;
  }

  .about .ft .book .bg {
    width: 500px;
  }

  .about .ft .book .rolling {
    top: 20px;
    margin: 0 0 0 15px;
    width: 150px;
  }

  .about .ft .book .rolling .slick-dots {
    bottom: -30px;
    height: 10px;
  }

  .about .ft .book .rolling .slick-dots li {
    margin: 0 2.5px;
    width: 10px;
    height: 10px;
  }

  .about .ft .book .rolling .slick-dots li button {
    width: 10px;
    height: 10px;
    background-size: 100%;
  }

  .about .ft .book .rolling .slick-dots li.slick-active button {
    width: 10px;
    height: 10px;
    background-size: 100%;
  }

  .about .ft .book .play {
    bottom: 50px;
    margin: 0 0 0 70px;
    height: 40px;
  }

  .about .ft .ft_bg {
    display: none;
  }

  .about .ft .ft_bg.pad {
    display: none;
  }

  .about .ft .ft_bg.m {
    display: block;
    width: 650px;
  }

  .about .fb {
    padding: 50px 0 200px 0;
  }

  .about .fb .title {
    font-size: 30px;
  }

  .about .fb ul {
    justify-content: center;
  }

  .about .fb ul li {
    width: 320px;
  }

  .about .fb ul li a .txt {
    line-height: 20px;
    font-size: 12px;
  }

  .about .fb .user_01 {
    margin: 850px 50px 0 0;
    height: 200px;
  }

  .about .fb .user_02 {
    margin: 850px 0 0 50px;
    height: 200px;
  }
}

.tokens {
  position: relative;
  z-index: 45;
  overflow: hidden;
  padding: 0px 100px 200px 100px;
  background: url(/images/tokens_bg.jpg) center no-repeat #1d1a18;
  background-size: 100% auto;
}

.tokens .row {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  margin: 0 auto;
  max-width: 1200px;
  padding: 150px 0 0 0;
}

.tokens .row .fl {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 50%;
}

.tokens .row .fl .tit {
  position: relative;
  z-index: 10;
  text-align: left;
  font-size: 40px;
  font-weight: 800;
  background-image: linear-gradient(180deg, #ffffdf, #f5af5d);
  -webkit-background-clip: text;
  color: transparent;
}

.tokens .row .fl .txt {
  margin: 10px 0 0 0;
  text-align: left;
  line-height: 35px;
  font-size: 22px;
  font-weight: 800;
  color: #e2c383;
}

.tokens .row .fl .img_01 {
  display: block;
  margin: 50px 0 0 0;
  width: 100%;
  height: auto;
}

.tokens .row .fl .img_02 {
  display: block;
  position: absolute;
  right: -100px;
  bottom: -100px;
}

.tokens .row .fr {
  width: 50%;
}

.tokens .row .fr .ftit {
  line-height: 45px;
  font-size: 30px;
  font-weight: 700;
  color: #371c6a;
}

.tokens .row .fr ul {
  margin: 0 0 0 30px;
}

.tokens .row .fr ul li {
  margin: 30px 0 0 0;
}

.tokens .row .fr ul li:first-child {
  margin: 0;
}

.tokens .row .fr ul li a {
  display: flex;
  align-items: center;
  border-radius: 5px;
  border: 2px solid #c49f51;
  background: #262321;
}

.tokens .row .fr ul li a .ffl {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
}

.tokens .row .fr ul li a .ffl img {
  display: block;
}

.tokens .row .fr ul li a .ffr {
  flex: 1 0;
  padding: 50px 30px 50px 0;
}

.tokens .row .fr ul li a .ffr .tit {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.tokens .row .fr ul li a .ffr .txt {
  margin: 10px 0 0 0;
  line-height: 20px;
  font-size: 14px;
  color: #fff;
}

.tokens .img_user {
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  margin: -200px 0 0 -1000px;
  height: 700px;
  transform: translate(-700px, 0);
  opacity: 0;
}

.tokens .img_a01 {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -380px 0 0 550px;
  transform: translate(0, -700px);
  opacity: 0;
}

.tokens .img_a02 {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 570px;
  transform: translate(-700px, 0);
  opacity: 0;
}

.tokens .img_a03 {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 950px;
  transform: translate(700px, 0);
  opacity: 0;
}

.tokens .img_a04 {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 20px 0 0 520px;
  transform: translate(0, 700px);
  opacity: 0;
}

@media (max-width: 1000px) {
  .tokens {
    padding: 100px 50px 200px 50px;
  }

  .tokens .row {
    flex-direction: column;
    width: 100%;
  }

  .tokens .row .fl {
    width: 100%;
  }

  .tokens .row .fr {
    margin: 50px 0 0 0;
    width: 100%;
  }

  .tokens .img_user {
    margin: -600px 0 0 -400px;
    width: 200px;
    height: auto;
  }

  .tokens .img_a01 {
    margin: -300px 0 0 -150px;
    width: 300px;
  }

  .tokens .img_a02 {
    margin: -120px 0 0 -150px;
    width: 60px;
  }

  .tokens .img_a03 {
    margin: -120px 0 0 90px;
    width: 60px;
  }

  .tokens .img_a04 {
    margin: -20px 0 0 -150px;
    width: 300px;
  }
}

@media (max-width: 767px) {
  .tokens {
    padding: 100px 15px 100px 15px;
  }

  .tokens .row .fl .tit {
    font-size: 30px;
  }

  .tokens .row .fr ul {
    margin: 0;
  }

  .tokens .row .fr ul li a {
    display: block;
  }

  .tokens .row .fr ul li a .ffl {
    padding: 30px 0 0 0;
    width: auto;
    height: auto;
  }

  .tokens .row .fr ul li a .ffl img {
    margin: 0 auto;
    height: 60px;
  }

  .tokens .row .fr ul li a .ffr {
    padding: 0 30px 30px 30px;
  }

  .tokens .img_user {
    margin: -180px 0 0 -200px;
    width: 150px;
  }

  .tokens .img_a01 {
    margin: -300px 0 0 -150px;
    width: 300px;
  }

  .tokens .img_a02 {
    margin: -120px 0 0 -150px;
    width: 60px;
  }

  .tokens .img_a03 {
    margin: -120px 0 0 90px;
    width: 60px;
  }

  .tokens .img_a04 {
    margin: -20px 0 0 -150px;
    width: 300px;
  }
}

.roadmap_s {
  margin: -500px 0 0 0;
  height: 500px;
}

.roadmap {
  position: relative;
  z-index: 45;
  padding: 200px 100px 590px 100px;
}

.roadmap .row {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  max-width: 1400px;
}

.roadmap .row .title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  background-image: linear-gradient(180deg, #ffffdf, #f5af5d);
  -webkit-background-clip: text;
  color: transparent;
}

.roadmap .row ul {
  display: flex;
  flex-wrap: wrap;
  margin: 50px 0 0 0;
}

.roadmap .row ul li {
  margin: 100px 0 0 0;
  width: 25%;
}

.roadmap .row ul li a {}

.roadmap .row ul li a .tit {
  position: relative;
  margin: 0 0 10px 0;
  padding: 0 0 0 40px;
  font-size: 35px;
  font-weight: 900;
  color: #fff;
}

.roadmap .row ul li a .tit:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin: -15px 0 0 0;
  width: 30px;
  height: 30px;
  background: url(/images/roadmap_icon.png) no-repeat;
}

.roadmap .row ul li a .txt {
  position: relative;
  padding: 3px 0 3px 50px;
  font-size: 14px;
  color: #fff;
}

.roadmap .row ul li a .txt:before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 40px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}

.roadmap .row ul li:last-child {
  /* width: 50%; */
}

.roadmap .rbg_tree {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  background: url(/images/roadmap_bg_tree.png) center bottom no-repeat;
  background-size: 100% auto;
  transform: scale(2) rotate(0deg) translate(0, 800px);
  opacity: 0;
}

.roadmap .rbg_sky {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  background: url(/images/roadmap_bg_sky.jpg) center top no-repeat;
  background-size: 100% auto;
  transform: scale(1) rotate(0deg) translate(0, 400px);
}

.roadmap .bg_t {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 50%;
  left: 0;
  background: #1f1a17;
}

.roadmap .bg_b {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  background: #262321;
}

@media (max-width: 1921px) {
  .roadmap .rbg_tree {
    background: url(/images/roadmap_bg_tree.png) center bottom no-repeat;
    background-size: 1920px auto;
  }

  .roadmap .rbg_sky {
    background: url(/images/roadmap_bg_sky.jpg) center top no-repeat #0b6565;
    background-size: 1920px auto;
  }
}

@media (max-width: 1000px) {
  .roadmap .row ul li {
    width: 50%;
  }

  .roadmap .row ul li:last-child {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .roadmap_s {
    margin: -400px 0 0 0;
    height: 400px;
  }

  .roadmap {
    padding: 150px 15px 200px 15px;
  }

  .roadmap .row {
    position: relative;
    z-index: 10;
    margin: 0 auto;
    max-width: 1400px;
  }

  .roadmap .row .title {
    font-size: 30px;
  }

  .roadmap .row ul {
    margin: 20px 0 0 0;
  }

  .roadmap .row ul li {
    margin: 30px 0 0 0;
    width: 100%;
  }

  .roadmap .row ul li a .tit {
    font-size: 25px;
  }

  .roadmap .row ul li a .tit:before {
    left: 10px;
    width: 20px;
    height: 20px;
    background-size: 100%;
  }

  .roadmap .row ul li a .txt {
    font-size: 13px;
  }

  .roadmap .rbg_tree {
    background: url(/images/roadmap_bg_tree.png) center bottom no-repeat;
    background-size: 150% auto;
  }

  .roadmap .rbg_sky {
    background: url(/images/roadmap_bg_sky.jpg) center bottom no-repeat;
    background-size: 200% auto;
  }

  .roadmap .bg_t {
    bottom: 170px;
  }

  .roadmap .bg_b {
    height: 50px;
  }
}

.partner_s {
  margin: -500px 0 0 0;
  height: 500px;
}

.partner {
  position: relative;
  z-index: 45;
  padding: 100px 100px 320px 100px;
}

.partner .row {
  position: relative;
  z-index: 10;
  margin: 100px auto 0 auto;
  max-width: 1400px;
}

.partner .row .title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  background-image: linear-gradient(180deg, #ffffdf, #f5af5d);
  -webkit-background-clip: text;
  color: transparent;
}

.partner .row ul {
  display: flex;
  flex-wrap: wrap;
  margin: 50px 0 0 0;
}

.partner .row ul li {
  margin: 100px auto 0 auto;
  width: 30%;
  position: relative;
  height: 150px;
}

.partner .row:nth-child(2) ul li:nth-child(1) {
  width: 35%;
}

.partner .row ul img {
  max-width: 80%;
  max-height: 180px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.partner .rbg_sky {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  background: #262321 center top no-repeat;
  background-size: 100% auto;
  transform: scale(1) rotate(0deg) translate(0, 0px);
}

.partner .bg_t {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 50%;
  left: 0;
  background: #1f1a17;
}

.partner .bg_b {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  background: #262321;
}

@media (max-width: 1921px) {
  .partner .rbg_sky {
    background: center top no-repeat #262321;
    background-size: 1920px auto;
  }
}

@media (max-width: 1000px) {
  .partner .row ul li {
    width: 50%;
    position: relative;
    height: 150px;
  }

  .partner .row:nth-child(2) ul li:nth-child(1) {
    width: 55%;
  }

  .partner .row:nth-child(2) ul li:nth-child(2) {
    width: 45%;
  }

  .partner .row ul img {
    max-width: 80%;
    max-height: 180px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 767px) {
  .partner_s {
    margin: -400px 0 0 0;
    height: 400px;
  }

  .partner {
    padding: 150px 15px 200px 15px;
  }

  .partner .row {
    position: relative;
    z-index: 10;
    margin: 0 auto;
    max-width: 1400px;
  }

  .partner .row .title {
    font-size: 30px;
  }

  .partner .row ul {
    margin: 20px 0 0 0;
  }

  .partner .row ul li {
    margin: 30px 0 0 0;
    width: 100%;
    position: relative;
    height: 150px;
  }

  .partner .row:nth-child(2) ul li:nth-child(1) {
    width: 100%;
  }

  .partner .row:nth-child(2) ul li:nth-child(2) {
    width: 100%;
  }

  .partner .row ul img {
    max-width: 80%;
    max-height: 180px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .partner .row ul li a .tit {
    font-size: 25px;
  }

  .partner .row ul li a .tit:before {
    left: 10px;
    width: 20px;
    height: 20px;
    background-size: 100%;
  }

  .partner .row ul li a .txt {
    font-size: 13px;
  }

  .partner .bg_t {
    bottom: 170px;
  }

  .partner .bg_b {
    height: 50px;
  }
}

.footer {
  position: relative;
  z-index: 40;
  padding: 0 100px;
  background: #262321;
}

.footer .row {
  display: flex;
  margin: 0 auto;
  padding: 0 0 120px 0;
  max-width: 1200px;
}

.footer .row .fl {
  width: 500px;
}

.footer .row .fl .logo {
  display: block;
  margin: 0 auto;
  width: 330px;
  height: 148px;
}

.footer .row .fl .logo img {
  display: block;
  height: 100%;
}

.footer .row .fl .copy {
  margin: 20px 0 0 0;
  text-align: center;
  line-height: 25px;
  font-size: 12px;
  color: #fff;
}

.footer .row .fr {
  flex: 1 0;
  width: 100%;
}

.footer .row .fr .ft {
  padding: 0 100px;
}

.footer .row .fr .ft .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -30px 0 0 0;
}

.footer .row .fr .ft .menu li {
  display: flex;
  justify-content: center;
  margin: 30px 0 0 0;
  width: 33.333%;
}

.footer .row .fr .ft .menu li a {
  display: block;
  cursor: pointer;
}

.footer .row .fr .ft .menu li a p {
  font-size: 14px;
  color: #fff;
}

.footer .row .fr .fb {
  margin: 70px 0 0 0;
  text-align: center;
}

.footer .row .fr .fb .tit {
  font-size: 14px;
  color: #fff;
}

.footer .row .fr .fb .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 0 0;
}

.footer .row .fr .fb .sns a {
  display: flex;
  margin: 0 25px;
}

.footer .row .fr .fb .sns a img {
  display: block;
  max-height: 25px;
}

@media (max-width: 1000px) {
  .footer {
    padding: 0 50px;
  }

  .footer .row {
    display: block;
  }

  .footer .row .fl {
    margin: 60px 0 0 0;
    width: auto;
  }

  .footer .row .fr .ft .menu {
    justify-content: center;
    margin: -30px 0 0 0;
  }

  .footer .row .fr .ft .menu li {
    width: auto;
  }

  .footer .row .fr .ft .menu li a {
    margin: 0 10px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 0;
  }

  .footer .row {
    padding: 50px 0 80px 0;
  }

  .footer .row .fl .logo {
    width: 179px;
    height: 80px;
  }

  .footer .row .fl .copy {
    margin: 20px 0 0 0;
    line-height: 20px;
    font-size: 10px;
  }

  .footer .row .fr {}

  .footer .row .fr .ft .menu {
    margin: -20px 0 0 0;
  }

  .footer .row .fr .ft .menu li {
    margin: 20px 0 0 0;
  }

  .footer .row .fr .ft .menu li a {
    margin: 0 20px;
  }

  .footer .row .fr .ft .menu li a p {
    font-size: 14px;
    color: #fff;
  }

  .footer .row .fr .fb {
    margin: 50px 0 0 0;
  }

  .footer .row .fr .fb .sns {
    margin: 30px 0 0 0;
  }

  .footer .row .fr .fb .sns a {
    margin: 0 15px;
  }

  .footer .row .fr .fb .sns a img {
    height: 20px;
  }
}

.h1 {
  overflow: hidden;
}

.h2 {
  overflow: hidden;
}

.h3 {
  overflow: hidden;
}

.h4 {
  overflow: hidden;
}

.h5 {
  overflow: hidden;
}

.type_popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 500;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 50px;
  background: rgba(0 0 0 / 70%);
}

.type_popup .row {
  position: relative;
  max-width: 800px;
  background: #fff;
}

.type_popup .row .xi-close {
  position: absolute;
  top: -60px;
  right: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.type_popup.on {
  display: flex;
}

@media (max-width: 767px) {
  .type_popup {
    padding: 0 15px;
  }

  .type_popup .row {}
}

.popup_video {
  position: relative;
  width: 100%;
}

.popup_video iframe {
  display: block;
  max-width: 100%x;
}

@media (max-width: 767px) {
  .popup_video iframe {
    width: 100%;
    height: 200px;
  }
}

.regi_popup {
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.45);
  position: fixed;
  z-index: 500;
  top: 0;
}

.close-today {
  display: none !important;
}

.regi_popup .row {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.regi_popup .row .exit {
  position: absolute;
  top: -10px;
  right: -50px;
  cursor: pointer;
}

.regi_popup .row .view-today {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.regi_popup .row .view-today input {
  margin-right: 10px;
}

.regi_popup .row .view-today label {
  color: #fff;
}

.main-img-popup {
  cursor: pointer;
}

.regi_popup .row .main-img img {
  width: 735px;
}

@media (max-width: 767px) {
  .regi_popup .row .main-img img {
    width: 350px;
  }

  .regi_popup .row .exit {
    top: -50px;
    right: 0;
  }
}

@media (max-width: 480px) {
  .regi_popup .row .main-img img {
    width: 250px;
  }
}

.float {
  position: fixed;
  bottom: 50px;
  right: 40px;
  z-index: 499;
  cursor: pointer;
}

@media (max-width: 480px) {
  .float {
    bottom: 10px;
    right: 10px;
  }

  .float img {
    width: 150px;
  }
}

.show-today {
  display: block;
}



/* 240717 팝업 */

.coupon_popup {
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.45);
  position: fixed;
  z-index: 500;
  top: 0;
}

.close-today {
  display: none !important;
}

.coupon_popup .row {
  position: absolute;
  width: 400px;
  height: 700px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.coupon_popup .row .exit {
  position: absolute;
  top: -27px;
  right: -59px;
  cursor: pointer;
}

.coupon_popup .row .view-today {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coupon_popup .row .view-today input {
  margin-right: 10px;
}

.coupon_popup .row .view-today label {
  color: #FFF;
}

.coupon_popup .row .main-img img {
  width: 100%;
  height: 100px;
}

.coupon_popup .form-group .input-group {
  height: 100px;
}

.coupon_popup .form-group .submit-button {
  margin-top: 15px;
}

.coupon_popup .form-group .input-check-message {
  padding: 14px 0 0 0;
  text-align: center;
  font-weight: 700;
  font-size: 17px;
}



@media(max-width: 767px) {
  .coupon_popup .row .main-img img {
    width: 350px;
  }

  .coupon_popup .row .exit {
    top: -50px;
    right: 0;
  }
}

@media(max-width: 480px) {
  .coupon_popup .row .main-img img {
    width: 250px;
  }
}


.coupon_popup .form-group {
  padding: 20px 25px;
}

.coupon_popup .form-group input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.coupon_popup .popup_btn_close {
  font-size: 20px;
}

.coupon_popup .form-group button {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  background-color: #3b5998;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.coupon_popup .form-group button:hover {
  background-color: #2e4b87;
}

.coupon_popup .notice {
  padding: 20px;
  font-size: 14px;
  color: #555;
}

.coupon_popup .notice div {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.coupon_popup .notice ul {
  padding-left: 20px;
}

.coupon_popup .notice ul li {
  display: list-item;
  list-style: disc !important;
  height: 25px;
}

.coupon_popup .privacy-policy {
  text-align: right;
  padding: 20px;
  font-size: 12px;
  color: #aaa;
  margin-top: 20px;
  cursor: pointer;
}

.coupon_popup .privacy-policy a {
  color: #aaa;
}

.app-store-badge-wrap {
  background: none !important;
}

.app-store-badge {
  width: 100%;
  height: 63px;
}