/* slide */
#section1{
    width: 100%;
    height: 100vh;
    position: relative;
}

.slider-for{
    width: 100%;
    height: 100vh;
}

.prograssImg1{
    width: 100%;
    height: 100vh !important;
    background-image: url(../images/slide01.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.prograssImg2{
    width: 100%;
    height: 100vh !important;
    background-image: url(../images/slide02.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.prograssImg3{
    width: 100%;
    height: 100vh !important;
    background-image: url(../images/slide03.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.prograssImg1 img,
.prograssImg2 img,
.prograssImg3 img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slickText {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.slickLine {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.arrowLocation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrowLocation .prev,
.arrowLocation .next {
    color: #fff;
    cursor: pointer;
    font-size: 25px;
}

.arrowLocation .prev{
    margin-right: 15px;
}

.arrowLocation .next{
    margin-left: 15px;
}

.pagingInfo {
    letter-spacing: 5px;
    margin-right: -5px;
    font-size: 18px;
    color: #ddd;
    font-family: 'Pretendard-Light', sans-serif;
}

.pagingInfo .num {
    color: #fff;
    font-family: 'Pretendard-SemiBold';
}

.prograssText{
    margin: 15px 0 60px;
    text-align: center;
}

.small_text{
    width: 100%;
    text-align: center;
    font-size: 24px;
    color: #fff;
    font-family: 'Pretendard-ExtraLight', sans-serif;
}

.big_text{
    font-size: 45px;
    line-height: 70px;
    color: #fff;
    font-family: 'Pretendard-SemiBold', sans-serif;
    margin-top: 20px;
}

span.underline{
    font-size: 60px;
    font-family: 'Pretendard-Bold', sans-serif;
    display: inline;
    background-image: linear-gradient(
          transparent 60%,
          rgba(204, 162, 89, 0.7) 40%
    );
    background-repeat: no-repeat;
    background-size: 0% 100%;
    animation: under 2s;
}

.prograssText.slick-active span.underline{
    background-size: 100% 100%;
    transition-duration: 2s;
}

@keyframes under{
    0%{
        background-size: 0% 100%;
    }

    100%{
        background-size: 100% 100%;
    }
}

.scrollbar{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.scrollbar p{
    font-size: 14px;
    color: #fff;
    font-family: 'Pretendard-Thin', sans-serif;
    transform: rotate(90deg);
    margin-bottom: 30px;
}

.bar{
    width: 1px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.6);
}

.inner_bar{
    width: 1px;
    height: 0;
    background-color: #fff;
    animation: fullbar 1.5s infinite;
}

@keyframes fullbar{
    0%{
        height: 0;
    }

    100%{
        height: 70px;
    }
}
/* //slide */


/* 업무분야 */
.section1{
    width: 100%;
    padding: 100px 0 150px;
    position: relative;
}

.section1>img{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.sec_title{
    text-align: center;
}

.sec_title p{
    font-size: 36px;
    font-family: 'Pretendard-Bold', sans-serif;
    margin-top: 10px;
}

.sec_title span{
    font-size: 18px;
    font-family: 'Pretendard-Light', sans-serif;
    display: block;
    margin-top: 10px;
}

.section1 ul{
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.section1 ul li{
    width: 19%;
    height: 270px;
    border: 4px solid transparent;
    outline: 1px solid #ddd;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    cursor: pointer;
    transition: border .5s;
}

.section1 ul li p{
    font-size: 20px;
    font-family: 'Pretendard-SemiBold', sans-serif;
    margin-top: 15px;
}

.section1 ul li:hover{
    border: 4px solid #1c2b55;
}


/* 법인실적 */
.section2{
    width: 100%;
    padding: 80px 0 90px;
    background-image: url(../images/main_sec3_bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover
}

.section2 .center{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec_list{
    width: 49%;
}

.list_title{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 25px;
    box-sizing: border-box;
    border-bottom: 2px solid #fff;
}

.list_title p{
    font-size: 28px;
    color: #fff;
    font-family: 'Pretendard-SemiBold', sans-serif;
}

.plus_btn{
    width: 35px;
    height: 35px;
    border: 1px solid #cba259;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
    transition: background-color .5s;
}

.plus_btn i{
    color: #cba259;
    font-size: 24px;
    transition: color .5s;
}

.plus_btn:hover{
    background-color: #cba259;
    border: 0;
}

.plus_btn:hover i{
    color: #fff;
}

.sec_list ul{
    width: 100%;
    padding: 25px 10px 0;
    box-sizing: border-box;
}

.sec_list ul li{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    cursor: pointer;
}

.sec_list ul li:last-child{
    margin-bottom: 0;
}

.sec_list ul li p{
    font-size: 20px;
    color: #fff;
    font-family: 'Pretendard-Light', sans-serif;
}

.upload{
    font-size: 16px;
    color: #fff;
    font-family: 'Pretendard-ExtraLight', sans-serif;
}

.consul_box{
    width: 49%;
    display: inline-block;
}

.cs_01{
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    float: left;
    padding: 0 50px;
    box-sizing: border-box;
    background-color: #fff;
}

.cs01_img{
    display: flex;
    align-items: center;
}

.cs01_img p{
    font-size: 20px;
    font-family: 'Pretendard-Bold', sans-serif;
    margin-left: 10px;
}

.cs_01 ul{
    width: 55%;
}

.cs_01 ul li{
    width: 100%;
    height: 70px;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.cs_01 ul li:first-child{
    border-bottom: 1px solid #ddd;
}

.cs_01 ul li i{
    color: #cba259;
    font-size: 34px;
    margin-right: 20px;
    font-weight: bold;
}

.cs_01 ul li span{
    font-size: 18px;
    font-family: 'Pretendard-Light', sans-serif;
    display: block;
    line-height: 25px;
}

.cs_02{
    width: 100%;
    height: 80px;
    background-color: #dddfe6;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cs_02 img,
.cs_03 img,
.cs_04 img{
    transition: transform .5s;
}

.cs_02 p,
.cs_03 p,
.cs_04 p{
    font-size: 20px;
    font-family: 'Pretendard-Bold', sans-serif;
    margin-left: 20px;
}

.cs_02:hover img,
.cs_03:hover img,
.cs_04:hover img{
    transform: scale(1.2);
}

.cs_03,
.cs_04{
    width: 50%;
    height: 80px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cs_03{
    background-color: #fae100;
}

.cs_04{
    background-color: #39ad38;
}

.cs_04 p{
    color: #fff;
    font-family: 'Pretendard-SemiBold', sans-serif;
}
