.features {
    padding: 5rem 0;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover
}

.features .head-sec h3 {
    text-align: center;
    color: var(--white-color);
}

.features .head-sec .description {
    color: var(--white-color);
}

.features .cont {
    margin-top: 80px;
    margin-bottom: 55px;
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
    justify-items: flex-end;
    align-items: stretch;
    gap: .8rem
}

.features .cont .box {
    width: 100%;
    padding: 1rem;
    background-color: #fff;
    position: relative;
    text-align: center;
    border-radius: .5rem;
    transition: all .3s ease-in-out
}

.features .cont .box span {
    display: inline-block;
    margin-bottom: 1rem
}

.features .cont .box h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1b072c
}

.features .cont .box p {
    color: #766e7d;
    font-size: .9rem
}

.features .cont .box .icon {
    border-radius: 50%;
    box-shadow: 0 0 10px -2px #8725de
}

.features .cont .box .icon img {
    width: 65px;
    height: 65px;
}

.features .cont .box:hover {
    cursor: pointer;
    background-color: #8e1699
}

.features .cont .box:hover h4, .features .cont .box:hover p {
    color: #fff
}

.features .btn {
    margin: 0 auto
}

@media (min-width: 992px) and (max-width: 1250.99px) {
    .features .cont {
        display: grid;
        grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
        justify-items: center;
        align-items: stretch;
        gap: .5rem
    }
}

@media (min-width: 1400px) {
    .features .cont {
        display: grid;
        grid-template-columns:repeat(auto-fill, minmax(19%, 1fr));
        justify-items: center;
        align-items: stretch;
        gap: .5rem
    }
}
