.company {
    padding-top: 20px;
    padding-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.company-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    grid-gap: 20px;
    color: #000;
}

.company-grid h3 {
    margin-bottom: 20px;
}

.company-grid p {
    margin-top: 10px;
}

.company-p {
    margin-top: 20px;
    text-align: center;
    color: #000;
    font-size: 0.8rem;
}

.company-p .btn {
    max-width: max-content;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.company-img, .company-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 680px) {
    
.company-grid {
    grid-template-columns: 1fr;
}
}