.ocompany_first {
    padding: 0;
    color: #4f304f;
    background: #fff;
    font-family: inherit;
}

.ocompany_container {
    width: min(100% - 40px, 1650px);
    margin: 0 auto;
}

.ocompany_about {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1.05fr);
    align-items: stretch;
    background: #fbf8fa;
}

.ocompany_about_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 456px;
    padding: 58px 56px;
}

.ocompany_about_title {
    max-width: 430px;
    margin: 0 0 22px;
    color: #5a365b;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}

.ocompany_about_text {
    max-width: 520px;
    color: #403840;
    font-size: 16px;
    line-height: 1.65;
}

.ocompany_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.ocompany_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 52px;
    padding: 12px 24px;
    border: 1px solid #7a4978;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.ocompany_button_primary {
    color: #fff;
    background: #7a4978;
}

.ocompany_button_primary:hover {
    color: #fff;
    background: #62375f;
    border-color: #62375f;
}

.ocompany_button_secondary {
    color: #5a365b;
    background: #fff;
}

.ocompany_button_secondary:hover {
    color: #fff;
    background: #7a4978;
}

.ocompany_about_media {
    min-height: 456px;
}

.ocompany_about_image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 456px;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .ocompany_about {
        grid-template-columns: 1fr;
    }

    .ocompany_about_content {
        min-height: auto;
        padding: 46px 36px;
    }
}

@media (max-width: 640px) {
    .ocompany_container {
        width: min(100% - 24px, 1180px);
    }

    .ocompany_about_title {
        font-size: 26px;
    }

    .ocompany_about_content {
        padding: 34px 22px;
    }

    .ocompany_about_text {
        font-size: 15px;
    }

    .ocompany_buttons {
        gap: 12px;
    }

    .ocompany_button {
        width: 100%;
    }

    .ocompany_about_media,
    .ocompany_about_image {
        min-height: 290px;
    }
}
