footer {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    padding-bottom: 200rem;
}

.ft-video {
    position: relative;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    z-index: 2;
}
.ft-video::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, var(--main-color) 50%, transparent);
    z-index: 3;
}

.ft-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.footer-wrapper {
    width: 1200rem;
    display: flex;
    justify-content: space-between;
}

.logo-f {
    width: 500rem;
    mix-blend-mode: difference;
}

.footer-wrapper p {
    color: #fff;
    font-size: 16rem;
    line-height: 1.6;
    letter-spacing: 0;
    mix-blend-mode: difference;
}


/*==================================================*/
@media (max-width: 1250px) {
    .footer-wrapper {
        width: 90%;
    }
}


@media (max-width: 991px) {
    footer {
        padding: 40px 0;
    }

    .footer-wrapper {
        flex-direction: column;
        justify-content: unset;
        gap: 50rem;
    }

    .logo-f {
        width: 300rem;
    }
}


@media (max-width: 550px) {
    .fBtn-wrapper {
        display: none;
    }

    .f-info p {
        font-size: 20rem;
    }
}