footer {
    color: white;
    padding: 92px 0px 52px;
    background-image: url('/assets/img/bg-footer.svg');
    background-blend-mode: color-burn;
    background-repeat: no-repeat;
    background-size: 1120px auto;
    background-position: top 100% left 100%;
    background-color: var(--secondary);
}

footer a {
    color: white;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

footer a:hover {
    color: white;
    text-decoration: underline;
    transition: all 0.2s ease-in-out;
}

footer .middle {
    margin-top: 68px;
}

footer .middle .links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer .middle a {
    font-weight: 600;
    line-height: 24px;
}

footer .middle .title {
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 20px;
}

footer .bottom {
    border-top: 1px solid rgb(231, 240, 248, 0.2);
    padding-top: 20px;
    margin-top: 40px;
}

footer .col-12 {
    margin: 24px 0px;
}

@media screen and (max-width: 992px) {

    footer {
        padding: 30px 0px 0px;
        background-size: 724px 712px;
        background-position: right -367px bottom 0px;
    }

    footer .middle {
        margin-top: 0px;
    }

    footer .bottom {
        padding-top: 0px;
    }
}

@media screen and (max-width: 768px) {
    footer {
        text-align: center;
    }

    footer img {
        max-width: 124px;
    }

    footer .middle .links {
        display: none;
    }
}