.providecontent{
    width:100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top:50px;
    flex-wrap: wrap;
}
.provideitem{
    width: 22%;
    border: solid 1px #d4d4e1;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
    background-color: white;
    margin-bottom: 20px;
}
.provideitem::after{
  content: "";
  height: 100%;
  width: 100%;
  background: #FF3C00;
  position: absolute;
  left: 0;
  bottom: -120%;
  opacity: 0;
  z-index: -1;
  transition: .5s;
}
.provideitem:hover{
    border-radius: 5px;
}
.provideitem:hover::after{
  opacity: 1;
  bottom: 0;
}

.provitemimg{
    margin: 40px auto 15px;
}
.provitemtitle{
    color: #232323;
    font-family: 'Fira Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin: 5px 0 25px;
    transition: .5s;
}
.provitemdesc{
    font-family: 'Rubik', sans-serif;
    color: #6d6d6d;
    font-size: 16px;
    line-height:1.5;
    padding: 0 15px 20px;
    min-height:180px;
    transition: .5s;
}
.provideitem:hover .provitemtitle,
.provideitem:hover .provitemdesc{
    color: #fff;
}

@media screen and (max-width: 990px) {
    .provideitem{
        width:48%;
    }
}
@media screen and (max-width: 600px) {
    .provideitem{
        width:100%;
    }
}