#footer-section {
    background-color: var(--brand-col-4);
}

#footer-section [data-attr=content-wrapper] {
    padding: 72px 16px 48px;
    width: calc(100% - 32px);
    height: calc(100% - 120px);
}

#footer-section [data-attr=content-wrapper] .content {
    gap: 56px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#footer-section [data-attr=content-wrapper] .content .icon-container .logo {
    height: 76px;
    width: fit-content;
    position: relative;
}

#footer-section [data-attr=content-wrapper] .content .icon-container .logo img {
    width: 100%;
    height: 100%;
}

#footer-section [data-attr=content-wrapper] .content .icon-container .logo .copyright-text {
    bottom: 5px;
    right: -24px;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    position: absolute;
}

#footer-section [data-attr=content-wrapper] .content .icon-container .social-links {
    gap: 32px;
    display: flex;
    width: fit-content;
    margin: 48px auto 0;
    align-items: center;
}

#footer-section [data-attr=content-wrapper] .content .icon-container .social-links .link {
    width: 40px;
    height: 40px;
    position: relative;
}

#footer-section [data-attr=content-wrapper] .content .icon-container .social-links .link::before {
    inset: 0;
    width: 40px;
    content: "";
    height: 40px;
    position: absolute;
    background-size: 100%;
    background-repeat: no-repeat;
}

#footer-section [data-attr=content-wrapper] .content .icon-container .social-links .link:nth-child(1)::before {
    background-image: url("../icons/footer/facebook.svg");
}

#footer-section [data-attr=content-wrapper] .content .icon-container .social-links .link:nth-child(2)::before {
    background-image: url("../icons/footer/youtube.svg");
}

#footer-section [data-attr=content-wrapper] .content .icon-container .social-links .link:nth-child(3)::before {
    background-image: url("../icons/footer/instagram.svg");
}

#footer-section [data-attr=content-wrapper] .content .path-container .path-links {
    gap: 12px;
    display: flex;
    flex-direction: column;
}

#footer-section [data-attr=content-wrapper] .content .path-container .path-links .link {
    padding: 0 0 8px;
    color: var(--generic-white);
    border-bottom: 1px solid var(--generic-white);
}

#footer-section [data-attr=content-wrapper] .content .path-container .path-links .link:last-child {
    border-bottom: unset;
}

#footer-section [data-attr=content-wrapper] .content .path-container .bitlaab {
    gap: 6px;
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 40px auto 0;
}

#footer-section [data-attr=content-wrapper] .content .path-container .bitlaab p {
    font-size: 14px;
    font-weight: 300;
    line-height: 17px;
}

#footer-section [data-attr=content-wrapper] .content .path-container .bitlaab a {
    gap: 6px;
    display: flex;
    font-size: 0px;
    color: transparent;
    align-items: center;
}

#footer-section [data-attr=content-wrapper] .content .path-container .bitlaab a::before {
    width: 95px;
    height: 24px;
    content: "";
    background-repeat: no-repeat;
    background-image: url("../icons/footer/bitlaab.svg");
}

@media screen and (min-width: 680px) {
    #footer-section [data-attr=content-wrapper] {
        padding: 72px 48px 48px;
        width: calc(100% - 96px);
        height: calc(100% - 120px);
    }

    #footer-section [data-attr=content-wrapper] .content {
        gap: 72px;
    }

    #footer-section [data-attr=content-wrapper] .content .icon-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #footer-section [data-attr=content-wrapper] .content .icon-container .logo {
        height: 76px;
    }

    #footer-section [data-attr=content-wrapper] .content .icon-container .logo .copyright-text {
        right: -60px;
        font-size: 14px;
        line-height: 18px;
    }

    #footer-section [data-attr=content-wrapper] .content .icon-container .social-links {
        gap: 32px;
        margin: unset;
    }

    #footer-section [data-attr=content-wrapper] .content .icon-container .social-links .link {
        width: 40px;
        height: 40px;
    }

    #footer-section [data-attr=content-wrapper] .content .icon-container .social-links .link::before {
        width: 40px;
        height: 40px;
    }

    #footer-section [data-attr=content-wrapper] .content .path-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #footer-section [data-attr=content-wrapper] .content .path-container .path-links {
        gap: 18px;
        align-items: center;
        flex-direction: row;
    }

    #footer-section [data-attr=content-wrapper] .content .path-container .path-links .link {
        padding: unset;
        border-bottom: unset;
    }

    #footer-section [data-attr=content-wrapper] .content .path-container .bitlaab {
        margin: unset;
    }
}

@media screen and (min-width: 1240px) {
    #footer-section [data-attr=content-wrapper] .content {
        gap: 72px;
    }

    #footer-section [data-attr=content-wrapper] .content .icon-container .logo {
        height: 99px;
    }

    #footer-section [data-attr=content-wrapper] .content .icon-container .logo .copyright-text {
        right: -8px;
        bottom: 10px;
    }

    #footer-section [data-attr=content-wrapper] .content .icon-container .social-links {
        gap: 36px;
    }

    #footer-section [data-attr=content-wrapper] .content .icon-container .social-links .link {
        width: 44px;
        height: 44px;
    }

    #footer-section [data-attr=content-wrapper] .content .icon-container .social-links .link::before {
        width: 44px;
        height: 44px;
    }

    #footer-section [data-attr=content-wrapper] .content .path-container .path-links {
        gap: 24px;
    }
}