footer {
    width: 100%;
    min-height: 240px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
    color: #F4F0F0;
    padding: 48px 20px;
    background: #1C1C1C;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.footer-logo {
    position: absolute;
    left: 127px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.footer-logo img {
    display: block;
    height: 37px;
    width: auto;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.footer-email {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #F4F0F0;
}

.footer-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.2s;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.35);
}

.footer-social-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-copy {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(244, 240, 240, 0.85);
}

.footer-copy-small {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: rgba(244, 240, 240, 0.65);
}

.footer-bg-ellipse {
    position: absolute;
    width: 377.72px;
    height: 444.03px;
    left: -200px;
    bottom: 15px;
    background: linear-gradient(103.89deg, rgba(94, 39, 176, 0.5) 0.82%, rgba(255, 255, 255, 0.5) 111.68%);
    filter: blur(150px);
    transform: matrix(-0.56, -0.83, 0.72, -0.69, 0, 0);
    pointer-events: none;
    z-index: 0;
}

.footer-bg-rect {
    position: absolute;
    right: 0px;
    bottom:0;
}

.footer-bg-rect-mobile, .footer-bg-ellipse-mobile {
    display: none;
}


@media (max-width: 900px) {
    footer {
        flex-direction: column;
        gap: 16px;
        padding: 40px 20px;
    }

    .footer-logo {
        position: static;
        transform: none;

    }

    .footer-logo img {
        width:137px;
    }

    .footer-center {
        order: 2;
    }

    .footer-bg-rect, .footer-bg-ellipse {
        display: none;
    }

    .footer-bg-rect-mobile {
        display: block;
        position: absolute;
        right: 0px;
        bottom:0;
    }
    .footer-bg-ellipse-mobile {
        display: block;
        position: absolute;
        left: -100px;
        /* right: unset; */
        width: 199px;
        height: 222px;
        /* top: 97.33%; */
        bottom: -50px;
        background: linear-gradient(103.89deg, rgba(94, 39, 176, 0.5) 0.82%, rgba(255, 255, 255, 0.5) 111.68%);
        filter: blur(64.9143px);
        transform: matrix(-0.45, -0.89, 0.62, -0.78, 0, 0);
        opacity: 0.5;

    }
}

