footer {
    padding: 60rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #ddd;
    background-color: #eee;
}

.footer-inner {
    width: 1400rem;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-f {
    width: 180px;
}

.footer-name {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
}
.footer-name span {
    color: var(--blue-color);
}

.footer-info h6 {
    color: #555;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-info p {
    color: #555;
    font-size: 13px;
    line-height: 1.7;
}

.footer-info p span {
    letter-spacing: 0;
}

.footer-info .copyright {
    letter-spacing: 0;
    margin-top: 12px;
}



/*==================================================*/
@media (max-width: 1450px) {
    .footer-inner {
        width: 90%;
        flex-direction: column;
        justify-content: unset;
        align-items: unset;
        gap: 40rem;
    }
    
    .footer-right {
        align-items: unset;
    }
}


@media (max-width: 768px) {
    footer {
        padding-bottom: 190rem;
    }
    
    .logo-f {
        width: 300rem;
    }

    .footer-name {
        font-size: 24rem;
    }

    .footer-info p {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .footer-info .sep {
        display: none;
    }
}


@media (max-width: 550px) {
    .footer-info p {
        font-size: 24rem;
    }
}