.representations__group {
    display: flex;
}

.representations__group-card {
    border-radius: 14px;
    padding: 20px 24px;
}

.representations__head-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 110%;
}

.representations__head-country__name {
    font-weight: 600;
    font-size: 15px;
    line-height: 140%;
}

.representations__head-country {
    display: flex;
    gap: 10px;
}

.representations__card-bodies {
    display: flex;
    flex-wrap: wrap;
}

.representations__head-country img {
    width: 44px;
}

.representations__card-information {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.representations__information-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.representations__row-name {
    flex-basis: 120px;
    font-weight: 600;
}

.representations__row-info,
.representations__row-name {
    font-size: 15px;
    line-height: 140%;
}

.representations__row-info {
    max-width: calc(100% - 130px);
    flex-basis: fit-content;
    word-break: break-word;
}

a.representations__border-logo.border-logo {
    width: 50px;
    height: 50px;
}

.representations__info-number {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 1024px) {
    .representations__group-card {
        flex-basis: calc((100% - 16px) / 2);
    }

    .representations__group {
        gap: 17px 16px;
        flex-wrap: wrap;
    }

    .representations__card-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 12px;
    }

    .representations__card-bodies {
        gap: 4px;
        margin-bottom: 12px;
    }

    .representations__head-title {
        flex-basis: 430px;
    }

    .representations__head-country {
        flex-basis: 134px;
        align-items: center;
        justify-content: end;;
    }
}


@media screen and (max-width: 1023.99px) {
    .representations__group {
        flex-direction: column;
        gap: 14px;
    }

    .representations__mobile-column {
        display: flex;
        flex-direction: column-reverse;

    }

    .representations__card-head {
        margin-bottom: 13px;
        display: flex;
        flex-direction: column-reverse;
    }

    .representations__card-bodies {
        gap: 8px;
        margin-bottom: 20px;
    }

    .representations__head-country {
        flex-direction: row-reverse;
        align-items: center;
        justify-content: flex-end;
        margin-bottom: 13px;
    }
}

