.who-we-work-contact {
    margin-bottom: 120px;
}

@media screen and (max-width: 1024px) {
    .who-we-work-contact {
        margin-bottom: 80px;
    }
}

.who-we-work-contact__inner {
    max-width: 887px;
    margin-inline: auto;
}

.who-we-work-contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 27px 17px;
    margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
    .who-we-work-contact__row  {
        grid-template-columns: 1fr;
    }
}

.who-we-work-contact__row-item {
    border-radius: 24px;
    border: 1px solid rgba(100, 100, 102, 0.25);
    background: rgba(0, 0, 0, 0.00);
    padding: 24px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    isolation: isolate;
}

.who-we-work-contact__row-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(
            ellipse 128% 100% at 94% 5%,
            rgba(189, 211, 250, 0.15) 0%,
            rgba(189, 211, 250, 0.04) 42%,
            transparent 74%
        ),
        radial-gradient(
            ellipse 125% 105% at 7% 95%,
            rgba(115, 172, 203, 0.16) 0%,
            rgba(115, 172, 203, 0.045) 46%,
            transparent 76%
        );
}

.who-we-work-contact__row-item > *:not(.who-we-work-contact__img) {
    position: relative;
    z-index: 1;
}

.who-we-work-contact__row-item>*:not(:last-child) {
    margin-bottom: 8px;
}

.who-we-work-contact__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: 32px;
}

@media screen and (max-width: 1024px) {
    .who-we-work-contact__title {
        font-size: 24px;
    }
}

.who-we-work-contact__item-top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.who-we-work-contact__item-image {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
}

.who-we-work-contact__item-image img {
    display: block;
    filter: brightness(1.12) contrast(1.07);
}

.who-we-work-contact__item-title {
    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;
}

.who-we-work-contact__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.125;
    color: #646466;
}

.who-we-work-contact__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: inherit;
}

.who-we-work-contact__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    filter: brightness(1.09) contrast(1.04);
}

.who-we-work-contact__icon svg {
    display: block;
    max-width: 100%;
    margin-inline: auto;
}