
#css_sliding_cards {
    background-color: #eeeeea;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#css_sliding_cards .warpTitle {
    letter-spacing: -2px; font-family: "Noto Sans KR", 'Noto Sans'; text-align: center;
    margin-top: 120px; margin-bottom: 50px; line-height: 40px;
}

#css_sliding_cards .warpTitle .tt1 { font-size:2rem; font-weight: 700; color: #E8334F }
#css_sliding_cards .warpTitle .tt2 { font-size:1.3rem; }
#css_sliding_cards .warpTitle .tt3 { font-size:2.5rem; font-weight: 800; color: #111}


#css_sliding_cards .wrapCard {
    height: 500px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
}

#css_sliding_cards .item {
    width: 80px;
    border-radius: .75rem;
    background-size: cover;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2rem;
    margin: 0 10px;
    display: flex;
    align-items: flex-end;
    transition: .6s cubic-bezier(.28,-0.03,0,.99);
    box-shadow: 0px 10px 30px -5px rgba(0,0,0,0.8);
}

#css_sliding_cards .item > .content {
    color: white;
    display: flex;
    flex-wrap: nowrap;
}

#css_sliding_cards .item > .content > .num {
    background: #223;
    color: white;
    border-radius: 50%;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
}

#css_sliding_cards .item > .content > .description {
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    height: 80px;
    width: 700px;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: .3s;
    transition: all .3s ease;
}
#css_sliding_cards .description p {
    position: relative; color: #fff; padding-top: 5px; font-size: 1rem; top: -5px;
}

#css_sliding_cards .description h4 {
    font-size: 1.4rem; letter-spacing: -2px; color: #fff;
    text-transform: uppercase;
}


#css_sliding_cards .description:after {
    content:'이미지컷'; position: absolute; right: 0; bottom: 10px; letter-spacing: -0.5px; 
}

#css_sliding_cards input {
    display: none;
}

#css_sliding_cards input:checked + label {
    width: 800px;
}

#css_sliding_cards input:checked + label .description {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
/*
#css_sliding_cards .wrapCard label:hover {
    width: 800px;
}

#css_sliding_cards .wrapCard label:hover .description {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
*/

#css_sliding_cards .item[for="c1"] { background-image: url('./img/img1.jpg'); }
#css_sliding_cards .item[for="c2"] { background-image: url('./img/img2.jpg'); }
#css_sliding_cards .item[for="c3"] { background-image: url('./img/img3.jpg');}
#css_sliding_cards .item[for="c4"] { background-image: url('./img/img4.jpg');}
#css_sliding_cards .item[for="c5"] { background-image: url('./img/img5.jpg');}
#css_sliding_cards .item[for="c6"] { background-image: url('./img/img6.jpg');}