@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0px;
    padding: 0px;
}
img {
    padding: 0px;
    margin: 0px;
    border: 0px;
}
ul,
ol,
li {
    list-style: none;
}
a {
    color: black;
    text-decoration: none;
}
html,
body {
    width: 100%;
    height: 100%;
    font-family: 'Noto Sans KR', sans-serif;
}

/* 헤더 */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    height: 70px;
    background: transparent;
    text-align: center;
    z-index: 998;
    transition: all 0.5s;
}
header .header_inner {
    position: relative;
    max-width: 1275px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
header .header_inner .logo_area {
    position: absolute;
    top: 18px;
    left: 20px;
}
header .header_inner .logo_area a {
    display: block;
    overflow: hidden;
    width: 124px;
    height: 32px;
    background: url(../img/logow.png) no-repeat center center;
    background-size: 100%;
}
header .header_inner .gnb_area {
    position: absolute;
    top: 23px;
    right: 63px;
}
header .header_inner .gnb_area .gnb {
    display: flex;
}
header .header_inner .gnb_area .gnb .menu {
    margin-right: 30px;
}
header .header_inner .gnb_area .gnb .menu.rb {
    margin-left: 48px;
}
header .header_inner .gnb_area .gnb .menu.bl a,
header .header_inner .gnb_area .gnb .menu.rb a {
    color: #58a7ff;
}
header .header_inner .gnb_area .gnb .menu .red {
    color: #cb251e;
}
header .header_inner .gnb_area .gnb .menu a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}
header .header_inner .nav_toggle {
    position: absolute;
    top: 23px;
    right: 20px;
    cursor: pointer;
}
header .header_inner .nav_toggle .toggle {
    position: relative;
    width: 30px;
    height: 25px;
}
header .header_inner .nav_toggle span {
    position: absolute;
    display: block;
    width: 30px;
    height: 3px;
    background: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
header .header_inner .nav_toggle span::after {
    position: absolute;
    content: '';
    width: 30px;
    height: 3px;
    background: #ffffff;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
header .header_inner .nav_toggle span::before {
    position: absolute;
    content: '';
    width: 30px;
    height: 3px;
    background: #ffffff;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
header .header_inner .gnb_area .gnb .menu .sub_menu {
    background: rgba(0, 0, 0, 0.796);
    width: 140px;
    padding: 10px 0 10px 15px;
    text-align: left;
    margin-top: 22px;
    position: absolute;
    left: -15%;
    display: none;
}
header .header_inner .gnb_area .gnb .menu.s01,
header .header_inner .gnb_area .gnb .menu.s02 {
    position: relative;
    height: 46px;
}
header .header_inner .gnb_area .gnb .menu.s01:hover .sub_menu.s01,
header .header_inner .gnb_area .gnb .menu.s02:hover .sub_menu.s02 {
    display: block;
}
header .header_inner .gnb_area .gnb .menu .sub_menu li a {
    color: #cccccc;
    font-size: 15px;
    line-height: 40px;
    font-weight: 400;
    cursor: pointer;
    display: block;
}
header .header_inner .gnb_area .gnb .menu .sub_menu li:hover a {
    color: #d2261f;
}

/* 햄버거 메뉴 */
.scroll_content {
    position: fixed;
    width: 100%;
    background: #191b1c;
    z-index: 999;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
.scroll_content .gnb_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1275px;
    margin: 0 auto;
}
.scroll_content .gnb_wrap .logo {
    position: absolute;
    left: 20px;
    top: 18px;
    width: 124px;
    height: 32px;
    background: url(../img/logow.png) no-repeat center center;
    background-size: 100%;
}
.scroll_content .gnb_wrap .close {
    position: absolute;
    right: 20px;
    top: 24px;
    font-size: 20px;
    color: #ffffff;
    text-decoration: underline;
    cursor: pointer;
}
.scroll_content .gnb_wrap ul {
    display: flex;
    position: absolute;
    justify-content: center;
    left: 55%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-100%, -50%);
    -o-transform: translate(-50%, -50%);
}
.scroll_content .gnb_wrap ul li {
    margin-right: 151px;
}
.scroll_content .gnb_wrap ul li .gnb_tit {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}
.scroll_content .gnb_wrap ul li .gnb_sub {
    margin-top: 30px;
}
.scroll_content .gnb_wrap ul li .gnb_sub a {
    font-size: 24px;
    text-align: left;
    color: #ffffff;
    white-space: nowrap;
}
.scroll_content .gnb_wrap ul li .gnb_sub a:hover {
    color: #e73728;
}
.scroll_content .gnb_wrap ul li .gnb_tit.red:hover {
    color: #e73728;
}
/* 메인 */
.main_wrap {
    width: 100%;
    height: 494px;
    background: url(../img/au_banner.png) no-repeat center center;
    background-size: cover;
    text-align: center;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    position: relative;
}
.main_wrap .main {
    position: absolute;
    bottom: 0;
    left: 50%;
    transition: 1s;
    overflow: hidden;
    animation: 1s main;
    -webkit-animation: 1s main;
    animation-fill-mode: forwards;
    opacity: 0;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
}
.main_wrap .main.s01 {
    width: 980px;
    height: 138px;
    background: url(../img/company.png) no-repeat center center;
    background-size: cover;
}
.main_wrap .main.s02 {
    width: 890px;
    height: 138px;
    background: url(../img/services.png) no-repeat center center;
    background-size: cover;
}
.main_wrap .main.s03 {
    width: 900px;
    height: 138px;
    background: url(../img/contact.png) no-repeat center center;
    background-size: cover;
}
.main_wrap .main.s04 {
    width: 790px;
    height: 180px;
    background: url(../img/hire.png) no-repeat center center;
    background-size: cover;
}
@keyframes main {
    0% {
        opacity: 0;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        bottom: 50px;
    }
    100% {
        opacity: 1;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        bottom: 0;
    }
}
/* SNB */
.snb_wrap {
    width: 100%;
    height: 60px;
    background: #f7f7f7;
    overflow: hidden;
}
.snb_wrap ul {
    display: flex;
    line-height: 60px;
    justify-content: center;
    transform: translateX(15px);
}
.snb_wrap ul li {
    margin-right: 40px;
}
.snb_wrap ul li:last-child {
    margin-right: 0px;
}
.snb_wrap ul li a {
    font-size: 18px;
    color: #cccccc;
    font-weight: 500;
    transition: color 0.3s;
}
.snb_wrap ul li.on a {
    color: #616161;
}
.snb_wrap ul li a:hover {
    color: #616161;
}
/* 비엔 시스템은 2019년에 시작한 
IT 스타트업 기업입니다.*/
.start_wrap {
    width: 100%;
    padding: 80px 0;
    text-align: center;
}
.start_wrap .start {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
}
.start_wrap .start:first-child{
    margin-bottom: 150px;
}
.rline {
    width: 100px;
    height: 3px;
    background: #e73728;
}
.start_wrap .start .rline {
    margin: 0 auto 20px;
}
.start_wrap .start .sta_txt {
    text-align: center;
}
.start_wrap .start .sta_txt .sta_main {
    font-size: 28px;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 38px;
}
.red {
    color: #e73728;
}
.start_wrap .start .sta_txt .sta_sub {
    margin: 30px auto 40px;
    font-size: 18px;
    color: #616161;

    /* 줄바꿈 수정 */
    word-break: keep-all;
}
.start_wrap .start .sta_img {
    width: 453px;
    height: 300px;
    background: url(../img/sta01.png) no-repeat center center;
    margin: 0 auto;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
/* Our Purpose */
.op_wrap {
    width: 100%;
    padding: 80px 0;
    background: #eeeeee;
}
.op_wrap .ourp {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.op_wrap .ourp .rline {
    margin: 0 auto 20px;
}
.op_wrap .ourp .op_main {
    margin: 0 auto;
    font-size: 28px;
    font-weight: 700;
}
.op_wrap .ourp .op_sub {
    margin: 20px auto 35px;
    color: #ebebeb;
    font-size: 18px;
    color: #616161;

    /* 줄바꿈 수정 */
    word-break: keep-all;
}
.op_wrap .opcircle {
    display: flex;
    justify-content: center;
    align-items: center;
}
.op_wrap .opcircle li {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #ffffff;
    margin-right: 60px;
    position: relative;
}
.op_wrap .opcircle li p {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    color: #424242;
    font-weight: 700;
    font-size: 20px;
}
.op_wrap .opcircle li:last-child {
    margin-right: 0;
}
/* History */
.history_wrap {
    padding: 80px 0 100px;
    text-align: center;
}
.history_wrap .rline {
    margin: 0 auto 15px;
}
.history_wrap .history_tit {
    font-size: 34px;
    color: #212121;
    font-weight: 700;
}
.history_wrap .history {
    max-width: 1200px;
    margin: 60px auto 0;
    width: 100%;
    height: 180px;
}
.history_wrap .history .hiline {
    width: 100%;
    height: 3px;
    background: #eeeeee;
    position: relative;
}
.history_wrap .history .hiline::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 33px;
    height: 3px;
    background: #eeeeee;
    right: -4px;
    top: -11px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.history_wrap .swiper-container {
    height: 200px;
    padding-top: 20px;
    margin-top: -12px;
}
.history_wrap .swiper-container .swiper-wrapper.hilist {
    height: 180px;
    margin-top: -10px;
}
.history_wrap .swiper-container .swiper-wrapper .swiper-slide {
    width: 160px;
    color: #2d2d2d;
    text-align: left;
    font-weight: 500;
    margin-top: 15px;
    line-height: 30px;
}
.history_wrap .swiper-container .swiper-wrapper .swiper-slide::before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 12px;
    height: 12px;
    background: #e73728;
    top: -20px;
}
.history_wrap .swiper-container .swiper-wrapper .swiper-slide.year {
    width: 120px;
    margin-top: 65px;
    font-size: 50px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    color: #e73728;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #e73728;
    font-weight: 800;
}
.history_wrap .swiper-container .swiper-wrapper .swiper-slide.year::before {
    display: none;
}
/* Welcome to BN system */
.wb_wrap {
    padding: 80px 0;
    position: relative;
    background: url(../img/op_banner.png) no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
}
.wb_wrap .welcome {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.wb_wrap .welcome .rline {
    margin: 0 auto 20px;
}
.wb_wrap .welcome .wb_tit {
    font-size: 34px;
    color: #000000;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 600;
}
.wb_wrap .welcome .wb_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 911px;
    width: 100%;
    margin: 0 auto;
}
.wb_wrap .welcome .wb_main li .circle {
    width: 10px;
    height: 10px;
    background: #e73728;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.wb_wrap .welcome .wb_main li .wb_ico.s01 {
    width: 40px;
    height: 37px;
    margin: 0 auto 20px;
    background: url("../img/Icon\ material-desktop-mac.svg") no-repeat center
        center;
    background-size: contain;
}
.wb_wrap .welcome .wb_main li .wb_ico.s02 {
    width: 34px;
    height: 39px;
    margin: 0 auto 20px;
    background: url("../img/Icon\ awesome-building.svg") no-repeat center center;
    background-size: contain;
}
.wb_wrap .welcome .wb_main li .wb_ico.s03 {
    width: 59px;
    height: 38px;
    margin: 0 auto 20px;
    background: url("../img/Icon\ ionic-ios-people.svg") no-repeat center center;
    background-size: contain;
}
.wb_wrap .welcome .wb_main li .wb_txt {
    font-size: 18px;
    color: #cccccc;
    font-weight: 500;
    margin-bottom: 10px;
}
.wb_wrap .welcome .wb_main li .pro,
.wb_wrap .welcome .wb_main li .cli,
.wb_wrap .welcome .wb_main li .peo {
    font-size: 50px;
    color: #ffffff;
    font-weight: 800;
    text-shadow: 3px 3px 5px #00000029;
}
/* Our Clients */
.oc_wrap {
    width: 100%;
    padding: 80px 0;
}
.oc_wrap .ourc {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.oc_wrap .ourc .rline {
    margin: 0 auto 20px;
}
.oc_wrap .ourc .oc_tit {
    font-size: 34px;
    color: #000000;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 600;
}
.oc_wrap .ourc .oc_main {
    margin-top: 90px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.oc_wrap .ourc .oc_main li {
    width: 17%;
    margin-top: 40px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.08);
}
.oc_wrap .ourc .oc_main li img {
    width: 100%;
}
.oc_wrap .ourc .oc_main li:first-child,
.oc_wrap .ourc .oc_main li:nth-child(2),
.oc_wrap .ourc .oc_main li:nth-child(3),
.oc_wrap .ourc .oc_main li:nth-child(4),
.oc_wrap .ourc .oc_main li:nth-child(5)
 {
    margin-top: 0px;
}
/* Contact */
.ct_wrap {
    width: 100%;
    padding: 100px 0;
    background: url(../img/ct_img.png) no-repeat center center;
    background-size: cover;
}

.ct_wrap .contact {
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}
.ct_wrap .contact .rline {
    margin-bottom: 20px;
}
.ct_wrap .contact .ct_tit {
    color: #ffffff;
    font-size: 34px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 600;
}
.ct_wrap .contact .ct_main {
    margin-top: 20px;
    font-size: 40px;
    font-weight: 500;
    color: #ffffff;
}
/*텍스트 효과*/
.ct_main span {
  position: relative;
  top: 5px;
  display: inline-block;
  animation: bounce 1s ease infinite alternate;
  /*text-shadow: 0 1px 0 #CCC,
               0 2px 0 #CCC,
               0 3px 0 #CCC,
               0 4px 0 #CCC,
               0 5px 0 #CCC,
               0 6px 0 transparent,
               0 7px 0 transparent,
               0 8px 0 transparent,
               0 9px 0 transparent,
               0 10px 10px rgba(0, 0, 0, .4);*/
}

.ct_main span:nth-child(2) { animation-delay: 0.1s; }
.ct_main span:nth-child(3) { animation-delay: 0.2s; }
.ct_main span:nth-child(4) { animation-delay: 0.3s; }
.ct_main span:nth-child(5) { animation-delay: 0.4s; }
.ct_main span:nth-child(6) { animation-delay: 0.5s; }
.ct_main span:nth-child(7) { animation-delay: 0.6s; }
.ct_main span:nth-child(8) { animation-delay: 0.7s; }

@keyframes bounce {
  100% {
    top: -5px;
    /*text-shadow: 0 1px 0 #CCC,
                 0 2px 0 #CCC,
                 0 3px 0 #CCC,
                 0 4px 0 #CCC,
                 0 5px 0 #CCC,
                 0 6px 0 #CCC,
                 0 7px 0 #CCC,
                 0 8px 0 #CCC,
                 0 9px 0 #CCC,
                 0 50px 25px rgba(0, 0, 0, .2);*/
  }
}


.ct_wrap .contact .ct_btn {
    width: 165px;
    height: 45px;
    border: 1px solid #ffffff;
    margin-top: 40px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    cursor: pointer;
/*    background: transparent;*/
    transition: all 0.7s ease-out;
    background: linear-gradient(270deg, rgba(225,225,225), rgba(225,225,225), rgba(225,225,225,0), rgba(225,225,225,0));
  background-position: 1% 50%;
  background-size: 300% 300%;
}
.ct_wrap .contact .ct_btn:hover {
  border: 1px solid rgba(255, 255, 255, 0);
  background-position: 99% 50%;
}
.ct_wrap .contact .ct_btn:hover a {
    color: #e73728;
}
.ct_wrap .contact .ct_btn a {
    line-height: 45px;
    color: #ffffff;
    font-weight: 500;
    display: block;
    letter-spacing: 0.1rem;
    transition: all 0.7s ease-out;
}
/* CI */
.ci_wrap {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0;
}
.ci_wrap .rline {
    width: 80px;
    margin: 0 auto 20px;
}
.ci_wrap .ci_tit {
    color: #212121;
}
.ci_wrap .ci_tit.s01 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}
.ci_wrap .ci_sub {
    font-size: 18px;
    color: #616161;
    line-height: 30px;
}
.ci_wrap .gline {
    width: 40px;
    height: 2px;
    background: #cccccc;
    margin: 40px auto 8px;
}
.ci_wrap .ci_tit.s02 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.ci_wrap .logoimg.s01 img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
.ci_wrap .color {
    display: flex;
    justify-content: center;
    transform: translateX(-25px);
    -webkit-transform: translateX(-25px);
    -moz-transform: translateX(-25px);
    -ms-transform: translateX(-25px);
    -o-transform: translateX(-25px);
}
.ci_wrap .color li .box {
    width: 60px;
    height: 60px;
    margin: 0 auto 8px;
}
.ci_wrap .color li {
    margin-right: 40px;
    width: 70px;
    text-align: center;
}
.ci_wrap .color li:last-child {
    margin-right: 0px;
}
.ci_wrap .color li .box.s01 {
    background: #040000;
}
.ci_wrap .color li .box.s02 {
    background: #d2261f;
}
.ci_wrap .color li p {
    font-size: 16px;
    color: #616161;
    white-space: nowrap;
    line-height: 28px;
    position: relative;
}
.ci_wrap .color li:first-child {
    width: auto;
    margin-right: 25px;
    margin-top: 67px;
}
.ci_wrap .color li:first-child p {
    color: #cccccc;
}
.ci_wrap .logoimg.s02 {
    width: 100%;
    margin: 80px auto 0;
}
.ci_wrap .logoimg.s02 img {
    max-width: 100%;
    height: auto;
}
/* location */
.location_wrap {
    max-width: 1270px;
    width: 100%;
    margin: 0 auto;
    padding: 70px 0;
    text-align: center;
}
.location_wrap .rline {
    width: 80px;
    margin: 0 auto 20px;
}
.location_wrap .location_tit {
    font-size: 28px;
    color: #212121;
    font-weight: 700;
}
.location_wrap .location_sub {
    font-size: 20px;
    color: #212121;
    font-weight: 500;
    margin: 30px auto 10px;
}
.location_wrap .location_con {
    font-size: 18px;
    color: #616161;
    line-height: 34px;
    margin-bottom: 100px;
    position: relative;
}
.location_wrap .location_con::after {
    content: '';
    display: block;
    position: absolute;
    width: 2px;
    height: 40px;
    background: #cccccc;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.location_wrap .map {
    width: 95%;
    margin: 0 auto;
}
.location_wrap .map iframe {
    width: 100%;
    height: 400px;
}
/* 서비스 소개 */
.main_wrap.s02 {
    background: url(../img/sv_banner.png) no-repeat center center;
    background-size: cover;
}
/* IT 제작 + 심리테스트 */
.snb_wrap.s02 ul {
    transform: translateX(26px);
    -webkit-transform: translateX(26px);
    -moz-transform: translateX(26px);
    -ms-transform: translateX(26px);
    -o-transform: translateX(26px);
}
.it_wrap {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.it_wrap .rline {
    width: 80px;
    margin: 0 auto 20px;
}
.it_wrap .it_tit {
    font-size: 28px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 20px;
}
.it_wrap .it_sub {
    font-size: 18px;
    color: #616161;
    margin-bottom: 30px;
    word-break: keep-all;
}

.blob {
  position: absolute;
  top: 0;
  left: 0;
  fill: #feffe8;
  width: 20vmax;
  z-index: -1;
  animation: move1 12s ease-in-out infinite;
  transform-origin: 50% 50%;
}

@keyframes move1 {
  0%   { transform: scale(1)   translate(10px, -30px); }
  38%  { transform: scale(0.8, 1) translate(100vw, 30vh) rotate(160deg); }
  40%  { transform: scale(0.8, 1) translate(100vw, 30vh) rotate(160deg); }
  78%  { transform: scale(1.3) translate(0vw, 50vh) rotate(-20deg); }
  80%  { transform: scale(1.3) translate(0vw, 50vh) rotate(-20deg); }
  100% { transform: scale(1)   translate(10px, -30px); }
}
.blob2 {
  position: absolute;
  top: 0;
  right: 90px;
  fill: #ffe8f6;
  width: 10vmax;
  z-index: -1;
  animation: move2 12s ease-in-out infinite;
  transform-origin: 50% 50%;
}

@keyframes move2 {
  0%   { transform: scale(1)   translate(0px, 70vh); }
  38%  { transform: scale(0.8, 1) translate(-90vw, 10vh) rotate(90deg); }
  40%  { transform: scale(0.8, 1) translate(-90vw, 10vh) rotate(90deg); }
  78%  { transform: scale(1.3) translate(0vw, 10vh) rotate(-160deg); }
  80%  { transform: scale(1.3) translate(0vw, 10vh) rotate(-160deg); }
  100% { transform: scale(1)   translate(0px, 70vh); }
}


.it_wrap .swiper-container {
    max-width: 1200px;
    width: 100%;
    padding: 20px 0 50px;
}
.it_wrap .swiper-container .swiper-wrapper .swiper-slide {
    width: 320px !important;
    height: 400px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.161);
    background: #fff;
}
.it_wrap .swiper-container .swiper-wrapper .swiper-slide .itcon_img {
    width: 297px;
    height: 198px;
    margin: 15px auto 0;
    position: relative;
}
.it_wrap .swiper-container .swiper-wrapper .swiper-slide .itcon_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.it_wrap .swiper-container .swiper-wrapper .swiper-slide .itcon_img.s01 img {
    object-fit: scale-down;
}
.it_wrap .swiper-container .swiper-wrapper .swiper-slide .itcon_tit {
    font-size: 22px;
    font-weight: 700;
    color: #212121;
    margin: 25px 0 20px;
}
.it_wrap .swiper-container .swiper-wrapper .swiper-slide p {
    font-size: 16px;
    color: #616161;
}
.it_wrap .swiper-container-horizontal > .swiper-scrollbar {
    height: 10px;
}
.it_wrap .swiper-scrollbar-drag {
    background: #d2261f;
}
.it_btn {
    width: 220px;
    height: 60px;
/*    border: 3px solid #888888;*/
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    text-align: center;
    margin: 80px auto 0;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 10;
    background: #888888;
    
}
/*-----------------------버튼 효과---------------------------*/
.it_btn::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #d2261f;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg); 
    transform: skewX(-20deg);   
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
     box-shadow:2px 0px 14px rgba(0,0,0,.6);
  } 

.it_btn::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #f77a75;
    position: absolute;
  -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg); 
    transform: skewX(-20deg);   
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2,.95,.57,.99);
    -moz-transition: all .4s cubic-bezier(.2,.95,.57,.99);
    -o-transition: all .4s cubic-bezier(.2,.95,.57,.99);
    transition: all .4s cubic-bezier(.2,.95,.57,.99);
    box-shadow: 2px 0px 14px rgba(0,0,0,.6);
}
.it_btn:hover::before {
  opacity:1;
  width: 116%;
}
.it_btn:hover::after {
  opacity:1;
  width: 120%;
}
/*.it_btn:hover {
    border: 3px solid #d2261f;
}*/
/*.it_btn:hover p {
    color: #fff;
}
.it_btn:hover .redarr {
    background: url(../img/redarr2.png) no-repeat center center;
}*/
/*--------------------------------------------------------------*/
.it_btn p {
    color: #fff;
    font-size: 18px;
    line-height: 58px;
}
.it_btn .redarr {
    display: inline-block;
    width: 8px;
    height: 13px;
    background: url(../img/redarr2.png) no-repeat center center;
    margin-left: 10px;
}
/* 교육 프로그램 */
.it_wrap .edcon_wrap {
    max-width: 725px;
    width: 100%;
    margin: 0 auto;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
}
.it_wrap .edcon_wrap li {
    width: 210px;
    height: 210px;
    box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.161);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
/*    margin-right: 20px;*/
    position: relative;
    white-space: nowrap;
}
.it_wrap .edcon_wrap li:before {
    content: "";
    display: block;
    animation: puls 1s ease infinite alternate;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.161);
}
.it_wrap .edcon_wrap li:nth-child(2):before {
    animation-delay: 0.6s;
}
.it_wrap .edcon_wrap li:nth-child(3):before {
    animation-delay: 1s;
}
@keyframes puls {
    100% {
        transform: scale(1.2);
    }
}

.it_wrap .edcon_wrap li:last-child {
    margin-right: 0px;
}
.it_wrap .edcon_wrap li .edcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.it_wrap .edcon_wrap li .edcon .edcon_tit {
    font-size: 22px;
    color: #212121;
    font-weight: 700;
}
.it_wrap .edcon_wrap li .edcon .edcon_sub {
    font-size: 16px;
    color: #616161;
    margin-top: 10px;
}
/* CONTACT */
.main_wrap.s03 {
    background: url(../img/ct_banner.png) no-repeat center center;
    background-size: cover;
}
.it_wrap .contact_wrap {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.161);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 30px 0;
}
.it_wrap .contact_wrap .gline {
    width: 40px;
    height: 2px;
    background: #cccccc;
    margin: 0 auto 20px;
}
.it_wrap .contact_wrap .contact_tit {
    font-size: 28px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 30px;
}
.it_wrap .contact_wrap form {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.it_wrap .contact_wrap form input[type='text'] {
    max-width: 320px;
    width: 100%;
    border: none;
    border-bottom: 2px solid #cccccc;
    padding: 10px 0;
    outline: none;
    font-size: 20px;
    font-weight: 500;
    color: #616161;
    font-family: 'Noto Sans KR', sans-serif;
    margin-top: 10px;
}
.it_wrap .contact_wrap form input[type='text']::placeholder {
    font-size: 20px;
    font-weight: 700;
    color: #857575;
    font-family: 'Noto Sans KR', sans-serif;
}
.it_wrap .contact_wrap form select {
    max-width: 320px;
    width: 100%;
    margin-top: 30px;
    padding: 10px 0;
    outline: none;
    border: none;
    border-bottom: 2px solid #cccccc;
    font-size: 20px;
    font-weight: 700;
    color: #616161;
    font-family: 'Noto Sans KR', sans-serif;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none; /* 화살표 없애기 공통*/
    background: url(../img/selarr.svg) no-repeat 95% 60%;
    background-size: 10px 15px;
}
.it_wrap .contact_wrap form select::-ms-expand {
    display: none; /*숨겨진 화살표의 영역유지 X */
    display: hidden; /*숨겨진 화살표의 영역유지 O */
}
.it_wrap .contact_wrap form label[for='detail'] {
    margin: 40px 0 5px;
    width: 100%;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    color: #616161;
    font-family: 'Noto Sans KR', sans-serif;
}
.it_wrap .contact_wrap form label[for='detail'] + textarea {
    width: 100%;
    outline: none;
    border: 2px solid #cccccc;
    resize: none;
    color: #616161;
    font-family: 'Noto Sans KR', sans-serif;
    padding: 5px;
    font-size: 16px;
}
.it_wrap .contact_wrap form label[for='file'] {
    max-width: 400px;
    width: 100%;
    text-align: left;
    padding: 10px 0;
    border-bottom: 2px solid #cccccc;
    font-size: 20px;
    font-weight: 700;
    color: #616161;
    font-family: 'Noto Sans KR', sans-serif;
    cursor: pointer;
    background: url(../img/download.svg) no-repeat 95% 60%;
    margin-top: 10px;
}
.it_wrap .contact_wrap form label[for='file'] .file_de,
.it_wrap .contact_wrap form label[for='file01'] .file_de.s01,
.it_wrap .contact_wrap form label[for='file02'] .file_de.s02,
.it_wrap .contact_wrap form label[for='file03'] .file_de.s03 {
    font-size: 16px;
    font-weight: 400;
    color: #aaaaaa;
    margin-left: 10px;
}
.it_wrap .contact_wrap form input[type='file'] {
    text-indent: -85px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Noto Sans KR', sans-serif;
    color: #aaaaaa;
    position: relative;
    left: 5px;
    top: -2px;
    cursor: pointer;
    display: none;
    width: 240px;
}
.it_wrap .contact_wrap form label[for='che'] {
    width: 100%;
    text-align: left;
    margin-top: 40px;
    font-size: 16px;
    color: #616161;
    font-weight: 500;
    vertical-align: middle;
}
.it_wrap .contact_wrap form label[for='turnstile'] {
    width: 100%;
    text-align: left;
    margin-top: 40px;
    font-size: 16px;
    color: #616161;
    font-weight: 500;
    vertical-align: middle;
}
.it_wrap .contact_wrap form label[for='che'] .privacy_policy {
    text-decoration: underline;
    cursor: pointer;
    display: inline-block;
}
.it_wrap .contact_wrap form input[type='checkbox'] {
    width: 16px;
    height: 16px;
    border: 2px solid #cccccc;
    vertical-align: middle;
    outline: none;
    margin-right: 10px;
}
.it_wrap .contact_wrap form input[type='submit'] {
    width: 130px;
    height: 50px;
    border: 3px solid #d2261f;
    color: #d2261f;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    box-shadow: 2px 3px 6px #00000029;
    background: #ffffff;
    font-size: 18px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    margin: 40px auto 20px;
    cursor: pointer;
}
/* 인재채용 */
.main_wrap.s04 {
    background: url(../img/hire_banner.png) no-repeat center center;
    background-size: cover;
    line-height: 205px;
}
.it_wrap.s02 .contact_wrap form label[for='file01'],
.it_wrap.s02 .contact_wrap form label[for='file02'],
.it_wrap.s02 .contact_wrap form label[for='file03'] {
    width: 100%;
    text-align: left;
    padding: 10px 0;
    border-bottom: 2px solid #cccccc;
    font-size: 20px;
    font-weight: 700;
    color: #616161;
    font-family: 'Noto Sans KR', sans-serif;
    cursor: pointer;
    background: url(../img/download.svg) no-repeat 98% 60%;
    margin-top: 10px;
}
.it_wrap.s02 .contact_wrap form select {
    margin: 10px 0 20px;
}
.it_wrap.s02 .contact_wrap form label[for='detail'] {
    margin-top: 30px;
}
.it_wrap.s02 .contact_wrap form label[for='detail'] .detail_sub {
    margin: 4px 0 10px;
}
.it_wrap.s02 .contact_wrap form label[for='detail'] .detail_sub p {
    font-size: 16px;
    color: #616161;
    font-weight: 500;
}
.it_wrap.s02 .contact_wrap form label[for='check'] {
    margin-top: 10px;
}
.hire_detail {
    text-align: center;
}
.hire_detail .rline {
    width: 80px;
    margin: 0 auto 20px;
}
.hire_detail .hire_tit {
    font-size: 28px;
    font-weight: 700;
    color: #212121;
}
.hire_detail .procedure {
    display: flex;
    max-width: 700px;
    width: 100%;
    justify-content: space-between;
    margin: 40px auto 80px;
}
.hire_detail .procedure li {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #f2f2f2;
    position: relative;
}
.hire_detail .procedure li::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 80px;
    height: 1px;
    background: #e73728;
    right: -80px;
    top: 50%;
}
.hire_detail .procedure li:last-child::after {
    display: none;
}
.hire_detail .procedure li .pro_con {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.hire_detail .procedure li .pro_con p {
    font-size: 18px;
    font-weight: 700;
    color: #2d2d2d;
    margin-top: 10px;
    white-space: nowrap;
}
.hire_detail .process {
    margin: 20px auto 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1006px;
    width: 100%;
}
.hire_detail .process li p {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
}
.hire_detail .process li .circle {
    width: 10px;
    height: 10px;
    background: #e73728;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
}
.hire_detail .welfare {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1006px;
    width: 100%;
    margin: 0px auto 80px;
}
.hire_detail .welfare li {
    width: calc((100% / 4) - 110px);
    margin-right: 110px;
    margin-top: 40px;
    text-align: center;
    white-space: nowrap;
}
.hire_detail .welfare li:nth-child(4n) {
    margin-right: 0px;
}
.hire_detail .welfare li img {
    width: 100px;
    height: 100px;
    object-fit: scale-down;
}
.hire_detail .welfare li .wel_tit {
    margin: 20px 0 5px;
    font-size: 18px;
    font-weight: 700;
    color: #2d2d2d;
}
.hire_detail .welfare li p {
    font-size: 14px;
    color: #888888;
}
/* 개인정보보호정책 */
.modal_wrap {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    background: rgba(26, 26, 26, 0.938);
    display: none;
}
.modal_wrap .close {
    position: absolute;
    top: 35px;
    right: 480px;
    width: 30px;
    height: 30px;
    background: url(../img/metro-cross.svg) no-repeat center center;
    background-size: contain;
    cursor: pointer;
}
.modal_wrap .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 1000px;
    padding: 0 30px;
    height: 600px;
    color: rgb(207, 207, 207);
    overflow-y: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.modal_wrap .inner::-webkit-scrollbar {
    background: transparent;
    width: 10px;
}
.modal_wrap .inner::-webkit-scrollbar-thumb {
    background: #d2261f;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.modal_wrap .inner h2 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 40px;
}
.modal_wrap .inner .first {
    font-size: 18px;
    font-weight: 500;
}
.modal_wrap .inner .first p:last-child {
    margin: 30px 0;
}
.modal_wrap .inner .sub {
    margin-top: 20px;
}
.modal_wrap .inner .sub_tit,
.modal_wrap .inner .sub_con {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* 푸터 */
footer {
  width: 100%;
  height: 200px;
  background: #111111;
}
.footer_wrap {
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
}
.footer_wrap ul {
  display: flex;
  justify-content: space-between;
}
.footer_wrap ul .left {
  margin-top: 54px;
  text-align: center;
}
.footer_wrap ul .left .lef_tit {
  font-size: 15px;
  color: #cccccc;
}
.footer_wrap ul .left a {
/*  margin-top: 2px;*/
  font-size: 16px;
  color: #d2261f;
}
.footer_wrap ul .left .de {
  margin-top: 2px;
  font-size: 13px;
  color: #818181;
  line-height: 20px;
}
.footer_wrap ul .center {
  margin-top: 33px;
}
.footer_wrap ul .center .center_top li {
  margin-right: 39px;
}
.footer_wrap ul .center .center_top li:last-child {
  margin-right: 0px;
}
.footer_wrap ul .center .center_top li a {
  font-size: 16px;
  color: #aaaaaa;
    transition: color 0.3s;
}
.footer_wrap ul .center .center_top li a:hover {
    color: #d2261f;
}
.footer_wrap ul .center .center_mid {
  font-size: 12px;
  color: #616161;
  margin-top: 23px;
  text-align: center;
  line-height: 18px;
}
.footer_wrap ul .center .copy {
  margin-top: 31px;
  font-size: 10px;
  color: #424242;
  text-align: center;
}
.footer_wrap ul .right {
  margin-top: 68px;
}
.footer_wrap ul .right .footer_btn {
  width: 120px;
  height: 24px;
  border-radius: 11px;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -ms-border-radius: 11px;
  -o-border-radius: 11px;
  border: 1px solid #616161;
  font-size: 14px;
  color: #919191;
  text-align: center;
  line-height: 24px;
  cursor: pointer;
    transition: all 0.3s;
}
.footer_wrap ul .right .footer_btn:hover {
    border: 1px solid #eee;
    background: #eee;
    color: #616161;
}
.footer_wrap ul .right .footer_btn:last-child {
  margin-top: 14px;
}
.footer_wrap ul .right .footer_btn .btn_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  margin: 0 auto;
}
.footer_wrap ul .right .footer_btn .btn_wrap .arr {
  display: block;
  width: 10px;
  height: 6px;
  background: url(../img/arrow.svg);
}
.footer_wrap ul .right .footer_btn:last-child .btn_wrap p {
  margin-left: 10px;
}
@media screen and (max-width: 1903px) {
    .modal_wrap .close {
        right: 24.8vw;
    }
}
@media screen and (max-width: 1150px) {
    /* 햄버거 메뉴 */
    .scroll_content .gnb_wrap ul {
        flex-direction: column;
        left: 30%;
    }
    .scroll_content .gnb_wrap ul li {
        margin: 30px 0 0 0;
    }
    .scroll_content .gnb_wrap ul li .gnb_tit {
        font-size: 30px;
    }
    .scroll_content .gnb_wrap ul li .gnb_sub a {
        font-size: 18px;
    }
    /* 푸터 */
    .footer_wrap ul {
        display: flex;
        justify-content: center;
    }
    .footer_wrap ul .left {
        display: none;
    }
    .footer_wrap ul .right {
        display: none;
    }
    /* 비엔 시스템은 2019년에 시작한 
  IT 스타트업 기업입니다.*/
    .start_wrap .start {
        width: 90%;
    }
    .start_wrap .start .sta_txt .sta_main {
        font-size: 30px;
        line-height: 40px;
    }
    .start_wrap .start .sta_txt .sta_sub {
        font-size: 16px;
    }
    .op_wrap .ourp .op_sub {
        font-size: 16px;
    }
    .op_wrap .ourp {
        width: 90%;
    }
    .wb_wrap .welcome {
        width: 90%;
    }
    .it_wrap {
        width: 90%;
    }
    .hire_detail .process {
        width: 90%;
    }
    .hire_detail .welfare {
        max-width: 90%;
        justify-content: center;
        overflow: hidden;
    }
    .hire_detail .welfare li {
        width: calc((100% / 3) - 80px);
        margin-right: 80px;
        margin-top: 40px;
        text-align: center;
        white-space: nowrap;
        /*transform: translateX(7.8261vw);
        -webkit-transform: translateX(7.8261vw);
        -moz-transform: translateX(7.8261vw);
        -ms-transform: translateX(7.8261vw);
        -o-transform: translateX(7.8261vw);*/
    }
    .hire_detail .welfare li:nth-child(4n) {
        margin-right: 80px;
    }
    .hire_detail .welfare li:nth-child(3n) {
        margin-right: 0px;
    }
    .hire_detail .welfare li:last-child {
        margin-right: 0px;
    }
    .modal_wrap .close {
        top: 30px;
        right: 50%;
        margin-right: -15px;
    }
    .modal_wrap .inner {
        width: 80%;
    }
}
@media screen and (max-width: 900px) {
    /* 헤더 */
    .gnb_area {
        display: none;
    }
    /* 메인 */
    .main_wrap .main .main_tit {
        font-size: 140px;
        line-height: 120px;
    }
    .container .con_wrap .need {
        font-size: 20px;
    }
    .container .con_wrap .bn .bnt {
        font-size: 48px;
    }
    .container .con_wrap .bn {
        font-size: 32px;
    }
    .start_wrap .start .sta_txt {
        text-align: center;
        width: 90%;
        margin: 0 auto;
    }
    .start_wrap .start .sta_txt .rline {
        margin: 0 auto 20px;
        width: 15%;
    }
    .start_wrap .start .sta_img {
        margin-top: 50px;
    }
    .op_wrap .ourp {
        width: 90%;
    }
    .ct_wrap .contact {
        width: 90%;
    }
    .start_wrap .start .sta_txt .sta_sub {
        width: 90%;
        margin: 40px auto 0;
    }
    .op_wrap .ourp .op_main {
        width: 90%;
        font-size: 30px;
    }
    .it_wrap .contact_wrap form {
        width: 85%;
    }
    .it_wrap .contact_wrap form input[type='text'] {
        max-width: 100%;
        margin-bottom: 30px;
        font-size: 18px;
    }
    .it_wrap .contact_wrap form input[type='text']::placeholder {
        font-size: 18px;
    }
    .it_wrap .contact_wrap form select {
        max-width: 100%;
        font-size: 18px;
    }
    .it_wrap .contact_wrap form label[for='detail'] {
        font-size: 18px;
    }
    .hire_detail .process {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hire_detail .process li {
        margin: 30px 15px;
        width: calc((100% / 3) - 30px);
    }
    .hire_detail .process li:nth-child(even) {
        display: none;
    }
    .main_wrap .main.s01 {
        width: 95vw;
        height: 14vw;
        background: url(../img/company.png) no-repeat center center;
        background-size: cover;
    }
    .main_wrap .main.s02 {
        width: 95vw;
        height: 14vw;
        background: url(../img/services.png) no-repeat center center;
        background-size: cover;
    }
    .main_wrap .main.s03 {
        width: 95vw;
        height: 14vw;
        background: url(../img/contact.png) no-repeat center center;
        background-size: cover;
    }
    .main_wrap .main.s04 {
        width: 95vw;
        height: 20vw;
        background: url(../img/hire.png) no-repeat center center;
        background-size: cover;
    }
}
@media screen and (max-width: 760px) {
    .it_wrap .edcon_wrap li {
        width: 27.6316vw;
        height: 27.6316vw;
    }
    .it_wrap .edcon_wrap li .edcon .edcon_tit {
        font-size: 2.8947vw;
    }
    .it_wrap .edcon_wrap li .edcon .edcon_sub {
        font-size: 2.1053vw;
    }
    .it_wrap .it_sub {
        font-size: 2.3684vw;
    }
    .hire_detail .procedure {
        max-width: 90%;
    }

    /* 문단 여백 수정 */
    .start_wrap .start .sta_txt .sta_sub>p{
        display: inline;
    }
    .start_wrap .start .sta_txt .sta_main>br{
        display: none;
    }
    .space{
        display: block;
        margin: 16px 0;
    }
}
@media screen and (max-width: 620px) {
    .hire_detail .procedure {
        width: 45vw;
        flex-direction: column;
    }
    .hire_detail .procedure li {
        width: 45vw;
        height: 45vw;
        margin-bottom: 30px;
    }
    .hire_detail .procedure li:last-child {
        margin-bottom: 0px;
    }
    .hire_detail .procedure li::after {
        display: none;
    }
    .hire_detail .welfare {
        max-width: 100%;
        justify-content: center;
    }
    .hire_detail .welfare li {
        width: calc((100% / 2) - 10px);
        margin-right: 10px;
        white-space: inherit;
        transform: translateX(9.5vw);
        -webkit-transform: translateX(9.5vw);
        -moz-transform: translateX(9.5vw);
        -ms-transform: translateX(9.5vw);
        -o-transform: translateX(9.5vw);
    }
    .hire_detail .welfare li:nth-child(even) {
        margin-right: 0;
    }
    .hire_detail .welfare li img {
        width: 22vw;
        height: 22vw;
        object-fit: contain;
    }
    .hire_detail .welfare li:nth-child(3) {
        margin-right: 10px;
    }
}
@media screen and (max-width: 500px) {
    .main_wrap {
        height: 300px;
    }
    /* 푸터 */
    .footer_wrap ul .center .center_top li a {
        font-size: 3.5vw;
    }
    .footer_wrap ul .center .center_mid {
        font-size: 3vw;
    }
    .footer_wrap ul .center .copy {
        font-size: 3vw;
    }
    .snb_wrap ul li a {
        font-size: 16px;
    }
    .op_wrap .ourp .op_tit,
    .oc_wrap .ourc .oc_tit,
    .ct_wrap .contact .ct_tit {
        font-size: 30px;
        line-height: 34px;
    }
    .main_wrap .main .main_tit {
        font-size: 18vw;
        line-height: 15vw;
        -webkit-text-stroke-width: 1px;
    }
    .start_wrap .start .sta_txt .sta_sub {
        font-size: 16px;
    }
    .wb_wrap .welcome .wb_main {
        flex-direction: column;
    }
    .op_wrap .ourp .op_main {
        font-size: 30px;
    }
    .op_wrap .ourp .op_sub {
        font-size: 16px;
    }
    .start_wrap .start .sta_img {
        width: 80vw;
        height: 60vw;
    }
    .op_wrap .opcircle {
        flex-direction: column;
    }
    .op_wrap .opcircle li {
        margin: 0 0 30px;
        width: 200px;
        height: 200px;
    }
    .op_wrap .opcircle li:last-child {
        margin: 0;
    }
    .wb_wrap .welcome .wb_main li {
        margin-bottom: 50px;
    }
    .wb_wrap .welcome .wb_main li:last-child {
        margin-bottom: 0px;
    }
    .oc_wrap .ourc .oc_main {
        justify-content: space-around;
        margin-top: 25px;
    }

    .oc_wrap .ourc .oc_main li {
        width: calc(50% - 20px);
    }

    .oc_wrap .ourc .oc_main li:first-child, .oc_wrap .ourc .oc_main li:nth-child(2), .oc_wrap .ourc .oc_main li:nth-child(3), .oc_wrap .ourc .oc_main li:nth-child(4), .oc_wrap .ourc .oc_main li:nth-child(5) {
        margin-top: 40px;
    }
    .ct_wrap .contact .ct_main {
        font-size: 30px;
    }
    .scroll_content .gnb_wrap ul li .gnb_tit {
        font-size: 26px;
        cursor: pointer;
    }
    .scroll_content .gnb_wrap ul li .gnb_sub_wrap.on {
        display: block;
    }
    .scroll_content .gnb_wrap ul li .gnb_sub_wrap {
        display: none;
    }
    .scroll_content .gnb_wrap ul li .gnb_sub a {
        font-size: 18px;
    }
    .ci_wrap {
        width: 90%;
    }
    .ci_wrap .ci_sub {
        font-size: 16px;
    }
    .snb_wrap {
        display: none;
    }
    .location_wrap .location_sub {
        width: 60%;
    }
    .it_wrap .edcon_wrap {
        flex-direction: column;
        justify-content: center;
    }
    .it_wrap .edcon_wrap li {
        width: 60vw;
        height: 60vw;
        margin: 0 auto 30px;
    }
    .it_wrap .edcon_wrap li:last-child {
        margin: 0 auto 0;
    }
    .it_wrap .edcon_wrap li .edcon .edcon_tit {
        font-size: 5vw;
    }
    .it_wrap .edcon_wrap li .edcon .edcon_sub {
        font-size: 4vw;
    }
    .it_wrap .it_sub {
        font-size: 4vw;
    }
    .it_wrap .contact_wrap form label[for='file'] {
        max-width: 100%;
        font-size: 18px;
        background: none;
    }
    .it_wrap .contact_wrap form input[type='file'] {
        width: 140px;
    }
    .hire_detail .process li {
        width: calc((100% / 2) - 30px);
    }
    .modal_wrap .inner {
        height: 110vw;
    }
}


/* survey 서베이 페이지 */

#survey .survey-con.conwrap1 {
    width: 100%;
    height: 1080px;
    background: url('../img/survey/conwrap1_bg.png') center no-repeat;
    background-size: cover;
    overflow: hidden;
}

#survey .survey-con .con-box {
    width: 100%;
    height: 100%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    opacity: 0;
}

#survey .survey-con .con-box h2 {
    font-size: 50px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    line-height: 72px;
    margin-top: 70px;
}

#survey .survey-con .con-box p {
    font-size: 23px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    line-height: 36px;
    margin-top: 16px;
    word-break: keep-all;
}

#survey .survey-con.conwrap1 .con-box h2.main-title {
    font-size: 66px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    text-align: center;
    line-height: 74px;
    margin-top: 193px;
}

#survey .survey-con.conwrap1 .con-box h4.main-sub-title {
    font-size: 36px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    text-align: center;
    line-height: 52px;
    margin-top: 25px;
}

#survey .survey-con.conwrap1 .con-box img.con-image {
    width: 714px;
    height: 714px;
    display: block;
    margin: auto;
}

#survey .survey-con.conwrap2 {
    width: 100%;
    height: 600px;
    background-color: #fff;
}

#survey .survey-con.conwrap2 .con-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

#survey .survey-con.conwrap2 .con-box span {
    font-size: 32px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    line-height: 52px;
    text-align: center;
}

#survey .survey-con.conwrap3 {
    width: 100%;
    height: 1000px;
    background-color: #F9FAFB;
}

#survey .survey-con.conwrap3 .con-box {
    position: relative;
}

#survey .survey-con.conwrap3 .con-box h4 {
    font-size: 36px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    line-height: 42px;
    margin-top: 16px;
}

#survey .survey-con.conwrap3 .con-box img.con-image {
    width: 423px;
    height: 544px;
    display: block;
    margin: auto;
    margin-top: 16px;
}

#survey .survey-con.conwrap3 .con-box .mini-con {
    width: 128px;
    height: 139px;
    position: absolute;
}

#survey .survey-con.conwrap3 .con-box .mini-con .image-box {
    width: 100%;
    height: 100%;
    border-radius: 35px 35px 0 0;
}

#survey .survey-con.conwrap3 .con-box .mini-con .image-box p {
    width: 100%;
    height: 32px;
    position: absolute;
    bottom: 19px;
    border-radius: 14px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

#survey .survey-con.conwrap3 .con-box .mini-con1 {
    left: 22.77272727272727%;
    top: 45.2%;
}

#survey .survey-con.conwrap3 .con-box .mini-con1 .image-box {
    background: url('../img/survey/conwrap3_mini1.png') center no-repeat;
    background-size: cover;
    position: relative;
}

#survey .survey-con.conwrap3 .con-box .mini-con2 {
    left: 60.31818181818182%;
    top: 42%;
}

#survey .survey-con.conwrap3 .con-box .mini-con2 .image-box {
    background: url('../img/survey/conwrap3_mini2.png') center no-repeat;
    background-size: cover;
    position: relative;
}

#survey .survey-con.conwrap3 .con-box .mini-con3 {
    left: 71.95454545454545%;
    top: 58.5%;
}

#survey .survey-con.conwrap3 .con-box .mini-con3 .image-box {
    background: url('../img/survey/conwrap3_mini3.png') center no-repeat;
    background-size: cover;
    position: relative;
}

#survey .survey-con.conwrap3 .con-box .mini-con4 {
    left: 66.68181818181818%;
    top: 80.9%;
}

#survey .survey-con.conwrap3 .con-box .mini-con4 .image-box {
    background: url('../img/survey/conwrap3_mini4.png') center no-repeat;
    background-size: cover;
    position: relative;
}

#survey .survey-con.conwrap3 .con-box .mini-con5 {
    left: 23.86363636363636%;
    top: 79.7%;
}

#survey .survey-con.conwrap3 .con-box .mini-con5 .image-box {
    background: url('../img/survey/conwrap3_mini5.png') center no-repeat;
    background-size: cover;
    position: relative;
}

#survey .survey-con.conwrap3 .con-box .mini-con6 {
    left: 16.86363636363636%;
    top: 64%;
}

#survey .survey-con.conwrap3 .con-box .mini-con6 .image-box {
    background: url('../img/survey/conwrap3_mini6.png') center no-repeat;
    background-size: cover;
    position: relative;
}

#survey .survey-con.conwrap4 {
    width: 100%;
    height: 1000px;
}

#survey .survey-con.conwrap4 .con-box {
    background: url('../img/survey/conwrap4_bg.png') center no-repeat;
    background-size: cover;
} 

#survey .survey-con.conwrap5 {
    width: 100%;
    height: 1000px;
    background-color: #F9FAFB;
}

#survey .survey-con.conwrap5 .con-box .image-box {
    width: 100%;
    height: 489px;
    display: flex;
    margin-top: 60px;
}

#survey .survey-con.conwrap5 .con-box .image-box li {
    width: 355px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#survey .survey-con.conwrap5 .con-box .image-box li:first-child img {
    height: 237px;
}

#survey .survey-con.conwrap6 {
    width: 100%;
    height: 1000px;
    background-color: #ffffff;
}

#survey .survey-con.conwrap6 .con-box img {
    width: 798px;
    height: 611px;
    display: block;
    margin: auto;
    margin-top: 52px;
}

#survey .survey-con.conwrap7 {
    width: 100%;
    height: 1000px;
    background-color: #F9FAFB;
}

#survey .survey-con.conwrap7 img {
    width: 860px;
    height: 643px;
    display: block;
    margin: auto;
    margin-top: 57px;
}

#survey .survey-con.conwrap8 {
    width: 100%;
    height: 1000px;
    background-color: #ffffff;
}

#survey .survey-con.conwrap8 img {
    width: 100%;
    height: 589px;
    display: block;
    margin: auto;
    margin-top: 75px;
}

#survey .survey-con.conwrap7 img.image-mobile {
    display: none;
}

#survey .survey-con.conwrap8 img.image-mobile {
    display: none;
}

#survey .survey-con.conwrap9 {
    width: 100%;
    height: 1000px;
    background-color: #F9FAFB;
    overflow: hidden;
}

#survey .survey-con.conwrap9 img {
    width: 100%;
    height: 685px;
    display: block;
    margin: auto;
    margin-top: 15px;
}

#survey .survey-con.conwrap9 img.image-mobile {
    display: none;
}

#survey .survey-con.conwrap10 {
    width: 100%;
    height: 600px;
    background-color: #90A2AB;
    position: relative;
    z-index: -2;
}

#survey .survey-con.conwrap10 .wrap-bg {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    background: url('../img/survey/conwrap10_bg.png') center no-repeat;
    background-size: cover;
}

#survey .survey-con.conwrap10 .con-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

#survey .survey-con.conwrap10 .con-box .textbox {
    text-align: center;
    color: #fff;
}

#survey .survey-con.conwrap10 .con-box .textbox h3 {
    font-size: 50px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    line-height: 74px;
}

#survey .survey-con.conwrap10 .con-box .textbox h3.title-m {
    display: none;
}

#survey .survey-con.conwrap10 .con-box .textbox span {
    font-size: 23px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    line-height: 36px;
    display: block;
    margin-top: 16px;
}

#survey .survey-con.conwrap10 .con-box .textbox span.text-mobile {
    display: none;
}


#survey .survey-con .con-box h2.main-title-m {
    display: none;
    text-align: center;
    font-size: 36px;
    line-height: 46px;
    word-break: keep-all;
}

#survey .survey-con .con-box h4.main-sub-title-m {
    display: none;
    text-align: center;
    font-size: 20px;
    line-height: 28px;
    margin-top: 20px;
}

#survey .survey-con.conwrap2 .con-box span.mobile-text {
    display: none;
}

#survey .survey-con.conwrap3 .con-box h4.mobile-text {
    line-height: 30px;
    display: none;
}


#survey .survey-con .con-box h2.mobile-text {
    display: none;
}

/* 서베이 페이지 반응형 */

@media screen and (max-width: 1000px) {

    #survey .survey-con.conwrap1 {
        height: 864px;
    }

    #survey .survey-con.conwrap1 .con-box h2.main-title {
        padding: 0 26px;
        box-sizing: border-box;
        font-size: 38px;
    }

    #survey .survey-con.conwrap1 .con-box h4.main-sub-title {
        padding: 0 26px;
        box-sizing: border-box;
        font-size: 24px;
        margin-top: 0;
    }

    #survey .survey-con.conwrap1 .con-box img.con-image {
        width: 580px;
        height: 580px;
    }

    #survey .survey-con.conwrap2 {
        height: 480px;
    }

    #survey .survey-con.conwrap2 .con-box span {
        padding: 0 26px;
        box-sizing: border-box;
        font-size: 20px;
        line-height: 39px;
        letter-spacing: -0.04em;
    }

    #survey .survey-con .con-box h2 {
        font-size: 40px;
        line-height: 57.6px;
        padding: 0 26px;
        box-sizing: border-box;
        margin-top: 56px;
    }
    

    #survey .survey-con .con-box p {
        font-size: 17.2px;
        line-height: 30px;
        padding: 0 26px;
        box-sizing: border-box;
    }

    #survey .survey-con.conwrap3 .con-box h4 {
        font-size: 28.8px;
        padding: 0 26px;
        box-sizing: border-box;
    }

    #survey .survey-con.conwrap3 .con-box .minicon-wrap {
        width: 45%;
        height: 30%;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
    }

    #survey .survey-con.conwrap3 .con-box .minicon-wrap .mini-con {
        position: static;
        width: 33.33%;
    }

    #survey .survey-con.conwrap3 .con-box .mini-con .image-box p {
        height: 48px;
        font-size: 12px;
        letter-spacing: -0.05em;
        line-height: 16px;
        text-align: center;
        word-break: keep-all;
        border-radius: 0;
    }

    #survey .survey-con.conwrap4 {
        height: 800px;
    }

    #survey .survey-con.conwrap5 {
        height: 800px;
    }

    #survey .survey-con.conwrap5 .con-box .image-box {
        justify-content: space-around;
    }

    #survey .survey-con.conwrap5 .con-box .image-box li:nth-child(2) {
        display: none;
    }

    #survey .survey-con.conwrap6 {
        height: 800px;
    }

    #survey .survey-con.conwrap6 .con-box img {
        width: 638.4px;
        height: 488.8px;
    }

    #survey .survey-con.conwrap7 {
        height: 800px;
    }

    #survey .survey-con.conwrap7 img {
        width: 602px;
        height: 450.1px;
    }

    #survey .survey-con.conwrap8 {
        height: 700px;
        position: relative;
    }

    #survey .survey-con.conwrap8 img {
        width: 660px;
        height: 353.4px;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 0;
    }

    #survey .survey-con.conwrap9 {
        height: 660px;
        position: relative;
    }

    #survey .survey-con.conwrap9 img {
        width: 660px;
        height: 411px;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 0;
    }

    #survey .survey-con.conwrap10 .wrap-bg {
        background: none;
    }


}

@media screen and (max-width: 767px) {

    #survey .survey-con.conwrap1 .con-box h2.main-title {
        margin-top: 90px;
    }

}

@media screen and (max-width: 640px) {

    #survey .survey-con.conwrap1 {
        height: 518.4px;
    }

    #survey .survey-con .con-box h2.main-title {
        display: none;
    }

    #survey .survey-con .con-box h2.main-title-m {
        display: block;
        font-size: 26px;
        line-height: 32px;
    }

    #survey .survey-con .con-box h4.main-sub-title {
        display: none;
    }

    #survey .survey-con .con-box h4.main-sub-title-m {
        display: block;
        font-size: 16px;
        line-height: 20px;
    }

    #survey .survey-con.conwrap1 .con-box img.con-image {
        width: 290px;
        height: 290px;
    }

    #survey .survey-con.conwrap2 {
        height: 380px;
    }

    #survey .survey-con.conwrap2 .con-box span {
        font-size: 16px;
        word-break: keep-all;
        display: none;
    }

    #survey .survey-con.conwrap2 .con-box span.mobile-text {
        display: block;
    }

    #survey .survey-con .con-box h2 {
        font-size: 26px;
        line-height: 40.32px;
        margin-top: 46.2px;
        word-break: keep-all;
        letter-spacing: -0.03em;
        text-align: center;
    }


    #survey .survey-con .con-box h2 span {
        display: none;
    }

    #survey .survey-con .con-box p {
        font-size: 14px;
        line-height: 21px;
        text-align: center;
    }

    #survey .survey-con.conwrap3 {
        height: 670px;
    }

    #survey .survey-con.conwrap3 .con-box h4 {
        font-size: 18.16px;
        margin-top: 11.2px;
        display: none;
        text-align: center;
    }

    #survey .survey-con.conwrap3 .con-box h4.mobile-text {
        display: block;
    }

    #survey .survey-con.conwrap3 .con-box img.con-image {
        display: none;
    }

    #survey .survey-con.conwrap3 .con-box .minicon-wrap {
        width: 320px;
        bottom: 100px;
    }

    #survey .survey-con.conwrap3 .con-box .minicon-wrap .mini-con {
        width: 100px;
        margin: 3px;
        transition: 0.3s;
    }

    #survey .survey-con.conwrap4 {
        height: 550px;
    }

    #survey .survey-con.conwrap4 .con-box {
        background-size: 400px;
        background-position: bottom;
    }

    #survey .survey-con.conwrap4 .con-box h2 {
        display: none;
    }

    #survey .survey-con.conwrap4 .con-box h2.mobile-text {
        display: block;
    }

    #survey .survey-con.conwrap5 {
        height: auto;
        padding-bottom: 30px;
    }

    #survey .survey-con.conwrap5 .con-box .image-box {
        margin-top: 30px;
    }

    #survey .survey-con.conwrap5 .con-box .image-box li:nth-child(3) {
        display: none;
    }

    #survey .survey-con.conwrap6 {
        height: auto;
        padding-bottom: 30px;
    }

    #survey .survey-con.conwrap6 .con-box img {
        width: 320px;
        height: auto;
    }
    

    #survey .survey-con.conwrap7 {
        height: auto;
    }

    #survey .survey-con.conwrap7 img {
        width: 320px;
        height: auto;
    }

    #survey .survey-con.conwrap7 img.image-pc {
        display: none;
    }

    #survey .survey-con.conwrap7 img.image-mobile {
        width: 100%;
        display: block;
        margin-top: 0;
    }

    #survey .survey-con.conwrap8 {
        height: auto;
    }

    #survey .survey-con.conwrap8 p {
        margin-bottom: 350px;
    }

    #survey .survey-con.conwrap8 img.image-pc {
        display: none;
    }

    #survey .survey-con.conwrap8 img.image-mobile {
        display: block;
        width: 280px;
    }

    #survey .survey-con.conwrap9 {
        height: auto;
    }

    #survey .survey-con.conwrap9 p {
        margin-bottom: 350px;
    }

    #survey .survey-con.conwrap9 img.image-pc {
        display: none;
    }

    #survey .survey-con.conwrap9 img.image-mobile {
        width: 360px;
        height: auto;
        display: block;
        margin-bottom: 30px;
    }

    #survey .survey-con.conwrap10 {
        height: 400px;
        background-color: #0a0422;
    }

    #survey .survey-con.conwrap10 .con-box .textbox h3 {
        font-size: 32px;
        line-height: 42px;
    }

    #survey .survey-con.conwrap10 .con-box .textbox h3.title {
        display: none;
    }


    #survey .survey-con.conwrap10 .con-box .textbox h3.title-m {
        display: block;
    }

    #survey .survey-con.conwrap10 .con-box .textbox span {
        font-size: 18px;
        line-height: 24px;
        display: none;
    }

    #survey .survey-con.conwrap10 .con-box .textbox span.text-mobile {
        display: block;
    }

}

/* 20211018 수정 (인재채용 모바일 폰트크기 수정) */

@media screen  and (max-width:400px) {
    
    .it_wrap.s02 .contact_wrap form label[for='file01'],
    .it_wrap.s02 .contact_wrap form label[for='file02'],
    .it_wrap.s02 .contact_wrap form label[for='file03'] {
        font-size: 18px;
    }

    .it_wrap .contact_wrap form label[for='file'] .file_de,
    .it_wrap .contact_wrap form label[for='file01'] .file_de.s01,
    .it_wrap .contact_wrap form label[for='file02'] .file_de.s02,
    .it_wrap .contact_wrap form label[for='file03'] .file_de.s03 {
        font-size: 12px;
        margin-left: 4px;
    }

}