.home-feature-container {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto;
    margin-top: 0 auto !important;
    width: 100%;
    gap: 20px;
    padding: 4px;
}


.feature-item .card {
    background-image: url('../image/coin-image1.png');
    background-size: cover;
}

.feature-item a:hover .card-title h6 {
    color: var(--bs-secondary);
}

.feature-item {
    position: relative;
}

.feature-item .card-title {
    position: absolute;
    color: var(--bs-white);
    z-index: 99;
    width: 100%;
    left: 50%;
    bottom: 7px;
    transform: translateX(-50%);
}

.feature-item .card:after {
    content: "";
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: rgb(33 41 87 / 47%);
    background-image: linear-gradient(to top, var(--bs-primary), transparent);
    transition: all 0.5s ease;
}

.product-item.card {
    background-color: var(--table-background);
    border-radius: 20px 20px 0 0;
}

.product-item .card-footer {
    background-color: var(--bs-primary);
}

.product-item .card-footer>.arrow-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: var(--bs-white);
    font-weight: 600;
}

.product-item .card-footer>.arrow-actions i {
    cursor: pointer;
}

.product-action {
    margin-top: 10px;
}

.protect-text {
    font-style: italic;
}

.protect.card {
    border: 1px solid var(--bs-secondary);
}

.protect.card .card-img {
    width: 200px;
}

.carousel-control-next,
.carousel-control-prev {
    position: relative;
    opacity: 1;
}


@media only screen and (max-width: 394px) {
    .home-feature-container {
        grid-template-columns: auto !important;
    }
    .protect.card .card-img {
        width: 100px;
    }

}

@media only screen and (min-width: 395px) and  (max-width: 594px) {
    .home-feature-container {
        grid-template-columns: auto auto !important;
    }

    .protect.card .card-img {
        width: 100%;
        display: block;
    }
}


@media only screen and (min-width: 595px) and (max-width:972px) {
    .home-feature-container {
        grid-template-columns:auto auto auto !important;
    }
}

@media only screen and (max-width:1199px) {
    .home-feature-container {
        grid-template-columns: auto auto auto auto auto auto;
    }
}


