.zagolovok {
    font-size: 34px;
    
    font-weight: 200;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.companyBox {
    width: 80%;
    display: flex;
    justify-content: space-evenly;
    gap: 30px;
    flex-wrap: wrap;
}

.comp {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 200px;
    min-height: 160px;
    padding: 4px;
    border-radius: 32px;
    background: rgb(27 35 50 / 36%);
    text-align: center;
    font-weight: 300;
}

.comp img {
    width: 100px;
    position: absolute;
    top: -30px;
}

.comp h1 {
    font-size: 24px;
    font-weight: 300;
    margin: 80px 0 10px 0;
}

.comp a {
    font-size: 16px;
    font-weight: 300;
    color: white;
    padding: 10px;
}

@media (max-width: 1279px) {
    .companyBox {
        gap: 60px;
    }
}