@charset "utf-8";
footer *{
 /* overflow:hidden !important; */
}

footer{
    padding: 60px 0;

    color: rgba(67, 67, 67, 1);
    /* background-color: rgba(67, 67, 67, 1); */
    /* border-top: 1px solid red; */

    letter-spacing: -1px;
}

footer address{
    font-style: normal; 

    display: inline-block;
    margin: 20px 0 30px;
}

footer .copyright{
    color: rgba(166, 166, 166, 1);
}

footer .link .img_wrap{
    cursor: pointer;
}

footer .link img{
    width: 100%;
}

footer .flex_box{
    justify-content: space-between;
}




/* .footer_top {
    width: 95px;
    height: 95px;
    position: fixed;
    bottom: 100px;
    right: 100px;
    cursor: pointer;
    z-index: 9999;
}


.footer_top img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spin infinite 5s linear;

    -webkit-animation-name: spin;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

@keyframes spin{
    0%{
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.footer_top i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
} */






/* mobile */
@media screen and (max-width: 767px) {
    footer{
        padding: 30px 0;
    }

    #footer{
        position: relative;
    }

    footer address{
        margin: 10px 0;
    }

    footer .flex_box{
        justify-content: space-between;
        flex-direction: column-reverse;
        gap: 10px;
    }

    footer .link{
        align-self: flex-end;
    }

    footer .center > img {
        width: 33%;
    }

}

/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    footer .footer_top{
   
    }

    footer {
        padding: 30px 0;
    }


}