.view-convenios-con-beneficios{
	.view-content{
		display: flex;
		flex-wrap: wrap;
		gap: 2rem;
		h3{
			width: 100%;
			display: flex;
			align-items: center;
			gap: 2rem;
		}
		.views-row{
			border: 1px solid gray;
			border-radius: 5px;
			padding: 3rem;
      background-image: url(https://www.unizar.es/sites/www/files/imagenes/bg-3.png);
      background-repeat: no-repeat;
      background-position: left top -1.7rem;
      background-size: 180px;
      position: relative;
      transition: all 0.2s;
      &:before{
      	content: "";
      	position: absolute;
        background: #5b89b4;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        opacity: 0;
  			transition: opacity 0.3s ease;
      }
      &:hover a{
      	color: white!important;
      }
      &:hover::before {
  			opacity: 1;
			}
		}
	}
}