@charset "UTF-8";
/*
==========================================================================
  common
==========================================================================
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
:root {
  overflow-y: auto;
  --font-montserrat: "Montserrat", sans-serif;
  --font-noto-sans: "Noto Sans KR", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0em;
}

html,
body {
  width: 100%;
  max-width: 100%;
}

html {
  font-size: 16px;
}

body {
  line-height: 1.2;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

input,
button,
textarea,
select,
a {
  font-family: inherit;
  color: inherit;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

ul,
ol,
dl,
dt,
dd {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

a,
button {
  text-decoration: none;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

a:hover,
button:hover,
a:active,
button:active {
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  text-decoration: none;
}

a:active {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*모바일 스타일 제거*/
input[text],
textarea,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input[type=text],
input[type=password] textarea,
select {
  border-radius: 0;
  -webkit-appearance: none;
}

button {
  outline-style: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

html,
body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  font-family: var(--font-noto-sans);
}
body.overflow {
  overflow: hidden;
}
body::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

.cursor {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  z-index: 9999;
  background-color: #B0D85B;
  opacity: 0.8;
  /* 마우스로 컨트롤 할 수가 없음 */
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.3s;
  transition: opacity 0.2s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.2s;
  transition: transform 0.3s, opacity 0.2s, -webkit-transform 0.3s;
}
.cursor.active {
  opacity: 0.7;
  -webkit-transform: scale(2);
          transform: scale(2);
}
.cursor.go {
  opacity: 0.7;
  -webkit-transform: scale(4.5);
          transform: scale(4.5);
}

#header {
  width: 100%;
  height: 7.1875rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 3.75rem;
  background-color: #fff;
  opacity: 0.8;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 999;
}
#header .img-logo {
  width: 10.75rem;
  height: 2.875rem;
}
#header .img-logo > a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
#header .img-logo > a > i {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/common/img_infy_logo_white.png") no-repeat 50%/contain;
  left: 0;
  position: absolute;
  top: 0;
}
#header .img-logo > a > i + i {
  background: url("../images/common/img_infy_logo.png") no-repeat 50%/contain;
}
#header .btn-menubar {
  position: relative;
  width: 2rem;
  height: 2rem;
}
#header .btn-menubar > i {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/common/icon_menubar_white.png") center/cover no-repeat;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#header .btn-menubar > i + i {
  background: url("../images/common/icon_menu.png") center/cover no-repeat;
}

.nav-wrap {
  position: absolute;
  top: -300%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background-color: #078FF7;
  z-index: 999;
  -webkit-transition: top 0.5s ease-in-out;
  transition: top 0.5s ease-in-out;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nav-wrap.open {
  top: 0;
}
.nav-wrap::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}
.nav-wrap .nav-header #header {
  position: relative;
  opacity: 1;
  -webkit-backdrop-filter: initial;
          backdrop-filter: initial;
  background-color: transparent;
}
.nav-wrap .nav-header #header .img-logo {
  width: 10.2rem;
  height: 2.2rem;
}
.nav-wrap .nav-header .btns-close::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/common/icon_btn_close.png") center/cover no-repeat;
}
.nav-wrap .nav-list-wrap {
  padding: 8.75rem 3.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.nav-wrap .nav-list-wrap .nav-list {
  font-family: var(--font-montserrat);
  font-size: 3.75rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-top: 6.25rem;
  cursor: pointer;
  position: relative;
}
.nav-wrap .nav-list-wrap .nav-list::before {
  content: "1";
  display: inline-block;
  font-size: 1.875rem;
  font-weight: 900;
  margin-right: 1.5rem;
  position: relative;
  top: -1.4rem;
}
.nav-wrap .nav-list-wrap .nav-list:first-child {
  margin-top: 0;
}
.nav-wrap .nav-list-wrap .nav-list:nth-child(2)::before {
  content: "2";
}
.nav-wrap .nav-list-wrap .nav-list:nth-child(3)::before {
  content: "3";
}
.nav-wrap .nav-list-wrap .nav-list:nth-child(4)::before {
  content: "4";
}
.nav-wrap .nav-list-wrap .nav-list:hover {
  text-decoration: underline;
}
.nav-wrap .nav-list-wrap .nav-list:hover::after {
  content: "";
  display: inline-block;
  width: 1.5625rem;
  height: 1.5625rem;
  background: url("../images/common/icon_active_arrow.png") center/cover no-repeat;
  position: absolute;
  top: 0.25rem;
  margin-left: 1.5rem;
}

.overlay {
  position: fixed;
  width: 100%;
  grid-area: 1/1/2/2;
  height: 100%;
  pointer-events: none;
  z-index: 100000000000;
}

#main {
  padding-top: 12.5rem;
  padding-bottom: 14.4375rem;
}
#main .mx-width {
  max-width: 98.75rem;
  margin: 0 auto;
  padding: 0 3.75rem;
}
#main .cont-header {
  color: #000;
  position: relative;
}
#main .cont-header::after {
  content: "";
  display: block;
  width: 100%;
  height: 25rem;
  background: url("../images/about/img_about1.png") center/cover no-repeat;
  position: relative;
  top: -13.7rem;
}
#main .cont-header .title {
  font-family: var(--font-montserrat);
  font-size: 3.75rem;
  font-weight: 800;
  text-transform: uppercase;
}
#main .cont-header .title::after {
  content: "";
  display: inline-block;
  width: 0.6875rem;
  height: 0.6875rem;
  background-color: #078FF7;
  border-radius: 50%;
  margin-left: 0.75rem;
}
#main .cont-header .title-ko {
  font-size: 5.625rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03rem;
  position: relative;
  top: 17.8rem;
  z-index: 1;
}
#main .cont-header .title-ko strong {
  color: #000;
  font-weight: 700;
}
#main .cont-body {
  margin-top: 2rem;
}
#main .cont-body .txt-wrap {
  position: relative;
  word-break: keep-all;
}
#main .cont-body .txt-wrap .txt {
  font-family: var(--font-montserrat);
  font-size: 6.875rem;
  font-weight: 900;
  color: #EAEBEC;
  text-transform: uppercase;
  position: absolute;
  top: -3.4rem;
  opacity: 0;
}
#main .cont-body .txt-wrap .txt.animation {
  -webkit-animation-name: backInRight;
          animation-name: backInRight;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  opacity: 1;
}
#main .cont-body .txt-wrap .introduce {
  font-size: 2.875rem;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  text-align: center;
  position: relative;
  z-index: 1;
}
#main .cont-body .cont-item-wrap {
  margin-top: 11.5rem;
}
#main .cont-body .cont-item-wrap .item .item-title {
  font-size: 2.625rem;
  font-weight: 700;
  color: #111;
}
#main .cont-body .cont-item-wrap .item .item-desc {
  font-size: 1.375rem;
  font-weight: 400;
  color: #5B5B5B;
  line-height: 1.4;
}

#footer {
  width: 100%;
  padding: 0 3.75rem;
}
#footer .footer-wrap {
  padding: 2rem 0 3.125rem;
  border-top: 1px solid #626262;
}
#footer .company-info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 2rem;
  color: #111;
}
#footer .company-info-wrap .btn-download {
  font-family: var(--font-montserrat);
  font-size: 1.125rem;
  font-weight: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
#footer .company-info-wrap .btn-download::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/common/icon_download.png") center/cover no-repeat;
  margin-left: 0.625rem;
}
#footer .company-info-wrap .btn-download:hover {
  text-decoration: underline;
}
#footer .company-info-wrap .txt-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: auto;
}
#footer .company-info-wrap dl {
  margin-right: 5rem;
}
#footer .company-info-wrap dl dt {
  font-family: var(--font-montserrat);
  font-size: 1.125rem;
  font-weight: 800;
}
#footer .company-info-wrap dl dd {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 2rem;
  line-height: 1.3;
}
#footer .company-info-wrap dl.copyright {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 0;
}
#footer .company-info-wrap dl.copyright dd {
  margin-top: 0;
}
#footer .welfare-policy {
  margin-top: 1.125rem;
}
#footer .welfare-policy .logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
#footer .welfare-policy .logo-wrap li:first-child {
  width: 3rem;
  height: 4.0625rem;
}
#footer .welfare-policy .logo-wrap li:nth-child(2) {
  width: 4.625rem;
  height: 2.875rem;
}
#footer .welfare-policy .logo-wrap li:nth-child(3) {
  width: 5.3125rem;
  height: 3rem;
}
#footer .welfare-policy .logo-wrap li:nth-child(4) {
  width: 2.8125rem;
  height: 2.8125rem;
}
#footer .welfare-policy .logo-wrap li:nth-child(5) {
  width: 3.5rem;
  height: 3.4375rem;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
            transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
            transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
            transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
            transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/*
* responsive
*/
@media (max-width: 1643.98px) {
  #footer .company-info-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  #footer .txt-wrap dl {
    margin-top: 2.8rem;
  }
}
@media (max-width: 1199.98px) {
  #footer .company-info-wrap .txt-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #footer .company-info-wrap dl dd {
    margin-top: 1.25rem;
  }
  #footer .welfare-policy {
    margin-top: 3rem;
  }
  #footer .welfare-policy .logo-wrap {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 991.98px) {
  #main {
    padding-bottom: 9.4375rem;
  }
  #main .cont-header::after {
    top: -10rem;
  }
  #main .cont-header .title-ko {
    font-size: 4rem;
    top: 19.8rem;
  }
  #main .cont-body .txt-wrap .txt {
    font-size: 6rem;
  }
  #main .cont-body .txt-wrap .introduce {
    font-size: 2.5rem;
  }
  #main .cont-body .cont-item-wrap {
    margin-top: 7.5rem;
  }
  #main .cont-body .cont-item-wrap .item .item-title {
    font-size: 2.25rem;
  }
  #main .cont-body .cont-item-wrap .item .item-desc {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (max-width: 767.98px) {
  .cursor {
    display: none !important;
  }
  .cursor.active {
    display: none !important;
  }
  #header {
    height: 5rem;
    padding: 2.25rem 1.875rem 0.875rem;
  }
  #header .img-logo {
    width: 8.3125rem;
    height: 1.75rem;
  }
  #header .btn-menubar {
    width: 1.375rem;
    height: 1.25rem;
  }
  .nav-wrap {
    position: fixed;
    overflow-y: scroll;
    top: 0;
    bottom: 0;
    left: initial;
    right: -200%;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .nav-wrap.open {
    right: 0;
  }
  .nav-wrap .nav-header .btns-close::after {
    width: 1rem;
    height: 1rem;
  }
  .nav-wrap .nav-list-wrap {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    padding-top: 5.75rem;
  }
  .nav-wrap .nav-list-wrap .nav-list {
    font-size: 2rem;
    margin-top: 4rem;
  }
  .nav-wrap .nav-list-wrap .nav-list::before {
    font-size: 1.2rem;
    margin-right: 1rem;
    top: -0.6rem;
  }
  #main {
    padding-top: 7.75rem;
    padding-bottom: 4.4375rem;
  }
  #main .mx-width {
    padding: 0 1.875rem;
  }
  #main .cont-header::after {
    height: 13.25rem;
    background-position: 35%;
    top: -7.3rem;
  }
  #main .cont-header .title {
    font-size: 2.125rem;
  }
  #main .cont-header .title-ko {
    font-size: 3.125rem;
    top: 9.7rem;
  }
  #main .cont-body .txt-wrap .txt {
    font-size: 3.125rem;
    position: relative;
    top: 0;
  }
  #main .cont-body .txt-wrap .introduce {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
  #main .cont-body .cont-item-wrap {
    margin-top: 2.5rem;
  }
  #footer {
    padding: 0 1.875rem;
  }
  #footer .footer-wrap {
    padding-bottom: 4.375rem;
  }
  #footer .welfare-policy .logo-wrap {
    gap: 1.25rem;
  }
  #footer .welfare-policy .logo-wrap li:first-child {
    width: 2.4375rem;
    height: 3.3125rem;
  }
  #footer .welfare-policy .logo-wrap li:nth-child(2) {
    width: 3.6875rem;
    height: 2.3125rem;
  }
  #footer .welfare-policy .logo-wrap li:nth-child(3) {
    width: 4.25rem;
    height: 2.4375rem;
  }
  #footer .welfare-policy .logo-wrap li:nth-child(4) {
    width: 2.3125rem;
    height: 2.3125rem;
  }
  #footer .welfare-policy .logo-wrap li:nth-child(5) {
    width: 2.8125rem;
    height: 2.8125rem;
  }
}
@media (max-width: 575.98px) {
  #main .cont-body .txt-wrap .introduce {
    font-size: 1.375rem;
  }
}
@media (max-width: 399.98px) {
  #footer .welfare-policy .logo-wrap {
    gap: 0.5rem;
  }
}
@media (min-height: 1229.98px) {
  #footer .footer-wrap {
    padding-top: 4.5rem;
  }
}
#about .item-title {
  font-family: var(--font-montserrat);
}
#about .section1 .cont-item-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
#about .section1 .cont-item-wrap .item {
  padding: 3.375rem 3.375rem 5.3125rem;
  background-color: #F5F6F7;
  border-radius: 4.8125rem;
}
#about .section1 .cont-item-wrap .item .item-desc {
  min-height: 7.5rem;
  margin-top: 1.25rem;
}
#about .section2 {
  margin-top: 9.4375rem;
}
#about .section2 .cont-header::after {
  background-image: url("../images/about/img_about2.png");
}
#about .section2 .cont-item-wrap .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.5rem;
  margin-top: 17.5rem;
}
#about .section2 .cont-item-wrap .item .txt-wrap {
  padding-top: 6rem;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#about .section2 .cont-item-wrap .item .txt-wrap::before {
  content: "";
  width: 4.625rem;
  height: 4.625rem;
  background: url("../images/about/icon_tech1.png") center/cover no-repeat;
  position: absolute;
  top: 0;
}
#about .section2 .cont-item-wrap .item .txt-wrap .tag {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
}
#about .section2 .cont-item-wrap .item .txt-wrap .item-title {
  margin-top: 1.125rem;
}
#about .section2 .cont-item-wrap .item .txt-wrap .item-desc {
  margin-top: 1.375rem;
}
#about .section2 .cont-item-wrap .item .txt-wrap .info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.625rem;
  position: relative;
  margin-top: 3.75rem;
}
#about .section2 .cont-item-wrap .item .txt-wrap .info-wrap::before {
  content: "";
  width: 100%;
  border-top: 1px solid #078FF7;
  position: absolute;
  top: 50%;
}
#about .section2 .cont-item-wrap .item .txt-wrap .info-wrap .info {
  width: 9.375rem;
  height: 9.375rem;
  border: 1px solid #078FF7;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  position: relative;
}
#about .section2 .cont-item-wrap .item .txt-wrap .info-wrap .info span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #078FF7;
  line-height: 1.3;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  word-break: keep-all;
}
#about .section2 .cont-item-wrap .item .img-wrap {
  width: 48.125rem;
  height: 32.0625rem;
  position: relative;
}
#about .section2 .cont-item-wrap .item .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#about .section2 .cont-item-wrap .item:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#about .section3 {
  margin-top: 21.5rem;
  background-color: #F7F9FA;
}
#about .section3 .content-wrap {
  padding: 12.5rem 0 12.375rem;
}
#about .section3 .cont-item-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7rem 6rem;
  padding: 0 3rem;
}

/*
* responsive
*/
@media (max-width: 1599.98px) {
  #about .section2 .cont-item-wrap .item .txt-wrap {
    padding-top: 5rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap::before {
    width: 3.625rem;
    height: 3.625rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .item-title {
    margin-top: 1.125rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .item-desc {
    font-size: 1.25rem;
    margin-top: 1.375rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .info-wrap {
    margin-top: 2.75rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .info-wrap .info {
    width: 7.375rem;
    height: 7.375rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .info-wrap .info span {
    font-size: 1rem;
  }
  #about .section2 .cont-item-wrap .item .img-wrap {
    width: 43.125rem;
    height: 28.0625rem;
  }
}
@media (max-width: 1399.98px) {
  #about .section2 .cont-item-wrap .item {
    gap: 3.5rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap {
    padding-top: 4rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap::before {
    width: 2.625rem;
    height: 2.625rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .tag {
    font-size: 1.325rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .item-title {
    font-size: 2.25rem;
    margin-top: 0.75rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .item-desc {
    font-size: 1.125rem;
    margin-top: 1rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .info-wrap {
    margin-top: 2rem;
    gap: 1.25rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .info-wrap .info {
    width: 6.375rem;
    height: 6.375rem;
  }
  #about .section2 .cont-item-wrap .item .img-wrap {
    width: 39.125rem;
    height: 24.0625rem;
  }
}
@media (max-width: 1199.98px) {
  #about .section2 .cont-item-wrap .item {
    gap: 2.5rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap {
    padding-top: 4rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap::before {
    width: 2.625rem;
    height: 2.625rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .tag {
    font-size: 1.25rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .item-title {
    font-size: 1.75rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .info-wrap {
    margin-top: 2rem;
    gap: 1.25rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .info-wrap .info {
    width: 4.6875rem;
    height: 4.6875rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .info-wrap .info span {
    font-size: 0.875rem;
    line-height: 1.1;
  }
  #about .section2 .cont-item-wrap .item .img-wrap {
    width: 33.125rem;
    height: 23.0625rem;
  }
  #about .section3 .cont-item-wrap {
    gap: 6rem 4rem;
    padding: 0 2rem;
  }
}
@media (max-width: 991.98px) {
  #about .section1 .cont-item-wrap .item {
    padding: 3rem 3rem 4rem;
  }
  #about .section1 .cont-item-wrap .item .item-desc {
    min-height: 5rem;
  }
  #about .section2 .cont-item-wrap {
    margin-top: 10.5rem;
  }
  #about .section2 .cont-item-wrap .item {
    margin-top: 10.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #about .section2 .cont-item-wrap .item:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap {
    min-width: 26.25rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .info-wrap {
    margin-top: 3rem;
    gap: 2.25rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .info-wrap .info {
    width: 7.6875rem;
    height: 7.6875rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .info-wrap .info span {
    font-size: 1rem;
    line-height: 1.3;
  }
  #about .section2 .cont-item-wrap .item .img-wrap {
    width: 100%;
    height: auto;
    padding-top: 67.2%;
  }
  #about .section3 {
    margin-top: 14.5rem;
  }
  #about .section3 .content-wrap {
    padding: 8.5rem 0 8.375rem;
  }
  #about .section3 .cont-item-wrap {
    gap: 4rem;
    padding: 0;
  }
}
@media (max-width: 767.98px) {
  #about .section1 .cont-item-wrap {
    display: block;
  }
  #about .section1 .cont-item-wrap .item {
    margin-top: 1.25rem;
    padding: 3.375rem 1.875rem;
  }
  #about .section1 .cont-item-wrap .item .item-title {
    font-size: 1.375rem;
  }
  #about .section1 .cont-item-wrap .item .item-desc {
    font-size: 1.125rem;
    min-height: auto;
  }
  #about .section2 {
    margin-top: 4.875rem;
  }
  #about .section2 .cont-header::after {
    background-position: 27%;
  }
  #about .section2 .cont-item-wrap {
    margin-top: 4.75rem;
  }
  #about .section2 .cont-item-wrap .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 7.75rem;
    gap: 2.5rem;
  }
  #about .section2 .cont-item-wrap .item:first-child {
    margin-top: 0;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap {
    padding-top: 5rem;
    min-width: 100%;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap::before {
    width: 3.625rem;
    height: 3.625rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .tag {
    font-size: 1.25rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .item-title {
    font-size: 1.625rem;
    margin-top: 0.5rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .item-desc {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-top: 1.375rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .info-wrap {
    gap: 2.25rem;
    margin-top: 2.5rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .info-wrap .info {
    width: 4.6875rem;
    height: 4.6875rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .info-wrap .info span {
    font-size: 0.875rem;
  }
  #about .section3 {
    margin-top: 6.5625rem;
  }
  #about .section3 .content-wrap {
    padding: 8.125rem 0;
  }
  #about .section3 .cont-item-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    padding: 0;
    margin-top: 4.6875rem;
  }
}
@media (max-width: 575.98px) {
  #about .section2 .cont-item-wrap .item .txt-wrap .info-wrap {
    gap: 1rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .info-wrap .info {
    width: 4.3rem;
    height: 4.3rem;
  }
  #about .section2 .cont-item-wrap .item .txt-wrap .info-wrap .info span {
    font-size: 0.75rem;
  }
  #about .section3 .cont-item-wrap {
    gap: 4rem 2rem;
  }
}
@media (max-width: 399.98px) {
  #about .section2 .cont-item-wrap .item .txt-wrap .info-wrap {
    gap: 0.3125rem;
  }
}
#workCont.open-prj-pop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background: #000;
  overflow: hidden;
}

#work .cont-header::after {
  content: none;
}
#work .cont-header .title-ko {
  color: #000;
  top: 0;
  margin-top: 5rem;
}
#work .cont-body {
  margin-top: 8rem;
}
#work .cont-body .cont-item-wrap .tab-list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  overflow-x: scroll;
}
#work .cont-body .cont-item-wrap .tab-list-wrap::-webkit-scrollbar {
  display: none;
}
#work .cont-body .cont-item-wrap .tab-list-wrap .tab-list {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  border: 2px solid #000;
  border-radius: 1.5rem;
  padding: 0.5rem 1.5625rem 0.6rem;
  cursor: pointer;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
#work .cont-body .cont-item-wrap .tab-list-wrap .tab-list.active, #work .cont-body .cont-item-wrap .tab-list-wrap .tab-list:hover {
  color: #fff;
  background-color: #000;
}
#work .cont-body .cont-item-wrap .tab-cont-wrap {
  margin-top: 5.3125rem;
}
#work .cont-body .cont-item-wrap .tab-cont-wrap .tab-cont {
  display: none;
}
#work .cont-body .cont-item-wrap .tab-cont-wrap .tab-cont.active {
  display: block;
}
#work .cont-body .cont-item-wrap .tab-cont-wrap .swiper {
  padding-bottom: 6.25rem;
}
#work .cont-body .cont-item-wrap .tab-cont-wrap .swiper .swiper-scrollbar {
  background: #d9d9d9;
}
#work .cont-body .cont-item-wrap .tab-cont-wrap .swiper .swiper-scrollbar-drag {
  background: #078ff7;
}
#work .cont-body .cont-item-wrap .tab-cont-wrap .swiper .swiper-slide {
  max-width: 26.25rem !important;
}
#work .cont-body .cont-item-wrap .tab-cont-wrap .item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
#work .cont-body .cont-item-wrap .tab-cont-wrap .item {
  position: relative;
  border-radius: 4.8125rem;
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  cursor: pointer;
}
#work .cont-body .cont-item-wrap .tab-cont-wrap .item .txt-wrap {
  position: absolute;
  top: 3.6875rem;
  left: 2.8125rem;
  z-index: 1;
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  z-index: 9;
  padding-right: 2.6rem;
}
#work .cont-body .cont-item-wrap .tab-cont-wrap .item .item-title {
  font-size: 1.75rem;
  color: #fff;
  margin-top: 1rem;
  line-height: 1.2;
}
#work .cont-body .cont-item-wrap .tab-cont-wrap .item .img-wrap {
  position: relative;
  padding-top: 100%;
}
#work .cont-body .cont-item-wrap .tab-cont-wrap .item .img-wrap ul {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#work .cont-body .cont-item-wrap .tab-cont-wrap .item .img-wrap ul::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.22);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 7;
}
#work .cont-body .cont-item-wrap .tab-cont-wrap .item .img-wrap ul li {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#work .cont-body .cont-item-wrap .tab-cont-wrap .item .img-wrap ul li:first-child {
  z-index: 6;
}
#work .cont-body .cont-item-wrap .tab-cont-wrap .item .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.project-pop {
  display: none;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.project-pop.open {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.project-pop.open::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}
.project-pop .prj-cont {
  float: left;
  position: relative;
  z-index: 1001;
  width: 100%;
  margin: 9.625rem 0 4rem;
  text-align: center;
  line-height: 0;
  height: 100%;
  overflow-y: scroll;
  padding-bottom: 9.5rem;
}
.project-pop .prj-cont .ui-prj {
  float: left;
  margin: 0 auto;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  overflow: hidden;
  text-align: center;
  line-height: 0;
  padding-bottom: 4rem;
}
.project-pop .prj-cont img {
  display: inline-block;
  width: 100%;
  max-width: 87.5rem;
}
.project-pop .ui-control {
  position: fixed;
  top: 2rem;
  left: 50%;
  margin-left: -7rem;
  z-index: 1002;
  text-align: center;
  width: 15rem;
  padding: 1.25rem 0;
}
.project-pop .ui-control button {
  width: 4.5rem;
  height: 4.5rem;
  background: url("../images/common/icon_arrow_left.png") center/cover no-repeat;
  margin: 0 0.9375rem;
}
.project-pop .ui-control button.ui-next {
  background-image: url("../images/common/icon_arrow_right.png");
}
.project-pop .ui-control button:disabled {
  opacity: 0.2;
  cursor: default;
}
.project-pop .ui-close {
  position: fixed;
  top: 3.6875rem;
  right: 4.1875rem;
  z-index: 1003;
  color: #fff;
  width: 4.5rem;
  height: 4.5rem;
}
.project-pop .ui-close::before {
  content: "";
  position: absolute;
  top: 2.25rem;
  right: 0;
  display: block;
  width: 4.5rem;
  height: 2px;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.project-pop .ui-close::after {
  content: "";
  position: absolute;
  top: 2.25rem;
  right: 0;
  display: block;
  width: 4.5rem;
  height: 2px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.hide {
  position: absolute;
  z-index: -1;
  color: transparent;
  overflow: hidden;
  font-size: xx-small;
  line-height: 0;
}

/*
* responsive
*/
@media (max-width: 1599.98px) {
  .project-pop .ui-control {
    top: 3rem;
  }
  .project-pop .ui-control button {
    width: 4rem;
    height: 4rem;
  }
  .project-pop .ui-close {
    right: 2rem;
  }
  .project-pop .ui-close::before, .project-pop .ui-close::after {
    width: 4rem;
  }
}
@media (max-width: 991.98px) {
  #work .cont-body .cont-item-wrap .tab-cont-wrap .item .txt-wrap {
    top: 2.5rem;
    left: 2.5rem;
    font-size: 1rem;
  }
  #work .cont-body .cont-item-wrap .tab-cont-wrap .item .txt-wrap .title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  #work .cont-body {
    margin-top: 3rem;
  }
  #work .cont-body .cont-item-wrap {
    margin-top: 3.75rem;
  }
  #work .cont-body .cont-item-wrap .tab-list-wrap {
    gap: 0.5rem;
  }
  #work .cont-body .cont-item-wrap .tab-list-wrap .tab-list {
    font-size: 0.875rem;
  }
  #work .cont-body .cont-item-wrap .tab-cont-wrap {
    margin-top: 3.75rem;
  }
  #work .cont-body .cont-item-wrap .tab-cont-wrap .swiper {
    padding-bottom: 4.25rem;
    padding-right: 1.5rem;
  }
  #work .cont-body .cont-item-wrap .tab-cont-wrap .item-wrap {
    padding-left: 1.875rem;
  }
  #work .cont-body .cont-item-wrap .tab-cont-wrap .item {
    border-radius: 3.25rem;
  }
  #work .cont-body .cont-item-wrap .tab-cont-wrap .item .txt-wrap {
    font-size: 1rem;
    top: 2rem;
    left: 2rem;
  }
  #work .cont-body .cont-item-wrap .tab-cont-wrap .item .item-title {
    font-size: 1.25rem;
    margin-top: 0.5rem;
  }
  .project-pop .prj-cont {
    margin-top: 6.4375rem;
    margin-bottom: 0;
    padding-bottom: 6.5rem;
  }
  .project-pop .prj-cont .ui-prj {
    padding-bottom: 0;
  }
  .project-pop .ui-control {
    top: 3.1rem;
    padding-top: 0;
  }
  .project-pop .ui-control button {
    width: 2rem;
    height: 2rem;
    background-image: url("../images/common/icon_mo_arrow_left.png");
  }
  .project-pop .ui-control button.ui-next {
    background-image: url("../images/common/icon_mo_arrow_right.png");
    margin-left: 3.5rem;
  }
  .project-pop .ui-close {
    width: 2rem;
    height: 2rem;
    right: 1.5rem;
  }
  .project-pop .ui-close::before, .project-pop .ui-close::after {
    width: 2rem;
    top: 0.5rem;
  }
}
#culture .section1 .cont-header::after {
  background-image: url("../images/culture/img_culture1.png");
}
#culture .section1 .cont-item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 11.75rem;
}
#culture .section1 .cont-item-wrap .item {
  max-width: 28.125rem;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#culture .section1 .cont-item-wrap .item::before {
  content: "";
  display: block;
  width: 100%;
  height: 19.625rem;
  border-radius: 4.8125rem;
  background: url("../images/culture/icon_culture1.png") center/9.3125rem 5.9375rem no-repeat #078FF7;
}
#culture .section1 .cont-item-wrap .item .item-title {
  font-family: var(--font-montserrat);
  margin-top: 2.5rem;
}
#culture .section1 .cont-item-wrap .item .item-desc {
  margin-top: 2.5rem;
}
#culture .section1 .cont-item-wrap .item .tag {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #D9D9D9;
}
#culture .section1 .cont-item-wrap .item .tag span {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  color: #068AED;
  background-color: #EAF4FB;
  padding: 0.75rem 0.875rem;
  border-radius: 1.5rem;
  margin: 0 0.25rem 0.625rem 0;
}
#culture .section1 .cont-item-wrap .item:nth-child(2)::before {
  background: url("../images/culture/icon_culture2.png") center/8.375rem 5rem no-repeat #B1E83C;
}
#culture .section1 .cont-item-wrap .item:nth-child(2) .tag span {
  color: #8FC31F;
  background-color: #F5F8EE;
}
#culture .section2 {
  position: relative;
  margin-top: 15rem;
}
#culture .section2 .content-wrap {
  overflow: hidden;
  white-space: nowrap;
}
#culture .section2 .content-wrap .txt-scroll-wrap .txt-scroll {
  display: inline-block;
  -webkit-animation: text-scroll 10s linear infinite;
          animation: text-scroll 10s linear infinite;
  margin-bottom: 12rem;
}
#culture .section2 .content-wrap .txt-scroll-wrap .txt-scroll img {
  width: auto;
  height: 12rem;
}
@-webkit-keyframes text-scroll {
  from {
    transform: translateX(20%);
    -moz-transform: translateX(20%);
    -webkit-transform: translateX(20%);
    -o-transform: translateX(20%);
    -ms-transform: translateX(20%);
  }
  to {
    transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
  }
}
@keyframes text-scroll {
  from {
    transform: translateX(20%);
    -moz-transform: translateX(20%);
    -webkit-transform: translateX(20%);
    -o-transform: translateX(20%);
    -ms-transform: translateX(20%);
  }
  to {
    transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
  }
}
#culture .section3 {
  margin-top: 5.75rem;
  background: url("../images/culture/bg_culture.png") center/cover no-repeat;
  position: relative;
}
#culture .section3::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(1.48deg, #FFFFFF -2.11%, rgba(255, 255, 255, 0) -2.1%, #FFFFFF 90.48%);
  position: absolute;
  top: 0;
  left: 0;
}
#culture .section3 .content-wrap {
  position: relative;
  z-index: 1;
}
#culture .section3 .cont-body {
  padding-top: 2.375rem;
  padding-bottom: 14.3125rem;
}
#culture .section3 .cont-item-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
#culture .section3 .cont-item-wrap .item {
  border-radius: 4.8125rem;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 4rem 4.25rem;
}
#culture .section3 .cont-item-wrap .item::before {
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  background: url("../images/culture/icon_card.png") center/cover no-repeat;
}
#culture .section3 .cont-item-wrap .item .item-title {
  font-size: 2.375rem;
  margin-top: 1.4375rem;
}
#culture .section3 .cont-item-wrap .item .welfare-list-wrap {
  margin-top: 1.75rem;
}
#culture .section3 .cont-item-wrap .item .welfare-list-wrap .list {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.375rem;
  padding-left: 2.25rem;
  position: relative;
  line-height: 1.4;
  color: #5B5B5B;
}
#culture .section3 .cont-item-wrap .item .welfare-list-wrap .list:first-child {
  margin-top: 0;
}
#culture .section3 .cont-item-wrap .item .welfare-list-wrap .list::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/culture/icon_checked.png") center/cover no-repeat;
  position: absolute;
  top: 0.25rem;
  left: 0;
}
#culture .section3 .cont-item-wrap .item .welfare-list-wrap .list .desc {
  font-weight: 400;
}
#culture .section3 .cont-item-wrap .item:nth-child(2)::before {
  background-image: url("../images/culture/icon_bag.png");
}
#culture .section3 .cont-item-wrap .item:nth-child(3)::before {
  background-image: url("../images/culture/icon_tree.png");
}
#culture .section3 .cont-item-wrap .item:nth-child(4)::before {
  background-image: url("../images/culture/icon_gift.png");
}

/*
* responsive
*/
@media (max-width: 1199.98px) {
  #culture .section1 .cont-item-wrap {
    gap: 4.75rem;
  }
}
@media (max-width: 991.98px) {
  #culture .section1 .cont-item-wrap {
    gap: 3.25rem;
  }
  #culture .section1 .cont-item-wrap .item {
    max-width: 22.125rem;
  }
  #culture .section1 .cont-item-wrap .item .item-title {
    font-size: 2rem;
  }
  #culture .section1 .cont-item-wrap .item .item-desc {
    font-size: 1.2rem;
    min-height: 5.4063rem;
  }
  #culture .section1 .cont-item-wrap .item .tag {
    margin-top: 1rem;
    padding-top: 2rem;
  }
  #culture .section1 .cont-item-wrap .item .tag span {
    font-size: 0.875rem;
  }
  #culture .section3 .cont-item-wrap .item {
    padding: 3rem 3.25rem;
    font-size: 1.875rem;
    margin-top: 1.25rem;
  }
  #culture .section3 .cont-item-wrap .item::before {
    width: 3.5rem;
    height: 3.5rem;
  }
  #culture .section3 .cont-item-wrap .item .item-title {
    font-size: 1.875rem;
  }
  #culture .section3 .cont-item-wrap .item .welfare-list-wrap .list {
    font-size: 1rem;
    padding-left: 1.5rem;
  }
  #culture .section3 .cont-item-wrap .item .welfare-list-wrap .list::before {
    width: 1rem;
    height: 1rem;
  }
}
@media (max-width: 767.98px) {
  #culture .section1 .cont-header::after {
    background-position: 50%;
  }
  #culture .section1 .cont-item-wrap {
    display: block;
  }
  #culture .section1 .cont-item-wrap .item {
    max-width: 100%;
    width: 100%;
    margin-top: 4.5rem;
  }
  #culture .section1 .cont-item-wrap .item .item-desc {
    min-height: auto;
    margin-top: 1.5rem;
  }
  #culture .section1 .cont-item-wrap .item .tag {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  #culture .section2 {
    margin-top: 8.5rem;
  }
  #culture .section2 .content-wrap .txt-scroll-wrap .txt-scroll {
    margin-bottom: 3rem;
  }
  #culture .section2 .content-wrap .txt-scroll-wrap .txt-scroll img {
    height: 6rem;
  }
  #culture .section3 {
    margin-top: 2.75rem;
  }
  #culture .section3 .cont-body {
    padding-bottom: 8.125rem;
  }
  #culture .section3 .cont-item-wrap {
    display: block;
  }
  #culture .section3 .cont-item-wrap .item {
    padding: 3.375rem 2.5rem;
  }
  #culture .section3 .cont-item-wrap .item .item-title {
    font-size: 1.375rem;
  }
  #culture .section3 .cont-item-wrap .item .welfare-list-wrap .list {
    margin-top: 0.5rem;
  }
}
@media (max-width: 575.98px) {
  #culture .section1 .cont-item-wrap .item .item-title {
    font-size: 1.375rem;
    margin-top: 1.5rem;
  }
  #culture .section1 .cont-item-wrap .item .item-desc {
    font-size: 1rem;
  }
  #culture .section1 .cont-item-wrap .item .tag span {
    font-size: 0.8125rem;
  }
  #culture .section1 .cont-body .txt-wrap .txt {
    font-size: 2.8rem;
  }
}
@media (max-width: 399.98px) {
  #culture .section1 .cont-item-wrap .item::before {
    background-size: 7.3125rem 4.9375rem;
  }
  #culture .section1 .cont-item-wrap .item:nth-child(2)::before {
    background-size: 8.375rem 5rem;
  }
}
#contact .title {
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 1.4;
}
#contact .custom-overlay {
  position: relative;
  left: 1rem;
  bottom: 3.5rem;
  border-radius: 0.375rem;
  float: left;
  border: 0;
  -webkit-box-shadow: 0px 2px 4px #B2B2B2;
          box-shadow: 0px 2px 4px #B2B2B2;
  background-color: #fff;
}
#contact .custom-overlay::after {
  content: " ";
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 1.875rem;
  left: 3.6875rem;
  background-color: #fff;
  -webkit-transform: rotate(135deg);
  -webkit-box-shadow: 3px -3px 2px 0 rgba(178, 178, 178, 0.5);
          box-shadow: 3px -3px 2px 0 rgba(178, 178, 178, 0.5);
}
#contact .custom-overlay a {
  display: block;
  text-decoration: none;
  color: #000;
  text-align: center;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: bold;
  overflow: hidden;
  background: #078FF7 url("../images/common/icon_arrow_right_white.png") no-repeat right 7px center;
  background-size: 1.35rem;
}
#contact .custom-overlay .title {
  display: block;
  text-align: center;
  background: #fff;
  margin-right: 2.1875rem;
  padding: 0.625rem 0.9375rem;
  font-size: 0.875rem;
  font-weight: bold;
}
#contact .section1 .cont-header::after {
  content: none;
}
#contact .section1 .cont-header .title-ko {
  color: #000;
  top: 0;
  margin-top: 5rem;
  max-width: 42.5rem;
}
#contact .section1 .cont-body {
  margin-top: 8.75rem;
}
#contact .section1 .map-area {
  width: 100%;
  height: 31.25rem;
  background-color: #eee;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
#contact .section1 .contact-info-wrap {
  margin-top: 8.4375rem;
  color: #111;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 4rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#contact .section1 .contact-info-wrap dl {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#contact .section1 .contact-info-wrap dl:first-child {
  margin-top: 0;
}
#contact .section1 .contact-info-wrap dl dt {
  font-family: var(--font-montserrat);
  font-weight: 800;
  min-width: 8.75rem;
  margin-right: 2.625rem;
}
#contact .section1 .contact-info-wrap dl dd {
  font-weight: 500;
  line-height: 1.3;
}
#contact .section1 .btn-direction {
  display: none;
  margin-top: 2.5rem;
}
#contact .section1 .btn-direction button {
  font-size: 1.125rem;
  font-weight: 500;
  color: #111;
  border: 1px solid #111;
  padding: 0.6875rem 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
  width: 100%;
}
#contact .section1 .btn-direction button::before {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  background: url("../images/contact/icon_tmap.png") center/cover no-repeat;
}
#contact .section1 .btn-direction button:last-child {
  margin-top: 1rem;
}
#contact .section1 .btn-direction button:last-child::before {
  background-image: url("../images/contact/icon_kakaomap.png");
}
#contact .section1 .btn-direction button:hover {
  background-color: #111;
  color: #fff;
}
#contact .section2 {
  margin-top: 8.9375rem;
  background-color: #F3F7FF;
}
#contact .section2 .content-wrap {
  padding-top: 8.4375rem;
  padding-bottom: 8.4375rem;
  position: relative;
}
#contact .section2 .contact-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
}
#contact .section2 .txt-wrap .title {
  max-width: 46.75rem;
}
#contact .section2 .img-wrap {
  width: 17.375rem;
  height: 19.75rem;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: relative;
  top: 6rem;
}
#contact .section2 .desc {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  color: #5B5B5B;
  margin-top: 2.875rem;
}
#contact .section2 .btn-go-jobposting {
  font-size: 1.5rem;
  font-weight: 500;
  color: #111;
  border: 1px solid #111;
  padding: 1.125rem 1.875rem;
  margin-top: 5rem;
}
#contact .section2 .btn-go-jobposting:hover {
  color: #fff;
  background-color: #111;
}

/*
* responsive
*/
@media (max-width: 1199.98px) {
  #contact .section2 .img-wrap {
    width: 14.375rem;
    height: 16.75rem;
  }
}
@media (max-width: 991.98px) {
  #contact .section1 .cont-header .title-ko {
    max-width: 29.5rem;
  }
  #contact .section2 .txt-wrap {
    margin-right: 0;
  }
  #contact .section2 .contact-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact .section2 .img-wrap {
    top: 0;
  }
  #contact .section2 .btn-go-jobposting {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  #contact .title {
    font-size: 1.375rem;
  }
  #contact .section1 .cont-header .title-ko {
    max-width: 22.5rem;
    margin-top: 3rem;
  }
  #contact .section1 .cont-body {
    margin-top: 3rem;
  }
  #contact .section1 .map-area {
    height: 18.75rem;
  }
  #contact .section1 .contact-info-wrap {
    gap: 3rem;
    margin-top: 2.5rem;
  }
  #contact .section1 .contact-info-wrap dl {
    font-size: 1rem;
    margin-top: 2rem;
  }
  #contact .section1 .contact-info-wrap dl dt {
    min-width: 6.75rem;
    margin-right: 0.875rem;
  }
  #contact .section1 .btn-direction {
    display: block;
  }
  #contact .section2 {
    margin-top: 3.625rem;
  }
  #contact .section2 .content-wrap {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  #contact .section2 .contact-wrap {
    gap: 3rem;
  }
  #contact .section2 .img-wrap {
    width: 10rem;
    height: 11.375rem;
  }
  #contact .section2 .desc {
    font-size: 1rem;
    margin-top: 1.875rem;
  }
  #contact .section2 .btn-go-jobposting {
    font-size: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: 3.5rem;
  }
}
@media (max-width: 575.98px) {
  #contact .section1 .cont-header .title-ko {
    font-size: 2.5rem;
    max-width: 18.5rem;
  }
  #contact .section1 .contact-info-wrap {
    gap: 2.5rem;
  }
  #contact .section1 .contact-info-wrap dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
  }
}
.body.fp-viewing-0 #fp-nav ul li a span, .body.fp-viewing-3 #fp-nav ul li a span, .body.fp-viewing-4 #fp-nav ul li a span, .body.fp-viewing-5 #fp-nav ul li a span {
  background: #fff;
}
.body.fp-viewing-0 #infyMain #header .img-logo > a > i + i, .body.fp-viewing-3 #infyMain #header .img-logo > a > i + i, .body.fp-viewing-4 #infyMain #header .img-logo > a > i + i, .body.fp-viewing-5 #infyMain #header .img-logo > a > i + i {
  opacity: 0;
  -webkit-transition: all 0.2 ease-in-out;
  transition: all 0.2 ease-in-out;
}
.body.fp-viewing-0 #infyMain #header .btn-menubar > i + i, .body.fp-viewing-3 #infyMain #header .btn-menubar > i + i, .body.fp-viewing-4 #infyMain #header .btn-menubar > i + i, .body.fp-viewing-5 #infyMain #header .btn-menubar > i + i {
  opacity: 0;
}
.body.fp-viewing-0 #infyMain .contact-us:hover svg text, .body.fp-viewing-3 #infyMain .contact-us:hover svg text, .body.fp-viewing-4 #infyMain .contact-us:hover svg text, .body.fp-viewing-5 #infyMain .contact-us:hover svg text {
  fill: #fff;
}
.body.fp-viewing-0 #infyMain .contact-us:hover .circle, .body.fp-viewing-3 #infyMain .contact-us:hover .circle, .body.fp-viewing-4 #infyMain .contact-us:hover .circle, .body.fp-viewing-5 #infyMain .contact-us:hover .circle {
  background-color: #fff;
  color: #078FF7;
}
.body.fp-viewing-0 #infyMain .contact-us svg text, .body.fp-viewing-3 #infyMain .contact-us svg text, .body.fp-viewing-4 #infyMain .contact-us svg text, .body.fp-viewing-5 #infyMain .contact-us svg text {
  fill: #078FF7;
}
.body.fp-viewing-0 #infyMain .contact-us .circle, .body.fp-viewing-3 #infyMain .contact-us .circle, .body.fp-viewing-4 #infyMain .contact-us .circle, .body.fp-viewing-5 #infyMain .contact-us .circle {
  background-color: #078FF7;
}
.body.fp-viewing-1 #infyMain .contact-us:hover svg text, .body.fp-viewing-2 #infyMain .contact-us:hover svg text {
  fill: #000;
}
.body.fp-viewing-1 #infyMain .contact-us:hover .circle, .body.fp-viewing-2 #infyMain .contact-us:hover .circle {
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
}
.body.fp-viewing-3 #infyMain .contact-us:hover svg text {
  fill: #fff;
}
.body.fp-viewing-3 #infyMain .contact-us:hover .circle {
  background-color: #fff;
  color: #000;
}
.body.fp-viewing-3 #infyMain .contact-us svg text {
  fill: #000;
}
.body.fp-viewing-3 #infyMain .contact-us .circle {
  background-color: #000;
}
.body.fp-viewing-3 #infyMain .section4 .content-wrap .txt-wrap .txt:first-child {
  left: 0;
}
.body.fp-viewing-3 #infyMain .section4 .content-wrap .txt-wrap .txt:nth-child(3) {
  right: 0;
}
.body.fp-viewing-5 #fp-nav {
  display: none;
}
.body.fp-viewing-5 .section5 .content-wrap .btn-go-work[data-aos] {
  pointer-events: all;
}
.body #fp-nav {
  right: 3.125rem;
  top: 90%;
}
.body #fp-nav ul li:last-child {
  display: none;
}

#infyMain {
  cursor: default;
}
#infyMain #header {
  background-color: transparent;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}
#infyMain #header .img-logo {
  width: 10.75rem;
  height: 2.875rem;
}
#infyMain #header .img-logo > a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
#infyMain #header .img-logo > a > i {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/common/img_infy_logo_white.png") no-repeat 50%/contain;
  left: 0;
  position: absolute;
  top: 0;
}
#infyMain #header .img-logo > a > i + i {
  background: url("../images/common/img_infy_logo.png") no-repeat 50%/contain;
}
#infyMain #header .btn-menubar {
  position: relative;
}
#infyMain #header .btn-menubar > i {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/common/icon_menubar_white.png") center/cover no-repeat;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#infyMain #header .btn-menubar > i + i {
  background: url("../images/common/icon_menu.png") center/cover no-repeat;
}
#infyMain .nav-wrap {
  top: -300%;
}
#infyMain .nav-wrap .nav-header #header .img-logo {
  width: 10.2rem;
  height: 2.2rem;
}
#infyMain .nav-wrap.open {
  top: 0;
}
#infyMain #main {
  padding-top: 0;
}
#infyMain #main section {
  height: 100vh;
}
#infyMain .contact-us {
  font-family: var(--font-montserrat);
  font-weight: 600;
  position: fixed;
  top: 12rem;
  right: 3.75rem;
  width: 100%;
  margin: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 10.625rem;
  z-index: 9;
}
#infyMain .contact-us::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
#infyMain .contact-us:hover svg text {
  fill: #fff;
}
#infyMain .contact-us:hover .circle {
  background-color: #000;
  color: #fff;
}
#infyMain .contact-us .back {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  -webkit-animation: rotate_image 10s infinite linear;
          animation: rotate_image 10s infinite linear;
}
#infyMain .contact-us svg text {
  fill: #000;
  font-size: 1.75rem;
  font-weight: 800;
}
#infyMain .contact-us .circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60%;
  height: 60%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 1.0625rem;
  color: #fff;
  border-radius: 100%;
  line-height: 0.9;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-property: color, background;
  transition-property: color, background;
  background-color: #000;
}
#infyMain .section1 {
  width: 100%;
  background-color: #222;
  padding: 0 !important;
  overflow: hidden;
  position: relative;
}
#infyMain .section1::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}
#infyMain .section1 #mainVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-color: black;
  background-position: center center;
  background-size: contain;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 3;
}
#infyMain .section1 #mainVideo::-webkit-media-controls-fullscreen-button, #infyMain .section1 #mainVideo::-webkit-media-controls-play-button, #infyMain .section1 #mainVideo::-webkit-media-controls-timeline, #infyMain .section1 #mainVideo::-webkit-media-controls-current-time-display, #infyMain .section1 #mainVideo::-webkit-media-controls-mute-button, #infyMain .section1 #mainVideo::-webkit-media-controls-volume-slider {
  display: none;
}
#infyMain .section1 .content-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
#infyMain .section1 .txt-fade {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -33%);
          transform: translate(-50%, -33%);
}
#infyMain .section1 .txt-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
}
#infyMain .section1 .txt-wrap:last-child {
  position: relative;
  left: -3.9rem;
  margin-top: 5rem;
}
#infyMain .section1 .txt-wrap img {
  height: 8.125rem;
}
#infyMain .section1 .txt-wrap img.continue {
  width: 43.3425rem;
}
#infyMain .section1 .txt-wrap img.forever {
  width: 38.7369rem;
}
#infyMain .section1 .txt-wrap img.without {
  width: 39.7587rem;
}
#infyMain .section1 .txt-wrap img.limit {
  width: 26.9625rem;
}
#infyMain .section2 {
  position: relative;
}
#infyMain .section2 .img-rotate {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
}
#infyMain .section2 .img-rotate img {
  width: 30.9375rem;
  height: 27.5rem;
  -webkit-animation: rotate_image 3s linear infinite;
          animation: rotate_image 3s linear infinite;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
#infyMain .section2 .txt-scroll {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#infyMain .section2 .txt-scroll img {
  -webkit-animation: text-scroll 10s linear infinite;
          animation: text-scroll 10s linear infinite;
  width: auto;
  height: 12rem;
}
#infyMain .section3 {
  position: relative;
}
#infyMain .section3 .bg-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 48.875rem;
  height: 48.875rem;
}
#infyMain .section3 .content-wrap {
  color: #111;
  text-align: center;
  width: 100%;
  height: 100vh;
}
#infyMain .section3 .content-wrap .txt-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
#infyMain .section3 .content-wrap h2 {
  font-size: 5.875rem;
  font-weight: 700;
  line-height: 1.3;
  max-width: 57rem;
  width: 100%;
  margin: 0 auto;
  word-break: keep-all;
}
#infyMain .section3 .content-wrap h2 em {
  color: #078FF7;
  font-style: normal;
}
#infyMain .section3 .content-wrap .line {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  left: 50%;
  margin-top: 1.125rem;
}
#infyMain .section3 .content-wrap .desc {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 2.125rem;
  word-break: keep-all;
}
#infyMain .section4 {
  position: relative;
  background: url("../images/main/bg_section4.png") center/cover no-repeat;
}
#infyMain .section4 .content-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  word-break: keep-all;
}
#infyMain .section4 .content-wrap h2 {
  font-size: 5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  width: 100%;
  max-width: 72.5rem;
  text-align: center;
  margin: 0 auto;
}
#infyMain .section4 .content-wrap h2 em {
  color: #BCF442;
  font-style: normal;
}
#infyMain .section4 .content-wrap .txt-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
}
#infyMain .section4 .content-wrap .txt-wrap .txt {
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 15.125rem;
  height: 15.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
#infyMain .section4 .content-wrap .txt-wrap .txt:first-child {
  left: 6%;
  -webkit-transition: opacity, left;
  transition: opacity, left;
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
#infyMain .section4 .content-wrap .txt-wrap .txt:nth-child(3) {
  right: 6%;
  -webkit-transition: opacity, right;
  transition: opacity, right;
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
#infyMain .section4 .content-wrap .txt-wrap .txt.show:first-child {
  left: 0;
}
#infyMain .section4 .content-wrap .txt-wrap .txt.show:nth-child(3) {
  right: 0;
}
#infyMain .section4 .content-wrap .txt-wrap .txt span {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  display: block;
  word-break: keep-all;
}
#infyMain .section4 .content-wrap .txt-wrap .txt span:first-child {
  font-family: var(--font-montserrat);
  font-size: 1.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
#infyMain .section4 .content-wrap .desc {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  margin-top: 4rem;
}
#infyMain .section5 {
  position: relative;
  background: url("../images/main/bg_section5.png") center/cover no-repeat;
  overflow: hidden;
}
#infyMain .section5 .content-wrap {
  color: #fff;
  line-height: 1.4;
  width: 100%;
  text-align: center;
  position: relative;
}
#infyMain .section5 .content-wrap .txt-wrap {
  position: absolute;
  width: 100%;
  z-index: 1;
  padding: 0 1.5rem;
  top: -7rem;
  word-break: keep-all;
}
#infyMain .section5 .content-wrap p {
  font-size: 1.75rem;
  font-weight: 500;
}
#infyMain .section5 .content-wrap h2 {
  font-family: var(--font-montserrat);
  font-size: 6.25rem;
  font-weight: 700;
}
#infyMain .section5 .content-wrap .btn-go-work {
  font-family: var(--font-montserrat);
  font-size: 1.5rem;
  font-weight: 600;
  width: 9.375rem;
  height: 9.375rem;
  line-height: 9.375rem;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-block;
  margin-top: 3rem;
}
#infyMain .section5 .content-wrap .btn-go-work::after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 0.5rem;
  background: url("../images/common/icon_arrow_right_sm.png") center/cover no-repeat;
  position: relative;
  top: -0.375rem;
  left: 0.375rem;
  -webkit-transform: left 1s ease-in-out;
          transform: left 1s ease-in-out;
}
#infyMain .section5 .content-wrap .btn-go-work:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#infyMain .section5 .content-wrap .btn-go-work:hover::after {
  left: 0.5rem;
}
#infyMain .section5 .content-wrap .img-project-wrap .img-project {
  pointer-events: none;
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  display: grid;
  grid-template-columns: repeat(50, 2%);
  grid-template-rows: repeat(50, 2%);
  opacity: 1;
  position: relative;
}
#infyMain .section5 .content-wrap .img-project-wrap .img-project img {
  will-change: transform;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
}
#infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(1) img {
  width: 22.7825rem;
  height: 16.1875rem;
  grid-area: 1/-33/36/68;
  top: -28rem;
}
#infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(2) img {
  width: 13.625rem;
  height: 19.5rem;
  grid-area: 1/-1/17/33;
  top: -25rem;
}
#infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(3) img {
  width: 24.25rem;
  height: 27.1875rem;
  grid-area: 1/36/14/35;
  top: -10rem;
}
#infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(4) img {
  width: 19.1875rem;
  height: 19.1875rem;
  grid-area: 10/31/32/100;
  top: 7rem;
}
#infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(5) img {
  width: 14.4375rem;
  height: 14.4375rem;
  grid-area: 43/20/51/10;
  top: -21rem;
}
#infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(6) img {
  width: 23.8125rem;
  height: 31.5rem;
  grid-area: 20/46/28/6;
  top: -13rem;
}
#infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(7) img {
  width: 28.5625rem;
  height: 20.0625rem;
  grid-area: 20/15/35/12;
  top: 10rem;
}

.c-scrollbar_thumb {
  display: none;
}

@-webkit-keyframes rotate_image {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate_image {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes text-scroll {
  from {
    transform: translateX(20%);
    -moz-transform: translateX(20%);
    -webkit-transform: translateX(20%);
    -o-transform: translateX(20%);
    -ms-transform: translateX(20%);
  }
  to {
    transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
  }
}
div[data-scroll-section] {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*
* responsive
*/
@media (max-width: 1499.98px) {
  #infyMain .section3 .content-wrap h2 {
    font-size: 4.5rem;
  }
  #infyMain .section3 .content-wrap .line {
    height: 3rem;
  }
  #infyMain .section3 .content-wrap .desc {
    font-size: 1.25rem;
  }
  #infyMain .section4 .content-wrap h2 {
    font-size: 4.5rem;
  }
  #infyMain .section4 .content-wrap .txt-wrap {
    margin-top: 2rem;
  }
  #infyMain .section4 .content-wrap .txt-wrap .txt {
    width: 12rem;
    height: 12rem;
  }
  #infyMain .section4 .content-wrap .txt-wrap .txt span {
    font-size: 1.3rem;
  }
  #infyMain .section4 .content-wrap .txt-wrap .txt span:first-child {
    font-size: 1.25rem;
  }
  #infyMain .section4 .content-wrap .desc {
    font-size: 1.25rem;
    margin-top: 2.5rem;
  }
}
@media (max-width: 1399.98px) {
  #infyMain .section1 .txt-wrap {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  #infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(1) img {
    width: 20.7825rem;
    height: 14.1875rem;
  }
  #infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(2) img {
    width: 11.625rem;
    height: 16.5rem;
    top: -22rem;
  }
  #infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(3) img {
    width: 22.25rem;
    height: 25.1875rem;
    grid-area: 1/36/14/33;
    top: -10rem;
  }
  #infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(6) img {
    width: 18.8125rem;
    height: 26.5rem;
    grid-area: 20/46/2/5;
    top: -9rem;
  }
}
@media (max-width: 1199.98px) {
  #infyMain .section1 .txt-wrap {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  #infyMain .section1 .txt-wrap:last-child {
    left: -2.4rem;
  }
  #infyMain .section3 .content-wrap h2 {
    font-size: 3.875rem;
  }
  #infyMain .section3 .content-wrap .line {
    height: 3rem;
  }
  #infyMain .section3 .content-wrap .desc {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
  #infyMain .section4 .content-wrap h2 {
    font-size: 3.5rem;
  }
  #infyMain .section4 .content-wrap .txt-wrap {
    gap: 1.5rem;
  }
  #infyMain .section4 .content-wrap .txt-wrap .txt {
    width: 10rem;
    height: 10rem;
  }
  #infyMain .section4 .content-wrap .txt-wrap .txt span {
    font-size: 0.875rem;
  }
  #infyMain .section4 .content-wrap .txt-wrap .txt span:first-child {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  #infyMain .section4 .content-wrap .desc {
    font-size: 1rem;
    margin-top: 2.5rem;
    line-height: 1.6;
  }
}
@media (max-width: 991.98px) {
  #infyMain .contact-us {
    top: 12rem;
    width: 7.625rem;
    height: 7.625rem;
  }
  #infyMain .contact-us .circle {
    font-size: 0.8125rem;
    line-height: 1.1;
  }
  #infyMain .section3 .content-wrap .line {
    height: 3rem;
  }
  #infyMain .section3 .content-wrap .desc {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
  #infyMain .section5 .content-wrap .txt-wrap p {
    font-size: 1.25rem;
  }
  #infyMain .section5 .content-wrap .txt-wrap h2 {
    font-size: 3.375rem;
    line-height: 1.1;
    margin-top: 0.875rem;
  }
  #infyMain .section5 .content-wrap .btn-go-work {
    width: 6.75rem;
    height: 6.75rem;
    line-height: 6.75rem;
    font-size: 1rem;
  }
  #infyMain .section5 .content-wrap .btn-go-work::after {
    width: 1rem;
    top: -0.25rem;
  }
}
@media (max-width: 767.98px) {
  .body.fp-viewing-1 .contact-us, .body.fp-viewing-2 .contact-us, .body.fp-viewing-3 .contact-us, .body.fp-viewing-4 .contact-us, .body.fp-viewing-5 .contact-us {
    display: none;
  }
  .body.fp-viewing-5 #header {
    display: none;
  }
  .body #fp-nav {
    display: none;
  }
  #infyMain .contact-us {
    top: 9.5rem;
    right: 1.5rem;
    width: 7.875rem;
    height: 7.875rem;
  }
  #infyMain #header .img-logo {
    width: 8.3125rem;
    height: 1.75rem;
  }
  #infyMain .section1 .txt-fade {
    width: 100%;
  }
  #infyMain .section1 .txt-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #infyMain .section1 .txt-wrap:last-child {
    left: 0;
    margin-top: 0;
    top: -2rem;
  }
  #infyMain .section2 {
    overflow-x: hidden;
  }
  #infyMain .section2 .img-rotate img {
    width: 16.9375rem;
    height: 15.5rem;
  }
  #infyMain .section2 .txt-scroll img {
    height: 6rem;
  }
  #infyMain .section3 .bg-gradient {
    width: 20.875rem;
    height: 20.875rem;
  }
  #infyMain .section3 .content-wrap .txt-wrap {
    padding: 0 1.5rem;
  }
  #infyMain .section3 .content-wrap .line {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  #infyMain .section3 .content-wrap h2 {
    font-size: 2.5rem;
  }
  #infyMain .section4 .content-wrap {
    padding: 0 1.5rem;
  }
  #infyMain .section4 .content-wrap h2 {
    font-size: 2.5rem;
  }
  #infyMain .section4 .content-wrap .txt-wrap {
    gap: 0.5rem 1.5rem;
  }
  #infyMain .section4 .content-wrap .txt-wrap .txt {
    width: 6.75rem;
    height: 6.75rem;
  }
  #infyMain .section4 .content-wrap .txt-wrap .txt span {
    font-size: 0.8125rem;
    position: relative;
    top: 0.625rem;
  }
  #infyMain .section4 .content-wrap .txt-wrap .txt span:first-child {
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
  }
  #infyMain .section4 .content-wrap .txt-wrap .txt span:last-child {
    min-height: 2rem;
  }
  #infyMain .section4 .content-wrap .txt-wrap .txt:nth-child(2) span:last-child {
    max-width: 5.625rem;
    margin: 0 auto;
  }
  #infyMain .section5 {
    overflow: hidden;
  }
  #infyMain .section5 .content-wrap .btn-go-work {
    border: none;
    background-color: #fff;
    color: #078FF7;
    opacity: 0.8;
  }
  #infyMain .section5 .content-wrap .btn-go-work::after {
    background-image: url("../images/main/icon_arrow_right_color.png");
  }
}
@media (max-width: 575.98px) {
  #infyMain .section1 .txt-wrap {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
  }
  #infyMain .section1 .txt-wrap:last-child {
    top: -8rem;
  }
  #infyMain .section4 .content-wrap .txt-wrap {
    gap: 0.5rem;
  }
  #infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(1) img {
    width: 10.7825rem;
    height: 7.1875rem;
    grid-area: 1/-1/36/14;
    top: -15rem;
  }
  #infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(2) img {
    width: 6.5rem;
    height: 9rem;
    grid-area: 1/-1/17/34;
    top: -13rem;
  }
  #infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(3) img {
    width: 11.4375rem;
    height: 14.25rem;
    grid-area: 1/31/14/33;
    top: 2rem;
  }
  #infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(4) img {
    width: 9.625rem;
    height: 9.625rem;
    grid-area: 10/26/32/100;
    top: 11rem;
  }
  #infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(5) img {
    width: 6.6875rem;
    height: 6.6875rem;
    grid-area: 43/5/51/10;
    top: -13rem;
  }
  #infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(6) img {
    width: 10.6875rem;
    height: 13.8125rem;
    grid-area: 20/26/2/5;
    top: 0;
  }
  #infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(7) img {
    width: 13.5625rem;
    height: 13.0625rem;
    grid-area: 20/28/35/8;
    top: 6rem;
  }
}
@media (max-width: 379.98px) {
  #infyMain .section4 .content-wrap {
    -webkit-transform: translate(-50%, -45%);
            transform: translate(-50%, -45%);
  }
  #infyMain .section4 .content-wrap h2 {
    line-height: 1.3;
  }
  #infyMain .section4 .content-wrap .txt-wrap {
    margin-top: 1.5rem;
  }
  #infyMain .section4 .content-wrap .desc {
    margin-top: 1.5rem;
    line-height: 1.4;
  }
}
@media (max-height: 690.98px) and (min-height: 690.98px) {
  #infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(1) img {
    width: 20.7825rem;
    height: 14.1875rem;
    top: -16rem;
  }
  #infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(2) img {
    width: 10.625rem;
    height: 15.5rem;
    top: -14rem;
  }
  #infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(4) img {
    width: 16.1875rem;
    height: 16.1875rem;
    top: 5rem;
  }
  #infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(5) img {
    width: 11.4375rem;
    height: 11.4375rem;
    top: -12rem;
  }
  #infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(6) img {
    width: 16.8125rem;
    height: 25.5rem;
    top: -7rem;
  }
  #infyMain .section5 .content-wrap .img-project-wrap .img-project:nth-child(7) img {
    width: 23.5625rem;
    height: 15.0625rem;
    top: 5rem;
  }
}
@media (max-height: 1082.98px) and (max-height: 690.98px) {
  #infyMain .section5 .content-wrap h2 {
    font-size: 5.6rem;
  }
}/*# sourceMappingURL=style.css.map */