/*badges*/
.badges.large h2 {
    font-size: 36px;
    font-weight: var(--font-bold);
}

.badges.large .badge__image img {
    max-height: 74px;
    height: 74px;
    /*object-fit: cover;*/
    width: auto;
}

.badge__text {
    padding-left: 18px;
}

.badge__text-year, .badge__text-title {
    font-size: 22px;
    font-weight: var(--font-bold);
    line-height: 27px;
}

.card-badge__text-desc {
    font-size: 22px;
    line-height: 27px;
}

.badges .accordion-header {
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
    font-size: 20px;
    color: var(--primary-color);
    padding: 10px;
}

.badges .accordion-header:after, .badges .accordion-header:before {
    position: absolute;
    top: 51%;
    overflow: hidden;
    width: 48%;
    height: 1px;
    content: '\a0';
    background-color: var(--stone-gray-color);
    margin-left: 2%;
}

.badges .accordion-header:before {
    margin-left: -50%;
    text-align: right;
}

.accordion-body {
    padding: 13.5px;
}
.badges .accordion {
    background-color: transparent;
    --bs-accordion-bg: none
}

.badges .accordion-item:last-of-type {
    border: none;
}

.year-title {
    color: var(--wagner-Green-color);
    font-size: 36px;
    font-weight: var(--font-bold);
}

@media screen and (max-width: 992px) {
    .badges.short .badges__title {
        font-size: 20px;
        border-left: none;
    }
}

@media only screen and (max-width: 768px) {
    .card-badge__text-desc,
    .badge__text-year, .badge__text-title {
        font-size: 20px;
        line-height: 20px;
    }

}