@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+KR:300,400,500,700,900&display=swap");
html,
body {
  padding: 0;
  margin: 0;
  font-family: "Noto Sans KR";
  word-break: keep-all;
  scroll-behavior: smooth;
}

.wrapper {
  width: 100%;
}

button {
  background: transparent;
}

a {
  text-decoration: none;
}

.topContainer {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(../img/top_bg.jpg) no-repeat center center;
  background-size: cover;
}

.topContainer .overlay {
  width: 100%;
  height: 100vh;
  background: #151515;
  opacity: 0.2;
  position: absolute;
  z-index: 999;
}

.topContainer .nav {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 9999;
}

.topContainer .nav .inside {
  width: 100%;
  margin-top: 30px;
  padding: 0 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.topContainer .nav .inside .left {
  width: 30%;
}

.topContainer .nav .inside .right {
  width: 70%;
}

.topContainer .nav .inside .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .topContainer .nav .inside .right ul {
    display: none;
  }
}

.topContainer .nav .inside .right ul li {
  margin-right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.topContainer .nav .inside .right ul li a {
  font-size: 15px;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.topContainer .nav .inside .right ul li a span {
  margin-left: 10px;
}

.topContainer .nav .inside .right ul li a:hover {
  color: #3066f7;
}

.topContainer .nav .inside .right ul li a:hover img {
  -webkit-filter: invert(32%) sepia(100%) saturate(7490%) hue-rotate(227deg) brightness(100%) contrast(111%);
          filter: invert(32%) sepia(100%) saturate(7490%) hue-rotate(227deg) brightness(100%) contrast(111%);
}

.topContainer .nav .inside .right ul li:last-child {
  margin-right: 0;
}

.topContainer .nav .inside .right ul .divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.topContainer .nav .inside .right ul .divider .dividerContent {
  width: 1px;
  height: 10px;
  background: #fff;
}

.topContainer .content {
  width: auto;
  position: absolute;
  left: 200px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9999;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .topContainer .content {
    left: 30px;
  }
}

.topContainer .content h1 {
  font-size: 80px;
  line-height: 120px;
  font-weight: 900;
  color: #fff;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .topContainer .content h1 {
    font-size: 50px;
    line-height: 95px;
  }
}

.topContainer .content p {
  font-size: 18px;
  color: #fff;
  margin-top: 45px;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .topContainer .content p {
    font-size: 15px;
  }
}

.layout {
  width: 100%;
}

.layout .first {
  background: #3066f7;
  padding: 90px 0;
}

.layout .first .imgBox {
  text-align: center;
}

.layout .first .imgBox img {
  margin: 0 auto;
}

.layout .first .imgBox .pc {
  display: block;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .first .imgBox .pc {
    display: none;
  }
}

.layout .first .imgBox .mobile {
  display: none;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .first .imgBox .mobile {
    display: block;
  }
}

.layout .first .textBox {
  width: auto;
  margin: 0 auto;
  color: #fff;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .first .textBox {
    padding: 0 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.layout .first .textBox ul {
  width: auto;
  margin-top: 75px;
}

.layout .first .textBox ul li {
  margin-bottom: 75px;
}

.layout .first .textBox ul li:last-child {
  margin-bottom: 0;
}

.layout .first .textBox ul li h1 {
  font-size: 35px;
  margin-bottom: 30px;
  font-weight: 300;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .first .textBox ul li h1 {
    font-size: 25px;
  }
}

.layout .first .textBox ul li p {
  font-size: 18px;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .first .textBox ul li p {
    font-size: 15px;
  }
}

.layout .second {
  background: #fff;
  padding: 90px 0 0 0;
}

.layout .third {
  background: #F5F7F8;
  padding: 90px 0 0 0;
}

.layout .fourth {
  background: #fff;
  padding: 90px 0 0 0;
}

.layout .fifth {
  background: #F5F7F8;
  padding: 90px 0 0 0;
}

.layout .sixth {
  background: #fff;
  padding: 90px 0 0 0;
}

.layout .seventh {
  background: #F5F7F8;
  padding: 90px 0 0 0;
}

.layout .insideContent {
  max-width: 1000px;
  margin: 0 auto;
}

.layout .textContent {
  width: auto;
}

.layout .textContent h1 {
  font-size: 25px;
  font-weight: 300;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .textContent h1 {
    font-size: 20px;
  }
}

.layout .textContent h2 {
  font-size: 25px;
  font-weight: 700;
  color: #3066f7;
  margin: 15px 0;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .textContent h2 {
    font-size: 20px;
  }
}

.layout .textContent p {
  font-size: 15px;
  margin-top: 15px;
}

.layout .mockupContentType1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .mockupContentType1 {
    display: block;
  }
}

.layout .mockupContentType1 .left {
  width: 50%;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .mockupContentType1 .left {
    width: 100%;
    padding: 0 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.layout .mockupContentType1 .left img {
  width: 100%;
  max-width: 500px;
}

.layout .mockupContentType1 .right {
  width: 50%;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .mockupContentType1 .right {
    width: 100%;
    padding: 0 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 75px;
  }
}

.layout .mockupContentType1 .pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .mockupContentType1 .pc {
    display: none;
  }
}

.layout .mockupContentType1 .mobile {
  display: none;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .mockupContentType1 .mobile {
    display: block;
  }
}

.layout .mockupContentType2 .textAlignCenter {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .mockupContentType2 .textAlignCenter {
    width: 100%;
    padding: 0 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.layout .mockupContentType3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .mockupContentType3 {
    display: block;
  }
}

.layout .mockupContentType3 .left {
  width: 50%;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .mockupContentType3 .left {
    width: 100%;
    padding: 0 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 75px;
  }
}

.layout .mockupContentType3 .left img {
  width: auto;
}

.layout .mockupContentType3 .left .textAlignRight {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 120px;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .mockupContentType3 .left .textAlignRight {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.layout .mockupContentType3 .right {
  width: 50%;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .mockupContentType3 .right {
    width: 100%;
    padding: 0 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.layout .mockupContentType3 .right img {
  width: 100%;
  max-width: 500px;
}

.layout .mockupBottom {
  width: 100%;
  max-width: 1400px;
  margin: 75px auto 0;
  text-align: center;
  /*모바일*/
  /*//모바일*/
}

.layout .mockupBottom img {
  width: 100%;
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .mockupBottom {
    width: 100%;
    padding: 0 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.layout .mockupBottom .pc {
  display: block;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .mockupBottom .pc {
    display: none;
  }
}

.layout .mockupBottom .mobile {
  display: none;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .mockupBottom .mobile {
    display: block;
    max-width: 500px;
  }
}

.layout .marketingType1 {
  width: 100%;
  max-width: 1000px;
  margin: 90px auto 0;
  background: url(../img/marketing_img.jpg) center center no-repeat;
  background-size: cover;
  padding: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.layout .marketingType1 .box {
  width: 40%;
  background: #fff;
  padding: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*모바일*/
  /*//모바일*/
}

.layout .marketingType1 .box p {
  color: #3066f7;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .marketingType1 .box p {
    margin-bottom: 15px;
  }
}

.layout .marketingType1 .box h1 {
  font-size: 35px;
  line-height: 75px;
  font-weight: 500;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .marketingType1 .box h1 {
    font-size: 25px;
    line-height: 50px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .marketingType1 .box {
    width: 100%;
  }
}

.layout .marketingType2 {
  width: 100%;
  max-width: 1000px;
  margin: 90px auto 0;
  background: url(../img/top_bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.layout .marketingType2 .box {
  width: 40%;
  background: #fff;
  padding: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.layout .marketingType2 .box h1 {
  font-size: 35px;
  line-height: 75px;
  font-weight: 500;
}

.layout .questionBox {
  width: 100%;
  padding: 90px 0;
  text-align: center;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .questionBox {
    padding: 90px 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.layout .questionBox h2 {
  font-size: 25px;
  font-weight: 700;
  color: #3066f7;
  margin-bottom: 25px;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .questionBox h2 {
    font-size: 20px;
  }
}

.layout .questionBox h1 {
  font-size: 40px;
  font-weight: 300;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .questionBox h1 {
    font-size: 30px;
  }
}

.layout .questionBox p {
  font-size: 15px;
  margin: 45px 0;
}

.layout .questionBox h3 {
  font-size: 30px;
  font-weight: 500;
  text-decoration: underline;
  color: #151515;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .questionBox h3 {
    font-size: 20px;
  }
}

.layout .questionBox .button {
  border: 1px solid #3066f7;
  color: #3066f7;
  padding: 20px 25px;
  margin: 0 auto;
  -webkit-transition: background .2s ease-in-out, color .2s ease-in-out;
  transition: background .2s ease-in-out, color .2s ease-in-out;
  display: inline-block;
  margin-top: 45px;
}

.layout .questionBox .button:hover {
  background: #3066f7;
  color: #fff;
}

.layout .downloadBox {
  width: 100%;
  background: #001E6F;
  padding: 150px 0;
  text-align: center;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .downloadBox {
    padding: 150px 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.layout .downloadBox h1 {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .downloadBox h1 {
    font-size: 30px;
  }
}

.layout .downloadBox p {
  font-size: 15px;
  margin-top: 40px;
  color: #fff;
}

.layout .downloadBox .buttonBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .downloadBox .buttonBox {
    display: block;
  }
}

.layout .downloadBox .buttonBox .button {
  border: 1px solid #fff;
  color: #fff;
  padding: 20px 25px;
  -webkit-transition: background .2s ease-in-out, color .2s ease-in-out;
  transition: background .2s ease-in-out, color .2s ease-in-out;
}

.layout .downloadBox .buttonBox .button:hover {
  background: #fff;
  color: #3066f7;
}

.layout .downloadBox .buttonBox .left {
  margin-right: 15px;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .layout .downloadBox .buttonBox .left {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.footer {
  width: 100%;
  max-width: 1000px;
  margin: 90px auto;
}

.footer ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  margin-bottom: 30px;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .footer ul li {
    display: block;
    padding: 0 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.footer ul li:last-child {
  margin-bottom: 0;
}

.footer ul li p {
  font-size: 12px;
}

.footer ul li .left {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .footer ul li .left {
    width: 100%;
  }
}

.footer ul li .right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .footer ul li .right {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 25px;
  }
}

.footer ul li a {
  margin-right: 30px;
  color: #151515;
  -webkit-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
}

.footer ul li a:hover {
  color: #3066f7;
}

.footer ul li a:last-child {
  margin-right: 0;
}

#video-bg {
  position: relative;
  width: auto;
  min-width: 100%;
  height: 100vh;
  background: transparent url(video-bg.jpg) no-repeat;
  /*모바일*/
  /*//모바일*/
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  #video-bg {
    display: none;
  }
}

video {
i  display: block;
}

.video-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
}

#floatButton {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background: #fff;
  position: fixed;
  z-index: 999999;
  right: 30px;
  bottom: 30px;
  border: 1px solid #cccccc;
  display: none;
}

#floatButton a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
}
/*# sourceMappingURL=style.css.map */

#info-video {
    width: auto;
    min-width: 100%;
    height: 600px;
    object-fit: cover;
    z-index: -100;
    padding-top: 90px;
}

