.partnership {
    display: flex;
    flex-direction: column;
    gap: 54px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.partnership .partnership__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.partnership .partnership__header .partnership__title {
    width: 376px;
    color: #040B2F;
    font-family: "Exo 2";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 48px */
    margin: 0;
}

.partnership .partnership__header .partnership__description {
    width: 380px;
    color: rgba(4, 11, 47, 0.85);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-right: 134px;
}

.partnership .partnership__content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.partnership .partnership__content .partnership__item {
    padding: 16px 0;
    border-top: 1px solid #EFF0F3;
    border-bottom: 1px solid #EFF0F3;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.partnership .partnership__content .partnership__item .partnership__item-number {
    color: #001593;
    font-family: "Exo 2";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.partnership .partnership__content .partnership__item .partnership__item-description {
    width: 514px;
    margin: 0;
    color: #040B2F;
    font-family: "Exo 2";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

@media (max-width: 999px) {
    .partnership .partnership__header .partnership__description {
        margin-right: unset;
    }
}

@media (max-width: 699px) {
    .partnership {
        gap: 24px;
        padding-top: 21px;
        padding-bottom: 21px;
    }

    .partnership .partnership__header {
        display: flex;
        justify-content: unset;
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .partnership .partnership__header .partnership__title {
        width: 100%;
        font-size: 28px;
        line-height: 130%;
    }

    .partnership .partnership__header .partnership__description {
        width: 100%;
    }


    .partnership .partnership__content .partnership__item {
        justify-content: unset;
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }


    .partnership .partnership__content .partnership__item .partnership__item-description {
        width: 100%;
        font-size: 18px;
        line-height: 140%;
    }
}