.section {
    width: 100%;
    height: 100vh !important;
}

.styleclass1{
    color: #bbb !important;
    font-family: 'Pretendard-SemiBold', sans-serif !important;
}

.section_inner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}


/* section0 */
#section0 .section_inner {
    background-color: #000;
    position: relative;
}

img.motion_img{
    width: 74vw;
    position: absolute;
    top: 50%;
    right: -4.8%;
    transform: translateY(-53%);
    animation: motion infinite 7s ease-in;
}

@keyframes motion{
    0%{
        transform: translateY(-53%) rotate(-5deg);
    }

    50%{
        transform: translateY(-53%) rotate(0);
    }

    100%{
        transform: translateY(-53%) rotate(-5deg);
    }
}

.section_inner .center>p {
    font-size: 17px;
    line-height: 24px;
    color: #fff;
    font-family: 'Pretendard-ExtraLight', sans-serif;
}

.section_inner .center>p span {
    width: max-content;
    font-size: 65px;
    line-height: 75px;
    font-family: 'GmarketSansTTFMedium', sans-serif;
    display: block;
    margin-bottom: 10px;
    background: linear-gradient(to right, #d4442d, #edc61f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

a.view_btn{
    margin-top: 55px;
    display: flex;
    align-items: center;
}

a.view_btn p{
    padding-left: 20px;
    font-size: 14px;
    color: #fff;
    font-family: 'Pretendard-ExtraLight', sans-serif;
    position: relative;
}

a.view_btn p:after{
    content: " ";
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
    animation: bim infinite 1s ease-out;
}

@keyframes bim{
    0%{
        transform: translateY(-50%) scale(0.7);
    }

    80%{
        transform: translateY(-50%) scale(1);
    }

    90%{
        transform: translateY(-50%) scale(1);
    }

    100%{
        transform: translateY(-50%) scale(0.8);
    }
}

a.view_btn i{
    color: #fff;
    margin-left: 7px;
    font-size: 14px;
    transition: transform .3s;
}

a.view_btn:hover i{
    transform: translateX(10px);
}


/* section1 */
#section1 .section_inner {
    background-image: url(../images/section1_bg.jpg);
}


/* section2 */
#section2 .section_inner {
    background-image: url(../images/section2_bg.jpg);
}


/* section3 */
#section3 .section_inner {
    background-image: url(../images/section3_bg.jpg);
}


/* section4 */
#section4 .section_inner {
    background-image: url(../images/section4_bg.jpg);
}

#section4 .center{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact_info>p{
    font-size: 17px;
    line-height: 24px;
    color: #fff;
    font-family: 'Pretendard-ExtraLight', sans-serif;
}

.contact_info>p span{
    width: max-content;
    font-size: 18px;
    font-family: 'Pretendard-ExtraBold', sans-serif;
    display: block;
    margin-bottom: 15px;
    background: linear-gradient(to right, #d4442d, #edc61f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.contact_info ul{
    margin-top: 65px;
}

.contact_info ul li{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact_info ul li:last-child{
    margin-bottom: 0;
}

.contact_info ul li p{
    margin-left: 30px;
    font-size: 19px;
    color: #fff;
    font-family: 'Pretendard-ExtraLight', sans-serif;
}

.contact_map{
    width: 50%;
    height: 450px;
}

.root_daum_roughmap {
    width: 100% !important;
    height: 100% !important;
}

.wrap_map {
    width: 100%;
    height: 100% !important;
}

.root_daum_roughmap .border1 {
    border: 0 !important;
}

.root_daum_roughmap .border3,
.root_daum_roughmap .border4 {
    background-color: transparent !important;
}





































/* mobile */
@media screen and (max-width: 767px){

    .section_inner .center{
        margin-top: 35px;
    }


    /* section0 */    
    #section0 .section_inner .center{
        margin-top: 10vh;
    }

    img.motion_img{
        width: 120vw;
        top: 5%;
        right: -15%;
        transform: translateY(0);
        animation: none;
    }

    .section_inner .center>p {
        font-size: 14px;
        line-height: 22px;
        word-break: keep-all;
    }

    .section_inner .center>p span {
        font-size: 10vw;
        line-height: 11vw;
        margin-bottom: 10px;
    }

    a.view_btn{
        margin-top: 35px;
    }
    
    a.view_btn p{
        font-size: 12px;
    }
    
    
    /* section4 */
    #section4 .center{
        display: block;
    }
    
    .contact_info>p{
        font-size: 14px;
        line-height: 22px;
        word-break: keep-all;
    }

    .contact_info>p br.m_none{
        display: none;
    }
    
    .contact_info>p span{
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .contact_info ul{
        margin-top: 50px;
    }
    
    .contact_info ul li{
        margin-bottom: 10px;
        align-items: baseline;
    }

    .contact_info ul li img{
        width: 15px;
    }
    
    .contact_info ul li p{
        width: calc(100% - 25px);
        margin-left: 10px;
        font-size: 14px;
        line-height: 22px;
    }
    
    .contact_map{
        width: 100%;
        height: 25vh;
        margin-top: 40px;
    }    

}

































/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

    /* section0 */
    img.motion_img{
        width: 110vw;
        top: 0%;
        right: -15%;
        transform: translateY(0);
        animation: none;
    }
    
    .section_inner .center>p {
        font-size: 15px;
        line-height: 23px;
    }
    
    .section_inner .center>p span {
        font-size: 50px;
        line-height: 60px;
    }
    
    a.view_btn{
        margin-top: 40px;
    }

    
    /* section4 */    
    #section4 .center{
        display: block;
    }
    
    .contact_info>p{
        font-size: 15px;
        line-height: 23px;
    }
    
    .contact_info ul li{
        margin-bottom: 20px;
    }

    .contact_info ul li img{
        width: 25px;
    }

    .contact_info ul li p{
        margin-left: 20px;
        font-size: 16px;
    }
    
    .contact_map{
        width: 100%;
        height: 300px;
        margin-top: 60px;
    }

}








































/* pc */
@media screen and (min-width: 1025px) and (max-width: 1400px){
    
    /* section4 */
    .contact_info ul{
        margin-top: 50px;
    }
    
    .contact_info ul li{
        margin-bottom: 20px;
    }
    
    .contact_info ul li p{
        margin-left: 20px;
        font-size: 17px;
    }
    
    .contact_map{
        width: 45%;
        height: 400px;
    }

}