footer {
    background-color: var(--gray-900);
    color: var(--white);
    position: relative;
    padding: 40px 0;
    width: 100%;
    height: 100%;
}

footer:before {
    content: ' ';
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://rippleindonesia.co.id/assets/img/background/footer.png");
}

.title-footer {
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    color: var(--secondary-500);
    margin-bottom: 16px;
}

.desc-footer {
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

a.desc-footer:hover {
    color: var(--secondary-500);
}

.icon-footer-desc {
    width: 18px;
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

.footer-sosmed {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 16px;
}

.wrapper-icon-footer {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-icon-footer{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    margin: 0 8px;
    filter: brightness(0%);
}

.img-icon-footer:hover{
    filter: none;
}

@media (min-width: 360px) and (max-width: 599px) {
    .title-footer {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 8px;
    }
    
    .desc-footer {
        font-size: 12px;
        line-height: 16px;
    }

    .img-icon-footer{
        width: 32px;
        height: 32px;
    }
}