.sub_top_sec{
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 294px 0 0 0;
    box-sizing: border-box;
}
.sub_top_sec.icl_bg{
    background-image: url(/img/sub_top/icl_top_bg.png);
}
.sub_top_sec .sub_top_w{
    max-width: 1310px;
    width: 100%;
    margin: 0 auto;
}
.sub_top_sec .cont_1{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sub_top_sec .text_box{
    max-width: 740px;
    width: 100%;
}
.sub_top_sec .text_box h3{
    color:#FFF;
    font-family: "Pretendard";
    font-size: 36px;
    font-weight: 300;
    line-height: 1.2
}
.sub_top_sec .text_box h2{
    margin-top: 8px;
    display: inline-block;
    color: #FFF;
    font-family: "Pretendard";
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    background-color: #E54361;
}
.sub_top_sec .text_box h5{
    margin-top: 30px;
    color: #FFF;
    font-family: "Pretendard";
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.44px;
}
.sub_top_sec .text_box p{
    color: #FFF;
    font-family: "Pretendard";
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: -0.36px;
    margin-top: 10px;
}



.scroll_img{
    margin: 60px auto 0;
    text-align: center;
    position: relative;
}
.sub_top_sec .ico_box {
    max-width: 370px;
    position: absolute;
    display: flex;
    align-items: center;
    flex-direction: column;
    left: 50%;
    bottom: 30px;
    gap: 3px;
    z-index: 1;
    transform: translateX(-50%);
}


.sub_top_sec .ico_box .ico {
    position: relative;
    display: block;
    box-sizing: border-box;
    width: 28px;
    height: 42px;
    border-radius: 50px;
    border: 2px solid #8E8E8E;
}

.sub_top_sec .ico_box .ico .wheel {
    display: block;
    animation: wheel_ani 0.8s infinite ease-in-out alternate;
    position: absolute;
    top: 6px;
    left: 50%;
    height: 8px;
    width: 2px;
    background-color: #8E8E8E;
    border-radius: 50px;
}
.scroll_img p{
    margin-top: -1px;
    background-color: #fff;
    color:#8E8E8E;
    text-align: center;
    font-family: "Pretendard";
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.32px;
}
@keyframes wheel_ani {
    0% {
        transform: translate(-50%, -10%);
    }

    100% {
        transform: translate(-50%, 30%);
    }
}
@media screen and (max-width:1310px) {
    .sub_top_sec .sub_top_w{
        width: 90%;
    }
}
@media screen and (max-width:1200px) {
    .sub_top_sec .text_box h5{
        font-size: 18px;
    }
}
@media screen and (max-width:960px) {
    .sub_top_sec .text_box h3{
        font-size: 28px;
    }
    .sub_top_sec .text_box h5 br{
        display: none;
    }
}
@media screen and (max-width:768px) {
    .sub_top_sec{
        padding-top: 120px;
    }
    .sub_top_sec.icl_bg{
        background-image: url(/img/sub_top/icl_top_bg_m.png);
    }
    .sub_top_sec .cont_1{
        flex-direction: column;
        gap: 50px;
    }
    .sub_top_sec .text_box{
        text-align: center;
    }
    .sub_top_sec .text_box h3{
         font-size: 18px;
    }
    .sub_top_sec .text_box h2{
        font-size: 28px;
    }
    .sub_top_sec .text_box h5{
        font-size: 16px;
        letter-spacing: -0.32;
    }
    .sub_top_sec .text_box p{
        font-size: 14px;
        letter-spacing: -0.28px;
    }
    .scroll_img{
        margin: 30px auto 0;
        /* max-width: 250px; */
    }
    .sub_top_sec .ico_box .ico{
        width: 21px;
        height: 32px;
    }
    .scroll_img p{
        font-size: 12px;
    }
}