

/* Start:/company/style.css?17803234782387*/
.about-company {
    display: flex;
    flex-direction: column;
    gap: 56px;

    .block-width:has(&){
        padding-block: 100px;
    }

    & .button-1 {
        width: 166px;
    }

    &>div:first-child {
        gap: 16px;
    }

    &>div:last-child {
        width: 100%;
        max-width: 920px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
        gap: 24px;
        align-items: start;

        & > img.about-company__image {
            position: sticky;
            top: 132px;
            width: 100%;
            max-width: 500px;
            height: auto;
            object-fit: contain;
            justify-self: end;
            z-index: 1;
        }
    }

}

.about-company__button-panel {
    display: flex;
    gap: 12px;
}

.about-company__button-panel .button-1-inverse {
    background: #1ba029;
    border-color: #1ba029;
    color: #fff;
}

.about-company__button-panel .button-1-inverse:hover {
    background: #178723;
    border-color: #178723;
    color: #fff;
}

.about-company__title {
    margin: 0 0 16px;
    font-size: 3.125rem;
    line-height: 1.1;
}

.about-company__title-accent {
    color: var(--bg-color-secondary);
}

.about-company__story {
    max-width: 560px;
}

.about-company__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-company__text p {
    margin: 0;
}

.about-company__text.is-collapsed {
    max-height: 320px;
    overflow: hidden;
    position: relative;
}

.about-company__text.is-collapsed::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #f5f8fb);
}

.about-company__toggle {
    margin-top: 14px;
    border: 0;
    background: none;
    color: var(--theme-base-color);
    font-weight: 500;
    padding: 0;
    cursor: pointer;
}

@media (max-width: 1100px) {
    .about-company {
        gap: 36px;
    }

    .about-company > div:last-child {
        grid-template-columns: 1fr;
    }

    .about-company > div:last-child > img.about-company__image {
        position: static;
        justify-self: start;
        width: 280px;
        max-width: 100%;
        margin-top: 24px;
    }
}
/* End */
/* /company/style.css?17803234782387 */
