.mobile-title {
    display: none;
}
/* visual */
.visual{
    position: relative;
    background: url(../images/visual_bg.png) no-repeat center bottom/cover #EEEDF2;
    width: 100%;
    height: 100%;
}
.visual .title_wrap{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.visual .title_wrap p{
    font-weight: 500;
    margin-bottom: 40px;
    color: #7C8385;
}
.visual .title_wrap a{
    font-size: 22px;
    font-weight: bold;
    display: inline-flex;
    margin-top: 60px;
    border-radius: 30px;
    border: 2px solid #ff007b;
    padding: 4px 16px;
}
.visual .title_wrap span{
    font-weight: 500;
}
.visual > a{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: fadeInDown 1s;
    filter: drop-shadow(0 4px 4px rgba(5,46,49,0.07));
}

/* s1 */
.section1{
    background: #fff;
}
.section1 .text_img{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 140px;
}
.section1 .text_img .text_wrap h2{
    font-weight: 300;
    margin-bottom: 40px;
}
.section1 .text_img .text_wrap p{
    color: #7C8385;
    margin-top: 40px;
}
.section1 .text_img .img_wrap{
    box-shadow: -30px 30px 50px rgba(5,46,49,0.07);
}
.section1 .btn_start {
    text-align: center;
}

/* s2 */
.section2{
    position: relative;
    padding: 140px 0;
    background: #F8FBFB;
}
.section2 h2{
    text-align: center;
    padding: 0 5%;
}
.section2 .dot_wrap{
    position: absolute;
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%);
    display: flex;
}
.section2 .dot_wrap span{
    margin: 0 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D1D8D9;
    cursor: pointer;
}
.section2 .dot_wrap .is_active{
    background: #ff007b;
}
.section2 ul{
    position: relative;
    display: flex;
    height: 440px;
    overflow: hidden;
}
.section2 ul li{
    position: absolute;
    width: 280px;
    height: 400px;
    margin-right: 20px;
    background: #fff;
    border-radius: 40px;
    cursor: pointer;
}
.section2 ul li:nth-child(2n){
    margin-top: 40px;
}
.section2 ul li .work_inner{
    padding: 40px;
    max-height: 320px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.section2 ul li .work_inner .text_wrap div{
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    letter-spacing: 0;
    width: 32px;
    height: 32px;
    background: #ff007b;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.section2 ul li .work_inner .text_wrap dt{
    font-size: 22px;
    font-weight: 500;
    color: #7C8385;
}
.section2 ul li .work_inner .text_wrap dd{
    display: none;
}
.section2 ul li .work_inner .img_wrap{
    text-align: center;
}
.section2 ul li .work_inner .img_wrap img{
    max-width: 190px;
    height: auto;
    padding: 5px;
} 
.section2 ul li .work_inner .img_wrap > div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.section2 ul li .work_inner .img_wrap > div img{
    width: 90px;
}
.section2 ul li .work_inner .img_wrap > div > div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.section2 .btn_open{
    font-weight:bold;
    margin:5px;
    padding:4px 6px;
    background:#000;
    color:#fff;
}
.section2 .pop_work{
    position:fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display:none;
    z-index: 11;
}
.section2 .pop_work .pop_bg{
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section2 .pop_work .pop_body {
    position: relative;
    background:#fff;
    max-width: 1000px;
    width: 90%;
    height: 500px;
}
.section2 .pop_work .pop_body .pop_inner{
    height: 420px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.section2 .pop_work .text_img{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.section2 .pop_work .img_wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-height: 200px;
}
.section2 .pop_work .img_wrap > div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.section2 .pop_work .img_wrap > div > div{
    display: flex;
    align-items: center;
}
.section2 .pop_work .img_wrap img{
    padding: 10px;
    max-height: 180px;
}
.section2 .pop_work dt{
    font-size: 22px;
    font-weight: 500;
    border-bottom: 1px solid #4B565B;
    padding-bottom: 20px;
    margin-bottom: 20PX;
    width: 100%;
}
.section2 .pop_work dd{
    color: #7C8385;
    overflow-y: auto;
}
.section2 .pop_work dd p{
    padding-bottom: 20px;
}
.section2 .pop_work .close {
    position: absolute;
    right: 0;
    top: 0;
}

/* s3 */
.section3{
    background: #fff;
}
.section3 h2{
    text-align: center;
}
.section3 ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #D1D8D9;
}
.section3 ul li{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.04em;
    color: #7C8385;
    width: 24%;
    height: 140px;
    padding: 40px;
    background: #F8FBFB;
    border-radius: 40px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.section3 ul li span{
    color: #4B565B;
}
.section3 .text_wrap{
    background: url(../images/bg_s3_01.png) no-repeat center/contain;
}
.section3 .text_wrap p{
    font-size: 22px;
    font-weight: 500;
    padding-bottom: 40px;
    text-align: center;
}
.section3 .text_wrap p:last-child{
    padding: 0;
}

/* s4 */
.section4{
    padding: 140px 0;
    background: #F8FBFB;
}
.section4 h2{   
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 0 5%;
    align-items: flex-start;
}
.section4 h2 b{
    font-size: 60px;
    font-weight: bold;
    color: #D1D8D9;
    display: inline-flex;
    margin: -20px 10px 0;
}
.section4 .img_wrap img{
    width: 100%;
}
.section4 .bg_box{
    background: #C7F3F3;
    width: 100%;
    height: 60px;
    margin-top: -60px;
}
.section4 ul{
    max-width: 1000px;
    width: 90%;
    padding: 180px 5% 0;
    margin: 0 auto;
}
.section4 ul li{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 180px;
}
.section4 ul li:last-child{
    margin: 0;
}
.section4 ul li .text_wrap{
    font-size: 22px;
    font-weight: 500;
    width: 380px;
    height: 220px;
    background: #ECF6F6;
    border: 1px solid #C7F3F3;
    padding: 40px;
    color: #7C8385;
}
.section4 ul li:nth-child(2) .text_wrap{
    width: 340px;
    padding-left: 80px;
}
.section4 ul li .text_wrap b{
    color: #4B565B;
}
.section4 ul li .text_wrap dt{
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #ff007b;
    margin-bottom: 20px;
}
.section4 ul li img{
    margin: -40px 40px 40px -40px;
}
.section4 ul li:nth-child(2) img{
    margin: -40px -40px 40px 40px;
    z-index: 1;
}

/* s5 */
.section5{
    background: #ff007b;
    text-align: center;
    color: #fff;
}
.section5 div{
    padding: 140px 5% 0;
}
.section5 div h2{
    font-weight: 300;
    margin-bottom: 40px;
}
.section5 img{
    max-width: 1207px;
    width: 100%;
    margin: 40px auto 0;
}

/* s6 */
.section6{
    text-align: center;
    background: #F8FBFB;
}
.section6 h2{
    font-weight: 500;
}
.section6 ul{
    display: flex;
    justify-content: space-between;
    color: #7C8385;
}
.section6 ul li div{
    width: 200px;
    height: 200px;
    background: #F8FBFB;
    border-radius: 40px;
    box-shadow : -20px 30px 35px rgba(5,46,49,0.07), 3px -3px 0 #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
.section6 ul li dt{
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #4B565B;
}

/* s7 */
.section7{
    text-align: center;
    background: #fff;
}
.section7 h2{
    font-weight: 500;
    margin-bottom: 40px;
}
.section7 ul{
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
}
.section7 ul li{
    width: 306px;
    color: #7C8385;
}
.section7 ul li img{
    width: 100%;
    margin-bottom: 20px;
}
.section7 ul li dt{
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.section7 ul li dt span{
    margin-right: 16px;
}
.section7 ul li dt div{
    flex: 1;
    height: 2;
    background: #ff007b;
}
.section7 .content > div{
    font-size: 22px;
    font-weight: 500;
    color: #ff007b;
    background: #F8FBFB;
    border: 1px solid #C7F3F3;
    padding: 20px 0;
    width: 100%;
}

/* s8 */
.section8{
    background: #F8FBFB;
    text-align: center;
    color: #7C8385;
}
.section8 h2{
    font-weight: 500;
    margin-bottom: 40px;
    color: #4B565B;
}
.section8 p{
    margin-bottom: 60px;
}
.section8 img{
    width: 100%;
    margin-bottom: 20px;
}
.section8 span{
    font-size: 16px;
    font-weight: 500;
    color: #7C8385;
}

/* s9 */
.section9{
    text-align: center;
    background: #fff;
}
.section9 h2{
    font-weight: 300;
    margin-bottom: 40px;
}
.section9 p{
    margin-bottom: 60px;
    color: #ff007b;
}
.section9 img{
    width: 100%;
    margin-top: 60px;
}

/* s10 */
.section10{
    background: #4B565B;
    text-align: center;
    letter-spacing: -0.02em;
}
.section10 .wrap{
    padding: 140px 5%;
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    color: #fff;
}
.section10 h2{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 40px;
}
.section10 p{
    margin-bottom: 60px;
}
.section10 .input_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.section10 input[type="text"]{
    font-family: 'Noto Sans KR', sans-serif;
    width: 49%;
    height: 50px;
    border-radius: 4px;
    border: 1px solid #D1D8D9;
    padding: 0 16px;
    color: #4B565B;
    box-shadow: 0 16px 20px rgba(5,46,49,0.07);
}
.section10 .submit_wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section10 .submit_wrap .chk_box{
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-left: -10px;
}
.section10 .submit_wrap .chk_box a{
    color: #fff;
}
.section10 .submit_wrap .chk_box > div{
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.section10 .submit_wrap .chk_box input[type="checkbox"] {
    opacity: 0;
}
.section10 .submit_wrap .chk_box input[type="checkbox"] + label{
    display: inline-block;
    width: 26px;
    height: 26px;
    cursor: pointer;
    background: url(../images/chk_off.svg) no-repeat;
    background-position: center;
    background-size: 26px 26px;
    border: none;
    margin-right: 10px;
}
.section10 .submit_wrap .chk_box input[type="checkbox"]:checked + label{
    background-image: url(../images/chk_on.svg);
    background-position: center;
    border: none;
}
.section10 .submit_wrap .chk_box input[type="checkbox"] + label + label{
    font-size: 14px;
    cursor: pointer;
    color: #fff;
    width: auto !important;
}
.section10 .submit_wrap .chk_box input[type="checkbox"]:checked + label + label{
    color: #fff;
}
.section10 .submit_wrap .submit{
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 16px;
    background: #ff007b;
    height: 50px;
    width: 200px;
    color: #fff;
    border: none;
    border-radius: 4px;
    box-shadow: 0 16px 20px rgba(5,46,49,0.07);
    cursor: pointer;
}

/* s11 */
.section11{
    background: #ff007b;
    text-align: center;
    letter-spacing: -0.02em;
}
.section11 .wrap{
    padding: 140px 5%;
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    color: #fff;
}
.section11 h2{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 40px;
}
.section11 p{
    margin-bottom: 60px;
}
.section11 .input_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.section11 input[type="text"]{
    font-family: 'Noto Sans KR', sans-serif;
    width: 49%;
    height: 50px;
    border-radius: 4px;
    border: 1px solid #D1D8D9;
    padding: 0 16px;
    color: #4B565B;
    box-shadow: 0 16px 20px rgba(5,46,49,0.07);
}
.section11 .submit_wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section11 .submit_wrap .chk_box{
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-left: -10px;
}
.section11 .submit_wrap .chk_box a{
    color: #fff;
}
.section11 .submit_wrap .chk_box > div{
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.section11 .submit_wrap .chk_box input[type="checkbox"] {
    opacity: 0;
}
.section11 .submit_wrap .chk_box input[type="checkbox"] + label{
    display: inline-block;
    width: 26px;
    height: 26px;
    cursor: pointer;
    background: url(../images/chk_off.svg) no-repeat;
    background-position: center;
    background-size: 26px 26px;
    border: none;
    margin-right: 10px;
}
.section11 .submit_wrap .chk_box input[type="checkbox"]:checked + label{
    background-image: url(../images/chk_on.svg);
    background-position: center;
    border: none;
}
.section11 .submit_wrap .chk_box input[type="checkbox"] + label + label{
    font-size: 14px;
    cursor: pointer;
    color: #fff;
    width: auto !important;
}
.section11 .submit_wrap .chk_box input[type="checkbox"]:checked + label + label{
    color: #fff;
}
.section11 .submit_wrap .submit{
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 16px;
    background: rgba(5,46,49,0.07);
    height: 50px;
    width: 200px;
    color: #fff;
    border: none;
    border-radius: 4px;
    box-shadow: 0 16px 20px rgba(5,46,49,0.07);
    cursor: pointer;
}



/* below 1024 */
@media only screen and (max-width: 1024px){

    .section1 .text_img .text_wrap{
        padding: 0 20px;
    }
    .section3 ul{
        justify-content: space-evenly;
    }
    .section3 ul li{
        width: 40%;
    }
    .section7 ul li{
        width: 30%;
    }
    .section7 ul li br{
        display: none;
    }

}

/* below 960 */
@media only screen and (max-width: 960px){

    .visual{
        background-position: 60% bottom;
        background-size: auto 100%;
    }
    .section2{
        padding: 140px 5%;
    }
    .section2 .dot_wrap{
        bottom: 100px;
    }
    .section2 ul{
        justify-content: center;
        height: 600px;
        text-align: center;
    }
    .section2 ul li{
        width: 100%;
        height: auto;
        margin: 10px 0;
    }
    .section2 ul li:nth-child(2n){
        margin: 10px 0;
    }
    .section2 ul li .work_inner{
        padding: 20px;
        align-items: center;
    }
    .section2 ul li .work_inner .text_wrap{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
    .section2 ul li .work_inner .text_wrap dt{
        font-size: 18px;
    }
    .section2 ul li .work_inner .img_wrap{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    .section3 ul li{
        font-size: 16px;
        width: 37%;
        padding: 20px;
    }
    .section3 ul li:last-child{
        margin: 0;
    }
    .section3 .text_wrap p{
        font-size: 18px;
    }
    .section4 .img_wrap{
        display: flex;
        justify-content: center;
    }
    .section4 .img_wrap img{
        width: 150%;
    }
    .section4 ul li{
        margin-bottom: 140px;
    }
    .section4 ul li .text_wrap,
    .section4 ul li:nth-child(2) .text_wrap{
        font-size: 18px;
        width: 50%;
        height: auto;
        padding: 20px;
        border: none;
    }
    .section4 ul li .text_wrap dt{
        font-size: 28px;
    }
    .section4 ul li img,
    .section4 ul li:nth-child(2) img{
        width: 50%;
        height: 50%;
        margin: 0;
    }
    .section6 ul{
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .section6 ul li{
        width: 40%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 60px;
    }
    .section6 ul li dt{
        font-size: 18px;
    }
    .section6 ul li:nth-child(3),
    .section6 ul li:nth-child(4){
        margin: 0;
    }
    .section7 .content > div{
        font-size: 18px;
        width: 90%;
        padding: 20px 5%;
    }
    .section8 span{
        font-size: 14px;
    }
    .section10 .submit_wrap{
        display: inline;
    }
    .section10 .submit_wrap .chk_box{
        justify-content: center;
        margin-bottom: 20px;
    }
    .section10 .submit_wrap .submit{
        width: 100%;
    }

}

/* below 768 */
@media only screen and (max-width: 768px){

    .visual{
        background-position: 80% bottom;
        background-size: auto 70%;
    }
    .visual .title_wrap{
        top: 0;
        transform: translate(-50%, 0);
        text-align: center;
    }
    .section1 .text_img{
        flex-direction: column;
        text-align: center;
        margin-bottom: 100px;
    }
    .section1 .text_img:first-child{
        flex-direction: column-reverse;
    }
    .section1 .text_img .img_wrap{
        margin-bottom: 60px;
    }
    .section1 .text_img .img_wrap img{
        max-width: 310px;
        width: 100%;
    }
    .section2{
        padding: 100px 5%;
    }
    .section2 .dot_wrap{
        bottom: 60px;
    }
    .section2 .pop_work dt{
        font-size: 18px;
    }
    .section2 .pop_work .pop_body .pop_inner{
        height: 460px;
        padding: 20px;
    }
    .section2 .pop_work .img_wrap{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        max-height: none;
    }
    .section2 .pop_work .img_wrap img{
        padding: 5px;
        max-height: 150px;
    }
    .section2 .pop_work .img_wrap > div img{
        width: 90px;
    }
    .section4{
        padding: 100px 0;
    }
    .section4 h2 b{
        font-size: 40px;
    }
    .section4 .img_wrap img{
        width: 200%;
    }
    .section4 ul{
        padding: 100px 5% 0;
    }
    .section4 ul li{
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin-bottom: 100px;
    }
    .section4 ul li img, .section4 ul li:nth-child(2){
        flex-direction: column-reverse;
    }
    .section4 ul li .text_wrap,
    .section4 ul li:nth-child(2) .text_wrap{
        padding: 20px 0;
        max-width: 460px;
        width: 100%;
        text-align: center;
    }
    .section4 ul li img, .section4 ul li:nth-child(2) img{
        max-width: 460px;
        width: 100%;
        height: auto;
    }
    .section5 div{
        padding: 100px 5% 0;
    }
    .section5 img{
        width: 120%;
        margin-left: -10%;
    }
    .section6 ul li:nth-child(3){
        margin-bottom: 60px;
    }
    .section7 ul{
        flex-direction: column;  
        align-items: center;  
        padding-bottom: 0;
    }
    .section7 ul li{
        max-width: 310px;
        width: 100%;
        margin-bottom: 60px;
    }
    .section10 .wrap{
        /*padding: 100px 5%;*/
        padding: 16px 5%;
    }
    .mobile-title {
        display: block;
    }
    .section10 .submit_wrap .chk_box{
        flex-direction: column;
    }
    .section10 .submit_wrap .chk_box > div:first-child{
        margin-bottom: 10px;
    }
    .section10 .submit_wrap .chk_box input[type="checkbox"] + label{
        background-size: 20px 20px;
        width: 20px;
        height: 20px;
    }

}

/* below 540 */
@media only screen and (max-width: 540px){

    .visual{
        background-position: 74% bottom;
        height: 110%;
    }
    .visual .title_wrap p{
        margin-bottom: 20px;
    }
    .visual .title_wrap a{
        font-size: 18px;
        padding: 2px 8px;
        margin-top: 40px;
    }
    .section3 ul li{
        width: 100%;
    }
    .section6 ul li{
        width: 100%;
    }
    .section9 h2 br{
        display: none;
    }

}

/* below 420 */
@media only screen and (max-width: 420px){
    .visual{
        background-position: 72% bottom;
        height: 110%;
    }
    .section2 .pop_work .pop_body{
        height: 540px;
    }
    .section2 .pop_work .pop_body .pop_inner{
        height: 500px;
    }
    .section2 .pop_work .img_wrap img{
        max-width: 200px;
    }
    .section2 .pop_work .img_wrap > div > div{
        flex-direction: column;
    }
    .section3 .text_wrap p br{
        display: none;
    }
    .section4 .img_wrap img{
        width: 250%;
    }
    .section9 img{
        width: 140%;
        margin-left: -20%;
    }
    .section10 h2, .section10 p{
        display: none;
        /*margin-bottom: 40PX;*/
        margin-bottom: 20PX;
    }
    .section10 .input_box{
        flex-direction: column;
        box-shadow: 0 16px 20px rgb(5 46 49 / 7%);
    }
    .section10 .input_box input[type="text"]:first-child{
        border-radius: 4px 4px 0 0;
        width: 100%;
        box-shadow: none;
    }
    .section10 .input_box input[type="text"]:last-child{
        border-radius: 0 0 4px 4px;
        width: 100%;
        box-shadow: none;
    }
    .section10 .submit_wrap .chk_box > div{
        margin: 0;
    }
    .section10 .submit_wrap .chk_box input[type="checkbox"]:checked + label + label{
        font-size: 12px;
    }

}
@media (min-width: 769px) {
    #section10 {
        position: static !important;
    }
}
@media screen and (max-width: 500px) {
    .section10 h2, .section10 p {
        display: none;
    }

    #section10 {
        width: 100%;
        background: white;
        transition: all 0.3s ease-in-out;
    }

    .fixed-section {
        position: fixed !important;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: white;
    }

    .section10 .submit_wrap .chk_box input[type="checkbox"]:checked + label + label {
        color: #ff007b;
    }

    .mobile-title {
        display: block !important;
        font-size: 24px;
        color: #ff007b;
        margin-bottom: 20px !important;
    }

    .section10 input[type="text"] {
        border-radius: 0 !important;
    }
}