#main_content {
    width: 100%;
}


/* section1 */
.section1 {
    width: 100%;
    height: 100vh;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.motion_circle {
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 73vw;
    right: -25vw;
    bottom: -80vh;
    animation: pulsate-fwd 1.5s ease-in-out infinite both;
}

.motion_circle img{
    width: 100%;
}

@keyframes pulsate-fwd {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.motion_img{
    width: 110vw;
    position: absolute;
    z-index: 2;
    top: -10vh;
    left: -7vw;
}

.motion_img img{
    position: absolute;
    height: auto;
    width: 100%;
}

.section1 .center{
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-30px);
}

.section1_txt{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.sec1_txt1,
.sec1_txt2{
    width: max-content;
    overflow: hidden;
}

.sec1_txt1 p{
    font-family: 'Urbanist', sans-serif;
    font-size: 80px;
    color: #fff;
    animation: txt_up 1s ease-in-out forwards;
}

.sec1_txt1 p span{
    color: #502871;   
}

.sec1_txt2{
    margin-top: 30px;
}

.sec1_txt2 p{
    font-size: 30px;
    line-height: 50px;
    color: #fff;
    font-family: 'Pretendard-ExtraLight', sans-serif;
    animation: txt_up 1s .5s ease-in-out forwards;
}

.sec1_txt2 p strong{
    font-weight: normal;
    font-family: 'Pretendard-SemiBold', sans-serif;
}

.sec1_txt2 p strong span{
    color: #b698d2;
}

.sec1_txt1 p,
.sec1_txt2 p{
    opacity: 0;
    transform: translateY(100px);
}

@keyframes txt_up{
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

.section1_img{
    width: 30vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section1_img img{
    width: 100%;
    filter: drop-shadow(16px 0 35px rgba(0, 0, 0, 0.35));
}

.rolling_txt {
    width: 100%;
    height: 40px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: 8vh;
    z-index: 3;
}

.rolling_txt p {
    height: 100%;
    width: max-content;
    display: flex;
    align-items: center;
    animation: rolling_txt infinite 30s linear;
}

@keyframes rolling_txt {
    100% {
        transform: translateX(-50%);
    }
}

.rolling_txt p span {
    font-size: 20px;
    color: #fff;
    font-family: 'GmarketSansTTFBold', sans-serif;
    margin: 0 10px;
}

.rolling_txt p span:nth-child(2n){
    font-family: 'GmarketSansTTFLight', sans-serif;
}


/* section2 */
.section2{
    width: 100%;
    background-image: url(../images/section2_bg.jpg);
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    position: relative;
}

.section2:after{
    content: " ";
    width: 100%;
    height: 2px;
    background-color: #502871;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.section2 ul{
    width: 100%;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.section2 ul li{
    width: 330px;
    height: 330px;
    border-radius: 500px;
    background-color: #502871;
    border: 2px solid #fff;
    box-sizing: border-box;
    float: left;
    margin-left: -40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section2 ul li:first-child{
    margin: 0;
}

.section2 ul li p{
    text-align: center;
    font-size: 24px;
    color: #fff;
    line-height: 40px;
    font-family: 'Pretendard-ExtraLight', sans-serif;
}

.section2 ul li p span{
    font-family: 'Pretendard-SemiBold', sans-serif;
}


/* section3 */
.section3{
    width: 100%;
    padding: 130px 0;
    background-image: url(../images/section3_bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section_title{
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px 0;
}

.st_txt1{
    display: flex;
    align-items: center;
    gap: 0 15px;
    font-size: 15px;
    color: #fff;
    font-family: 'Pretendard-ExtraLight', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.st_txt1 span{
    width: 80px;
    height: 1px;
    background-color: #fff;
}

.st_txt2{
    font-size: 50px;
    color: #fff;
    font-family: 'Pretendard-Bold', sans-serif;
    text-transform: uppercase;
}

.st_txt2 span{
    color: #9569ba;
}

.section3 ul{
    width: 100%;
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;
}

.section3 ul li{
    width: 20%;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
    gap: 15px 0;
}

.section3 ul li:nth-child(6),
.section3 ul li:nth-child(7),
.section3 ul li:nth-child(8),
.section3 ul li:nth-child(9),
.section3 ul li:nth-child(10){
    border-bottom: 0;
}

.section3 ul li:nth-child(5n){
    border-right: 0;
}

.sec3_icon{
    display: flex;
    align-items: center;
    justify-content: center;
}

.section3 ul li p{
    width: 165px;
    height: 45px;
    border-radius: 50px;
    background-color: #9569ba;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    font-family: 'Pretendard-Regular', sans-serif;
    transition: background-color .3s, color .3s;
}

.section3 ul li:hover p{
    background-color: #fff;
    color: #502871;
}


/* section4 */
.section4{
    width: 100%;
    padding: 140px 0;
    background-image: url(../images/section4_bg.jpg);
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.section4 ul{
    width: 100%;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
}

.section4 ul li{
    width: 24.5%;
    height: 290px;
    border: 3px solid #d7d7d7;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 0 40px;
}

.section4 ul li:after{
    content: " ";
    width: 0;
    height: calc(100% + 6px);
    background-color: #fff;
    position: absolute;
    top: -3px;
    left: -3px;
    z-index: 1;
    transition: width 1s;
}

.section4 ul li:hover:after{
    width: calc(100% + 6px);
}

.section4 ul li p{
    position: relative;
    z-index: 2;
    font-size: 18px;
    line-height: 35px;
    color: #fff;
    font-family: 'Pretendard-ExtraLight', sans-serif;
    transition: color .3s;
}

.section4 ul li:hover p{
    color: #2c2c2c;
}

.section4 ul li p span{
    display: block;
    width: max-content;
    font-size: 28px;
    font-family: 'Pretendard-SemiBold', sans-serif;
    margin-bottom: 25px;
    position: relative;
    transition: color .3s;
}

.section4 ul li:hover p span{
    color: #502871;
}

.section4 ul li p span:after{
    content: " ";
    width: 30px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 2px;
    bottom: -15px;
    transition: background-color .3s;
}

.section4 ul li:hover p span:after{
    background-color: #502871;
}

span.small_number{
    position: absolute;
    top: -8px;
    left: -3px;
    font-size: 22px;
    color: #d7d7d7;
    font-family: 'Pretendard-ExtraBold', sans-serif;
    padding: 0 15px 10px 0;
    background-color: #502871;
}

.section4 ul li:last-child span.small_number{
    background-color: #502465;
}

span.big_number{
    position: absolute;
    z-index: 3;
    right: -5px;
    bottom: 0;
    font-size: 98px;
    line-height: 70px;
    color: #ededed;
    font-family: 'Pretendard-Black', sans-serif;
    opacity: 0;
}

.section4 ul li:hover span.big_number{
    opacity: 1;
    transition: all .6s .7s;
}


/* sectiob5 */
.section5{
    width: 100%;
    padding: 130px 0;
    background-image: url(../images/section5_bg.jpg);
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.section5 .st_txt1,
.section5 .st_txt2{
    color: #222;
}

.section5 .st_txt2{
    line-height: 68px;
}

.section5 .st_txt1 span{
    background-color: #222;
}

.section5 ul{
    width: 100%;
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 0;
}

.section5 ul li{
    width: 24.5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section5 ul li img{
    width: 100%;
}
































/* mobile */
@media screen and (max-width: 767px){
    
    /* section1 */
    .motion_circle {
        width: 100vw;
        right: -15vw;
        bottom: -20vh;
    }
    
    .motion_img{
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
    
    .motion_img img{
        width: auto;
        height: 100%;
        top: 0;
        left: 0;
    }
    
    .section1 .center{
        justify-content: center;
        flex-direction: column;
        gap: 50px 0;
        transform: translateY(0);
    }
    
    .section1_txt{
        width: 100%;
    }
    
    .sec1_txt1,
    .sec1_txt2{
        width: 100%;
    }
    
    .sec1_txt1 p{
        font-size: 45px;
        text-align: center;
    }
    
    .sec1_txt2{
        margin-top: 20px;
    }
    
    .sec1_txt2 p{
        font-size: 18px;
        line-height: 30px;
        text-align: center;
    }
    
    .section1_img{
        width: 70vw;
    }
    
    .rolling_txt {
        height: 30px;
        bottom: 5vh;
    }
    
    .rolling_txt p span {
        font-size: 16px;
    }
    
    
    /* section2 */
    .section2{
        background-position: 0 center;
    }

    .section2{
        padding: 50px 0;
    }
    
    .section2:after{
       content: none;
    }

    .section2 .center{
        text-align: center;
    }

    .section2 ul{
        width: 300px;
    }
    
    .section2 ul li{
        width: 160px;
        height: 160px;
        margin-left: -20px;
    }

    .section2 ul li:nth-child(3){
        clear: both;
        margin-left: 0;
    }
    
    .section2 ul li p{
        font-size: 15px;
        line-height: 25px;
    }
    
    
    /* section3 */
    .section3{
        padding: 60px 0;
    }
    
    .section_title{
        gap: 15px 0;
    }
    
    .st_txt1{
        gap: 0 10px;
        font-size: 12px;
    }
    
    .st_txt1 span{
        width: 50px;
    }
    
    .st_txt2{
        font-size: 20px;
        word-break: keep-all;
        line-height: 30px;
    }
    
    .section3 ul{
        margin-top: 40px;
    }
    
    .section3 ul li{
        width: 50%;
        padding: 20px 0 25px;
    }
    
    .section3 ul li:nth-child(6),
    .section3 ul li:nth-child(7),
    .section3 ul li:nth-child(8){
        border-bottom: 1px solid #fff;
    }
    
    .section3 ul li:nth-child(5n){
        border-right: 1px solid #fff;
    }

    .section3 ul li:nth-child(2n){
        border-right: 0;
    }
    
    .sec3_icon{
        width: 60px;
    }

    .sec3_icon img{
        width: 100%;
    }
    
    .section3 ul li p{
        width: 120px;
        height: 30px;
        font-size: 13px;
        transition: none;
    }
    
    .section3 ul li:hover p{
        background-color: #9569ba;
        color: #fff;
    }
    
    
    /* section4 */
    .section4{
        padding: 60px 0;
    }
    
    .section4 ul{
        margin-top: 40px;
        flex-wrap: wrap;
        gap: 20px 0;
    }
    
    .section4 ul li{
        width: 48%;
        height: 200px;
        border: 2px solid #d7d7d7;
        padding: 0 15px;
    }
    
    .section4 ul li:after{
        content: none;
    }
    
    .section4 ul li p{
        font-size: 13px;
        line-height: 25px;
        transition: none;
    }
    
    .section4 ul li:hover p{
        color: #fff;
    }
    
    .section4 ul li p span{
        font-size: 18px;
        margin-bottom: 25px;
        transition: none;
    }
    
    .section4 ul li:hover p span{
        color: #fff;
    }
    
    .section4 ul li p span:after{
        width: 20px;
        height: 1px;
        left: 2px;
        transition: none;
    }
    
    .section4 ul li:hover p span:after{
        background-color: #fff;
    }
    
    span.small_number{
        font-size: 18px;
        padding: 0 10px 7px 0;
    }
    
    .section4 ul li:nth-child(2) span.small_number{
        background-color: #502465;
    }

    .section4 ul li:nth-child(4) span.small_number{
        background-color: #502871;
    }
    
    span.big_number{
        display: none;
    }

    
    /* sectiob5 */
    .section5{
        padding: 60px 0;
        background-position: center 0;
    }
    
    .section5 .st_txt2{
        line-height: 30px;
    }

    .section5 ul{
        margin-top: 40px;
    }
    
    .section5 ul li{
        width: 48.5%;
    }

}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){
    
    /* section1 */    
    .motion_circle {
        width: 100vw;
        right: -25vw;
        bottom: -40vh;
    }
    
    .motion_img{
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
    
    .motion_img img{
        width: auto;
        height: 100%;
        top: 0;
        left: 0;
    }
    
    .sec1_txt1 p{
        font-size: 55px;
    }
    
    .sec1_txt2{
        margin-top: 20px;
    }
    
    .sec1_txt2 p{
        font-size: 20px;
        line-height: 35px;
    }
    
    .section1_img{
        width: 45vw;
    }
    
    .rolling_txt {
        height: 30px;
    }
    
    .rolling_txt p span {
        font-size: 16px;
    }
    
    
    /* section2 */
    .section2{
        background-position: 0 0;
        padding: 80px 0;
    }
    
    .section2 ul li{
        width: 190px;
        height: 190px;
        margin-left: -23px;
    }
    
    .section2 ul li p{
        font-size: 18px;
        line-height: 32px;
    }
    
    
    /* section3 */
    .section3{
        padding: 80px 0;
    }
    
    .section_title{
        gap: 20px 0;
    }
    
    .st_txt1{
        gap: 0 10px;
        font-size: 12px;
    }
    
    .st_txt1 span{
        width: 50px;
    }
    
    .st_txt2{
        font-size: 25px;
    }
    
    .section3 ul{
        margin-top: 50px;
    }
    
    .section3 ul li{
        padding: 25px 0;
    }
    
    .sec3_icon{
        width: 80px;
    }

    .sec3_icon img{
        width: 100%;
    }
    
    .section3 ul li p{
        width: 120px;
        height: 35px;
        font-size: 14px;
        transition: none;
    }
    
    .section3 ul li:hover p{
        background-color: #9569ba;
        color: #fff;
    }
    
    
    /* section4 */
    .section4{
        padding: 80px 0;
        background-position: center 0;
    }
    
    .section4 ul{
        margin-top: 50px;
    }
    
    .section4 ul li{
        height: 200px;
        border: 2px solid #d7d7d7;
        padding: 0 20px;
    }
    
    .section4 ul li:after{
        content: none;
    }
    
    .section4 ul li p{
        font-size: 14px;
        line-height: 26px;
        transition: none;
    }
    
    .section4 ul li:hover p{
        color: #fff;
    }
    
    .section4 ul li p span{
        font-size: 20px;
        transition: none;
    }
    
    .section4 ul li:hover p span{
        color: #fff;
    }
    
    .section4 ul li p span:after{
        width: 20px;
        height: 1px;
        transition: none;
    }
    
    .section4 ul li:hover p span:after{
        background-color: #fff;
    }
    
    span.small_number{
        font-size: 18px;
        padding: 0 10px 8px 0;
    }
    
    span.big_number{
        display: none;
    }
    
    
    /* sectiob5 */
    .section5{
        padding: 80px 0;
        background-position: center 0;
    }

    .section5 .st_txt2{
        line-height: 35px;
    }
    
    .section5 ul{
        margin-top: 50px;
        gap: 5px 0;
    }

}





















/* pc */
@media screen and (min-width: 1025px) and (max-width: 1400px){

    /* section1 */
    .motion_circle {
        width: 80vw;
        bottom: -60vh;
    }

    .section1_img{
        width: 40vw;
    }
    
    
    /* section2 */
    .section2 ul li{
        width: 300px;
        height: 300px;
        margin-left: -35px;
    }

    
    /* section3 */
    .st_txt2{
        font-size: 45px;
    }
    
}