/* section:welcome */
.welcome {
  position: relative;
}
.welcome img {
  width: 100%;
}
.welcome .inner {
  width: 1280px;
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.welcome .inner .banner_title {
  font-family: '뫼비우스';
  text-align: left;
}
.welcome .inner .banner_title.title_02 h1,
.welcome .inner .banner_title.title_03 h1 {
  color: #fff;
}
.welcome .inner .banner_title h1 {
  color: #fff;
  font-size: 50px;
  line-height: 1.3;
  margin-bottom: 30px;
}
.welcome .inner .banner_title h1 b {
  color: var(--main-color);
}
.marketing {
  padding-top: 150px;
}
.marketing .section_title {
  top: 115px;
}
.marketing .point_label {
  top: 144px;
}
.marketing .inner > span ~ .download_btn {
  margin-top: 35px;
}

/* section : faq */
section.faq {
  position: relative;
  background-color: #f6f6f6;
  padding-top: 150px;
  padding-bottom: 160px;
}
.faq_inner {
  width: 1060px;
  margin: auto;
  position: relative;
}
.faq_inner .section_title {
  position: absolute;
  top: -190px;
  left: 50%;
  transform: translateX(-50%);
}
.faq_title {
  cursor: pointer;
  padding: 10px;
  margin: 5px 0;
  position: relative;
  border-bottom: 5px solid #fff;
  display: flex;
  gap: 10px;
}
.faq_title h3 {
  font-size: 17px;
  color: #555;
  text-align: left;
}
.faq_title b {
  color: var(--main-color);
  font-size: 17px;
}
.faq_title.active {
  background-color: var(--main_color);
}
.faq_content {
  background-color: #fff;
  padding: 15px;
  display: none;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.400) ;
  text-align: left;
}
.faq_content > div {
  display: flex;
  gap: 10px;
}
.faq_content p {
  font-size: 15px;
  color: #555;
}
.faq_content b {
  font-size: 15px;
  color: var(--main-color);
}
.faq_content.downlod div a {
  color: #222;
  margin-top: 10px;
}
.faq_content.downlod div a:hover {
  color: var(--main-color);
}
.faq_content.downlod div a i {
  font-size: 20px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .welcome {
    height: 100vh;
    max-height: 655px;
  }
  .welcome .inner {
    width: fit-content;
    padding: 5%;
    top: 35%;
  }
  .welcome .inner .banner_title {
    text-align: center;
  }
  .welcome .inner .banner_title.title_02 h1, 
  .welcome .inner .banner_title.title_03 h1 {
    text-align: left;
    white-space: nowrap;
  }
  .welcome img {
    height: 100%;
    max-height: 655px;
    object-fit: cover;
  }
  .welcome .inner .banner_title h1 {
    font-size: 36px;
  }
  .marketing .section_title {
    top: 100px;
  }
  .marketing.mo_on {
    padding-top: 120px;
  }

  
  /* section : faq */
  section.faq {
    padding-top: 20px;
    padding-bottom: 60px;
  }
  .faq_inner .section_title {
    top: -120px;
  }
  .faq_inner {
    width: 100%;
  }
  .faq_title h3 {
    font-size: 15px;
  }
  .faq_title b {
    font-size: 14px;
  }
  .faq_content b {
    font-size: 14px;
  }

}