.footer {
    border-radius: 40px 40px 0px 0px;
    margin-top: 40px;
    padding-top: 60px;
    background-color: #171718;
    position: relative;
    color: white;
}

.footer-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: url(../img/footer_bg.png) no-repeat left top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: 50% auto;
    z-index: 1;
}

.footer-body {
    width: 100%;
    display: flex;
    position: relative;
    justify-content: center;
    z-index: 2;
}

.footer-content {
    position: relative;
    z-index: 2;
    width: 80%;
}

.social-section {
    padding-top: 40px;
    width: fit-content;
}

.social-icon {
    height: 30px;
}

@media (max-width: 1140px) {
    .footer-bg {
        background-size: 70% auto;
    }
}

@media screen and (max-width: 767px) {
    .footer-bg {
        background-size: 100% auto;
    }
    .social-section {
        width: fit-content;
        margin-left: auto;
        margin-right: auto
    }
}

@media screen and (max-width: 540px) {
    .footer-bg {
        background-size: 150% auto;
    }
}