.company-operates {
    margin-bottom: 120px;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1024px) {
    .company-operates {
        margin-bottom: 80px;
    }
}

.company-operates__row {
    display: grid;
    gap: 32px 18px;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 1024px) {
    .company-operates__row {
        grid-template-columns: 1fr;
    }

    .company-operates__row > *:nth-child(1) {
        order: 2;
    }

    .company-operates__row > *:nth-child(2) {
        order: 1;
    }
}

.company-operates__title {
    font-size: 32px;
    font-weight: 400;
    line-height: 110%;
    background: linear-gradient(96deg, #E6E7EB -6.36%, #BDD3FA 81.94%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

@media screen and (max-width: 1024px) {
    .company-operates__title  {
        font-size: 24px;
        line-height: 1.0833;
    }
}

.company-operates__subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 110%;
    margin-bottom: 8px;
    background: linear-gradient(96deg, #E6E7EB -6.36%, #BDD3FA 81.94%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 1024px) {
    .company-operates__subtitle {
        margin-bottom: 16px;
    }
}

.company-operates__description>*:not(:last-child) {
    margin-bottom: 8px;
}

.company-operates__description {
    color: #6E838E;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.125;
}

@media screen and (max-width: 1024px) {
    .company-operates__description {
        font-size: 14px;
        line-height: 1.0715;
    }
}

.company-operates__image-bg {
    position: absolute;
    top: -270px;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

@media screen and (min-width: 768px) {
    .company-operates__image-bg>*:last-child {
       display: none;
    }
}

@media screen and (max-width: 767px) {
    .company-operates__image-bg>*:first-child {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .company-operates__image-bg {
        top: 150px;
        width: 100%;
    }

    .company-operates__image-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}