.company-glance {
    margin-bottom: 120px;
}

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

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

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

    .company-glance__row>*:first-child {
        order: 2;
    }

    .company-glance__row>*:last-child {
        order: 1;
    }
}

.company-glance__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-glance__title {
        font-size: 24px;
    }
}

.company-glance__content {
    margin-bottom: 24px;
}

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

.company-glance__subtitle {
    font-size: 20px;
    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: 8px;
}

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

.company-glance__description {
    color: #6E838E;
}

.company-glance__description,
.company-glance__list-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.125;
}

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

.company-glance__list-title {
    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-glance__list-title {
        margin-bottom: 8px;
    }
}

.company-glance__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    list-style-type: none;
    align-items: flex-start;
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 1025px) {
    .company-glance__list {
        margin-bottom: 32px;
    }
}

@media screen and (max-width: 767px) {
    .company-glance__list {
        grid-template-columns: 1fr;
        row-gap: 16px;
    }
}

.company-glance__list>*:last-child {
    grid-column: 1 / -1;
}

.company-glance__list-item {
    color: #646466;
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.company-glance__list-item svg {
    flex-shrink: 0;
}

@media screen and (min-width: 1025px) {
    .company-glance__image img {
        margin-left: auto;
    }
}

.company-glance__icon svg {
    display: block;
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .company-glance__icon {
        display: none;
    }
}