@charset "UTF-8";


/* =========================== */
/* common */
/* =========================== */
body {
  background-color: #302D45;
  color: #fff;
  font-family: "Sora", "Pretendard", sans-serif;
  letter-spacing: -0.05em;
  word-break: keep-all;
  overscroll-behavior: none;
}

.hide {
  position: absolute;
  left: -9999%;
}

.d-flex {
  display: flex;
}


/* ===== glass box ===== */
.glass-box {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 40px;
  background: rgba(255, 255, 255, .05);
  box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, .1) inset;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.glass-box-inner {
  background: rgba(255, 255, 255, .05);
}


/* ===== main title ===== */
.main-title-wrap span {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.main-title-wrap h2 {
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
}

.main-title-wrap p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}


/* ===== gradient button ===== */
.btn-gradient {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  height: 56px;
  padding: 0 20px 0 32px;
  border-radius: 9999px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  text-wrap: nowrap;
  text-transform: capitalize;
  transition: color .5s cubic-bezier(.19,1,.22,1);
}

.btn-gradient:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, .2);
  transition: transform 1s cubic-bezier(.19,1,.22,1),border 1s cubic-bezier(.19,1,.22,1),box-shadow 1s cubic-bezier(.19,1,.22,1);
  will-change: transform;
}

.btn-gradient:hover {
  color: #FF31F2;
}

.btn-gradient:hover:before {
  border: 1px solid #FF31F2;
  box-shadow: 0px 0px 10px 2px #FF31F2 inset;
  color: #FF31F2;
  transform: scaleX(.938);
}

.btn-gradient .btn-icon {
  overflow: hidden;
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ff31f2;
  transition: transform 1s cubic-bezier(.19,1,.22,1);
  will-change: transform;
}

.btn-gradient path {
  position: absolute;
  transition: transform 1s cubic-bezier(.19,1,.22,1), opacity .75s cubic-bezier(.19,1,.22,1);
}

.btn-gradient path.arrow01 {
  opacity: 0;
  transform: translate(-55%, 55%);
}

.btn-gradient:hover .arrow01 {
  opacity: 1;
  transform: none;
}

.btn-gradient:hover .arrow02 {
  opacity: 0;
  transform: translate(55%,-55%);
}



/* =========================== */
/* header */
/* =========================== */
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 120px;
  padding: 0 60px;
  transition: transform .15s cubic-bezier(.4,0,.2,1);
}

#header::after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 120px;
  background: rgba(255,255,255,.1);
  -webkit-backdrop-filter: saturate(200%) blur(15px);
  backdrop-filter: saturate(200%) blur(15px);
  transform: translateY(-100%);
  transition: transform .15s cubic-bezier(.4,0,.2,1);
}

#header .logo a {
  display: block;
  width: 208px;
  height: 25px;
  background-image: url('../img/common/logo-white.svg');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

#header .gnb-wrap {
  display: flex;
  align-items: center;
  gap: 80px;
}

#header .gnb-wrap .gnb ul {
  display: flex;
  gap: 80px;
}

#header .gnb-wrap .gnb ul li a {
  display: block;
  font-size: 18px;
  font-weight: 600;
}

#header .btn-close-menu,
#header .btn-open-menu {
  display: none;
}

#header.up::after {
  transform: translateY(0);
}

#header.up .logo a {
  background-image: url('../img/common/logo.svg');
}

#header.down {
  transform: translateY(-100%);
}

#header.down .logo a {
  background-image: url('../img/common/logo.svg');
}


/* =========================== */
/* main */
/* =========================== */
.space {
  width: 100%;
  height: 100vh;
}

.section-wrap {
  position: relative;
  z-index: 10;
  background: url('../img/bg-body.jpg') no-repeat center;
  background-size: cover;
}


/* ===== visual ===== */
.visual {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  padding-top: 120px;
  background-color: #302d45;
}

.visual .visual-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 10;
  padding: 0 60px;
  height: calc(52% - 120px);
}

.visual .visual-title .title-text {
  position: relative;
  margin-top: 4%;
}

.visual .visual-title .title-text h2 {
  font-size: 108px;
  font-weight: 400;
  line-height: 1.12;
  white-space: nowrap;
}

.visual .visual-title .title-text h2.color-white {
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 0;
  color: #fff;
  will-change: width, transform;
}

.visual .visual-title .title-text h2.color-gradient {
  background: linear-gradient(90deg, #D825CB 0%, #056CE1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.visual .visual-title p {
  font-size: 28px;
  line-height: 1.42;
}

.visual .visual-img-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 48%;
  will-change: height, transform;
}

.visual .visual-img-wrap .visual-img {
  overflow: hidden;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: calc(100% - 120px);
  height: 100%;
  transform: translateX(-50%);
  will-change: width, transform;
}

.visual .visual-img-wrap .visual-img img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.visual .visual-img-wrap .btn-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 80px;
  top: -90px;
  z-index: 10;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #302D45;
  will-change: opacity, transform;
}

.visual .visual-img-wrap .btn-circle .circle-gradient {
  position: absolute;
  left: 50%;
  top: 50%;
  stroke-dasharray: 502px;
  stroke-dashoffset: 502px;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: transform 1.1s cubic-bezier(0.4, 0, 0, 1), stroke-dashoffset .9s cubic-bezier(0.4, 0, 0, 1);
  -webkit-animation: circleAnimation 2s infinite;
  animation: circleAnimation 2s infinite;
}

@-webkit-keyframes circleAnimation {
  0% {
    stroke-dashoffset: 502px;
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  100% {
    stroke-dashoffset: 0;
    -webkit-transform: translate(-50%, -50%) rotate(30deg);
    transform: translate(-50%, -50%) rotate(30deg);
  }
}

@keyframes circleAnimation {
  0% {
    stroke-dashoffset: 502px;
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  100% {
    stroke-dashoffset: 0;
    -webkit-transform: translate(-50%, -50%) rotate(30deg);
    transform: translate(-50%, -50%) rotate(30deg);
  }
}

.visual .visual-img-wrap .btn-circle .arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


/* ===== product ===== */
.product {
  overflow: hidden;
  position: relative;
  z-index: 20;
  height: 100vh;
}

.product .pin-item {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 60px;
  background: url('../img/bg-product.jpg') no-repeat center;
  background-size: cover;
}

.product .glass-box {
  position: absolute;
  left: 60px;
  right: 60px;
  top: 60px;
  bottom: 60px;
}

.product .glass-box .glass-box-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 100px 60px 80px;
}

.product .card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 100%;
}

.product .card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.product .card .card-header .main-title-wrap {
  flex: 1;
}

.product .card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 67px;
  height: 100%;
}

.product .card .d-flex {
  gap: 32px;
  justify-content: space-between;
  align-items: center;
}

.product .card .d-flex p {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}

.product .card .btn-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product .card .card-text:nth-child(2) {
  height: 100%;
}

.product .card .logo-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product .card .product-list {
  display: flex;
  gap: 36px;
  height: 100%;
}

.product .card .product-list .product-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px;
  max-height: 100%;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 40px;
  background: rgba(255, 255, 255, .05);
  box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, .1) inset;
  text-align: center;
}

.product .card .product-list .product-item img {
  width: 120px;
  height: 120px;
}

.product .card .product-list .product-item strong {
  font-size: 28px;
  font-weight: 600;
}


/* ===== SKILL ===== */
.skill {
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.skill::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url('../img/bg-skill.jpg') no-repeat center;
  background-size: cover;
}

.skill .maxinner {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin: 0 auto;
  max-width: 1680px;
}

.skill .skill-title {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  height: 100%;
}

.skill .skill-title .main-title-wrap {
  max-width: 676px;
  width: 100%;
  padding-top: 240px;
}

.skill .skill-title .main-title-wrap p {
  margin-top: 40px;
}

.skill .skill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 20;
  max-width: 1084px;
  width: 100%;
  padding: 240px 0;
}

.skill .skill-list .card {
  display: block;
  position: relative;
  width: calc((100% - 84px) / 2);
  margin-top: 80px;
  padding: 48px 48px 57px;
  border-radius: 40px;
  background-color: #fff;
  color: #1D1D1D;
  transition: background-color .3s, box-shadow .3s, backdrop-filter .3s, color .3s;
}

.skill .skill-list .card:nth-child(1) {
  margin-top: 0;
}

.skill .skill-list .card:nth-child(2) {
  margin-top: 240px;
}

.skill .skill-list .card:nth-child(3) {
  margin-top: -160px;
}

.skill .skill-list .card .card-num {
  display: block;
  margin-bottom: 80px;
  font-size: 18px;
  font-weight: 700;
}

.skill .skill-list .card .card-logo {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 48px;
  top: 48px;
  max-height: 77px;
  transition: opacity .3s, visibility .3s;
}

.skill .skill-list .card .card-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}

.skill .skill-list .card .card-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.skill .skill-list .card .card-tag span {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 47px;
  border-radius: 50px;
  background-color: #f6f6f6;
  font-size: 16px;
  color: #7468ec;
  font-weight: 600;
}

.skill .skill-list .card .card-text {
  font-size: 18px;
  line-height: 1.7;
}

.skill.active::after {
  position: fixed;
}

.skill.active .skill-title {
  position: fixed;
  left: 50%;
  max-width: 1680px;
  width: 100%;
  transform: translateX(-50%);
}

@media all and (min-width: 1081px) {
  .skill .skill-list .card:hover {
    background-color: rgba(255, 255, 255, .2);
    box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, .1) inset;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
  }

  .skill .skill-list .card:hover .card-logo {
    opacity: 1;
    visibility: visible;
  }
}


/* ===== FEED ===== */
.feed {
  padding: 160px 60px 100px;
}

.feed .maxinner {
  max-width: 1680px;
  margin: 0 auto;
}

.feed .feed-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.feed .feed-list {
  margin-top: 60px;
  border-bottom: 1px solid #fff;
}

.feed .feed-list .feed-item {
  border-top: 1px solid #fff;
}

.feed .feed-list .feed-item .btn-accordion {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 44px 92px 44px 60px;
  transition: all .15s ease-in-out;
}

.feed .feed-list .feed-item .btn-accordion:hover {
  background-color: rgba(255, 255, 255, .2);
  box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, .1) inset;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.feed .feed-list .feed-item .btn-accordion::after {
  content: "";
  position: absolute;
  right: 60px;
  top: 50%;
  width: 32px;
  height: 32px;
  background-image: url('../img/icon/icon-plus.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  transform: translateY(-50%);
}

.feed .feed-list .feed-item .feed-date {
  display: block;
  margin-right: 60px;
  min-width: 120px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.feed .feed-list .feed-item .feed-title {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: calc(100% - 200px);
}

.feed .feed-list .feed-item .feed-title span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 17px;
  min-width: 85px;
  height: 32px;
  border-radius: 50px;
  background: linear-gradient(100deg, #D825CB 0%, #7347D6 90%, #4656DA 100%);
  font-size: 14px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
}

.feed .feed-list .feed-item .feed-title p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.feed .feed-list .feed-item .accordion-content {
  overflow: hidden;
  height: 0;
  transition: height .3s linear;
}

.feed .feed-list .feed-item .accordion-content .d-flex {
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 40px 60px;
  border-top: 1px solid #fff;
}

.feed .feed-list .feed-item .accordion-content .d-flex img {
  width: 100%;
}

.feed .feed-list .feed-item .accordion-content .d-flex p {
  flex: 1;
  padding: 20px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.feed .feed-list .feed-item.active .btn-accordion::after {
  background-image: url('../img/icon/icon-minus.svg');
}



/* ===== contact ===== */
.contact {
  padding: 60px;
}

.contact .glass-box-inner {
  padding: 80px 60px;
}

.contact .contact-wrap {
  display: flex;
  justify-content: space-between;
}

.contact .contact-title {
  width: 30%;
}

.contact .contact-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.contact .contact-form {
  max-width: 960px;
  width: 60%;
}
.contact .contact-form .form-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact .contact-form .row { 
  display: flex;
  flex-wrap: wrap;
}

.contact .contact-form .row.gap-5 { 
  gap: 24px;
}

.contact .contact-form .row .form-group {
  flex: 1;
}

.error {
  display: block;
  margin-top: 4px;
  width: 100%;
  color: red;
}

.form-group {
  position: relative;
}

.form-group label {
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  height: 68px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, .2);
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, .1) inset;
}

.form-group.active label {
  border-color: transparent;
}

.form-group.active label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  inset: 0;
  border-radius: 8px; 
  padding: 1px; 
  background: linear-gradient(to right, #D825CB 0%, #056CE1 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude; 
}

.form-group.wide label {
  flex-wrap: wrap;
  height: auto;
  padding: 24px;
}

.form-group strong {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 112px;
  white-space: nowrap;
}

.form-group strong::after {
  content: "*";
  margin-left: -4px;
  color: #BA34FF;
}

.form-group .icon {
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}

.form-group .icon.icon-person {
  background-image: url('../img/icon/icon-person.svg');
}
.form-group .icon.icon-company {
  background-image: url('../img/icon/icon-company.svg');
}
.form-group .icon.icon-mail {
  background-image: url('../img/icon/icon-mail.svg');
}
.form-group .icon.icon-traffic-source {
  background-image: url('../img/icon/icon-traffic-source.svg');
}
.form-group .icon.icon-edit {
  background-image: url('../img/icon/icon-edit.svg');
}
.form-group .icon.icon-memo {
  background-image: url('../img/icon/icon-memo.svg');
}

.form-group .form-input {
  width: 100%;
  border: 0;
  background: none;
  font-size: 19px;
  color: #fff;
  font-weight: 400;
  -webkit-appearance: none;
  appearance: none;
}

.form-group .form-input::placeholder {
  color: rgba(255,255,255,.6);
}

.form-group textarea {
  width: 100%;
  margin-top: 20px;
  border: 0;
  background: none;
  min-height: 160px;
  font-size: 19px;
  color: #fff;
  font-weight: 400;
  -webkit-appearance: none;
  appearance: none;
}

.form-group textarea::placeholder {
  color: rgba(255,255,255,.6);
}

.check-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.form-check input[type="checkbox"] {
  display: none;
}

.form-check label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 20px;
}

.form-check label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 4px;
  background: #fff;
}

.form-check input[type="checkbox"]:checked + label::before {
  background: #BA34FF;
  border-color: #BA34FF;
}

.form-check input[type="checkbox"]:checked + label::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: url('../img/icon/icon-check.svg') no-repeat center;
}

.form-check input[type="checkbox"]:not(:checked) + label::after {
  opacity: 0;
}


/* ===== flow ===== */
.flow {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 160px 0;
}

.flow strong {
  display: block;
  background: linear-gradient(90deg, #D825CB 0%, #056CE1 100%);
  font-size: 92px;
  font-weight: 500;
  line-height: 1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flow-text {
  overflow: hidden;
  display: flex;
  flex: 0 0 auto;
  font-size: 92px;
  color: rgba(255,255,255,.6);
  font-weight: 300;
  transition: 0.3s;
  white-space: nowrap;
}

.flow-text p {
  animation: textLoop 10s linear infinite;
  padding-right: 1.4881vw;
}

@-webkit-keyframes textLoop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes textLoop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}


/* ===== hiring ===== */
.hiring {
  position: relative;
  z-index: 10;
  padding: 100px;
  background-color: #2D2C30;
}

.hiring .maxinner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1720px;
  margin: 0 auto;
}

.hiring .main-title-wrap h2 {
  font-size: 40px;
}

.hiring .main-title-wrap h2 strong {
  font-weight: 700;
}

.hiring .d-flex {
  gap: 20px;
  align-items: center;
}



/* =========================== */
/* footer */
/* =========================== */
#footer {
  position: relative;
  z-index: 10;
  padding: 24px 100px;
  border-top: 1px solid rgba(255,255,255,.2);
  background-color: #2D2C30;
}

#footer .maxinner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1680px;
  margin: 0 auto;
}

#footer p {
  font-size: 14px;
  font-weight: 200;
  line-height: 30px;
}



/* =========================== */
/* responsive */
/* =========================== */
@media all and (max-width: 1700px) {
  .visual .visual-title .title-text h2 {
    font-size: 76px;
  }
  .visual .visual-title p {
    font-size: 20px;
  }
  .main-title-wrap h2 {
    font-size: 40px;
  }
  .main-title-wrap p {
    font-size: 16px;
  }
  .product .glass-box .glass-box-inner {
    padding: 80px 60px 60px;
  }
  .product .card .product-list .product-item strong {
    font-size: 20px;
  }
  .skill .maxinner {
    margin: 0 60px;
    max-width: none;
  }
  .skill .skill-title {
    max-width: none;
    width: 35%;
  }
  .skill.active .skill-title {
    left: 60px;
    width: 35%;
    transform: none;
  }
  .skill .skill-list {
    max-width: none;
    width: 60%;
  }
  .skill .skill-list .card {
    width: calc((100% - 40px) / 2);
  }
  .hiring {
    padding: 100px 60px;
  }
  .hiring .main-title-wrap h2 {
    font-size: 28px;
  }
  .flow {
    gap: 28px;
  }
  .flow strong {
    font-size: 64px;
  }
  .flow-text {
    font-size: 64px;
  }
  #footer {
    padding: 24px 60px;
  }
}


@media all and (max-width: 1440px) {
  #header {
    height: 100px;
  }
  #header::after {
    height: 100px;
  }
  #header .gnb-wrap {
    gap: 60px;
  }
  #header .gnb-wrap .gnb ul {
    gap: 60px;
  }
  #header .gnb-wrap .gnb ul li a {
    font-size: 16px;
  }
  .btn-gradient {
    padding: 0 14px 0 28px;
    height: 48px;
    font-size: 14px;
  }
  .visual {
    padding-top: 100px;
  }
  .visual .visual-img-wrap .btn-circle {
    width: 140px;
    height: 140px;
  }
  .product .main-title-wrap h2 {
    line-height: 1.2;
  }
  .product .glass-box .glass-box-inner {
    padding: 60px 40px 40px;
  }
  .product .card .d-flex {
    align-items: flex-end;
  }
  .product .card .card-body {
    gap: 40px;
  }
  .product .card .d-flex p {
    font-size: 16px;
  }
  .product .card .product-list .product-item {
    gap: 28px;
  }
  .product .card .product-list .product-item img {
    width: 80px;
    height: 80px;
  }
  .skill .skill-title .main-title-wrap {
    padding-top: 180px;
  }
  .skill .skill-list {
    padding: 180px 0;
  }
  .skill .skill-list .card {
    padding: 30px 30px 50px;
  }
  .skill .skill-list .card .card-logo {
    right: 30px;
    top: 30px;
  }
  .skill .skill-list .card .card-title {
    font-size: 20px;
  }
  .skill .skill-list .card .card-text {
    font-size: 16px;
  }
  .skill .skill-list .card .card-text br {
    display: none;
  }
  .skill .skill-list .card .card-tag span {
    height: 40px;
    font-size: 14px;
  }
  .feed .feed-list .feed-item .accordion-content .d-flex p {
    font-size: 18px;
  }
  .form-group label {
    height: 50px;
  }
  .form-group .icon {
    width: 20px;
    height: 20px;
  }
  .form-group strong {
    min-width: 90px;
    font-size: 14px;
  }
  .form-group .form-input {
    font-size: 16px;
  }
  .form-group textarea {
    font-size: 16px;
  }
  .contact .glass-box-inner {
    padding: 60px 40px;
  }
  .contact .contact-wrap {
    flex-wrap: wrap;
  }
  .contact .contact-title {
    width: 100%;
  }
  .contact .contact-form {
    max-width: none;
    width: 100%;
    margin-top: 60px;
  }
}

@media all and (max-width: 1080px) {
  #header {
    height: 70px;
    padding: 0 20px;
  }
  #header::after {
    height: 70px;
  }
  #header .logo a {
    width: 160px;
    height: 20px;
  }
  #header .gnb-wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    position: fixed;
    right: 100%;
    top: 0;
    z-index: 5000;
    width: 50%;
    height: 100vh;
    padding: 80px 20px;
    background: rgba(255, 255, 255, .2);
    box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, .1) inset;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
  }
  #header.open {
    backdrop-filter: none !important;
    transform: none !important;
  }
  #header.open .gnb-wrap {
    right: 0;
  }
  #header .gnb-wrap .gnb {
    width: 100%;
  }
  #header .gnb-wrap .gnb ul {
    flex-direction: column;
    gap: 16px;
  }
  #header .gnb-wrap .gnb ul li a {
    padding: 16px 0;
  }
  #header .logo a {
    font-size: 16px;
  }
  #header .btn-gradient {
    width: 100%;
  }
  #header .btn-close-menu {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 32px;
    height: 32px;
    background: url('../img/icon/icon-plus.svg') no-repeat center;
    transform: rotate(-45deg);
  }
  #header .btn-open-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 24px;
    height: 24px;
  }
  #header .btn-open-menu .line{
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ecf0f1;
  }
  .visual .visual-title .title-text h2 {
    font-size: 54px;
  }
  .visual .visual-title p {
    font-size: 16px;
  }
  .visual .visual-title {
    padding: 0 20px;
  }
  .visual .visual-img-wrap .visual-img {
    width: calc(100% - 40px);
  }
  .visual .visual-img-wrap .btn-circle {
    right: 40px;
  }
  .main-title-wrap span {
    font-size: 14px;
  }
  .main-title-wrap h2 {
    font-size: 32px;
  }
  .product .pin-item {
    padding: 20px;
  }
  .product .card {
    gap: 20px;
  }
  .product .card .card-header {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
  .product .card .d-flex {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .product .card .d-flex p {
    width: 100%;
  }
  .product .card .d-flex .btn-box {
    width: 100%;
  }
  .product .card .product-list {
    gap: 20px;
  }
  .product .card .product-list .product-item strong {
    font-size: 16px;
  }
  .product .card .logo-list img {
    height: auto;
    max-height: 50px;
  }
  .product .glass-box {
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
  }
  .skill.active .skill-title {
    left: 20px;
  }
  .skill .maxinner {
    margin: 0 20px;
  }
  .skill .main-title-wrap p br {
    display: none;
  }
  .skill .skill-list .card {
    width: calc((100% - 16px) / 2);
    padding: 24px 24px 32px;
    border-radius: 20px;
  }
  .skill .skill-list .card .card-logo {
    right: 16px;
    top: 16px;
    max-height: 60px;
  }
  .skill .skill-list .card .card-tag {
    margin-bottom: 30px;
  }
  .skill .skill-list .card .card-tag span {
    height: 30px;
    font-size: 12px;
  }
  .skill .skill-list .card .card-title {
    font-size: 18px;
  }
  .skill .skill-list .card .card-text {
    font-size: 14px;
  }
  .feed {
    padding: 100px 20px;
  }
  .feed .feed-list .feed-item .feed-date {
    min-width: 80px;
    margin-right: 20px;
    font-size: 14px;
  }
  .feed .feed-list .feed-item .btn-accordion {
    padding: 30px 20px;
  }
  .feed .feed-list .feed-item .btn-accordion::after {
    right: 20px;
  }
  .feed .feed-list .feed-item .accordion-content .d-flex {
    padding: 20px;
  }
  .feed .feed-list .feed-item .accordion-content .d-flex p {
    padding: 12px 0;
    font-size: 14px;
  }
  .contact {
    padding: 40px 20px;
  }
  .flow {
    gap: 10px;
    padding: 60px 0;
  }
  .hiring {
    padding: 60px 20px;
  }
  .hiring .maxinner {
    flex-wrap: wrap;
    gap: 20px;
  }
  #footer {
    padding: 24px 20px;
  }
}

@media all and (max-width: 767px) {
  .visual .visual-title .title-text h2 {
    font-size: 36px;
  }
  .visual .visual-title p {
    font-size: 14px;
    line-height: 1.4;
  }
  .visual .visual-img-wrap .btn-circle {
    width: 80px;
    height: 80px;
  }
  .visual .visual-img-wrap .btn-circle .arrow {
    width: 20px;
  }
  .main-title-wrap span {
    margin-bottom: 8px;
    font-size: 12px;
  }
  .main-title-wrap h2 {
    font-size: 22px;
  }
  .main-title-wrap p {
    font-size: 14px;
  }
  .product .glass-box {
    border-radius: 20px;
  }
  .product .glass-box .glass-box-inner {
    padding: 30px 20px;
  }
  .product .card {
    gap: 24px;
  }
  .product .btn-gradient {
    width: 100%;
  }
  .product .card .d-flex p {
    font-size: 14px;
  }
  .product .card .d-flex p br {
    display: none;
  }
  .product .card .btn-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .product .card .product-list {
    flex-direction: column;
  }
  .product .card .product-list .product-item {
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px 20px;
    border-radius: 4px;
    text-align: left;
  }
  .product .card .product-list .product-item img {
    width: 32px;
    height: 32px;
  }
  .skill {
    padding: 60px 20px;
  }
  .skill .maxinner {
    flex-direction: column;
    margin: 0;
  }
  .skill.active .skill-title,
  .skill .skill-title {
    position: static !important;
    width: 100%;
    height: auto;
    padding: 0;
  }
  .skill .skill-title .main-title-wrap {
    padding-top: 0;
  }
  .skill .skill-title .main-title-wrap p {
    margin-top: 20px;
  }
  .skill .skill-list {
    width: 100%;
    padding: 0;
    margin-top: 60px;
  }
  .skill .skill-list .card {
    width: 100%;
    margin-top: 40px !important;
    background-color: rgba(255, 255, 255, .2);
    box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, .1) inset;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
  }
  .skill .skill-list .card .card-logo {
    opacity: 1;
    visibility: visible;
  }
  .skill .skill-list .card:first-child {
    margin-top: 0 !important;
  }
  .skill .skill-list .card .card-num {
    margin-bottom: 40px;
  }

  .feed {
    padding: 60px 20px;
  }
  .feed .feed-list .feed-item .btn-accordion {
    padding: 20px 16px;
  }
  .feed .feed-list .feed-item .feed-title span {
    min-width: 70px;
    height: 24px;
    padding: 0 10px;
    font-size: 12px;
  }
  .feed .feed-list .feed-item .feed-title {
    max-width: calc(100% - 40px);
    gap: 8px;
  }
  .feed .feed-list .feed-item .feed-title p {
    font-size: 14px;
  }
  .feed .feed-list .feed-item .btn-accordion::after {
    right: 16px;
    width: 20px;
    height: 20px;
  }
  .feed .feed-list .feed-item .feed-date {
    display: none;
  }
  .feed .feed-list {
    margin-top: 40px;
  }
  .feed .feed-list .feed-item .accordion-content .d-flex {
    padding: 40px 0;
    flex-direction: column;
    gap: 20px;
  }
  .feed .feed-list .feed-item .accordion-content .d-flex img {
    max-width: none !important;
    width: 100% !important;
  }
  .feed .feed-list .feed-item .accordion-content .d-flex p {
    flex: none;
    width: 100%;
    padding: 0;
    line-height: 1.8;
  }
  .contact .glass-box {
    border-radius: 20px;
  }
  .contact .glass-box-inner {
    padding: 30px 20px;
  }
  .contact .contact-text {
    margin-top: 20px;
    font-size: 14px;
  }
  .contact .contact-form {
    margin-top: 40px;
  }
  .form-group label {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    height: auto;
    padding: 10px;
  }
  .form-group.wide label {
    padding: 10px;
  }
  .contact .contact-form .row .form-group {
    flex: none;
    width: 100%;
  }
  .form-group .form-input {
    font-size: 14px;
  }
  .form-group textarea {
    margin-top: 0;
    font-size: 14px;
  }
  .check-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .check-wrap .btn-gradient {
    width: 100%;
  }
  .form-check label {
    font-size: 14px;
  }
  .flow strong {
    font-size: 32px;
  }
  .flow-text {
    font-size: 40px;
  }
  .hiring .d-flex {
    flex-wrap: wrap;
    width: 100%;
  }
  .hiring .main-title-wrap h2 {
    line-height: 1.4;
  }
  .hiring .btn-gradient {
    width: 100%;
  }
  #footer .maxinner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media all and (max-width: 480px) {
  .visual .visual-title p br {
    display: none;
  }
  .product .card {
    gap: 16px;
  }
  .product .card .card-header {
    gap: 16px;
  }
  .product .card .d-flex {
    gap: 24px;
  }
  .product .card .product-list {
    gap: 16px;
  }
  .product .card .card-body {
    gap: 24px;
  }
  .product .card .logo-list img {
    max-height: 40px;
  }
  .contact .contact-text p br {
    display: none;
  }
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.select-wrapper .select-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.9em;
  color: #fff;
}
select#userTraffic option {
  background-color: black;
  color: white;
}




