.footer-wrapper{
    background-color: #000;
    color: #fff;
    z-index: 30;
    position: relative;
}

.footer-wrapper .top{
    padding: 98px 0 141px;
    border-bottom: 2px solid var(--redColor);
}

.footer-wrapper .top-inner{
    justify-content: space-between;
}

.footer-wrapper .top-inner .logo{
    max-width: 256px;
    justify-content: space-between;
}

.footer-wrapper .top-inner .social h3{
    font-size: 25px;
    line-height: 29px;
    font-weight: 700;
    width: fit-content;
    border-bottom: 4px solid var(--redColor);
    padding-bottom: 7px;
    margin-bottom: 50px;
}

.footer-wrapper .top-inner .social li{
    padding:0 34px;
    border-right: 1px solid #fff;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
}

.footer-wrapper .top-inner .social li:first-of-type{
    padding-left: 0;
}
.footer-wrapper .top-inner .social li:last-of-type{
    padding-right: 0;
}

.footer-wrapper .top-inner .social .icon{
    width:41px;
    margin: 0 auto 18px;
    height: 40px;
    display: flex;
    align-items: center;
}
.footer-wrapper .top-inner .social .icon.lg{
    width:49px;
}
.footer-wrapper .top-inner .social .icon.sm{
    width:22px;
}

.footer-wrapper .bottom{
    padding: 23px 2rem;
    font-weight: 300;
    font-size: 17px;
    justify-content: space-between;
}

.footer-wrapper .bottom a{
    font-weight: 300;
}

.footer-wrapper .bottom ul li{
    margin-right: 44px;
    text-align: center;
}

@media screen and (max-width: 1080px) {
    .footer-wrapper .top-inner .social li{
        padding:0 20px;
    }
}

@media screen and (max-width: 860px) {
    .footer-wrapper .top{
        padding: 58px 0;
    }
    .footer-wrapper .top-inner{
        flex-direction: column;
    }

    .footer-wrapper .top-inner .logo{
        margin-bottom: 2rem;
    }
    .footer-wrapper .top-inner .social li{
        padding:0 20px;
    }
}

@media screen and (max-width: 650px) {
    .footer-wrapper .top-inner{
        align-items: center;
    }
    .footer-wrapper .top-inner .social h3{
        margin:0 auto 50px;
    }
    .footer-wrapper .bottom{
        flex-direction: column;
        align-items: center;
    }
    .footer-wrapper .bottom .developer{
        margin-top: 1rem;    
    }
}

@media screen and (max-width: 520px) {
    .footer-wrapper .social-list ul{
        max-width: 360px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-wrapper .social-list ul li{
        margin-bottom: 1rem;
    }
    .footer-wrapper .social-list ul li:nth-of-type(3){
        border-right: 0;
    }
}