#footer{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.footer_inner{
    width: 100%;
    padding: 90px 0 70px;
    position: relative;
    background-color: #111;
}

.top{
    width: 60px;
    height: 60px;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    cursor: pointer;
}

.top i{
    color: #fff;
    font-size: 18px;
}

.footer_inner .center{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.insta{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 40px;
}

.insta i{
    font-size: 36px;
    color: #fff;
}

.footer_inner .center a{
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    font-family: 'Pretendard-Regular', sans-serif;
    letter-spacing: 0.5px;
}

.footer_inner address{
    font-size: 13px;
    line-height: 24px;
    text-align: center;
    font-style: normal;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Pretendard-Light', sans-serif;
    margin-top: 20px;
}

.footer_inner address span{
    margin: 0 12px;
}

.footer_inner address p{
    font-size: 11px;
    margin-top: 8px;
}







































/* mobile */
@media screen and (max-width: 767px){

    .footer_inner{
        padding: 40px 0;
    }
    
    .top{
        width: 30px;
        height: 30px;
        top: -15px;
        cursor: inherit;
    }
    
    .top i{
        font-size: 12px;
    }

    .footer_inner .center img{
        width: 100px;
    }
    
    .insta{
        cursor: inherit;
        margin-top: 20px;
    }

    .insta i{
        font-size: 30px;
    }
    
    .footer_inner .center a{
        font-size: 10px;
        margin-top: 10px;
    }
    
    .footer_inner address{
        font-size: 10px;
        line-height: 15px;
        margin-top: 10px;
    }
    
    .footer_inner address span{
        margin: 0 7px;
    }
    
    .footer_inner address p{
        font-size: 10px;
        margin-top: 5px;
    }

}


































/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

    .top{
        width: 30px;
        height: 30px;
        top: -15px;
        cursor: inherit;
    }
    
    .top i{
        font-size: 12px;
    }

    .footer_inner .center img{
        width: 100px;
    }
    
   .insta{
        cursor: inherit;
        margin-top: 20px;
    }

    .insta i{
        font-size: 30px;
    }
    
    .footer_inner .center a{
        font-size: 10px;
        margin-top: 15px;
    }
    
    .footer_inner address{
        font-size: 10px;
        line-height: 15px;
        margin-top: 10px;
    }
    
    .footer_inner address span{
        margin: 0 7px;
    }
    
    .footer_inner address p{
        font-size: 10px;
        margin-top: 5px;
    }

}