#primary section.excellent-team-network {
    padding-top: 60px;
    padding-bottom: 60px;
}

.excellent-team-network__wrapper--desktop {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.excellent-team-network__inner {
    display: flex;
    flex-direction: column;
}

.excellent-team-network__left-section {
    flex: 1 1 783px;
}

.excellent-team-network__right-section {
    flex: 1 1 calc(100% - 783px - 40px);
}

.excellent-team-network__bg-image {
    height: 100%;
    border-radius: 16px;
}

.excellent-team-network__head {
    margin-bottom: 40px;
}

.excellent-team-network__paragraph {
    margin-bottom: 24px;
}

.excellent-team-network__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.excellent-team-network__card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1 1 calc(50% - 8px);
    align-items: flex-start;
    padding: 24px;
    box-sizing: border-box;
    border-radius: 16px;
    background: var(--grey-50);
    box-shadow:
        0 4px 10px 0 rgba(45, 96, 226, 0.1),
        0 4px 4px 0 rgba(226, 226, 226, 0.1);
}

.excellent-team-network__card-image {
    width: auto;
    height: 100%;
    object-fit: contain;
    max-height: 160px;
}

.excellent-team-network__card-title {
    color: var(--primary-color);
    font-weight: 700;
}

.excellent-team-network__wrapper--mobile {
    display: none;
}

@media screen and (max-width: 1200px) {
    .excellent-team-network__wrapper--desktop {
        display: none;
    }

    .excellent-team-network__wrapper--mobile {
        display: flex;
        flex-direction: column;
    }

    .excellent-team-network__wrapper--mobile .excellent-team-network__bg-image {
        width: 100%;
    }

    .excellent-team-network__bg-image {
        min-height: 343px;
    }

    .excellent-team-network__content {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

@media screen and (max-width: 768px) {
    #primary section.excellent-team-network {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .excellent-team-network__paragraph {
        margin-bottom: 16px;
    }

    .excellent-team-network__card-title {
        font-weight: 500;
    }

    .excellent-team-network__card {
        padding: 32px 16px;
    }
}

@media screen and (max-width: 600px) {
    .excellent-team-network__cards {
        flex-direction: column;
    }
}
