.companyDescription {
        margin-top: 0;
    }
.description-grid-all {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}
.description-grid-element {
display: grid;
max-height: 200px;
align-items: center;
width: 80%;
color: white;
}
.description-grid-element:nth-child(2n) {
grid-template-areas: "main main side" "main main side";
justify-content: end;
text-align: right;
}

.description-grid-element:nth-child(2n+1) {
grid-template-areas: "side main main" "side main main";
justify-content: start;
text-align: left;
}
.description-grid-element div {
grid-area: main;

padding: 0 10px;
font-size: 18px;
}
.description-grid-element img{
max-height:125px;
width: 100%;
height: auto;
grid-area: side;
padding-right: 10px;
}

@media only screen and (min-width: 426px) {
    .description-grid-all {
    grid-template-columns: 1fr;

    }
    .description-grid-element {
        max-height: 300px;
    }
    .description-grid-element div {
        padding: 0 10px;
        font-size: 26px;
    }
    .description-grid-element img{
        max-height:200px;
    }
}

@media only screen and (min-width: 1025px) {
    .companyDescription {
        padding: 60px 60px;
    }
    .description-grid-all {
    grid-template-columns: 1fr 1fr 1fr;

    gap: 0em;
    }

    .description-grid-element{
        max-height: 300px;
        width: 100%;
        grid-template-areas: "main main side" "main main side" !important;
        text-align: right !important;
        justify-content: end !important;
    }


    .description-grid-element div {
        padding: 0 10px;
        font-size: 25px;
    }
    .description-grid-element img{
        max-height: 250px;
        min-width:50px;
        height: auto;
        width: 60px;


    }
}