@charset "UTF-8";
@import url('https://fonts.googleapis.com/earlyaccess/notosanskr.css');

:root {
  --vs-green-color: rgb(113 217 96);
  --vs-yellow-color: rgb(242 248 96);
  --primary-color: rgb(17 51 102);
  --secondary-color: rgb(20 90 146);
  --tertiary-color: rgb(84 179 214);
  --link-color: rgb(255 255 255);
  --wavy-gradient: linear-gradient(111.3deg, rgb(164 91 225) 9.6%, rgb(33 154 227) 93.6%);
}

* {
  font-family: 'Noto Sans KR', sans-serif;
  /* color: rgb(255 255 255); */
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: linear-gradient(to bottom, rgb(113 217 96), rgb(242 248 96)) no-repeat fixed center;
}

body {
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block-start: 0;
  margin-block-end: 0;
}

a {
  /* color: rgb(77 77 77); */
  text-decoration: none;
}

#wrap {
  margin: auto;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  box-sizing: border-box;
  /* background-color: #fff; */
  /* box-shadow: 0 0 0.625rem rgb(222 223 227); */
}

#header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  position: fixed;
  top: 0;
  height: 5rem;
  padding: 0 7.5vw;
  /* background-color: rgba(255 255 255 / 72%); */
  backdrop-filter: blur(0.4rem);
  -webkit-backdrop-filter: blur(0.4rem);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0.0625rem 0.1875rem 0 rgb(0 0 0 / 10%), 0 0.0625rem 0.125rem -0.0625rem rgb(0 0 0 / 10%);
  z-index: 1;
}

#navbar {
  position: fixed;
  margin: 0 auto;
  display: flex;
  flex: 0 0 auto;
  justify-content: space-between;
  align-items: center;
  max-width: 61.25rem;
  right: 0;
  left: 0;
  text-shadow: 0 0 0.1875rem rgb(0 0 0 / 12.5%);
}

#logo {
  display: grid;
  align-items: center;
  width: 7.5rem;
  max-width: 7.5rem;
  height: 2.5rem;
  font-size: inherit;
  line-height: 1;
  margin: 0 0 0 0.5rem;
  cursor: pointer;
  box-sizing: border-box;
}

.logo > a,
.logo > a:hover,
.logo > a::before,
.logo > a:hover::before {
  margin: 0;
  padding: 0;
  background: none !important;
}

#logo > a > object {
  max-width: 7.5rem;
  max-height: 2.5rem;
}

#gnb {
  margin: 0 0.5rem 0 0;
}

#gnb > h5.unm {
  padding-right: 0.5rem;
  color: #fff;
  text-align: right;
}

#gnb > ul {
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 1;
  justify-content: space-between;
  margin-block: 0;
}

#gnb > ul > li {
  font-size: calc(0.8em + 0.25vw);
  font-weight: 500;
  padding: 0.5em;
  line-height: calc(1.5em + 0.2vw);
  white-space: nowrap;
  text-overflow: clip;
}

.header--menu {
  color: #fff;
}

.header--menu > li > a {
  color: #fff;
}

.header--menu > li > a:hover {
  text-decoration: underline;
  text-underline-position: under;
  transition: all 0.3s ease;
}

#ci {
  font-size: 0;
}

.mockup {
  display: inline-block;
  margin: 0 auto;
  width: calc(90vw);
}

#usage {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  flex: 0 0 auto;
  margin: 0 auto;
  padding: 0 7.5vw;
  width: 100%;
  min-height: 100vmin;
  height: calc(200vh / 3);
  max-height: 75vh;
  /* min-height: calc(100vmin - 26.5rem); */
  background-image: url('/static/image/common/one-touch.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  /* background-position: 75vmin center; */
  background-size: calc(100vmin / 1.25);
  /* background-size: calc(100vmin / 1.5); */
  background-color: #d6d6bf;
  transition: 0.5s all ease;
}

#usage > h3 {
  font-weight: 500;
  letter-spacing: -0.05rem;
}

#usage > h4 {
  font-weight: 300;
  letter-spacing: -0.0675rem;
}

#usage > h3,
#usage > h4 {
  color: rgb(77 77 77);
}

#contact {
  padding: 0 7.5vw;
  background-color: #eaeaea;
}

#contact > .ctile.left {
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}

#contact > .ctile.right {
  padding-bottom: 2.5rem;
}

#contact > .ctile.right > .opt-out {
  color: rgb(0 177 60);
  cursor: pointer;
}

#contact > .ctile.right > .contact-us > a {
  color: rgb(77 77 77);
}

#contact > .ctile.left > img {
  max-width: 7rem;
  height: auto;
}

#contact > .ctile.left > address > a {
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 500;
  color: rgb(77 77 77);
}


@media screen and (min-width: 800px) {

  #main {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    flex: 0 0 auto;
    margin: 0 auto;
    padding: 0 7.5vw !important;
    width: 100%;
    min-height: 100vmin;
    /* background-repeat: no-repeat;
    background-position: bottom right 18.75vw;
    background-size: calc(100vmin / 1.5);
    background-image: url('/static/image/common/mockup-on.png');
    transition: 0.5s all ease; */
  }

  /* #main:hover {
    background-repeat: no-repeat;
    background-position: bottom right 18.75vw;
    background-size: calc(100vmin / 1.5);
    background-image: url('/static/image/common/mockup-off.png');
    transition: 0.5s all ease;
  } */

  #main > section {
    margin-left: 25vw;
  }

  #main > section:first-child {
    display: flex;
    flex: 0 0 auto;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    max-width: 61.25rem;
    /* margin: auto 0; */
    right: 0;
    left: 0;
    /* display: flex;
    justify-content: flex-start;
    flex-direction: column;
    flex: 0 0 auto;
    max-width: 61.25rem;
    left: 0;
    right: 0; */
    /* margin-left: 25vmin; */
  }

  .hero--text {
    max-width: 61.25rem;
    color: rgb(255 255 255);
    text-shadow: 0 0 0.1875rem rgb(0 0 0 / 12.5%);
  }

  .hero--text > h4 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1rem;
    letter-spacing: -0.1rem;
  }

  .hero--text > h2 {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.15rem;
  }

  .hero--text > p {
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.75rem;
    letter-spacing: -0.075rem;
  }

  .btn--group {
    display: flex;
    margin-top: 1.6875rem;
  }

  .btn--group > .platform {
    height: 2.5rem;
    width: 8.4375rem;
    filter: grayscale(100%) contrast(50%) brightness(160%) opacity(80%);
    transition: 0.3s all ease;
  }

  .btn--group > .platform:hover {
    filter: none;
  }

  .btn--group > .platform:nth-child(odd) {
    margin-right: 1rem;
  }

  .mockup {
    display: inline-block;
    position: absolute;
    margin: 0 auto;
    width: calc(100vmin / 1.5);
    height: calc(100vmin / 1.5);
    left: 25vw;
    right: 0;
    bottom: 0;
    background-image: url('/static/image/common/mockup-on.png');
    background-size: contain;
    background-position: bottom right;
    transition: 0.5s all ease;
  }

  .mockup:hover {
    display: inline-block;
    position: absolute;
    margin: 0 auto;
    width: calc(100vmin / 1.5);
    height: calc(100vmin / 1.5);
    left: 25vw;
    right: 0;
    bottom: 0;
    background-image: url('/static/image/common/mockup-off.png');
    background-size: contain;
    background-position: bottom right;
    /* transition: 0.5s all ease; */
  }

  .sect--foot {
    margin-top: 9rem;
    font-size: 0.75rem;
    line-height: 1;
    z-index: 2;
  }

  .sect--foot > p {
    line-height: 1.33;
  }

  .sect--foot > p > a {
    color: rgb(0 0 0 / 64%)
  }

  .sect--foot > p > a:hover {
    border-bottom: 1px solid rgb(0 0 0 / 64%);
  }

  #usage {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    margin: 0 auto;
    padding: 0 7.5vw;
    width: 100%;
    /*min-height: 100vmin;*/
    min-height: calc(100vmin - 26.5rem);
    background-image: url('/static/image/common/one-touch.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    /* background-position: 75vmin center; */
    /* background-size: calc(100vmin / 1.5); */
    /* background-size: calc(100vmin / 1.5); */
    background-color: #d6d6bf;
    transition: 0.5s all ease;
  }

  #usage > h3,
  #usage > h4 {
    color: rgb(77 77 77);
    line-height: 1;
    letter-spacing: -0.1406rem;
  }
  #usage > h3 {
    margin-top: -12.5rem;
    font-weight: 500;
    font-size: 2.25rem;
  }
  #usage > h4 {
    margin-top: 1.938rem;
    font-weight: 300;
    font-size: 1.875rem;
  }
  #contact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    flex: 0 0 auto;
    margin: 0 auto;
    padding: 0 7.5vw;
    width: 100%;
    min-height: 32.125rem;
    /* min-height: calc(100vmin - 26.5rem); */
    background-repeat: no-repeat;
    background-position: center right 18.75vw;
    /* background-position: 75vmin center; */
    background-size: calc(100vmin / 1.5);
    /* background-size: calc(100vmin / 1.5); */
    background-color: #eaeaea;
    transition: 0.5s all ease;
  }

  #contact > .ctile {
    width: 100%;
    max-width: 22.5rem;
    color: rgb(77 77 77);
  }

  #contact > .ctile.left {
    color: rgb(77 77 77);
  }

  #contact > .ctile.left > img {
    max-width: 14rem;
    user-select: none;
    pointer-events: none;
  }

  #contact > .ctile.left > h2 {
    margin-top: 2.75rem;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.225rem;
  }

  #contact > .ctile.left > address > a {
    font-size: 3.75rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.28125rem;
    color: rgb(77 77 77);
  }

  #contact > .ctile.left > p {
    font-size: 1.125rem;
    letter-spacing: -0.0844rem;
  }

  #contact > .ctile.right > h4 {
    font-size: 1.5rem;
    font-weight: 500;
  }

  #contact > .ctile.right > .btn--group {
    margin-top: 1rem;
    justify-content: flex-start;
  }

  #contact > .ctile.right > .contact-us > a {
    color: rgb(77 77 77);
  }
}

#main {
  padding: 7.5rem 5vw 0;
  /*height: calc(200vh / 3);
  max-height: 75vh;
  */
  height:100vh;
  color: #fff;
}

.hero--text {
  text-shadow: 0 0 0.1875rem rgb(0 0 0 / 12.5%);
}

.hero--text > h4 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3rem;
  letter-spacing: -0.1rem;
}

.hero--text > h2 {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.15rem;
}

.hero--text > p {
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.75rem;
  letter-spacing: -0.075rem;
}

.btn--group {
  display: flex;
  justify-content: center;
  margin-top: 1.6875rem;
  margin-bottom: 1.6875rem;
}

.btn--group > .platform {
  height: 2.5rem;
  width: 8.4375rem;
  filter: grayscale(100%) contrast(50%) brightness(160%) opacity(80%);
  transition: 0.3s all ease;
}

.btn--group > .platform:hover {
  filter: none;
}

.btn--group > .platform:nth-child(odd) {
  margin-right: 1rem;
}

.sect--foot {
  margin-top: 2rem;
  font-size: 0.75rem;
  line-height: 1;
}

.sect--foot > p {
  color: rgb(0 0 0 / 64%);
  line-height: 1.33;
}

.sect--foot > p > a {
  color: rgb(0 0 0 / 64%);
}

.screen-reader {
  display: none;
}

.legal-link-area::after {
  display: inline-flex;
  content: ' ';
  margin-bottom: 1rem;
}

/* safari(w/mobile) only */
/* @supports (-webkit-hyphens:none) {
  .selector { property:value; }
} */

@keyframes loadTrans {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}