#features {
	padding-top: 60px;
	padding-bottom: 50px;
  }
  
  .features .features-content {
	z-index: 2;
	position: relative;
	background-color: #fff;
	border-radius: 50px;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  }
  
  .features-item {
	text-align: center;
	padding: 50px;
	width: auto;
	border-radius: 50px;
	background: rgb(255,255,255);
	background: linear-gradient(105deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 100%);
	transition: background-color .5s;
	-webkit-transition: background-color .5s;
	-o-transition: background-color .5s;
	-moz-transition: background-color .5s;
  }
  
  .features-item:hover {
	background: rgb(51,204,197);
	background: linear-gradient(105deg, rgba(51,204,197,1) 0%, rgba(8,141,195,1) 100%);
	height: fit-content;
  }
  @media only screen and (max-width: 767px) {
	.features-item:hover {
		background: rgb(51,204,197);
		background: linear-gradient(105deg, rgba(51,204,197,1) 0%, rgba(8,141,195,1) 100%);
		height: fit-content;
	  }
}
  
  .features-item:hover h4 {
	color: #fff;
  }
  
  .features-item .number h6 {
	background-repeat: no-repeat;
	width: 110px;
	height: 69px;
	color: #fff;
	margin-left: auto;
	margin-right: auto;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	line-height: 69px;
	margin-top: -65px;
	margin-bottom: 30px;
  }
  
  .features-item .first-number h6 {
	background-image: url(../images/design-supply/features-number-01.png);
  }
  
  .features-item h4 {
	margin-left: 15px;
	margin-right: 15px;
	margin-top: 30px;
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
	color: #2a2a2a;
	position: relative;
	transition: all 0.5s;
  }
  