.cert__list-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -0.04em;
    margin: 48px 0 24px;
}

.cert__item {
    margin-bottom: 8px;
}

.cert__item.active{
    box-shadow: 0 1px 3px 0 #0000000D;
    border-radius: 8px;
    border: 1px solid #F0F0F0;
}

.cert-item__name {
    display: flex;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    justify-content: space-between;
    padding: 16px 16px;
    background-color: var(--light-gray);
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
}

.cert-item__name .minus,
.cert-item__name.active .plus {
    display: none;
}

.cert-item__name .plus,
.cert-item__name.active .minus {
    display: flex;
    min-height: 56px;
    min-width: 56px;
    max-height: 56px;
    max-width: 56px;
    align-items: center;
    justify-content: center;
}

.cert-item__name.active .minus {
    display: none !important;
}

.cert-item__name.active {
    background-color: transparent;
    padding: 16px 16px 0px;
}

.cert-item__info {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    padding: 0 16px;
}

.cert-item__info.active {
    padding: 8px 16px 24px;

}

.cert-item__info p {
    font-size: 16px;
    line-height: 24px;
}

.cert-item__info table {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    width: 100%;
}

.cert-item__info table th {
    color: var(--lucky-gray);
    background-color: var(--light-gray);
    text-align: left;

}

.cert-item__info table th,
.cert-item__info table td {
    padding: 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    height: 64px;
    vertical-align: middle;
}

.cert-item__info table tr:not(:last-child) td {
    border-bottom: 1px solid var(--light-gray);
}

.cert-item__info table td span {
    font-size: 12px;
    line-height: 14px;
}

.cert-item__description a {
    color: var(--footer-background);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}