/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-decoration: none;
    color: #000;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    font-family: "Pretendard Variable", Pretendard, sans-serif;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
.mo-br {
    display: none;
}
.pc-img {
    display: block;
}
.m-img {
    display: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
.wrap {
    overflow: hidden;
    position: relative;
    user-select: none;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 106px;
    
    z-index: 50;
    transition: all ease .3s;
    background-color: #fff;
}
.header .header_inner {
    max-width: 1536px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 999;
}
.header .header_inner .nav_wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease; 
}
.header .header_inner .nav_wrap .nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 100%;
}
.header .header_inner .nav_wrap .nav .nav_list {
    width: 15%;
    text-align: center;
    padding: 42px 0;
}
.header .header_inner .nav_wrap .nav .sub_link:hover {
    color: rgb(153, 153, 248);
    
}
.header .header_inner .nav_wrap .nav .nav_list:hover a img {
    filter: invert(62%) sepia(72%) saturate(1320%) hue-rotate(201deg) brightness(101%) contrast(88%);
}
.header .header_inner .nav_wrap .nav .nav_list:hover a {
    color: rgb(153, 153, 248);
}
.header .header_inner .nav_wrap .nav .nav_list a {
    color: #000;
    font-size: 22px;
    font-weight: bold;
}
.header .header_inner .nav_wrap .nav .nav_list a img{
    margin-left: 3px;
}
.header .header_inner .nav_wrap .nav .sub_link {
    position: relative;
    color: #000;
    font-size: 22px;
    font-weight: bold;
}
.header .header_inner .nav_wrap .nav .sub_link .sub_nav_wrap {
    
    width: 100%;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header .header_inner .nav_wrap .nav .sub_link .sub_nav_wrap > li {
    padding: 15px;
}
.header .header_inner .nav_wrap .nav .sub_link .sub_nav_wrap > li:hover a {
    
    color: rgb(153, 153, 248);
}
.header .header_inner .nav_wrap .nav .sub_link .sub_nav_wrap > li a {
    color: #000;

}
.header .header_inner .header_link {
    display: flex;
    gap: 20px;
}
.main-visual {
    margin-top: 105px;
}
.main-visual .main-bg {
    background-image: -webkit-linear-gradient( 90deg, rgb(207,239,246,.2) 0%, rgb(241,203,255,.3) 100%);
    height: calc(100vh - 465px);
    padding: 180px 0;
    position: relative;
}
.main-visual .main-bg .aside-bg {
    background-image: url(/images/peoply/Main/main-left-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 107%;
    width: 35%;
    opacity: .2;
    position: absolute;
    left: -100px;
    top: -60px;
    z-index: -1;
}

.main-visual .section-main .inner{
    margin: 0 auto;
    max-width: 900px;
}
.main-visual .section-main .inner .main-title {
    font-size: 80px;
    font-weight: bold;
    color: #000;
    text-align: center;
}
.main-visual .section-main .inner .main-title .gradation-color {
    color: rgb(153,153,248);
    color: linear-gradient(90deg, rgba(153,153,248,1) 0%, rgba(164,203,251,1) 100%);
}
.main-visual .section-main .inner .main-info {
    text-align: center;
    font-size: 31px;
    margin: 80px 0 95px;
    line-height: 50px;
}
.main-visual .section-main .inner .btn-wrap {
    display: flex;
    justify-content: space-evenly;
}
.main-visual .section-main .inner .btn-wrap a {
    padding: 14px 60px;
    border-radius: 40px;
    font-weight: bold;
    border: none;
    color: #fff;
    font-size: 20px;
}
.main-visual .section-main .inner .btn-wrap a img {
    filter: brightness(3);
    vertical-align: middle;
    margin-bottom: 3px;
}
.main-visual .section-main .inner .btn-wrap .right {
    background-image: -webkit-linear-gradient( 90deg, rgb(153,204,255) 0%, rgb(153,179,255) 14%, rgb(153,153,255) 100%);
}
.main-visual .section-main .inner .btn-wrap .left {
    background-image: -webkit-linear-gradient( 90deg, rgb(153,153,255) 0%, rgb(153,179,255) 13%, rgb(153,204,255) 100%);
} 
.main-visual .section-wrap {
    height: calc(100vh - 105px);
}
.main-visual .section-wrap .main-title {
    padding-top: 114px;
    margin-bottom: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to top, rgba(153,153,248,1) 0%, rgba(164,203,251,1) 100%);
    color: transparent;
}

.main-visual .section-wrap .solution-wrap {
    display: flex;
    justify-content: center;
    width: 750px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 20px;
}
.main-visual .section-wrap .solution-wrap li {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 0 20px;
    color: #969696;
    border-right: 1px solid #b6b6b6;
    cursor: pointer;
}
.main-visual .section-wrap .solution-wrap li:last-child {
    border-right: 0;
}
  .main-visual .section-wrap .solution-wrap li.on {
    color: #222;
  }
  .main-visual .section-wrap .mySwiper {
    position: relative;
    height: 555px;
    background-color: #ebf9ff;
    
  }
  .main-visual .section-wrap .mySwiper .swiper-wrapper .box-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 40px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    width: 81%;
    overflow: hidden;
  }
  .main-visual .section-wrap .mySwiper .swiper-wrapper .swiper-slide {
    border-right: 0;
  }
   .main-visual .section-wrap .mySwiper .swiper-wrapper .left-box{
    padding: 107px 55px;
    text-align: left;
    color: #000;
}
.main-visual .section-wrap .mySwiper .swiper-wrapper .left-box h1 {
    font-weight: bold;
    font-size: 34px;
    /* font-size: 30px; */
  }
  .main-visual .section-wrap .mySwiper .swiper-wrapper .left-box > p {
    font-size: 20px;
    line-height: 36px;
    margin: 75px 0 60px;
    font-weight: bold;
  }
  .main-visual .section-wrap .mySwiper .swiper-wrapper .left-box a  {
    font-size: 20px;
  }
  .main-visual .section-wrap .mySwiper .swiper-wrapper .left-box a > img{
    width: 24px;
  }
  .main-visual .section-wrap .mySwiper .swiper-wrapper .right-box {
    display: flex;
    align-items: center;
    width: 50%;
    margin-right: 30px;
  }
  .main-visual .section-wrap .mySwiper .swiper-wrapper .right-box > img {
    width: 100%;
    height: 100%;
    height: 400px;
    object-fit: contain;
  }
  .button-next,
  .button-prev {
      width: 50px;
      height: 50px;
      background-image: url('/images/peoply/arrow-right.png'); /* 다음 버튼 이미지 경로 */
      background-size: cover;
      position: absolute;
      z-index: 2;
      top: 50%;
      cursor: pointer;
    }
  .button-next {
    right: 8%;
  }
  .button-prev {
      background-image: url('/images/peoply/arrow-left.png'); 
      left: 8%;
      top: 50%;
  }
.section-main .gradation-bg {
    background-image: -moz-linear-gradient( 90deg, rgb(229,246,250,.3) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(229,246,250,.3) 0%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(229,246,250) 0%, rgb(255,255,255) 100%);

}
.section-main .gradation-bg .inner {
    max-width: 1280px;
    margin: 0 auto;
}
.section-main .section-wrap .sap-title {
    padding-top: 150px;
    margin-bottom: 80px;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #005eb8;
    line-height: 52px;
}
.section-main .section-wrap .sap-box {
    display: flex;
    justify-content: space-between;
}
.section-main .section-wrap .sap-box .sap-list {
    border: 3px solid #f3f5f6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 48px;
    width: 22%;
    text-align: center;
    background: #fff;
    border-radius: 30px;
}
.section-main .section-wrap .sap-box .sap-list > p {
    color: #000;
    font-size: 20px;
    line-height: 40px;
    font-weight: bold;
}
.section-main .section-wrap .sap-box .sap-list .sapimg-box {
    margin-bottom: 60px;
}
.section-main .section-wrap .sap-box .sap-list .sapimg-box .sap-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 290px;
    background: #000;
    border-radius: 10px;
    height: 86px;
    margin-bottom: 10px;
}
.section-main .section-wrap .sap-box .sap-list .sapimg-box img {
    width: 50%;
}
.section-main .section-wrap .sap-box .sap-list .sapimg-box .sap-flex img {
    width: 100px;
}
.section-main .section-wrap .sap-box .sap-list .sapimg-box .sap-flex span {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}
.section-main .section-wrap .sap-box .sap-list .sap-link {
    color: #005eb8;
}
.section-main .section-wrap .sap-box .sap-list .sap-link > img {
    width: 10%;
    padding-right: 10px;
    filter: opacity(0.5) drop-shadow(0 0 0 #005eb8);
}
.section-main .section-wrap .ai-inner {
    max-width: 980px;
    margin: 0 auto;
}
.section-main .section-wrap .ai-inner .ai-title {
    font-size: 40px;
    font-weight: bold;
    padding: 160px 0 30px;

    text-align: center;
    color: rgb(153,153,248);
    color: linear-gradient(90deg, rgba(153,153,248,1) 0%, rgba(164,203,251,1) 100%);
}
.section-main .section-wrap .ai-inner img {
    width: 100%;
}
.service-main {
    padding-top: 106px;
    padding-bottom: 60px;
}
.service-main .banner-box{
    background-image: -moz-linear-gradient( 90deg, rgb(207,239,246) 0%, rgb(241,203,255) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(207,239,246,.5) 0%, rgb(241,203,255,.5) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(207,239,246) 0%, rgb(241,203,255) 100%);
}
.service-main .banner-box {
    text-align: center;
    font-weight: bold;
}
.service-main .banner-box .title-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 0 60px;
}
.service-main .banner-box .title-box > img {
    width: 20%;
}
.service-main .banner-box .title-box .service-title {
    font-size: 80px;
    font-weight: bold;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to top, rgba(153,153,248,1) 0%, rgba(164,203,251,1) 100%);
    color: transparent;
}
.service-main .banner-box .service-p {
    font-size: 24px;
}
.service-main .banner-box .service-p br {
    display: none;
}
.service-main .banner-box a {
    padding: 10px 70px;
    border: 2px solid #666;
    border-radius: 40px;
    font-size: 20px;
    display: inline-block;
    margin: 50px 0;
}
.service-main .service-info {
    max-width: 1350px;
    margin: 0 auto;
}
.service-main .service-info .img-box {
    position: relative;
    overflow: hidden;
    padding: 50px 20px 150px;
}
.service-main .service-info .img-box .box01 {
    position: relative;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 1px 0.4px 3.6px rgba(0, 94, 184, 0.1);
    padding: 30px 30px 30px 90px;
    width: 41%;
    border-radius: 30px;
    margin-bottom: 50px;
    line-height: 30px;
}
.service-main .service-info .img-box .box01::before {
    content: '';
    display: block;
    width: 90px;
    height: 90px;
    position: absolute;
    top: -35px;
    left: 15px;
    background-image: url(/images/peoply/employment/img02.png);
    background-repeat: no-repeat;
    background-size: 100%;
}
#service02 .service-info .img-box .box01::before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    top: -35px;
    left: 15px;
    background-image: url(/images/peoply/employment/icon-img01.png);
    background-repeat: no-repeat;
    background-size: 100%;
}
.service-main .service-info .img-box .box01 p {
    font-size: 20px;
}
.service-main .service-info .img-box .box02 p {
    font-size: 20px;
}
.service-main .service-info .img-box .box01 .str {
    color: #005eb8;
}
.service-main .service-info .img-box .box02 .str {
    color: #005eb8;
}
.service-main .service-info .img-box .box02 {
    position: relative;
    float: right;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 1px 0.4px 3.6px rgba(0, 94, 184, 0.1);
    text-align: right;
    padding: 30px 90px 30px 30px;
    width: 41%;
    border-radius: 30px;
    line-height: 30px;
}
.service-main .service-info .img-box .box02::after {
    content: '';
    display: block;
    width: 90px;
    height: 90px;
    top: -35px;
    right: 15px;
    position: absolute;
    background-image: url(/images/peoply/employment/img03.png);
    background-repeat: no-repeat;
    background-size: 100%;
}
#service02 .service-info .img-box .box02 {
    width: 50%;
}
#service02 .service-info .img-box .box02::after {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    top: -35px;
    right: 15px;
    position: absolute;
    background-image: url(/images/peoply/employment/icon-img02.png);
    background-repeat: no-repeat;
    background-size: 100%;
}
.service-main .service-info .grid-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-main .service-info .grid-box .grid-list {
    display: flex;
    border-radius: 20px;
}
.service-main .service-info .grid-box .grid-list:nth-child(1) {
    grid-column: 1 / 4;
    background-color: #ebebff;
}
.service-main .service-info .grid-box .grid-list .grid-left-box {
    position: relative;
    width: 50%;
    padding: 30px 0px 20px 20px;
}
.service-main .service-info .grid-box .grid-list .grid-left-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 65%;
    right: 0;
    width: 260px;
    height: 80px;
    background-image: url(/images/peoply/employment/img04.png);
    background-repeat: no-repeat;
    background-size: 100%;
}
.service-main .service-info .grid-box .grid-list .grid-left-box .grid-title {
    font-size: 20px;
    margin: 50px 0 30px;
    line-height: 25px;
}
.service-main .service-info .grid-box .grid-list .grid-left-box .grid-title p br {
    display: none;
}
.service-main .service-info .grid-box .grid-list .grid-left-box > h1 {
    font-size: 28px;
    font-weight: bold;
}
.service-main .service-info .grid-box .grid-list .grid-left-box > h1 br {
    display: none;
}
.service-main .service-info .grid-box .grid-list .grid-right-box {
    width: 50%;
    display: flex;
    flex-direction: column;
    font-size: 0;
}
.service-main .service-info .grid-box .grid-list .grid-right-box .sap-link {
    color: #005eb8;
    font-size: 16px;
    font-weight: bold;
    text-align: right;
    display: inline-block;
    margin: 15px 20px 15px 0;
}
.service-main .service-info .grid-box .grid-list .grid-right-box .sap-link > img {
    width: 3%;
    padding-right: 10px;
    filter: opacity(0.5) drop-shadow(0 0 0 #005eb8);
}
.service-main .service-info .grid-box .grid-list .grid-right-box .grid-right-img {
    width: 100%;
    height: 100%;
}
.service-main .service-info .grid-box .grid-list:nth-child(2) {
    background-color: #f2fafc;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 30px;
    padding-left: 30px;
    width: 590px;
    overflow: hidden;
} 
.service-main .service-info .grid-box .grid-list .second-title {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: bold;
}
.service-main .service-info .grid-box .grid-list .grid-wrap {
    display: flex;
}
.service-main .service-info .grid-box .grid-list .grid-wrap .left-title {
    width: 50%;
    display: flex;
    font-size: 20px;
    flex-direction: column;
    justify-content: space-between;
}
.service-main .service-info .grid-box .grid-list .grid-wrap .right-img {
    width: 50%;
}
.service-main .service-info .grid-box .grid-list .grid-wrap .right-img > img {
    width: 100%;
}
.service-main .service-info .grid-box .grid-list:nth-child(3) {
    background-image: -moz-linear-gradient( 90deg, rgb(153,204,255) 0%, rgb(77,102,128) 59%, rgb(0,0,0) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(153,204,255) 0%, rgb(77,102,128) 59%, rgb(0,0,0) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(153,204,255) 0%, rgb(77,102,128) 59%, rgb(0,0,0) 100%);
    padding: 30px 40px 10px 40px;
    flex-direction: column;
    justify-content: space-between;
}
.service-main .service-info .grid-box .grid-list:nth-child(3) .third-title {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
}
.service-main .service-info .grid-box .grid-list:nth-child(3) img {
    width: 60%;
}
.service-main .service-info .grid-box .grid-list:nth-child(4) {
    background: #f2fafc;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 20px 0 20px;
}
.service-main .service-info .grid-box .grid-list:nth-child(4) img {
    width: 45%;
}
.service-main .service-info .grid-box .grid-list:nth-child(4) .fourth-title {
    font-size: 20px;
    line-height: 30px;
}
#service02 .flex-box {
    display: flex;
    justify-content: space-between;
}
#service02 .flex-box .flex-list:nth-child(1) {
    background-color: rgba(204, 204, 254, 0.4);
    border-radius: 20px;
    width: 60%;
    padding-top: 40px;
    padding-left: 20px;
    overflow: hidden;
}
#service02 .flex-box .flex-list:nth-child(1) .flex-img-box {
    display: flex;
    justify-content: flex-end;
}
#service02 .flex-box .flex-list .flex-title {
    font-size: 28px;
    font-weight: bold;
    padding-bottom: 40px;
}
#service02 .flex-box .flex-list .flex-info {
    font-size: 17px;
    margin-bottom: 50px;
}
#service02 .flex-box .flex-list:nth-child(2) {
    display: flex;
    flex-direction: column;
    width: 36%;
    justify-content: space-between;
}

#service02 .flex-box .flex-list:nth-child(2) .sub-flex-box01 .sap-link img {
    
}
#service02 .flex-box .flex-list:nth-child(2) .sub-flex-box01 {
    margin-bottom: 10px;
}
#service02 .flex-box .flex-list:nth-child(2) .sub-flex-box02 {
    background-image: -moz-linear-gradient( 90deg, rgb(0,0,0) 0%, rgb(168,166,247) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(0,0,0) 0%, rgb(168,166,247) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(0,0,0) 0%, rgb(168,166,247) 100%);
    border-radius: 20px;
    padding: 30px 15px 20px 25px;
}
#service02 .flex-box .flex-list:nth-child(2) .sub-flex-box02 p {
    font-size: 17px;
    color: #fff;
    margin-bottom: 50px;
    line-height: 24px;
}
#service02 .flex-box .flex-list:nth-child(2) .sub-flex-box02 span {
    font-size: 20px;
    margin-right: 15px;
    color: #fff;
}
#service03 .flex-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
#service03 .flex-box:last-child {
    margin-bottom: 0;
}
#service03 .flex-box .flex-list {
    display: flex;
}
#service03 .flex-box .flex-list:nth-child(1) {
    
    width: 43%;
    justify-content: space-between;
    border-radius: 20px;
    background-image: -moz-linear-gradient( 90deg, rgb(0,0,0) 0%, rgb(168,166,247) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(0,0,0) 0%, rgb(168,166,247) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(0,0,0) 0%, rgb(168,166,247) 100%);
}
#service03 .flex-box .flex-list:nth-child(1) .flex-left {
    padding: 20px 0 20px 25px;
}
#service03 .flex-box .flex-list:nth-child(1) .flex-left .flex-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}
#service03 .flex-box .flex-list:nth-child(1) .flex-info {
    color: #fff;
    font-size: 18px;
    margin: 50px 0 80px;
    line-height: 26px;
}
#service03 .flex-box .flex-list:nth-child(1) .flex-right {
    text-align: right;
    padding-top: 20px;
}
#service03 .flex-box .flex-list:nth-child(1) .flex-right > img{
    width: 100%;
    height: 100%;
}
#service03 .flex-box .flex-list:nth-child(2) {
    width: 54%;
    border-radius: 20px;
    background: #ebebff;
    overflow: hidden;
}
#service03 .flex-box .flex-list:nth-child(2) .flex-left {
    flex: 1;
    padding-top: 20px;
    padding-left: 20px;
}
#service03 .flex-box .flex-list:nth-child(2) .flex-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 20px;
    padding-right: 20px;
    gap: 10px;
}
#service03 .flex-box .flex-list:nth-child(2) .flex-left > p {
    font-size: 18px;
    line-height: 26px;
}
#service03 .flex-box .flex-list:nth-child(2) .flex-right .sap-link > img {
    width: 5%;
}
#service03 .second-box .flex-list:nth-child(1) {
    display: flex;
    flex-direction: column;
    width: 54%;
    padding: 20px 0 0 25px;
    overflow: hidden;
    background: #f2fafc;
}
#service03 .second-box .flex-list:nth-child(1) > h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
#service03 .second-box .flex-list:nth-child(1) .flex-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}
#service03 .second-box .flex-list:nth-child(1) .flex-left ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 200px;
}
#service03 .second-box .flex-list:nth-child(1) .flex-left ul li {
    font-size: 18px;
    line-height: 26px;
}
#service03 .second-box .flex-list:nth-child(1) .flex-left ul li:last-child {
    font-weight: bold;
    color: #666;
}
#service03 .second-box .flex-list:nth-child(2) {
    width: 40%;
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-image: -moz-linear-gradient( 90deg, rgb(153,204,255) 0%, rgb(77,102,128) 59%, rgb(0,0,0) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(153,204,255) 0%, rgb(77,102,128) 59%, rgb(0,0,0) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(153,204,255) 0%, rgb(77,102,128) 59%, rgb(0,0,0) 100%);
}
#service03 .second-box .flex-list:nth-child(2) > p {
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    padding: 20px 0 15px 0;
}
#service03 .second-box .flex-list:nth-child(2) img {
    width: 60%;
}
.user-section {
    padding-top: 150px;

}
.user-section .gr-bg {
    background-image: -moz-linear-gradient( 90deg, rgb(153,153,248) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(153,153,248,.2) 0%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(153,153,248) 0%, rgb(255,255,255) 100%);
    position: relative;
}
.user-section .section-wrap > h1 {
    font-size: 28px;
    font-weight: bold;
    max-width: 1536px;
    margin: 0 auto;
    margin-bottom: 70px;
    padding-left: 120px;
}
.user-section .section-wrap .mySwiper2 {
    max-width: 1204px;
    margin: 0 auto;
    padding: 10px 10px 65px;
}
.user-section .section-wrap .mySwiper2 .swiper-slide .user-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 0px 1px 0.4px 3.6px rgba(0, 0, 0, 0.03);
    border-radius: 40px;
    padding: 35px 25px 25px;
    height: 370px;
}
.user-section .section-wrap .mySwiper2 .swiper-slide .user-list .user-info {
    margin-bottom: 50px;

}
.user-section .section-wrap .mySwiper2 .swiper-slide .user-list p {
    font-size: 18px;
    line-height: 27px;
    font-size: 17px;
}
.user-section .section-wrap .mySwiper2 .swiper-slide .user-list .img-box {
    text-align: right;
}
.user-section .section-wrap .mySwiper2 .swiper-slide .user-list .img-box.type2 {
  position: absolute;
  right: 4%;
  bottom: 1%;
}
.user-section .section-wrap .mySwiper2 .swiper-slide .user-list .img-box.type2 img {
  width: auto;
  height: 90px;
  object-fit: contain;
}
.user-section .section-wrap .mySwiper2 .swiper-slide .user-list .img-box > img {
    width: 40%;
}
.user-section .user-inner .swiper-button {
    width: 1340px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.user-section .user-inner .swiper-button .button-next{
    position: initial;
}
.user-section .user-inner .swiper-button .button-prev{
    position: initial;
}
.section-main .section-wrap .info-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 200px 0 100px;
    text-align: center;
}
.section-main .section-wrap .info-inner > h1 {
    font-size: 40px;
    font-weight: bold;
}
.section-main .section-wrap .info-inner p {
    font-size: 24px;
    margin: 50px 0;
}
.section-main .section-wrap .info-inner a {
    padding: 10px 100px;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    border-radius: 40px;
    background-image: -webkit-linear-gradient(90deg, rgb(153, 204, 255) 0%, rgb(153, 179, 255) 14%, rgb(153, 153, 255) 100%);
}
.section-main .section-wrap .info-inner a img {
    filter: brightness(3);
    margin-left: 3px;
}
.sap-link {
    font-size: 16px;
    font-weight: bold;
    text-align: right;
    display: inline-block;
    color: #005eb8;
}
.sap-link > img {
    width: 3%;
    padding-right: 10px;
    filter: opacity(0.5) drop-shadow(0 0 0 #005eb8);
}
.top_btn {
    height: 64px;
    width: 64px;
    right: 3rem;
    z-index: 8;
}
.top_btn > img {
    width: 100%;
    border: 0;
}
.footer {
    position: relative;
    width: 100%;
    height: 315px;
    border-color: rgb(255, 255, 255);
    border-style: solid;
    background-image: -moz-linear-gradient( 90deg, rgb(0,0,0) 0%, rgb(71,71,71) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(0,0,0) 0%, rgb(71,71,71) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(0,0,0) 0%, rgb(71,71,71) 100%);
}
.footer .footer-inner {
    max-width: 1536px;
    margin: 0 auto;
    padding-top: 100px;
}
.footer .footer-inner .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 65px;
    margin-bottom: 60px;
}
.footer .footer-inner .footer-top span .company-link{
    color: #fff;
    margin-right: 30px;
    font-size: 20px;
}
.footer .footer-inner .footer-top span a:last-child {
    margin-right: 0;
}
.footer .footer-inner .footer-top .footer-link {
    display: flex;
    align-items: center;
}
.footer .footer-inner .footer-top .footer-link .logo-link {
    margin-right: 15px;
}
.footer .footer-inner .footer-top .footer-link .select-box {
    position: relative;
    width: 16rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
}
.footer .footer-inner .footer-top .footer-link .select-box > h3 {
    position: relative;
    padding-left: 1rem;
    color: rgba(160, 160, 160, 0.5);
    font-weight: 400;
    line-height: 48px;
    cursor: pointer;
}
.footer .footer-inner .footer-top .footer-link .select-box > h3::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 1.2rem;
    margin-top: -0.3rem;
    height: 0.6rem;
    background: url(/images/peoply/button_ft_site.png) no-repeat center;
    transform: rotate(180deg);
    transition: .2s;
}
.footer .footer-inner .footer-top .footer-link .select-box ul {
    display: none;
    position: absolute;
    left: -1px;
    bottom: 100%;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
}
.footer .footer-inner .footer-top .footer-link .select-box.open ul{
    display: block;
}
.footer .footer-inner .footer-top .footer-link .select-box.open h3::after {
    transform: rotate(0deg);
}
.footer .footer-inner .footer-top .footer-link .select-box ul a {
    color: #aaa;
    display: block;
    margin: 0.5rem 0;
    padding: 0 1rem;
    line-height: 1.5;
    transition: .2s;
}
.footer .footer-inner .footer-top .footer-link .select-box ul a:hover {
    color: #005eb8;
}
.footer .footer-inner .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 65px;
}
.footer .footer-inner .footer-bottom > img {
    width: 10%;
}
.footer .footer-inner .footer-bottom p {
    color: #fff;
    font-size: 18px;
}
@media screen and (max-width: 1024px) {
    .header {
        height: 95px;
    }
    .header .header_inner {
        max-width: 900px;
    }
    .header .header_inner .header_logo a img {
        width: 100%;
    }
    .header .header_inner .nav_wrap .nav .nav_list {
        width: 20%;   
    }
    .header .header_inner .nav_wrap .nav .nav_list a {
        font-size: 18px;
    }
    .header .header_inner .header_link li a {
        width: 100%;
        display: inline-block;
    }
    .header .header_inner .header_link li a img {
        width: 100%;
    }
    .main-visual {
        margin-top: 95px;
    }
    .main-visual .section-wrap {
        height: calc(100vh - 95px);
    }
    .main-visual .main-bg {
        padding: 130px 0;
    }
    .main-visual .section-main .inner .main-title {
        font-size: 60px;
    }
    .main-visual .section-main .inner .main-info {
        font-size: 26px;
        padding: 0 70px;
    }
    .service-main .banner-box .title-box .service-title {
        font-size: 54px;
    }
    .main-visual .section-wrap .main-title {
        font-size: 36px;
    }
    .section-main .section-wrap .sap-title {
        padding-top: 150px;
        font-size: 35px;
        line-height: 45px;
    }
    .section-main .section-wrap .sap-box {
        justify-content: space-evenly;
    }
    .section-main .section-wrap .sap-box .sap-list {
        padding: 30px;
    }
    .section-main .section-wrap .sap-box .sap-list .sapimg-box .sap-flex {
        width: 245px;
        height: 75px;
    }
    .section-main .section-wrap .sap-box .sap-list .sapimg-box .sap-flex img {
        width: 85px;
    }
    .section-main .section-wrap .sap-box .sap-list .sapimg-box .sap-flex span {
        font-size: 26px;
    }
    .section-main .section-wrap .sap-box .sap-list > p {
        font-size: 17px;
    }
    .section-main .section-wrap .sap-box .sap-list .sap-link {
        text-align: center;
    }
    .service-main .service-info .img-box .box01 {
        width: 42%;
    }
    .service-main .service-info .img-box .box02 {
        width: 50%;
    }
    .service-main .service-info .img-box {
        padding: 50px 20px 120px;
    }
    .service-main .service-info .grid-box {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0;
    }
    .service-main .service-info .grid-box .grid-list:nth-child(1) {
        margin-bottom: 30px;
    }
    .service-main .service-info .grid-box .grid-list:nth-child(2) {
        width: 100%;
        margin-bottom: 30px;
    }
    .service-main .service-info .grid-box .grid-list:nth-child(3) {
        padding: 0;
        width: 47%;
        justify-content: space-evenly;
        align-items: center;
    }
    .service-main .service-info .grid-box .grid-list:nth-child(3) .third-title {
        font-size: 16px;
    }
    .service-main .service-info .grid-box .grid-list:nth-child(3) .blind-imgBox {
        text-align: right;
    }
    .service-main .service-info .grid-box .grid-list:nth-child(3) .blind-imgBox > img {
        width: 50%;
    }
    .service-main .service-info .grid-box .grid-list:nth-child(4) {
        width: 47%;
        padding: 0;
    }
    .service-main .service-info .grid-box .grid-list .grid-wrap .left-title {
        justify-content: space-around;
    }
    .service-main .service-info .grid-box .grid-list .grid-left-box > h1 {
        font-size: 26px;
    }
    .service-main .service-info .grid-box .grid-list .grid-left-box .grid-title {
        font-size: 17px;
    }
    .service-main .service-info .second-imgBox .box01 {
        width: 50%;
    }
    .service-main .service-info .second-imgBox .box02 {
        width: 70% !important;
    }
    #service02 .flex-box .flex-list .flex-title {
        font-size: 26px;
    }
    #service02 .flex-box .flex-list .flex-info {
        font-size: 14px;
        margin-bottom: 60px;
    }
    #service02 .flex-box .flex-list:nth-child(1) .flex-img-box > img {
        width: 100%;
    }
    #service02 .flex-box .flex-list:nth-child(2) .sub-flex-box02 {
        padding: 20px 15px 0px 25px;
        font-size: 0;
    }
    #service02 .flex-box .flex-list:nth-child(2) .sub-flex-box02 p {
        margin-bottom: 20px;
        line-height: 23px;
        font-size: 14px;
    }
    #service03 .flex-box .flex-list:nth-child(1) {
        padding: 0;
        flex-direction: column;
    }
    #service03 .flex-box .flex-list:nth-child(1) .flex-left {
        text-align: center;
        padding: 20px 0;
    }
    #service03 .flex-box .flex-list:nth-child(1) .flex-info {
        margin: 12px 0
    }
    #service03 .flex-box .flex-list:nth-child(1) .flex-title {
        font-size: 20px;
    }
    #service03 .flex-box .flex-list:nth-child(1) .flex-right {
        width: 50%;
        margin: 0 auto;
        padding-top: 0;
    }
    #service03 .flex-box .flex-list:nth-child(1) .flex-right > img {
        width: 100%;
    }
    #service03 .flex-box .flex-list:nth-child(2) {
        flex-direction: column;
        justify-content: space-between;
    }
    #service03 .flex-box .flex-list:nth-child(2) .flex-left {
        flex: none;
    }
    #service03 .flex-box .flex-list:nth-child(2) .flex-right {
        padding: 0;
        width: 80%;
        margin: 0 auto;
        flex: none;
    }
    #service03 .second-box .flex-list:nth-child(1) {
        padding: 20px 40px 0;
    }
    #service03 .second-box .flex-list:nth-child(1) > h1 {
        text-align: center;
    }
    #service03 .second-box .flex-list:nth-child(1) .flex-left {
        flex-direction: column;
        padding: 20px 0 0;
    }
    #service03 .second-box .flex-list:nth-child(1) .flex-left ul {
        height: auto;
        gap: 10px;
    }
    #service03 .second-box .flex-list:nth-child(1) .flex-left ul li br {
        display: none;
    }
    #service03 .second-box .flex-list:nth-child(2) > p {
        font-size: 19px;
        text-align: center;
    }
    #service03 .second-box .flex-list:nth-child(2) img {
        width: 90%;
    }
    .user-section .section-wrap .mySwiper2 {
        width: 800px;
    }
    .user-section .section-wrap .mySwiper2 .swiper-slide .user-list {
        height: 410px;
    }
    .user-section .section-wrap .mySwiper2 .swiper-slide .user-list .user-info {
        font-size: 16px;
        margin-bottom: 0;
    }
    .user-section .section-wrap .mySwiper2 .swiper-slide .user-list .user-info .br-1024 {
        display: none;
    }
    .user-section .section-wrap .mySwiper2 .swiper-slide .user-list .user-info .user-br {
        display: none;
    }
    .user-section .user-inner .swiper-button {
        width: 900px;
    }
    .section-main .section-wrap .info-inner {
        padding: 150px 0 100px;
    }
}
@media screen and (max-width: 768px) {
    .header .header_inner {
        max-width: 700px;
    }
    .header .header_inner .nav_wrap .nav .nav_list {
        width: 30%;
    }
    .main-visual .section-main .inner .main-title {
        font-size: 46px;
    }
    .main-visual .section-main .inner .main-info {
        padding: 0 55px;
    }
    .main-visual .section-wrap .mySwiper .swiper-wrapper .left-box {
        flex: 1;
        padding: 25px;
    }
    .main-visual .section-wrap .mySwiper .swiper-wrapper .right-box {
      flex: 1;
    }
    .button-prev {
        left: 6%;
    }
    .button-next {
        right: 6%;
    }
    .main-visual .section-wrap .mySwiper .swiper-wrapper .left-box h1 {
        font-size: 26px;
    }
    .main-visual .section-wrap .mySwiper .swiper-wrapper .left-box > p {
        margin: 50px 0;
        font-size: 14px;
    }
    .main-visual .section-wrap .mySwiper .swiper-wrapper .left-box .mo-br {
        display: block;
    }
    .main-visual .section-wrap .mySwiper .swiper-wrapper .left-box a {
        margin-left: 0;
    }
    .section-main .section-wrap .sap-title {
        font-size: 26px;
    }
    .section-main .section-wrap .sap-box .sap-list {
        padding: 24px;
    }
    .section-main .section-wrap .sap-box .sap-list > p {
        font-size: 13px;
    }
    .section-main .section-wrap .sap-box .sap-list .sapimg-box .sap-flex {
        width: 190px;
        height: 60px;
    }
    .section-main .section-wrap .sap-box .sap-list .sapimg-box .sap-flex img {
        width: 70px;
    }
    .section-main .section-wrap .sap-box .sap-list .sapimg-box .sap-flex span {
        font-size: 20px;
    }
    .sap-link {
        font-size: 15px;
    }
    .section-main .section-wrap .ai-inner .ai-title {
        padding: 140px 0 30px;
        font-size: 36px;
    }
    .service-main .banner-box .title-box {
        padding: 60px 0;
    }
    .service-main .banner-box .title-box .service-title {
        font-size: 42px;
    }
    .service-main .banner-box .service-p {
        font-size: 20px;
    }
    .service-main .banner-box a {
        font-size: 18px;
    }
    .service-main .service-info .img-box .box02 {
        width: 60%;
        padding: 20px 70px 20px 30px;
    }
    .service-main .service-info .grid-box .grid-list .grid-left-box > h1 {
        font-size: 22px;
    }
    .service-main .service-info .grid-box .grid-list .grid-left-box::before {
        display: none;
    }
    .service-main .service-info .grid-box .grid-list .grid-left-box .grid-title {
        margin: 40px 0 30px;
    }
    .service-main .service-info .grid-box .grid-list:nth-child(2) {
        padding: 20px 0 0 20px;
    }
    .service-main .service-info .grid-box .grid-list .second-title {
        font-size: 22px;
    }
    .service-main .service-info .grid-box .grid-list .grid-wrap .left-title p {
        font-size: 17px;
        padding-bottom: 0;
    }
    .service-main .service-info .grid-box .grid-list:nth-child(3) .third-title {
        font-size: 14px;
    }
    .service-main .service-info .grid-box .grid-list:nth-child(4) .fourth-title {
        font-size: 14px;
        padding-top: 20px;
        line-height: 20px;
    }
    .service-main .service-info .grid-box .grid-list .grid-right-box .sap-link > img {
        width: 6%;
    }
    .service-main .service-info .img-box .box01 {
        width: 65%;
        padding: 20px 30px 20px 50px;
    }
    .service-main .service-info .img-box .box01 p {
        font-size: 16px;
    }
    .service-main .service-info .img-box .box02 p {
        font-size: 16px;
    }
    .service-main .service-info .second-imgBox .box02 {
        width: 90% !important;
        padding: 20px 30px;
    }
    #service02 .service-info .img-box .box01::before {
        width: 45px;
        height: 45px;
        top: -25px;
    }
    #service02 .service-info .img-box .box02::after {
        width: 45px;
        height: 45px;
        top: -25px;
    }
    #service02 .flex-box .flex-list:nth-child(1) {
        width: 55%;
        padding: 20px 0 0 20px;
    }
    #service02 .flex-box .flex-list .flex-title {
        font-size: 22px;
    }
    #service02 .flex-box .flex-list .flex-info {
        font-size: 16px;
    }
    #service02 .flex-box .flex-list:nth-child(1) .flex-img-box > img {
        width: 100%;
    }
    #service02 .flex-box .flex-list:nth-child(2) .sub-flex-box02 {
        padding: 20px 15px 20px 20px;
    }
    #service02 .flex-box .flex-list:nth-child(2) .sub-flex-box02 p {
        font-size: 16px;
        margin-bottom: 10px;
    }
    #service02 .flex-box .flex-list:nth-child(2) .sub-flex-box02 img {
        width: 100%;
    }
    #service02 .flex-box .flex-list:nth-child(1) .flex-img-box {
        height: 76%;
    }
    #service02 .flex-box .flex-list:nth-child(1) .flex-img-box > img {
        height: 100%;
    }
    #service03 .flex-box .flex-list:nth-child(1) {
        width: 43%;
    }
    #service03 .flex-box .flex-list:nth-child(1) .flex-title {
        font-size: 18px;
    }
    #service03 .flex-box .flex-list:nth-child(1) p {
        font-size: 16px !important;
    }
    #service03 .flex-box .flex-list:nth-child(2) .flex-left > p {
        font-size: 16px;
    }
    #service03 .second-box .flex-list:nth-child(1) {
        width: 45%;
    }
    #service03 .second-box .flex-list:nth-child(1) > h1 {
        font-size: 18px;
    }
    #service03 .second-box .flex-list:nth-child(1) .flex-left ul li {
        font-size: 16px;
    }
    #service03 .flex-box .flex-list:nth-child(2) {
        justify-content: space-between;
    }
    #service03 .second-box .flex-list:nth-child(2) > p {
        font-size: 16px;
        padding: 30px 20px 15px;
    }
    #service03 .second-box .flex-list:nth-child(2) img {
        margin-bottom: 40px;
    }
    .section-main .section-wrap .ai-inner .ai-title {
        padding: 100px 0 30px;
    }
    .user-section .section-wrap .mySwiper2 {
        width: 600px;
    }
    
    /* .user-section .section-wrap .mySwiper2 .swiper-slide .user-list {
        height: 480px;
    } */


    .user-section .section-wrap .mySwiper2 .swiper-slide .user-list .user-info .tablet-br {
        display: none;
    }
    .user-section {
        padding-top: 100px;
    }
    .user-section .user-inner .swiper-button {
        width: 700px;
    }
    .section-main .section-wrap .info-inner {
        padding: 100px 0;
    }
    .section-main .section-wrap .info-inner > h1 {
        font-size: 32px;
    }
    .section-main .section-wrap .info-inner p {
        font-size: 20px;
    }
    .section-main .section-wrap .info-inner a {
        font-size: 20px;
    }
    .footer {
        height: 180px;
    }
    .footer .footer-inner {
        padding-top: 45px;
    }
    .footer .footer-inner .footer-top {
        padding: 0 40px;
        margin-bottom: 40px;
    }
    .footer .footer-inner .footer-top .footer-link .logo-link{
        margin-right: 10px;
    }
    .footer .footer-inner .footer-top .footer-link .select-box {
        width: 12rem;
    }
    .footer .footer-inner .footer-top span .company-link {
        font-size: 16px;
    }
    .footer .footer-inner .footer-top .footer-link .logo-link img{
        width: 20%;
    }
    .footer .footer-inner .footer-bottom {
        padding: 0 40px;
    }
    .top_btn {
        width: 45px;
        height: 45px;
        right: 1rem;
    }

    .main-visual .section-wrap .mySwiper .swiper-wrapper .right-box > img {
      height: auto;
    }
}
@media screen and (max-width: 425px) {
    .main-visual .section-wrap {
        height: auto;
    }
    .header {
        height: 72px;
    }
    .header .header_inner {
        padding: 0 30px;
    }
    .header .header_inner .header_logo {
        width: 102px;
    }
    .header .header_inner .nav_wrap ,
    .header .header_inner .header_link {
        display: none;
    }
    .header .header_inner .nav_wrap.show,
    .header .header_inner .header_link.show {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #fff; /* 햄버거 메뉴 배경 색상 */
        width: 100%; /* 햄버거 메뉴 너비 조정 */
        height: 100vh; /* 햄버거 메뉴 높이를 전체 화면으로 설정 */
        z-index: 1000; /* 다른 요소들보다 위에 위치하도록 설정 */
        transition: transform 0.3s ease, height 0.3s ease, opacity 0.3s ease; /* 부드러운 애니메이션 효과 추가 */
    transform: translateY(-100%);
    }

    .header .header_inner .header_link.show {
        display: flex;
        width: 100%;
        height: auto;
        top: 800%;
        justify-content: center;
        padding-top: 0;
        transform: none;
    }

    .header .header_inner .nav_wrap.show {
        transform: translateY(0);
        opacity: 1;
    }
    .header .header_inner .nav_wrap.show .nav {
        display: block;
        margin-top: 100px;
    }
    .header .header_inner .nav_wrap.show .nav .sub_link {
        font-size: 18px;
        padding: 20px 0;
    }
    .header .header_inner .nav_wrap.show .nav li {
        border-bottom: 0;
        width: 100%;
        padding: 0;
    }
    .header .header_inner .nav_wrap.show .nav li a {
        padding: 20px 0;
        display: inline-block;
    }
    .header .header_inner .nav_wrap .nav .sub_link .sub_nav_wrap {
        list-style-type: none;
        padding: 0;
        position: initial;
        border: none;
        transform: none;
        display: none;
        opacity: 0; /* 초기 투명도 설정 */
        transform: translateY(-10px); /* 애니메이션 시작 전에 약간 위로 이동 */
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .header .header_inner .nav_wrap .nav .sub_link .sub_nav_wrap.show {
        display: block;
        opacity: 1;
        margin-top: 20px;
        transform: translateY(0);
    }
    .header .header_inner .nav_wrap .nav .sub_link .sub_nav_wrap.show li {
        padding: 0;
    }
    .nav_wrap ul li {
        padding: 10px;
        border-bottom: 1px solid #ccc; /* 각 메뉴 아이템마다 구분선 추가 */
    }
    .menu-open {
        overflow: hidden; /* Disable scrolling */
    }
    .hamburger {
        display: inline-block;
        cursor: pointer;
        z-index: 9999;
    }
    
    .bar {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 5px auto;
        transition: all 0.3s ease;
    }
    
    /* Active state for hamburger animation */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    /* Close button */
    .close {
        display: none;
        /* Add your close button styles here */
    }
    
    .menu-open .close {
        display: block;
        /* Add your close button styles here */
    }
    .sub_nav_wrap {
        display: none; /* 기본적으로 숨김 */
        position: absolute;
        top: 100%; /* 부모 요소의 아래에 위치 */
        left: 0;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .sub_nav_wrap.show {
        display: block; /* 드롭다운이 보이도록 변경 */
    }
    .main-visual {
        margin-top: 72px;
    }
    .main-visual .main-bg {
        padding: 60px 0 0;
    }
    .main-visual .section-main .inner {
        padding: 0 30px;
    }
    .main-visual .section-main .inner .main-title {
        font-size: 34px;
    }
    .main-visual .section-main .inner .main-info {
        font-size: 18px;
        margin: 40px 0;
        line-height: 36px;
        padding: 0;
    }
    .main-visual .main-bg .aside-bg {
        display: none;
    }
    .main-visual .section-main .inner .btn-wrap a {
        padding: 10px 20px;
        font-size: 18px;
    }
    .main-visual .section-wrap .main-title {
        font-size: 34px;
        padding-top: 60px;
    }
    .main-visual .section-wrap .solution-wrap {
        width: 100%;
    }
    .main-visual .section-wrap .solution-wrap {
        flex-wrap: wrap;
        gap: 10px;
    }
    .main-visual .section-wrap .solution-wrap li {
        font-size: 18px;
        border-right: 0;
        padding: 0 10px;
    }
    .main-visual .section-wrap .mySwiper {
        height: 450px;
    }
    .main-visual .section-wrap .mySwiper .swiper-wrapper .left-box {
        text-align: center;
        position: relative;
    }
    .main-visual .section-wrap .mySwiper .swiper-wrapper .left-box h1 {
        position: relative;
    }
    .main-visual .section-wrap .mySwiper .swiper-wrapper .left-box > p {
        position: relative;
    }
    .main-visual .section-wrap .mySwiper .swiper-wrapper .left-box a {
        position: relative;
    }
    .main-visual .section-wrap .mySwiper .swiper-wrapper .swiper-slide .left-box::before {
        content: '';
        background-repeat: no-repeat;
        background-size: cover;
        opacity: 0.3;
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
    }
    .main-visual .section-wrap .mySwiper .swiper-wrapper .swiper-slide:nth-child(1) .left-box::before {
        background-image: url(/images/peoply/solution/solution01.png);  
    }
    .main-visual .section-wrap .mySwiper .swiper-wrapper .swiper-slide:nth-child(2) .left-box::before {
        background-image: url(/images/peoply/solution/solution02.png);  
    }
    .main-visual .section-wrap .mySwiper .swiper-wrapper .swiper-slide:nth-child(3) .left-box::before {
        background-image: url(/images/peoply/solution/solution03.png);  
    }
    .main-visual .section-wrap .mySwiper .swiper-wrapper .swiper-slide:nth-child(4) .left-box::before {
        background-image: url(/images/peoply/solution/solution04.png);  
    }
    .main-visual .section-wrap .mySwiper .swiper-wrapper .swiper-slide:nth-child(5) .left-box::before {
        background-image: url(/images/peoply/solution/solution05.png);  
    }
    .main-visual .section-wrap .mySwiper .swiper-wrapper .right-box {
        display: none;
    }
    .button-prev {
        left: 3%;
        width: 40px;
        height: 40px;
    }
    .button-next {
        right: 3%;
        width: 40px;
        height: 40px;
    }
    .section-main .gradation-bg {
        height: auto;
        padding-bottom: 20px;
    }
    .section-main .section-wrap .sap-title {
        font-size: 18px;
        padding-top: 50px;
        margin-bottom: 50px;
        line-height: 24px;
    }
    .section-main .section-wrap .sap-box {
        flex-direction: column;
        gap: 10px;
    }
    .section-main .section-wrap .sap-box .sap-list {
        width: 100%;
        padding: 0;
    }
    .section-main .section-wrap .sap-box .sap-list:last-child .sapimg-box {
        padding-top: 30px;
        margin-bottom: 50px;
    }
    .section-main .section-wrap .sap-box .sap-list .sapimg-box .sap-flex {
        margin: 0 auto 10px;
    }
    .section-main .section-wrap .sap-box .sap-list .sapimg-box {
        margin-bottom: 25px;
        padding-top: 10px;
    }
    .section-main .section-wrap .sap-box .sap-list > p {
        font-size: 16px;
        line-height: 24px;
        padding-bottom: 20px;
    }
    .section-main .section-wrap .sap-box .sap-list .sapimg-box > img {
        width: 50% !important;
    }
    .section-main .section-wrap .ai-inner {
        text-align: center;
        position: relative;
    }
    .section-main .section-wrap .ai-inner .iframeContainer {
        position: relative;
        padding-top: 56%;
        width: 100%;
        height: 0;
    }
    .section-main .section-wrap .ai-inner .iframeContainer iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .section-main .section-wrap .ai-inner .ai-title {
        font-size: 28px;
        padding: 70px 0 30px;
    }
    .section-main .section-wrap .ai-inner iframe {
        width: 90%;
    }
    .service-main {
        padding-top: 72px;
    }
    
    .service-main .banner-box .title-box > img {
        width: 35%;
    }
    .service-main .banner-box .title-box .service-title {
        font-size: 38px;
    }
    .service-main .banner-box .title-box {
        padding: 40px 0;
    }
    .service-main .banner-box .service-p {
        font-size: 18px;
        padding: 0 30px;
        line-height: 27px;
    }
    .service-main .service-info .img-box .box01 {
        width: 95%;
        padding: 20px 10px 20px 14px;
    }
    .service-main .service-info .img-box .box01 p {
        font-size: 14px;
    }
    .service-main .service-info .img-box .box02 {
        width: 95% !important;
        padding: 20px 15px 20px 10px;
    }
    .service-main .service-info .img-box .box02 p {
        font-size: 14px;
    }
    .service-main .service-info .second-imgBox .box02 p {
        font-size: 13px;
    }
    .service-main .service-info .img-box {
        padding: 50px 20px 80px;
    }
    .service-main .service-info .second-imgBox .box02{
        padding: 20px 15px 20px 10px;
    }
    .service-main .service-info .grid-box {
        width: 95%;
        margin: 0 auto;
        justify-content: space-evenly;
    }
    .service-main .service-info .grid-box .grid-list .grid-left-box > h1 {
        font-size: 14px;
    }
    .service-main .service-info .grid-box .grid-list .grid-left-box .grid-title {
        font-size: 14px;
        margin: 30px 0 20px;
    }
    .service-main .service-info .grid-box .grid-list .grid-right-box .sap-link {
        font-size: 14px;
    }
    .service-main .service-info .grid-box .grid-list .grid-left-box .grid-title p br {
        display: block;
    }
    .service-main .service-info .grid-box .grid-list .grid-right-box .sap-link > img {
        width: 14%;
    }
    .service-main .service-info .grid-box .grid-list .second-title {
        font-size: 18px;
    }
    .service-main .service-info .grid-box .grid-list .grid-wrap .left-title {
        gap: 10px;
    }
    .service-main .service-info .grid-box .grid-list .grid-wrap .left-title p {
        font-size: 13px !important;
        line-height: 24px;
    }
    .service-main .service-info .grid-box .grid-list .grid-wrap .left-title p strong {
        font-size: 14px !important;
    }
    .service-main .service-info .grid-box .grid-list .grid-left-box p {
        font-size: 14px;
    }
    .service-main .service-info .grid-box .grid-list .grid-wrap .right-img > img {
        height: 100%;
    }
    .service-main .service-info .grid-box .grid-list:nth-child(3) .third-title {
        text-align: center;
        padding: 10px 8px 0;
        line-height: 20px;
    }
    .service-main .service-info .grid-box .grid-list:nth-child(3) {
        justify-content: space-between;
    }
    .service-main .service-info .grid-box .grid-list:nth-child(3) .blind-imgBox {
        text-align: center;
    }
    .service-main .service-info .grid-box .grid-list:nth-child(3) .blind-imgBox img {
        width: 75%;
    }
    .service-main .service-info .grid-box .grid-list:nth-child(4) .fourth-title {
        padding: 10px 8px 0 8px;
        text-align: center;
    }
    .service-main .service-info .img-box .box01::before {
        top: -40px;
    }
    .service-main .service-info .img-box .box02::after {
        top: -40px;
    }
    .service-main {
        padding-bottom: 0;
    }
    #service02 .flex-box {
        flex-direction: column;
        padding: 0 20px;
        align-items: center;
        gap: 30px;
    }
    #service02 .flex-box .flex-list:nth-child(1) {
        width: 100%;
        padding: 20px 0 0 0;
        text-align: center;
    }
    #service02 .flex-box .flex-list .flex-title {
        font-size: 18px;
    }
    #service02 .flex-box .flex-list .flex-info {
        padding: 0 15px;
        font-size: 15px;
        margin-bottom: 20px;
    }
    #service02 .flex-box .flex-list:nth-child(2) {
        width: 100%;
        flex-direction: column-reverse;
    }
    #service02 .flex-box .flex-list:nth-child(2) .sub-flex-box01 {
        margin-top: 20px;
    }
    #service02 .flex-box .flex-list:nth-child(2) .sub-flex-box01 .sap-link{
        text-align: center;
    }
    #service02 .flex-box .flex-list:nth-child(2) .sub-flex-box01 .sap-link > img {
        width: 5%;
    }
    #service02 .flex-box .flex-list:nth-child(2) .sub-flex-box02 {
        text-align: center;
    }
    #service02 .flex-box .flex-list:nth-child(2) .sub-flex-box02 p {
        line-height: 24px;
        font-size: 15px;
    }
    #service02 .flex-box .flex-list:nth-child(2) .sub-flex-box02 span {
        margin-bottom: 20px;
        margin-right: 0;
        display: inline-block;
    }
    #service03 .flex-box {
        flex-direction: column;
        gap: 30px;
    }
    #service03 .flex-box .flex-list:nth-child(1) {
        width: 100%;
    }
    #service03 .flex-box .flex-list:nth-child(1) .flex-left {
        padding: 20px 0;
    }
    #service03 .second-box .flex-list:nth-child(1) .flex-left ul li:last-child {
        margin-bottom: 20px;
    }
    #service03 .flex-box .flex-list:nth-child(1) .flex-right {
        width: auto;
    }
    #service03 .flex-box .flex-list:nth-child(2) {
        width: 100%;
    }
    #service03 .flex-box .flex-list:nth-child(2) .flex-left {
        padding: 20px 0;
    }
    #service03 .flex-box .flex-list:nth-child(2) .flex-left > p {
        text-align: center;
    }
    #service03 .flex-box .flex-list:nth-child(2) .flex-right {
        width: auto;
        margin: 0;
        padding: 0 10px;
        flex-direction: column-reverse;
        gap: 15px;
    }
    #service03 .flex-box .flex-list:nth-child(2) .flex-right .sap-link {
        text-align: center;
        padding-bottom: 15px;
    }
    #service03 .second-box .flex-list:nth-child(1) {
        padding: 20px 0 0 0;
    }
    #service03 .second-box .flex-list:nth-child(2) img {
        margin-bottom: 0;
    }
    #service04 .section-wrap {
        height: auto;
    }
    .user-section .section-wrap > h1 {
        text-align: center;
        padding-left: 0;
        margin-bottom: 30px;
    }
    .user-section .section-wrap .mySwiper2 {
        width: 300px;
    }
    .user-section .section-wrap .mySwiper2 .user-list {
        height: 428px;
    }
    .user-section .section-wrap .mySwiper2 .user-list .mo-br2 {
        display: none;
    }
    .user-section .user-inner .swiper-button {
        width: 87%;
        z-index: 9;
    }
    .section-main .section-wrap .info-inner > h1 {
        font-size: 28px;
    }
    .section-main .section-wrap .info-inner p {
        font-size: 18px;
        padding: 0 30px;
        line-height: 24px;
    }
    .section-main .section-wrap .info-inner a {
        font-size: 18px;
        display: inline-block;
    }
    .footer .footer-inner {
        padding-top: 35px;
    }
    .footer .footer-inner .footer-top {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 25px;
    }
    .footer .footer-inner .footer-bottom > img {
        width: 25%;
    }
    .footer .footer-inner .footer-bottom p {
        font-size: 16px;
    }
    .footer .footer-inner .footer-top .footer-link .select-box {
        width: 10rem;
    }
    .footer .footer-inner .footer-top .footer-link .select-box > h3 {
        font-size: 14px;
        line-height: 36px;
    }
    .footer .footer-inner .footer-top .footer-link .select-box ul a {
        font-size: 14px;
    }

    .user-section .section-wrap .mySwiper2 .swiper-slide .user-list .img-box.type2 {
      right: 8%;
      bottom: 4%;
    }
    .user-section .section-wrap .mySwiper2 .swiper-slide .user-list .img-box.type2 img {
      height: 50px;
    }
}
@media screen and (max-width: 395px) {
    .m-img {
        display: block;
    }
    .pc-img {
        display: none;
    }
    .main-visual .section-main .inner .main-title {
        font-size: 30px;
    }
    .main-visual .section-main .inner .main-info {
        font-size: 16px;
    }
    .main-visual .section-wrap .main-title {
        padding-top: 90px;
    }
    .main-visual .section-main .inner .btn-wrap a {
        font-size: 16px;
        line-height: 20px;
    }
    .main-visual .section-main .inner .btn-wrap a img {
        width: 15px;
    }
    .section-main .section-wrap .sap-title {
        padding-top: 35px;
    }
    .section-main .section-wrap .sap-title br {
        display: none;
    }
    .section-main .section-wrap .ai-inner .ai-title {
        font-size: 26px;
    }
    .section-main .section-wrap .ai-inner iframe {
        height: 400px;
    }
    .section-main:nth-child(4) .section-wrap {
        height: auto;
    }
    .service-main .service-info .img-box .box01 p {
        font-size: 15px;
    }
    .service-main .service-info .img-box .box02 p {
        font-size: 15px;
    }
    .main-visual .section-wrap .mySwiper .swiper-wrapper .left-box {
        width: 100%;
    }
    .service-main .service-info .grid-box .grid-list .grid-right-box .sap-link {
        font-size: 13px;
    }
    .service-main .service-info .grid-box .grid-list .grid-right-box .sap-link > img {
        width: 13%;
    }
    .service-main .service-info .grid-box .grid-list .grid-left-box {
        padding: 25px 0 20px 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .service-main .service-info .grid-box .grid-list .grid-left-box > h1 {
        font-size: 16px;
    }
    .service-main .service-info .grid-box .grid-list .grid-left-box > h1 br {
        display: block;
    }
    .service-main .service-info .grid-box .grid-list .grid-left-box .grid-title {
        font-size: 13px;
    }
    .service-main .service-info .grid-box .grid-list:nth-child(3) {
        justify-content: initial;
        gap: 30px;
    }
    .service-main .service-info .grid-box .grid-list .second-title {
        font-size: 16px;
        margin: 0;
        margin-bottom: 10px;
    }
    .service-main .service-info .grid-box .grid-list .grid-wrap .left-title p {
        font-size: 12px !important;
    }
    .service-main .service-info .grid-box .grid-list:nth-child(4) .fourth-title {
        font-size: 12px;
        padding: 10px 0 0 0;
    }
    .service-main .service-info .grid-box .grid-list:nth-child(4) img {
        width: 70%;
    }
    .service-main .service-info .grid-box .grid-list:nth-child(3) .third-title {
        padding: 10px 8px 0px 8px;
        font-size: 12px;
        line-height: 20px;
    }
    .service-main .banner-box .title-box {
        padding: 40px 0 30px;
    }
    .service-main .banner-box .title-box .service-title {
        font-size: 32px;
    }
    .service-main .banner-box .service-p {
        font-size: 16px;
        padding: 0 41px;
    }
    .service-main .banner-box .service-p br {
        display: block;
    }
    .service-main .banner-box a {
        font-size: 16px;
        margin: 25px 0;
    }
    .service-main .service-info .second-imgBox .box01 p {
        font-size: 13px;
    }
    .service-main .service-info .second-imgBox .box02 > p {
        font-size: 13px;
    }
    #service02 .flex-box {
        width: 95%;
        margin: 0 auto;
        padding: 0;
    }
    #service02 .flex-box .flex-list .flex-title {
        font-size: 16px;
        padding-bottom: 20px;
    }
    #service02 .flex-box .flex-list .flex-info {
        padding: 0 20px;
        line-height: 24px;
        margin-bottom: 20px;
    }
    #service02 .flex-box .flex-list:nth-child(2) .sub-flex-box02 p {
        font-size: 14px;
    }
    #service02 .flex-box .flex-list:nth-child(1) .flex-img-box {
        text-align: center;
        font-size: 0;
    }
    #service02 .flex-box .flex-list:nth-child(1) .flex-img-box > img {
        width: 95%;
    }
    #service03.service-main .service-info .img-box .box02 p {
        font-size: 14px;
    }
    #service03 .flex-box {
        width: 95%;
        margin: 0 auto 30px;
    }
    #service03 .flex-box .flex-list:nth-child(2) .flex-right {
        width: 100%;
        padding: 0;
        align-items: center;
    }
    #service03 .flex-box .flex-list:nth-child(2) .flex-right img {
        width: 95%;
    }
    #service03 .second-box .flex-list:nth-child(1) .flex-left img {
        width: 95%;
    }
    #service03 .flex-box .flex-list:nth-child(1) .flex-left {
        padding: 20px 0 0;
    }
    .section-main .section-wrap .ai-inner .ai-title {
        font-size: 24px;
    }
    .user-section {
        padding-top: 75px;
    }
    .user-section .user-inner .swiper-button {
        width: 95%;
    }
    .footer .footer-inner .footer-top span .company-link {
        font-size: 13px;
    }
    .footer .footer-inner .footer-bottom p {
        font-size: 13px;
    }
    .footer .footer-inner .footer-top .footer-link .select-box > h3 {
        line-height: 34px;
    }
    .footer .footer-inner .footer-top .footer-link .select-box ul a {
        font-size: 12px;
    }
    .mo-br {
        display: block;
    }
}