.top {
    display: none;
}

.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 .section_inner {
    background-image: url(../images/section0_bg.jpg);
}

#section0 .center {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.section_txt1 {
    font-size: 90px;
    color: #fff;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

#section0 .section_txt1 {
    transform: scale(4);
    opacity: 0;
    animation: txt_zoom 1.5s ease-in-out forwards;
}

@keyframes txt_zoom {

    50% {
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.section_txt2 {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    margin-top: 15px;
}

#section0 .section_txt2 {
    transform: translateY(100px);
    opacity: 0;
    animation: con_up .8s .8s ease forwards;
}

@keyframes con_up {

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.section_img1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

#section0 .section_img1 {
    transform: translateY(100px);
    opacity: 0;
    animation: con_up .8s 1s ease forwards;
}


/* 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;
}

.section_txt3 {
    font-size: 44px;
    color: #fff;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-top: 30px;
}


/* section2 */
#section2 .section_inner {
    background-image: url(../images/section2_bg.jpg);
}

#section2 .center {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#section2 .section_txt2 {
    line-height: 40px;
    text-align: center;
    margin-top: 25px;
}


/* section3 */
#section3 .section_inner {
    background-image: url(../images/section3_bg.jpg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_img2 {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(3);
    opacity: 0;
}

#section3.motion .section_img2 {
    animation: txt_zoom 1.5s ease-in-out forwards;
}

.fade_content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

#section3.motion .fade_content {
    animation: fade_in .8s 1.2s linear forwards;
}

@keyframes fade_in {
    100% {
        opacity: 1;
    }
}

.scroll_down {
    position: absolute;
    left: 50%;
    bottom: 90px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.scroll_down p {
    font-size: 17px;
    color: #0b752f;
}

.scroll_down span {
    display: block;
    width: 22px;
    height: 52px;
    border: 1px solid #0b752f;
    box-sizing: border-box;
    border-radius: 30px;
    margin-top: 15px;
    position: relative;
}

.scroll_down span:after {
    content: " ";
    width: 6px;
    height: 6px;
    border-radius: 5px;
    background-color: #0b752f;
    position: absolute;
    left: 50%;
    top: 10%;
    transform: translateX(-50%);
    animation: scroll_down infinite 1.5s ease-in-out;
}

@keyframes scroll_down {
    100% {
        top: 85%;
        opacity: 0;
    }
}


/* section4 */
#section4 {
    background-color: #fff;
}

#section4 .section_inner {
    padding-top: 100px;
    box-sizing: border-box;
}

#section4 .center {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section4_txt {
    width: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.sec4_title span {
    font-size: 18px;
    color: #0b752f;
    font-weight: 600;
    display: block;
}

.sec4_title p {
    font-size: 40px;
    color: #111;
    font-weight: 600;
    margin-top: 25px;
}

.section4_txt > p {
    font-size: 18px;
    color: #111;
    line-height: 32px;
    margin-top: 40px;
}

.section4_txt > a {
    width: 135px;
    height: 55px;
    border-radius: 50px;
    background-color: #0b752f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin-top: 60px;
}

.section4_img {
    display: flex;
    align-items: center;
    justify-content: center;
}





































/* mobile */
@media screen and (max-width: 767px) {

    /* section0 */
    .section_txt1 {
        font-size: 40px;
        text-align: center;
        line-height: 48px;
    }

    .section_txt2 {
        font-size: 16px;
        margin-top: 25px;
    }

    .section_img1 img {
        width: 60%;
    }


    /* section1 */
    .section_txt3 {
        font-size: 23px;
        margin-top: 20px;
    }


    /* section2 */
    #section2 .section_txt2 {
        line-height: 30px;
    }


    /* section3 */
    .section_img2 img {
        width: 60%;
    }

    .scroll_down {
        bottom: 50px;
    }

    .scroll_down p {
        font-size: 12px;
    }

    .scroll_down span {
        width: 15px;
        height: 30px;
        margin-top: 10px;
    }

    .scroll_down span:after {
        width: 3px;
        height: 3px;
    }


    /* section4 */
    #section4 .section_inner {
        padding-top: 60px;
    }

    #section4 .center {
        justify-content: center;
        flex-direction: column;
    }

    .section4_txt {
        width: 100%;
        align-items: center;
    }

    .sec4_title {
        text-align: center;
    }

    .sec4_title span {
        font-size: 13px;
    }

    .sec4_title p {
        font-size: 20px;
        margin-top: 10px;
    }

    .section4_txt > p {
        font-size: 13px;
        line-height: 20px;
        margin-top: 20px;
        text-align: center;
        word-break: keep-all;
    }

    .section4_txt > p br {
        display: none;
    }

    .section4_txt > a {
        width: 120px;
        height: 45px;
        font-size: 14px;
        margin-top: 30px;
    }

    .section4_img {
        width: 80%;
        margin-top: 40px;
    }

    .section4_img img {
        width: 100%;
    }

}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    /* section0 */
    .section_txt1 {
        font-size: 73px;
    }

    #section0 .section_txt1 {
        transform: scale(1.5);
        animation: txt_zoom 1s ease forwards;
    }

    .section_txt2 {
        font-size: 20px;
    }

    .section_img1 img {
        width: 70%;
    }


    /* section1 */
    .section_txt3 {
        font-size: 35px;
    }


    /* section2 */
    #section2 .section_txt2 {
        line-height: 35px;
    }


    /* section3 */
    .section_img2 img {
        width: 70%;
    }

    .scroll_down {
        bottom: 50px;
    }

    .scroll_down p {
        font-size: 14px;
    }

    .scroll_down span {
        width: 15px;
        height: 30px;
        margin-top: 10px;
    }

    .scroll_down span:after {
        width: 3px;
        height: 3px;
    }


    /* section4 */
    #section4 .section_inner {
        padding-top: 60px;
    }

    #section4 .center {
        justify-content: center;
        flex-direction: column;
    }

    .section4_txt {
        width: 100%;
        align-items: center;
    }

    .sec4_title {
        text-align: center;
    }

    .sec4_title span {
        font-size: 16px;
    }

    .sec4_title p {
        font-size: 25px;
        margin-top: 15px;
    }

    .section4_txt > p {
        font-size: 16px;
        line-height: 25px;
        margin-top: 25px;
        text-align: center;
    }

    .section4_txt > a {
        margin-top: 40px;
    }

    .section4_img {
        width: 100%;
        margin-top: 60px;
    }

    .section4_img img {
        width: 60%;
    }

}





















/* pc */
@media screen and (min-width: 1025px) and (max-width: 1400px) {

    /* section4 */
    .section4_img {
        width: 50%;
    }

    .section4_img img {
        width: 100%;
    }

}
