footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0a080b;
    padding: 60px 0;
}

.footer-wrapper {
    width: 1400px;
}

.footer-box-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.footer-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.logo-f {
    width: 160px;
    margin-bottom: 10px;
}

.f-info p {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.f-info p br {
    display: none;
}

.f-info em br {
    display: block;
}


/*==================================================*/
@media (max-width: 1450px) {
    .footer-wrapper {
        width: 100%;
        padding: 0 20px;
    }
}



@media (max-width: 550px) {
    footer {
        padding: 40px 0;
    }

    .f-info p {
        font-size: 14px;
        font-weight: unset;
        line-height: 1.75;
    }

    .f-info p br {
        display: block;
    }

    .f-info p span {
        display: none;
    }
}


@media (max-width: 450px) {
    .logo-f {
        width: 130px;
        margin-bottom: 5px;
    }
    
    .f-info p {
        font-size: 12px;
    }
}