.footer-conrtent {
    padding: 50px 30px;
    max-width: 1440px;
    margin: 0 auto;
    li {
        list-style: none;
    }
    .grid-layout {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        ul.ul-footer {
            padding-left: 0;
        }
        .grid-item1 { grid-area: 1 / 1 / 2 / 2; }
        .grid-item2 { grid-area: 1 / 2 / 2 / 3; }
        .grid-item3 { grid-area: 1 / 3 / 2 / 4; }
        .grid-item4 { grid-area: 1 / 4 / 2 / 5; }
        .grid-item5 { grid-area: 1 / 5 / 2 / 6;
        h2 {
            color: #000000;
        } }
        .list-heading {
            font-weight: 600;
            padding: 10px 0;
            color: #000000;
        }
        .description-logo,
        .list-item {
            font-size: 14px;
            padding: 5px 0;
            a {
                color: #000000;
                font-size: 14px;
                text-decoration: none;
                font-weight: normal;
            }
        }
        .description-logo {
            line-height: 24px;
        }
    }
    @media (max-width: 768px) {
        .grid-layout {
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: 3fr;
            grid-row-gap: 20px;

            .grid-item1, .grid-item2, .grid-item3, .grid-item4, .grid-item5 {
                grid-area: unset;
            }
        }
    }
    @media (max-width: 600px) {
        .grid-layout {
            grid-template-columns: 1fr;
            grid-template-rows: 5fr;
        }
    }
}
.text-generator .footer-conrtent .grid-layout .list-heading ,
.text-generator .footer-conrtent .grid-layout h2,
.text-generator .footer-conrtent .grid-layout p,
.text-generator .footer-conrtent .grid-layout .ul-footer .list-item a,
.workspace-page-wrapper .footer-conrtent .grid-layout .list-heading ,
.workspace-page-wrapper .footer-conrtent .grid-layout h2,
.workspace-page-wrapper .footer-conrtent .grid-layout p,
.workspace-page-wrapper .footer-conrtent .grid-layout .ul-footer .list-item a {
    color: #FFFFFF;
}