@charset "utf-8";
/* SIR 지운아빠 */

/* 새글 스킨 (latest) */
.cert-slider{
    width:100%;
    overflow:hidden;
    position:relative;
    padding:40px 0;
    background:#f1f1f1;
}

.title-wrap{
    text-align:center;
    margin-bottom:60px;
}

.sub-title{
    display:inline-block;
    color:#d71920;
    font-size:18px;
    font-weight:700;
    margin-bottom:15px;
    letter-spacing:0.5px;
}

.main-title{
    margin:0;
    font-size:48px;
    font-weight:800;
    color:#1e2c58;
    line-height:1.25;
}

.desc{
    margin-top:20px;
    font-size:22px;
    color:#666;
    font-weight:500;
}

.cert-track{

    display:flex;
    align-items:center;

    width:max-content;

    animation:rolling 35s linear infinite;
}

.cert-item{

    flex:0 0 auto;

    width:240px;

    margin:0 20px;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;
}

.cert-item:hover{

    transform:translateY(-8px);

}

.cert-item img{

    display:block;
    width:100%;
    height:auto;
}

@keyframes rolling{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}
.cert-slider:hover .cert-track{
    animation-play-state:paused;
}

@media (max-width:1024px){

.main-title{
    font-size:40px;
}

.desc{
    font-size:20px;
}

}

@media (max-width:768px){

.cert-section{
    padding:60px 20px;
}

.sub-title{
    font-size:16px;
}

.main-title{
    font-size:30px;
}

.desc{
    font-size:18px;
}

}

@media (max-width:480px){

.main-title{
    font-size:24px;
    line-height:1.4;
}

.desc{
    font-size:16px;
}

}