@charset "utf-8";

/* 검은 배경일 때 네비 */



/*  */
#wrap{
    background: #000;
    position: relative;
    overflow: hidden;
}

.logo_intro{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    text-align: center;
}

.logo_intro img{
    animation: brand_intro 3s ease-in-out 1 both;
    width: 100%;
    min-width: 264px;
}


@keyframes brand_intro {
    0%{
        opacity: 0;
    }
    35%{
        opacity: 1;
        width: 90%;
    }
    45%{
        opacity: 1;
    }
    55%{
        width: 90%;
        margin-bottom: 0px;
    }
    100%{
        width: 20%;
        margin-bottom: 350px;
    }
}

.brand_text{
    text-align: center;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: up_slide 1s 2.3s both;
    z-index: 10;
}
.brand_text p, .brand_text a{
    width: 625px;
    font: 18px "Noto Sans KR", sans-serif;
    font-weight: 300;
    color: #fff;
    margin-bottom: 35px;
    letter-spacing: -1px;
}
.brand_text p:nth-child(2){
    width: 800px;
}
.brand_text p:nth-child(3){
    width: 636px;
}
.brand_text p span{
    font-weight: 400;
}

.brand_text .more_btn a{
    letter-spacing: 0;
    animation: blink 1.5s infinite;
    margin-top: 20px;
    cursor: pointer;
}
@keyframes blink{
    0%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

@keyframes up_slide{
    0%{
        opacity: 0;
        margin-top: 20%;
    }
    100%{
        margin-top: 0;
        opacity: 1;
    }
}

.text_img{
    margin-top: 287px;
    animation: fadein ease-in-out 2s 1.5s both;
}
@keyframes r_move {
    0%{
        left: -45%;
    }
    100%{
        left: 0;
    }
}
@keyframes fadein{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}




/* 반응형 */
@media screen and (min-width:971px) {
    

    
}/* PC */





@media screen and (max-width:970px) {

    .logo_intro{
        top: 45%;
    }
    
    
    .brand_text{
        display: block;
        width: 100%;
        top: 33%;
    }
    .brand_text p, .brand_text p:nth-child(2), .brand_text p:nth-child(3){
        width: auto;
        padding: 0 20px;
    }
    .text_img{
        margin-top: 50px;
    }
    
    
}