.sifency-il-bg-container,
.sifency-il-bg-item,
.sifency-il-bg-overlay {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.sifency-il-wrapper {
    position: relative;
    width: 100%
}

.sifency-il-list {
    position: relative;
    z-index: 5;
    width: 100%
}

.sifency-il-item {
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    text-decoration: none;
    transition: .3s
}

.sifency-il-layout-background .sifency-il-item,
.sifency-il-layout-split .sifency-il-item {
    display: flex
}

.sifency-il-title {
    margin: 0;
    transition: color .3s;
    position: relative;
    width: fit-content;
}

.sifency-il-title span {
    display: inline-block;
    position: relative;
}

.sifency-il-title span::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.165, .84, .44, 1);
    max-width: 100%
}

.sifency-il-title.text_underline_animation:hover span::after {
    transform: scaleX(1);
    transform-origin: right
}

.sifency-il-sub {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
    display: block
}

.sifency-il-icon {
    font-size: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: .3s
}

.sifency-il-item.active .sifency-il-icon,
.sifency-il-item:hover .sifency-il-icon {
    opacity: 1;
    transform: translateX(0)
}

.sifency-il-layout-center {
    display: flex;
    align-items: center;
    justify-content: center
}

@media screen and (min-width: 576px) {
    .sifency-il-layout-center .sifency-il-list {
        width: 40%;
        margin: 0 auto
    }
}

.sifency-il-side-img {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center
}

.sifency-il-side-img.left {
    left: 0
}

.sifency-il-side-img.right {
    right: 0
}

.sifency-il-abs-img {
    position: absolute;
    object-fit: cover;
    opacity: 0;
    transform: scale(.9);
    transition: opacity .4s, transform .4s;
    width: 100%;
    height: 100%
}

.sifency-il-abs-img.active {
    opacity: 1;
    transform: scale(1)
}

.sifency-il-layout-background {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow: hidden
}

.sifency-il-bg-container {
    position: absolute;
    z-index: 1
}

.sifency-il-bg-item {
    position: absolute;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .5s
}

.sifency-il-bg-item.active {
    opacity: 1
}

.sifency-il-bg-overlay {
    position: absolute;
    z-index: 2
}

.sifency-il-layout-background .sifency-il-list {
    width: 60%;
    z-index: 10
}

.sifency-il-layout-background .sifency-il-icon,
.sifency-il-layout-background .sifency-il-sub,
.sifency-il-layout-background .sifency-il-title {
    color: var(--sifency-addons-whitecolor)
}

.sifency-il-layout-split {
    display: flex;
    gap: 30px;
    align-items: center;
    min-height: 500px
}

.sifency-il-layout-split .sifency-il-list {
    flex: 1
}

.sifency-il-split-img-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px
}

.sifency-il-split-target {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .4s;
    display: block
}