.section {
    width: 100%;
    height: 100vh !important;
}

.section_inner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* section0 */
#section0 article {
    width: 100%;
    height: 100%;
    position: relative;
}

#section0 .slider-for {
    width: 100%;
    height: 100vh;
    z-index: 99;
}

.prograssImg {
    width: 100%;
    height: 100vh !important;
}

.prograssImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prograssImg.slick-active img {
    animation: img_zoom 5s ease-in forwards;
}

@keyframes img_zoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.slickText {
    width: max-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.section0_text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.big_txt,
.small_txt {
    overflow: hidden;
}

.small_txt {
    margin-top: 30px;
}

.big_txt p,
.small_txt p {
    opacity: 0;
    transform: translateY(50px);
}

.big_txt p {
    font-size: 59px;
    color: #fff;
    font-family: 'SCDream7', sans-serif;
    animation: txt_show .8s ease-in-out forwards;
}

.big_txt p span {
    color: #9ccb46;
}

.small_txt p {
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    color: #fff;
    font-family: 'Pretendard-Light', sans-serif;
    animation: txt_show 1s .3s ease-in-out forwards;
}

@keyframes txt_show {
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slickLine {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 45px;
    opacity: 0;
    transform: translateY(50px);
    animation: txt_show 1s .6s ease-in-out forwards;
}

.prev,
.next {
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.arrowLocation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 10px 0;
}

.pagingInfo,
.pagingInfo2 {
    font-size: 16px;
    color: #fff;
    font-family: 'GmarketSansTTFBold', sans-serif;
}

.proBar {
    margin: 0 13px 4px;
    width: 75px;
    background: #b7b7b7;
}

.pro-bar {
    height: 1px;
    background: #fff;
}

.pro-ani {
    animation: proBar 5s 1;
    width: 100%;
}

@keyframes proBar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}


/* section1 */
#section1 .section_inner {
    background-image: url(../images/section1_bg.jpg);
}

#section1 .center {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 55px;
    box-sizing: border-box;
}

.section1_top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section1_top p {
    font-size: 59px;
    color: #fff;
    font-family: 'Pretendard-Bold', sans-serif;
    text-transform: uppercase;
    transform: translateX(100px);
    opacity: 0;
    transition: transform 1.5s .2s ease, opacity 1.5s .2s ease;
}

#section1.active .section1_top p {
    transform: translateX(0);
    opacity: 1;
}

.section1_top a {
    width: 85px;
    height: 85px;
    border-radius: 100px;
    box-sizing: border-box;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Pretendard-Thin', sans-serif;
}

#section1 ul {
    width: 100%;
    margin-top: 6.5vh;
    display: flex;
}

#section1 ul li {
    width: 33.33%;
    height: 52.64vh;
    background-color: #235027;
    border-right: 1px solid #fff;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#section1 ul li img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .5s;
}

#section1 ul li:hover img {
    opacity: 0.3;
}

#section1 ul li:last-child {
    border-right: 0;
}

.sec1_title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    transform: translateY(30px);
    transition: transform .3s;
}

#section1 ul li:hover .sec1_title {
    transform: translateY(0);
}

.sec1_title p {
    font-size: 29px;
    color: #fff;
    font-family: 'Pretendard-SemiBold', sans-serif;
    transform: translateY(100px);
    opacity: 0;
}

#section1.active .sec1_title p {
    transform: translateY(0);
    opacity: 1;
}

#section1 ul li:first-child .sec1_title p{
    transition: transform 1s .2s ease, opacity 1s .2s ease;
}

#section1 ul li:nth-child(2) .sec1_title p{
    transition: transform 1s .3s ease, opacity 1s .3s ease;
}

#section1 ul li:last-child .sec1_title p{
    transition: transform 1s .4s ease, opacity 1s .4s ease;
}

.sec1_title a {
    width: 35px;
    height: 35px;
    border: 1px solid #fff;
    box-sizing: border-box;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    opacity: 0;
    transition: opacity .3s;
}

#section1 ul li:hover .sec1_title a {
    opacity: 1;
}

.sec1_title a i {
    font-size: 14px;
    color: #fff;
}


/* section2 */
#section2 .section_inner {
    background-image: url(../images/section2_bg.jpg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.m_sec2_slide{
    display: none;
}

.slider {
    position: relative;
    height: 100%;
    width: 100%;
    cursor: url('../images/cursor.png'), auto;
}

.slider__inner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    pointer-events: none;
}

.slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 690px;
    height: 560px;
}

.slide__bg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.slide:first-child .slide__bg,
.slide:last-child .slide__bg{
    transform: translateY(40px);
}

.slide:first-child{
    padding-left: 240px;
}

.slide:nth-child(2){
    /* padding: 0 135px; */
    padding: 0 50px;
}

.slide:last-child{
    /* padding-right: 20px; */
    margin-left: -140px;
}

.sec2_txt{
    position: absolute;
    left: 70px;
    bottom: 70px;
}

.sec2_txt p{
    font-size: 39px;
    color: #fff;
    font-family: 'Pretendard-ExtraBold', sans-serif;
}

.sec2_txt p span{
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Pretendard-ExtraLight', sans-serif;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.sec2_txt>span{
    font-size: 18px;
    color: #fff;
    font-family: 'Pretendard-Regular', sans-serif;
    display: block;
    margin-top: 20px;
}


/* section3 */
#section3 .section_inner{
    background-image: url(../images/section3_bg.jpg);
}

#section3 .center{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 55px;
    box-sizing: border-box;
}

#section3 p{
    text-align: center;
    font-size: 24px;
    color: #fff;
    font-family: 'Pretendard-Regular', sans-serif;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 1s .2s ease, opacity 1s .2s ease;
}

#section3.active p {
    transform: translateY(0);
    opacity: 1;
}

#section3 p span{
    display: block;
    font-size: 59px;
    font-family: 'Pretendard-ExtraBold', sans-serif;
    margin-bottom: 20px;
}

#section3 a{
    width: 250px;
    height: 70px;
    background-color: #72992a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 50px;
    font-size: 19px;
    color: #fff;
    font-family: 'Pretendard-SemiBold', sans-serif;
    margin-top: 70px;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 1s .3s ease, opacity 1s .3s ease;
}

#section3.active a{
    transform: translateY(0);
    opacity: 1;
}

#section3 a span{
    font-family: 'Pretendard-Thin';
    font-size: 25px;
    color: rgba(255, 255, 255, 0.8);
}

































/* mobile */
@media screen and (max-width: 767px){
    
    /* section0 */
    .slickText{
        width: 100%;
    }

    .small_txt {
        margin-top: 20px;
    }
    
    .big_txt p {
        font-size: 8vw;
    }

    .small_txt{
        width: 100%;
        padding: 0 5%;
        box-sizing: border-box;
    }
    
    .small_txt p {
        font-size: 14px;
        line-height: 22px;
        word-break: keep-all;
    }

    .small_txt p br{
        display: none;
    }

    .slickLine {
        margin-top: 30px;
    }
    
    .prev,
    .next {
        font-size: 14px;
        cursor: inherit;
    }
    
    .arrowLocation {
        margin: 2px 10px 0;
    }
    
    .pagingInfo,
    .pagingInfo2 {
        font-size: 12px;
    }
    
    .proBar {
        margin: 0 10px 4px;
        width: 50px;
    }
    
    
    /* section1 */
    #section1 .center {
        padding-top: 0;
    }
    
    .section1_top p {
        font-size: 25px;
    }
    
    .section1_top a {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    #section1 ul {
        margin-top: 3vh;
        display: block;
    }
    
    #section1 ul li {
        width: 100%;
        height: 150px;
        border-right: 0;
        border-bottom: 1px solid #fff;
    }
    
    #section1 ul li img {
        opacity: 0.3;
        transition: none;
    }
    
    #section1 ul li:last-child {
        border-bottom: 0;
    }
    
    .sec1_title {
        transform: translateY(0);
        transition: none;
    }
    
    .sec1_title p {
        font-size: 20px;
    }

    .sec1_title a {
        width: 25px;
        height: 25px;
        margin-top: 15px;
        opacity: 1;
        transition: none;
    }
    
    .sec1_title a i {
        font-size: 12px;
    }
    
    
    /* section2 */
    .slider{
        display: none;
    }

    .m_sec2_slide{
        width: 100%;
        display: block
    }

    .m_sec2_slide ul{
        width: 100%;
        display: inline-block;
        gap: 15px 0;
    }

    .m_sec2_slide ul li{
        width: 280px;
        height: 22vh;
        padding: 0 20px;
        box-sizing: border-box;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        float: left;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        opacity: 0;
        transform: translateY(50px);
    }

    .m_sec2_slide ul li:first-child{
        background-image: url(../images/section2_img1.jpg);
        transition: transform 1s .2s ease, opacity 1s .2s ease;
    }

    .m_sec2_slide ul li:nth-child(2){
        background-image: url(../images/section2_img2.jpg);
        transition: transform 1s .4s ease, opacity 1s .4s ease;
        float: right;
    }

    .m_sec2_slide ul li:last-child{
        background-image: url(../images/section2_img3.jpg);
        transition: transform 1s .6s ease, opacity 1s .6s ease;
        margin-bottom: 0;
    }

    #section2.active .m_sec2_slide ul li {
        transform: translateY(0);
        opacity: 1;
    }
    
    .sec2_txt{
        position: inherit;
        left: auto;
        bottom: auto;
    }
    
    .sec2_txt p{
        font-size: 22px;
    }
    
    .sec2_txt p span{
        font-size: 12px;
    }
    
    .sec2_txt>span{
        font-size: 14px;
    }
    
    
    /* section3 */
    #section3 .center{
        padding-top: 30px;
    }
    
    #section3 p{
        font-size: 16px;
    }
    
    #section3 p span{
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    #section3 a{
        width: 180px;
        height: 50px;
        gap: 0 20px;
        font-size: 16px;
        margin-top: 50px;
    }
    
    #section3 a span{
        font-size: 20px;
    }

}
































/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

    /* section0 */
    .slickText{
        width: 100%;
    }

    .small_txt {
        margin-top: 20px;
    }
    
    .big_txt p {
        font-size: 35px;
    }

    .small_txt{
        width: 100%;
    }
    
    .small_txt p {
        font-size: 18px;
        line-height: 30px;
    }

    .slickLine {
        margin-top: 30px;
    }
    
    .prev,
    .next {
        font-size: 14px;
        cursor: inherit;
    }
    
    .arrowLocation {
        margin: 2px 10px 0;
    }
    
    .pagingInfo,
    .pagingInfo2 {
        font-size: 12px;
    }
    
    .proBar {
        margin: 0 10px 4px;
        width: 50px;
    }
    
    
    /* section1 */
    #section1 .center {
        padding-top: 0;
    }
    
    .section1_top p {
        font-size: 35px;
    }
    
    .section1_top a {
        width: 55px;
        height: 55px;
        font-size: 25px;
    }
    
    #section1 ul {
        margin-top: 5vh;
    }
    
    #section1 ul li {
        height: 250px;
    }
    
    #section1 ul li img {
        opacity: 0.3;
        transition: none;
    }
    
    #section1 ul li:last-child {
        border-bottom: 0;
    }
    
    .sec1_title {
        transform: translateY(0);
        transition: none;
    }
    
    .sec1_title p {
        font-size: 20px;
    }

    .sec1_title a {
        width: 35px;
        height: 35px;
        margin-top: 15px;
        opacity: 1;
        transition: none;
    }
    
    .sec1_title a i {
        font-size: 16px;
    }
    
    
    /* section2 */
    .slider{
        display: none;
    }

    .m_sec2_slide{
        width: 100%;
        display: block
    }

    .m_sec2_slide ul{
        width: 100%;
        display: inline-block;
        gap: 15px 0;
    }

    .m_sec2_slide ul li{
        width: 500px;
        height: 22vh;
        padding: 0 50px;
        box-sizing: border-box;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        float: left;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        opacity: 0;
        transform: translateY(50px);
    }

    .m_sec2_slide ul li:first-child{
        background-image: url(../images/section2_img1.jpg);
        transition: transform 1s .2s ease, opacity 1s .2s ease;
    }

    .m_sec2_slide ul li:nth-child(2){
        background-image: url(../images/section2_img2.jpg);
        transition: transform 1s .4s ease, opacity 1s .4s ease;
        float: right;
    }

    .m_sec2_slide ul li:last-child{
        background-image: url(../images/section2_img3.jpg);
        transition: transform 1s .6s ease, opacity 1s .6s ease;
        margin-bottom: 0;
    }

    #section2.active .m_sec2_slide ul li {
        transform: translateY(0);
        opacity: 1;
    }
    
    .sec2_txt{
        position: inherit;
        left: auto;
        bottom: auto;
    }
    
    .sec2_txt p{
        font-size: 25px;
    }
    
    .sec2_txt p span{
        font-size: 14px;
    }
    
    
    /* section3 */
    #section3 .center{
        padding-top: 30px;
    }
    
    #section3 p{
        font-size: 18px;
    }
    
    #section3 p span{
        font-size: 35px;
        margin-bottom: 15px;
    }
    
    #section3 a{
        width: 180px;
        height: 50px;
        gap: 0 20px;
        font-size: 16px;
        margin-top: 50px;
    }
    
    #section3 a span{
        font-size: 20px;
    }
    
}







































/* pc */
@media screen and (min-width: 1025px) and (max-width: 1400px){
    
    /* section1 */
    #section1 ul li {
        height: 48vh;
    }

}