/*@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800;900&family=BMJUA&display=swap");*/
@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);

.notosanskr * { 
 font-family: 'Noto Sans KR', sans-serif;
}

@font-face {
    font-family: 'BMJUA';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/BMJUA.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

::-moz-selection {
  /* Code for Firefox */
  color: #fff !important;
  background: #aecd53 !important;
}

::selection {
  color: #fff !important;
  background: #aecd53 !important;
}

body {
  overflow-y: scroll;
  scrollbar-color: #acafaf #ededed;
  scrollbar-width: thin;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
  width: 7px;
  height: 8px;
  background-color: #ededed;
  /* or add it to the track */
}

::-webkit-scrollbar-thumb {
  background: #acafaf;
}

a:focus-visible {
  outline: 1px solid;
}
.mainbg {
  background-color: #fcfad6;
}
.bgwhite {
  background-color: #fff;
}
body {
  color: #182022;
  font-size: 16px;
  font-family: "Noto Sans KR", sans-serif;

}

p {
  font-weight: 300;
}

ul {
  padding: 0;
  margin: 0;
}

.wrapper {
  overflow-y: hidden;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-left: 25px;
  padding-right: 25px;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
/*  font-family: "BMJUA", cursive;*/
}

.section-title {
  font-size: 4em;
  margin-bottom: 0px;
  line-height: 90px;
  position: relative;
}

.section-title2 {
  font-size: 2em;
  margin-bottom: 20px;
  line-height: 1.2em;
  position: relative;
}

.section-subtitle {
  font-size: 1.2em;
  color: #7bd900;
  margin-bottom: 15px;
  position: relative;
  padding-right: 190px;
  display: inline-block;
}

.section-subtitle:after {
  content: "";
  background-color: #7bd900;
  height: 2px;
  width: 160px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.no-pad {
  padding: 0 !important;
}

.no-mar {
  margin: 0 !important;
}

.no-border {
  border: none !important;
}
/*
.btn {
  max-width: 250px;
  width: 100%;
  padding: 0 2rem;
  border-radius: 50px;
  font-size: 1em;
  min-height: 75px;
  line-height: 100%;
  font-weight: 500;
  position: relative;
  transition: 0.5s all;
  box-shadow: 6px 6px 0 0 #7bd900;
  box-sizing: border-box;
  border: 1px solid #7bd900;
  font-weight: 700;
  background: #fff;
  transition: 0.2s all;
}

.btn.btn-lg {
  font-size: 1.6em;
  min-height: 102px;
  max-width: 350px;
}

.btn:hover {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 0 #7bd900;
  background-color: #fff;
  color: #7bd900;
  border: 1px solid #7bd900;
}

.btn:focus {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 0 #7bd900;
  background-color: #fff;
  color: #7bd900;
  border: 1px solid #7bd900;

}

.btn-sm {
  min-height: 50px;
  max-width: 140px;
  padding: 0.25em 1em;
  font-size: 1em;
}

.btn-outline-primary,
.btn-outline-primary:hover {
  background-color: #fff;
  color: #7bd900;
  border: 1px solid #7bd900;
}

.btn-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
*/
header {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
/*    position: fixed;*/
    top: 0;
    left: 0;
    right: 0;
    transition: .5s ease-in-out;
    z-index: 999
}

header.header-sm {
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 1);
    min-height: 100px
}

header.nav-up {
    transform: translateY(-150px)
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.nav-menu-button {
    height: 24px;
    width: 30px;
    z-index: 2;
    display: none;
    flex-direction: column;
    justify-content: space-between;
	z-index:1000;

}

.nav-menu-button .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #182022
}

.nav-menu-button .line1 {
    transform-origin: 0 0;
    transition: transform .4s ease-in-out
}

.nav-menu-button .line2 {
    transition: transform .2s ease-in-out
}

.nav-menu-button .line3 {
    transform-origin: 0 100%;
    transition: transform .4s ease-in-out
}

.mobile-menu-open .nav-menu-button .line1 {
    transform: rotate(45deg)
}

.mobile-menu-open .nav-menu-button .line2 {
    transform: scaleY(0)
}

.mobile-menu-open .nav-menu-button .line3 {
    transform: rotate(-45deg)
}

.bg-white {
    background-color: #fff
}

.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none
}

.nav-links>li+li {
    margin-left: 36px
}

.nav-link {
    text-decoration: none;
    font-size: 1.125em;
    font-weight: 500;
    color: #182022;
    padding: 0;
    transition: .5s all;
    position: relative
}

header a.nav-link:hover {
    opacity: 1;
    color: #182022
}

header a.nav-link:before {
    content: "";
    width: 0;
    height: 5px;
    background-color: #7bd900;
    position: absolute;
    bottom: -12px;
    left: 50%;
	border-radius:10px;
    transform: translateX(-50%);
    transition: .5s all
}

header a.nav-link:focus {
    color: #7bd900;
}

header a.nav-link:hover:before,
header a.nav-link.active:before {
    width: 50%
}

header a.nav-link:focus:before,
header a.nav-link.active:before {
    width: 50%
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: centers
}

.nav-menu .nav-social ul {
    list-style: none;
    margin-left: auto;
    display: flex;
    margin-left: 100px
}

.nav-menu .nav-social ul li+li {
    margin-left: 36px
}

.nav-menu .nav-social ul li a {
    font-size: 1.2em;
    color: #fe6666;
    opacity: .9
}

.nav-menu .nav-social ul li a:hover {
    opacity: 1
}

.nav-menu .dropdown-menu.show {
    background-color: #fff;
    transform: translate(0px, 40px);
    padding: 8px 0 !important;
	border:0;
margin-top: 11px !important;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.05);
}


.nav-menu .dropdown-toggle::after {
    transition: 0.5s all;
}

.nav-menu .dropdown-toggle.show::after {
    transform: rotate(180deg);
}

.nav-menu .dropdown-item {
    color: #182022;
    font-weight: 500;
}

.nav-menu .dropdown-item:focus,
.nav-menu .dropdown-item:hover {
    background-color: transparent;
    color: #7bd900;
}

.nav-menu .dropdown-item.active {
    color: #7bd900;
    background-color: transparent;

}

.main-content {
  overflow: hidden;
}

.main-content-internal {
  overflow: hidden;  
}


/*banner*/
.banner {
  position: relative;
}

.banner-wrapper {
 /* min-height: 1100px;*/
   height: 100vh; 
}

.banner .section-title {
  line-height: 125px;
  font-size: 5.3em;
  letter-spacing: 0px;
}

.banner h5 {
  font-size: 1.2em;
  font-family: "Noto Sans KR", sans-serif;
  text-indent: 8px;
  margin-bottom: 12px;
}

.banner .banner-content {
  /* padding-top: 420px; */
  padding-left: calc((100vw - 1170px) / 2);
  position: absolute;
  z-index: 1;
  /* height: 100vh; */
  /* min-height: 1200px; */
  top: 27%;
  /* transform: translateY(-50%); */
}

.banner .banner-content span.lined {
  padding-left: 105px;
}

.banner .banner-content span.lined::before {
  content: "";
  background-color: #d7d7d7;
  height: 5px;
  width: 80px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 1s ease;
}

.banner-floating-images {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 11.5%;
  max-width: 1190px;
  height: 1190px;
  top: 8%;
  left: calc(((100vw - 1170px) / 2) + 370px);
}

.banner-img-wrapper {
  width: 100%;
  height: 100%;
  border: 0px solid #fff;
  border-radius: 50%;
  /* margin-top: 95px; */
  position: relative;
}

/*banner*/
.main {
  position: relative;
}

.main-wrapper {
 /* min-height: 1100px;*/
   height: 100vh; 
}



.main .main-content span.lined::before {
  content: "";
  background-color: #d7d7d7;
  height: 5px;
  width: 80px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 1s ease;
}

.main-wrapper .ftcharacter {
position:absolute;
bottom: -450px;
left: 50%;
  width: 460px;
  margin-left: -230px;
  margin-right: auto;
  transition:1s all;
}

.main-wrapper .ftcharacterhand {
position:absolute;
bottom: 0px;
left: 50%;
  width: 460px;
  margin-left: -230px;
  margin-right: auto;
}

.ftcharacter .main-1 {
  position: absolute;
  bottom: 50px;
  left: 50%;
/*  transform: translate(50%, 0%);*/
  width: 460px;
  margin-left: -230px;
  margin-right: auto;
  z-index:10;
  transition:1s all;
}

.main-wrapper .cloud {
  position: absolute;
  bottom: -50%;
  left: 0;
/*  transform: translate(50%, 0%);*/
  width: 100%;
  z-index:0; 
  transition:all 1s ease .1s; 
}

.main-wrapper .cloud img{
/*  transform: translate(50%, 0%);*/
  width: 100%;
  }
.main-wrapper .tail_bg {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  z-index:1;
  transition:1s all;
}

.main-wrapper .tail_bg img{
/*  transform: translate(50%, 0%);*/
  width: 100%;
  }


.ftcharacter .righteye {
  position: absolute;
  bottom: 99px;
  left: 50%;
/*  transform: translate(50%, 0%);*/
  width: 106px;
  margin-left: -8px;
  margin-right: auto;
  z-index:11;
}
.ftcharacter .lefteye {
  position: absolute;
  bottom: 75px;
  left: 50%;
/*  transform: translate(50%, 0%);*/
  width: 103px;
  margin-left: -112px;
  margin-right: auto;
  z-index:11;
}

.ftcharacter .rightineye {
  position: absolute;
  bottom: 121px;
  left: 50%;
/*  transform: translate(50%, 0%);*/
  width: 57px;
  margin-left: 17px;
  margin-right: auto;
  z-index:12;
}
.ftcharacter .leftineye {
  position: absolute;
  bottom: 95px;
  left: 50%;
/*  transform: translate(50%, 0%);*/
  width: 57px;
  margin-left: -90px;
  margin-right: auto;
  z-index:12;
}

.ftcharacterhand .lefthand {
  position: absolute;
  bottom: -100px;
  left: 48%;
/*  transform: translate(50%, 0%);*/
  width: 143px;
  margin-left: -250px;
  margin-right: auto;
  z-index:10;
}

.ftcharacterhand .righthand {
  position: absolute;
  bottom: -100px;
  left: 52%;
/*  transform: translate(50%, 0%);*/
  width: 171px;
  margin-left: 100px;
  margin-right: auto;
  z-index:10;
}

.banner-img-wrapper .banner-2 {
  position: absolute;
  /* top: 0; */
  bottom: 15%;
  right: 0%;
  /* width: 16.5vw; */
  width: 55%;
  animation-delay: 1s;
}

.banner-wrapper .banner-3 {
  position: absolute;
  top: 0%;
  left: calc(((100vw - 1170px) / 2) - 375px);
  width: 30%;
  animation-delay: 2s;
}

.banner-wrapper .banner-plane {
  position: absolute;
  top: 50%;
  right: -20%;
  width: 7.5vw;
  width: 20%;
  animation-delay: 0.5s;
}
.banner-img-wrapper .banner-4 {
  position: absolute;
  /* top: 5%; */
  top: -10%;
  left: 7%;
  width: 10.75vw;
  width: 35%;
}

.banner-img-wrapper .banner-5 {
  position: absolute;
  top: 13%;
  left: 4%;
  width: 7.5vw;
  width: 30%;
  animation-delay: 0.5s;
}



.banner-wrapper .wavy-partical {
  position: absolute;
  top: 29%;
  left: calc(((100vw - 1170px) / 2) - 170px);
}

.banner-img-wrapper .particle-black {
  position: absolute;
  /* top: 77%; */
  bottom: 9%;
  left: 27%;
}

.banner-img-wrapper .particle-orange {
  position: absolute;
  top: 30%;
  right: 22%;
}

.banner-img-wrapper .particle-white {
  position: absolute;
  top: 31%;
  right: 38%;
  width: 9%;
  z-index: 1;
}

/* .banner-img-wrapper:after {
    width: calc(100% - (280px * 2));
    height: calc(100% - (280px * 2));
} */

.banner-img-wrapper>span {
  border-radius: 50%;
  border: 0px solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - (315px * 2));
  height: calc(100% - (315px * 2));
  z-index: -1;
  width: 47%;
  height: 47%;
}

/*about*/
.about {
  padding-top: 200px;
  position: relative;
}

.about .graphic-imgs .particle-black {
  position: absolute;
  top: 87%;
  left: -1%;
}

.about .graphic-imgs .particle-orange {
  position: absolute;
  top: -15%;
  right: 10%;
}

.about .graphic-imgs .particle-white {
  position: absolute;
  top: 58%;
  left: 3%;
}

.about .graphic-imgs .spiral-arrow {
  position: absolute;
  top: 83%;
  left: 15%;
}

.about p {
  padding-right: 70px;
  margin-bottom: 45px;
}

.about .features {
  display: flex;
  padding-left: calc((100vw - 1170px) / 2);
  padding-top: 50px;
}

.about .features .feature {
  position: relative;
  padding: 187px 170px 100px 100px;
}

.about .features .feature::before {
  content: "";
  /* height: 310px; */
  position: absolute;
  background-color: #f8ffe7;
  border-radius: 50%;
  width: 100%;
  z-index: -1;
  display: block;
  left: 0;
  bottom: 0;
  top: 215px;
}

.about .features .feature-2::before {
  background-color: #f3deab;
}

.about .features .feature-3::before {
  background-color: #e2d8dd;
}

.about .features .feature h6 {
  font-size: 1.1em;
  font-family: "Noto Sans KR", sans-serif;
}

.about .features .feature h4 {
  font-size: 2.4em;
  margin-bottom: 14px;
}

.about .features .feature p {
  font-size: 0.6em;
  padding-right: 0;
  margin: 0;
  line-height: 20px;
  color: #747470;
  font-weight: 500;
}

.about .feature .feature-img {
  width: auto;
  position: absolute;
  right: 0;
  bottom: 5px;
  z-index:-1;
}

.about .features .owl-item:nth-child(2n + 1) .feature-img img {
  animation-delay: 1s;
}

.collection-nft {
  padding-top: 230px;
}

.collection-nft h2 {
  padding-bottom: 20px;
}



.collection-list {
  margin-top: 30px;
  white-space: nowrap;
  animation: moveRighttoLeft 15s ease-in-out infinite;
  position: relative;
  display: inline-flex;
  gap: 30px;
}

.collection-list.reverse {
  animation: moveLeftoRight 15s ease-in-out infinite;
}

.collection-list>li {
  width: 25vw;
}

.collection.row-1 {
  /* margin-left: -125px; */
}

.collection-list .card {
  border-radius: 75px;
  overflow: hidden;
  border-radius: 15%;
}

.collection-nft .container-fluid {
  padding: 0;
}

/* roadmap */

.phase-list {
  list-style: none;
  padding-top: 25px;
}

.phase-list>li {
  padding-top: 50px;
}

.roadmap {
  padding-top: 230px;
  position: relative;
}

.roadmap .vector-shapes .particle-black {
  position: absolute;
  top: -5%;
  right: 0%;
  z-index:-1;
}

.roadmap .vector-shapes .wavy-particle {
  position: absolute;
  bottom: -3%;
  right: -30%;
}

.roadmap .vector-shapes .spiral-arrow {
  position: absolute;
  top: 12%;
  left: 21%;
}

.roadmap h2 {
  padding-bottom: 20px;
}

.section-title .spiral-arrow {
  position: absolute;
  left: 225px;
  top: calc(100% + 100px);
}

.phase-content {
  display: flex;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}

.phase .phase-content h6 {
  font-size: 2.65em;
  font-weight: 500;
  color: #000;
  font-family: "BMJUA", sans-serif;
}

.phase .phase-content h3 {
  color:#7bd900;
  font-size: 1.7em;
  margin: 0px 0 10px;
}

.phase .phase-content p {
  font-size: 1.3em;
  font-weight: 300;
}

.phase-img-box {
/*  background-color: #e9f3ee; */
  border-radius: 50%;
  min-height: 550px;
  position: relative;
}

.phase-art-img {
  position: absolute;
  right: 0;
bottom: 0;
    width: 100%;
}

.phase-art-img {
  border-radius: 10px;
}

.particle-wrap {
  position: absolute;
  width: 140px;
  height: 140px;
  top: 0px;
  left: 0px;
}

.particle-wrap img {
  position: absolute;
  animation-delay: 1s;
}

.particle-wrap img:first-child {
  animation-delay: 0.7s;
}

.particle-wrap .img-small {
  width: 32px;
  height: 32px;
}

.particle-wrap img:first-child {
  top: 0;
  left: 0;
}

.particle-wrap img:last-child {
  bottom: 0;
  right: 0;
}

.phase-reverse .row {
  flex-direction: row-reverse;
}

.phase-reverse .phase-content {
  padding-left: 0px;
}

.phase-list>li:nth-child(2) .phase-img-box {
 /* background-color: #f3deab;*/
}

.phase-list>li:nth-child(3) .phase-img-box {
/*  background-color: #dfccc0;*/
}

.phase-list>li:nth-child(4) .phase-img-box {
/*  background-color: #e9f3ee;*/
}

.phase-list>li:nth-child(2) .phase-img-box .phase-art-img {
  right: 30px;
}

.phase-list>li:nth-child(2) .phase-img-box .particle-wrap,
.phase-list>li:nth-child(3) .phase-img-box .particle-wrap {
  top: 0;
  right: -50px;
  left: auto;
/*
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  */
}

.phase-list>li:nth-child(3) .phase-img-box .phase-art-img {
  top: 0px;
  left: 10px;
  right: auto;
}

.phase-list>li:nth-child(4) .phase-img-box .phase-art-img {
  bottom: -140px;
  left: -30px;
  right: auto;
  top: auto;
}

/*team-section*/
.team {
  padding-top: 260px;
  position: relative;
}

.team-wrapper h2 {
  padding-bottom: 120px;
}

.team-wrapper ul {
  list-style: none;
  margin-bottom: 30px;
}

.team-wrapper .team-spiral-arrow {
  position: absolute;
  top: 11%;
  left: 50%;
}

.team .team-member {
  position: relative;
}

.team .team-member .team-member-img {
  min-height: 475px;
  border-radius: 75px;
  overflow: hidden;
}

.team .team-member .team-member-img img {
  display: block;
  width: 100%;
  border-radius: 75px;
}

.team .team-member .team-member-info {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  padding: 50px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease;
  height: 100%;
}

.team .team-member>img {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: -20px;
  right: 35px;
  transition: 0.5s all;
}

.team .team-member:hover>img {
  visibility: visible;
  opacity: 1;
}

.team .team-member:hover .team-member-img img {
  filter: blur(20px);
}

.team .team-member:hover .team-member-info {
  opacity: 1;
  visibility: visible;
}

.team .team-member .team-member-info .member-designation {
  font-size: 0.6em;
  font-weight: 600;
  color: #182022;
}

.team .team-member .team-member-info h6 {
  font-size: 1.2em;
  font-weight: 500;
  color: #fff;
  font-family: "Noto Sans KR", sans-serif;
}

.team .team-member .team-member-info .member-info {
  font-size: 0.6em;
  padding: 25px 0px;
  color: #182022;
  font-weight: 500;
}

.team .team-member .team-member-info .member-social-icon a {
  color: #fff;
  margin-right: 10px;
}

.team .team-member .team-member-info .member-social-icon a:hover {
  color: #7bd900;
}

.team .team-member .team-member-info .member-social-icon a i {
  font-size: 20px;
}

/*join-community section*/
.join-us-wrapper {
  max-width: 1380px;
  width: 100%;
  height: 1380px;
  border: 1px solid #fbceaa;
  border-radius: 50%;
  margin: 190px auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-floating-images .join-us-wrapper {
  max-width: 1190px;
  margin-top: 95px;
}

.join-us-wrapper:before,
.join-us-wrapper:after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 280px);
  height: calc(100% - 280px);
  border: 1px solid #fbceaa;
  border-radius: 50%;
}

.join-us-wrapper:after {
  width: calc(100% - (280px * 2));
  height: calc(100% - (280px * 2));
}

.join-us-wrapper>span {
  border-radius: 50%;
  border: 1px solid #fce6d2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - (280px * 3));
  height: calc(100% - (280px * 3));
  z-index: -1;
}

.join-us-wrapper>img {
  position: absolute;
}

.join-us-wrapper .join-us-content {
  text-align: center;
}

.join-us-wrapper .join-us-content p {
  font-weight: 500;
  margin-bottom: 40px;
}

.join-us-wrapper .image-1 {
  left: 17%;
  top: 20%;
  border-radius: 50%;
}

.join-us-wrapper .image-2 {
  left: 37%;
  top: -1.5%;
  border-radius: 50%;
}

.join-us-wrapper .image-3 {
  right: 10%;
  top: 10%;
  border-radius: 50%;
}

.join-us-wrapper .image-4 {
  left: 17%;
  bottom: 20%;
  border-radius: 50%;
}

.join-us-wrapper .image-5 {
  right: 21%;
  bottom: 5%;
  border-radius: 50%;
}

.join-us-wrapper .particle-black {
  position: absolute;
  top: 65%;
  left: 9%;
}

.join-us-wrapper .particle-orange {
  position: absolute;
  right: 5%;
  top: 55%;
}

.join-us-wrapper .particle-white {
  position: absolute;
  top: 33%;
  right: 21%;
  z-index: 1;
}

.join-us-wrapper .wavy-partical {
  position: absolute;
  top: 77%;
  right: 12%;
}

.join-us-wrapper>*:nth-child(2n + 1) {
  animation-delay: 1s;
}

.join-us-wrapper>*:nth-child(3n + 1) {
  animation-delay: 0.6s;
}

/*artist section*/
.artist-section {
  padding-top: 150px;
}

.artist-wrapper {
  background-color: #f8ffe7;
  padding: 70px 100px 60px;
  border-radius: 80px;
  padding-right: 44%;
}

.artist-wrapper p {
  font-size: 1em;
  font-weight: 500;
  line-height: 36px;
}

.artist-wrapper .artist-img {
  position: absolute;
  right: -64px;
  bottom: 0;
}

.artist-wrapper .particle-white {
  position: absolute;
  top: 8%;
  right: 38%;
}

.artist-wrapper .particle-black {
  position: absolute;
  top: 34%;
  right: 48%;
}

.artist-wrapper .particle-orange {
  position: absolute;
  top: 6%;
  right: 6%;
}

.artist-wrapper a {
  margin-left: 100px;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid #000;
  text-align: unset;
  text-transform: uppercase;
  font-weight: bold;
}

/*faq starts*/
.faq-section {
  padding: 230px 0;
  position: relative;
}

.faq-section .section-title {
  padding-left: 100px;
}

.faq-section .section-subtitle {
  padding-left: 100px;
}

.faq-section .particle-orange {
  position: absolute;
  bottom: 0;
  right: -15%;
  width: 20%;
}

.faq-section .particle-black {
  position: absolute;
  top: 33%;
  left: -7%;
}

.faq-section .wavy-particle {
  position: absolute;
  bottom: 2%;
  left: -25%;
}

.faq-accordian {
  list-style: none;
  padding-top: 50px;
}

.faq-wrapper .faq-accordian .faq-accordian-item {
  border-bottom: 1px solid #eee;
  padding-top: 20px;
  padding-bottom: 20px;
}

.faq-wrapper .faq-accordian .faq-accordian-item .accordian-title {
  font-size: 1.3em;
  position: relative;
  cursor: pointer;
  padding-right: 40px;
  letter-spacing: 0px;
  font-weight: 400;
}

.faq-wrapper .faq-accordian .faq-accordian-item .accordian-title:after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 5px;
  color: #7bd900;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  top: 3px;
}

.faq-wrapper .faq-accordian .faq-accordian-item .accordian-title.open:after {
  content: "\f068";
}

.faq-wrapper .faq-accordian .faq-accordian-item .accordian-content {
  font-size: 1em;
  color: #747470;
  padding-top: 20px;
  display: none;
}

/* footer starts*/
footer {
	margin-top:0px;
	bottom: 0;
    width: 100vw;
/*     height: 50px; */
    text-align: center;
    font-size: 0.725em;
	color:#fff;
	background:#aecd53;
/*	position: fixed;*/
	padding:8px 0;
	z-index:30;
}
.relative {
position:relative;
}
footer small{
    font-size: 0.9em;
}

.footer-cont .section-title {
  text-align: center;
}

.footer-cont p {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 80px;
}

.footer-cont .social-icon {
  background-color: #fff;
  min-height: 230px;
  border-radius: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-cont .social-icon a img {
  transform: scale(1);
}

.footer-cont .social-icon a:hover img {
  transform: scale(0.95);
}

.copyright-para {
  padding-top: 50px;
  text-align: center;
  font-size: 12px;
}

/*internal pages*/
.internal-pages header {
  padding: 90px;
}

.internal-pages .section-subtitle:after {
  display: none;
}

.btn.more {
  max-width: 110px;
  font-size: 20px;
  min-height: 50px;
  margin-top: 50px;
  color: #7bd900;

}

.btn.more a {
  max-width: 110px;
  font-size: 20px;
  min-height: 50px;
  margin-top: 50px;
  color: #7bd900;
}

.page-banner {
/*  margin-top: 120px;*/
  background-color: #f8ffe7;
  padding-top: 110px;
  padding-bottom: 80px;
  text-align: center;
  position:relative;
}

.page-banner .page-heading {
  font-size: 3em;
/*  padding-bottom: 10px;*/
  font-family: "BMJUA", cursive;
  font-weight: 700;

}

.page-banner .sub-heading {
  font-size: 16px;
}

.sub-page-banner {
/*  margin-top: 120px;*/
  background-color: #f8ffe7;
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
  position:relative;
  margin-bottom:80px;
}

.sub-page-banner .page-heading {
  font-size: 3em;
  padding-bottom: 0px;
  font-family: "BMJUA", cursive;
  font-weight: 700;

}

.sub-page-banner .sub-heading {
  font-size: 16px;
}

.sub-page-no-banner {
/*  margin-top: 120px;*/
  background-color: #fff;
  padding-bottom: 30px;
  text-align: center;
  position:relative;
  margin-bottom:80px;
}

/*about html*/
.about-nft {
  position: relative;
  margin-top: 150px;
}

.about-nft .section-title {
	font-size: 1.7em;
    font-weight:400;
	line-height: 1.3em;
    margin-bottom: 10px;

}

.about-nft .section-subtitle {
  font-size: 1em;
  color: #182022;
  padding-right: 110px;
  font-weight: 300;
}



.about-nft-img .banner-img-1 {
  position: absolute;
  top: 15%;
  right: 7%;
}

.about-nft-img .banner-img-2 {
  position: absolute;
  top: 53%;
  right: -22%;
}

.about-nft-img .banner-img-2 img {
  width: 50%;
}

.about-nft-img .banner-img-3 {
  position: absolute;
  top: 50%;
  right: 22%;
}

.about-nft-img .banner-img-3 img {
  width: 50%
}

.about-why {
  display: flex;
  margin-bottom: 200px;

}

.about-why.why-list {
  list-style: none;
  margin-top: 100px;
}

.about-why .why-card {
  margin-right: 70px;
}

.about-why .why-card h3 {
  font-size: 40px;
  color: #182022;
  margin-top: 20px;

}

.about-why .why-card h6 {
  font-size: 20px;
  color: #182022;
  margin-bottom: 12px;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 600;
}

.about-why .why-card p {
  font-size: 19px;
  color: #182022;
  margin-right: 40px;

}

.about-sec.why-digistic .feature-img {
  position: relative;
}

.about-sec.why-digistic .feature-img::after {
  content: '';
  position: absolute;
  height: 310px;
  background-color: #f3deab;
  border-radius: 160px;
  width: 80%;
  z-index: -1;
  display: block;
  left: -100px;
  bottom: 0;
  top: 230px;
}

.about-features {
  margin-top: 150px;

}

.about-features .feature-content {
  margin-bottom: 60px;
  list-style: none;
}

.about-features .feature-content li {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 40px;
}

.about-features .feature-content li span {
  padding-left: 20px;
}

.about-features .feature-content li .fa-solid {
  margin: auto;
  color: #7bd900;
  font-size: 20px;
}

.about-features button {
  margin-left: 30px;
  color: #7bd900;

}

.about-features button:hover {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 0 #7bd900;
}

.about-team-section {
  padding-top: 300px;
  overflow: hidden;
  position: relative;
  padding-bottom: 100px;
  text-align: center
}

.about-team-section .section-title {
  font-size: 3.2em;
}

.about-team-section .section-subtitle {
  font-size: 1em;
  color: #182022;
  padding-right: 0px;
  font-weight: 600;
}

.about-team-section .team-member-list {
  padding: 0;
  margin: 0;
  position: relative;
  display: grid;
  grid-template-columns: 30% 30% 30%;
  column-gap: 3%;
  justify-content: center;
  align-content: center;
  list-style: none;
  margin-top: 80px
}



.about-team.team-member-list:before {
  display: none;
}

.about-team-member {
  text-align: center
}

.about-team .about-team-member {
  max-width: 320px;
}

.about-team-member .team-member-social a:hover {
  color: #fff
}

.about-team-member .team-member-img {
  background-color: #f8ffe7;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;

}

.about-team-member img {
  height: 400px;
  transition: 0.5s ease-in-out;
  filter: grayscale(100%);
  margin-top: 30px;
}

.about-team-member img:hover {
  filter: grayscale(0%);

}

.about-team-member .team-member-footer {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  min-width: 140px
}

.about-team-member .team-member-footer h5 {
  font-size: 1em;
  color: #7bd900;
  text-align: center;
  font-family: "BMJUA", cursive;
  font-weight: 500;
}

.about-team-member .team-member-footer span {
  font-size: 0.8em;
  color: #182022;
  font-weight: 600;
}

.about-team-member .team-member-social {
  font-size: .8em;
  margin-top: 10px;
  display: flex;
  gap: 15px;
  justify-content: center
}

.about-team-member .team-member-social a {
  color: #182022;
}

.about-team-member .team-member-social a:hover {
  color: #7bd900;
}

.about-sec.faq-section .section-title {
  font-size: 3.2em;
  padding-left: 0;
}

.about-sec p.faq-info {
  font-size: 1em;
  color: #182022;
  padding-right: 0px;
  font-weight: 600;
}

.about-sec.faq-section .phase-art-img {
  position: absolute;
  left: -20%;
  top: 10%;
}

.about-sec.faq-section .faq-wrapper .faq-accordian .faq-accordian-item {
  border-top: 1px solid #182022;
  border-bottom: 0;
}

/*blog section*/
.blog-section {
  margin-top: 180px;
}

.blog-section .blogs {
  /* margin-top: 40px; */
}

.blogs .blog-img img {
  border-radius: 35px;
  width: 100%;
}




.blog-info img {
  max-width: 16px;
}

.blog-details {
  margin-top: 40px;
  display: flex;
  font-size: 0.8em;
  font-family: "Noto Sans KR", sans-serif;
  color: #182022;
  gap: 14px
}

.blog-details a {
  color: #182022;
  text-decoration: none;
}

.blog-details a:hover {
  color: #7bd900;
}

.blog-details .blog-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-heading {
  margin-top: 30px;
}

.blog-heading a {
  color: #182022;
  font-size: 2.4em;
  line-height: 65px;
  font-family: "BMJUA", cursive;
  text-decoration: none;
}

.blog-heading a:hover {
  color: #7bd900;
}

.blog-content span {
  position: relative;
  display: block;
  padding-left: 30px;
}

.blog-content>span::before {
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  left: 2%;
  width: 3px;
  background-color: #7bd900;
}

.blog-content {
  color: #182022;
  font-family: "Noto Sans KR", sans-serif;
  border-bottom: 1px solid #121722;
  font-size: 1em;
  padding-bottom: 40px;
  padding-right: 70px;
  font-weight: 600;
  margin: 40px 0px;
}

.blog-content button a {
  text-decoration: none;
  color: #fff
}

.blog-comments {
  border-bottom: 2px solid #121722;

}

.blog-comments h4 {
  margin-bottom: 45px;
}

.blog-headings h4 {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 1.2em;
  font-weight: 700;
}

.blog-comment-img img {
  border-radius: 20px;
}

.comment-para {
  padding-left: 30px;
  color: #000;
  font-size: 0.8em;
  font-weight: 500;
}

.comment-para p {
  margin-bottom: 10px;
}

.commentor-name {
  font-weight: 700;
  color: #000;
  font-size: 1em;
  font-family: "Noto Sans KR", sans-serif;
}

.comment-footer {
  font-size: 0.75em;
  display: flex;
  gap: 15px
}

.nftpost-date {
  font-size: 0.6em;
  color: #121722;

}

.post-list {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.post-list .post-img img {
  border-radius: 8px;
  width: 100px;
}

.post-title {
  font-weight: 700;
  font-size: 0.6em;
  font-family: "Noto Sans KR", sans-serif;

}

.post-title a {
  color: #182022;
  text-decoration: none;
}

.post-title:hover a {
  color: #7bd900
}

.comment-footer a {
  color: #7bd900;
  text-decoration: none;
}

.user-comment {
  margin-bottom: 50px;
  display: flex;
}

.post-comments {
  margin-bottom: 150px;
}

.post-comments h4 {
  padding: 80px 0;
}

.post-comments .input-container label {
  font-size: 0.8em;
  margin-bottom: 10px;
  font-weight: 600;
}

.post-comments .input-container input,
.post-comments .input-container textarea {
  padding: 20px 16px;
  border: 2px solid #182022;
  font-size: 0.8em;
  font-weight: 600;
  color: #182022;
  background: transparent;
  border-radius: 8px;
  margin-bottom: 40px;
}

.post-comments .input-container input:focus,
.post-comments .input-container textarea:focus {
  border: 2px solid #7bd900;
  box-shadow: none;
}

.post-comments .input-container input:active,
.post-comments .input-container textarea:active {
  border: 2px solid #7bd900;

}

.post-comments .input-container ::placeholder {
  color: #182022
}

.post-comments button {
  color: #7bd900;
  margin-top: 30px;
}

.post-comments button:hover {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 0 #7bd900;
}

.blogs-right {
  /* margin-top: 40px; */
}

.right-sec {
  background-color: #f8ffe7;
  padding: 40px 30px;
  margin-bottom: 48px;
  border-radius: 35px;
}

.categories-section {
  padding: 48px 35px;
}

.search-section {
  position: relative;
}

.search-section .input-container {
  margin-bottom: 0;
}

.search-section .input-container input {
  padding: 20px 16px;
  border: 2px solid #000;
  font-size: 0.8em;
  font-weight: 600;
  color: #000;
  background: #fdf2e5;
}

.search-section .input-container input:focus,
.search-section .input-container input:active {
  box-shadow: none;
  border: 1px solid #7bd900;
}

.search-section .search-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14%;
}

.post-section .blog-headings {
  margin-bottom: 40px;

}

.categories-section .blog-headings {
  padding-bottom: 35px;
}

.categories-section ul {
  list-style: none;
  font-size: 0.8em;
  font-weight: 700;

}

.categories-section ul li+li {
  margin-top: 25px;
}

.categories-section .categories-list a {
  color: #182022;
  text-decoration: none;
}

.categories-section .categories-list.active a {
  color: #7bd900;
}

.categories-section .categories-list:hover a {
  color: #7bd900;
}

.tag-section .blog-headings {
  margin-bottom: 30px;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.blog-tags a {
  font-size: 0.8em;
  font-weight: bold;
  border-radius: 25px;
  color: #182022;
  padding: 10px 20px;
  text-decoration: none;
  background-color: #fdf2e5;
}

.blog-tags a:hover {
  background-color: #7bd900;
  color: #fff;
}

.blog-tags a.active {
  background-color: #7bd900;
  color: #fff;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px
}

.blog-pagination button {
  color: #182022;
  text-decoration: none;
  background-color: transparent;
  max-width: 50px;
  border: 2px solid #182022;
  min-height: 45px;
  font-size: 0.8em;
  padding: 0;
  box-shadow: none;

}

.blog-pagination button:hover,
.blog-pagination button:active {
  background-color: #7bd900;
  transform: translateY(0px);
  color: #fff;
  border: none;
  font-weight: 600;
}

.blog-pagination .page-link.active {
  background-color: #7bd900;
  color: #fff;
  border: none;
  font-weight: 600;
}

.blog-pages {
  padding-top: 60px;
  padding-bottom: 180px;
}

/*blog-section ends*/

/* Contact Us  */
.contact-section {
  padding: 160px 0;
}

.contact-section h2 {
  font-size: 3.2em;
  color: #182022;
  margin-bottom: 30px;
  font-weight: bold;
}

.contact-section p {
  font-size: 0.8em;
  font-weight: 500;
  color: #182022;
  margin-bottom: 72px;
  padding-right: 100px;
}

.contact-info-list {
  margin-top: 55px;
}

.contact-section .input-container {
  margin-bottom: 36px;
}

.contact-section .input-container label {
  font-size: 1.2em;
  margin-bottom: 12px;
  font-weight: 500;
}

.contact-section .input-container input,
.contact-section .input-container textarea {
  min-height: 72px;
  border-radius: 8px;
  background: transparent;
  border: 2px solid #182022;
  color: #182022;
  font-size: 0.8em;
  font-weight: 500;
  padding: 12px 24px;

}

.contact-section .input-container input:focus,
.contact-section .input-container textarea:focus {
  background: transparent;
  box-shadow: none;
  outline: none;
  color: #182022;
  border-color: #182022;
}

.contact-section .form-container .btn {
  margin-top: 60px;
  color: #7bd900;

}

.contact-section .form-container .btn:hover {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 0 #7bd900;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  margin-bottom: 78px;
}

.contact-info-item img {
  margin-bottom: 15px;
}

.contact-info-item span {
  font-size: 0.8em;
  font-weight: 500;
  color: #182022;
  font-weight: 500;
}

.contact-info-item a {
  font-size: 1.2em;
  text-decoration: none;
  color: #182022;
  font-weight: 500;
}

.contact-info-item p {
  font-size: 1.2em;
  text-decoration: none;
  color: #182022;
  padding: 0;
}

.contact-info-item:hover a {
  color: #7bd900;
}

/*contact section ends*/

/* Privacy Policy  */

.privacy-section {
  padding: 160px 0px 100px 0px;
}


.privacy-section .col-sm-12 {

  margin-bottom: 40px;


}

.privacy-section h3 {
  font-size: 3.2em;
  color: #182022;
  margin-bottom: 30px;
}

.privacy-section p {
  font-size: 1em;
  line-height: 1.6em;
  color: #182022;


}

.privacy-section ol {
  list-style-position: outside;
  font-size: 1em;
  line-height: 1.6em;
  font-weight: 500;
  color: #182022;
  padding-left: 20px;


}

.privacy-section li {
  margin-bottom: 20px;


}


.privacy-section .section-title {
  line-height: 1em;
  font-size: 2.2em;
  font-weight: 700;
  letter-spacing: .5px;
  color: #182022;

}

.privacy-section button {
  color: #7bd900;

}

.privacy-section .btn:focus,
.privacy-section .btn:hover,
.privacy-section .btn:active,
.privacy-section .btn-primary:focus,
.privacy-section .btn-primary:hover,
.privacy-section .btn-primary:active {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 0 #7bd900;
}

/*privacy section ends*/



/* Modal MD 770 */
/* Modal SM 570 */
.modal-sm .modal-dialog {
  max-width: 570px;
}

.modal-md .modal-dialog {
  max-width: 770px;
}

.modal-content {
  border-radius: 40px;
}

.modal-header {
  padding: 70px 70px 60px;
  border: 0;
  position: relative;
}

.modal-header .modal-title {
  color: #182022;
  font-size: 2.4em;
  font-weight: bold;
}


.modal-header .btn-close {
  color: #000;
  background: url(../images/close-icon.png) no-repeat center;
  opacity: 1;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 40px;
  top: 40px;
}

.modal-body {
  padding: 0 70px 70px;
}

.wallet-box {
  border: 1px solid #182022;
  border-radius: 20px;
  padding: 40px 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  height: 100%;
}

.wallet-box:hover {
  border: 1px solid #7bd900;
  background: rgba(251, 230, 230, 0.2);
  cursor: pointer;

}

.wallet-box h5 {
  font-size: 1.2em;
  color: #182022;
  margin: 0;
  margin-top: 8px;
}

.wallet-box p {
  font-size: 0.8em;
  color: #182022;
  text-align: center;
}



.modal .form-container {
  color: #182022;
  text-align: center;
}

.modal .input-container {
  margin-bottom: 30px;
}

.modal .input-container label {
  color: #182022;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.modal .input-container input {
  color: #182022;
  font-weight: bold;
  padding: 20px 12px;
  border: 2px solid #182022;
}

.modal .input-container input:focus {
  border-color: #7bd900;
}

.modal .input-container label a {
  color: #7bd900;
  font-size: 0.8em;
  text-decoration: none;
}

.modal .form-container .btn {
  margin-top: 70px;
  max-width: 80%;
  margin: 70px auto 0;
  color: #7bd900;
}

.modal .form-check {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal .form-check .form-check-input {
  width: 21px;
  height: 21px;
  border: 1px solid #182022;
  border-radius: 4px;
}

.modal .form-check .form-check-label {
  color: #182022;
  font-size: 0.8em;
}

.form-check-input:focus {
  box-shadow: none;
}

.another-way {
  color: #182022;
  margin-top: 60px;
  text-align: center;
  margin-bottom: 50px;
}

.modal .form-container .btn:focus,
.modal .form-container .btn:active {
  box-shadow: none;
  color: #fff;
  background-color: #7bd900;
}

.another-way>div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 24px;
  margin-top: 16px;
}


.another-way>div a:hover {
  color: #7bd900;
}


.modal .form-container>p {
  color: #182022;
  text-align: center;
}

.modal .form-container>p a {
  color: #7bd900;
  text-decoration: none;
}


/*modals ends*/


.preloader_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100vw;
  height: 100vh;
  background-color: rgb(255 255 255);
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: 99999999999999;
}

.preloader_inner {
  margin: auto;
  text-align: center;
  font-family: 'BMJUA';
  font-size: 5em;
  font-weight: 600;
  color: #162022;
  margin-top: 8px;
  display: block;
  line-height: 1em;
}

.preloader.hide {
  visibility: hidden !important;
  opacity: 0 !important;
}

.preloader img {
  max-width: 300px;
  display: block;
  margin: 0 auto;
}




.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  background-color: #7bd900;
}

.infiniteBounce {
  animation-name: bounceUp;
  animation-duration: 3s;
  animation-delay: 1.5s;
  animation-iteration-count: infinite;
}

.infiniteBounce4 {
  animation-name: bounceUp;
  animation-duration: 5s;
  animation-delay: 1.5s;
  animation-iteration-count: infinite;
}

.infiniteBounce2 {
  animation-name: moveLeftoRight;
  animation-duration: 30s;
  animation-delay: 1.5s;
  animation-iteration-count: infinite;
}


.infiniteplane {
  animation-name: fmoveRighttoLeft;
  animation-duration: 15s;
  animation-delay: 7s;
  animation-iteration-count: infinite;
}

.infiniteBounce3 {
  animation-name: moveRighttoLeft;
  animation-duration: 30s;
  animation-delay: 1.5s;
  animation-iteration-count: infinite;
}

.infiniteZoomInOut {
  animation-name: zoomIn;
  animation-duration: 2s;
  animation-delay: 1.5s;
  animation-iteration-count: infinite;
}

.loadup {
  animation-name: slideup;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.loaddown {
  animation-name: slidedown;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.loaduptail {
  animation-name: slideuptail;
  animation-duration: 1.4s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.loaddowntail {
  animation-name: slidedowntail;
  animation-duration: 1.4s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.loadupface {
  animation-name: slideupface;
  animation-duration: 1.2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.loaddownface {
  animation-name: slidedownface;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.loaduphand {
  animation-name: slideuphand;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.loaddownhand {
  animation-name: slidedownhand;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}



@keyframes slideupface { 0% { bottom:-450px; } 100% { bottom:0px; } }
@keyframes slidedownface { 0% { bottom:0px; } 100% { bottom:-550px; } }

@keyframes slideuphand { 0% { bottom:-100px; } 100% { bottom:-20px; } }
@keyframes slidedownhand { 0% { bottom:-20px; } 100% { bottom:-100px; } }

@keyframes slideuptail { 0% { bottom:-100px; } 100% { bottom:50px; } }
@keyframes slidedowntail { 0% { bottom:50px; } 100% { bottom:-100px; } }

@keyframes slideup {  0% { bottom:-50%;opacity:0;  } 100% { bottom:0; opacity:1;} }
@keyframes slidedown { 0% { bottom:0%; opacity:1;  } 100% { bottom:-50%; opacity:0;} }


@keyframes fmoveRighttoLeft {
  0% {
    transform: translate(0%, 0%);
  }

  100% {
    transform: translate(-1000%,-500%);
  }
}

@keyframes moveRighttoLeft {
  0% {
    transform: translateX(0%);
  }

  50% {
    transform: translateX(-36%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes moveLeftoRight {
  0% {
    transform: translateX(-36%);
  }

  50% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-36%);
  }
}

@keyframes bounceUp {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

.green{
color:#7bd900;
}
.darkgreen{
color:#0a5157;
}


.about-banner {
    background: #fff url("../../images/about_bg.jpg") no-repeat 0px 0px;
    background-size: 100% auto;
	background-size: cover;
}

.history-banner {
    background: #fff url("../../images/history_bg.jpg") no-repeat 0px 0px;
    background-size: 100% auto;
	background-size: cover;
}

.location-banner {
    background: #fff;
    background-size: 100% auto;
	background-size: cover;
}

.board-banner {
    background: #fff url("../../images/board_bg.jpg") no-repeat 0px 0px;
    background-size: 100% auto;
	background-size: cover;
}


.member-banner {
    background: #fff url("../../images/member_bg.jpg") no-repeat 0px 0px;
    background-size: 100% auto;
	background-size: cover;
}

.franchise-banner {
    background: #fff url("../../images/franchise_bg.jpg") no-repeat 0px 0px;
    background-size: 100% auto;
	background-size: cover;
}

/*about html*/
.about-page {
  position: relative;
/*  margin-top: -50px;*/
}

.about-page .imgbox {
	text-align:center;
	border-bottom:1px solid #251d1f;
}

.about-page-content {
	margin-top:35px;
	background:#fff;
}

.about-page-content p{
font-size:1.3em;
}

.about-page .section-title {
	font-size: 2.3em;
    font-weight:400;
	line-height: 1.3em;
    margin-bottom: 15px;

}

.about-page .section-subtitle {
  font-size: 1em;
  color: #182022;
  padding-right: 110px;
  font-weight: 300;
}

.about-page-img .banner-img-1 {
  position: absolute;
  top: 15%;
  right: 7%;
}

.about-page-img .banner-img-2 {
  position: absolute;
  top: 53%;
  right: -22%;
}

.about-page-img .banner-img-2 img {
  width: 50%;
}

.about-page-img .banner-img-3 {
  position: absolute;
  top: 50%;
  right: 22%;
}

.about-page-img .banner-img-3 img {
  width: 50%
}

/* about-section */

.about-section .phase-list {
  list-style: none;
  padding-top: 25px;
}

.about-section .phase-list>li {
  padding-top: 50px;
}

.about-section {
  padding-top: 0px;
  padding-bottom: 50px;
  position: relative;
}

.about-section .vector-shapes .particle-black {
  position: absolute;
  top: -5%;
  right: 0%;
  z-index:-1;
}

.about-section .vector-shapes .wavy-particle {
  position: absolute;
  bottom: -3%;
  right: -30%;
}

.about-section .vector-shapes .spiral-arrow {
  position: absolute;
  top: 12%;
  left: 21%;
}

.about-section h2 {
  padding-bottom: 20px;
}

/* franchise-section */

.franchise-section .phase-list {
  list-style: none;
  padding-top: 25px;
}

.franchise-section .phase-list>li {
  padding-top: 50px;
}

.franchise-section {
  padding-top: 0px;
  padding-bottom: 50px;
  position: relative;
}

.franchise-section .vector-shapes .particle-black {
  position: absolute;
  top: -5%;
  right: 0%;
  z-index:-1;
}

.franchise-section .vector-shapes .wavy-particle {
  position: absolute;
  bottom: -3%;
  right: -30%;
}

.franchise-section .vector-shapes .spiral-arrow {
  position: absolute;
  top: 12%;
  left: 21%;
}

.franchise-section h2 {
  padding-bottom: 20px;
}

.location-page {
  position: relative;
/*  margin-top: 50px;*/
}

.location-page .imgbox {
	text-align:center;
	border-bottom:1px solid #251d1f;
}

	.hexa{
  border: 0px;
  float: left;
  text-align: center;
  height: 60px;
  width: 60px;
  font-size: 22px;
  background: #f0f0f0;
  color: #3c3c3c;
  position: relative;
  margin-top: 15px;
  border-radius:60px;
}

.timeline {
  position: relative;
  padding: 0;
  width: 100%;
  margin-top: 20px;
  list-style-type: none;
}

.timeline:before {
  position: absolute;
  left: 50%;
  top: 0;
  content: ' ';
  display: block;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  background: rgb(213,213,213);
  background: -moz-linear-gradient(top, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(100%,rgba(125,185,232,1)));
  background: -webkit-linear-gradient(top, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
  background: -o-linear-gradient(top, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
  background: -ms-linear-gradient(top, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
  background: linear-gradient(to bottom, rgba(213,213,213,0) 0%, rgb(213,213,213) 8%, rgb(213,213,213) 92%, rgba(213,213,213,0) 100%);
  z-index: 5;
}

.timeline li {
  padding: 2em 0;
}

.timeline .hexa{
  width: 16px;
  height: 16px;
  position: absolute;
  background: #aecd53;
  z-index: 5;
  left: 0;
  right: 0;
  margin-left:auto;
  margin-right:auto;
  top: -30px;
  margin-top: 0;
}

.timeline .hexa:before {
  border-bottom: 4px solid #aecd53;
  border-left-width: 8px;
  border-right-width: 8px;
  top: -4px;
}

.timeline .hexa:after {
  border-left-width: 8px;
  border-right-width: 8px;
  border-top: 4px solid #aecd53;
  bottom: -4px;
}

.direction-l,
.direction-r {
  float: none;
  width: 100%;
  text-align: center;
}

.flag-wrapper {
  text-align: center;
  position: relative;
}

.flag {
  position: relative;
  display: inline;
  background: rgb(255,255,255);
  font-weight: 600;
  z-index: 15;
  padding: 6px 10px;
  text-align: left;
  border-radius: 5px;
}

.direction-l .flag:after,
.direction-r .flag:after {
  content: "";
  position: absolute;
  left: 50%;
  top: -15px;
  height: 0;
  width: 0;
  margin-left: -8px;
  border: solid transparent;
  border-bottom-color: rgb(255,255,255);
  border-width: 8px;
  pointer-events: none;
}

.direction-l .flag {
  -webkit-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  -moz-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
}

.direction-r .flag {
  -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  -moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
}

.time-wrapper {
  display: block;
  position: relative;
  margin: 4px 0 0 0;
  z-index: 14;
  line-height: 1em;
  vertical-align: middle;
  color: #fff;
}

.direction-l .time-wrapper {
  float: none;
}

.direction-r .time-wrapper {
  float: none;
}

.time {
  color: #aecd53;
/*  display: inline-block;*/
	background:#fff;
/*  padding: 8px;*/
  font-size:2.35em;
  font-weight:500;
  letter-spacing:-1px;
}

.desc {
  position: relative;
  margin: 1em 0 0 0;
  padding: 1em;
  background: rgb(254,254,254);
  -webkit-box-shadow: 0 0 1px rgba(0,0,0,0.20);
  -moz-box-shadow: 0 0 1px rgba(0,0,0,0.20);
  box-shadow: 0 0 1px rgba(0,0,0,0.20);
  z-index: 15;
}

.desc .title{
	font-weight: 400;
    font-size: 2.125em;
	padding: 1em 0;
}

.desc .description{
	padding: 5px 0 10px;
	font-size:1.5em;
}

.direction-l .desc,
.direction-r .desc {
  position: relative;
	font-weight: 300;
    margin: 1em 0 0 0.75em;
    font-size: 0.7em;
  padding: 1em;
  z-index: 15;
}

@media(min-width: 768px){
  .timeline {
    width: 660px;
    margin: 0 auto;
    margin-top: 20px;
  }

  .timeline li:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  
  .timeline .hexa {
    left: -28px;
    right: auto;
    top: 8px;
  }

  .timeline .direction-l .hexa {
    left: auto;
    right: -28px;
  }

  .direction-l {
    position: relative;
    width: 310px;
    float: left;
    text-align: right;
  }

  .direction-r {
    position: relative;
    width: 310px;
    float: right;
    text-align: left;
  }

  .flag-wrapper {
    display: inline-block;
  }
  
  .flag {
    font-size: 18px;
  }

  .direction-l .flag:after {
    left: auto;
    right: -16px;
    top: 50%;
    margin-top: -8px;
    border: solid transparent;
    border-left-color: rgb(254,254,254);
    border-width: 8px;
  }

  .direction-r .flag:after {
    top: 50%;
    margin-top: -8px;
    border: solid transparent;
    border-right-color: rgb(254,254,254);
    border-width: 8px;
    left: -8px;
  }

  .time-wrapper {
    display: inline;
    vertical-align: middle;
    margin: 0;
  }

  .direction-l .time-wrapper {
    float: left;
  }

  .direction-r .time-wrapper {
    float: right;
  }

  .time {
    padding: 5px 10px;
  }

  .direction-r .desc {
    margin: 1em 0 0 0.75em;
  }
}

@media(max-width:1600px){
  .timeline {
    width: 1100px;
    margin: 0 auto;
    margin-top: 120px;
  }

  .direction-l {
    position: relative;
    width: 530px;
    float: left;
    text-align: right;
  }

  .direction-r {
    position: relative;
    width: 530px;
    float: right;
    text-align: left;
  }
}

	.menu_icon{
	position:absolute;
	width:200px;
	height:200px;
	border-radius:50%;
	background:#fff;
	text-align:center;
	font-size:1.25em;
	padding:25px;
	transition:ease 0.5s;
	cursor:pointer;
	z-index:10;
	}

@media(min-width:951px) and (max-width:1500px) {
	.menu_icon{
	position:absolute;
	width:200px;
	height:200px;
	border-radius:50%;
	background:#fff;
	text-align:center;
	font-size:1.25em;
	padding:25px;
	transition:ease 0.5s;
	cursor:pointer;
	z-index:10;
	}
	.menu_icon1{
	opacity:0;
	top:25%;
	left:10%;
	border:7px solid #b8e9dc;
	}

	.menu_icon2{
	opacity:0;
	top:10%;
	left:33%;
	border:7px solid #e9e4b8;
	}

	.menu_icon3{
	opacity:0;
	top:25%;
	right:33%;
	border:7px solid #b8e5e9;
	}
	.menu_icon4{
	opacity:0;
	top:20%;
	right:10%;
	border:7px solid #dde9b8;
	}
}

@media(min-width:1501px){
	.menu_icon{
	position:absolute;
	width:280px;
	height:280px;
	border-radius:50%;
	background:#fff;
	text-align:center;
	font-size:1.25em;
	padding:25px;
	transition:ease 0.5s;
	cursor:pointer;
	z-index:10;
	}
	.menu_icon1{
	opacity:0;
	top:25%;
	left:10%;
	border:7px solid #b8e9dc;
	}

	.menu_icon2{
	opacity:0;
	top:10%;
	left:30%;
	border:7px solid #e9e4b8;
	}

	.menu_icon3{
	opacity:0;
	top:25%;
	right:33%;
	border:7px solid #b8e5e9;
	}
	.menu_icon4{
	opacity:0;
	top:20%;
	right:10%;
	border:7px solid #dde9b8;
	}
}
@media(min-width:551px) and (max-width:950px) {
 	.menu_icon{
	position:absolute;
	width:200px;
	height:200px;
	border-radius:50%;
	background:#fff;
	text-align:center;
	font-size:1.25em;
	padding:25px;
	transition:ease 0.5s;
	cursor:pointer;
	z-index:10;
	}
	.menu_icon1{
	opacity:0;
	top:25%;
	left:10%;
	border:7px solid #b8e9dc;
	}

	.menu_icon2{
	opacity:0;
	top:10%;
	left:33%;
	border:7px solid #e9e4b8;
	}

	.menu_icon3{
	opacity:0;
	top:25%;
	right:33%;
	border:7px solid #b8e5e9;
	}
	.menu_icon4{
	opacity:0;
	top:20%;
	right:10%;
	border:7px solid #dde9b8;
	}
}
@media(max-width:550px){
	.menu_icon{
	position:absolute;
	width:180px;
	height:180px;
	border-radius:50%;
	background:#fff;
	text-align:center;
	font-size:1.15em;
	padding:25px;
	transition:ease 0.5s;
	cursor:pointer;
	z-index:10;
	}
	.menu_icon1{
	opacity:0;
	top:120px !important;
	left:1%;
	border:7px solid #b8e9dc;
	}

	.menu_icon2{
	opacity:0;
	top:120px !important;
	right:1%;
	border:7px solid #e9e4b8;
	}

	.menu_icon3{
	opacity:0;
	top:300px !important;
	left:1%;
	border:7px solid #b8e5e9;
	}
	.menu_icon4{
	opacity:0;
	top:300px !important;
	right:1%;
	border:7px solid #dde9b8;
	}

}

	.menu_icon img{
	width:100%;
	z-index:10;
	}

	.menu_icon:hover{
	transform:scale(1.3);
	z-index:11;
	}




.iconup1 {
  animation-name: icon1slideup;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;

}

.icondown1 {
  animation-name: icon1slidedown;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;

}

.iconup2 {
  animation-name: icon2slideup;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
 
}

.icondown2 {
  animation-name: icon2slidedown;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;

}

.iconup3 {
  animation-name: icon3slideup;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;

}

.icondown3 {
  animation-name: icon3slidedown;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;

}

.iconup4 {
  animation-name: icon4slideup;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;

}

.icondown4 {
  animation-name: icon4slidedown;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;

}


@keyframes icon1slideup {  0% { top:-50%;opacity:0;  } 80% { top:25%;opacity:1;  } 90% { top:24%;opacity:1;  } 100% { top:25%; opacity:1;} }
@keyframes icon1slidedown { 0% { top:25%; opacity:1;  } 100% { top:-50%; opacity:0;} }

@keyframes icon2slideup {  0% { top:-50%;opacity:0;  } 80% { top:10%;opacity:1;  } 90% { top:8%;opacity:1;  } 100% { top:10%; opacity:1;} }
@keyframes icon2slidedown { 0% { top:10%; opacity:1;  } 100% { top:-50%; opacity:0;} }

@keyframes icon3slideup {  0% { top:-50%;opacity:0;  } 80% { top:25%;opacity:1;  } 90% { top:24%;opacity:1;  } 100% { top:25%; opacity:1;} }
@keyframes icon3slidedown { 0% { top:25%; opacity:1;  } 100% { top:-50%; opacity:0;} }

@keyframes icon4slideup {  0% { top:-50%;opacity:0;  } 80% { top:20%;opacity:1;  } 90% { top:18%;opacity:1;  } 100% { top:20%; opacity:1;} }
@keyframes icon4slidedown { 0% { top:20%; opacity:1;  } 100% { top:-50%; opacity:0;} }

.fixed {
position:fixed;
}

.centerbar {
  width:100%;
  bottom:-25px;
  position:absolute;
  z-index:10;
}
.centerbarwrap {
  margin:0 auto;
  width:1160px;
  height:60px;
  background-color: #aecd53;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
  transition: .3s all;
}

.centerbar .fullwidth {
width:100%;
}

.navbars {
  width:1160px;
  height:60px;
  margin:0 auto;
  overflow: hidden;
  background-color: #aecd53;
  z-index:9999;
  transition: .5s all;
}

.navbars a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: left;
  width:200px;
  padding: 18px 20px;
  text-decoration: none;
  border-right: 1px solid #c4df76;
    display: block;
}

.navbars .dropdown {
  float: left;
  overflow: hidden;
border-right: 1px solid #c4df76;
}

.navbars .dropdown .dropbtn {
  font-size: 16px;  
  width:200px;
  border: none;
  outline: none;
  color: white;
  text-align: left;
  padding: 18px 20px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbars .home {
width:64px;
}

.navbars a:hover, .dropdown:hover .dropbtn {
  background-color: #fff;
  color:#333;
/*  border-right: 1px solid #aecd53;*/
  border-left: 1px solid #aecd53;
  margin-left:-1px;

}
.navbars .dropbtn {
  position:relative;

}
.navbars .dropbtn i {
position:absolute;
right:15px;
top:22px;
 transition: .5s all
}
.navbars .dropdown:hover .dropbtn i{
transform: rotate(180deg);
color:#aecd53;
}

.navbars .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  max-width: 200px;
 z-index:9999;
/*  border-right: 1px solid #aecd53;*/
  border-left: 1px solid #aecd53;
  border-bottom: 1px solid #aecd53;
  margin-left:-1px;

}

.navbars .dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;

}

.navbars .dropdown-content a:hover {
  background-color: #aecd53;
  color:#fff;

}

.navbars .dropdown:hover .dropdown-content {
  display: block;
}
.addbarout {
position:absolute;
bottom:-25px;

}

.addbarhover {
position:fixed;
top:0;
height:60px;
  z-index:9999;
}

/*창업안내*/
 .step_list:after {content:" ";display:block;clear:both;overflow:hidden}
 .step_list li{float:left;width:20%;height:240px;text-align:center;}
 .step_list .step_data{padding:0 30px;height:220px}
@media (max-width:768px){
 .step_list li{float:left;width:50%;height:240px;text-align:center;}
 .step_list .step_data{padding:0 10px;height:220px}
}

 .step_list li.step01 .step_data,
 .step_list li.step02 .step_data,
 .step_list li.step03 .step_data,
 .step_list li.step04 .step_data{height:240px}
 .step_list .icon{position:relative;display:inline-block;margin-top:15px}
 .step_list .title{text-align: center;
     font-weight: 500;
    position: absolute;
    left: -10px;
    top: 0px;
    width: 30px;
    height: 30px;
    font-size: 1em;
    color: #fff;
    line-height: 1.8em;
    background: #0a5157;
    border-radius: 50%;}
 .step_list .info_title{line-height:1;font-weight: 500;font-size:1.2em; letter-spacing:-0.06em; color:#444;margin-top:18px;margin-bottom: 10px;}
 .step_list .info_txt{line-height:18px;margin-top:5px;word-break:keep-all; color:#888; font-weight:300; letter-spacing:-0.03em;font-size: 0.9em;}
 .step_list li.step04,
 .step_list li.step05,
 .step_list li.step06,
 .step_list li.step07{float:left}
 .step_list .arrow{position:absolute;z-index:100000}
 .step_list .arrow.right{right:7px;top:47px;margin-top:2px}
 .step_list .arrow.left{left:-26px;top:47px;margin-top:2px}
 .step_list .arrow.down{left:50%;bottom:-12px;margin-left:-32px}
 .step_list .p_arrow{display:block !important}
 .step_list .m_arrow{display:none !important}


.particle-orange {
  position: absolute;
  top: 40%;
  left: 3%;
}

table.type01{width:100%;table-layout:fixed}
table.type01 td,table.type01 th{text-align:center;vertical-align:middle;border:1px solid #d8dcd2}
table.type01 td{ text-align:center !important; color:#888;padding:12px 20px;}
table.type01 th{font-size: 1em;color:#666;padding:12px 10px;font-weight:normal;background:#f6f8f3;border-color:#d8dcd2}

table.reser01{width:100%;table-layout:fixed}
table.reser01 td,table.type01 th{text-align:center;vertical-align:middle;border:1px solid #eee}
table.reser01 td{ font-size:0.8em;text-align:center !important; color:#182021;padding:12px 20px;}
table.reser01 th{font-size: 1em;color:#666;padding:12px 10px;font-weight:400;background:#f6f8f3;border-color:#eee}
table.reser01 .smalltime {font-size:0.7em !important;}
table.reser01 .crossed { font-size:0.8em;vertical-align: middle;color:#fff;   background:#e8e8e8;}
table.reser01 .resercase { cursor:pointer;}

/* table */
table.type02{width:100%;table-layout:fixed}
table.type02 td,table.type02 th{text-align:left;vertical-align:middle;padding:10px 20px;border-top:1px solid #dddddc;border-bottom:1px solid #dddddc}
table.type02 td{color:#888}
table.type02 th{color:#54504c;background:#f1ece8;padding:7px 20px;font-weight:normal;line-height:30px;border-right:1px solid #dddddc}
table.type02 .t_m_title{color:#54504c;font-size:14px;margin-bottom:10px}
.apart{padding:10px 0 0 0; font-size:13px;}
.m_con_b {display:none;}
.d_t{display:table;width:100%;height:100%}
.d_t .d_c{display:table-cell;width:100%;vertical-align:middle}
@media screen and (max-width:1200px){
	.btn_top{right:10px}
	.p_b{display:none;}
	.p_bl{display:none;}
	.p_l{display:none;}
	.p_tc{display:none;}
	.p_tl{display:none;}
	.t_b{display:none;}
	.t_bl{display:none;}
	.t_l{display:none;}
	.t_tc{display:none;}
	.t_tl{display:none;}
	.m_b{display:block;}
	.m_b{display:block;}
	.m_bl{display:inline-block;}
	.m_l{display:inline;}
	.m_tc{display:table-cell;}
	.m_tl{display:table-column;}

	.m_layout_b{display:none;}
	.m_layout_bl{display:none;}
	.m_layout_l{display:none;}
	.m_layout_tc{display:none;}
	.m_layout_tl{display:none;}

	.m_con_b{display:block}
	.m_con_bl{display:inline-block}
	.m_con_l{display:inline}
	.m_con_tc{display:table-cell}

	.t_only_b{display:none;}

	.m_only_b{display:none}
}

.quatation_option{
color:#888;
padding-top:10px;
font-size:0.85em;.
font-weight: 400;
}

.link img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.contact-area{
border:1px solid #eee;
}
.centerbox{
width:100%;
height:100%;
text-align:center;
vertical-align:middle;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #aecd53;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.7s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

.reloadbtn{
margin-top:10px;
padding:5px 10px;
border:1px solid #ccc;
border-radius:5px;
font-size:0.7em;
}

.reser_badge{
position:absolute;
bottom:5px;
right:5px;
background:#aecd53;
border-radius:50px;
color:#fff;
font-size:0.9em;
z-index:5;
width:17px;
height:17px;
text-align:center;
}

.reser_badge2{
position:absolute;
bottom:5px;
right:5px;
background:#aecd53;
border-radius:50px;
color:#fff;
font-size:0.7em;
z-index:5;
width:17px;
height:17px;
text-align:center;
}

.reser_badge_phone{
position:absolute;
bottom:0px;
right:0px;
background:#333;
border-radius:10px;
color:#fff;
font-size:0.7em;
z-index:5;
width:100%;
padding:2px 4px;
text-align:center;
}

.reser_badge_gy{
position:absolute;
bottom:0px;
right:0px;
background:rgba(0,0,0,0.5);
border-radius:10px;
color:#eee;
font-size:0.7em;
z-index:5;
width:100%;
display: flex;
height: 100%;
padding: 2px 4px;
text-align: center;
justify-content: center;
align-items: center;
}

.reser_badge_gr{
position:absolute;
bottom:0px;
right:0px;
background:#aecd53;
border-radius:10px;
color:#fff;
font-size:0.7em;
z-index:5;
width:100%;
padding:2px 4px;
text-align:center;
}

.main-section {
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
}

.clipboardtxt {
    position: absolute;
    width: 1px;
    height: 1px;
    border: 0;
    opacity: 0;
}

			.wait_img{
			width : 30%;
			margin: 100px auto 20px;
			position: relative;
		}
			.wait_img img{
			 
			width : 100%;
			  z-index:1;
		}
		.reserv_wait_notice{
		width : 90%;
		margin: 0 auto;
	/*	height : 60vh;*/
		text-align: center;
		}
		.reserv_wati_border {
			border-bottom: 0px solid #ddd;
			padding-bottom : 20px;			
			margin-bottom :20px;
		}
		.wait_notice_title{
		font-size: 2.2rem;
		}
		.fixbutton02 {
			padding: 0px;
		}
		.fixbutton02 div{
		padding: 15px;
		}
		.fixbutton02 div:nth-child(2){
			color : #333;
			background-color : #fff;
		}
		.footshopbtn{
			color : #fff;
			background-color : #a9cd46;
			line-height:1rem;
			padding:15px 20px;
			border-radius:0px;
			display:inline-block;
		}
.waves {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(162, 201, 41, 0);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  z-index:-1;
}
.waves:before, .waves:after {
  content: "";
  position: absolute;

  background: #c7bda0;
  margin-left: -12px;
  margin-top: -12px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-animation: wave 3s infinite linear;
          animation: wave 3s infinite linear;
}
.waves:after {
  opacity: 0;
  -webkit-animation: wave 3s 1.5s infinite linear;
          animation: wave 3s 1.5s infinite linear;
}

@-webkit-keyframes wave {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}
.event_box {
margin:0 auto;
padding:10px;
}
@keyframes wave {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}
.pin_box{position:relative;padding:0 0 10px;}
.pin_number{}
.copybtn{position:relative;top:2px;right:5px;border:1px solid #ccc;border-radius:5px;display:inline-block;padding:2px 10px;margin:5px 0}
.reserv_barcode_box img {width:100px;}
.status_cancel {display:block;background:#d2d7df;color:#fff;line-height:24px;border-radius:5px;padding:0 10px;font-weight:normal;font-size:0.85em}

.text-red { color:#red;}

.appreserno {
position:absolute;
bottom:0px;
left:21px;
padding:2px 14px !important;
background:#9d9d9d;
color:#fff;
border:0px;
border-radius:0 0 12px 12px; 
}