footer {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.footer-bg {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 400%;
    z-index: 3;
}

.footer-wrapper {
    width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 466px;
    z-index: 10;
}

.footer-wrapper p {
    color: #b1a1ff;
    font-size: 15px;
}

.logo-f {
    width: 100px;
}


/*==================================================*/
@media (max-width: 1250px) {
    .footer-wrapper {
        width: 100%;
        padding: 0 20px;
    }
}


@media (max-width: 950px) {
    .footer-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
}