.section-regulations {
    padding-bottom: 0;
}

.section-regulations_title {
    color: var(--black);
    text-align: center;
    margin-bottom: 16px;
}

.section-regulations_text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--Text-secondary);
    max-width: 564px;
    margin: auto;
    text-align: center;
    margin-bottom: 64px;
}

.tab-button {
    width: fit-content;
    border-radius: 50px;
    border: 1px solid #154C8B;
    background: #113C6E;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    line-height: 100%;
    padding: 8px;
    margin: auto auto 32px;
}

.tab-button .flag {
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.flag.mu {
    background-image: url("../../images/flags/F-mu.svg");
}

.tab-card {
    max-width: 760px;
    border-radius: 12px;
    background: #FAFAFA;
    padding: 64px;
    margin: auto;
}

.tab-card_title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.tab-card_title .flag {
    width: 62px;
    height: 62px;
    border-radius: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.tab-card_title-label {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 4px;
}

.tab-card_title-abbreviation {
    color: #000;
    font-size: 28px;
    font-weight: 600;
    line-height: 110%;
}

.tab-card_description {
    color: #595959;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

@media (max-width: 1199px) {
    .section-regulations_text {
        margin-bottom: 56px;
    }

    .tab-card_title-abbreviation {
        font-size: 24px;
    }

    .tab-card {
        padding: 48px;
    }
}

@media (max-width: 640px) {
    .section-regulations_text {
        margin-bottom: 48px;
    }

    .tab-card {
        padding: 24px;
    }

    .tab-card_title {
        margin-bottom: 24px;
    }

    .tab-card_title .flag {
        width: 56px;
        height: 56px;
    }

    .tab-card_description {
        font-size: 14px;
    }
}