/**************************************** sec1 시작*/

.sec1_slide{
    position: relative;
}

.sec1_con{
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.sec1_con_txt_wrap{
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    padding-left: 50px;
}

.sec1_subtitle{
    font-family: 'Pretendard-Bold';
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.sec1_title{
    font-family: 'Pretendard-Bold';
    font-size: 4.0625rem;
    color: #fff;
    opacity: 0.85;
}

.sec1_con_back{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.sec1_con_back img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.sec1_pagination{
    max-width: 1440px;
    width: 100%;
    bottom: 30% !important;
    margin: 0 auto;
    display: inline-flex;
    position: absolute;
    transform: translateX(-50%);
    left: 50% !important;
    padding-left: 50px;
}

.sec1_pagination span{
    width: 7px;
    height: 7px;
    background-color: #fff;
}

.sec1_line{
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    position: absolute;
    z-index: 1;
    transition: 1s ease-in;
}

.sec1_line1{
    top: -100%;
    left: 200px;
}

.sec1_line.sec1_line1.animated{
    top: 0;
}

.sec1_line2{
    bottom: -100%;
    right: 200px;
}

.sec1_line.sec1_line2.animated{
    bottom: 0;
}


/**************************************** sec1 끝*/


/**************************************** sec2 시작*/

.sec2{
    width: 100%;
    height: 860px;
    position: relative;
}

.sec2_wrap{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.sec2_con_wrap{
    max-width: 920px;
    width: 100%;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
}

.sec2_con_subtitle{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.sec2_con_subtitle > div{
    font-family: 'Pretendard-ExtraBold';
    font-size: 1.0625rem;
    color: #1e7135;
}

.sec2_con{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.sec2_txt{
    color: #333;
    font-family: 'Pretendard-ExtraBold';
    font-size: 1.75rem;
    line-height: 150%;
}

.sec2_more_btn_wrap{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.sec2_more_btn{
    color: #111;
    font-size: 1.0625rem;
    font-family: 'Pretendard-ExtraBold';
    max-width: 210px;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #333;
    position: relative;
    overflow: hidden;
    transition: 1s;
}

.sec2_more_btn::after{
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    width: 100%;
    height: 100%;
    transition: 0.4s;
    z-index: -1;
}

.sec2_more_btn:hover{
    color: #fff;
}

.sec2_more_btn:hover::after{
    top: 0;
}

.sec2_back_wrap{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    z-index: -1;
}

.sec2_back_wrap >div{
    position: relative;
    overflow: hidden;
    opacity: 0.45;
}

.sec2_back_lt{
    top: 0;
    left: 0;
    max-width: 692px;
    width: 100%;
    height: 100%;
    background-color: #feffe5;
}

.sec2_back_rt{
    top: 0;
    right: 0;
    max-width: 1300px;
    width: 100%;
    max-height: 420px;
    height: 100%;
    background-color: #feffe5;
}

.sec2_back_wrap >div img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.sec2_back_lt img{
    transform: translateX(-100%);
}

.sec2_back_lt.animated img{
    transform: translateX(0);
}

.sec2_back_rt img{
    transform: translateY(100%);
}

.sec2_back_rt.animated img{
    transform: translateY(0);
}

/**************************************** sec2 끝*/


/**************************************** sec3 시작*/

.sec3_wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec3_con{
    max-width: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec3_thum{
    position: relative;
    max-width: 450px;
    width: 100%;
    height: 330px;
    overflow: hidden;
    transition: 0.4s ease;
}

.sec3_thum figure{
    width: 100%;
    height: 100%;
}

.sec3_thum figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec3_filter{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(30, 113, 53, 0.8);
    opacity: 0;
    transition: 0.4s ease;
}

.sec3_filter div{
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.sec3_filter div > i{
    font-size: 20px;
    color: #fff;
}

.sec3_filter div > div{
    font-family: 'Pretendard-ExtraBold';
    font-size: .875rem;
    color: #fff;
    letter-spacing: 5px;
}

.sec3_con:hover .sec3_thum{
    max-width: 330px;
    height: 330px;
    border-radius: 100%;
}

.sec3_con:hover .sec3_filter{
    opacity: 1;
}

.sec3_cap_wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    margin-top: 30px;
}

.sec3_cap_wrap > div{
    color: #111;
}

.sec3_title{
    color: #333;
    font-size: 1.875rem;
    font-family: 'Pretendard-Bold';
}

.sec3_cap{
    font-size: 1.25rem;
    font-family: 'Pretendard-Light';
}

/**************************************** sec3 끝*/



@media screen and (max-width: 1440px) {

}

@media screen and (max-width: 1240px) {

}

@media screen and (max-width: 1024px) {

    .sec1_con_txt_wrap{
        row-gap: 20px;
        padding-left: 20px;
    }

    .sec1_title{
        font-size: 3.4375rem;
    }

    .sec1_pagination{
        padding-left: 20px;
    }

    .sec2_txt{
        font-size: 1.75rem;
    }

    .sec3_wrap{
        align-items: flex-start;
        column-gap: 20px;
    }

    .sec3_cap{
        font-size: 1.0625rem;
        word-break: keep-all;
    }
    
    .sec3_con:hover .sec3_thum{
        max-width: 450px;
        height: 330px;
        border-radius: 0;
    }
    
    .sec3_con:hover .sec3_filter{
        opacity: 0;
    }    

    .sec2_more_btn:hover{
        color: #111;
    }

}

@media screen and (max-width: 768px) {

    .sec2{
        height: 440px;
    }

    .sec2_con_wrap{
        justify-content: flex-end;
    }

    .sec2_con{
        flex-direction: column;
        row-gap: 30px;
    }

    .sec2_back_wrap{
        position: absolute;
        top: -65%;
    }

    .sec2_back_wrap >div img{
        top: 45%;
        transform: translateX(-100%) scale(1.25);
    }

    .sec2_back_lt.animated img{
        transform: translateX(0) scale(1.25);
    }

    .sec2_back_lt{
        opacity: 0.4;
        max-width: none;
    }

    .sec2_back_rt{
        display: none;
    }

    .sec2_more_btn_wrap{
        justify-content: flex-start;
    }

    .sec3_wrap{
        flex-direction: column;
        align-items: center;
        row-gap: 40px;
    }

    .sec3_cap_wrap{
        row-gap: 10px;
        margin-top: 20px;
    }

    .sec3_cap{
        font-size: 1.25rem;
    }

    .sec3_thum{
        height: 280px;
    }

    .sec3_con:hover .sec3_thum{
        height: 280px;
    }

}

@media screen and (max-width: 540px) {

    .sec1_line{
        display: none;
    }

    .sec1_subtitle{
        font-size: 1.0625rem;
        letter-spacing: 5px;
    }

    .sec1_title{
        font-size: 2.5rem;
    }

    .sec2_txt{
        font-size: 1.5rem;
    }

    .sec2_more_btn{
        max-width: 150px;
        height: 45px;
    }

    .sec3_thum{
        height: 220px;
    }

    .sec3_con:hover .sec3_thum{
        height: 220px;
    }

    .sec3_title{
        font-size: 1.625rem;
    }

    .sec3_cap{
        font-size: 1.125rem;
    }

}

@media screen and (max-width: 414px) {

}