:root {
    --primary-color: #ffffff;
    --secondary-color: #ffffff0f;
    --bg-color: #181422;
    --text-color: #ffffff;
    --accent-color: #e79d42;
    /* --accent-secondary-color	: #725DA7; */
    --accent-secondary-color: #ae381b;
    --white-color: #ffffff;
    --divider-color: #ffffff0f;
    --dark-divider-color: #ffffff1a;
    --error-color: rgb(230, 87, 87);
    --default-font: "Sora", sans-serif;
  }


.bg-gry{
    background-color: linear-gradient(to right, #0f2027, #203a43, #2c5364);
}
.feature-item{
    /* background-color: #fff; */
    background:var(--secondary-color);
    /* padding: 30px; */
    padding:16px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: .5s;
    border-radius: 20px;
}

.feature-item::before{
    content: "";
    position: absolute;
    /* top: -142px; */
    top: -100px;
    left: 0;
    right: 0;
    margin: auto;
    width: 95%;
    height: 70%;
    /* background-color: #fdebeb; */
    background:linear-gradient(to right, #0f2027, #203a43, #2c5364);
    border-radius: 50%;
}

.feature-item .ft-icon{position: relative;}

.feature-item .ft-icon i {
    /* color: #2c5364;
    background-color: #fff; */
    height: 60px;
    width: 100px;
    line-height: 97px;
    border-radius: 50%;
    font-size: 31px;
    transition: .5s;
}

.finix-text h6 {
    color: #e73d40;
    font-size: 18px;
    font-weight: 400;
}
.finix-text h2 {
    font-size: 37px;
    font-weight: 400;
}
.finix-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #606060;
    font-weight: 400;
    font-size: 16px;
}

.feature-item:hover{
    transform: translateY(-10px);
}
.feature-item:hover .ft-icon i {
    /* background-color:#e73d40; */
    /* background:linear-gradient(
        to right,
        var(--accent-color) 0%,
        var(--accent-secondary-color) 50%,
        var(--accent-color) 100%
      ); */
    /* background-size:200% auto; */
    color: #fff;
}

.top-4{
    margin-top: -30px;
}
.finix-text{
    position: relative;
}

@keyframes playbtn{
    0%,30%{
        transform: scale(0);
        opacity: 1;
    }
    
    50%{
        transform: scale(1.5);
        opacity: .7;
    }
    100%{
        transform: scale(2);
        opacity: 0;
    }
}
