footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #111;
    padding: 60px 0;
}

.footer-wrapper {
    width: 1400px;
    display: flex;
    justify-content: space-between;
}

.f-text p {
    color: #aaa;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0;
}

.f-text p b {
    font-size: 18px;
    line-height: 3;
}

.f-text p br {
    display: none;
}

.f-text em br {
    display: block;
}

.logo-f {
    height: 150px;
    filter: grayscale(1);
    opacity: .6;
}


/*==================================================*/
@media (max-width: 1450px) {
    .footer-wrapper {
        width: 100%;
        padding: 0 20px;
    }
}


@media (max-width: 768px) {
    footer {
        padding-bottom: 100px;
    }
    
    .footer-wrapper {
        flex-direction: column-reverse;
        gap: 2rem;
    }
}


@media (max-width: 550px) {
    footer {
        padding: 30px 0;
        padding-bottom: 70px;
    }
    
    .footer-wrapper {
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }
    
    .f-text {
        text-align: center;
    }
    
    .f-text p {
        font-size: 12px;
    }

    .f-text p b {
        font-size: 15px;
    }
    
    .logo-f {
        height: 100px;
    }
}


@media (max-width: 400px) {
    .f-text span {
        display: none;
    }

    .f-text p br {
        display: block;
    }
}