#main_content{
    width: 100%;
}


/* section1 */
.section1{
    width: 100%;
    height: 100vh;
    background-color: #fffcf6;
    padding-top: 100px;
    box-sizing: border-box;
    position: relative;
}

.motion_box{
    display: flex;
    align-items: flex-end;
}

.motion_box ul{
    display: flex;
}

.motion_box ul li{
    width: 7px;
    height: 23.5vh;
    background-color: rgba(205, 165, 49, 0.2);
    position: relative;
    margin-right: 8px;
}

.motion_box ul li:last-child{
    margin-right: 0;
}

.motion_box ul li span{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background-color: rgba(205, 165, 49, 0.7);
}

.motion_box ul li:first-child span{
    animation: h_down .2s ease forwards;
}

.motion_box ul li:nth-child(2) span{
    animation: h_down .2s .1s ease forwards;
}

.motion_box ul li:nth-child(3) span{
    animation: h_down .2s .2s ease forwards;
}

.motion_box ul li:nth-child(4) span{
    animation: h_down .2s .3s ease forwards;
}

.motion_box ul li:nth-child(5) span{
    animation: h_down .2s .4s ease forwards;
}

.motion_box ul li:nth-child(6) span{
    animation: h_down .2s .5s ease forwards;
}

.motion_box ul li:nth-child(7) span{
    animation: h_down .2s .6s ease forwards;
}

.motion_box ul li:nth-child(8) span{
    animation: h_down .2s .7s ease forwards;
}

.motion_box ul li:nth-child(9) span{
    animation: h_down .2s .8s ease forwards;
}

.motion_box ul li:nth-child(10) span{
    animation: h_down .2s .9s ease forwards;
}

.motion_box ul li:nth-child(11) span{
    animation: h_down .2s 1s ease forwards;
}

.motion_box ul li:last-child span{
    animation: h_down .2s 1.1s ease forwards;
}

@keyframes h_down{
    0%{
        height: 100%;
    }

    100%{
        height: 16vh;
    }
}

.motion_box>p{
    font-size: 15px;
    font-family: 'GmarketSansLight', sans-serif;
    margin-left: 20px;
}

.section1_title{
    margin-top: 5vh;
}

.section1_title>p{
    font-size: 17px;
    line-height: 30px;
    font-family: 'GmarketSansMedium', sans-serif;
    margin-left: 4vw;
    margin-top: 5vh;
}

.section1_title>p span{
    display: block;
    margin-left: 115px;
}

.motion_title{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.show_title{
    display: flex;
    align-items: flex-end;
    font-size: 5vw;
    line-height: 5.2vw;
    font-family: 'Franklin Gothic_Demi', sans-serif;
    color: #cda531;
}

.show_title p{
    display: flex;
    align-items: center;
    color: #f06141;
    position: relative;
}

span.bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #fffcf6;
    display: block;
}

.show_title1 span.bg{
    animation: bg_box 1s .8s ease forwards;
}

.show_title2 span.bg{
    animation: bg_box 1.5s 1.5s ease forwards;
}

.show_title3 span.bg{
    animation: bg_box 1.5s 2.5s ease forwards;
}

@keyframes bg_box{
    0%{
        width: 100%;
    }

    100%{
        width: 0;
    }
}

/* .show_title1 p{
    animation: show_txt 2.5s linear forwards;
}

.show_title2 p{
    animation: show_txt 3.5s .2s linear forwards;
}

.show_title3 p{
    animation: show_txt 3.5s 1s linear forwards;
} */

@keyframes show_txt{
    0%{
        opacity: 0;
        letter-spacing: -50px;
        transform: translateX(-60px);
    }

    30%{
        opacity: 0;
        letter-spacing: -50px;
        transform: translateX(0);
    }

    50%{
        opacity: 1;
        letter-spacing: normal;
        transform: translateX(0);
    }

    100%{
        opacity: 1;
        letter-spacing: normal;
        transform: translateX(0);
    }
}

span.m_t{
    display: block;
    margin-left: 1px;
}

.show_title2{
    margin-left: 25px;
}

.show_title3{
    margin-left: 10px;
}

.section1_right{
    width: 38vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 22vh;
    right: 7%;
}

.section1_right img{
    width: 100%;
}

.section1_point{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 6.5%;
    right: 3.5%;
}

img.rotate{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate infinite 5s linear;
}

@keyframes rotate{
    0%{
        transform: translate(-50%, -50%) rotate(180deg);
    }
}

.scroll{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.scroll p{
    font-size: 13px;
    color: #111;
    font-family: 'GmarketSansLight', sans-serif;
}

.scroll_bar{
    width: 1px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    margin-top: 5px;
    position: relative;
}

.scroll_bar span{
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    animation: scroll_bar infinite 1.5s ease-in-out;
}

@keyframes scroll_bar{
    0%{
        height: 100%;
    }

    80%{
        height: 0;
    }

    100%{
        height: 0;
    }
}


/* section2 */
.section2{
    width: 100%;
    padding-bottom: 150px;
}

.section_title{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.section_potint{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

span.length{
    width: 1px;
    height: 150px;
    background-color: #000;
}

span.width{
    width: 80px;
    height: 1px;
    background-color: #000;
}

.section_title p{
    text-align: center;
    font-size: 38px;
    color: #111;
    line-height: 50px;
    font-family: 'GmarketSansLight', sans-serif;
    margin-top: 40px;
}

.section_title p span{
    font-family: 'GmarketSansMedium', sans-serif;
}

.sec2_content{
    width: 100%;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sec2_content p{
    position: absolute;
    font-size: 17px;
    color: #111;
    font-family: 'GmarketSansLight', sans-serif;
}

.sec2_content p span{
    font-size: 19px;
    font-family: 'GmarketSansMedium', sans-serif;
    margin-top: 15px;
    display: block;
}

p.sec2_t1{
    top: -8px;
    right: 275px;
}

p.sec2_t2{
    bottom: -5px;
    right: -10px;
}

p.sec2_t3{
    text-align: right;
    bottom: -5px;
    left: -30px;
}


/* section3 */
.section3{
    width: 100%;
    padding: 110px 0 100px;
    background-color: #fff9ee;
}

.section3 ul{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section3 ul li{
    width: 33.33%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.icon_txt{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.icon_txt p{
    font-size: 21px;
    color: #111;
    font-family: 'GmarketSansMedium', sans-serif;
    margin-top: 30px;
}

.motion_num{
    margin-top: 50px;
    display: flex;
    align-items: baseline;
    font-size: 33px;
    color: #111;
    font-family: 'GmarketSansMedium', sans-serif;
}

p.count{
    font-size: 99px;
    letter-spacing: -5px;
    margin-right: 20px;
}

.section3 .center>p{
    font-size: 15px;
    color: #666;
    font-family: 'GmarketSansLight', sans-serif;
    text-align: right;
}


/* section4 */
.section4{
    width: 100%;
}

.partners_slide{
    width: 100%;
    margin-top: 60px;
}

.partners_slide>ul{
    width: 100%;
    display: inline-block !important;
    padding-bottom: 90px;
}

.partners_slide>ul li{
    height: 220px;
    float: left;
    margin: 0 10px;
    position: relative;
}

.partners_logo{
    width: 100%;
    height: 100%;
    padding: 75px 35px;
    box-sizing: border-box;
    border: 1px solid #ddd;
}

.partners_logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hover_info{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(-180deg);
    opacity: 0;
    background-color: rgba(205, 165, 49, 0.9);
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity .5s, transform .5s;
}

.partners_slide ul li:hover .hover_info{
    transform: translate(-50%, -50%) rotateY(0);
    opacity: 1;
}

.hover_info p{
    font-size: 19px;
    color: #fff;
    font-family: 'GmarketSansMedium', sans-serif;
}

.hover_info span{
    font-size: 15px;
    line-height: 23px;
    color: #fff;
    text-align: center;
    font-family: 'GmarketSansLight', sans-serif;
    margin-top: 17px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: keep-all;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

a.vm_btn{
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    color: #666;
    font-family: 'GmarketSansLight', sans-serif;
    padding: 3px;
    border-bottom: 1px solid #666;
    position: relative;
    top: -50px;
    left: 10px;
}

a.vm_btn span{
    margin-left: 15px;
    transition: margin .3s;
}

a.vm_btn:hover span{
    margin-left: 30px;
}


/* section5 */
.section5{
    width: 100%;
    padding: 130px 0 150px;
}

.news_slide{
    width: 100%;
    margin-top: 60px;
    position: relative;
}

.news_slide>ul{
    width: 100%;
    display: inline-block !important;
    padding-bottom: 160px;
}

.news_slide>ul li{
    margin: 0 10px;
    float: left;
    cursor: pointer;
}

.news_thumb{
    width: 100%;
    height: 280px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news_thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_txt{
    width: 100%;
    margin-top: 15px;
}

.news_txt p{
    font-size: 17px;
    line-height: 24px;
    color: #111;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: keep-all;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    font-family: 'GmarketSansMedium', sans-serif;
}

.news_slide>ul li:hover .news_txt p{
    text-decoration: underline;
}

.news_txt span{
    color: #999;
    font-size: 15px;
    font-family: 'GmarketSansLight', sans-serif;
    display: block;
    margin-top: 20px;
}

.progress {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: calc(100% - 20px);
    height: 2px;
    overflow: hidden;
    background-color: #ddd;
    background-image: linear-gradient(to right, #cda531, #cda531);
    background-repeat: no-repeat;
    background-size: 0 100%;
    transition: background-size .4s ease-in-out;
  }