.company {
    display: flex;
    flex-wrap: wrap;
    justify-self: start;
    width: 55vw;
    margin-bottom: 54px;
    padding: 10px;
    background-color: #F2F2F2;
    border-radius: 10px;
}

@media screen and (max-width: 1000px) {
   .company {
       width: auto;
   } 
}

.company:nth-child(even){
    flex-direction: row-reverse;
    justify-self: end;
    text-align: right;
}

.company .logo {
    max-height: 150px;
}

.company .info {
    display: flex;
    flex-direction: column;
    
    margin: 0 24px;
    font-family: Jost, Roboto;
}

.company .info .title {
    font-size: x-large;
}

.company .info .description {
    color: #ABABAB;
}
