.business-copyright-content span {
    color: #B1B1B1;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 14.256px;
    /* 89.102% */
    letter-spacing: -0.132px;
}

.business-copyright-content .icon__ {
    width: 35px;
}

.copyright-content-wrapper {
    padding: 2.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

a {
    text-decoration: none !important;
}

section.copyrights {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-self: end;
    gap: 8px;
    /* padding-top: 12px; */
}

@media (max-width: 993px) {
    section.copyrights {
        justify-self: center;
    }
}

.badge {
    position: absolute;
    top: -35px;
    /* space above logo */
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 4px;
    line-height: 1;
    white-space: nowrap;
    z-index: 2;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

section.copyrights:hover .badge {
    opacity: 1;
    visibility: visible;

}

/* triangle */
section.copyrights:hover .badge::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;

    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}