.standard-list {
	display: flex;
	justify-content: center;
	align-items: center;
}

.max-width-900 > .wrapper {
	display: flex;
  flex-wrap: wrap;
  }
  
  .page-list-item  .info {
	  padding: 20px;
		background: #fff;padding: 20px;
		border-bottom-right-radius: 20px;
		  overflow: hidden;
  }
  
  .page-list-item {
	padding: 1%;
	display: flex;
  }
  
  .page-list-item .wrapper {
	  background: #fff;
	  border-radius: 10px;
	  overflow:hidden;
  }
  
 .page-list-item  .image {
	  border-bottom-right-radius: 30px;
	  overflow: hidden;
  }
  
 .page-list-item .image img { 
	  transition: all 0.7s;
  }
  
  .page-list-item .image:hover img {
	  filter:brightness(0.7);
	  transition: all 0.7s;
  }
  
  .page-list-item h3 {
	  font-size: 1.6em;
		font-weight: 700;
  }
  
 .page-list-item h3 a {
	  background: linear-gradient(90deg, rgba(231,69,29,1) 0%, rgba(205,47,60,1) 35%, rgba(170,41,85,1) 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		display: block;
		cursor:pointer;
		transition: all 0.7s;
  }	
  
  .page-list-item h3 a:hover {
	  filter:brightness(0);
	  transition: all 0.7s;
  }
  
  @media screen and (max-width:1080px) {
	  .page-list-item {
		  width: 50% !important;
		}
  }
  
  @media screen and (max-width:700px) {
		.page-list-item {
			width: 100%!important;
			padding-bottom: 30px!important;
		  }
		  
	}