
.service{
  background: #101010;
  width: 100%;
  padding: 40px 0;
}
.title{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.title h2{
  font-size: 75px;
  width: 1130px;
  max-width: 100%;
  margin: 30px auto;
  text-transform: capitalize;
  text-align: center;
  background-image: linear-gradient(to top, rgb(255, 200, 200) 0%,
  #ff84ab 20%, #ff5b8f 50%,
  #ff2067 70%, #f9004d 100%);
  -Webkit-background-clip: text;
  -moz-background-clip:text ;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  background-size: 100%;
}
.box{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  flex-wrap: wrap;
}
.card{
  height: 365px;
  width: 335px;
  padding: 20px 35px;
  background: #191919;
  border-radius: 20px;
  margin: 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border: solid 2px rgb(245, 245, 245);
}
.card:hover{
  transform: scale(1.065);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.card i{
  font-size: 50px;
  display: block;
  text-align: center;
  margin: 25px 0;
  color: #f9004d;
}
h5{
  color: white;
  font-size: 23px;
  margin-bottom: 15px;
}
.pra p{
  color: #fcfc;
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 25px;
}
.card .button{
  background-color: #f9004d;
  color: white;
  text-decoration: none;
  border: 2px solid transparent;
  font-weight: bold;
  padding: 9px 22px ;
  border-radius: 30px;
}
.card .button:hover{
  transition: all 0.3s ease;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid #f9004d;
}