footer {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer .main-section {
    padding: 10px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

footer .main-section .partition {
    height: 33.33%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 10px;
    gap: 10px;
    color: gray;
    font-family: sans-serif;
    letter-spacing: 0.9px;
    line-height: 1.5;
    border-bottom: 1px solid #e9e9e9;
}

footer .main-section .partition.main-content {
    width: 100%;
}

footer .main-section .partition.main-content .heading-wrapper {
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

footer .main-section .partition.main-content .heading-wrapper img {
    height: 100%;
    width: auto;
    filter: brightness(1.5);
}

footer .main-section .partition.main-content .heading-wrapper h2 {
    font-size: 32px;
    letter-spacing: 0.9px;
    font-family: candar, sans-serif;
    color: dimgray;
    font-weight: bold;
}

footer .main-section .partition.main-content .burhanifoods-info {
    width: 100%;
    line-height: 1.5;
    letter-spacing: 1px;
    color: gray;
    font-size: 14px;
    padding: 10px;
}

footer .main-section .partition.quick-links h3 {
    display: flex;
    align-items: start;
    font-size: 22px;
    color: dimgray;
}

footer .main-section .partition.quick-links {
    gap: 5px;
}

footer .main-section .partition.quick-links .links {
    font-size: 12px;
    text-decoration: none;
    color: gray;
}

footer .main-section .partition.quick-links .links:hover {
    color: olivedrab;
}

footer .main-section .partition.contact-info h3 {
    display: flex;
    align-items: start;
    font-size: 22px;
    color: dimgray;
}

footer .main-section .partition.contact-info .info-wrapper {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    color: gray;
    font-family: sans-serif;
    font-size: 14px;
    letter-spacing: 0.9px;
    line-height: 1.5;
}

.info-icon {
    font-size: 16px;
}

footer .bottom-section {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

}

footer .bottom-section .partition {
    width: 100%;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-family: sans-serif;
    letter-spacing: 0.9px;
    line-height: 1.5;
    background: #FF2C2C;
}

footer .bottom-section .partition.social-info {
    background: none;
}

footer .bottom-section .partition.social-info .social-links {
    display: flex;
    gap: 10px;
    font-size: 20px;
    color: gray;
}

/* #################################################################################*/
/*@TABLETS:
/* #################################################################################*/
@media screen and (min-width: 599px) and (max-width: 1029px) {}

/* #################################################################################*/
/*@PC:
/* #################################################################################*/
@media screen and (min-width: 1030px) {
    footer .main-section {
        flex-wrap: nowrap;
        padding: 20px;
    }

    footer .main-section .partition {
        width: 100%;
        height: 100%;
        padding: 20px;
        border-right: 1px solid #e9e9e9;
        border-bottom: none;
        gap: 20px;
    }

    footer .main-section .partition.contact-info {
        border-right: none;
    }

    footer .main-section .partition.contact-info .info-wrapper {
        border-right: none;
    }

    footer .bottom-section {
        flex-direction: row;
        background: #FF2C2C;
    }

    footer .bottom-section .partition {
        background: none;
    }

    footer .bottom-section .partition.copyright-info {
        order: 1;
        justify-content: start;
    }

    footer .bottom-section .partition.gst-info {
        order: 2;
    }

    footer .bottom-section .partition.social-info {
        order: 3;
    }

    footer .bottom-section .partition.social-info .social-links {
        font-size: 20px;
        color: white;
    }
}