    .footer__wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 44px 0;
        align-items: center;
        width: 100%;
    }

    .footer-info {
        display: flex;
        flex-direction: column;
        gap: 24px;
        max-width: 402px;
    }

    .footer-info span {
        font-family: Avenir Next;
        font-weight: 600;
        font-style: Demi Bold;
        font-size: 18px;
        line-height: 120%;
        letter-spacing: 0%;
        color: white;

    }

    .footer-info-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer-info-links a {
        font-family: Avenir Next;
        font-weight: 400;
        font-style: Regular;
        font-size: 18px;
        line-height: 140%;
        letter-spacing: 0%;
        text-align: left;
        text-decoration: underline;
        text-decoration-style: solid;
        text-decoration-offset: 0%;
        text-decoration-thickness: 0%;
        color: white;
        text-decoration-skip-ink: auto;

    }

    .footer-social {
        display: flex;
        flex-direction: column;
        gap: 24px;
        max-width: 193px;
    }

    .footer-social span {
        font-family: Avenir Next;
        font-weight: 600;
        font-style: Demi Bold;
        font-size: 18px;
        line-height: 120%;
        letter-spacing: 0%;
        color: white;
    }

    .footer-social-links {
        display: flex;
        flex-direction: row;
        gap: 16px;
    }

    @media screen and (max-width:1024px) {
        .footer__wrapper {
            display: flex;
            flex-direction: column;
            padding: 0 0 44px 0;
            align-items: center;
            width: 100%;
            gap: 32px;
        }

        .footer-social {
            justify-content: center;
            align-items: center;
        }


        .footer-info span {
            text-align: center;

        }
        .footer-social span{
            text-align: center;
        }

        .footer-info-links {
            text-align: center;
            justify-content: center;
            align-items: center;
        }
    }