.op-main__bg img {
    width: 100%;
}

.op-main__subtitle {
    width: 47%;
    margin-bottom: 60px;
}

.op-main__title {
    margin-bottom: 40px;
}

.op-items {
    margin-bottom: 60px;
}

.op-items-container {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.op-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 60px 0;
}

.op-item-text {
    margin-right: 60px;
    width: 100%;
}

.op-item-title {
    margin-bottom: 20px;
    color: #323232;
}

.op-item__pict {
    width: 100%;
    text-align: center;
}

.op-partner {
    background: #F2F2F2;
    padding: 120px 0;
}

.op-partner-title {
    margin-bottom: 40px;
}

.op-partner-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    row-gap: 20px;
    column-gap: 20px;
    margin-top: 20px;
}

.op-partner-item {
    transition: all 0.3s;
}

.op-partner-item:hover {
    transform: scale(1.05);
    transition: all 0.3s;
}

.op-picture {
    background: #F2F2F2;
    border-radius: 10px;
    width: 100%;
    object-fit: contain;
}
.op-item__pict img {
    width: 70%;
    border-radius: 20px;
}

@media screen and (max-width: 1024px) {
    .op-item__pict img {
        width: 50%;
    }
    .op-item {
        flex-direction: column;
    }
    .op-item-text {
        margin: 0;
    }
    .op-partner-items {
        justify-content: space-around;
    }

}

@media screen and (max-width: 768px) {
    .op-main {
        flex-direction: column;
    }
    .op-main__subtitle {
        width: 90%;
        padding-bottom: 30px;
        margin: 0 auto;
    }
    .op-items {
        margin-bottom: 0;
    }
    .op-partner {
        padding: 60px 0;
    }

    .op-item {
        margin: 30px 0;
    }
    .op-partner-items {
    pointer-events: none;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}
