@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:400,500,700,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap");
/*-------------------------------------------*\
	_common.scss

  Index
  - 1.title
  - 2.more
  - 3.img-slide
  - 4.anmiate
\*-------------------------------------------*/
@media (min-width: 1200px) {
  .id-x.maskbg .header-wrap {
    background: rgba(0, 0, 0, 0);
  }
}

.id-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.id-title [lang=en] {
  display: flex;
  margin-bottom: 0.5rem;
  font-family: "Teko", sans-serif, Arial, "Noto Sans TC";
  font-size: 1.5em;
  letter-spacing: 5px;
  color: #e9874d;
}
@media (min-width: 1400px) {
  .id-title [lang=en] {
    font-size: 1.875em;
  }
}
.id-title small {
  color: #e9874d;
  font-family: "Teko", sans-serif, Arial, "Noto Sans TC";
  font-weight: bold;
  font-size: 1.25rem;
}

.more-btn {
  display: flex;
  justify-content: flex-end;
  font-weight: bold;
}
.more-btn a {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 2px solid #e9874d;
  color: #e9874d;
  font-size: 0.9rem;
  text-transform: uppercase;
  white-space: nowrap;
  width: 150px;
  height: 48px;
}
@media (min-width: 1400px) {
  .more-btn a {
    width: 200px;
    height: 64px;
  }
}
@media (min-width: 1600px) {
  .more-btn a {
    width: 232px;
    height: 74px;
  }
}
.more-btn a:before, .more-btn a:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: -1px;
  bottom: -1px;
  width: 101%;
  height: calc(100% + 2px);
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
.more-btn a:before {
  -webkit-clip-path: inset(0 calc(100% - 0px) 0 0);
          clip-path: inset(0 calc(100% - 0px) 0 0);
  background: #4c4c4c;
  transition: all 0.75s ease-in-out;
}
.more-btn a:after {
  background: #e9874d;
  transition: all 0.5s ease-in-out;
}
.more-btn a span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-right: 0.5rem;
  text-align: center;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: bold;
}
.more-btn a span:before {
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
  width: 30px;
  height: 30px;
  background: url(../../images/more-icon.svg) no-repeat center center/cover;
  border-radius: 50%;
}
@media (min-width: 1400px) {
  .more-btn a span:before {
    right: 20px;
    top: 17px;
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 1600px) {
  .more-btn a span:before {
    right: 25px;
    top: 17px;
    width: 40px;
    height: 40px;
  }
}
.more-btn a:hover span {
  color: #fff;
}
.more-btn a:hover span:before {
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: url(../../images/more-icon-hover.svg) no-repeat center center/cover;
}
@media (min-width: 1400px) {
  .more-btn a:hover span:before {
    right: 20px;
    top: 17px;
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 1600px) {
  .more-btn a:hover span:before {
    right: 25px;
    top: 17px;
    width: 40px;
    height: 40px;
  }
}
.more-btn a:hover:before {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  transition: all 0.5s ease-in-out;
}
.more-btn a:hover:after {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  transition: all 0.75s ease-in-out;
}

.color-reverse a {
  border: 1px solid #fff;
}
.color-reverse a:before {
  background: #4c4c4c;
}
.color-reverse a:after {
  background: #fff;
}
.color-reverse a span {
  color: #fff;
}
.color-reverse a span:before {
  background: #fff;
}
.color-reverse a span:after {
  border-top: 2px solid #e9874d;
  border-right: 2px solid #e9874d;
}
.color-reverse a:hover span {
  color: #fff;
}

.slide-img {
  position: relative;
}
.slide-img:before, .slide-img:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
}
.slide-img:before {
  background: #4c4c4c;
  z-index: 1;
}
.slide-img:after {
  background: #e9874d;
  z-index: 2;
}
.slide-img.active:before {
  animation: img-slide 0.6s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards 0.6s;
  animation-fill-mode: both;
}
.slide-img.active:after {
  animation: img-slide 0.6s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards;
  animation-fill-mode: both;
}

@keyframes img-slide {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes clipInLeft {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0 0% 0 0);
            clip-path: inset(0 0% 0 0);
  }
}
.clipInLeft {
  animation-name: clipInLeft;
}

@keyframes clipInTop {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0% 0);
            clip-path: inset(0 0 0% 0);
  }
}
.before-clip:before, .before-clip:after {
  animation: clipInTop 1s ease-in-out 0.5s forwards;
}

/*
animation-name: 動畫名稱;
animation-duration: 動畫作用時間;
animation-timing-function: ease-in-out 動畫補間時運用的計算公式;
animation-delay: 動畫需間隔多久後才開始;
animation-iteration-count: 動畫作用次數;
animation-direction: 動畫作用的方向;
*/
.gloelite {
  opacity: 0;
}
.gloelite path {
  fill: none;
  stroke: #fff;
  stroke-width: 0.5px;
  stroke-dasharray: 0;
}
.gloelite.active {
  opacity: 1 !important;
}
.gloelite.active path {
  stroke: #e9874d;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: gloelite 5s linear 1s forwards;
}

@keyframes gloelite {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.delay1s {
  animation-delay: 0.1s;
}

.duration1s {
  animation-duration: 0.1s;
}

.timing1s {
  animation-timing-function: 0.1s;
}

.delay2s {
  animation-delay: 0.2s;
}

.duration2s {
  animation-duration: 0.2s;
}

.timing2s {
  animation-timing-function: 0.2s;
}

.delay3s {
  animation-delay: 0.3s;
}

.duration3s {
  animation-duration: 0.3s;
}

.timing3s {
  animation-timing-function: 0.3s;
}

.delay4s {
  animation-delay: 0.4s;
}

.duration4s {
  animation-duration: 0.4s;
}

.timing4s {
  animation-timing-function: 0.4s;
}

.delay5s {
  animation-delay: 0.5s;
}

.duration5s {
  animation-duration: 0.5s;
}

.timing5s {
  animation-timing-function: 0.5s;
}

.delay6s {
  animation-delay: 0.6s;
}

.duration6s {
  animation-duration: 0.6s;
}

.timing6s {
  animation-timing-function: 0.6s;
}

.delay7s {
  animation-delay: 0.7s;
}

.duration7s {
  animation-duration: 0.7s;
}

.timing7s {
  animation-timing-function: 0.7s;
}

.delay8s {
  animation-delay: 0.8s;
}

.duration8s {
  animation-duration: 0.8s;
}

.timing8s {
  animation-timing-function: 0.8s;
}

.delay9s {
  animation-delay: 0.9s;
}

.duration9s {
  animation-duration: 0.9s;
}

.timing9s {
  animation-timing-function: 0.9s;
}

.delay10s {
  animation-delay: 1s;
}

.duration10s {
  animation-duration: 1s;
}

.timing10s {
  animation-timing-function: 1s;
}

.delay11s {
  animation-delay: 1.1s;
}

.duration11s {
  animation-duration: 1.1s;
}

.timing11s {
  animation-timing-function: 1.1s;
}

.delay12s {
  animation-delay: 1.2s;
}

.duration12s {
  animation-duration: 1.2s;
}

.timing12s {
  animation-timing-function: 1.2s;
}

.delay13s {
  animation-delay: 1.3s;
}

.duration13s {
  animation-duration: 1.3s;
}

.timing13s {
  animation-timing-function: 1.3s;
}

.delay14s {
  animation-delay: 1.4s;
}

.duration14s {
  animation-duration: 1.4s;
}

.timing14s {
  animation-timing-function: 1.4s;
}

.delay15s {
  animation-delay: 1.5s;
}

.duration15s {
  animation-duration: 1.5s;
}

.timing15s {
  animation-timing-function: 1.5s;
}

.delay16s {
  animation-delay: 1.6s;
}

.duration16s {
  animation-duration: 1.6s;
}

.timing16s {
  animation-timing-function: 1.6s;
}

.delay17s {
  animation-delay: 1.7s;
}

.duration17s {
  animation-duration: 1.7s;
}

.timing17s {
  animation-timing-function: 1.7s;
}

.delay18s {
  animation-delay: 1.8s;
}

.duration18s {
  animation-duration: 1.8s;
}

.timing18s {
  animation-timing-function: 1.8s;
}

.delay19s {
  animation-delay: 1.9s;
}

.duration19s {
  animation-duration: 1.9s;
}

.timing19s {
  animation-timing-function: 1.9s;
}

.delay20s {
  animation-delay: 2s;
}

.duration20s {
  animation-duration: 2s;
}

.timing20s {
  animation-timing-function: 2s;
}

.delay21s {
  animation-delay: 2.1s;
}

.duration21s {
  animation-duration: 2.1s;
}

.timing21s {
  animation-timing-function: 2.1s;
}

.delay22s {
  animation-delay: 2.2s;
}

.duration22s {
  animation-duration: 2.2s;
}

.timing22s {
  animation-timing-function: 2.2s;
}

.delay23s {
  animation-delay: 2.3s;
}

.duration23s {
  animation-duration: 2.3s;
}

.timing23s {
  animation-timing-function: 2.3s;
}

.delay24s {
  animation-delay: 2.4s;
}

.duration24s {
  animation-duration: 2.4s;
}

.timing24s {
  animation-timing-function: 2.4s;
}

.delay25s {
  animation-delay: 2.5s;
}

.duration25s {
  animation-duration: 2.5s;
}

.timing25s {
  animation-timing-function: 2.5s;
}

.delay26s {
  animation-delay: 2.6s;
}

.duration26s {
  animation-duration: 2.6s;
}

.timing26s {
  animation-timing-function: 2.6s;
}

.delay27s {
  animation-delay: 2.7s;
}

.duration27s {
  animation-duration: 2.7s;
}

.timing27s {
  animation-timing-function: 2.7s;
}

.delay28s {
  animation-delay: 2.8s;
}

.duration28s {
  animation-duration: 2.8s;
}

.timing28s {
  animation-timing-function: 2.8s;
}

.delay29s {
  animation-delay: 2.9s;
}

.duration29s {
  animation-duration: 2.9s;
}

.timing29s {
  animation-timing-function: 2.9s;
}

.delay30s {
  animation-delay: 3s;
}

.duration30s {
  animation-duration: 3s;
}

.timing30s {
  animation-timing-function: 3s;
}

.delay31s {
  animation-delay: 3.1s;
}

.duration31s {
  animation-duration: 3.1s;
}

.timing31s {
  animation-timing-function: 3.1s;
}

.delay32s {
  animation-delay: 3.2s;
}

.duration32s {
  animation-duration: 3.2s;
}

.timing32s {
  animation-timing-function: 3.2s;
}

.delay33s {
  animation-delay: 3.3s;
}

.duration33s {
  animation-duration: 3.3s;
}

.timing33s {
  animation-timing-function: 3.3s;
}

.delay34s {
  animation-delay: 3.4s;
}

.duration34s {
  animation-duration: 3.4s;
}

.timing34s {
  animation-timing-function: 3.4s;
}

.delay35s {
  animation-delay: 3.5s;
}

.duration35s {
  animation-duration: 3.5s;
}

.timing35s {
  animation-timing-function: 3.5s;
}

.delay36s {
  animation-delay: 3.6s;
}

.duration36s {
  animation-duration: 3.6s;
}

.timing36s {
  animation-timing-function: 3.6s;
}

.delay37s {
  animation-delay: 3.7s;
}

.duration37s {
  animation-duration: 3.7s;
}

.timing37s {
  animation-timing-function: 3.7s;
}

.delay38s {
  animation-delay: 3.8s;
}

.duration38s {
  animation-duration: 3.8s;
}

.timing38s {
  animation-timing-function: 3.8s;
}

.delay39s {
  animation-delay: 3.9s;
}

.duration39s {
  animation-duration: 3.9s;
}

.timing39s {
  animation-timing-function: 3.9s;
}

.delay40s {
  animation-delay: 4s;
}

.duration40s {
  animation-duration: 4s;
}

.timing40s {
  animation-timing-function: 4s;
}

/*-------------------------------------------*\
	_banner
\*-------------------------------------------*/
.banner-wrap {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.banner-wrap:before {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../../images/banner-mask.svg) no-repeat center bottom -1px/cover;
  pointer-events: none;
}
.banner-wrap figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 500px;
}
@media (min-width: 400px) {
  .banner-wrap figure {
    min-height: 510px;
  }
}
.banner-wrap figure img {
  min-width: 960px;
  margin-left: -170px;
}
.banner-wrap .slogan {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  pointer-events: none;
}
.banner-wrap .slogan .s0 {
  position: relative;
  margin: 15px 0 -15px;
  opacity: 0;
  animation: fadeIn 2s ease-in 4s forwards;
}
@media (min-width: 400px) {
  .banner-wrap .slogan .s0 {
    margin: 30px 0 -30px;
  }
}
.banner-wrap .slogan .s0:before {
  content: "";
  position: absolute;
  left: calc(50% + 6.5rem);
  top: -42px;
  width: 42px;
  height: 42px;
  background: url(../../images/icon-recycle.svg) no-repeat center center/cover;
  animation: iRotate 5s linear infinite;
}
@media (min-width: 400px) {
  .banner-wrap .slogan .s0:before {
    left: calc(50% + 7.5rem);
  }
}
.banner-wrap .slogan .s1 {
  position: relative;
  margin: 30px 0 20px;
  opacity: 0;
  transform: translateX(100%);
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  animation: clipInRight 3s cubic-bezier(0.075, 0.82, 0.165, 1) 2s forwards;
}
.banner-wrap .slogan .s1 .mobile {
  max-width: 100%;
}
@media (min-width: 400px) {
  .banner-wrap .slogan .s1 .mobile {
    max-width: 400px;
  }
}
.banner-wrap .slogan .s1 .desktop {
  display: none;
}
@media (min-width: 1200px) {
  .banner-wrap .slogan .s1 .desktop {
    display: block;
  }
}
@media (min-width: 1200px) {
  .banner-wrap .slogan .s1 .mobile {
    display: none;
  }
}
.banner-wrap .slogan .s2 {
  max-width: 400px;
  margin: 0 3rem;
  opacity: 0;
  transform: translateX(100%);
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  animation: clipInRight 3s cubic-bezier(0.075, 0.82, 0.165, 1) 3s forwards;
}

@media (min-width: 1200px) {
  .banner-wrap figure {
    min-height: auto;
  }
  .banner-wrap figure img {
    min-width: 100%;
    margin-left: 0;
  }
  .banner-wrap .slogan .s0 {
    margin: -50px 0 50px;
  }
  .banner-wrap .slogan .s0:before {
    width: 60px;
    height: 60px;
    top: -70px;
    left: calc(50% + 28rem);
  }
  .banner-wrap .slogan .s1 {
    margin: -50px 0 30px;
    max-width: 900px;
  }
  .banner-wrap .slogan .s2 {
    max-width: 597px;
  }
}
@media (min-width: 1600px) {
  .banner-wrap .slogan .s0:before {
    width: 83px;
    height: 83px;
    top: -93px;
    left: calc(50% + 39rem);
  }
  .banner-wrap .slogan .s1 {
    max-width: 1245px;
  }
}
.or-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-top: -65px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}
.or-wrap a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.75rem;
  width: 39.72vw;
  max-width: 190px;
  height: 25.27vw;
  max-height: 120px;
}
.or-wrap a span {
  -webkit-user-select: none;
          user-select: none;
  color: transparent;
}
.or-wrap a.or-buy {
  background: url(../../images/or-buy.svg) no-repeat center center/contain;
}
.or-wrap a.or-sell {
  background: url(../../images/or-sell.svg) no-repeat center center/contain;
}

@media (min-width: 768px) {
  .or-wrap a {
    margin: 0 1.5rem;
  }
}
@media (min-width: 1200px) {
  .or-wrap {
    margin-top: -9.63vw;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
  }
  .or-wrap a {
    margin: 0 2rem;
    width: 24.27vw;
    max-width: inherit;
    height: 15.4vw;
    max-height: inherit;
  }
  .or-wrap a.or-buy:hover {
    background: url(../../images/or-buy-hover.svg) no-repeat center center/contain;
  }
  .or-wrap a.or-sell:hover {
    background: url(../../images/or-sell-hover.svg) no-repeat center center/contain;
  }
}
/* Feel free to change duration  */
.animated {
  animation-duration: 1000 ms;
  animation-fill-mode: both;
}

/* .owl-animated-out - only for current item */
/* This is very important class. Use z-index if you want move Out item above In item */
.owl-animated-out {
  z-index: 1;
}

/* .owl-animated-in - only for upcoming item
/* This is very important class. Use z-index if you want move In item above Out item */
.owl-animated-in {
  z-index: 0;
}

/* .fadeOut is style taken from Animation.css and this is how it looks in owl.carousel.css:  */
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mouseicon {
  0% {
    opacity: 0.5;
    transform: translateY(0%);
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  50% {
    opacity: 1;
    transform: translateY(20%);
    -webkit-clip-path: inset(0 0 0% 0);
            clip-path: inset(0 0 0% 0);
  }
  100% {
    opacity: 0.5;
    transform: translateY(40%);
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
  }
}
@keyframes clipInTop {
  0% {
    opacity: 0;
    transform: translateY(-15%);
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  99% {
    opacity: 1;
    transform: translateY(0%);
    -webkit-clip-path: inset(0 0 0% 0);
            clip-path: inset(0 0 0% 0);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
    -webkit-clip-path: none;
            clip-path: none;
  }
}
@keyframes clipInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  99% {
    opacity: 1;
    transform: translateX(0%);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
    -webkit-clip-path: none;
            clip-path: none;
  }
}
@keyframes iRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/*-------------------------------------------*\
	_sell.scss
  1.SELL
  2.GSA PURCHASE FLOW
\*-------------------------------------------*/
.sell-wrap {
  position: relative;
  margin-top: 185px;
}
@media (min-width: 400px) {
  .sell-wrap {
    margin-top: 220px;
  }
}
.sell-wrap:before {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../../images/bn-mask-s.svg) no-repeat center top -1px/cover;
  pointer-events: none;
  background-size: 275%;
}
@media (min-width: 400px) {
  .sell-wrap:before {
    background-size: 250%;
  }
}
@media (min-width: 576px) {
  .sell-wrap:before {
    background-size: 150%;
  }
}
@media (min-width: 1200px) {
  .sell-wrap:before {
    background-size: 125%;
  }
}
@media (min-width: 1400px) {
  .sell-wrap:before {
    background-size: 100%;
  }
}
.sell-wrap figure {
  display: flex;
  justify-content: center;
}
.sell-wrap figure img {
  min-width: 275%;
}
@media (min-width: 400px) {
  .sell-wrap figure img {
    min-width: 250%;
  }
}
@media (min-width: 576px) {
  .sell-wrap figure img {
    min-width: 150%;
  }
}
@media (min-width: 1200px) {
  .sell-wrap figure img {
    min-width: 125%;
  }
}
@media (min-width: 1400px) {
  .sell-wrap figure img {
    min-width: 101%;
  }
}
.sell-top {
  position: absolute;
  z-index: 3;
  top: -145px;
  display: inline-flex;
  justify-content: center;
  width: 100%;
  filter: drop-shadow(15px 15px 10px rgba(0, 0, 0, 0.35));
}
@media (min-width: 400px) {
  .sell-top {
    top: -155px;
  }
}
.sell-top img {
  max-width: 72.22vw;
}
@media (min-width: 400px) {
  .sell-top img {
    max-width: 300px;
  }
}
.sell-content {
  position: relative;
  z-index: 3;
  padding: 0 2rem;
  margin-top: -2rem;
}
@media (min-width: 576px) {
  .sell-content {
    padding: 0 3rem;
  }
}
.sell-text {
  margin-bottom: 2rem;
  line-height: 1.5;
  font-size: 0.85rem;
}

@media (min-width: 1200px) {
  .sell-wrap {
    margin-top: 250px;
  }
  .sell-top {
    justify-content: flex-start;
    padding-left: 10vw;
    top: -175px;
  }
  .sell-top img {
    max-width: 30.2vw;
  }
  .sell-content {
    position: absolute;
    top: -120px;
    right: 10vw;
    display: flex;
    align-items: center;
    width: 45%;
    padding: 0;
  }
  .sell-text {
    margin: 0 2rem 0 0;
  }
}
@media (min-width: 1400px) {
  .sell-wrap {
    margin-top: 300px;
  }
  .sell-top {
    top: -220px;
    padding-left: 12.5vw;
  }
  .sell-content {
    right: 12.5vw;
    width: 42%;
  }
  .sell-text {
    font-size: 1rem;
  }
}
.gsa-wrap {
  position: relative;
  z-index: 3;
  margin-top: 3rem;
}
.gsa-title {
  display: flex;
  justify-content: center;
  margin: 5rem 3rem 1rem;
}
.gsa-content {
  display: flex;
  justify-content: center;
}
.gsa-content ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  max-width: 600px;
}
.gsa-content ul:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 35px);
  width: 100%;
  height: 14.5vw;
  background: url(../../images/gsa-arrow-border.svg) no-repeat center center/contain;
}
.gsa-content li {
  position: relative;
  width: 33.3333333333%;
  padding: 0 0.5rem;
  margin: 10vw 0;
}
.gsa-content li:before {
  position: absolute;
  right: -10px;
  top: 25%;
  content: "";
  width: 25px;
  height: 25px;
  background: url(../../images/gsa-arrow.svg) no-repeat center center/cover;
}
.gsa-content li:nth-child(3):before, .gsa-content li:last-child:before {
  display: none;
}

@media (min-width: 576px) {
  .gsa-content ul:before {
    top: calc(50% - 45px);
    height: 78px;
  }
  .gsa-content li {
    margin: 3rem 0;
  }
}
@media (min-width: 768px) {
  .gsa-content ul:before {
    top: calc(50% - 50px);
    height: 92px;
  }
  .gsa-content li {
    margin: 3.5rem 0;
  }
}
@media (min-width: 1200px) {
  .gsa-wrap {
    margin-top: -100px;
  }
  .gsa-content ul {
    max-width: 100%;
  }
  .gsa-content ul:before {
    display: none;
  }
  .gsa-content li {
    width: 16.6666666667%;
    padding: 0 1rem;
  }
  .gsa-content li:before {
    right: -25px;
    top: calc(25% - 5px);
    width: 50px;
    height: 50px;
  }
  .gsa-content li:nth-child(3):before {
    display: block;
  }
}
/*-------------------------------------------*\
	_buy.scss
  1.BUY
  2.HOW TO BUY 
\*-------------------------------------------*/
.buy-wrap {
  position: relative;
  margin-top: 185px;
}
@media (min-width: 400px) {
  .buy-wrap {
    margin-top: 220px;
  }
}
.buy-wrap:before {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../../images/bn-mask-s2.svg) no-repeat center top -1px/cover;
  pointer-events: none;
  background-size: 275%;
}
@media (min-width: 400px) {
  .buy-wrap:before {
    background-size: 250%;
  }
}
@media (min-width: 576px) {
  .buy-wrap:before {
    background-size: 150%;
  }
}
@media (min-width: 1200px) {
  .buy-wrap:before {
    background-size: 125%;
  }
}
@media (min-width: 1400px) {
  .buy-wrap:before {
    background-size: 100%;
  }
}
.buy-wrap figure {
  display: flex;
  justify-content: center;
}
.buy-wrap figure img {
  min-width: 275%;
}
@media (min-width: 400px) {
  .buy-wrap figure img {
    min-width: 250%;
  }
}
@media (min-width: 576px) {
  .buy-wrap figure img {
    min-width: 150%;
  }
}
@media (min-width: 1200px) {
  .buy-wrap figure img {
    min-width: 125%;
  }
}
@media (min-width: 1400px) {
  .buy-wrap figure img {
    min-width: 101%;
  }
}
.buy-top {
  position: absolute;
  z-index: 3;
  top: -145px;
  display: inline-flex;
  justify-content: center;
  width: 100%;
  filter: drop-shadow(15px 15px 10px rgba(0, 0, 0, 0.35));
}
@media (min-width: 400px) {
  .buy-top {
    top: -155px;
  }
}
.buy-top img {
  max-width: 72.22vw;
}
@media (min-width: 400px) {
  .buy-top img {
    max-width: 300px;
  }
}
.buy-content {
  position: relative;
  z-index: 3;
  padding: 1rem 2rem 3rem;
  margin-top: -2rem;
  background: #4c4c4c;
}
@media (min-width: 576px) {
  .buy-content {
    padding: 0 3rem;
    margin-top: 0;
  }
}
.buy-text {
  margin-bottom: 2rem;
  line-height: 1.5;
  font-size: 0.85rem;
  color: #fff;
}

@media (min-width: 1200px) {
  .buy-wrap {
    margin-top: 250px;
  }
  .buy-top {
    justify-content: flex-end;
    padding-right: 10vw;
    top: -175px;
  }
  .buy-top img {
    max-width: 30.2vw;
  }
  .buy-content {
    position: absolute;
    top: -120px;
    left: 10vw;
    display: flex;
    align-items: center;
    width: 45%;
    padding: 0;
    background: transparent;
  }
  .buy-text {
    margin: 0 2rem 0 0;
    color: #000;
  }
}
@media (min-width: 1400px) {
  .buy-wrap {
    margin-top: 300px;
  }
  .buy-top {
    top: -240px;
    padding-right: 12.5vw;
  }
  .buy-content {
    top: -150px;
    left: 12.5vw;
    width: 42%;
  }
  .buy-text {
    font-size: 1rem;
  }
}
.how-wrap {
  position: relative;
  padding: 5rem 0;
  background: #4c4c4c;
}
.how-title {
  display: flex;
  justify-content: center;
  margin: 0 3rem;
}
.how-content {
  display: flex;
  justify-content: center;
}
.how-content ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 250px;
}
.how-content li {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 2.5rem 0;
}
.how-content li:not(:last-child):before {
  position: absolute;
  right: calc(50% - 20px);
  bottom: -3.75rem;
  content: "";
  width: 40px;
  height: 40px;
  background: url(../../images/how-arrow.svg) no-repeat center center/cover;
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .how-content ul {
    max-width: 100%;
  }
  .how-content li {
    padding: 0 1.5rem;
    max-width: 300px;
  }
  .how-content li:not(:last-child):before {
    right: -20px;
    top: calc(25% - 5px);
    transform: rotate(0deg);
  }
  .how-title {
    margin: 2rem 3rem;
  }
}
@media (min-width: 1200px) {
  .how-wrap {
    z-index: 3;
    padding: 0 0 5rem;
    background: transparent;
  }
  .how-wrap:after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    top: 2rem;
    width: 100%;
    height: 450px;
    background: #4c4c4c;
  }
  .how-title {
    margin: -2rem 3rem 2rem;
  }
  .how-content {
    width: 100%;
  }
  .how-content li {
    max-width: initial;
  }
}
/*-------------------------------------------*\
	_process.scss
  1.process
  2.panel
\*-------------------------------------------*/
.process-wrap {
  position: relative;
  padding: 5rem 0;
  margin-top: 2rem;
}
.process-title {
  display: flex;
  justify-content: center;
  margin: 0 3rem;
}
.process-text {
  padding: 2rem 1rem;
  line-height: 1.5;
  font-size: 0.85rem;
}
.process-content {
  display: flex;
  justify-content: center;
  border: 4px solid #e5e5e5;
  border-radius: 20px;
  margin: 0 1rem;
}
.process-content ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem 0;
  max-width: 450px;
}
.process-content li {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  padding: 0 2rem;
}
.process-content li p {
  max-width: 38%;
  padding-right: 1rem;
}
.process-content li:not(:last-child):before {
  content: "";
  position: absolute;
  left: 16.5%;
  bottom: -3rem;
  width: 40px;
  height: 40px;
  background: url(../../images/gsa-arrow.svg) no-repeat center center/cover;
  transform: rotate(90deg);
}

@media (min-width: 1200px) {
  .process-content {
    background: url(../../images/process-arrow-border.svg) no-repeat center center/contain;
    border: 8px solid #e5e5e5;
    border-radius: 30px;
  }
  .process-content ul {
    max-width: 100%;
  }
  .process-content li {
    margin: 2.75rem 0;
    width: 33.3333333333%;
  }
  .process-content li:not(:last-child):before {
    left: inherit;
    bottom: inherit;
    right: 0;
    transform: rotate(0deg);
  }
  .process-content li:nth-child(1) {
    margin-right: -3rem;
  }
  .process-content li:nth-child(1):before {
    right: 3rem;
  }
  .process-content li:nth-child(2) {
    margin-right: 2rem;
  }
  .process-content li:nth-child(2):before {
    right: -2rem;
  }
  .process-content li:nth-child(3) {
    margin-right: -7rem;
  }
  .process-content li:nth-child(3):before {
    display: none;
  }
  .process-content li:nth-child(4) {
    margin-right: -3rem;
  }
  .process-content li:nth-child(4):before {
    right: 3rem;
  }
}
@media (min-width: 1400px) {
  .process-content {
    background: url(../../images/process-arrow-border2.svg) no-repeat center center/contain;
  }
  .process-content li:nth-child(1), .process-content li:nth-child(4) {
    margin-right: -3rem;
  }
  .process-content li:nth-child(1):before, .process-content li:nth-child(4):before {
    right: 4rem;
  }
}
@media (min-width: 1600px) {
  .process-content {
    background: url(../../images/process-arrow-border3.svg) no-repeat center center/contain;
  }
  .process-text {
    font-size: 1rem;
  }
}
.panel-box {
  display: flex;
  align-content: stretch;
  align-content: center;
  padding: 0.5rem;
}
.panel-item {
  position: relative;
  align-self: start;
  margin: 0.5rem;
  border: 4px solid #4c4c4c;
  border-radius: 20px;
  flex: 1;
}
.panel-item:before {
  content: "";
  position: absolute;
  top: -5rem;
  left: calc(50% - 20px);
  width: 40px;
  height: 40px;
  background: url(../../images/panel-item-arrow1.svg) no-repeat center center/cover;
}
.panel-item:nth-child(2) {
  border: 4px solid #e9874d;
}
.panel-item:nth-child(2) .panel-title {
  border: 4px solid #e9874d;
}
.panel-item:nth-child(2) .panel-data {
  color: #e9874d;
}
.panel-item:nth-child(2):before {
  background: url(../../images/panel-item-arrow2.svg) no-repeat center center/cover;
}
.panel-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  margin-top: -1.5rem;
  white-space: nowrap;
  border: 4px solid #4c4c4c;
  border-radius: 100px;
  background: #fff;
}
.panel-data {
  padding: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.5;
}
.panel-data p, .panel-data span {
  display: flex;
  justify-content: center;
  padding: 10px;
  background: #333333;
  color: #fff;
  margin: 1rem 0;
  border-radius: 10rem;
}
.panel-data span {
  position: relative;
  padding: 2rem 10px;
  border-radius: 20px;
  text-align: center;
}
.panel-data p {
  position: relative;
  margin-bottom: 3rem;
}
.panel-data p:before {
  content: "";
  position: absolute;
  bottom: -45px;
  width: 40px;
  height: 40px;
  background: url(../../images/panel-arrow.svg) no-repeat center center/cover;
  transform: rotate(90deg);
}

@media (min-width: 400px) {
  .panel-data {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .panel-box {
    padding: 0;
  }
  .panel-title {
    max-width: 260px;
    padding: 0.5rem 1.5rem 0.5rem 1rem;
    margin: -1.5rem auto 0;
  }
  .panel-item {
    margin: 1rem;
  }
  .panel-data {
    padding: 1.5rem;
    font-size: 1rem;
  }
  .panel-data p, .panel-data span {
    padding: 1.5rem;
  }
}
@media (min-width: 992px) {
  .panel-item, .panel-title {
    border: 8px solid #4c4c4c;
  }
  .panel-item:nth-child(2) {
    border: 8px solid #e9874d;
  }
  .panel-item:nth-child(2) .panel-title {
    border: 8px solid #e9874d;
  }
  .panel-item:before {
    top: -5.5rem;
  }
  .panel-title {
    margin-top: -2.25rem;
  }
  .panel-data p, .panel-data span {
    border-radius: 100px;
  }
}
@media (min-width: 1400px) {
  .panel-item {
    align-self: stretch;
  }
  .panel-data {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0;
  }
  .panel-data p, .panel-data span, .panel-data i {
    margin: 0 2rem;
  }
  .panel-data p, .panel-data span {
    padding: 1.5rem 3rem;
  }
  .panel-data p:before {
    right: -50px;
    bottom: calc(50% - 20px);
    transform: rotate(0deg);
  }
}
/*-------------------------------------------*\
	_ins.scss
  1.ins
  2.pho
\*-------------------------------------------*/
.ins-wrap {
  position: relative;
  margin-top: 185px;
}
@media (min-width: 400px) {
  .ins-wrap {
    margin-top: 220px;
  }
}
.ins-wrap:before {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../../images/bn-mask-s.svg) no-repeat center top -1px/cover;
  pointer-events: none;
  background-size: 275%;
}
@media (min-width: 400px) {
  .ins-wrap:before {
    background-size: 250%;
  }
}
@media (min-width: 576px) {
  .ins-wrap:before {
    background-size: 150%;
  }
}
@media (min-width: 1200px) {
  .ins-wrap:before {
    background-size: 125%;
  }
}
@media (min-width: 1400px) {
  .ins-wrap:before {
    background-size: 100%;
  }
}
.ins-wrap figure {
  display: flex;
  justify-content: center;
}
.ins-wrap figure img {
  min-width: 275%;
}
@media (min-width: 400px) {
  .ins-wrap figure img {
    min-width: 250%;
  }
}
@media (min-width: 576px) {
  .ins-wrap figure img {
    min-width: 150%;
  }
}
@media (min-width: 1200px) {
  .ins-wrap figure img {
    min-width: 125%;
  }
}
@media (min-width: 1400px) {
  .ins-wrap figure img {
    min-width: 101%;
  }
}
.ins-top {
  position: absolute;
  z-index: 3;
  top: -145px;
  display: inline-flex;
  justify-content: center;
  width: 100%;
  filter: drop-shadow(15px 15px 10px rgba(0, 0, 0, 0.35));
}
@media (min-width: 400px) {
  .ins-top {
    top: -155px;
  }
}
.ins-top img {
  max-width: 72.22vw;
}
@media (min-width: 400px) {
  .ins-top img {
    max-width: 300px;
  }
}
.ins-content {
  position: relative;
  z-index: 3;
  padding: 0 2rem;
  margin-top: -2rem;
}
@media (min-width: 576px) {
  .ins-content {
    padding: 0 3rem;
  }
}
.ins-text {
  margin-bottom: 2rem;
  line-height: 1.5;
  font-size: 0.85rem;
}

@media (min-width: 1200px) {
  .ins-wrap {
    margin-top: 250px;
  }
  .ins-top {
    justify-content: flex-start;
    padding-left: 10vw;
    top: -175px;
  }
  .ins-top img {
    max-width: 30.2vw;
  }
  .ins-content {
    position: absolute;
    top: -60px;
    right: 10vw;
    display: flex;
    align-items: center;
    width: 45%;
    padding: 0;
  }
  .ins-text {
    margin: 0 2rem 0 0;
  }
}
@media (min-width: 1400px) {
  .ins-wrap {
    margin-top: 300px;
  }
  .ins-top {
    top: -220px;
    padding-left: 12.5vw;
  }
  .ins-content {
    right: 12.5vw;
    width: 42%;
  }
  .ins-text {
    font-size: 1rem;
  }
}
.pho-wrap {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  padding-top: 3rem;
  background: #f6f7f7;
}
.pho-wrap .more-btn {
  justify-content: center;
}
.pho-box {
  padding: 0 2rem;
  margin-bottom: 2rem;
}
.pho-box ul {
  display: flex;
  flex-direction: column;
}
.pho-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.35));
}
.pho-country {
  display: inline-flex;
  justify-content: center;
  min-width: 185px;
  margin: 2rem 0 3rem;
  padding: 1rem 2rem;
  background: #e9874d;
  border-radius: 100px;
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
}
.pho-link:hover .pho-country {
  background: #4c4c4c;
}

@media (min-width: 992px) {
  .pho-box ul {
    flex-direction: row;
  }
  .pho-box li {
    padding: 0 1rem;
    width: 33.3333333333%;
  }
}
@media (min-width: 1200px) {
  .pho-box li {
    padding: 0 2rem;
  }
  .pho-country {
    padding: 1.35rem 2rem;
  }
}
@media (min-width: 1400px) {
  .pho-box li {
    padding: 0 3rem;
  }
  .pho-country {
    min-width: 200px;
  }
}
@media (min-width: 1600px) {
  .pho-box li {
    padding: 0 4rem;
  }
}
/*-------------------------------------------*\
	_contact.scss
\*-------------------------------------------*/
.contact-wrap {
  padding: 5rem 0;
}
.contact-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 1rem;
}
.contact-title {
  margin-bottom: 3rem;
  max-width: 210px;
}
.contact-othtit {
  margin-top: -10px;
  margin-bottom: 3rem;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: bold;
  color: #4c4c4c;
  font-size: 3rem;
  text-align: center;
  line-height: 1.2;
}
.contact-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 350px;
  height: 60px;
  border-radius: 200px;
  background: url(../../images/contact-link.svg) no-repeat center center/contain, url(../../images/contact-bg.jpg) no-repeat center center/cover;
  color: transparent;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.35));
  transition: 0s;
}
@media (min-width: 1200px) {
  .contact-link {
    transition: 0.3s;
  }
}
.contact-link:hover {
  background: url(../../images/contact-link.svg) no-repeat center center/contain, url(../../images/contact-bg-hover.jpg) no-repeat center center/cover;
  transition: 0s;
}
@media (min-width: 1200px) {
  .contact-link:hover {
    transition: 0.3s;
  }
}

@media (min-width: 400px) {
  .contact-link {
    height: 80px;
  }
}
@media (min-width: 576px) {
  .contact-wrap {
    padding: 8rem 0 10rem;
  }
  .contact-title {
    max-width: 418px;
  }
  .contact-othtit {
    margin-bottom: 5rem;
  }
  .contact-link {
    max-width: 670px;
    height: 120px;
  }
}
@media (min-width: 1200px) {
  .contact-othtit {
    font-size: 4rem;
  }
}