.companyLayout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 0;
}

.companySection {
    max-height: 350px;
    width: 100%;

}

.companyLable {
    font-family: 'UniversLTStd-Bold', sans-serif;
    font-size: 2rem;
    height: 25px;
    line-height: 2rem;

}

.companySectionLayout {
    display: flex;

}

.companySectionChild {
    height: 300px;
    flex: 2;
}

.companySectionGap {
    height: 300px;
    flex: 1;
}

.companyUnderlineOrange {
    width: 50px;
    border-bottom: solid;
    border-color: rgb(255, 133, 0);

}

.companyUnderlineGreen {
    width: 50px;
    border-bottom: solid;
    border-color: rgb(0, 109, 114);

}

@media (max-width: 1650px) {
    .companySection {
        max-height: 400px;

    }

    .companySectionChild {
        height: 350px;

    }

    .companySectionGap {
        height: 350px;
        flex: 0.5;

    }

}


@media (max-width: 1200px) {

    .companySection {
        max-height: 400px;

    }

    .companySectionChild {
        height: 350px;

    }

    .companySectionGap {
        height: 350px;
        flex: 0.5;

    }

}


@media (max-width: 900px) {
    .companySectionChild {
        height: 400px;

    }

    .companySectionGap {
        height: 400px;
        flex: 0.5;

    }

}

@media (max-width: 600px) {
    .companySection {
        max-height: 500px;

    }

    .companySectionChild {
        height: 450px;

    }

    .companySectionGap {
        height: 450px;
        flex: 0.5;

    }

}