        .footer {
            padding: 64px 0;
        }

        .foot-wrp {
            display: flex;
            margin: 0 auto;
            /* padding: 50px 0; */
            box-sizing: border-box;
            width: 1280px;
            justify-content: space-between;
        }

        .foot-wrp_content {
            display: flex;
        }

        .foot-content_link {
            display: flex;
            align-items: flex-end;
            margin-right: 64px;
        }

        .foot-content_link li a {
            color: var(--White, #FFF);
            font-family: "Nunito Sans";
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: 150%;
            text-decoration: none;
            /* 27px */
        }

        .foot-content_link__one {
            margin-right: 50px;
        }


        .foot-content-socials {
            display: flex;
        }

        .foot-content-item:not(:last-child) {
            margin-right: 16px;
        }

        .foot-wrp-logo_img {
            width: 255px;
            height: auto;
        }
        .foot-content-item__img {
            width: 40px;
            height: auto;
        }

        @media (max-width: 576px) {
            .footer {
                padding: 36px 18px;
                min-height: 200px;
            }

            .foot-wrp {
                width: 100%;
                flex-direction: column;
            }

            .foot-wrp_logo {
                margin-bottom: 45px;
            }
            .foot-wrp-logo_img {
                width: 211px;
                height: auto;
            }
            .foot-content-item__img {
                width: 36px;
                height: auto;
            }
            .foot-content_link {
                flex-direction: column;
                margin-right: 0 auto;
                align-items: start;
            }

        }