.bracket-img__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bracket-img {
    position: relative;
    width: 525px;
    height: 420px;
}

.bracket-img img {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 40px;
}

.bracket-img svg {
    position: absolute;
    left: 0;
    bottom: 0;
}

.bracket-img svg path {
    pointer-events: none;
}




.bracket-popover {
    display: inline-block;
    /* cursor: help; */
    position: absolute;
    /* margin-bottom: 20px; */
}

.bracket-popover .popover {
    /* display: none; */
    /* position: absolute; */
    /* left: calc(100% + 12px);
    top: -61px; */
    padding: 15px 20px;
    border-radius: 10px;
    background: #F4F4F4;
    width: 322px;
    z-index: 3;
}

.bracket-popover .popover p {
    color: #4B4B4B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.bracket-popover .popover .title {
    color: #1E1E1E;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 5px;
}

.bracket-popover .popover p:last-child {
    margin-bottom: 0;
}

.bracket-popover .popover p strong {
    display: block;
    font-weight: 600;
}

.bracket-popover .popover.left svg {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.bracket-popover .popover.right svg {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}

.bracket-popover:hover .popover {
    display: block;
}

.types-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 40px;
}

.types-list__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 357px;
    height: 190px;
    border-radius: 2px;
    border: 1px solid var(--black-20, #D2D2D2);
    padding: 15px 20px;
    /* margin: 0 20px 20px 0; */
}

.types-list__item .top .number {
    color: #036;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px;
}

.types-list__item .top .text {
    color: #4B4B4B;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.types-list__item .bottom {
    color: #036;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.types .blockquotes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.types .blockquotes .item {
    padding-left: 15px;
    max-width: 505px;
    position: relative;

    color: #1E1E1E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.types .blockquotes .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #036;
    width: 5px;
    height: 100%;
}