@charset "utf-8";
#contents {
    font-family: 'Noto Sans KR', sans-serif;
    color: #f0f0f0;
}
.content {
    padding: 10px;
}
.video iframe {
    width: 100%;
}
.content h2 {
    font-size: 1.063rem;
    font-weight: 600;
    color: #8abf3f;
}
.content p {
    font-size: 0.875rem;
    margin-top: 16px;
    margin-bottom: 44px;
    font-weight: 400;
    line-height: 1.5;
    color: #f0f0f0;
}

.btn {
    text-align: center;
    margin: auto;
    margin-top: 4px;
    margin-bottom: 88px;
    cursor: pointer;
    width: 56px;
    height: 56px;
    background: #8abf3f;
    border-radius: 50px;
}
.btn img {
    width: 40px;
    padding-top: 4px;
}
.btn p {
    font-size: 0.815rem;
    color: #000;
    font-weight: 500;
    letter-spacing: -0.05em;
}

#more {
    display: none;
}
#c_btn {
    display: none;
}

/* 추가코딩 */
.footer {
    position: relative;
}
.effect_down {
    /* 포지션 */
    position: absolute;
    left: 50%;
    transform: translateX(11.9px);
    bottom: 23.1%;
    z-index: 999;
}
.effect_down i {
    font-size: 1.5rem;
    color: #8abf3f;
    /* 포지션 */
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 999;
}
.effect_down i:nth-child(1){
    animation: arrowAni linear 1.5s 0s infinite;
}
.effect_down i:nth-child(2){
    animation: arrowAni linear 1.5s 0.3s infinite;
}
.effect_down i:nth-child(3){
    animation: arrowAni linear 1.5s 0.6s infinite;
}

/* 애니메이션 키프레임 */
@keyframes arrowAni {
    from {
        opacity: 1;
        transform: scale(1);
        bottom: 0;
    }
    to {
        opacity: 0;
        transform: scale(1.2);
        bottom: -14px;
    }
}





