/*
** features styles
*/
.features-container {
    background: var(--sec-background);
}
.features .content {
    display: flex;
    justify-content: center;
    position: relative;
}
.features .features-img {
    width: 100%;
    max-width: 550px;
    height: 600px;
    object-fit: cover;
    border-radius: 130px;
}
.features .content .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 252, 255, 0.35);
    backdrop-filter: blur(2px);
    top: 0;
    left: 0;
}
.features-container .features .content .overlay {
    background: rgba(247, 247, 253, 0.35);
}
.features .content .overlay .light-logo {
    width: 150px;
}
.features .content .overlay .list {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    top: 0;
    left: 0;
}
.features .content .overlay .list .feature {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border-radius: 30px;
    padding: 1rem 0.6rem 1rem 1rem;
}
.features .content .overlay .list .feature.first {
    right: 0;
    top: 50px;
}
.features .content .overlay .list .feature.second {
    left: 0;
    top: 150px;
}
.features .content .overlay .list .feature.third {
    right: 0;
    bottom: 150px;
}
.features .content .overlay .list .feature.fourth {
    left: 0;
    bottom: 50px;
}
.features .content .overlay .list .feature .icon {
    background: linear-gradient(180deg, rgba(112, 101, 240, 0.25) 0%, rgba(112, 101, 240, 0.1) 100%);
    border-radius: 32px;
    padding: 1rem;
}
.features .content .overlay .list .feature .title {
    font-size: 18px;
    font-weight: bold;
    line-height: 20px;
    color: var(--text-dark);
}
.features .content .overlay .list .feature .description {
    font-size: 16px;
    line-height: 22px;
    color: var(--gray-dark);
}
.features .content .overlay .list .feature.fifth {
    bottom: -80px;
    right: 50px;
}
/*
** media styles
*/
@media (max-width: 991.98px) {
    .features .content {
        min-height: auto
    }
    .features .content .overlay .list .feature.first {
        right: 0;
        top: 0;
    }
    .features .content .overlay .list .feature.second {
        left: 0;
        top: 166px;
    }
    .features .content .overlay .list .feature.third {
        right: 0;
        bottom: 166px;
    }
    .features .content .overlay .list .feature.fourth {
        left: 0;
        bottom: 0;
    }

        .features .content .overlay .list .feature {
        position:static;
    }
    .features .content .overlay, .features .content .overlay .list {
        position:static;
    }
}
@media (min-width: 1400px) {
    .features .content .overlay .light-logo {
        width: 230px;
    }
}
