.box-content {
    display: flex;
    flex-direction: column;
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    margin-top: 2rem;
    padding: 0 14px;
}

#footer-content {
    background: var(--five-color);
    max-width: 100%;
    margin-top: 0;
    min-height: 300px;
}

#footer-content footer {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 14px;
    padding-bottom: 1rem;
}

.logo-footer img {
    max-width: 130px;
    width: 100%;
    object-fit: contain;
    margin: 0 auto;
}

.option-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.card-nav-footer {
    display: flex;
    flex-direction: column;
}

.card-nav-footer h3 {
    font-family: var(--fonttext-poppins);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 4px;
}

.card-nav-footer ul {
    list-style: none;
    font-family: var(--fonttext-poppins);
    color: var(--secondary-color);
}

.card-nav-footer ul li a {
    display: flex;
    color: var(--fourth-color);
    padding: 5px 0;
    font-size: 14px;
}

.card-nav-footer ul li a:hover {
    color: var(--secondary-color);
}

.copyright p {
    color: var(--fourth-color);
    font-family: var(--fonttext-poppins);
    font-size: 14px;
}

#follow-account {
    display: flex;
    align-items: center;
    gap: 11px;
}

@media (max-width: 800px) {
    .option-footer {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 20px;  /* seperti space-between horizontal */
        row-gap: 20px;
    }
}

@media (max-width: 768px) {

    #footer-content footer {
        padding: 2rem 14px;
        padding-bottom: 1rem;
    }

    .option-footer {
        margin-top: 1rem;
    }

    .card-nav-footer h3 {
        font-size: 14.5px;
    }

    .logo-footer img {
        max-width: 110px;
    }

}

@media (max-width: 600px) {
    .option-footer {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        max-width: 400px;
        width: 100%;
        margin: 0;
    }

}