@charset "utf-8";
/*font : paperozi*/

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-3Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-4Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-5Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}
/* font : pretendard */
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}
/* 색 설정 */
:root {
    --main-color: #0070C0;
    --black-color : #333;
    --white-color : #fff;
}

/* size */
@media screen and (max-width: 1250px) { } /* tablet */
@media screen and (max-width: 650px) { } /* mobile */

/* 스크롤 커스텀 */
html::-webkit-scrollbar {width: 8px;}
html::-webkit-scrollbar-thumb {background-color: var(--main-color); border-radius: 10px;}

/* 드래그 블록 커스텀 */
::selection { background-color:var(--main-color); color:#fff; }

/* default */
*{
    font-size: 14px;
    font-weight: 400;
    font-family: 'Paperozi', sans-serif;
    color : #333;
    box-sizing: border-box;
    letter-spacing: -0.04em;
    line-height: 140%;
}

body{ font-family: 'Pretendard', sans-serif; font-weight:400; font-size: 16px; letter-spacing: -0.04em; position: relative;}
html.modal-open,
body.modal-open{
    overflow: hidden;
    height: 100%;
}
section{ display:block; }
a{ color:inherit; }

.inner{ width:1200px; margin:0 auto; }

.paging_box{ padding:10px 0; display:flex; align-items: center; justify-content: center; }

select{
    -webkit-appearance: none; -moz-appearance: none;  appearance: none;
    background: url('../img/common/select-icon.png') no-repeat 98% 50% #fff; 
}
select::-ms-expand{ display:none; }
p{ word-break: keep-all; }

@media screen and (max-width: 1250px) { 
    .inner{ width:100%; padding:0 10px; }
} /* tablet */
@media screen and (max-width: 650px) { 
    .paging_box{ font-size: 13px; }
} /* mobile */

/* header */
header{ 
    position: absolute;
    /* position: fixed;
    top: 0;
    left: 0; */
    width: 100%;
    height: 100px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.04);
    
}
header .inner{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo div{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.logo .consultant{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 5px;
    padding-left: 14px;
    display: inline-block;
}
header .inner .logo span ,
header .inner .logo span b{
    font-size: 16px;
    color: #fff;
}
header .inner nav ul li a{
    color: #FFF;
    font-size: 18px;
}
header .inner nav ul li{
    font-weight: 500;
}
/*header scroll*/
/* header.active{
    background: #0070C0;
} */
/* section : sec1 */
.sec1{
    position: relative;
    height: 100vh;
    background: linear-gradient(180deg, #369EFF 0%, #2757BE 86.76%);
    overflow: hidden;
}
.sec1::before{
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/main-bg1.png') no-repeat center center / cover;
    z-index: 0;
}
.sec1 .bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100px;
    left: 0;
}
.sec1 .bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec1 .inner{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec1 .swiper{
    width: 100%;
    height: 100%;
}
.sec1 .swiper-slide{
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec1 .slide .title{
    text-align: center;
}
.sec1 .slide .title h1{
    display: inline-block;
    background-color: #004B81;
    padding: 10px 20px;
    border-radius: 4px;
    color: #96FFEC;
    font-size: 22px;
    font-weight: 700;
    position: relative;
}
.sec1 .slide.slide2 .title h1{
    color: #BAE9FF;
}
.sec1 .slide.slide3 .title h1{
    color: #E8E4BB;
}
.sec1 .slide .title h1::before{
    content: ' ';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #004B81;
}
.sec1 .slide .title h2{
    margin-top: 15px;
}
.sec1 .slide .title h2,
.sec1 .slide .title h2 b{
    color: #FFF;
    text-align: center;
    text-shadow: 3px 7px 9px rgba(0, 0, 0, 0.10);
    font-size: 70px;
    font-weight: 700;
    line-height: normal;
}
.sec1 .slide .title h2 b{
    color: #96FFEC;
}
.sec1 .slide.slide2 .title h2 b{
    color: #BAE9FF;
}
.sec1 .slide.slide3 .title h2 b{
    color: #E8E4BB;
}
.sec1 .slide-img{
    margin: 25px 0;
    text-align: center;
}
.sec1 .slide-img{
    margin: 10px auto;
    text-align: center;
    width: 450px;
    height: 300px;
}
.sec1 .slide-img img{
    width: inherit;
    height: inherit;
    object-fit: contain;
}
.sec1 .inner .slide-content{
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 20px;

}
.sec1 .inner .slide-content .slide-content-item{
    padding: 0 50px;
    margin-top: 30px;
}
.sec1 .inner .slide-content .slide-content-item:nth-child(2){
    border-right: 1px solid #59A0D3;
    border-left: 1px solid #59A0D3;
}
.sec1 .inner .slide-content .slide-content-item .icon{
    text-align: center;
}
.sec1 .inner .slide-content .slide-content-item .icon img{
    width: 60px;
    height: 60px;
}
.sec1 .inner .slide-content .slide-content-item .icon span{
    display: block;
    color: #fff;
    font-size: 20px;
    margin: 10px 0;
}
.sec1 .inner .slide-content .slide-content-item p,
.sec1 .inner .slide-content .slide-content-item p b{
    color: #FFF;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
}
.sec1 .inner .slide-content .slide-content-item p b{
    color: #96FFEC;
}
.sec1 .inner .slide.slide2  .slide-content .slide-content-item p b{
    color: #BAE9FF;
}
.sec1 .inner .slide.slide3  .title h2 span{
    display: inline-block;
    margin-left: 20px;
    color: #E8E4BB;
    font-size: 34px;
    font-weight: 700;
    line-height: normal;
} 
.sec1 .inner .slide.slide3 .slide-content .slide-content-item p b{
    color: #E8E4BB;
}
/* section : sec2 */
.sec2{
    background: url('../img/sec2-bg.png') no-repeat center center;
    padding: 100px 0;
}
.sec2-content{
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.sec2-content .item{
    flex: 1;
    border-radius: 30px;
    background: #FFF;
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.15);
    padding: 30px 20px;
}
.sec2-content .item .detail{
    flex: 1;
    display: flex;
    justify-content: space-between;
    min-height: 120px;
}
.sec2-content .item .detail .title span,
.sec2-content .item .detail .title p{
    font-size: 20px;
}
.sec2-content .item .detail .title h4{
    font-size: 24px;
    font-weight: 600;
}
.sec2-content .item .detail .title h5{
    font-size: 16px;
    font-weight: 300;
}
.sec2-content .item .detail .title p b{
    color: #1B74C6;
    font-size: 24px;
    font-weight: 600;
}
.sec2-content .item .detail .icon img{
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.sec2-content .item .more-btn{
    padding-top: 20px;
    border-top: 1px solid #ddd;
    margin-top: 20px;
    text-align: end;
}
.sec2-content .item .more-btn a{
    padding: 0;
}
.sec2-content .item .more-btn a i{
    display: inline-block;
    margin-left: 5px;
}
/* section : sec3 */
.sec3{
    background: linear-gradient(180deg, #E1F2FF 0%, #F3F8FC 100%);
    position: relative;
    width: 100%;
}
.sec3::before{
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/sec3-bg1.png') no-repeat center center / cover;
}
.sec3 .inner{
    padding: 100px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.sec3-title{
    position: relative;
    z-index: 1;
}
.sec3-title::before{
    content: ' ';
    height: 180%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #E7F4FE;
    opacity: 0.7;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.sec3-title .logo{
    justify-content: start;
}
.sec3-title .logo span,
.sec3-title .logo span b{
    font-size: 18px;
}
.sec3-title .logo span b{
    font-weight: 500;
}
.sec3-title h1{
    font-size: 48px;
    line-height: 130%; 
    margin: 20px 0 10px 0;
}
.sec3-title h1 b{
    color: #0070C0;
    font-weight: 700;
    font-size: 48px;
}
.sec3-content{
    background-color: #fff;
    padding: 30px;
    position: relative;
    z-index: 1;
}
.sec3-content .field{
    margin-bottom: 24px;
    position: relative;
}
.sec3-content .field p{
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 4px;
}
.sec3-content .field p b{
    color: #DF1D24;
    font-size: 18px;
}
.sec3-content .field input{
    font-family: 'Pretendard', sans-serif;
    border: none;
    padding: 16px;
    width: 100%;
    border-radius: 4px;
    background: #EAEAEA;
}
.sec3-content .field input::placeholder{
    color: #888;
}
.sec3-content .form-content{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.sec3-content .form-content input{
    display: none;
}
.sec3-content .form-content label{
    font-family: 'Pretendard', sans-serif;
    border: 2px solid #999;
    width: 30%;
    padding: 10px 0;
    text-align: center;
    color: #999;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -1.5px;
}
.sec3-content .form-content label i{
    display: inline-block;
    margin-right: 5px;
    color: #999;
    font-size: 20px;
    display: none;
}
/* 이름 경고*/
.sec3-content .field #warning{
    position: absolute;
    bottom: -30px;
    left: 0;
    display: none;
    color: red;
    font-size: 14px;
}
.sec3-content .field #warning i{
    color: red;
    display: inline-block;
    margin-right: 5px;
}
.sec3-content .field #warning.active{
    display: block;
}
/* 근로형태 체크 */
.sec3-content .field .form-content input[id="sec3-job1"]:checked~label[for="sec3-job1"]{
    color: #0070C0;
    border: 2px solid #0070C0;
}

.sec3-content .field .form-content input[id="sec3-job2"]:checked~label[for="sec3-job2"] {
    color: #0070C0;
    border: 2px solid #0070C0;
}

.sec3-content .field .form-content input[id="sec3-job3"]:checked~label[for="sec3-job3"] {
    color: #0070C0;
    border: 2px solid #0070C0;
}

.sec3-content .field .form-content input[id="sec3-job4"]:checked~label[for="sec3-job4"] {
    color: #0070C0;
    border: 2px solid #0070C0;
}

.sec3-content .field .form-content input[id="sec3-job5"]:checked~label[for="sec3-job5"] {
    color: #0070C0;
    border: 2px solid #0070C0;
}

.sec3-content .field .form-content input[id="sec3-job6"]:checked~label[for="sec3-job6"] {
    color: #0070C0;
    border: 2px solid #0070C0;
}
.sec3-content .field .form-content input[id="sec3-job1"]:checked~label[for="sec3-job1"] i{display: inline-block; color: #0070C0;}
.sec3-content .field .form-content input[id="sec3-job2"]:checked~label[for="sec3-job2"] i{display: inline-block; color: #0070C0;}
.sec3-content .field .form-content input[id="sec3-job3"]:checked~label[for="sec3-job3"] i{display: inline-block; color: #0070C0;}
.sec3-content .field .form-content input[id="sec3-job4"]:checked~label[for="sec3-job4"] i{display: inline-block; color: #0070C0;}
.sec3-content .field .form-content input[id="sec3-job5"]:checked~label[for="sec3-job5"] i{display: inline-block; color: #0070C0;}
.sec3-content .field .form-content input[id="sec3-job6"]:checked~label[for="sec3-job6"] i{display: inline-block; color: #0070C0;}
.sec3-content .agreement input{
    width: 20px;
    height: 20px;
}
.sec3-content .agreement label{
    font-family: 'Pretendard', sans-serif;
    display: inline-block;
    margin-left: 5px;
    color: #7F7F7F;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -1.5px;
}
.sec3-content .sec3-field-submit button{
    font-family: 'Pretendard', sans-serif;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(54, 158, 255, 0.00) 0%, #369EFF 100%), #0070C0;
    width: 100%;
    color: #fff;
    padding: 20px;
    border: none;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 500;
}
/* section : sec4 */
.sec4{
    padding-bottom: 150px;
}
.sec4-1{
    padding: 50px 0;
    background: #F3F8FC;
}
.sec4-1 .title h3{
    font-family: 'Pretendard', sans-serif;
    font-size: 22px;
    font-weight: 300;
}
.sec4-1 .title h4{
    font-family: 'Pretendard', sans-serif;
    font-size: 28px;
    font-weight: 500;
}
.sec4-1 .itmes{
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.sec4-1 .item{
    flex: 1;
    background-color: #fff;
    position: relative;
    border-radius: 10px;
    padding: 20px 0;
    text-align: center;
}
.sec4-1 .item .num{
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 120px;
    font-family: 'Pretendard', sans-serif;
    line-height: 100%;
    color: #E6F4FF;
    font-weight: 700;
}
.sec4-1 .item:nth-child(2) .num{
    color: #D5ECFF;
}
.sec4-1 .item:nth-child(3) .num{
    color: #C5E5FF;
}
.sec4-1 .item:nth-child(4) .num{
    color: #B8DFFF;
}
.sec4-1 .item .content p{
    color: #0070C0;
    font-family: 'Pretendard', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 120%;
    margin-top: 20px;
}
.sec4-2{
    padding: 50px 0;
}
.sec4-2 .t1{
    font-size: 16px;
    margin-bottom: 20px;
}
.sec4-2 .t2{
    font-weight: 500;
}
.sec4-2 .t3{
    margin-bottom: 20px;
    color: #555;
}
.sec4-2 .logo{
    margin-bottom: 20px;
}
.sec4-2 .logo div img{
    width: 160px;
}
.sec4-2 .logo div{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}
.sec4-2 .logo .consultant{
    display: block;
    font-size: 14px;
}
.sec4-2 .info-link{
    border-radius: 30px;
    background: #0070C0;
    color: #fff;
    padding: 8px 20px;
    border: none;
}
/* section : footer */
footer{
    position: fixed;
    bottom: 0;
    z-index: 100;
    width: 100%;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
footer.hide{
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}
footer .inner{
    margin: 0 auto;
    background: #FFF;
    border-radius: 20px 20px 0 0;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 -2px 10px 0 rgba(0, 0, 0, 0.15);
}
footer .footer-wrap{
    flex: 1;
}
footer .title h3{
    display: inline-block;
    color: #1B74C6;
    font-size: 24px;
    font-weight: 900;
    line-height: 140%; 
    margin-right: 10px;
    position: relative;
    margin-left: 20px;
}
footer .title h3::before{
    content: ' ';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1B74C6;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
footer .title span{
    font-size: 20px;
    line-height: 140%; 
    color: #7F7F7F;
}
footer .footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
footer .footer-content > *{
    flex: 1;
}
footer .footer-content > input{
    width: 100%;
    border-radius: 10px;
    border: 1px solid #E4E4E4;
    background: #FFF;
    padding: 10px;
}
footer .footer-content .dropdown{
    position: relative;
}
footer .footer-content .dropdown input{
    width: 100%;
    padding: 10px;
    border: 1px solid #E4E4E4;
    border-radius: 10px;
}
footer .footer-content .dropdown i{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #7F7F7F;
    font-size: 20px;
}
footer .footer-content .dropdown-box{
    display: none;
    position: absolute;
    top: -600%;
    left: 0;
    background: #fff;
    border: 1px solid #E4E4E4;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
}
footer .footer-content .dropdown-box.active{
    display: block;
}
footer .footer-content .dropdown-box li{
    padding: 10px 0;
    width: 100%;
}
footer .inner button{
    min-width: 180px;
    border-radius: 10px;
    border: none;
    font-family: Pretendard;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(286deg, rgba(54, 158, 255, 0.00) 0%, #369EFF 100%), #1B74C6;
}
footer .inner .agreement input{
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
/* .footer-trigger{
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    background-color: #1B74C6;
    color: #fff;
    font-size: 18px;
    padding: 4px 14px;
    border: none;
    border-radius: 30px;
}
.footer-trigger .text {
    color: #fff;
} */
/* modal */
.modal{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100vw;
    display: none;
}
.modal.active{
    display: block;
}
.modal-wrap{
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-wrap .modal-content{
    margin: 50px 0;
    width: calc(100% - 100px);
    height: calc(100% - 100px);
    border-radius: 5px;
    background-color: #fff;
    overflow-y: auto;
}
.modal-header{
    position: relative;
    padding: 50px 0;
}
.modal-header::before{
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(90deg, #F8FFFB 0%, #EFF7FF 100%);
}
#modal2 .modal-header::before{
    background: linear-gradient(90deg, #EEF3FF 0%, #EFF7FF 100%);
}
#modal3 .modal-header::before{
    background: linear-gradient(90deg, #FFFCF1 0%, #EFF7FF 100%);
}
.modal-header > *{
    position: relative;
    z-index: 1;
}
.modal-header .close-btn{
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    z-index: 100;
}
.modal-header .close-btn i{
    font-size: 36px;
    color: #555;
}
.modal-header .title{
    text-align: center;
}
.modal-header .title h3{
    color: #555;
    font-family: Pretendard;
    font-size: 32px;
    font-weight: 500;
    line-height: normal;
}
.modal-header .title h1{
    margin-top: 10px;
    color: #0070C0;
    font-family: Pretendard;
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
}
.modal-header .summation{
    width: 60%;
    margin: 50px auto;
    padding: 30px;
    border-radius: 10px;
    background: #FFF;
    display: flex;
    justify-content: space-between;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.10);
}
.modal-header .summation .item{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: start;
}
.modal-header .summation .item .item-inner .icon{
    text-align: center;
}
.modal-header .summation .item .item-inner .icon img{
    width: 70px;
    height: 70px;
    object-fit: contain;
}
.modal-header .summation .item .item-inner .icon p{
    font-family: Pretendard;
    font-size: 20px;
    font-weight: 300;
    margin: 10px 0;
}
.modal-header .summation .item .item-inner h3{
    font-family: Pretendard;
    font-size: 20px;
    line-height: normal;
    text-align: center;
}
.modal-header .summation .item .item-inner h3 b{
    color: #0070C0;
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
}
.modal-header .summation .item .item-inner div > p{
    margin-top: 5px;
    color: #777;
    text-align: center;
    font-family: Pretendard;
    font-size: 16px;
    line-height: 120%; 
}
.modal .inner{
    width: 100%;
}
.modal .accordion{
    margin: 0 20px 20px 20px;
}
.modal .accordion .accordion-title{
    border-radius: 10px;
    background: #F9F9F9;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Pretendard;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
}
.modal .accordion .accordion-title .accordion-btn{
    background-color: #0070C0;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: none;
}
.modal .accordion .accordion-title .accordion-btn i{
    transform: rotate(180deg);
    color: #fff;
}
.modal .accordion .accordion-title .accordion-btn.active{
    transform: rotate(180deg);
}
.modal .accordion .accordion-detail{
    margin: 20px;
    display: none;
}
.modal .accordion-detail .items{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.modal .accordion-detail .items > div{
    flex: 1;
}
.modal .accordion-detail .item{
    margin-bottom: 30px;
}
.modal .accordion .accordion-detail .item .title{
    font-family: Pretendard;
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
}
.modal .accordion .accordion-detail .item .title span{
    display: inline-block;
    background: #0070C0;
    width: 3px;
    height: 25px;
    margin-right: 5px;
    transform: translateY(3px);
}
.modal .accordion-detail .item .content{
    font-family: Pretendard;
    font-size: 18px;
    font-weight: 300;
    margin-top: 10px;
}
.modal .accordion-detail .item .content a{
    color: #0070C0;
    display: block;
}
.modal .accordion-detail .item .content .list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    gap: 30px;
    padding: 10px;
}
.modal .accordion-detail .item .content .list:last-child{
    margin-bottom: 10px;
}
.modal .accordion-detail .item .content .list .title{
    font-family: Pretendard;
    font-size: 15px;
    font-weight: 300;
    line-height: 140%; 
}
.modal .accordion-detail .item .content .list .list-content{
    font-family: Pretendard;
    font-size: 15px;
    font-weight: 300;
    line-height: 140%; 
    flex: 1;
}
.modal .accordion-detail .item .content .chart img{
    max-width: 450px;
    height: 300px;
    object-fit: cover;
    margin: 10px 10px 10px 0;
}
/* modal : 개인정보처리 방침 */
.privacy-policy .modal-header::before{
    background: none;
}
.privacy-policy .modal-content{
    padding: 0 30px 100px 30px;
}
.privacy-policy .modal-content h3{
    font-size: 24px;
    text-align: center;
    margin: 10px 0 30px 0;
}
.privacy-policy .modal-content .t2{
    font-size: 18px;
    font-family: 'Pretendard';
    font-weight: normal;
}
.privacy-policy .modal-content .t3{
    font-size: 16px;
    font-family: 'Pretendard';
    font-weight: 300;
    margin-bottom: 10px;
}
.privacy-policy .modal-content .t3 a{
    display: block;
    color: #0070C0;
}
/* sub1 : 상담신청 페이지 */
header.sub1{
    background-color: #1B74C6;
    background-image: url('../img/main-bg1.png');
}
.sec3.sub1{
    padding-top: 100px;
}
/*반응형 desktop ver.*/
@media screen and (max-width: 1680px) { 
    .modal-header .summation{
        width: 80%;
    }
} 
@media screen and (max-width: 1200px) { 
    header .inner{
        padding: 0 20px;
    }
    .sec1{
        height: auto;
        padding: 150px 0 50px 0;
    }
    .modal-header .summation{
        width: calc(100% - 40px);
    }
    .sec3 .inner{
        flex-direction: column;
        padding: 50px 0;
        gap: 30px;
    }
    .sec3-title{
        text-align: center;
    }
    .sec3-title::before{
        aspect-ratio: 2/1;
        height: 100%;
        border-radius: 10px;
    }
    .modal .accordion{
        margin: 0 0px 20px 0px;
    }
} 
@media screen and (max-width: 1125px) {
    .sec2-content .item .detail .title h4{
        font-size: 20px;
    }
    .sec2-content .item .detail .icon img{
        display: none;
    }
}
/*반응형 tablet ver.*/
@media screen and (max-width: 960px) { 
    .sec1 .slide .title h1{
        font-size: 28px;
    }
    .sec1 .slide .title h2,
    .sec1 .slide .title h2 b{
        font-size: 40px;
    }
    .sec1 .inner .slide.slide3  .title h2 span{
        font-size: 18px;
    }
    .sec1 .slide .slide-img{
        margin: 0 auto;
        width: 350px;
        height: 250px;
    }

    .sec1 .inner .slide-content .slide-content-item .icon img{
        width: 40px;
        height: 40px;
        object-fit: cover;
    }
    .sec1 .inner .slide-content .slide-content-item .icon span{
        font-size: 16px;
    }
    .sec1 .inner .slide-content .slide-content-item p,
    .sec1 .inner .slide-content .slide-content-item p b{
        font-size: 18px;
    }
    .sec4-1 .item .num{
        font-size: 80px;
    }
    .sec4-1 .item .content img{
        width: 60px;
        height: 80px;
        object-fit: contain;
    }
    .sec4-1 .item .content p{
        font-size: 24px;
    }
    /* footer */
    footer .inner{
        padding: 20px;
    }
    footer .footer-content{
        flex-wrap: wrap;
    }
    footer .inner button{
        
        font-size: 18px;
        margin-left: 20px;
    }
    footer .footer-content input[type="text"],
    footer .footer-content input[type="tel"]{
        min-width: 180px;
    }
    footer .inner .agreement{
        min-width: 180px
    }
    footer .inner .agreement input{
        width: 18px;
        height: 18px;
    }
    /* modal */
    .modal-header > *{
        padding: 0 20px;
    }
    .modal-header .close-btn{
        top: 10px;
        right: 10px;
    }
    .modal-header .close-btn i{
        font-size: 30px;
    }
    .modal-header .summation{
        flex-direction: column;
        align-items: start;
        width: 60%;
        gap: 20px;
    }
    .modal-header .summation .item{
        width: 100%;
    }
    .modal-header .summation .item-inner{
        display: flex;
        align-items: center;
        gap: 20px;
        width: 100%;
    }
    .modal-header .summation .item-inner div:nth-child(2){
        flex: 1;
    }

    .modal-header .summation .item .item-inner .icon img{
        width: 50px;
        height: 50px;
    }
    .modal-header .summation .item .item-inner .icon p{
        margin: 5px 0;
    }
    .modal-header .summation .item .item-inner h3,
    .modal-header .summation .item .item-inner div > p{
        text-align: start;
    }
    .modal .accordion-detail .items{
        flex-direction: column;
    }
    .modal .accordion-detail .item .content .chart img{
        width: 45%;
        height: auto;
    }
    .sec4.sub1{
        padding-bottom: 50px;
    }
} 
/*반응형 mobile ver.*/
@media screen and (max-width: 768px) { 
    /* header */
    header{
        height: 80px;
    }
    .logo{
        gap: 5px;
    }
    header .inner .logo img{
        width: 100px;
    }
    header .inner .logo span,
    header .inner .logo span b{
        font-size: 10px;
    }
    header .inner .logo .consultant{
        letter-spacing: 3px;
    }
    header .inner nav ul li a{
        font-size: 15px;
    }
    
    /* section : sec1 */
    .sec1{
        padding-top: 80px;
    }
    .sec1 .slide .title h1{
        font-size: 28px;
        padding: 5px 10px;
    }
    .sec1 .slide .title h2,
    .sec1 .slide .title h2 b{
        font-size: 40px;
    }
    .sec1 .inner .slide.slide3  .title h2 span{
        font-size: 18px;
        margin-left: 5px;
    }
    .sec1 .slide .slide-img{
        width: 240px;
        height: 180px;
    }

    .sec1 .inner .slide-content{
        gap:5px;
    }
    .sec1 .inner .slide-content .slide-content-item{
        padding: 0 20px;
    }
    .sec1 .inner .slide-content .slide-content-item .icon img{
        width: 30px;
        height: 30px;
        object-fit: cover;
    }
    .sec1 .inner .slide-content .slide-content-item .icon span{
        font-size: 16px;
    }
    .sec1 .inner .slide-content .slide-content-item p,
    .sec1 .inner .slide-content .slide-content-item p b{
        font-size: 15px;
    }
    /* section : sec2 */
    .sec2{
        padding: 50px 0;
    }
    .sec2-content{
        flex-direction: column;
        gap: 10px;
    }
    .sec2-content .item{
        width: 80%;
        margin: 0 auto;
        padding: 10px 20px;
    }
    .sec2-content .item .detail{
        align-items: center;
        min-height: auto;
    }
    .sec2-content .item .detail .title span,
    .sec2-content .item .detail .title p{
        font-size: 16px;
    }
    .sec2-content .item .detail .title h4{
        font-size: 20px;
    }
    .sec2-content .item .detail .title p b{
        color: #1B74C6;
        font-size: 20px;
        font-weight: 600;
    }
    .sec2-content .item .detail .icon img{
        display: block;
        width: 60px;
        height: 60px;
        object-fit: contain;
    }
    .sec2-content .item .more-btn{
        padding-top: 10px;
        margin-top: 10px;
    }
    /* section : sec3 */
    .sec3 .inner{
        gap: 10px;
    }
    .sec3-title .icon{
        display: none;
    }
    .sec3-title .logo{
        justify-content: center;
    }
    .sec3-title .logo img{
        width: 120px;
    }
    .sec3-title .logo span,
    .sec3-title .logo span b{
        font-size: 14px;
    }
    .sec3-title .logo .consultant{
        letter-spacing: 3.5px;
    }
    .sec3-title h1{
        font-size: 28px;
        margin: 10px 0;
    }
    .sec3-title h1 b{
        font-size: 28px;
    }
    .sec3-content{
        width: calc(100% - 100px);
        padding: 10px;
    }
    .sec3-content .field{
        margin-bottom: 20px;
    }
    .sec3-content .field p,
    .sec3-content .field p b{
        font-size: 16px;
    }
    .sec3-content .field input{
        padding: 8px;
    }
    .sec3-content .form-content label{
        font-size: 14px;
        padding: 5px;
    }
    .sec3-content .form-content label i{
        font-size: 14px;
        display: none;
    }
       .sec3-content .form-content label i{
        font-size: 14px;
        display: none;
    }
    .sec3-content .field #warning{
        bottom: -25px;
        font-size: 12px;
    }
    .sec3-content .agreement input{
        width: 16px;
        height: 16px;
    }
    .sec3-content .agreement label{
        font-size: 14px;
    }
    .sec3-content .sec3-field-submit button{
        padding: 10px;
        font-size: 16px;
    }
    /* section : sec4 */
    .sec4{
        padding-bottom: 180px;
    }
    .sec4-1{
        padding: 30px 0;
    }
    .sec4-1 .title h3{
        font-size: 18px;
    }
    .sec4-1 .title h4{
        font-size: 20px;
    }
    .sec4-1 .itmes{
        gap: 8px;
        margin-top: 10px;
    }
    .sec4-1 .item{
        padding: 10px 0;
    }
    .sec4-1 .item .num{
        font-size: 30px;
    }
    .sec4-1 .item .content img{
        width: 40px;
        height: 60px;
        object-fit: contain;
        margin-top: 10px;
    }
    .sec4-1 .item .content p{
        font-size: 18px;
        margin-top: 0px;
    }
    .sec4-2{
        padding: 30px 0;
    }
    .sec4-2 .t1{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .sec4-2 .t3{
        font-size: 12px;
        margin-bottom: 20px;
        color: #555;
    }
    .sec4-2 .logo  div img{
        width: 100px;
    }
    .sec4-2 .logo span,
    .sec4-2 .logo span b{
        font-size: 12px;
    }
    .sec4-2 .logo .consultant{
        font-size: 12px;
        letter-spacing: 2.6px;
    }
    /* modal */
    .modal-wrap .modal-content{
        margin: 10px 0;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }
    .modal-header{
        padding: 30px 0;
    }
    .modal-header .close-btn{
        top: 10px;
        right: 0px;
    }
    .modal-header .close-btn i{
        font-size: 20px;
    }
    .modal-header .title h3{
        width: 70%;
        margin: 0 auto;
        font-size: 20px;
    }
    .modal-header .title h1{
        font-size: 28px;
    }
    .modal-header .summation{
        width: calc(100% - 20px);
        margin: 30px auto 0 auto;
        padding: 10px;
    }
    .modal-header .summation .item .item-inner{
        gap: 10px;
    }
    .modal-header .summation .item .item-inner .icon img{
        width: 40px;
        height: 40px;
        object-fit: contain;
    }
    .modal-header .summation .item .item-inner .icon p,
    .modal-header .summation .item .item-inner h3{
        font-size: 16px;
    }
    .modal-header .summation .item .item-inner h3 b{
        font-size: 18px;
    }
    .modal-header .summation .item .item-inner div > p{
        font-size: 12px;
    }
    .modal .accordion .accordion-title{
        padding: 10px;
        font-size: 18px;
    }
    .modal .accordion .accordion-title .accordion-btn{
        height: 20px;
        width: 20px;
    }
    .modal .accordion .accordion-title .accordion-btn i{
        font-size: 12px;
    }
    .modal .accordion .accordion-detail{
        margin: 10px;
    }
    .modal .accordion-detail .items{
        gap: 10px;
    }
    .modal .accordion-detail .item{
        margin-bottom: 10px;
    }
    .modal .accordion .accordion-detail .item .title{
        font-size: 16px;
    }
    .modal .accordion .accordion-detail .item .title span{
        height: 18px;
        margin-right: 3px;
        transform: translateY(2px);
    }
    .modal .accordion-detail .item .content{
        font-size: 15px;
    }
    .modal .accordion-detail .item .content .list{
        gap: 10px;
    }
    .modal .accordion-detail .item .content .list .title,
    .modal .accordion-detail .item .content .list .list-content{
        font-size: 14px;
    }
    .modal.privacy-policy .modal-content .close-btn{
        padding: 0;
    }
    /* footer{
        display: none;
    } */
    /* .footer-trigger{
        display: block;
    } */
} 
@media screen and (max-width: 600px) {
    .sec1 .slide .title h1{
        font-size: 18px;
    }
    .sec1 .slide .title h2,
    .sec1 .slide .title h2 b{
        font-size: 32px;
    }
    .sec1 .inner .slide.slide3  .title h2 span{
        font-size: 15px;
    }
    .sec1 .slide .slide-img img{
        width: 250px;
        height: 200px;
    }
    .sec1 .inner .slide-content .slide-content-item{
        padding: 0 10px;
    }
    .sec2-content .item{
        width: 100%;
    }
    .sec3-content{
        width: calc(100% - 20px);
    }
    .sec4{
        padding-bottom: 200px;
    }
    .privacy-policy .modal-content{
        padding: 0 10px 5px 10px;
    }
    .privacy-policy .modal-content h3{
        font-size: 22px;
        margin: 10px 0 10px 0;
    }
    .privacy-policy .modal-content .t2{
        font-size: 16px;
    }
    .privacy-policy .modal-content .t3{
        font-size: 15px;
    }
    footer .title span{
        display: none;
    }
    footer .inner{
        flex-direction: column;
        padding:  8px 10px;
    }
    footer .footer-content input[type="text"],
    footer .footer-content input[type="tel"]{
        min-width: 150px;
    }
    footer .inner .agreement{
        min-width: auto;
    }
    footer .inner button{
        margin-left: 0;
        padding: 8px 0;
        margin-top: 10px;
    }
}