@charset "UTF-8";
.ub {
  max-width: 100vw;
}

h2 {
  font-size: 40px;
  color: #222;
  text-transform: uppercase;
}

.mo-br {
  display: none;
}
.mo-hamburger-btn {
  display: none;
}
.mo-nav {
  opacity: 0;
  visibility: hidden;
}

.header {
  width: 100%;
  height: 80px;
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  background-color: #121b23;
  transition: background-color 0.3s ease;
  z-index: 2;
}
.header__inner.dropdown-active {
  background-color: #fff;
  transition: background-color 0.3s ease;
}
.header__inner.dropdown-active .header__link {
  color: #222;
}
.header__inner.dropdown-active .header__link::before {
  background-color: #222;
}
.header__logo {
  padding-left: 40px;
  z-index: 10;
}
.header__logo img {
  height: 40px;
}
.header__nav {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.header__list {
  display: grid;
  grid-template-columns: repeat(3, 140px);
  padding: 0;
  margin: 0;
}
.header__item {
  text-align: center;
  text-transform: uppercase;
}
.header__link {
  position: relative;
  display: block;
  height: 80px;
  font-size: 16px;
  font-weight: 700;
  line-height: 80px;
  color: #fff;
  cursor: pointer;
}
.header__link::before {
  position: absolute;
  bottom: 25%;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #222;
  transition: width 0.4s;
  content: "";
}

.dropdown {
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  width: 100%;
  top: 80px;
  left: 0;
  background-color: #fff;
  z-index: 10;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}
.dropdown.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.dropdown__inner {
  display: grid;
  grid-template-columns: repeat(3, 140px);
  padding: 0 0 28px;
  max-width: 100%;
}
.dropdown__list {
  display: flex;
  flex-direction: column;
}
.dropdown__item {
  padding: 12px 0;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
}
.dropdown__item:first-of-type {
  padding-top: 0;
}
.dropdown__link {
  font-weight: 400;
  color: #222;
}
.dropdown__link:hover {
  font-weight: 600;
  color: #202124;
}

.m-hero {
  position: relative;
  width: 100%;
}
.m-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 800px;
}
.m-hero__img-wrap {
  width: 100%;
  height: 100%;
}
.m-hero__img-wrap img {
  width: 100%;
  height: 100%;
}
.m-hero__desc {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.m-hero__text {
  color: #3a4551;
  font-size: 54px;
  font-family: "NanumSquareExtraBold";
  line-height: 74px;
  letter-spacing: 1.4px;
}
.m-hero .char {
  display: inline-block;
  opacity: 0;
  color: #3a4551;
  font-size: inherit;
  font-family: "NanumSquareExtraBold";
  line-height: 74px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  backface-visibility: hidden;
  will-change: opacity, transform;
  animation: fadeUp 1.6s ease forwards;
}
.m-hero .char:nth-child(1) {
  animation-delay: 0.2s;
}
.m-hero .char:nth-child(2) {
  animation-delay: 0.4s;
}
.m-hero .char:nth-child(3) {
  animation-delay: 0.8s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(1.02);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.m-service {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.m-service__inner {
  width: 1200px;
  padding-top: 180px;
}
.m-service__sub-title {
  margin-top: 18px;
  font-size: 24px;
}
.m-service__shape-wrap {
  margin-top: 100px;
  text-align: center;
}
.m-service__shape {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  margin: 0 -14px;
  border: solid 1px #48a5da;
  border-radius: 50%;
  font-weight: 600;
  font-size: 20px;
  color: #202124;
  line-height: 30px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.m-service__shape::after {
  padding-bottom: 100%;
  content: "";
}
.m-service__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  width: 100%;
  margin-top: 180px;
}
.m-service__item {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
}
.m-service__item:last-of-type {
  padding-bottom: 0;
}
.m-service__heading {
  margin-bottom: 18px;
  color: #222;
  font-size: 34px;
  line-height: 50px;
}
.m-service__desc-wrap {
  margin-top: 30px;
}
.m-service__desc {
  color: #222;
  font-size: 20px;
  line-height: 30px;
}
.m-service__btn-more {
  margin-top: 40px;
  padding: 10px 18px;
  font-size: 16px;
  color: #202124;
  border: 1px solid #999;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.m-service__btn-more:hover {
  background-color: #48a5da;
  border-color: #48a5da;
  color: #ffffff;
}
.m-service__link {
  width: 300px;
  transition: 0.5s ease-out;
}
.m-service__link img {
  width: 100%;
}
.m-service .ico-plus {
  position: absolute;
  top: 30%;
  left: 45%;
  width: 42px;
  height: 42px;
}

.m-customer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.m-customer__inner {
  overflow: hidden;
  max-width: 1200px;
  padding: 180px 0 140px;
}
.m-customer__list {
  position: relative;
  display: flex;
  width: 300%;
  margin-top: 120px;
}
.m-customer__list.animate-start {
  animation: marqueeScroll 40s linear infinite;
}
.m-customer__list.reverse {
  animation: marqueeScrollReverse 210s linear infinite;
}
.m-customer__item {
  margin-right: 150px;
  transition: transform 0.3s ease;
}
.m-customer__item img {
  width: 200px;
  height: 120px;
  object-fit: contain;
}

.m-contact {
  display: flex;
  justify-content: center;
}
.m-contact.is-active .m-contact__contents {
  visibility: visible;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out, transform 0.7s ease-in-out;
}
.m-contact__inner {
  width: 1200px;
  padding: 180px 0;
}
.m-contact__article {
  visibility: visible;
  display: flex;
  justify-content: center;
  width: 100%;
}
.m-contact__api {
  width: 50%;
  height: 500px;
  background-color: beige;
}
.m-contact__contents {
  padding: 50px 0 50px 90px;
  color: #222;
}
.m-contact__contents strong {
  display: inline-block;
  margin-top: 50px;
  font-size: 24px;
  font-weight: 500;
}
.m-contact__address {
  margin-top: 20px;
}
.m-contact__list {
  margin-top: 80px;
}
.m-contact__list p {
  display: inline-block;
}
.m-contact__title {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 600;
}
.m-contact__title:first-of-type {
  margin-top: 0;
}

.footer {
  padding: 40px 0;
  background-color: #121b23;
  text-align: center;
}
.footer__desc {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 1400px) {
  .mo-br {
    display: block;
  }
  .mo-hamburger-btn {
    display: block;
    position: relative;
    width: 30px;
    height: 40px;
    z-index: 3;
  }
  .mo-hamburger-btn img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .mo-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 1000;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  }
  .mo-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  }
  .mo-nav__header {
    position: relative;
    height: 80px;
    padding: 0 20px;
    border-bottom: 1px solid #c2c2c2;
  }
  .mo-nav__logo {
    width: 100px;
    height: 100%;
  }
  .mo-nav__logo::before {
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url("/assets/img/logo@x2.png") no-repeat center/contain;
    content: "";
  }
  .mo-nav__btn {
    position: absolute;
    top: 0;
    right: 20px;
    width: 14px;
    height: 100%;
  }
  .mo-nav__btn::after {
    display: inline-block;
    width: 100%;
    height: 24px;
    background: url("/assets/img/ico-close.png") no-repeat center/contain;
    content: "";
  }
  .mo-nav__list {
    padding: 0 6px;
  }
  .mo-nav__item {
    position: relative;
    width: 100%;
    padding: 10px 0 0;
  }
  .mo-nav__item::before {
    position: absolute;
    display: inline-block;
    width: 0;
    height: 1px;
    top: 100%;
    content: "";
  }
  .mo-nav__item.active::before {
    width: 100%;
    transition: width 0.5s;
  }
  .mo-nav__item.active .mo-nav__link::after {
    transform: rotate(180deg);
  }
  .mo-nav__link {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    color: #000;
    font-size: 16px;
    background: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
  }
  .mo-nav__link::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url("/assets/img/arrow-black.svg") no-repeat center/contain;
    transition: transform 0.3s;
  }
  .mo-nav__dropdown {
    max-height: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
    transition: max-height 0.3s ease;
  }
  .mo-nav__dropdown-item:last-of-type .mo-nav__dropdown-link {
    padding-bottom: 24px;
  }
  .mo-nav__dropdown-link {
    display: block;
    padding: 12px 16px 12px 16px;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
  }
  h2 {
    letter-spacing: 0.6px;
    font-weight: 700;
    font-size: 34px;
  }
  .header__inner {
    position: relative;
    padding: 0 20px;
    justify-content: space-between;
  }
  .header__inner:hover {
    background-color: #121b23;
  }
  .header__nav {
    display: none;
  }
  .header__logo {
    padding-left: 10px;
  }
  .dropdown {
    display: none !important;
  }
  .m-hero {
    height: auto;
  }
  .m-hero__inner {
    height: 500px;
  }
  .m-hero__img {
    display: none;
  }
  .m-hero__img-mo {
    display: block;
    width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .m-hero__text {
    font-size: 38px;
    line-height: 50px;
  }
  .m-hero .char {
    font-size: 38px;
    line-height: 50px;
    animation: fadeUp 2s ease forwards;
  }
  .m-service__inner {
    max-width: 100%;
    padding: 120px 30px 0;
  }
  .m-service__sub-title {
    margin-top: 18px;
    font-size: 20px;
  }
  .m-service__shape-wrap {
    margin-top: 70px;
  }
  .m-service__shape {
    width: 27%;
    border: solid 1px #48a5da;
    border-radius: 50%;
    font-weight: 600;
    font-size: 16px;
    color: #202124;
    line-height: 30px;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .m-service__shape::after {
    padding-bottom: 100%;
    content: "";
  }
  .m-service__list {
    gap: 60px;
    margin-top: 140px;
  }
  .m-service__item {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    padding: 0;
    overflow: hidden;
  }
  .m-service__link:hover img {
    opacity: 0.8;
    transition: 0.5s ease-out;
  }
  .m-service__heading {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: -0.6px;
  }
  .m-service__desc-wrap {
    margin-top: 24px;
  }
  .m-service__desc {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: -0.6px;
  }
  .m-service__btn-more {
    margin-top: 30px;
    font-size: 14px;
  }
  .m-service__link {
    width: 220px;
  }
  .m-customer {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
  }
  .m-customer__inner {
    max-width: 100%;
    padding: 160px 30px 0;
  }
  .m-customer__list {
    display: flex;
    overflow: hidden;
    margin-top: 60px;
    padding-left: 0;
  }
  .m-customer__list.animate-start {
    animation: marqueeScroll 80s linear infinite;
  }
  .m-customer__list.reverse {
    flex-direction: row-reverse;
  }
  .m-customer__item {
    margin-right: 60px;
  }
  .m-customer__item img {
    width: 160px;
    height: 80px;
  }
  .consulting__inner {
    padding: 200px 0 100px;
  }
  .consulting__list {
    width: 250px;
  }
  .consulting__item {
    height: 100px;
    font-size: 16px;
  }
  .consulting__link {
    line-height: 100px;
  }
  .consulting__link::after {
    width: 100%;
    background-color: #c2c2c2;
  }
  .consulting__link:hover {
    pointer-events: none;
  }
  .m-contact.is-active .m-contact__contents {
    visibility: visible;
    transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out, transform 0.7s ease-in-out;
  }
  .m-contact__inner {
    max-width: 100%;
    padding: 160px 30px 60px;
  }
  .m-contact__api {
    width: 50%;
    height: 500px;
    background-color: beige;
  }
  .m-contact__contents {
    padding: 50px 0 50px 40px;
  }
  .m-contact__contents strong {
    margin-top: 40px;
    font-size: 18px;
  }
  .m-contact__address {
    margin-top: 20px;
    line-height: 26px;
  }
  .m-contact__list {
    margin-top: 60px;
  }
  .m-contact__title {
    font-size: 16px;
  }
  .footer__desc {
    font-weight: 500;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .mo-hamburger-btn {
    width: 30px;
    height: 40px;
  }
  .mo-hamburger-btn img {
    width: 100%;
    height: 100%;
  }
  h2 {
    font-size: 28px;
  }
  .header__inner {
    padding: 0 20px;
  }
  .header__inner:hover {
    background-color: #121b23;
  }
  .header__list {
    display: none;
  }
  .header__logo img {
    height: 34px;
  }
  .dropdown {
    display: none !important;
  }
  .m-hero__inner {
    height: 340px;
  }
  .m-hero__text {
    font-size: 24px;
    line-height: 34px;
  }
  .m-hero .char {
    font-size: 24px;
    line-height: 34px;
  }
  .m-service__inner {
    max-width: 100%;
    padding: 60px 0;
  }
  .m-service__title {
    padding: 0 30px;
  }
  .m-service__sub-title {
    padding: 0 30px;
    font-size: 14px;
  }
  .m-service__shape-wrap {
    margin-top: 40px;
    padding: 0 30px;
  }
  .m-service__shape {
    width: 53%;
    font-size: 14px;
    line-height: 22px;
  }
  .m-service__list {
    margin-top: 100px;
    gap: 80px;
  }
  .m-service__item {
    flex-direction: column;
    gap: 50px;
    padding: 0;
  }
  .m-service__heading {
    font-size: 18px;
    line-height: 32px;
  }
  .m-service__contents-box {
    order: 2;
    width: 100%;
    text-align: center;
  }
  .m-service__link {
    order: 1;
    width: 74%;
    text-align: center;
  }
  .m-service__link img {
    width: 50%;
  }
  .m-service__desc-wrap {
    margin-top: 24px;
  }
  .m-service__desc {
    font-size: 14px;
    line-height: 26px;
  }
  .m-service__btn-more {
    margin-top: 28px;
    padding: 12px 22px;
    font-size: 14px;
  }
  .m-customer__inner {
    max-width: 100%;
    padding: 60px 30px;
  }
  .m-customer__list {
    max-width: 100%;
    margin-top: 30px;
  }
  .m-customer__list.animate-start {
    animation: marqueeScroll 20s linear infinite;
  }
  .m-customer__list.reverse {
    flex-direction: row-reverse;
    animation: marqueeScrollReverse 20s linear infinite;
  }
  .m-customer__item {
    margin-right: 60px;
  }
  .m-customer__item img {
    width: 160px;
    height: 80px;
  }
  .consulting__inner {
    padding: 120px 0 140px;
  }
  .consulting__list {
    width: 220px;
  }
  .consulting__item {
    height: 100px;
    font-size: 16px;
  }
  .consulting__link {
    line-height: 100px;
  }
  .consulting__link::after {
    width: 100%;
  }
  .m-contact.is-active .m-contact__contents {
    visibility: visible;
    transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out, transform 0.7s ease-in-out;
  }
  .m-contact__inner {
    max-width: 100%;
    padding: 0 30px 80px;
  }
  .m-contact__article {
    flex-direction: column;
  }
  .m-contact__api {
    width: 100%;
    height: 500px;
    background-color: beige;
  }
  .m-contact__contents {
    padding: 50px 0 0 40px;
  }
  .m-contact__contents strong {
    margin-top: 26px;
    font-size: 18px;
  }
  .m-contact__address {
    margin-top: 20px;
    line-height: 26px;
  }
  .m-contact__list {
    margin-top: 40px;
  }
  .m-contact__title {
    font-size: 16px;
  }
  .footer__desc {
    margin-top: 16px;
    font-weight: 500;
    font-size: 12px;
  }
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  95% {
    transform: translateX(-90%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marqueeScrollReverse {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.8s ease;
}

.fade.is-active {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=main.css.map */