.x-duotone-home {
    .uabb-dual-color-heading {
        h2 {
            span {
                display: inline;
                letter-spacing: var(--letter-spacing);
                font-size: 35px;
                &.uabb-after-heading-text {
                    text-underline-offset: 5px;
                }
            }
        }
    }
}

.x-banner-hover {
    .x-banner-hover-box {
        /* display: none; */
        visibility: hidden;
        height: 0;
        opacity: 0;
        transition: 0.2s all ease-in-out;

        .x-banner-hover:hover & {
            visibility: visible;
            opacity: 1;
            height: auto;
        }
    }

    .c-title {
        position: relative;
        transition: 0.2s all ease-in-out;
    }
}

.x-50-bg-blur {
    position: relative;

    .fl-row-content-wrap {
        &:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            backdrop-filter: blur(35px);
            background: #FFFFFF26;

            @media (max-width: 992px) {
                width: 100%;
            }
        }
    }
}