/* section1 */

.s1{
    width: 100%;
    height: 60vh;
    background: url(../images/sub4_main.png) no-repeat;
    position: relative;
}

.s1 h1{
    position: absolute;
    top: 60%;
    left: 5%;
    color: white;
    font-family: 'S-CoreDream-6Bold';
    font-size: 5rem;
}

.s1_menu{
    position: absolute;
    top: 80%;
    left: 5%;
    color: white;
    font-family: 'S-CoreDream-6Bold';
    font-size: 2rem;
}

.s1_menu li{
    display: inline-block;
    padding-right: 5rem;
}

.s1_menu li span{
    display: inline-block;
    width: 0.5rem;
    height: 2.2rem;
    background-color: white;
}

.s1_pick{
    color: #fcb017;
}

/* section2 */

.s2{
    padding: 15rem 0;
    /* background: url(../images/sub1_bg.png) no-repeat; */
    background-position: 70% 30%;
}

.s2_content{
    display: flex;
    margin-top: 10rem;
    margin-bottom: 10rem;
}

.s2_4dot{
    flex: 1;
    /* padding-top: 10px; */
}

.s2_text{
    flex: 8;
    font-size: 2rem;
    line-height: 4rem;
}

.s2_img{
    text-align: center;
    margin-bottom: 5rem;
}

.s2_img img{
    width: 90%;
}

.s2_more{
    text-align: center;
}

.s2_more a{
    font-size: 2rem;
    padding: 5px 15px;
    border: 1px solid #222;
    transition: all .5s;
}

.s2_more:hover a{
    padding: 5px 40px;
    background-color: #fcb017;
    border-color: #fcb017;
    /* color: white; */
}

.s2_text_768{
    display: none;
}

/* ------top btn------ */

.material-icons{
    font-size: 50px;
}

.top{
    position: fixed;
    top: 85%;
    right: 5%;
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
    border: 1px solid #222;
    border-radius: 50%;
    background-color: white;
    z-index: 100000;
}

.top_icon{
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, 0%);
}

.top_text{
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translate(-50%, 0%);
    font-size: 1.2rem;
}

/* 반응형 */

@media (max-width: 768px){
    .s2_img img{
        width: 100%;
    }

    .s2_text{
        display: none;
    }

    .s2_text_768{
        display: block;
    }
}

@media (max-width: 480px){
    .s2_content{
        text-align: center;
    }
}