html {
  margin: 0px;
  padding: 0px;
}

body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  background-color: rgb(38, 38, 38);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

a:visited {
  color: rgb(255, 255, 255);
}

li {
  list-style: none;
}

input {
  border: none;
  outline: none;
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
}

fieldset {
  border: none;
}

img {
  width: 100%;
}

textarea {
  resize: none;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  background-color: transparent;
}

div,
p,
ul,
li,
dl,
dd,
dt,
span,
a,
input,
fieldset,
h1,
h3 {
  margin: 0px;
  padding: 0px;
}

.scrollLock {
  overflow: hidden;
}

#wrap {
  width: 100%;
  height: 100%;
}

#main {
  width: 100%;
  height: 100vh;
}

#header {
  width: 100%;
  position: fixed;
  z-index: 1000000;
}

.header-main {
  padding: 2rem;
}

.header-inner {
  display: flex;
  height: 42px;
  position: relative;
}

.main-logo {
  width: 86px;
  height: 42px;
  pointer-events: auto;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  pointer-events: auto;
  z-index: 999;
}

.nav-line {
  display: block;
  width: 32px;
  height: 4px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease 0s;
}

.nav-line:first-child {
  top: 30%;
}

.nav-line:last-child {
  top: 50%;
}

.menu-toggle.active .nav-line:first-child {
  top: 40%;
  left: 20%;
  transform: rotate(45deg);
}

.menu-toggle.active .nav-line:last-child {
  top: 40%;
  left: 20%;
  transform: rotate(-45deg);
}

.lang {
  position: absolute;
  right: 127px;
  top: 30px;
  display: none;
  overflow: hidden;
}

.lang-img {
  width: 48px;
  height: 48px;
  float: left;
}

.lang>span {
  font-size: 32px;
  line-height: 45px;
  margin: 0px 10px;
  color: rgb(255, 255, 255);
}

.menu-container {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgb(95, 132, 255);
  display: none;
  color: rgb(255, 255, 255);
}

.menu-content {
  width: 80%;
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  justify-content: space-evenly;
  margin-top: 32px;
}

.menu-mobile {
  display: none;
}

.menu-content div:last-child {
  margin-right: 0px;
}

.menu-content>div:last-child {
  margin-right: 0px;
}

.menu-item {
  font-size: 80px;
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.menu-item {
  margin-bottom: 64px;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, #fff 0%, #fff 50%, transparent 50.1%);
  background-size: 0% 100%;
  transition: all .4s;
}

.menu-item:hover {
  background-size: 200% 100%;
}
.menu-left {
  width: 50%;
}

.circle {
  width: 32px;
  height: 32px;
  line-height:32px;
  border-radius: 50%;
  text-align:center;
  background-color: rgb(255, 172, 62);
  vertical-align: 10px;
  display: none;
}

.menu-btn {
  display: flex;
  margin-top: 4rem;
}

.menu-btn button {
  overflow: hidden;
  width: 206px;
  height: 62px;
  line-height: 58px;
  text-align: center;
  border-radius: 32px;
  border: 2px solid rgb(255, 255, 255);
  margin-right: 45px;
  font-weight: normal;
  color: rgb(255, 255, 255);
  font-size: 24px;
  background-color: transparent;
  cursor: pointer;
}

.menu-btn a {
  color: rgb(255, 255, 255);
  display: block;
}

.menu-btn button:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(95, 132, 255);
}

.menu-btn p:hover,
.menu-btn p:active {
  border-radius: 32px;
  background: transparent;
}

.menu-btn p:active,
.menu-btn a:active {
  border-radius: 32px;
  background: transparent;
}

.menu-logo {
  margin-bottom: 4rem;
}

.menu-com-info dl {
  margin-bottom: 64px;
}

.menu-com-info dt {
  font-size: 14px;
  color: #fff;
  line-height: 1.14;
  margin-bottom: 8px;
}

.menu-com-info dd {
  margin-bottom: 1.5rem;
  font-size: 16px;
  cursor: pointer;
}

.effect>dd {
  display: inline;
  background-image: linear-gradient(transparent 95%, rgb(255, 175, 35) 40%);
}

.menu-info {
  display: flex;
}

.menu-info>dl {
  margin-right: 64px;
}

.hover>dd {
  cursor: pointer;
  background-size: 0px 60px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: all 0.35s linear 0s;
}

.hover>dd:hover {
  background-size: 100% 60px;
}

.com-info {
  position: relative;
  display: block;
}

.underline {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 0%;
  height: 40%;
  background-color: rgb(233, 196, 0);
  transition: width 0.5s cubic-bezier(0.24, 0.77, 0.32, 0.95) 0s;
}

.underline:hover {
  width: 100%;
}

.data {
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 16px;
  border-bottom: 1px solid rgb(255, 255, 255);
  cursor: pointer;
}

.copy {
  font-size: 18px;
  margin-bottom: 64px;
}

.menu-logo {
  width: 176px;
  height: 86px;
}

.social-img {
  display: none;
}

.social-menu {
  display: block;
}

.social-web {
  display: block;
  width: 30%;
}

.social-web a {
  display: inline-block;
}

.social-web dl>dd {
  margin-right: 5%;
}

.social-img dl {
  overflow: hidden;
}

.social-img dd {
  float: left;
  margin-right: 16px;
}

.social-img dt {
  margin-bottom: 18px;
}

.social-img dl>dd {
  width: 24px;
  height: 24px;
}

.social-web dl>dd {
  width: auto;
  height: auto;
}

#main {
  width: 100%;
  height: 100%;
  position: relative;
}

.quick-nav {
  width: 32px;
  position: fixed;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  padding: 32px 13px;
  box-sizing: border-box;
  z-index: 12;
  cursor: pointer;
  transition: all 0.1s ease-in-out 0s;
}

.quick-nav li {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-bottom: 24px;
  background-color: rgb(255, 255, 255);
  box-sizing: border-box;
}

.quick-nav li:not(.active):hover {
  transform: scale(2);
}

.quick-nav li.active {
  width: 6px;
  height: 32px;
  border-radius: 3px;
}

.quick-nav li:hover::before {
  opacity: 1;
}

.quick-nav li::before {
  display: inline-block;
  height: 18px;
  line-height: 8px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: rgb(255, 175, 35);
  color: rgb(255, 255, 255);
  box-sizing: border-box;
  font-size: 9px;
  position: absolute;
  right: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}

.quick-nav li:not(.active):hover::before {
  transform: scale(0.5) translate(18px, -50%);
  transform-origin: 100% 0%;
}

.quick-nav li:nth-child(1)::before,
.quick-nav li:nth-child(2)::before,
.quick-nav li:nth-child(3)::before {
  content: "core";
}

.quick-nav li:nth-child(4)::before {
  content: "about";
}

.quick-nav li:nth-child(5)::before,
.quick-nav li:nth-child(6)::before,
.quick-nav li:nth-child(7)::before {
  content: "solution";
}

.quick-nav li:nth-child(8)::before {
  content: "contact";
}

.main-home {
  width: 100%;
  height: 100vh;
}

.home-section {
  width: 100%;
  height: 100vh;
  position: relative;
  color: rgb(255, 255, 255);
  overflow: hidden;
}

.video-frame video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  object-fit: cover;
}

.mobilevideo {
  display: none;
}

.home-bg1 {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.project-info {
  width: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 999;
}

.project-tit {
  display: inline-block;
  text-transform: uppercase;
  font-size: 64px;
  margin-bottom: 16px;
  cursor: pointer;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
  -webkit-background-clip: text;
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, #fff 0%, #fff 50%, transparent 50.1%);
  background-size: 0% 100%;
  /*transition: all 1s;*/
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.0);
}

.project-tit.tit-animation {
  animation: title 2s 0.4s;
  animation-fill-mode: forwards;
}

.project-tit.tit-unset {
  all: unset;
}

.project-desc {
  line-height: 30px;
  font-size: 20px;
  letter-spacing: -0.4px;
}

.project-desc-mob {
  display: none;
}

@keyframes title {
  0% {
    background-size: 0% 100%;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    text-shadow: rgba(0, 0, 0, 0) 0px 0px 20px;
  }

  50% {
    background-size: 200% 100%;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    text-shadow: rgba(0, 0, 0, 0) 0px 0px 20px;
  }

  51% {
    -webkit-text-fill-color: rgb(255, 255, 255);
  }

  100% {
    background-size: 200% 100%;
    -webkit-text-fill-color: rgb(255, 255, 255);
    text-shadow: rgba(0, 0, 0, 0.5) 0px 0px 20px;
  }
}

.company-info {
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}

.company-info-mob {
  display: none;
}

.company-desc-left {
  width: 50%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  position: relative;
}

.company-text {
  width: 70%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.com-list {
  position: relative;
}

.company-tit {
  width: 100%;
  font-size: 4rem;
  color: rgb(255, 255, 255);
  font-weight: bold;
  white-space: nowrap;
}

.company-tit a,
.company-desc a {
  overflow: hidden;
  position: relative;
  display: inline-block;
  color: rgb(0, 0, 0);
  transition: transform 0.5s ease 0s;
}

.company-tit a .line,
.company-desc a .line {
  color: rgb(17, 17, 17);
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  background-color: rgb(204, 204, 204);
  z-index: 10;
  animation: 2s cubic-bezier(0.24, 0.77, 0.32, 0.95) 0s 1 normal both paused text_line;
}

.company-tit a .txt,
.company-desc a .txt {
  position: relative;
  z-index: 20;
  display: block;
  letter-spacing: 1.6px;
  animation: 2s cubic-bezier(0.24, 0.77, 0.32, 0.95) 1s 1 normal both paused text_opacity;
}

.sentence-area.active a .txt {
  animation-play-state: running;
}

.sentence-area.active a .line {
  animation-play-state: running;
}

.main-transition {
  padding-top: 6px;
}

.main-transition>p {
  height: 75px;
  line-height: 75px;
  padding-top: 15px;
  text-align: center;
}

.main-transition span {
  display: block;
  transition: color 2s ease 1s;
  text-align: center;
  line-height: 75px;
}

.main-transition span:hover {
  transition: color 0s ease 0s;
}

.main-transition span:hover {
  color: rgb(255, 175, 35);
}

@keyframes text_line {
  0% {
    width: 0%;
    transform: translateX(0%);
  }

  50% {
    width: 100%;
    transform: translateX(0%);
  }

  100% {
    width: 100%;
    transform: translateX(101%);
  }
}

@keyframes text_opacity {
  0% {
    opacity: 0;
    color: rgb(0, 0, 0);
    transform: translateX(-50%);
  }

  100% {
    opacity: 1;
    color: rgb(0, 0, 0);
    transform: translateX(0%);
  }
}

.company-desc {
  margin-top: 24px;
  color: rgb(1, 1, 1);
  line-height: 1.69;
  font-size: 16px;
}

.company-desc-mob{
  display:none;
}

.btn {
  display: flex;
}

.company-btn {
  width: 138px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 32px;
  margin-top: 32px;
  border: 1px solid rgb(95, 132, 255);
  transition: all 0.3s ease 0s;
  margin-right: 32px;
}

.company-btn a {
  color: rgb(95, 132, 255);
  display: block;
}

.company-btn:hover {
  background-color: rgb(95, 132, 255);
}

.company-btn:hover a {
  color: rgb(255, 255, 255);
}

.company-desc-right {
  width: 50%;
  height: 100%;
  background-color: rgb(95, 132, 255);
  position: relative;
  cursor: pointer;
}

.sentence {
  display: flex;
  font-size: 4rem;
  font-weight: bold;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 32px 0px;
}

.column {
  transition: all 0.8s ease 0s;
  -webkit-text-stroke: 1px rgb(255, 255, 255);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-repeat: no-repeat;
  height: 75px;
  line-height: 75px;
  padding: 15px;
}

.column p {
  height: 75px;
  line-height: 75px;
}

.column:first-child p {
  width: 173px;
  margin-bottom: 15px;
}

.column:last-child {}

.column:last-child p {
  margin-bottom: 15px;
}

.main-transition span {
  display: block;
  transition: color 2s ease 1s;
  text-align: center;
  line-height: 75px;
}

.main-transition>span:first-child {
  margin-top: 10px;
}

.main-transition>span {
  margin-bottom: 15px;
}

.main-transition span:hover {
  transition: color 0s ease 0s;
}

.main-transition span:hover {
  color: rgb(255, 175, 35);
}

/*.Num {
  color: rgb(255, 255, 255);
}

.Num a {
  color: rgb(255, 255, 255);
}*/

.home-bg{
  background-color:rgba(0, 0, 0, 0.5);
  width:100%;
  height:100%;
  position:absolute;
  left:0;
  top:0;
}

.home-section-bg {
  width: 100%;
  height: 100vh;
  background: url("../img/3d_mask.png") #262626 0% 0% / cover no-repeat;
  color: rgb(255, 255, 255);
}

.sol-conatiner {
  max-width: 1520px;
  width: 100%;
  margin: 0px auto;
}

.solution {
  /*padding: 8.4% 0px 0px;*/
  padding: 6.4% 0 0;
  text-align: center;
  position: relative;
  margin: 0px auto;
  max-width: 1520px;
  width: 100%;
  height: auto;
}

.keyword {
  /*width: 476px;*/
  width:max-content;
  margin: 0px auto 32px;
  position: relative;
  height: 60px;
}

.keyword_3d:first-child {
  width: 280px;
}

.keyword::before,
.keyword::after {
  position: absolute;
  top: 0px;
  font-size: 48px;
  color: rgb(95, 132, 255);
  width: 18px;
  font-weight: 600;
}

.keyword::before {
  content: "[";
  left: 0px;
}

.keyword::after {
  content: "]";
  right: 0px;
}

.keyword-tit {
  padding-left: 2rem;
  font-size: 32px;
  height: 48px;
  letter-spacing: -0.38px;
  padding-top: 10px;
  font-weight: bold;
  float: left;
  text-transform: uppercase;
}

.home-info-mockup .keyword::after {
  right: 12px;
}

.home-co-mockup .keyword::after {
  right: 10px;
}

.words-box {
  background-size: 100%;
  height: 40px;
  float: left;
  padding: 0px 1rem;
  overflow: hidden;
}

.words-box .words {
  position: relative;
  /*animation: 10s linear 0s infinite normal none running change;*/
}

.words li {
  padding-top: 20px;
  height: 20px;
  font-size: 16px;
  padding-right: 1.5rem;
}

.m-words-box{
  display:none;
  background-size: 100%;
  height: 40px;
  float: left;
  padding: 0px 1rem;
  overflow: hidden;
}

.m-words-box .m-words {
  position: relative;
}

.m-words li {
  padding-top: 20px;
  height: 20px;
  font-size: 16px;
  padding-right: 1.5rem;
}

/*@keyframes change {

  0%,
  12.66%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  16.66%,
  29.32% {
    transform: translate3d(0, -25%, 0);
  }

  33.32%,
  45.98% {
    transform: translate3d(0, -50%, 0);
  }

  49.98%,
  62.64% {
    transform: translate3d(0, -75%, 0);
  }

  66.64%,
  79.3% {
    transform: translate3d(0, -50%, 0);
  }

  83.3%,
  95.96% {
    transform: translate3d(0, -25%, 0);
  }
}*/

.keyword-info {
  line-height: 1.69;
  clear: both;
  margin: 2% auto 3.1%;
  /*margin-bottom:130px;*/
}

.img-num {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0px auto;
  z-index: 3;
  position: absolute;
  width: 55%;
  height: 20px;
  left: 26%;
}

.img-num>li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgb(136, 136, 136);
  cursor: pointer;
  transition: transform 0.6s ease 0s, background-color;
}

.img-num>li:not(:last-child) {
  margin-right: 12px;
}

.home-section.s1 .img-num>li:nth-child(1),
.home-section.s2 .img-num>li:nth-child(2),
.home-section.s3 .img-num>li:nth-child(3) {
  transform: scale(1.5);
  background-color: rgb(255, 255, 255);
}

.solution-project {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  font-size: 14px;
  width: 100%;
  
}

.solution-project-tab {
  display: none;
}

.solution-project-mobile {
  display: none;
}

.solution-imgArea {
  width: 100%;
}

.solution-img {
  position: relative;
  width: 100%;
  height: 622px;
  overflow: hidden;
  max-width: 1520px;
  margin: 0px auto;
  margin-top: 16px;
}


.solution-bg {
  position: relative;
}

.solution-bg>img {
  position: absolute;
  top: 0px;
  transition: top 0.4s ease 0s;
}

.home-section .solution-img>img {
  position: absolute;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: top 0.4s ease 0s;
}

.home-section.s3 .solution-img>img:nth-child(3),
.home-section.s2 .solution-img>img:nth-child(2),
.home-section.s1 .solution-img>img:nth-child(1) {
  top: 0%;
}

.home-section.s1 .solution-img>img:nth-child(2),
.home-section.s2 .solution-img>img:nth-child(3) {
  top: 100%;
}

.home-section.s1 .solution-img>img:nth-child(3) {
  top: 200%;
}

.home-section.s2 .solution-img>img:nth-child(1),
.home-section.s3 .solution-img>img:nth-child(2) {
  top: -100%;
}

.home-section.s3 .solution-img>img:nth-child(1) {
  top: -200%;
}

/*.solution-img-btn {
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  width: 100%;
  height: auto;
  bottom: 10px;
  position: absolute;
}*/

.solution-img-btn {
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  width: 100%;
  height: auto;
  /*! bottom: -150%; */
  position: absolute;
  /*bottom: -30px;*/
  bottom:-15px;
}


.solution-img-btn>img {
  display: flex;
  width: 41px;
  margin: 0px auto 25px;
}

.click-btn {
  width: 14px;
  height: 14px;
  margin: 0px auto;
  animation: 2s linear 0s infinite normal none running click;
}

@keyframes click {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.solution-img-btn .click {
  display: block;
  width: 100%;
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  margin-top: 30px;
}

.home-section .solution-desc {
  display: none;
  position: absolute;
  /*bottom: 0px;*/
  bottom:15px;
  text-align: left;
  width: auto;
  right: 0px;
}

/*.home-section.s3::after,
.home-section.s2::after, 
.home-section.s1::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 204px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.63));
  z-index: 1;
}*/



/*.sol-bg{
  width:100%;
  height:15%;
  background-image: linear-gradient(to bottom, rgba(49, 49, 49, 0), rgba(0, 0, 0, 0.63));
  position:absolute;
  bottom:0;
}*/



.home-co-mockup .solution-desc.s1,
.home-co-mockup .solution-desc.s2 {
  right: -35px;
  width: 18% !important;
}

.home-section.s1 .solution-desc.s1,
.home-section.s2 .solution-desc.s2,
.home-section.s3 .solution-desc.s3 {
  display: block;
  width: 16%;
}

.solution-desc .s2 {
  width: 15%;
  right: calc(14.2188vw);
  position: absolute;
}

.illust-img {
  width: 226px;
  height: 686px;
  position: absolute;
  left: 0px;
  bottom: 0;
}

.solution-info {
  position: absolute;
  right: 7%;
  bottom: 6%;
  color: rgb(220, 220, 220);
}

.solution-text-mob {
  display: none;
}

.solution-tit {
  font-size: 16px;
  margin-bottom: 16px;
}

.solution-tit-sub {
  line-height: 1.5;
}

.solution_sub-img {
  position: absolute;
  right: 9%;
  bottom: 19%;
}

/*home-section-bg {
  width: 100%;
  height: 100vh;
  background-image: url("../img/3d_bg.png");
  background-repeat: no-repeat;
  background-position: left center;
  color: rgb(255, 255, 255);
}*/

.home-info-mockup {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: left center;
  color: rgb(255, 255, 255);
}

.home-info-mockup.s1 {
  background: url("../img/mockup_info0.png") rgb(38, 38, 38);
  background-size:contain;
  background-repeat:no-repeat;
}

.home-info-mockup.s2 {
  background: url("../img/mockup_info1.png") rgb(38, 38, 38);
  background-size:contain;
  background-repeat:no-repeat;
}

.home-info-mockup.s3 {
  background: url("../img/mockup_info2.png") rgb(38, 38, 38);
  background-size:contain;
  background-repeat:no-repeat;
}

.home-co-mockup {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: left center;
  color: rgb(255, 255, 255);
}

.home-co-mockup.s1 {
  background: url("../img/mockup_co0.png") rgb(38, 38, 38);
  background-size:contain;
  background-repeat:no-repeat;
}

.home-co-mockup.s2 {
  background: url("../img/mockup_co1.png") rgb(38, 38, 38);
  background-size:contain;
  background-repeat:no-repeat;
}

.sub-img0 {
  right: 11%;
}

.home-co-mockup .solution-info {}

.cont-info {
  /*padding: 10rem 0px 0px 4.5rem;*/
  padding: 9.5% 0 7% 4%;
  height: 60vh;
  box-sizing: border-box;
}

.cont-tit {
  font-size: 4.16vw;
  font-weight: 500;
  letter-spacing: 4px;
}

.text {
  text-transform: uppercase;
}

.cont-com-info {
  padding: 7rem 0px;
  display: flex;
}

.cont-com-info dl {
  margin-left: 4%;
}

.cont-com-info dl:first-child {
  margin-left: 0px;
}

.cont-com-info dl:nth-child(3) {
  /* margin-right: 1%; */
}

.cont-com-info dl:nth-child(4) {
  margin-right: 4%;
}

.cont-com-info dt {
  color: rgb(204, 204, 204);
  font-size: 0.7vw;
  margin-bottom:8px;
}

.cont-com-info dd {
  font-size: 0.83vw;
  line-height: 1.5;
  color: rgb(255, 255, 255);
}

.cont-user {
  align-items: center;
  cursor: pointer;
  position: absolute;
  height: 40vh;
  display: flex;
  width: 100%;
  bottom: 0px;
}

.contact {
  display: flex;
  flex: 1 1 0%;
}

.contact>a {
  display: block;
  width: 100%;
  height: 100%;
}

.cont-user>div {
  width: 47%;
  padding: 4rem;
  height: 100%;
  box-sizing: border-box;
}

.pro-tit {
  display: flex;
  font-size: 42px;
}

.call {
  vertical-align: middle;
  width: 48px;
  height: 48px;
  margin-right: 1rem;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
}

.inq-text {
  line-height: 48px;
  font-size: 32px;
}

.cont-img {
  transform: translateX(45%);
}

.circle-bg {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
}

.cont-inq {
  width: 50%;
  height: 100%;
  background: url("../img/contact_left.png") 90% 50% / 14.5vw no-repeat rgb(95, 132, 255);
}

.apply_inq {
  width: 50%;
  height: 100%;
  background: url("../img/contact_right.png") 90% 50% / 14.5vw no-repeat rgb(255, 175, 35);
}

.cont-bottom {
  padding-bottom: 64px;
  width: 100%;
  height: auto;
  position: relative;
}

.cont-formArea {
  position: relative;
  color: rgb(170, 170, 170);
}

#cont-form {
  max-width: 1022px;
  width: 90%;
  margin: 0px auto;
  background-color: rgb(255, 255, 255);
}

#cont-form legend {
  display: none;
}

.form-inner {
  padding: 4rem;
}

.form-text {
  text-align: center;
  color: rgb(95, 132, 255);
}

.form-text-mobile {
  display: none;
}

.form-tit {
  text-transform: uppercase;
  font-size: 80px;
  letter-spacing: -1.28px;
  font-weight: 500;
}

.form-desc {
  margin-top: 32px;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.4px;
}

.form-desc-mob {
  display: none;
}

.info {
  display: block;
  position: relative;
}

.info-person {
  display: flex;
  width: 100%;
  margin-top: 64px;
}

.info-person:first-child {
  margin-top: 128px;
}

.alert-text {
  margin-top: 8px;
}

.alert-text {
  color: rgb(238, 102, 102);
  transform: translateX(13%);
}

.alert-img {
  position: absolute;
  right: 13%;
  transform: translateY(-30%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: url("../img/alert.png") center center no-repeat rgb(238, 102, 102);
}

.alert-tel {
  top: 60%;
}

.alert-email {
  top: 105%;
}

.info-person .col-01,
.info-person .col-02 {
  width: 12%;
}

.info input {
  vertical-align: middle;
  border-bottom: 1px solid rgb(170, 170, 170);
  max-width: 736px;
  width: 80%;
  height: 20px;
  margin: 0px 16px;
  text-indent: 5px;
  font-size:16px;
}

.size {
  font-size: 18px;
}

.info-mobile {
  display: none;
}

.chkBox {
  height: 133px;
  font-size: 14px;
}

.chkBox p {
  margin-bottom: 15px;
  font-size: 16px;
  margin-top: 64px;
}

.chkBox input {
  margin: 10px 8px 10px 0px;
}

.chkBox .chk_menu {
  float: left;
  width: auto;
  margin-right: 10%;
}

.chkBox .chk_menu:last-child {
  margin-right: 0px;
}

.chkBox .chk_menu span {
  vertical-align: middle;
}

.chkBox .big {
  width: 25%;
}

input[type="checkbox"] {
  appearance: none;
  position: relative;
  cursor: pointer;
  border: 1px solid rgb(170, 170, 170);
  border-radius: 4px;
  width: 22px;
  height: 22px;
  vertical-align: middle;
  outline: none !important;
}

input[type="checkbox"]::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: scale(0) translate(-50%, -50%);
  line-height: 1;
}

input[type="checkbox"]:hover {
  border-color: rgba(170, 170, 170, 0.5);
}

input[type="checkbox"]:checked {
  background-color: rgb(96, 218, 137);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

input[type="checkbox"]:checked::before {
  border-radius: 2px;
  transform: scale(1) translate(-50%, -50%);
}

.chkBox-mobile {
  display: none;
}

.textArea p {
  margin: 32px 0px;
}

#textarea0 {
  padding: 16px 2%;
  width: 96%;
  height: 168px;
  font-size: 16px;
  border-radius: 8px;
  border:2px solid #f1f1f1;
}

.fileArea {
  margin-top: 64px;
  width: 100%;
  position: relative;
}

.fileArea>div {
  border-bottom: 1px solid rgb(241, 241, 241);
  margin-bottom: 16px;
}

.file {
  position: absolute;
  right: 0px;
  bottom: 5px;
  cursor: pointer;
}

.file label {
  cursor: pointer;
}

.file-ex {
  margin: 8px 0px 12px;
  font-size: 14px;
  color: rgb(204, 204, 204);
}

.file-img {
  display: inline-block;
  position: absolute;
  right: 55%;
  width: 32px;
  height: 32px;
}

.fileArea .file-img {
  bottom: 0px;
}

.apply-file1 {
  right: 12%;
}

.survey_itemlabel {
  border-bottom: 1px solid rgb(204, 204, 204);
}

.surveyF {
  display: flex;
}

.file-user input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.user {
  float: left;
  width: 47%;
}

.user:nth-child(2),
.survey_name:nth-child(4) {
  float: right;
}

.file input[type="file"] {
  display: none;
}

.red::placeholder {
  color: rgb(238, 102, 102);
}

.red {
  color: rgb(238, 102, 102);
}

.red-text {
  color: rgb(238, 102, 102);
}

label[for="agreement"] {
  margin-left: 5px;
  vertical-align: middle;
}

.bold {
  font-weight: bold;
  border-bottom: 1px solid rgb(170, 170, 170);
  cursor: pointer;
}

.btnArea {
  text-align: center;
  margin-top: 64px;
  width: 100%;
}

.btnArea input {
  width: 320px;
  height: 48px;
  border-radius: 8px;
  margin-right: 64px;
  font-size: 18px;
  color: rgb(255, 255, 255);
}

.btnArea input:last-child {
  margin-right: 0px;
}

.cont-button {
  border: 1px solid rgb(241, 241, 241);
  background-color: rgb(255, 255, 255);
  cursor: pointer;
}

#button1 {
  color: rgb(51, 51, 51);
  border: 1px solid #f1f1f1;
}

#button1_m {
  color: rgb(51, 51, 51);
  border: 1px solid #f1f1f1;
}

#button2 {
  background-color: rgb(146, 171, 255);
  border: 1px solid rgb(146, 171, 255);
}

#button2.success{
  background-color: rgb(95, 132, 255);
  border: 1px solid rgb(95, 132, 255);
}

#button2_m {
  background-color: rgb(146, 171, 255);
  border: 1px solid rgb(146, 171, 255);;
}

#button2_m.success {
  background-color: #5f84ff;
  border: 1px solid #5f84ff;
}

.formArea1 .cont-inner-tit,
.formArea1 .cont-inner-tit {}

.m-cont-bottom {
  display: none;
}

/*.form-container {
  padding-top: 64px;
}*/

#apply-form legend {
  font-size: 32px;
  text-align: center;
  color: rgb(170, 170, 170);
  border-bottom: 1px solid rgb(241, 241, 241);
  padding: 16px;
}

#apply-form label {
  font-size: 14px;
  color: rgb(204, 204, 204);
}

.apply-bottom {
  background-color: rgb(255, 255, 255);
}

.apply-content {
  background-color: rgb(255, 175, 35);
  height: 450px;
  align-items: center;
  padding: 0px 3%;
  position: relative;
}

.apply-text {
  padding: 8% 0px;
  color: rgb(255, 255, 255);
}

.apply-tit {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
}

.apply-info {
  font-size: 24px;
  margin-top: 32px;
  line-height: 1.5;
}

.servey-mobile {
  display: none;
}

.illust3 {
  right: 64px;
  bottom: 10px;
  width: 598px;
  height: 570px;
}

.motion {
  width: 24px;
  height: 20px;
  position: absolute;
  left: 50%;
  bottom: 10%;
  border-color: rgb(255, 255, 255) rgb(255, 255, 255) transparent transparent;
  animation: 2s linear 0s 1 normal none running motion;
}

@keyframes motion {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.form-container {
  background-color: rgb(255, 255, 255);
  padding-bottom: 64px;
  max-width: 1022px;
  width: 100%;
  margin: 0px auto;
}

.form_container h3 {
  text-align: center;
  border-bottom: 2px solid rgb(241, 241, 241);
  padding: 1rem;
  color: rgb(170, 170, 170);
  font-size: 32px;
}

.form-container-mob {
  display: none;
}

.survey {
  max-width: 1152px;
  padding: 3rem 0px;
  margin: 0px auto;
  position: relative;
}

.num {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: rgb(255, 175, 35);
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 18px;
}

.question {
  margin: 8px 6px;
  color: rgb(170, 170, 170);
  font-size: 16px;
}

.survey_item {
  overflow: hidden;
  padding: 1rem 2rem 0px;
}

.survey_item_chk input[type="checkbox"]+label {
  display: inline-block;
  width: 130px;
  height: auto;
  margin: 0px 3px;
  font-size: 14px;
  color: rgb(204, 204, 204);
}

.survey_item input[type="text"] {
  width: 100%;
  height: 30px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.8);
  margin: 0px 5px 8px 0px;
}

.alert-textS {
  font-size: 12px;
  color: rgb(238, 102, 102);
}

.survey_item {
  padding: 0px;
}

.survey_item_chk {
  overflow: hidden;
  height: 70px;
}

.survey_item_chk:nth-child(2) {}

.survey_item_chk .chk_menu {
  float: left;
}

input[type="checkbox"] {
  border: 1px solid rgb(204, 204, 204);
  border-radius: 4px;
}

.survey_item_chk .chk_menu:nth-child(1),
.survey_item_chk .chk_menu:nth-child(2),
.survey_item_chk .chk_menu:nth-child(3),
.survey_item_chk .chk_menu:nth-child(4),
.survey_item_chk .chk_menu:nth-child(5) {
  margin-bottom: 16px;
  width: 15%;
}

.survey_item_chk .chk_menu:nth-child(6),
.survey_item_chk .chk_menu:nth-child(7),
.survey_item_chk .chk_menu:nth-child(8),
.survey_item_chk .chk_menu:nth-child(9),
.survey_item_chk .chk_menu:nth-child(10) {
  width: 14%;
}

.survey_item_chk .chk_menu:nth-child(8) {
  width: 16%;
}

.survey_item_chk .chk_menu:nth-child(10) {}

.survey_item_chk .chk_menu:nth-child(1),
.survey_item_chk .chk_menu:nth-child(6) {
  margin-left: 0px;
}

.survey_item_chk .chk_menu:nth-child(5) {}

.survey_item_chk .chk_menu:nth-child(7) {}

.survey_item_chk .chk_menu:nth-child(8) {}

.survey_item_chk .chk_menu:nth-child(10) {}

.survey_item_chk .chk_menu:nth-child(5) label {
  margin-left: 30%;
}

.survey_item_chk .chk_menu:nth-child(10) label {
  margin-left: 31%;
}

.survey_item_chk .chk_menu:nth-child(9) {
  width: auto;
}

.survey_item_chk .chk_menu:nth-child(3),
.survey_item_chk .chk_menu:nth-child(8) {
  width: 20%;
}

.survey_item_chk input[type="checkbox"]+label {
  width: auto;
}

.survey_item_chk .chk_menu input[type="checkbox"] {
  margin-right: 4px;
}

.tit {
  margin-bottom: 21px;
}

.survey_item:nth-child(2),
.survey_item:nth-child(3),
.survey_item:nth-child(4) {}

.survey_item_chk .chk_menu:nth-child(4),
.survey_item_chk .chk_menu:nth-child(9) {
  margin-left: 3%;
}

.agreement {}

.file_ex {
  margin-top: 8px;
  margin-bottom: 39px;
}

.survey_item input[type="text"] {
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  color: rgb(201, 201, 201);
}

#textarea1 {
  border: 2px solid rgb(241, 241, 241);
}

.btnArea input {
  max-width: 320px;
  width: 48%;
  height: 48px;
}

label[for="agreement"] {
  color: rgb(201, 201, 201);
  font-size: 13px;
}

.survey_name {}

input::placeholder {
  color: rgb(201, 201, 201);
}

.survey_name {
  float: left;
  width: 47%;
  height: 55px;
}

.survey_name:nth-child(2),
.survey_name:nth-child(4) {
  float: right;
}

.survey_item input[type="file"]+label:nth-of-type(2n) {
  margin-right: 0px;
}

.alert0 {
  right: 53%;
  top: 44%;
}

.alert1 {
  right: 0px;
  top: 43%;
}

.alert2 {
  right: 53%;
  bottom: 27%;
}

.alert3 {
  right: 0%;
  bottom: 27%;
}

.file-img {
  right: 52.5%;
}

.apply-file1 {
  right: 0px;
}

.agreement2 {
  margin: 0px;
  padding: 0px;
}

.chkBox {
  overflow: hidden;
}

.chkBox .chk_project {
  float: left;
  width: 20%;
}

.chkBox .chk_project .fileArea {
  margin-top: 70px;
}

.infoF {
  position: relative;
}

.file_ex {
  padding-left: 2rem;
  font-size: 14px;
  color: rgb(204, 204, 204);
}

.survey .textarea {
  padding-left: 2rem;
  padding-top: 1rem;
  box-sizing: border-box;
}

#textarea1 {
  max-width: 1100px;
  width: 100%;
  height: 228px;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: 8px;
  border: 2px solid #f1f1f1;
}

textarea::placeholder {
  color: rgb(204, 204, 204);
}

#apply-form {
  max-width: 894px;
  width: 100%;
  margin: 0px auto;
}

.apply-form .agreement {
  color: rgb(204, 204, 204);
}

#button3,
#mob-button1 {
  border: 2px solid rgb(241, 241, 241);
  background-color: rgb(255, 255, 255);
  color: rgb(51, 51, 51);
  cursor: pointer;
}

#button4.success {
  border: 2px solid rgb(241, 241, 241);
  background-color: rgb(255, 175, 35);
  cursor: pointer;
}

#button4,
#mob-button2 {
  border: 1px solid rgb(241, 241, 241);
  background-color: rgb(255, 189, 139);
  cursor: pointer;
}

.file-user {
  display: flex;
}

.file-user .red {
  line-height: 19px;
  padding-left: 3px;
}

.survey_item input[type="file"] {
  width: 488px;
  height: 30px;
  padding: 5px 0px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.8);
  margin: 0px 53px 20px 0px;
}

.survey_item input[type="file"] {
  display: none;
}

.survey_item input[type="file"]+label {
  width: 488px;
  height: 30px;
  line-height: 30px;
  padding: 5px 0px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.8);
  margin: 0px 53px 20px 0px;
  display: block;
  cursor: pointer;
  font-size: 18px;
  color: rgb(201, 201, 201);
}

.form-text-mob {
  display: none;
}

.info-mob {
  display: none;
}

.pop-layer {
  overflow: hidden scroll;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 1022px;
  width: 100%;
  height: 900px;
  background-color: rgb(255, 255, 255);
  z-index: 10;
  transform: translate(-50%, -50%);
}

.dim-layer {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 100000;
}

.dim-layer .dimBg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  opacity: 0.7;
}

.dim-layer .pop-layer {
  display: block;
}

::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-thumb {
  background: rgb(221, 221, 221);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(64, 64, 64);
}

::-webkit-scrollbar-thumb:active {
  background: rgb(128, 128, 128);
}

::-webkit-scrollbar-button {
  display: none;
}

.modal-wrap {
  width: 100%;
}

.popup-wrap,
.popup-wrap1 {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  display: none;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.16);
  z-index: 2147483647;
}

.popup-container {
  max-width: 640px;
  width: 100%;
  height: 659px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: rgb(255, 255, 255);
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  z-index: 9999;
}

.popup-body {
  font-size: 16px;
  width: 100%;
  height: 659px;
  padding: 3rem;
  box-sizing: border-box;
  overflow-y: scroll;
}

.popup-body p {
  line-height: 27px;
  padding-bottom: 32px;
}

.modal-content > p{
  color:#777;
}

.modal-title {
  color: rgb(0, 0, 0);
}

.modal-contentBox {
  color: rgb(119, 119, 119);
}

.modal-title {
  padding-bottom: 3rem;
  font-size: 24px;
  font-weight: bold;
}

.pop-tit {
  font-weight: bold;
}


a.modal-info{
  color:#777;
  display:block;
  text-decoration: underline;
}


.popup-footer {
  width: 100%;
  height: 52px;
  line-height: 52px;
  position: fixed;
  bottom: 0px;
  text-align: center;
  background-color: rgb(244, 244, 244);
}

.pop-btn.close {
  cursor: pointer;
  color: rgb(0, 0, 0);
}

.form-container .agreement {
  margin-top: 0px;
}

.popup-container-alert {
  max-width: 426px;
  width: 100%;
  height: 296px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: rgb(255, 255, 255);
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  z-index: 9999;
  text-align: center;
}

.popup-body-alert {
  padding: 30px;
}

.alertS {
  margin: 0px auto;
  width: 74px;
  height: 74px;
}

.alert-tit {
  font-weight: bold;
  font-size: 24px;
  color: rgb(119, 119, 119);
  margin: 16px 0px;
}

.alert-info {
  line-height: 27px;
  font-size: 18px;
  color: rgb(204, 204, 204);
  margin-bottom: 30px;
}

.hide {
  display: none;
}

.hide.alert-text {
  opacity: 0;
}

.form-title{
  color:#aaa;
  text-align:center;
  font-weight:normal;
  border-bottom:2px solid #f1f1f1;
  padding:40px 0;
  font-size: 32px;
}

.topButton{
  width:48px;
  height:48px;
  position:fixed;
  bottom:6px;
	right:6px;
	z-index:999;
  cursor:pointer;
  display:none;

}

.btn_gotop{
  display:block;
  width:28px;
  height:28px;
  margin:0 auto;
  border-radius:50%;
  background:#fff url(../img/topButton.png) center center no-repeat;
  background-size:16px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.08);
  transform:translatey(32.5%)
}



@media screen and (max-width: 2450px) {
  .solution {
    transform: scale(1);
  }

}


@media screen and (min-width: 1921px) {

  /*
  .solution {  padding: 8.4% 0px 0px; height: auto; }
  .solution-img { margin-top: 0px; }
  .solution-project {
    transform:translateX(-50%) scale(1.3);
    bottom: -270%;
  }
  .keyword-info {
    font-size: 16px;
    transform: scale(1.5);
  }
  .img-num {
    left: 0;
    bottom: -75%;
    width: 90%;
  }
  .illust-img {
    left: -10%;
    bottom: -296%;
  }
  */
  .solution {
    transform: scale(1.35);
  }

}

@media screen and (min-width: 1920px) {
  .solution {
    height: auto;
  }

  /*.solution-project {
    transform: translateX(-50%) scale(0.9);
  }

  /*.home-section .solution-desc {
    right: -20px;
  }*/
}

/*@media screen and (min-width: 1680px) {
  .solution-project {
    transform: translateX(-50%) scale(0.9);
  }
}*/

@media screen and (min-width: 1440px) {
  .solution-desc {
    right: 45px;
  }
}

@media screen and (min-width: 1367px) {

  /*.home-section.s3::after,
  .home-section.s2::after,
  .home-section.s1::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 204px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.63));
    z-index: -1;
  }*/
}

@media screen and (max-width: 1366px) {
  .home-section {
    height: 100vh;
  }

  .quick-nav {
    display: block;
  }

  .sentence {
    transform: translate(-50%, -50%) scale(0.85);
  }

  .sol-conatiner {
    height: auto;
  }

  /*.solution-project {
    display: none;
  }*/

  .solution-project-tab {
    display: none;
  }

  .solution-img {
    position: relative;
    width: 100%;
    height: 422px;
    overflow: hidden;
    max-width: 1080px;
    margin: 0px auto;
    margin-top: 88px;
}

  .illust-img {
    display: block;
    width:161px;
    height:488px;
    left:5%;
  }

  .img-num {
    width: 52%;
    /*margin-bottom: 24px;
    margin-top: -60px;*/
    bottom:-45%;
  }

  .solution-imgArea {
    width: 100%;
    height: auto;
    margin: 0px auto;
  }

  .soluteion-text {
    position: relative;
    top: 30px;
    width: 70%;
    margin: 0px auto;
  }

  /*.home-section .solution-desc {

    top: 30px;
    right: 0%;
  
  }*/

  .home-section.s1 .solution-desc.s1,
  .home-section.s2 .solution-desc.s2,
  .home-section.s3 .solution-desc.s3 {
    display: inline-block;
    /* white-space: nowrap; */
    /*bottom: -1%;*/
    bottom: 0;
    /* right: -1%; */
  }

  .solution-tit-sub {
    line-height: 1.5;
    /* width: 90%; */
}

  .pop-layer {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    width: 100%;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    z-index: 10000001;
    overflow-y: scroll;
  }

  .dim-layer {
    z-index: 10000002;
  }

  /*.solution-tit-sub>br {
    display: none;
  }*/

  .menu-left {
    width: 100%;
  }

  .menu-content>div {
    margin-right: 0px;
  }

  .alert0 {
    right: 53%;
    top: 43%;
  }

  .alert1 {
    right: 0px;
    top: 43%;
  }

  .alert2 {
    right: 53%;
    bottom: 28%;
  }

  .alert3 {
    right: 0px;
    bottom: 28%;
  }

  .scrollLock {
    overflow: auto;
  }

  .social-web {
    display: none;
  }

  .social-mob {
    display: block;
  }
}

@media screen and (max-width: 1680px) {
  .solution {
    padding: 3.4% 0 0;
  } 
}

@media screen and (max-width: 1366px) and (max-height: 768px) { 
  
  .solution-project-tab{
    display:none;
  }

  .solution-project-mobile{
    display:none;
  }

  .solution-imgArea{
    display:block;
  }

  .solution-img{
    max-width:1080px;
    width:100%;
    height:422px;
    margin-top:30px;
  }

  .illust-img{
    display:block;
    width:161px;
    height:487px;
    /*left:10%;*/
  }

  .home-section .solution-desc{
    right:0;
    bottom:0;
  }

  .img-num {
    width: 49%;
    /* margin-bottom: 24px; */
    /*margin-top: -16px;*/
    bottom:-25%;
  }

  .solution {
    padding: 4.4% 0px 0px !important;
  }
 
}

@media screen and (max-width: 1280px) and (max-height: 720px) {
  .solution-img { 
    margin-top: 3.5%;
  }

  .img-num {
    bottom: -35%;
    margin-top: 0;
    /*width: 55%;*/
    width: 52%;
  }

  .home-co-mockup.s1 .solution-desc.s1,
  .home-co-mockup.s2 .solution-desc.s2,
  .home-co-mockup.s3 .solution-desc.s3 {
    margin-right: 0%;
    right:0;
    /*width: 16% !important;*/

  }

  .home-co-mockup .solution-tit-sub > br{
    display:none;
  }

  .solution-tit-sub {
    right: 3%;
    font-size: 1.1vw;
  }

  .home-section-bg .solution-desc.s2{
    width:16%;
 
  }




  
}

@media screen and (max-width: 1024px) {
  .home-section {
    height: 100vh;
  }

  .cont-section {
    position: static;
    height: auto;
  }

  .menu-content {
    width: calc(100% - 128px);
    transform: translate(-50%, -50%) scale(0.7);
  }

  .menu-content>div {
    margin-right: 64px;
  }

  .menu-item {
    font-size: 75px;
  }

  .menu-right {}

  .menu-com-info dl {
    margin-bottom: 48px;
  }

  .data {
    font-size: 15px;
  }

  .copy {
    font-size: 15px;
    width: 332px;
  }

  .sentence {
    transform: translate(-50%, -50%) scale(0.8);
  }

  .company-text {
    width: calc(100% - 276px);
  }

  .sol-desc {
    display: none;
  }

  .company-info {
    flex-direction: column-reverse;
    background-color: rgb(95, 132, 255);
  }

  .company-desc-right,
  .company-desc-left {
    width: 100%;
  }

  .company-text {
    width: calc(70% - 62px);
  }

  .solution {
    top: 0px;
    /*padding: 15% 0px;*/
  }

  .keyword-info {
    margin: 0;
  }

  .solution-project {
    display: block;
  }

  .solution-project-tab {
    display: none;
  }

  .solution-project-mobile{
    display:none;
  }

  .illust-img{
    display:block;
    width:136px;
    height:414px;
    left:5%;
    bottom:1%;
  }

  /*.solution-imgArea {
    max-width: 918px;
    width: 100%;
    height: auto;
    margin: 0px auto;
  
  }*/

  .home-section-bg {
    background-size: auto 100%;
  }

  .soluteion-text {
    position: static;
    /*margin-left: 32px;*/
    margin-left: 0;
  }

  .home-section.s1 .solution-desc.s1,
  .home-section.s2 .solution-desc.s2,
  .home-section.s3 .solution-desc.s3 {
    width: 100%;
    top: 20px;
    left: 10px;
  }

  .solution-img-btn {
    bottom: -7%;
    cursor: pointer;
  }

  .cont-main {
    height: auto;
  }

  .cont-info {}

  .cont-user {
    flex-direction: column;
    width: 100%;
    height: 50%;
  }

  .cont-user>div {
    display: block;
    width: 100%;
    height: 420px;
    box-sizing: border-box;
  }

  .pop-layer {}

  .m-cont-bottom {
    display: none;
  }

  .chk_container {
    display: flex;
  }

  .chkBox .chk_menu {
    margin-right: 4%;
  }

  .chkBox .chk_menu:last-child {
    margin-right: 0px;
  }

  .info input {
    width: 100%;
  }

  .info-person .col-01,
  .info-person .col-02 {
    width: 16%;
  }

  .chkBox .chk_menu {
    margin-right: 10%;
  }

  .btnArea {
    display: flex;
    justify-content: center;
  }

  .cont-com-info dl {
    margin-left: 5%;
    font-size: 12px;
  }

  .social-web {
    display: none;
  }

  .social-mob {
    display: block;
  }

  .solution-project {
    width: calc(100% - 32px);
  }

  .img-num {
    margin: 0px auto;
    width:50%;
    bottom: -60%;
    left:28%;
  }

  .cont-inq{
    background: url(../img/contact_left.png) 90% 50% / 280px no-repeat rgb(95, 132, 255);
  }
  .apply_inq{
    background: url(../img/contact_right.png) 90% 50% / 280px no-repeat rgb(255, 175, 35);
  }

  .solution-img {
    /*height: calc(46.875vh);*/
    /*height: calc(50vh);*/
    
    max-width: 918px;
    width: 100%;
    height: 359px;
    margin-top:120px;
  }

  .popup-wrap,
  .popup-wrap1 {
    z-index: 10000003;
  }
}

/*@media screen and (max-width: 1024px) and (max-height: 768px) {
  .solution {
    padding: 70px 0px 40px;
  }

  .img-num {
    display: none;
  }

  .solution-img-btn {
    bottom: 40px;
  }

  .soluteion-text {
    width: 62%;
    margin: 30px auto 0px;
  }

  .img-num {
    width: 55%;
    margin-bottom: 24px;
  }

  .sentence {
    transform: translate(-50%, -50%) scale(0.6);
  }

  .company-text {
    transform: translate(-50%, -50%) scale(0.7);
  }
}*/

@media screen and (max-width: 768px) {
  .menu-content {
    transform: translate(-50%, -50%) scale(0.8);
  }

  .sol-conatiner {
    display: none;
  }

  .chkBox .chk_menu {
    margin-right: 4%;
  }

  #apply-form {
    max-width: 660px;
    width: 100%;
    margin: 0px auto;
  }

  #apply-form label {
    font-size: 12px;
  }

  .survey_item_chk .chk_menu:nth-child(1),
  .survey_item_chk .chk_menu:nth-child(2),
  .survey_item_chk .chk_menu:nth-child(3),
  .survey_item_chk .chk_menu:nth-child(4),
  .survey_item_chk .chk_menu:nth-child(5),
  .survey_item_chk .chk_menu:nth-child(6),
  .survey_item_chk .chk_menu:nth-child(7),
  .survey_item_chk .chk_menu:nth-child(8),
  .survey_item_chk .chk_menu:nth-child(9),
  .survey_item_chk .chk_menu:nth-child(10) {
    width: 20%;
  }

  .survey_item_chk .chk_menu:nth-child(3),
  .survey_item_chk .chk_menu:nth-child(7) {
    display: none;
  }

  .survey_item_chk .chk_menu:nth-child(5) {}

  .survey_item_chk .chk_menu:nth-child(8) {
    width: 22%;
  }

  .survey_item_chk .chk_menu:nth-child(5) label {
    margin-left: 0px;
  }

  .survey_item_chk .chk_menu:nth-child(4),
  .survey_item_chk .chk_menu:nth-child(9) {
    margin-left: 0px;
  }

  .survey_item_chk .chk_menu:nth-child(10) label {
    margin-left: 0px;
  }

  .alert0 {
    right: 53%;
    top: 44%;
  }

  .alert1 {
    right: 0px;
    top: 44%;
  }

  .alert2 {
    right: 53%;
    bottom: 28%;
  }

  .alert3 {
    right: 0px;
    bottom: 28%;
  }

  .cont-com-info dd {
    font-size: 12px;
  }

  .solution-img {
    width: 100%;
  }

  .circle {
    display: none !important;
  }

  .cont-bottom {
    height: auto;
  }

  .cont-inq,
  .apply_inq {
    background-size: 30%;
  }

  .cont-com-info dl:nth-child(5) {
    margin-right: 3%;
  }
}

@media screen and (max-width: 500px) {
  .chkBox .chk_menu {
    margin-right: 4%;
  }
}



/*.form-container {
  padding-top: 128px;
}*/

#apply-form legend {
  font-size: 32px;
  text-align: center;
  color: rgb(170, 170, 170);
  border-bottom: 1px solid rgb(241, 241, 241);
  padding: 16px;
}

#apply-form label {
  font-size: 14px;
  color: rgb(204, 204, 204);
}

.apply-bottom {
  background-color: rgb(255, 255, 255);
}

.apply-content {
  background-color: rgb(255, 175, 35);
  height: 450px;
  align-items: center;
  padding: 0px 3%;
  position: relative;
}

.apply-text {
  padding: 8% 0px;
  color: rgb(255, 255, 255);
}

.apply-tit {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
}

.apply-info {
  font-size: 24px;
  margin-top: 32px;
  line-height: 1.5;
}

.servey-mobile {
  display: none;
}

.illust3 {
  right: 64px;
  bottom: 10px;
  width: 598px;
  height: 570px;
}

.motion {
  width: 24px;
  height: 20px;
  position: absolute;
  left: 50%;
  bottom: 10%;
  border-color: rgb(255, 255, 255) rgb(255, 255, 255) transparent transparent;
  animation: 2s linear 0s infinite normal none running motion;
}

@keyframes motion {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.form-container {
  background-color: rgb(255, 255, 255);
  padding-bottom: 2rem;
  max-width: 1152px;
  width: 100%;
  margin: 0px auto;
}

.form_container h3 {
  text-align: center;
  border-bottom: 2px solid rgb(241, 241, 241);
  padding: 1rem;
  color: rgb(170, 170, 170);
  font-size: 32px;
}

.form-container-mob {
  display: none;
}

.survey {
  max-width: 1152px;
  padding: 3rem;
  margin: 0px auto;
  position: relative;
}

.num {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: rgb(255, 175, 35);
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 18px;
}

.question {
  margin: 8px 6px;
  color: rgb(170, 170, 170);
  font-size: 16px;
}

.survey_item {
  overflow: hidden;
  padding: 1rem 2rem 0px;
}

.survey_item_chk input[type="checkbox"]+label {
  display: inline-block;
  width: 130px;
  height: auto;
  margin: 0px 3px;
  font-size: 14px;
  color: rgb(204, 204, 204);
}

.survey_item input[type="text"] {
  width: 100%;
  height: 30px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.8);
  margin: 0px 5px 8px 0px;
}

.alert-textS {
  font-size: 12px;
  color: rgb(238, 102, 102);
}

.survey_item {
  padding: 0px;
}

.survey_item_chk {
  overflow: hidden;
  height: 70px;
}

.survey_item_chk:nth-child(2) {}

.survey_item_chk .chk_menu {
  float: left;
}

input[type="checkbox"] {
  border: 1px solid rgb(204, 204, 204);
  border-radius: 4px;
}

.survey_item_chk .chk_menu:nth-child(1),
.survey_item_chk .chk_menu:nth-child(2),
.survey_item_chk .chk_menu:nth-child(4),
.survey_item_chk .chk_menu:nth-child(5) {
  margin-bottom: 16px;
  width: 18%;
}

.survey_item_chk .chk_menu:nth-child(6),
.survey_item_chk .chk_menu:nth-child(7),
.survey_item_chk .chk_menu:nth-child(9),
.survey_item_chk .chk_menu:nth-child(10) {
  width: 18%;
}

.survey_item_chk .chk_menu:nth-child(3),
.survey_item_chk .chk_menu:nth-child(8) {
  width: 22%;
}

.survey_item_chk input[type="checkbox"]+label {
  width: auto;
}

.survey_item_chk .chk_menu input[type="checkbox"] {}

.tit {
  margin-bottom: 21px;
}

.survey_item:nth-child(2),
.survey_item:nth-child(3),
.survey_item:nth-child(4) {
  padding-left: 40px;
}

.agreement {}

.file_ex {
  margin-top: 8px;
  margin-bottom: 39px;
}

.survey_item input[type="text"] {
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  color: rgb(201, 201, 201);
}

#textarea1 {
  border: 2px solid #f1f1f1;
}

.btnArea input {
  max-width: 132px;
  width: 48%;
  height: 48px;
}

label[for="agreement"] {
  color: rgb(201, 201, 201);
  font-size: 13px;
}

.survey_name {
  overflow: hidden;
  position: relative;
}

input::placeholder {
  color: rgb(201, 201, 201);
}

.survey_name {
  float: left;
  width: 47%;
}

.survey_name:nth-child(2),
.survey_name:nth-child(4) {
  float: right;
}

.survey_item input[type="file"]+label:nth-of-type(2n) {
  margin-right: 0px;
}

.alert0 {
  right: 1%;
  top: 25%;
}

.alert1 {
  right: 5%;
  top: 25%;
}

.alert2 {
  right: 1%;
  bottom: 35%;
}

.alert3 {
  right: 5%;
  bottom: 42%;
}

.file-img {
  right: 51.5%;
}

.apply-file1 {
  right: 5%;
}

.agreement2 {
  margin: 0px;
  padding: 0px;
}

.chkBox {
  overflow: hidden;
}

.chkBox .chk_project {
  float: left;
  width: 20%;
}

.chkBox .chk_project .fileArea {
  margin-top: 70px;
}

.infoF {
  position: relative;
}

.file_ex {
  padding-left: 2rem;
  font-size: 14px;
  color: rgb(204, 204, 204);
}

.survey .textarea {
  padding-left: 2rem;
  padding-top: 1rem;
  box-sizing: border-box;
}

#textarea1 {
  max-width: 1100px;
  width: 100%;
  height: 228px;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: 8px;
  border: 2px solid #f1f1f1;
}

textarea::placeholder {
  color: rgb(204, 204, 204);
}

.apply-form .agreement {
  padding-left: 5rem;
  color: rgb(204, 204, 204);
}

#button4,
#mob-button2 {
  border: 1px solid rgb(241, 241, 241);
  background-color: rgb(255, 189, 139);
  cursor: pointer;
}

.file-user {
  display: flex;
}

.file-user .red {
  line-height: 19px;
  padding-left: 3px;
}

.survey_item input[type="file"] {
  width: 488px;
  height: 30px;
  padding: 5px 0px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.8);
  margin: 0px 53px 20px 0px;
}

.survey_item input[type="file"] {
  display: none;
}

.survey_item input[type="file"]+label {
  width: 488px;
  height: 30px;
  line-height: 30px;
  padding: 5px 0px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.8);
  margin: 0px 53px 20px 0px;
  display: block;
  cursor: pointer;
  font-size: 18px;
  color: rgb(201, 201, 201);
}

.form-text-mob {
  display: none;
}

.info-mob {
  display: none;
}

.modal-wrap {
  width: 100%;
}

.popup-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0px;
  display: none;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.16);
}

.popup-wrap1 {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0px;
  display: none;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.16);
}

.popup-body {
  font-size: 16px;
  width: 100%;
  padding: 4rem;
  box-sizing: border-box;
}

.popup-body p {
  line-height: 27px;
  padding-bottom: 2rem;
}

.modal-title {
  color: rgb(0, 0, 0);
}

.modal-contentBox {
  color: rgb(119, 119, 119);
}

.modal-title {
  padding-bottom: 3rem;
  font-size: 24px;
  font-weight: bold;
}

.popup-footer {
  width: 100%;
  height: 52px;
  line-height: 52px;
  text-align: center;
  background-color: rgb(244, 244, 244);
}

.pop-btn.close {
  cursor: pointer;
}

.form-container .agreement {
  margin-top: 0px;
  padding-left: 80px;
}

.popup-container-alert {
  max-width: 426px;
  width: 100%;
  height: 296px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: rgb(255, 255, 255);
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  z-index: 9999;
  text-align: center;
}

.popup-body-alert {
  padding: 30px;
}

.alertS {
  margin: 0px auto;
  width: 74px;
  height: 74px;
}

.alert-tit {
  font-weight: bold;
  font-size: 24px;
  color: rgb(119, 119, 119);
  margin: 16px 0px;
}

.alert-info {
  line-height: 27px;
  font-size: 18px;
  color: rgb(204, 204, 204);
  margin-bottom: 30px;
}

@media screen and (max-width: 1366px) {
  .home-section {
    height: 100vh;
  }

  .company-text {
    transform: translate(-50%, -50%) scale(0.8);
  }

  .sentence {
    transform: translate(-50%, -50%) scale(0.6);
  }

  .solution {
    padding: 8.4% 0px 0px; 
    /*padding: 6.4% 0 0;*/
    text-align: center;
    position: relative;
    margin: 0px auto;
    max-width: 1220px;
    width: 100%;
    height: auto;
  }


  .solutionBox {
    max-width: 1140px;
    width: calc(100% - 226px);
    padding: 103px 0px 0px;
  }

  .sol-cont {
    width: 100%;
  }

  .sol-tit {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .sol-cont h3 {
    font-size: 40px;
    margin-bottom: 48px;
  }

  .sol-info>br {
    display: none;
  }

 
  .illust3 {
    display: block;
    width: 500px;
    height: 398px;
    bottom: 124px;
  }

  .apply-content {
    height: 398px;
  }

  #apply-form label .red {
    vertical-align: middle;
  }
}


@media screen and (max-width: 1366px) and (max-height:1024px){ 
  .home-section.s1 .solution-desc.s1 {
    right: 0;
    /*width: auto;*/
  }

  .home-section.s1 .solution-desc.s1{
    right:-1%;
  }
  
  .home-section.s2 .solution-desc.s2,
  .home-section.s3 .solution-desc.s3 {
    right: -1;
    width: 16%;
  }




  .home-section.s2 .solution-desc.s2 {
    width: 16%;
    right:0;
  }

  .solution-tit-sub {
    /* width: auto; */
  }

  .home-section-bg .solution-desc.s2 {
    /*width: 17% !important;*/
    width:17%;
  }
  
  .home-info-mockup .solution-desc.s3 {
    /* right: -1% !important; */
  }

  .home-co-mockup .solution-desc.s1 {
    right:-3%;

  }

  .home-section .solution-desc{
    display:none;
  }

  .home-section.s1 .solution-desc.s1,
  .home-section.s1 .solution-desc.s2,
  .home-section.s1 .solution-desc.s3 {
    right:0;
  }
  
  .home-co-mockup.s1 .solution-desc.s1 {
    width: 15% !important;
    right:1%;
  }
  .home-section.s1 .solution-desc.s3 {
    right:-1%;
  }

  .home-co-mockup.s2 .solution-desc.s1,
  .home-co-mockup.s2 .solution-desc.s2 {
    right:-2%;
  }

  .home-co-mockup .solution-tit-sub > br{
    display:none;
  }

  .solution-tit-sub{
    font-size:0.95vw;
  }
  



}

@media screen and (max-width: 1024px) {
  .cont-user {
    position: static;
    flex-direction: column;
    width: 100%;
    height: 840px;
  }

  .cont-user>div {
    display: block;
    width: 100%;
    height: 420px;
    box-sizing: border-box;
  }

  .cont-mob {
    height: auto !important;
  }

  .form-container {
    width: 100%;
    padding: 0px;
  }

  .cont-info {
    overflow: hidden;
    height: auto !important;
  }

  .cont-main {}

  .cont-tit {
    /*padding-bottom: 10px;*/
    font-size: 60px;
  }

  .cont-com-info {
    display: flex;
  }

  .cont-com-info dl {
    margin-bottom: 32px;
    margin-left: 5%;
  }

  .cont-formArea {
    padding: 0px;
  }

  .cont-formArea legend {
    display: none;
  }

  .cont-info {
    padding-left: 64px;
  }

  .form-contact {
    padding: 64px;
  }

  #cont-form {
    max-width: 896px;
    width: 95%;
  }

  .cont-bottom {
    padding-top: 128px;
  }

  .contact-inner {
    background-color: rgb(255, 255, 255);
  }

  .illust3 {
    display: none;
  }

  .apply-inner {
    padding: 5%;
    padding-top:0;
  }

  .form-container {
    border-radius: 8px;
  }

  .btnArea input {
    margin-right: 2%;
  }

  .home-section.s1 .solution-desc.s1, 
  .home-section.s2 .solution-desc.s2, 
  .home-section.s3 .solution-desc.s3{
    display:none;
  }
}

@media screen and (max-width: 1024px) and (max-height:1366px){
  .solution{
    padding:15% 0;
  }

  .solution-project{
    display:none;
  }
  .solution-project-mobile {
    display: block;
    width:calc(100% - 128px);
  }

  .img-num {
    width: 78%;
    display: none;
  }

  .solution-tit {
    font-size: 16px;
    margin: 15px 0px;
  }

  .sol-imgArea>div {
    margin-bottom: 124px;
  }

  .slick-dots-custom {
    position: absolute;
    /* top: 0%; */
    top: -20px;
    right: 0px;
    display: flex !important;
  }

  .slick-dots-custom>li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(204, 204, 204);
    transition: transform 0.6s ease 0s, background;
  }

  .slick-dots-custom>li:not(:last-child) {
    margin-right: 12px;
  }

  .slick-dots-custom>li.slick-active {
    background: rgb(255, 255, 255);
    transform: scale(1.5);
  }

  .slick-dots-custom>li>button {
    display: none;
  }


}

@media screen and (max-width: 1024px) and (max-height:768px){
 
  .solution{
    padding:0;
    padding-top:8%;
  }

  .solution-project{
    display:block;
  }

  .solution-project-tab{
    display:none;
  }

  .solution-project-mobile{
    display:none;
  }

}

@media screen and (max-width: 1000px) {
  .home-section {
    height: 100vh;
  }

  .survey_item_chk {
    height: auto;
  }

  .survey_item_chk .chk_menu:nth-child(2n-1) {
    margin-bottom: 40px;
    width: 50%;
  }

  .survey_item_chk .chk_menu:nth-child(2n) {
    margin-bottom: 40px;
    width: 50%;
  }

  .chk_menu>span {
    display: inline-block;
    width: 53%;
    vertical-align: middle;
    background-color: gold;
  }

  .survey_item:nth-child(2),
  .survey_item:nth-child(3),
  .survey_item:nth-child(4) {
    padding: 0px;
  }

  .cont-com-info dd {
    font-size: 14px;
    margin-right: 0px;
  }

  .social-mob dd {
    margin-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  .cont-info {
    padding: 0px 0px 0px 16px;
    box-sizing: border-box;
  }

  .cont-com-info {
    flex-direction: column;
    padding-top:28px;
  }

  .cont-com-info dl {
    margin-left: 0px;
  }

  .cont-tit {
    font-size: 48px;
    padding-top: 128px;
  }

  .cont-com-info dd {
    font-size: 16px;
  }

  .cont-user {
    position: static;
    height: 640px;
  }

  .cont-user>div {
    background-size: 140px;
    background-position-y: calc(100% - 32px);
    height: 320px;
    padding: 32px;
  }

  .form-text {
    display: block;
  }

  .info-person {
    display: none;
  }

  .alert-text {
    display: none;
  }

  .cont-bottom {
    padding-top: 64px;
  }

  .form-text-mobile {
    display: block;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-align: center;
  }

  .form-tit {
    font-size: 32px;
    margin-bottom: 16px;
    margin-top: 14px;
    font-weight: bold;
  }

  .form-desc {
    width: 296px;
    height: 67px;
    margin: 0px auto 64px;
    line-height: 24px;
    font-size: 14px;
    display: none;
  }

  .form-desc>br {
    display: none;
  }

  .form-desc-mob {
    display: block;
    font-size: 14px;
    margin-bottom: 48px;
  }

  .cont-mob {}

  .info {
    margin-top: 0px;
  }

  .info-mobile {
    display: block;
    margin-top: 16px;
  }

  .info-mobile input {
    border-bottom: 1px solid rgb(204, 204, 204);
    width: 100%;
    height: 22px;
  }

  .info-mobile label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .info-mobile p {
    margin-bottom: 32px;
  }

  .info-mobile .alert-img {
    right: 0px;
    bottom: 0px;
  }

  .info-mobile .alert-text {
    display: block;
    transform: none;
    margin: 0px;
    position: absolute;
  }

  .contact-inner {
    border-radius: 8px;
    font-size: 14px;
  }

  .form-inner {
    padding: 16px;
  }

  .info-mobile .alert-text {
    font-size: 14px;
  }

  .chkBox {
    display: none;
  }

  .chkBox-mobile {
    overflow: hidden;
    display: block;
    margin: 64px 0px;
  }

  .chkBox-mobile p {
    margin-bottom: 32px;
  }

  .chkBox-mobile input[type="checkbox"]+label {
    display: inline-block;
    margin: 0px 5px 25px;
    font-size: 14px;
    color: rgb(204, 204, 204);
  }

  .chkBox-mobile>div {
    width: 49%;
    float: left;
    box-sizing: border-box;
    margin-right: 1%;
    margin-bottom: 36px;
  }

  .agreement2 {
    margin-top: 16px;
  }

  .btnArea {
    padding-bottom: 36px;
    display: flex;
  }

  .btnArea button {
    width: 132px;
    height: 48px;
  }

  .btnArea input:first-child {
    margin-right: 5%;
  }

  .file-ex {
    font-size: 10px;
  }

  .m-cont-bottom .fileText {
    border-bottom: 1px solid rgb(204, 204, 204);
    padding-bottom: 8px;
  }

  .fileArea .file-img {
    bottom: 5px;
  }

  .survey_item_chk .chk_menu:nth-child(2),
  .survey_item_chk .chk_menu:nth-child(7) {
    margin-right: 0px;
  }

  .popup-container {
    width: 100%;
    height: 100vh;
  }

  .popup-body {
    font-size: 13px;
    height: 90vh;
  }

  .modal-title {
    font-size: 18px;
  }

  .popup-body p {
    padding: 0px;
  }

  .company-desc-left {
    padding: 0px;
  }

  .popup-body-alert {
    padding-bottom: 10px;
    box-sizing: border-box;
  }

  .popup-body-alert {
    max-width: 296px;
    width: 100%;
    margin: 0px auto;
  }

  .apply-inner {
    background: rgb(255, 255, 255);
  }

  #apply-form .modeling {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
  }

  #apply-form legend {
    font-size: 20px;
    padding: 32px 0px 16px;
    text-align: center;
  }

  #apply-form label {
    font-size: 13px;
  }

  .apply-content {
    height: auto;
  }

  .apply-text {
    text-align: center;
  }

  .apply-tit {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .apply-info {
    width: 296px;
    height: 67px;
    margin: 0px auto;
    font-size: 16px;
  }

  .motion {
    display: none;
  }

  .survey-pc {
    display: none;
  }

  .survey_item_list>div {
    width: 50%;
    float: left;
  }

  .apply-content {
    padding: 0px 16px;
  }

  .num {
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 14px;
  }

  .survey {
    padding: 2% 0px;
    width: 98%;
  }

  .survey-title:nth-child(1) {
    padding: 65px 0px 33px;
  }

  .survey_name {
    float: none;
    width: 100%;
    margin-bottom: 38px;
  }

  .file-name {
    position: absolute;
    top: 0px;
  }

  .color {
    color: rgb(201, 201, 201);
  }

  .red {
    margin: 0px 3px;
    vertical-align: middle;
  }

  .survey_name .red1 {
    left: 10%;
  }

  .survey_name .red2 {
    left: 24%;
  }

  .survey_name:nth-child(1) .red {
    background-color: gold;
  }

  .servey-mobile {
    display: block;
  }

  .servey-mobile input[type="text"] {
    width: 100%;
    height: 30px;
    border-bottom: 1px solid rgba(204, 204, 204, 0.8);
    margin: 0px 5px 8px 0px;
  }

  .survey_item_chk input[type="checkbox"]+label {
    font-size: 13px;
  }

  .survey_item input[type="file"]+label {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-bottom: none;
    margin: 0px;
  }

  .servey-mobile .alert1,
  .servey-mobile .alert3 {
    right: 1%;
  }

  .survey_item {
    margin-bottom: 10px;
  }

  .question {
    font-size: 15px;
  }

  .file_ex {
    padding-left: 0px;
    font-size: 10px;
    margin-bottom: 16px;
  }

  .survey .textarea {
    padding-left: 0px;
  }

  .form-container .agreement {
    padding: 0px;
  }

  .ledBox-mobile {
    display: block;
  }

  .sol-info {
    line-height: 24px;
    font-size: 16px;
  }

  .mo-info {
    margin-top: 8px;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 42px;
  }

  .popup-container-alert {
    width: 92%;
  }

  .survey_item_chk .chk_menu:nth-child(1),
  .survey_item_chk .chk_menu:nth-child(2),
  .survey_item_chk .chk_menu:nth-child(3),
  .survey_item_chk .chk_menu:nth-child(4),
  .survey_item_chk .chk_menu:nth-child(5),
  .survey_item_chk .chk_menu:nth-child(6),
  .survey_item_chk .chk_menu:nth-child(7),
  .survey_item_chk .chk_menu:nth-child(8),
  .survey_item_chk .chk_menu:nth-child(9),
  .survey_item_chk .chk_menu:nth-child(10) {
    margin-left: 0px;
  }

  .survey_item_chk .chk_menu:nth-child(5) label,
  .survey_item_chk .chk_menu:nth-child(10) label {
    margin-left: 0px;
  }

  .chk_menu label input[type="checkbox"] {
    margin-right: 10px;
    vertical-align: top;
  }

  .alert-text {
    position: absolute;
    top: calc(100% + 8px);
  }
}

@media screen and (max-width: 900px) {
  .solution-project {
    display: none;
  }

  .solution-tit-sub{
    font-size:14px;
  }
  
  .quick-nav {
    display:block;
    width: 32px;
    position: fixed;
    right: 5px;
    top: 50%;
    transform: translateY(0%);
    padding: 32px 13px;
    box-sizing: border-box;
    z-index: 12;
    cursor: pointer;
    transition: all 0.1s ease-in-out 0s;
}

  .header-main {
    padding: 16px;
  }

  .project-tit {
    font-size: 32px;
  }

  .project-desc {
    display: none;
  }

  .myvideo {
    display: none;
  }

  .mobilevideo {
    display: block;
  }

  .main-logo {
    width: 86px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-line {
    width: 22px;
    height: 3px;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 16%);
    background-color: #fff;
  }

  .lang {
    left: 32px;
    display: none;
  }

  .menu-container {
    overflow: auto;
    padding-top: 10px;
  }

  .menu-content {
    flex-direction: column;
    top: 0px;
    left: 0px;
    transform: translate(0px, 0px);
    width: 100%;
    padding: 0px 32px;
    box-sizing: border-box;
  }

  .menu-content>div {
    margin-right: 0px;
  }

  .menu-content>div:last-child {}

  .menu-right {
    padding: 0px;
  }

  .menu-item {
    margin-bottom: 66px;
    font-size: 48px;
    font-weight: 900;
    line-height: 38px;
  }

  .menu-btn button {
    width: 130px;
    height: 48px;
    line-height: 44px;
    font-size: 14px;
  }

  .lang>span {
    font-size: 23px;
    line-height: 28px;
  }

  .lang-img {
    width: 28px;
    height: 28px;
  }

  .menu-item:first-child {
    padding-top: 128px;
  }

  .menu-item:last-child {
    margin-bottom: 28px;
  }

  .menu-btn {
    flex-direction: column;
    margin-bottom: 128px;
  }

  .menu-btn p:hover {
    background: rgb(255, 255, 255);
    color: rgb(95, 132, 255);
  }

  .menu-btn p a:hover {
    background: transparent;
    color: rgb(95, 132, 255);
  }

  .menu-btn p:last-child {
    margin-top: 30px;
  }

  .menu-logo {
    width: 50%;
  }

  .menu-logo {
    width: 125px;
    height: auto;
    margin-bottom: 67px;
  }

  .menu-btn p {
    width: 158px;
    height: 52px;
    box-sizing: border-box;
  }

  .menu-btn p a {
    line-height: 48px;
    display: block;
    width: 100%;
    height: 100%;
  }

  .menu-info {
    display: block;
  }

  .data {
    font-size: 16px;
  }

  .copy {
    font-size: 14px;
    width: 156px;
    word-break: break-all;
    margin-bottom: 48px;
  }

  .company-desc-right {
    display: block;
    transform: scale(0.7);
    height: 50%;
  }

  .company-desc-left {
    background-color: #fff;
    height: 50%;
  }

  .com-list {
    color: rgb(255, 255, 255) !important;
  }

  .company-tit {
    font-weight: bold;
  }

  .company-tit>li {
    color: rgb(255, 255, 255) !important;
  }

  .sentence{
    transform: translate(-50%, -50%) scale(0.75);
  }

  /*.company-bg{
    height:72px;
    background-image:linear-gradient(to bottom, #262626, rgba(84, 84, 84, 0));
    opacity:0.14;
  }*/

  .company-text {
    /*width: calc(100% - 32px);*/
    /*width:100%;*/
    /*padding:0 24px 0 16px;*/
    transform: translate(-50%, -50%) scale(0.9);
    /*padding: 100px 24px 0 16px;*/
  }

  .company-tit {
    font-size: 32px;
  }

  /*.company-tit a {
    color: rgb(255, 255, 255) !important;
  }

  .company-tit a .txt {
    color: rgb(255, 255, 255) !important;
  }

  .company-tit a.active {
    color: rgb(255, 255, 255) !important;
  }*/

  .company-desc{
    display:none;
  }

  .company-desc-mob{
    display:block;
 
  }

  .company-desc-mob > p{
    margin-bottom:16px;
  }

  

  /*.company-desc>br {
    display: none;
  }*/

  /*.company-desc {
    color: rgb(255, 255, 255) !important;
  }*/

  .company-btn {
    background-color: transparent;
    border-color: #4873ff;
    float: right;
  }

  .company-btn a {
    color: #4873ff;
  }

  .company-btn:hover {
    background-color: rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
  }

  .company-btn:hover a {
    color: rgb(95, 132, 255);
  }

  .solution {
    padding-top:132px;
    padding-bottom:0;
  }

  /*.keyword {
    margin: 48px 0px 0px 16px;
    height: auto;
  }*/

  /*.keyword::before,
  .keyword::after {
    content: "";
    position: static;
  }*/

 /* .words-box {

    background-size: 100%;
    height: 55px;
    float: none;
    padding: 0px;
    text-align: left;
    max-width: 300px;
    width: 100%;
    display:block;
  }*/

  /*.words li {
    font-size: 28px;
    padding-right: 0px;
    height: auto;
  }*/

  .m-words-box {
    display: none;
    /* margin-top: 8px; */
    /*border-bottom: 4px solid rgb(95, 132, 255);*/
    background-size: 100%;
    height: 55px;
    float: none;
    padding: 0px;
    text-align: left;
    max-width: 300px;
    width: 100%;
  }

  .m-words li {
    font-size: 28px;
    padding-right: 0px;
    height: auto;
  }

  /*#about{
    height:200vh;
  }
  */

  /*.company-info{
    height:200vh;
  }*/

  



  /*.keyword-tit {
    
    position:static;
    top: -8px;
    padding: 0px;
    font-size: 16px;
    text-align: left;
    float: none;
    height: auto;
  }

  .keyword-info {
    text-align: left;
    padding: 16px;
    margin: 0px;
  }

  .keyword-info>br {
    display: none;
  }*/

  .solution-project-tab {
    display: none;
  }

  .solution-img-btn {
    display: none;
  }

  .solution-project-mobile {
    display: block;
    width:calc(100% - 64px);
  }

  .img-num {
    width: 78%;
    display: none;
  }

  .solution-tit {
    font-size: 16px;
    margin: 15px 0px;
  }

  .sol-imgArea>div {
    margin-bottom: 124px;
  }

  .slick-dots-custom {
    position: absolute;
    /* top: 25%; */
    top: -20px;
    right: 0px;
    display: flex !important;
  }

  .slick-dots-custom>li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(204, 204, 204);
    transition: transform 0.6s ease 0s, background;
  }

  .slick-dots-custom>li:not(:last-child) {
    margin-right: 12px;
  }

  .slick-dots-custom>li.slick-active {
    background: rgb(255, 255, 255);
    transform: scale(1.5);
  }

  .slick-dots-custom>li>button {
    display: none;
  }

  .home-info-mockup.s1,
  .home-co-mockup.s1 {
    background: none;
  }

  /*.home-section-bg {
    background-size: 100% 54%;
    background-position: center top;
  }*/

  .sol-img {
    /* margin-top: 55px; */
  }


  .home-section.cont-mob {
    height: auto;
  }

  .cont-main {
    height: auto;
  }

  .cont-info {
    padding: 0px 0px 0px 64px;
    box-sizing: border-box;
  }

  .cont-com-info {
    flex-direction: column;
    padding-top: 28px;
  }

  .cont-com-info dl {
    margin-left: 0px;
  }

  .cont-tit {
    font-size: 32px;
    padding-top: 128px;
  }

  .cont-user {
    height: 640px;
  }

  .cont-user>div {
    background-size: 140px;
    background-position-y: calc(100% - 32px);
    height: 320px;
    padding: 32px;
  }

  .m-cont-bottom {
    display: block;
  }

  .cont-bottom {
    display: block;
  }

  .pc-cont-bottom {
    display: none;
  }

  .cont-bottom {
    padding-top: 64px;
  }

  .form-text-mobile {
    display: block;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-align: center;
  }

  .form-tit {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .cont-mob {
    height: auto !important;
  }

  .info {
    margin-top: 0px;
  }

  .info-mobile {
    display: block;
    margin-top: 16px;
  }

  .info-mobile input {
    border-bottom: 1px solid rgb(204, 204, 204);
    width: 100%;
    height: 22px;
  }

  .info-mobile label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
  }

  .info-mobile p {
    margin-bottom: 32px;
  }

  .contact-inner {
    border-radius: 8px;
    font-size: 14px;
  }

  .contact-inner input[type="text"] {
    color: rgb(204, 204, 204);
  }

  /*.form-inner {
    padding: 16px;
  }*/

  .info-mobile .info-desc {
    margin-bottom: 32px;
    position: relative;
  }

  .info-mobile .alert-text {
    display: block;
    transform: none;
    margin: 0px;
    font-size: 14px;
  }

  .chkBox {
    display: none;
  }

  .chkBox-mobile {
    overflow: hidden;
    display: block;
    margin: 64px 0px;
   
  }

  .chkBox-mobile p {
    margin-bottom: 32px;
    font-size:16px;
  }

  .textArea p {
    font-size:16px;
  }

  .chkBox-mobile input[type="checkbox"]+label {
    display: inline-block;
    margin: 0px 5px 25px;
    font-size: 14px;
    color: rgb(204, 204, 204);
  }

  .chkBox-mobile>div {
    width: 49%;
    float: left;
    box-sizing: border-box;
    margin-right: 1%;
    margin-bottom: 36px;
  }

  .agreement2 {
    margin-top: 16px;
  }

  .btnArea button {
    width: 132px;
    height: 48px;
  }

  .btnArea input:first-child {
    margin-right: 5%;
  }

  #apply-form label>.bold {
    vertical-align: middle;
  }

  .social-web {
    display: none;
  }

  .social-mob {
    display: block;
  }

  .call {
    width: 32px;
    height: 32px;
    line-height: 32px;
  }

  .inq-text {
    font-size: 24px;
    line-height: 34px;
  }

  #apply-form .red-text {
    vertical-align: middle;
  }

  .popup-container {
    max-width: 640px;
    width: 100%;
    /*height: 100vh;*/
    height:auto;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: rgb(255, 255, 255);
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    z-index: 9999;
  }


  .cont-tit {
    font-size: 48px;
    padding-top: 128px;
  }

  .cont-info {
    padding: 0px 0px 0px 16px;
    box-sizing: border-box;
    height:auto;
  }

  .cont-com-info dt {
    color: rgb(204, 204, 204);
    font-size: 14px;
    margin-bottom: 8px;
  }

  .form-title{
    font-size:20px;
    padding: 28px 0 16px 0;
    letter-spacing: -0.4px;
    margin-bottom: 33px;
  }

  .sol-img > img{
    /* margin-top:25.5%; */
  }

  

}

@media screen and (max-width: 480px) {
  .quick-nav {
    display:none;
  }

  .topButton{
    display:block;
  }

  .header-main {
    padding: 16px;
  }

  .project-tit {
    font-size: 32px;
  }

  .project-desc {
    display: none;
  }

  .myvideo {
    display: none;
  }

  .mobilevideo {
    display: block;
  }

  .main-logo {
    width: 86px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-line {
    width: 22px;
    height: 3px;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 16%);
    background-color: #fff;
  }

  .lang {
    left: 32px;
    display: none;
  }

  .menu-container {
    overflow: auto;
    padding-top: 10px;
  }

  .menu-content {
    flex-direction: column;
    top: 0px;
    left: 0px;
    transform: translate(0px, 0px);
    width: 100%;
    padding: 0px 32px;
    box-sizing: border-box;
  }

  .menu-content>div {
    margin-right: 0px;
  }

  .menu-content>div:last-child {}

  .menu-right {
    padding: 0px;
  }

  .menu-item {
    margin-bottom: 66px;
    font-size: 48px;
    font-weight: 900;
    line-height: 38px;
  }

  .menu-btn button {
    width: 130px;
    height: 48px;
    line-height: 44px;
    font-size: 14px;
  }

  .lang>span {
    font-size: 23px;
    line-height: 28px;
  }

  .lang-img {
    width: 28px;
    height: 28px;
  }

  .menu-item:first-child {
    padding-top: 128px;
  }

  .menu-item:last-child {
    margin-bottom: 28px;
  }

  .menu-btn {
    flex-direction: column;
    margin-bottom: 128px;
  }

  .menu-btn p:hover {
    background: rgb(255, 255, 255);
    color: rgb(95, 132, 255);
  }

  .menu-btn p a:hover {
    background: transparent;
    color: rgb(95, 132, 255);
  }

  .menu-btn p:last-child {
    margin-top: 30px;
  }

  .menu-logo {
    width: 50%;
  }

  .menu-logo {
    width: 125px;
    height: auto;
    margin-bottom: 67px;
  }

  .menu-btn p {
    width: 158px;
    height: 52px;
    box-sizing: border-box;
  }

  .menu-btn p a {
    line-height: 48px;
    display: block;
    width: 100%;
    height: 100%;
  }

  .menu-info {
    display: block;
  }

  .data {
    font-size: 16px;
  }

  .copy {
    font-size: 14px;
    width: 156px;
    word-break: break-all;
    margin-bottom: 48px;
  }

  .company-desc-right {
    display: block;
    transform: scale(0.7);
    height: 50%;
  }

  .company-desc-left {
    background-color: #fff;
    height: 50%;
  }

  .com-list {
    color: rgb(255, 255, 255) !important;
  }

  .company-tit {
    font-weight: bold;
  }

  .company-tit>li {
    color: rgb(255, 255, 255) !important;
  }

  .sentence{
    transform: translate(-50%, -50%) scale(0.75);
  }

  .sol-bg{
    position:static;
    width: 100%;
    height: auto;
  }

  .company-bg{
    height:72px;
    background-image:linear-gradient(to bottom, #262626, rgba(84, 84, 84, 0));
    /*background-image:linear-gradient(to bottom, #E8E8E8, rgba(84, 84, 84, 0));*/
    opacity:0.14;
  }

  .company-text {
    /*width: calc(100% - 32px);*/
    width:100%;
    /*padding:0 24px 0 16px;*/
    transform: translate(-50%, -50%) scale(0.9);
    padding: 100px 24px 0 16px;
  }

  .company-tit {
    font-size: 32px;
  }

  /*.company-tit a {
    color: rgb(255, 255, 255) !important;
  }

  .company-tit a .txt {
    color: rgb(255, 255, 255) !important;
  }

  .company-tit a.active {
    color: rgb(255, 255, 255) !important;
  }*/

  .company-desc{
    display:none;
  }

  .company-desc-mob{
    display:block;
 
  }

  .company-desc-mob > p{
    margin-bottom:16px;
  }

  

  /*.company-desc>br {
    display: none;
  }*/

  /*.company-desc {
    color: rgb(255, 255, 255) !important;
  }*/

  .company-btn {
    background-color: transparent;
    border-color: #4873ff;
    float: right;
  }

  .company-btn a {
    color: #4873ff;
  }

  .company-btn:hover {
    background-color: rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
  }

  .company-btn:hover a {
    color: rgb(95, 132, 255);
  }

  .solution {
    padding: 60px 0px 0px;
  }

  .keyword {
    margin: 48px 0px 0px 16px;
    height: auto;
  }

  .keyword::before,
  .keyword::after {
    content: "";
    position: static;
  }

  .words-box {
    /* margin-top: 8px; */
    border-bottom: 4px solid rgb(95, 132, 255);
    background-size: 100%;
    height: 55px;
    float: none;
    padding: 0px;
    text-align: left;
    max-width: 300px;
    width: 100%;
    display:none;
  }

  .words li {
    font-size: 28px;
    padding-right: 0px;
    height: auto;
  }

  .m-words-box {
    display: block;
    /* margin-top: 8px; */
    border-bottom: 4px solid rgb(95, 132, 255);
    background-size: 100%;
    height: 55px;
    float: none;
    padding: 0px;
    text-align: left;
    max-width: 300px;
    width: 100%;
  }

  .m-words li {
    font-size: 28px;
    padding-right: 0px;
    height: auto;
  }

  #about{
    height:200vh;
  }

  .company-info{
    height:200vh;
  }





  .keyword-tit {
    /*position: absolute;*/
    position:static;
    top: -8px;
    padding: 0px;
    font-size: 16px;
    text-align: left;
    float: none;
    height: auto;
  }

  .keyword-info {
    text-align: left;
    padding: 16px;
    padding-bottom:40px;
    margin: 0px;
  }

  .keyword-info>br {
    display: none;
  }

  .solution-project-tab {
    display: none;
  }

  .solution-img-btn {
    display: none;
  }

  .solution-project-mobile {
    display: block;
    width: calc(100% - 32px);
 
  }

  .img-num {
    width: 78%;
    display: none;
  }

  .solution-tit {
    font-size: 16px;
    margin: 15px 0px;
  }

  .sol-imgArea>div {
    margin-bottom: 124px;
  }

  .slick-dots-custom {
    position: absolute;
    top: -20px;
    right: 0px;
    display: flex !important;
  }

  .slick-dots-custom>li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(204, 204, 204);
    transition: transform 0.6s ease 0s, background;
  }

  .slick-dots-custom>li:not(:last-child) {
    margin-right: 12px;
  }

  .slick-dots-custom>li.slick-active {
    background: rgb(255, 255, 255);
    transform: scale(1.5);
  }

  .slick-dots-custom>li>button {
    display: none;
  }

  .home-info-mockup.s1,
  .home-co-mockup.s1 {
    background: none;
  }

  .home-section-bg {
    background-size: 100% 44%;
    background-position: center top;
  }

  .sol-img {
    /* margin-top: 55px; */
  }



  .home-section.cont-mob {
    height: auto;
  }

  .cont-main {
    height: auto;
  }

  .cont-info {
    padding: 0px 0px 0px 64px;
    box-sizing: border-box;
    height:auto;
  }

  .cont-com-info {
    flex-direction: column;
    padding-top: 28px;
  
  }

  .cont-com-info dl {
    margin-left: 0px;
  }

  .cont-tit {
    font-size: 32px;
    padding-top: 128px;
  }

  .cont-user {
    height: 640px;
  }

  .cont-user>div {
    background-size: 140px;
    background-position-y: calc(100% - 32px);
    height: 320px;
    padding: 32px;
  }

  .m-cont-bottom {
    display: block;
  }

  .cont-bottom {
    display: block;
  }

  .pc-cont-bottom {
    display: none;
  }

  .cont-bottom {
    padding-top: 64px;
  }

  .form-text-mobile {
    display: block;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-align: center;
  }

  .form-tit {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .cont-mob {
    height: auto !important;
  }

  .info {
    margin-top: 0px;
  }

  .info-mobile {
    display: block;
    margin-top: 16px;
  }

  .info-mobile input {
    border-bottom: 1px solid rgb(204, 204, 204);
    width: 100%;
    height: 22px;
  }

  .info-mobile label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
  }

  .info-mobile p {
    margin-bottom: 32px;
  }

  .contact-inner {
    border-radius: 8px;
    font-size: 14px;
  }

  .contact-inner input[type="text"] {
    color: rgb(204, 204, 204);
  }

  .form-inner {
    padding: 16px;
  }

  .info-mobile .info-desc {
    margin-bottom: 32px;
    position: relative;
  }

  .info-mobile .alert-text {
    display: block;
    transform: none;
    margin: 0px;
    font-size: 14px;
  }

  .chkBox {
    display: none;
  }

  .chkBox-mobile {
    overflow: hidden;
    display: block;
    margin: 64px 0px;
   
  }

  .chkBox-mobile p {
    margin-bottom: 32px;
    font-size:16px;
  }

  .textArea p {
    font-size:16px;
  }

  .chkBox-mobile input[type="checkbox"]+label {
    display: inline-block;
    margin: 0px 5px 25px;
    font-size: 14px;
    color: rgb(204, 204, 204);
  }

  .chkBox-mobile>div {
    width: 49%;
    float: left;
    box-sizing: border-box;
    margin-right: 1%;
    margin-bottom: 36px;
  }

  .agreement2 {
    margin-top: 16px;
  }

  .btnArea button {
    width: 132px;
    height: 48px;
  }

  .btnArea input:first-child {
    margin-right: 5%;
  }

  #apply-form label>.bold {
    vertical-align: middle;
  }

  .social-web {
    display: none;
  }

  .social-mob {
    display: block;
  }

  .call {
    width: 32px;
    height: 32px;
    line-height: 32px;
  }

  .inq-text {
    font-size: 24px;
    line-height: 34px;
  }

  #apply-form .red-text {
    vertical-align: middle;
  }

  .popup-container {
    max-width: 640px;
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: rgb(255, 255, 255);
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    z-index: 9999;
  }


  .cont-tit {
    font-size: 48px;
    padding-top: 128px;
  }

  .cont-info {
    padding: 0px 0px 0px 16px;
    box-sizing: border-box;
    height:auto;
  }

  .cont-com-info dt {
    color: rgb(204, 204, 204);
    font-size: 14px;
    margin-bottom: 8px;
  }

  .form-title{
    font-size:20px;
    padding: 28px 0 16px 0;
    letter-spacing: -0.4px;
    margin-bottom: 33px;
  }

  .sol-img > img{
    /* margin-top:18%; */
  }

  .survey_item_chk .chk_menu:nth-child(1), 
  .survey_item_chk .chk_menu:nth-child(2), 
  .survey_item_chk .chk_menu:nth-child(3), 
  .survey_item_chk .chk_menu:nth-child(4), 
  .survey_item_chk .chk_menu:nth-child(5), 
  .survey_item_chk .chk_menu:nth-child(6), 
  .survey_item_chk .chk_menu:nth-child(7), 
  .survey_item_chk .chk_menu:nth-child(8), 
  .survey_item_chk .chk_menu:nth-child(9), 
  .survey_item_chk .chk_menu:nth-child(10) {
    width: 50%;
    margin-left:0;
  }

  .survey_item_chk .chk_menu:nth-child(10) label {
    margin-left:0;
  }


}

@media screen and (max-width: 375px) {
  .popup-container {
    width: 100%;
    height: 100vh;
  }

  .slick-vertical .slick-slide {
    height: auto;
   /* margin-top:-13px !important; */
  }

  /* .slick-dots-custom {
    top: -25;
    top: 0%;
  } */

}

@media screen and (max-width: 320px) {
  .solution {
    padding: 35px 0px 15px;
  }

  .keyword-info {
    text-align: left;
    padding: 10px 16px;
    margin: 0px;
    font-size: 14px;
  }

  .sol-img {
    margin-top: -10px;
  }

  .slick-vertical .slick-slide {
    height: auto;
  }
}




/*@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation:landscape) {
  .home-section.s1 .solution-desc.s1, .home-section.s2 .solution-desc.s2, .home-section.s3 .solution-desc.s3 {
    width: 100%;
    top: 20px;
    left: 0%;
  }

  .solution-img-btn{
    bottom:-32%;
    position:absolute;
  }
}*/


/*@media screen and (max-width: 1366px) and (max-height: 768px) {
  .solution {
    padding: 8.4% 0px 0px; 
    padding: 4.4% 0 0;
  }

  .sol-bg{
    position:static;
    width:100%; 
    height:auto;
    background-color:rgba(0, 0, 0, 0.2);
  }

  .solution-img{
    height:50vh;
  }

  .img-num{
    left:10%;
  }

  .soluteion-text {
    left: 11%;
  }

  .solution-img-btn {
    bottom: 4%;
    position: absolute;
  }

}*/

/*@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:landscape) {
  .solution-img-btn{
    bottom:8%;
    position:absolute;
  }

  .solution-img-btn:nth-child(1){
    bottom:-8%;
  }

  .solution {
    padding: 7.4% 0px 5%;
  }

  .home-section.s1 .solution-desc.s1, .home-section.s2 .solution-desc.s2, .home-section.s3 .solution-desc.s3 {
    width: 100%;
    top: 20px;
    left: 14%;
  }

  .img-num {
    left: 12%;
    bottom: -5%;
  }

  
}

*/

@media screen and (max-width: 1024px) and (max-height: 768px) {
  .home-section.s1 .solution-desc.s1, 
  .home-section.s2 .solution-desc.s2, 
  .home-section.s3 .solution-desc.s3{
    display:none;
  }

  .img-num{
    bottom:-50%;
    display: flex;
    width: 50%;
  }
  
}

@media screen and (max-width: 1024px) and (max-height: 576px) {
  .sentence {
    transform: translate(-50%, -50%) scale(0.5);
  }

  .company-text {
    transform: translate(-50%, -50%) scale(0.4);
  }

  .keyword {
    /* width: 476px; */
    width: max-content;
    margin: 0px auto;
    position: relative;
    height: 60px;
  }

  .img-num {
    bottom: -12%;
    display: flex;
    width: 50%;
}

.solution-img {
  margin-top:3%;
}


 
 
}

#landscape{display:none}
@media only screen and (max-device-width: 914px) and  (orientation:landscape){
  #landscape{z-index:999999999999999999; display:block;position:absolute;top:0;left:0;width:100%;/*height:100%;*/ height: 2000vh; text-align:center;background:#000;line-height:20;color:#fff}
  #landscape > span{display:inline-block;width:100%;margin:60% auto;color:#fff;font-size:7vw;font-weight:500;text-align:center;}
}