#footer {
    background: #D8D8CA;
    padding: 60px 0;
}

#footer li {
    list-style: none;
}

#footer .footerT {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
}


#footer .footerT .linkBtn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#footer .footerT .linkBtn li a {
    color: #fff;
    background: #000;
    padding: 10px 20px;
    text-align: center;
    display: block;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    margin-left: 40px;
    border-radius: 50px;
}

#footer .footerT .linkBtn li a img {
    margin: 0 10px;
}

#footer .linkList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 40px;
    max-width: 838px;
}

#footer .linkList li {
    border-left: solid 1px #000;
    font-size: 1.2rem;
    text-align: center;
    color: #000;
    width: 25%;
    line-height: 1;
}

#footer .linkList li a {
    margin: 0 10px;
    color: #000;
    white-space: nowrap;
    transition: all ease-in-out .3s;
}
#footer .linkList li a:hover{
    text-decoration: none;
    opacity: .5;
}

#footer .linkList li:last-child {
    border-right: solid 1px #000;
}

#footer .inner .copyright {
    text-align: center;
    font-size: 12px;
    font-weight: normal;
}

@media screen and (max-width: 1200px) {
    @media screen and (min-width: 1025px) {
        #footer .footerT>a {
            width: 35%
        }

        #footer .footerT .linkBtn li a {
            margin-left: 30px;
        }
    }
}

@media screen and (max-width: 1024px) {
    #footer .footerT {
        flex-direction: column;
    }

    #footer .footerT>a {
        margin-bottom: 40px;
    }

    #footer .footerT .linkBtn li a {
        width: 240px;
    }
}

@media screen and (max-width: 768px) {
    #footer .footerT {
        margin-bottom: 30px;
    }

    #footer .footerT .linkBtn,
    #footer .linkList {
        flex-direction: column;
    }
    #footer .footerT .linkBtn li a {
        margin: 0 auto 10px;
    }

    #footer .linkList li {
        border-left: none;
        display: block;
        margin: 0 auto 20px;
        width: 100%;
    }

    #footer .linkList li:last-child {
        border-right: none;
    }

    #footer .linkList li a {
        margin: 0 auto;
        display: block;
        white-space: nowrap;
    }

}
@media screen and (max-width: 480px){
    #footer .linkList{
        margin-bottom: 20px;
    }
}