.footer {
    border-radius: 20px 20px 0 0;
    background: rgba(255, 255, 255, 0.40);
    box-shadow: 20px 0 60px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(30px);
}

.footer .logo {
    width: 152px;
    height: 51px;
    aspect-ratio: 152/51;
    object-fit: contain;
}

.footer p {
    color: var(--Secondaire-500, #E45F2B);
    /* Headline / Bold */
    font-family: "Arial Rounded MT Bold";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 150% */
}

.footer h6 {
    color: var(--Primary-500, #0098F3);

    /* H4 / Bold */
    font-family: "Arial Rounded MT Bold";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 120% */
}
.footer ul {
    margin-top: 0px;
}
.footer ul li a {
    color: var(--Grayscale-700, #7B7B7B);
    /* Headline / Regular */
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 150% */
}

.footer .copy small {
    color: var(--Primary-600, #007AD4);

    /* Body / Regular */
    font-family: "Work Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

@media(max-width:992px) {
    .footer .logo {
        width: 132px;
        height: 41px;
    }

    .footer p {
        font-size: 15px;
    }

    .footer h6 {
        font-size: 16px;
    }

    .footer ul li a,
    .footer .copy small {
        font-size: 13px;
    }
}

@media(max-width:768px) {
    .footer .logo {
        width: 102px;
        height: 41px;
    }

    .footer p {
        font-size: 14px;
    }

    .footer h6 {
        font-size: 15px;
    }

    .footer ul li a,
    .footer .copy small {
        font-size: 12px;
    }
}