.fundamentals_sect {
    padding: 1.25em 0;
}
.fundamentals_sect .items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fundamentals_sect .item {
    display: flex;
    align-items: center;
    position: relative;
    color: #1E1E1E;
}
.fundamentals_sect .item_icon {
    max-height: 3.25em;
    display: block;
}
.fundamentals_sect .item_icon:not(:last-child) {
    margin-right: 1.25em;
}
.fundamentals_sect .item_label {
    font-weight: 600;
    text-transform: uppercase;
}
.fundamentals_sect .circle {
    width: 0.5em;
    min-width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    background-color: #1E1E1E;
    margin: 0 1.25em;
}
.fundamentals_sect .equal {
    background-image: url(../img/fundamentals-sect/last-before.svg);
    height: 0.5em;
    width: 1.25em;
    min-width: 1.25em;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 1.25em;
}



.fundamentals_sect .fundamentals_info_wrap {
    position: absolute;
    top: -0.5em;
    right: -0.5em;
    z-index: 1;
}
.fundamentals_sect .fundamentals_info_open {
    max-width: 1em;
    max-height: 1em;
    cursor: pointer;
}
.fundamentals_sect .fundamentals_info {
    position: absolute;
    top: 50%;
    left: calc(100% + 0.5em);
    border-radius: 0.5em;
    padding: 0.5em 0.75em;
    box-sizing: border-box;
    width: max-content;
    max-width: 10em;
    font-weight: 600;
    transform: translate(-1em, -50%);
    background-color: #F2F4F7;
    border: 1px solid #E5E7EB;
    opacity: 0;
    visibility: hidden;
    transition-property: transform, visibility, opacity;
    transition-duration: 0.3s;
}
.fundamentals_sect .fundamentals_info.opened {
    transform: translate(0, -50%);
    opacity: 1;
    visibility: visible;
}
.fundamentals_sect .fundamentals_info_text {
    font-size: 0.75em;
}



@media(max-width: 1199px) {
    .fundamentals_sect .item_icon {
        max-height: 2.5em;
    }
    .fundamentals_sect .item_icon:not(:last-child) {
        margin-right: 0.5em;
    }
    .fundamentals_sect .item_label {
        font-size: 0.75em;
    }
    .fundamentals_sect .circle,
    .fundamentals_sect .equal {
        margin: 0 0.5em;
    }
}
@media(max-width: 767px) {
    .fundamentals_sect .items {
        flex-direction: column;
    }
    .fundamentals_sect .item_icon {
        max-height: 3.25em;
    }
    .fundamentals_sect .circle,
    .fundamentals_sect .equal {
        margin: 0.5em 0;
    }
}