/* 메인 */



.main-top {
    width: 100%;
    height: 100vh;
    margin-top: -80px;
    background: url(../img/main_top_bg.png) no-repeat;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
}

.main-top .text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
    animation: MoveAni 1s 0.5s forwards;
    opacity: 0;
}

.main-top .text-box h2 {
    font-size: 50px;
    color: #fff;
    letter-spacing: 0.5px;
    font-family: 'NanumSquare-B';
}

.main-top .text-box p {
    width: 552px;
    font-size: 22px;
    margin-top: 28px;
    line-height: 40px;
    letter-spacing: 0.22px;
    color: #bbb;
}

.main-top .scroll-box {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
}

.main-top .scroll-box > p {
    font-size: 20px;
    font-family: 'NanumSquare-B';
    color: #bbb;
    position: relative;
}

.main-top .scroll-box > p::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-width: 0 0 2px 2px;
    border-style: solid;
    border-color: transparent transparent #bbb #bbb;
    transform: rotate(-45deg) translateX(-50%);
    animation: scrollArrow1 2s linear infinite;
}

.main-top .scroll-box > p::after {
    content: "";
    position: absolute;
    top: 47px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-width: 0 0 2px 2px;
    border-style: solid;
    border-color: transparent transparent #bbb #bbb;
    transform: rotate(-45deg) translateX(-50%);
    animation: scrollArrow2 2s linear infinite;
}

@keyframes scrollArrow1 {
	0%, 60%, 100% {opacity:0}
	20%, 40% {opacity:1}
}

@keyframes scrollArrow2 {
	0%, 20%, 80%, 100% {opacity:0}
	40%, 60% {opacity:1}
}

.main-swiper {
    width: 100%;
    height: auto;
    background: #f5f6f8;
    position: relative;
    padding: 120px 12%;
}

.main-swiper .swiper-slide {
    width: 100%;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.main-swiper .swiper-slide .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.main-swiper .swiper-slide .flex > div {
    flex-shrink: 0;
    position: relative;
}

.main-swiper .swiper-slide .left {
    width: 45%;
}

.main-swiper .swiper-slide .left > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-swiper .swiper-slide .right {
    width: 45%;
    display: flex;
    flex-direction: column;
    position: absolute !important;
    right: 0%;
    top: 35%;
}

.main-swiper .swiper-slide .right strong {
    font-size: 50px;
    font-family: 'NanumSquare-B';
    color: #222;
    font-weight: bold;
}

.main-swiper .swiper-slide .right span {
    font-size: 22px;
    letter-spacing: 0.22px;
    color: #666;
    margin: 15px 0 40px;
}

.main-swiper .swiper-slide .right p {
    font-size: 22px;
    line-height: 41px;
    color: #222;
}

.main-swiper  .swiper-horizontal > .swiper-pagination-bullets {
    width: 45%;
    left: auto;
    bottom: auto;
    text-align: left;
    top: 22%;
    right: 0%;
}

.main-swiper .swiper-pagination-bullet {
    background: #888;
    width: 11px;
    height: 11px;
    opacity: 1;
}

.main-swiper .swiper-pagination-bullet-active {
    width: 48px;
    border-radius: 5.5px;
    background: #0037af;
}

.main-business {
    width: 100%;
    height: auto;
    position: relative;
    padding: 150px 12% 200px;
    overflow: hidden;
}

.main-business.main {
    margin-top: 0;
    background-color: #fff;
}

.main-business.main .bg {
    bottom: 0;
}

.main-business .bg {
    width: 363px;
    height: 363px;
    background: url(../img/main_business_bg.png) no-repeat;
    background-position: center !important;
    background-size: contain !important;
    position: absolute;
    bottom: 0;
    left: 3vw;
}

.main-business .text-box {
    text-align: center;
    margin-bottom: 120px;
    position: relative;
    opacity: 0;
    margin-top: 50px;
}

.main-business .text-box > strong {
    font-size: 50px;
    font-family: 'NanumSquare-B';
    color: #222;
}

.main-business .text-box > p {
    margin: 40px 0 50px;
    font-size: 22px;
    line-height: 41px;
    color: #222;
}

.main-business .text-box > p.mob {
    display: none;
}

.main-business .text-box .button {
    margin: 0 auto;
}

.button {
    height: 54px;
    width: 162px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button > span {
    font-size: 20px;
    color: #0037af;
    padding: 15px 32px;
    border-radius: 2px;
    border: 1px solid #0037af;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 2;
}

.button > span::before {
    content: '';
    display: block;
    width: 0%;
    height: 54px;
    border-radius: 2px;
    background: #0037af;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: 0.3s;
}

.button > span:hover {
    color: #fff;
}

.button > span:hover::before {
    width: 100%;
}

.main-business .card-box {
    justify-content: space-between;
    width: 100%;
    position: relative;
    opacity: 0;
    margin-top: 50px;
}

.main-business .card-box .card {
    width: 32.5%;
    height: 420px;
    background: #fcfcfc;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.03);
    border: 1px solid #e8e8e8;
    padding: 3% 2.5%;
    flex-shrink: 0;
}

.main-business.main .card-box .card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 330px;
    padding: 40px 2.5%;
}

.main-business .card-box .card + .card {
    margin-left: 13px;
}

.main-business .card-box .card-img {
    width: 108px;
    height: 108px;
    position: relative;
    margin-bottom: 35px;
    flex-shrink: 0;
}

.main-business .card-box .card-img > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-business .card-box .card p {
    font-size: 24px;
    line-height: 33px;
    color: #222;
    font-family: 'NanumSquare-B';
    margin-bottom: 20px;
}

.main-business .card-box .card span {
    font-size: 20px;
    line-height: 30px;
    color: #666;
}

.main-business.main .card-box .card .flex {
    width: 100%;
}

.main-business.main .card-box  .card .card-img {
    margin-bottom: 0;
}

.main-business.main .card-box  .card p {
    width: calc(100% - 108px);
    margin-bottom: 0;
    padding-left: 25px;
}

.main-project {
    width: 100%;
    position: relative;
    padding: 0 12% 250px;
}

.main-project > div {
    opacity: 0;
    margin-top: 50px;
}

.main-project > div.bg {
    opacity: 1;
    margin-top: 0;
}

.main-project > div > strong {
    font-size: 50px;
    font-family: 'NanumSquare-B';
    color: #222;
    text-align: center;
    width: 100%;
    display: block;
}

.main-project > div > p {
    font-size: 22px;
    line-height: 40px;
    color: #666;
    text-align: center;
    width: 100%;
    display: block;
    margin: 40px auto 50px;
}

.main-project > div > .button {
    margin: 0 auto 80px;
}

.main-project > .flex {
    width: 100%;
    position: relative;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-project > .flex .box {
    width: 32.5%;
    border-radius: 8px;
    background: #f7f9ff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.03);
    padding: 2.5vw;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.main-project > .flex .box .logo {
    width: auto;
    height: 24px;
    position: relative;
    margin-bottom: 25px;
}

.main-project > .flex .box .logo > img {
    height: 100%;
    object-fit: contain;
}

.main-project > .flex .box > span {
    font-size: 1.4rem;
    font-weight: bold;
    color: #666;
    width: 100%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-project > .bg {
    width: 360px;
    height: 355px;
    background: url(../img/recruit_bg.png) no-repeat;
    background-position: center !important;
    background-size: contain !important;
    position: absolute;
    bottom: 110px;
    right: 3vw;
}

.main-bottom {
    width: 100%;
    height: 404px;
    position: relative;
    background: url(../img/main_bottom_bg.png) no-repeat;
    background-position: center !important;
    background-size: cover !important;
    padding: 106px 12% 0;
}

.main-bottom .contact-box {
    padding: 0;
}

.main-bottom > div {
    opacity: 0;
    margin-top: 50px;
}

.main-bottom > div > strong {
    font-size: 40px;
    color: #fff;
}

.main-bottom > div > p {
    margin: 20px 0 50px;
    font-size: 24px;
    color: #fff;
}

.main-bottom .button > span {
    border-color: #fff;
    color: #fff;
}

.main-bottom .button > span:hover {
    color: #0037af;
}

.main-bottom .button > span::before {
    background: #fff;
}


/* 반응형 */


@media only screen and (max-width: 1590px) {
    .main-swiper .swiper-horizontal > .swiper-pagination-bullets {
        top: 18%;
        width: 45%;
        right: 0;
    }

    .main-swiper .swiper-slide .right {
        width: 45%;
        right: 0;
    }
}

@media only screen and (max-width: 1470px) {
    .main-business.main .card-box .card {
        padding: 30px 2%;
    }

    .main-business.main .card-box .card p {
        font-size: 22px;
        line-height: 30px;
    }

    .main-business.main .card-box .card > span {
        font-size: 17px;
        line-height: 27px;
    }
}

@media only screen and (max-width: 1320px) {
    .main-swiper .swiper-slide .right strong {
        font-size: 45px;
    }

    .main-swiper .swiper-slide .right span {
        font-size: 17px;
    }

    .main-swiper .swiper-slide .right p {
        font-size: 17px;
        line-height: 30px;
    }

    .main-project > .flex .box > span {
        font-size: 20px;
    }
}


@media only screen and (max-width: 1100px) {
    .main-top {
        margin-top: 0px;
    }

    .main-business .text-box > p.web {
        display: none;
    }

    .main-business .text-box > p.mob {
        display: block;
        word-break: keep-all;
    }

    .main-business .card-box.flex {
        flex-direction: row;
    }

    .main-swiper .swiper-horizontal > .swiper-pagination-bullets {
        top: 12%;
    }

    .main-swiper .swiper-slide .right {
        top: 25%;
    }

    .card-box.flex {
        flex-direction: column;
        align-items: center;
    }

    .card-box.flex > .card {
        margin: 0 0 20px 0 !important;
        width: 100%;
        padding: 30px 25px;
        height: auto;
    }

    .main-project > .flex .box {
        width: 48.5%;
    }
}

@media only screen and (max-width: 1000px)  {
    .main-swiper {
        padding: 100px 8%;
    }

    .main-business {
        padding: 125px 8% 200px;
    }

    .main-business .text-box > strong {
        font-size: 37px;
    }

    .main-business .text-box > p {
        font-size: 17px;
        line-height: 33px;
    }

    .main-business .text-box {
        margin-bottom: 100px;
    }

    .card-box.flex > .card {
        padding: 4vw;
    }

    .main-business .card-box .card-img {
        width: 85px;
        height: 85px;
    }

    .main-business .card-box .card p {
        font-size: 20px;
        line-height: 30px;
    }

    .main-business .card-box .card span {
        font-size: 17px;
        line-height: 28px;
    }

    .main-business .card-box .card {
        padding: 30px 35px !important;
        height: auto !important;
    }

    .main-business .card-box .card > .flex {
        margin-bottom: 20px;
    }

    .main-project {
        padding: 0 8% 225px;
    }

    .main-project > .flex .box {
        width: 48.5%;
        padding: 4vw 3vw;
    }

    .main-project > div > strong {
        font-size: 37px;
    }

    .main-project > div > p {
        font-size: 17px;
    }

    .main-project > .flex .box > span {
        font-size: 17px;
    }
}

@media only screen and (max-width: 950px)  {
    .main-swiper .swiper-horizontal > .swiper-pagination-bullets {
        width: auto;
        top: 10px;
        right: 0;
    }

    .main-swiper .swiper-slide .flex {
        flex-direction: column;
        align-items: center;
    }

    .main-swiper .swiper-slide .right {
        position: relative !important;
        width: 100%;
        right: auto;
        margin-bottom: 40px;
    }

    .main-swiper .swiper-slide .left {
        width: 70%;
    }

    .main-business .bg {
        width: 300px;
        height: 300px;
    }

    .main-project > .bg {
        width: 300px;
        height: 300px;
        bottom: 90px;
    }
}

@media only screen and (max-width: 850px) {
    .main-swiper .swiper-slide .right span {
        font-size: 17px;
    }

    .main-swiper .swiper-slide .right span {
        margin: 15px 0 25px;
    }

    .main-swiper .swiper-slide .right p {
        font-size: 17px;
        line-height: 33px;
    }
}


@media only screen and (max-width: 650px) {
    .main-top .text-box p {
        width: 310px;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0.14px;
        margin-top: 20px;
    }

    .main-top .text-box h2 {
        font-size: 30px;
        line-height: 26px;
        letter-spacing: 0.3px;
    }

    .main-top .scroll-box > p {
        font-size: 14px;
    }

    .main-swiper {
        padding: 0;
    }

    .main-swiper .swiper-slide .flex {
        flex-direction: column;
        align-items: center;
        padding: 80px 30px;
    }

    .main-swiper .swiper-slide .right {
        position: relative !important;
        width: 100%;
        right: auto;
    }

    .main-swiper .swiper-slide .right strong {
        font-size: 25px;
    }

    .main-swiper .swiper-slide .right span {
        font-size: 14px;
        letter-spacing: 0.14px;
        margin-bottom: 25px;
    }

    .main-swiper .swiper-slide .right p {
        font-size: 14px;
        line-height: 26px;
    }

    .main-swiper .swiper-slide .left {
        width: 70%;
        margin-top: 40px;
    }

    .main-swiper .swiper-horizontal > .swiper-pagination-bullets {
        width: auto;
        left: auto;
        bottom: auto;
        right: 30px;
        top: 80px;
    }

    .main-swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }

    .main-swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active {
        width: 27px;
    }

    .main-business {
        padding: 80px 30px 100px;
        overflow: hidden;
    }

    .main-business .card-box .card .card-img {
        margin-bottom: 20px;
    }

    .main-business .text-box > strong {
        font-size: 25px;
    }

    .main-business .text-box > p {
        font-size: 14px;
        line-height: 26px;
        margin: 25px auto 35px;
    }

    .button > span {
        padding: 10px 22px;
        font-size: 14px;
    }

    .button > span::before {
        width: 0;
        height: 38px;
    }

    .button > span:hover::before {
        width: 113.2px;
    }

    .main-business .text-box {
        margin-bottom: 60px;
    }

    .main-business .bg {
        width: 130px;
        height: 130px;
        left: -20px;
        bottom: 50px;
    }

    .main-business .card-box {
        width: calc(100% + 60px) !important;
        overflow-x: scroll !important;
        overflow-y: hidden !important;
        padding-right: 50px !important;
        display: flex;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }

    .main-business .card-box{
        -ms-overflow-style: none;
    }

    .main-business .card-box::-webkit-scrollbar{
        display:none;
    }

    .main-business .card-box .card {
        width: calc(100% - 15px) !important;
        padding: 30px 25px !important;
        height: 230px !important;
    }

    .main-business .card-box .card + .card {
        margin-left: 13px !important;
    }

    .main-business .card-box .card-img {
        width: 68px;
        height: 68px;
        margin-bottom: 25px;
    }

    .main-business .card-box .card p {
        font-size: 16px;
        line-height: 25px;
    }

    .main-business.main .card-box .card p {
        font-size: 16px;
        line-height: 25px;
        width: calc(100% - 68px);
    }

    .main-business .card-box .card span {
        font-size: 14px !important;
        line-height: 23px !important;
    }

    .main-business .card-box .card .card-img {
        margin-bottom: 0;
    }

    .main-project {
        padding: 0 30px 100px;
        overflow: hidden;
    }

    .main-project > div.bg {
        width: 120px;
        height: 120px;
        bottom: 30px;
        right: -25px;
    }

    .main-project > div > strong {
        font-size: 25px;
    }

    .main-project > div > p {
        margin: 25px auto 35px;
        font-size: 14px;
        line-height: 26px;
    }

    .main-project > .flex .box {
        width: 48%;
        padding: 25px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .main-project > div > .button {
        margin-bottom: 50px;
    }

    .main-project > .flex .box .logo {
        height: 14px;
        margin-bottom: 15px;
    }

    .main-project > .flex .box > span {
        font-size: 16px;
        line-height: 24px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        white-space: pre-wrap;
        text-align: center;
        height: 45px;
    }

    .main-bottom {
        padding: 80px 30px;
        height: 304px;
    }

    .main-bottom > div > strong {
        font-size: 25px;
    }

    .main-bottom > div > p {
        font-size: 14px;
        margin: 25px 0 40px;
    }

    .main-bottom .button {
        justify-content: flex-start;
        width: auto;
        height: auto;
    }
}


/* 메인 */



/* 서브페이지 공통 스타일 */

.sub-top {
    width: 100%;
    height: 413px;
    position: relative;
    box-sizing: border-box;
    background-position: center !important;
    background-size: cover !important;
}

.sub-top.sub1 {
    background: url(../img/sub_1_bg.png) no-repeat;
}

.sub-top.sub2 {
    background: url(../img/sub_2_bg.png) no-repeat;
}

.sub-top.sub3 {
    background: url(../img/sub_3_bg.png) no-repeat;
}

.sub-top > h2 {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-family: 'NanumSquare-B';
}

.sub-top > ul {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 50px;
    right: 12%;
}

.sub-top > ul > li {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    opacity: 0.8;
}

.sub-top > ul > li::after {
    content: '>';
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    opacity: 0.5;
    margin: 0 10px;
}

.sub-top > ul > li:last-child::after {
    display: none;
}

.sub-content {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 150px 0 0;
}

.sub-content .con-top {
    padding: 0 12%;
}

.sub-content .con-top.move_ani {
    opacity: 0;
    margin-top: 50px;
}

.sub-content .con-top > h3{
    font-size: 40px;
    color: #222;
    font-family: 'NanumSquare-B';
}

.sub-content .con-top > h3::before {
    content: '';
    display: block;
    width: 17px;
    height: 4px;
    border-radius: 1px;
    background-image: linear-gradient(100deg, #0037af -22%, #0093d4 156%);
    margin-bottom: 30px;
}

.sub-content .con-top > p {
    font-size: 22px;
    line-height: 43px;
    color: #666;
}

.sub-content .con-top > p > span {
    font-weight: bold;
    color: #0037af;
}

.sub-content .con-top > h3 + p {
    margin-top: 30px;
}

.sub-content .con-top > p.mob {
    display: none;
}


/* 서브페이지 공통 스타일 */



/* 회사소개 */

.sub-top.sub1 {
    background: url(../img/sub_1_bg.png) no-repeat;
}

.main-business {
    margin-top: 130px;
    width: 100%;
    height: auto;
    padding: 130px 12% 150px;
    background: #f5f6f8;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.main-business .bg {
    width: 363px;
    height: 363px;
    background: url(../img/main_business_bg.png) no-repeat;
    background-position: center !important;
    background-size: contain !important;
    position: absolute;
    bottom: -60px;
    right: 8%;
}

.main-business .text-box {
    margin-bottom: 78px;
}

.main-business .text-box strong {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    font-family: 'NanumSquare-B';
}

.main-business .card-box {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    opacity: 0;
    margin-top: 50px;
}

.main-business .card-box .card {
    width: 32.5%;
    height: 415px;
    padding: 3% 2.5%;
    background: #fcfcfc;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.03);
}

.main-business .card-box .card .card-img {
    width: 94px;
    height: 94px;
    position: relative;
    margin-bottom: 42px;
}

.main-business .card-box .card .card-img > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-business .card-box .card > p {
    font-size: 24px;
    line-height: 33px;
    color: #222;
    margin-bottom: 20px;
    font-family: 'NanumSquare-B';
}

.main-business .card-box .card > p.mob {
    display: none;
}

.main-business .card-box .card > span {
    font-size: 20px;
    line-height: 30px;
    color: #222;
}

/* 회사소개 */


/* 연혁 */

.sub-content .history {
    width: 100%;
    position: relative;
    padding: 130px 12% 150px;
    box-sizing: border-box;
    overflow: hidden;
    opacity: 0;
    margin-top: 50px;
}

.sub-content .history .box {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.sub-content .history .box + .box {
    margin-top: 80px;
}

.sub-content .history .box .years {
    width: 280px;
    position: relative;
}

.sub-content .history .box .years > strong {
    font-size: 40px;
    color: #222;
    font-family: 'NanumSquare-B';
    line-height: 40px;
}

.sub-content .history .box .years::after {
    content: '';
    display: block;
    width: 1px;
    height: 5000px;
    background-color: #ccc;
    position: absolute;
    top: 10px;
    right: 90px;
}

.sub-content .history .box .work {
    width: calc(100% - 280px);
    position: relative;
}

.sub-content .history .box .work::before {
    content: '';
    display: block;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    border: 1px solid #0037af;
    position: absolute;
    top: 0;
    left: -113px;
    background: #fff;
}

.sub-content .history .box .work::after {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #0037af;
    position: absolute;
    left: -98px;
    top: 14px;
}

.sub-content .history .box .work > p {
    font-size: 22px;
    line-height: 40px;
    color: #666;
}

.sub-content .history .box .work > p + p {
    margin-top: 30px;
}

/* 연혁 */


/* 인삿말 */

.greetings {
    margin-top: 50px;
    position: relative;
    width: 100%;
    padding: 100px 12% 0;
    box-sizing: border-box;
    opacity: 0;
}

.greetings > p {
    font-size: 22px;
    line-height: 43px;
    color: #222;
}

.greetings > p + p {
    margin-top: 50px;
    color: #666;
}

.greetings .flex {
    justify-content: flex-end;
    width: 100%;
    margin-top: 80px;
}

.greetings .flex > p {
    font-size: 23px;
    text-align: right;
    color: #222;
}

.greetings .flex > p > b {
    margin-left: 5px;
    font-family: 'NanumSquare-B';
}

/* 인삿말 */


/* CONTACT US */

.contact-box {
    position: relative;
    width: 100%;
    justify-content: space-between;
    padding: 130px 12% 0;
    box-sizing: border-box;
    margin-top: 50px;
    opacity: 0;
}

.contact-box > .card {
    width: 32.5%;
    padding: 48px 0;
    border-radius: 8px;
    background: #fcfcfc;
    border: 1px solid #e8e8e8;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-box > .card .card-img {
    width: 104px;
    height: 104px;
    position: relative;
    margin-bottom: 25px;
}

.contact-box > .card .card-img > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-box > .card > strong {
    font-size: 22px;
    color: #222;
    font-family: 'NanumSquare-B';
}

.contact-box > .card > p {
    margin-top: 25px;
    font-size: 20px;
    color: #222;
}

.contact-box > .card > p + p {
    margin-top: 12px;
}

/* CONTACT US */


/* 시스템 통합 */

.si-img {
    margin: 50px auto 0;
    padding-top: 130px;
    width: 783px;
    height: 892px;
    position: relative;
    opacity: 0;
}

.si-img > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 시스템 통합 */


/* IT 아웃소싱SM */

.sm-box {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin-top: 50px;
    opacity: 0;
}

.sm-box > .web {
    width: 100%;
    padding: 0 12%;
    box-sizing: border-box;
    margin-top: 130px;
}

.sm-box > .web > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sm-box .mob {
    display: none;
}

/* IT 아웃소싱SM */


/* 인재채용 */

.recruit-step {
    width: 100%;
    margin-top: 130px;
    position: relative;
    padding: 75px 12%;
    background: #f6f6f8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.recruit-step .step {
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: #fcfcfc;
    border: 1px solid #e8e8e8;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    flex-direction: column;
    padding-top: 70px;
}

.recruit-step .step.last {
    background-image: linear-gradient(154deg, #0037af 16%, #0093d4 102%);
}

.recruit-step .arrow {
    width: 100%;
    flex-shrink: 1;
    position: relative;
}

.recruit-step .arrow::before {
    content: '';
    display: block;
    width: calc(100% - 10px);
    height: 1px;
    background: #b2c3e7;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.recruit-step .arrow::after {
    position: absolute;
    right: 17px;
    top: 50%;
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border-top: 1px solid #b2c3e7;
    border-right: 1px solid #b2c3e7;
    transform: rotate(45deg) translateY(-65%);
}

.recruit-step .step > strong {
    font-size: 24px;
    font-family: 'NanumSquare-B';
    color: #0037af;
}

.recruit-step .step > p {
    margin-top: 20px;
    font-size: 28px;
    line-height: 42px;
    color: #222;
}

.recruit-step .step  > .mob {
    display: none;
}

.recruit-step .step.last > strong {
    color: #fff;
}

.recruit-step .step.last > p {
    color: #fff;
}

.recruit-info {
    width: 100%;
    position: relative;
    padding: 140px 12%;
    overflow: hidden;
    position: relative;
}

.recruit-info > .bg {
    width: 420px;
    height: 420px;
    position: absolute;
    bottom: -20px;
    right: 8%;
    background: url(../img/recruit_bg.png) no-repeat;
    background-position: center !important;
    background-size: contain !important;
}

.recruit-info h3 {
    font-size: 32px;
    color: #222;
    font-family: 'NanumSquare-B';
}

.recruit-info h3 + .flex {
    padding-top: 50px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.recruit-info .flex + h3 {
    margin-top: 100px;
}

.recruit-info .flex {
    margin-top: 50px;
    opacity: 0;
}

.recruit-info .flex .box {
    width: 48.5%;
    padding: 40px 0;
    position: relative;
    box-sizing: border-box;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.recruit-info .flex .box.w100 {
    width: 100%;
}

.recruit-info .flex .box + .box.w100 {
    margin-top: 60px;
}

.recruit-info .flex .box > h4 {
    font-size: 24px;
    font-family: 'NanumSquare-B';
    color: #0037af;
    padding: 0 10px 0 0;
    background: #fff;
    position: absolute;
    left: 0;
    top: -14px;
}

.recruit-info .flex .box > p {
    font-size: 22px;
    color: #666;
    position: relative;
    padding-left: 15px;
}

.recruit-info .flex .box > p::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 1px;
    background: #ccc;
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
}

.recruit-info .flex .box > p + p {
    margin-top: 20px;
}

.recruit-benefits {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 100px 12% 150px;
    background: #f6f6f8;
}

.recruit-benefits h3 {
    font-size: 32px;
    font-family: 'NanumSquare-B';
    color: #222;
    text-align: center;
}

.recruit-benefits .flex {
    padding-top: 125px;
    position: relative;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    opacity: 0;
    margin-top: 50px;
}

.recruit-benefits .flex .box {
    width: 14.6vw;
    height: 360px;
    box-sizing: border-box;
    border-radius:  0 0 5px 5px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 35px 12px 40px;
    border-top: 1px solid #0037af;
}

.recruit-benefits .flex .box > .img {
    width: 115px;
    height: 115px;
    position: relative;
    margin-bottom: 60px;
}

.recruit-benefits .flex .box > .img > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.recruit-benefits .flex .box h4 {
    font-size: 22px;
    text-align: center;
    color: #0037af;
    font-weight: bold;
    position: relative;
    margin-bottom: 20px;
}

.recruit-benefits .flex .box h4::before {
    content: '';
    display: block;
    width: 17px;
    height: 4px;
    border-radius: 1px;
    background: linear-gradient(to right, #0037af, #0093d4);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.recruit-benefits .flex .box p {
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #222;
    word-break: keep-all;
}


/* 인재채용 */











/* 반응형 */

@media only screen and (max-width: 1530px) {
    .recruit-step .step {
        width: 18vw;
        height: 18vw;
        padding-top: 4.5vw;
    }

    .recruit-step .step.last > strong {
        font-size: 1.5rem;
    }

    .recruit-step .step > p {
        font-size: 1.4rem;
        line-height: 1.4;
        margin-top: 1.6vw;
    }

    .recruit-step .arrow {
        display: none;
    }
}

@media only screen and (max-width: 1458px) {
    .recruit-info .flex.first .box:first-child {
        width: 58%;
    }

    .recruit-info .flex.first .box:nth-child(2) {
        width: 40%;
    }
}

@media only screen and (max-width: 1268px) {
    .recruit-info .flex.first .box {
        width: 100% !important;
    }

    .recruit-info .flex.first .box + .box {
        margin-top: 60px;
    }

    .recruit-info > .bg {
        width: 350px;
        height: 350px;
        position: absolute;
        bottom: -20px;
        right: 4%;
    }
}

@media only screen and (max-width: 1310px) {
    .contact-box > .card .card-img {
        width: 90px;
        height: 90px;
    }

    .contact-box > .card > strong {
        font-size: 20px;
    }

    .contact-box > .card > p {
        font-size: 17px;
    }
}

@media only screen and (max-width: 1170px) {
    .recruit-benefits .flex {
        flex-wrap: wrap;
    }

    .recruit-benefits .flex .box {
        width: 32.2%;
        padding: 30px 12px;
        height: 355px;
    }

    .recruit-benefits .flex .box.half {
        width: 49%;
        margin-top: 15px;
    }
}

@media only screen and (max-width: 1141px) {
    .main-business .card-box .card > p.web {
        display: none;
    }

    .main-business .card-box .card > p.mob {
        display: block;
    }

    .contact-box > .card > p + p {
        font-size: 15px;
    }

    .recruit-step > .arrow {
        display: none;
    }
}

@media only screen and (max-width: 1100px) {
    #content {
        margin-top: 70px;
    }
}

@media only screen and (max-width: 1000px) {
    .sub-content {
        padding-top: 100px;
    }

    .sub-content .con-top {
        padding: 0 8%;
    }

    .sub-top > h2 {
        font-size: 25px;
    }

    .sub-top > ul > li {
        font-size: 14px;
    }

    .sub-content .con-top > h3 {
        font-size: 32px;
    }

    .sub-content .con-top > p {
        font-size: 17px;
        line-height: 33px;
    }

    .main-business {
        padding: 100px 8% 125px;
    }

    .main-business .text-box strong {
        font-size: 25px;
    }

    .main-business .text-box {
        margin-bottom: 50px;
    }

    .main-business .card-box {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .main-business .card-box .card {
        width: 100%;
        height: auto;
        padding: 30px;
    }

    .main-business .card-box .card + .card {
        margin-top: 20px;
    }

    .main-business .card-box .card > p {
        font-size: 20px;
    }

    .main-business .card-box .card > span {
        font-size: 17px;
    }

    .main-business .bg {
        width: 250px;
        height: 250px;
        bottom: -40px;
        right: -21px;
    }

    .sub-content .con-top > p.web {
        display: none;
    }

    .sub-content .con-top > p.mob {
        display: block;
        margin-top: 30px;
    }

    .sub-top {
        height: 350px;
    }

    .sub-top > ul {
        bottom: 35px;
        right: 8%;
    }

    .greetings {
        padding: 80px 8% 0;
    }

    .greetings > p {
        font-size: 17px;
        line-height: 33px;
    }

    .greetings .flex > p {
        font-size: 18px;
    }

    #footer {
        margin-top: 125px;
    }

    .contact-box {
        padding: 100px 8% 0;
    }

    .si-img {
        width: 500px;
        height: auto;
        padding-top: 100px;
    }

    .sm-box > .web{
        padding: 0 8%;
    }

    .recruit-step {
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 70px 8%;
    }

    .recruit-step > .step {
        width: 29vw;
        height: 29vw;
        position: relative;
        padding-top: 8vw;
    }   

    .recruit-step .step > p {
        margin-top: 2vw;
    }

    .recruit-step > div:nth-child(5), .recruit-step > div:last-child {
        margin-top: 6.5vw;
    }
    .recruit-step > div:first-child::before {
        content: '';
        display: block;
        width: 11vw;
        height: 1px;
        background: #b2c3e7;
        position: absolute;
        left: 29vw;
        top: 50%;
        transform: translateY(-50%);
    }

    .recruit-step > div:first-child::after {
        position: absolute;
        left: 37vw;
        top: 50%;
        content: '';
        display: block;
        width: 1.7vw;
        height: 1.7vw;
        border-top: 1px solid #b2c3e7;
        border-right: 1px solid #b2c3e7;
        transform: rotate(45deg) translateY(-65%);
    }

    .recruit-step > div:nth-child(3)::before {
        content: '';
        display: block;
        width: 1px;
        height: 5vw;
        background: #b2c3e7;
        position: absolute;
        left: 50%;
        top: 29vw;
        transform: translateX(-50%);
    }

    .recruit-step > div:nth-child(3)::after {
        position: absolute;
        left: 12.6vw;
        top: 31vw;
        content: '';
        display: block;
        width: 1.7vw;
        height: 1.7vw;
        border-top: 1px solid #b2c3e7;
        border-right: 1px solid #b2c3e7;
        transform: rotate(135deg) translateY(-65%);
    }

    .recruit-step > div:nth-child(7)::before {
        content: '';
        display: block;
        width: 11vw;
        height: 1px;
        background: #b2c3e7;
        position: absolute;
        right: 29vw;
        top: 50%;
        transform: translateY(-50%);
    }

    .recruit-step > div:nth-child(7)::after {
        position: absolute;
        right: 38.1vw;
        top: 46.7%;
        content: '';
        display: block;
        width: 1.7vw;
        height: 1.7vw;
        border-top: 1px solid #b2c3e7;
        border-right: 1px solid #b2c3e7;
        transform: rotate(225deg);
    }

    .recruit-step .step  > strong.web, .recruit-step .step > p.web {
        display: none;
    }

    .recruit-step .step  > strong.mob, .recruit-step .step > p.mob {
        display: block;
    }

    .recruit-step .step > strong {
        font-size: 1.6rem;
    }

    .recruit-step .step > p {
        font-size: 1.3rem;
    }

    .recruit-step .step.last {
        background-image: none;
    }

    .recruit-step .step.last > strong {
        color: #0037af;
        font-size: 1.6rem;
    }

    .recruit-step .step.last > p {
        color: #222;
    }

    .recruit-step > div:nth-child(5) {
        background-image: linear-gradient(154deg, #0037af 16%, #0093d4 102%);
    }

    .recruit-step > div:nth-child(5) > strong {
        color: #fff;
    }

    .recruit-step > div:nth-child(5) > p {
        color: #fff;
    }

    .recruit-info h3 {
        font-size: 25px;
    }

    .recruit-info .flex .box > h4 {
        font-size: 20px;
    }

    .recruit-info .flex .box > p {
        font-size: 17px;
    }

    .recruit-info .flex .box {
        padding: 30px 0;
    }

    .recruit-info > .bg {
        width: 300px;
        height: 300px;
    }

    .recruit-info {
        padding: 120px 8%;
    }

    .recruit-benefits {
        padding: 100px 8% 125px;
    }

    .recruit-benefits h3 {
        font-size: 25px;
    }

    .recruit-benefits .flex .box h4 {
        font-size: 20px;
        line-height: 30px;
    }

    .recruit-benefits .flex .box p {
        font-size: 17px;
        line-height: 28px;
    }

    .sub-content .history {
        padding: 100px 8% 125px;
    }

    .sub-content .history .box .years > strong {
        font-size: 30px;
        line-height: 30px;
    }

    .sub-content .history .box .years {
        width: 200px;
    }

    .sub-content .history .box .years::after {
        right: 60px;
    }

    .sub-content .history .box .work {
        width: calc(100% - 200px);
    }

    .sub-content .history .box .work > p {
        font-size: 17px;
        line-height: 30px;
    }

    .sub-content .history .box .work::before {
        width: 31px;
        height: 31px;
        left: -77px;
    }

    .sub-content .history .box .work::after {
        width: 10px;
        height: 10px;
        left: -65.5px;
        top: 11px;
    }
}

@media only screen and (max-width: 890px)  {
    .contact-box {
        flex-wrap: wrap;
        justify-content: flex-start;
        padding-top: 100px;
    }

    .contact-box > .card {
        width: 100%;
    }

    .contact-box > .card + .card {
        margin-top: 25px;
    }

    .contact-box > .card > p + p {
        font-size: 17px;
    }

    .sm-box > .web {
        display: none;
    }

    .sm-box .mob {
        display: block;
        margin-top: 100px;
    }

    .sm-box .mob > .img {
        width: 100%;
        margin-bottom: 70px;
        padding: 0 8%;
        box-sizing: border-box;
    }

    .sm-box .mob > .img > img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .sm-box .mob > .text-box {
        width: 100%;
        box-sizing: border-box;
        position: relative;
    }

    .sm-box .mob > .text-box .box {
        width: 100%;
        padding: 25px 8%;
        box-sizing: border-box;
        position: relative;
        background: transparent;
    }

    .sm-box .mob > .text-box .box:nth-child(2n) {
        background: #fafafa;
    }

    .sm-box .mob > .text-box .box::before {
        content: '';
        display: block;
        width: 84%;
        height: 1px;
        background: #f4f4f4;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .sm-box .mob > .text-box .box:last-child::after {
        content: '';
        display: block;
        width: 84%;
        height: 1px;
        background: #f4f4f4;
        position: absolute;
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .sm-box .mob > .text-box .box > strong {
        font-size: 20px;
        font-family: 'NanumSquare-B';
        color: #0037af;
        background: linear-gradient(to top, rgba(0,55,175,0.15) 50%, transparent 50%);
    }

    .sm-box .mob > .text-box .box > p {
        margin-top: 20px;
        font-size: 17px;
        line-height: 30px;
        color: #666;
    }
}

@media only screen and (max-width: 780px) {
    .recruit-benefits .flex {
        padding-top: 100px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .recruit-benefits .flex .box {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 35px 30px;
        height: auto;
        align-items: center;
    }

    .recruit-benefits .flex .box.half {
        width: 100%;
    }

    .recruit-benefits .flex .box + .box {
        margin-top: 20px;
    }

    .recruit-benefits .flex .box .img {
        width: 150px;
        height: 150px;
        margin-bottom: 0;
    }

    .recruit-benefits .flex .box .img + div {
        width: calc(100% - 150px);
        padding-left: 30px;
    }

    .recruit-benefits .flex .box h4 {
        font-size: 20px;
        width: 100%;
        text-align: left;
    }

    .recruit-benefits .flex .box h4::before {
        display: none;
    }

    .recruit-benefits .flex .box p {
        font-size: 17px;
        width: 100%;
        text-align: left;
    }
}

@media only screen and (max-width: 650px)  {
    .recruit-step {
        padding: 70px 30px;
        justify-content: space-between;
    }

    .recruit-step > .step {
        width: 36vw;
        height: 36vw;
        padding-top: 10vw;
    }

    .recruit-step > div:nth-child(5), .recruit-step > div:last-child {
        margin-top: 7vw;
    }

    .recruit-step > div:first-child::before {
        left: 36vw;
    }

    .recruit-step > div:first-child::before, .recruit-step > div:nth-child(7)::before {
        width: 15.5vw;
    }

    .recruit-step > div:first-child::after {
        left: 49vw;
    }

    .recruit-step > div:nth-child(3)::before {
        top: 36vw;
    }

    .recruit-step > div:nth-child(3)::after {
        left: 16.1vw;
        top: 38vw;
    }

    .recruit-step > div:nth-child(7)::before {
        right: 36vw;
    }

    .recruit-step > div:nth-child(7)::after {
        right: 49.1vw;
        top: 47.4%;
    }
}

@media only screen and (max-width: 550px) {
    
    .sub-top {
        height: 253px;
    }

    .sub-top > h2 {
        font-size: 20px;
    }

    .sub-top > ul {
        bottom: 20px;
        right: 30px;
    }

    .sub-top > ul > li {
        font-size: 12px;
    }

    .sub-top > ul > li::after {
        margin: 0 5px;
        font-size: 12px;
    }

    .sub-content {
        padding-top: 50px;
    }

    .sub-content .con-top {
        padding: 0 30px;
    }

    .sub-content .con-top > h3 {
        font-size: 25px;
    }

    .sub-content .con-top > h3 + p {
        margin-top: 22px;
    }

    .sub-content .con-top > p.mob {
        margin-top: 22px;
        font-size: 14px;
        line-height: 25px;
    }

    .main-business {
        margin-top: 70px;
        padding: 70px 30px 100px;
    }

    .main-business .text-box strong {
        font-size: 20px;
    }

    .main-business .text-box {
        margin-bottom: 30px;
    }

    .main-business .card-box .card .card-img {
        width: 68px;
        height: 68px;
        margin-bottom: 25px;
    }

    .main-business .card-box .card > p {
        font-size: 16px;
        line-height: 25px;
    }

    .main-business .card-box .card > p.web {
        display: block;
    }

    .main-business .card-box .card > p.mob {
        display: none;
    }

    .main-business .card-box .card > span {
        font-size: 14px;
        line-height: 23px;
    }

    .main-business .card-box .card {
        padding: 30px 25px;
    }

    .greetings {
        padding: 70px 30px 0;
    }

    .greetings > p {
        font-size: 14px;
        line-height: 25px;
    }

    .greetings .flex {
        margin-top: 60px;
    }

    .greetings .flex > p {
        font-size: 14px;
    }

    .contact-box {
        padding: 70px 30px 0;
    }

    .contact-box > .card {
        padding: 30px 0;
    }

    .contact-box > .card + .card {
        margin-top: 20px;
    }

    .contact-box > .card .card-img {
        width: 70px;
        height: 70px;
    }

    .contact-box > .card > strong {
        font-size: 16px;
    }

    .contact-box > .card > p {
        margin-top: 20px;
        font-size: 16px;
    }

    .contact-box > .card > p + p {
        margin-top: 10px;
        font-size: 15px;
    }

    .si-img {
        width: calc(100% - 60px);
        margin-top: 70px;
    }

    .sm-box .mob {
        margin-top: 70px;
    }

    .sm-box .mob > .img {
        padding: 0 30px;
        margin-bottom: 40px;
    }

    .sm-box .mob > .text-box .box > strong {
        font-size: 14px;
    }

    .sm-box .mob > .text-box .box > p {
        margin-top: 11px;
        font-size: 14px;
        line-height: 22px;
    }

    .recruit-step {
        margin-top: 70px;
    }

    .recruit-step > div::after {
        display: none !important;
    }

    .recruit-step > div:first-child::before, .recruit-step > div:nth-child(7)::before {
        width: 18vw;
    }

    .recruit-step > div:nth-child(3)::before {
        height: 10vw;
    }

    .recruit-step > div:nth-child(5) {
        z-index: 9;
    }

    .recruit-step .step > strong {
        font-size: 15px;
    }

    .recruit-step .step.last > strong {
        font-size: 15px;
    }

    .recruit-step .step > p {
        font-size: 17px;
        line-height: 28px;
    }

    .recruit-info {
        padding: 40px 30px 70px;
        overflow: hidden;
    }

    .recruit-info h3 {
        font-size: 20px;
    }

    .recruit-info h3 + .flex {
        padding-top: 40px;
    }

    .recruit-info .flex .box > h4 {
        font-size: 16px;
        top: -10px;
    }

    .recruit-info .flex .box > p {
        font-size: 14px;
        line-height: 22px;
    }

    .recruit-info .flex .box > p::before {
        top: 10px;
    }

    .recruit-info .flex .box > p + p {
        margin-top: 18px;
    }

    .recruit-info .flex .box {
        padding: 28px 0;
    }

    .recruit-info .flex + h3 {
        margin-top: 40px;
    }

    .recruit-info > .bg {
        width: 165px;
        height: 165px;
        right: -20px;
    }

    .recruit-benefits {
        padding: 70px 30px 110px;
    }

    .recruit-benefits .flex .box {
        padding: 17px 20px;
    }

    .recruit-benefits .flex .box + .box {
        margin-top: 10px;
    }

    .recruit-benefits .flex .box .img + div {
        width: calc(100% - 73px);
        padding-left: 20px;
    }

    .recruit-benefits .flex .box .img {
        width: 73px;
        height: 73px;
    }

    .recruit-benefits .flex .box h4 {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .recruit-benefits .flex .box p {
        font-size: 14px;
        line-height: 23px;
    }

    .sub-content .history {
        padding: 70px 30px 100px;
    }

    .sub-content .history .box .years {
        width: 90px;
    }

    .sub-content .history .box .years::after {
        right: 0;
    }

    .sub-content .history .box .years > strong {
        font-size: 20px;
        line-height: 25px;
    }

    .sub-content .history .box .work {
        width: calc(100% - 130px);
    }

    .sub-content .history .box .work > p {
        font-size: 14px;
        line-height: 25px;
    }

    .sub-content .history .box .work::before {
        left: -57px;
        top: -3px;
    }

    .sub-content .history .box .work::after {
        left: -45.5px;
        top: 9px;
    }

    #footer {
        margin-top: 100px;
    }
}

@media only screen and (max-width: 415px) {
    .recruit-step {
        justify-content: space-between;
    }

    .recruit-step > .step {
        width: 35vw;
        height: 35vw;
        padding-top: 9vw;
    }

    .recruit-step .step > strong {
        font-size: 12px !important;
    }

    .recruit-step .step > p {
        font-size: 0.8rem !important;
        line-height: 21px !important;
    }

    .recruit-step > div:first-child::before, .recruit-step > div:nth-child(7)::before {
        width: 18vw;
    }

    .recruit-step > div:first-child::before {
        left: 35vw;
    }

    .recruit-step > div:nth-child(3)::before {
        top: 35vw;
    }

    .recruit-step > div:nth-child(7)::before {
        right: 35vw;
    }
}

/* 반응형 */


.columns {
    position: relative;
    width: 100%;
}

.columns > .item {
    background: #f7f9ff;
    border-radius: 8px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.03);
    padding: 50px;
}

.columns > .item .top {
    font-size: 22px;
    color: #222;
    font-weight: bold;
    margin-bottom: 25px;
}

.columns > .item .bottom {
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    color: #666;
}

/* 메인 그리드 */


.grid {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    columns: 3;
    column-gap: 20px;
}

.grid > .item {
    position: relative;
    background: #f7f9ff;
    border-radius: 8px;
    display: inline-block;
    width: 100%;
    padding: 50px;
    margin-bottom: 20px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.05);
}

.grid > .item > p {
    font-size: 22px;
    line-height: 1.4;
    color: #222;
    font-weight: bold;
    margin-bottom: 25px;
}

.grid > .item > span {
    /*font-weight: bold;*/
    color: #666;
    font-size: 22px;
    line-height: 1.4;
}

@media all and (max-width:1200px) {
    .grid > .item {
        padding: 40px;
    }

    .grid > .item > p {
    font-size: 20px;
    line-height: 1.4;
    color: #222;
    font-weight: bold;
    margin-bottom: 25px;
}

    .grid > .item > span {
        /*font-weight: bold;*/
        color: #666;
        font-size: 20px;
        line-height: 1.4;
    }
}

@media all and (max-width:830px) {
    .grid {
        columns: 2;
    }

    .grid > .item {
        padding: 30px;
    }

    .grid > .item > p {
    font-size: 18px;
    line-height: 1.4;
    color: #222;
    font-weight: bold;
    margin-bottom: 20px;
}

    .grid > .item > span {
        font-weight: bold;
        color: #666;
        font-size: 18px;
        line-height: 1.4;
    }
}

@media all and (max-width:650px) {
    .grid {
        column-gap: 15px;
    }

    .grid > .item {
        padding: 25px 20px;
    }

    .grid > .item > p {
    font-size: 13px;
    line-height: 1.2;
    color: #222;
    font-weight: bold;
    margin-bottom: 14px;
}

    .grid > .item > span {
        color: #5a5a5a;
        font-size: 10px;
        line-height: 1.2;
    }
}


/* 메인 그리드 */