/* Footer Spacing */
.footer-mt {
    margin-top: 12rem;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-light);
    color: var(--secondary);
}

/* Footer Bar */
.footer-bar {
    background-color: var(--secondary-alt);
}

/* Copyright Section */
.copyright {
    background-color: var(--primary-light);
    color: var(--primary);
}

/* Footer Text */
.itg-footer-text {
    color: var(--secondary);
}

/* Footer Logo */
.itg-footer-logo {
    width: 100%;
    max-width: 225px;
}

/* Footer Description */
.itg-footer-description {
    width: 100%;
    max-width: 300px;
}

/* Main Footer Container */
#itg-main-footer-div {
    align-items: flex-start;
    padding: 6rem 0 8rem;
}

/* Footer Divisions */
.itg-footer-div {
    padding: 0 1rem;
}

#footer-first {
    align-items: flex-start;
}

#footer-third {
    align-items: flex-end;
}

/* Tablet and Smaller Screens */
@media (max-width: 1024px) {
    #itg-main-footer-div {
        padding: 4rem 0 6rem;
    }
}

/* Mobile Screens */
@media (max-width: 768px) {
    #itg-main-footer-div {
        flex-direction: column;
        align-items: center;
        padding: 4rem 0;
    }

    .itg-footer-div {
        width: 100%;
    }

    #footer-third {
        align-items: flex-start;
    }

    #footer-first {
        align-items: center;
        margin-bottom: 3rem;
    }

    .itg-footer-description {
        max-width: 100%;
    }
}