footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding: 30px 0;
}

.footer-wrapper {
    width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-f {
    width: 240px;
}

.footer-text p {
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
}



/*==================================================*/
@media (max-width: 1450px) {
    .footer-wrapper {
        width: 100%;
        padding: 0 20px;
    }
}


@media (max-width: 1100px) {
    footer {
        padding: 20px 0;
    }
    
    .footer-wrapper {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 2rem;
    }
}


@media (max-width: 550px) {
    .footer-wrapper {
        gap: 1rem;
    }
    
    .footer-text p {
        font-size: 10px;
    }
}