/*footer.css*/
@charset "utf-8";

/*풋터 서식*/
footer{
    font-family: 'Noto Sans KR', sans-serif;
    overflow: hidden;
    background-color: #555;
    width: 100%;
}

.footer_section{
    width: 618px;
    margin: 50px auto;
    overflow: hidden;
}

.footer_section>address{
    float: right;
    color: #cccccc;
    line-height: 25px;
    font-style: normal; /*기울어진 글자 똑바로 나오게*/
}
.footer_section>img{
    float: left;
    margin: 22px 0px;
    opacity: 0.5;
}



/*탑버튼 서식*/
footer i.fas{
    font-size: 20px;
    position: fixed;
    bottom: 100px; right: 50px;
    padding: 8px 12px;
    border-radius: 100px;
    color: #fff;
    background-color: rgba(0, 130, 201,.6);
    cursor: pointer;
    
}



/*780 이하일 때 적용되는 스타일*/
@media screen and (max-width:780px){
    
    .footer_section{width: 100%;text-align: center;}
    .footer_section>img{float: none; margin-top: 0px;}
    .footer_section>address{float: none;}
    .footer_section>address{width: 350px; margin: 0 auto;}
    
    
}