.c-item {
    height: 550px;
}

.c-img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);

}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: .75rem;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.card-img-top {
    height: 200px;
    width: 100%;
}

.card {
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.card:hover {
    color: white;
}

.card::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0%;
    background: #474af0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: -1;
}

.card:hover::before {
    left: 0%;
}

.content-5 {
    background-color: #131212;
}

.footer {
    margin-top: 8%;
}

.footer a {
    text-decoration: none;
    color: #bfbdbd;
    padding: 2%;
}