/*Begin Announcments Cards- OVPR IT Landing Page CSS*/
 .flex-center-wrap{
	 display: flex;
	 flex-wrap: wrap;
	 justify-content: space-around;
}
 .flex-center-wrap > a:hover {
	 text-decoration: none;
}
 .margin-bottom{
	 margin-bottom: 5%;
}
 .cardItem{
	 background-color: var(--white);
	 display: flex;
	 flex-direction: column;
	 width: 545px;
	 height: auto;
	 border-radius: 5px;
	 box-shadow: 0px 0px 10px 4px rgba(0,0,0,0.3);
	 margin-bottom: 10px;
	 padding-bottom: 2%;
}
 .cardImage{
	 width: 545px;
	/* width of container */
	 height: 300px;
	/* height of container */
	 object-fit: cover;
	 object-position: 20% 40%;
	 border-radius: 5px 5px 0px 0px;
	 margin-bottom: 10px;
}
 .cardTitle, .cardText {
	 color: var(--black);
	 padding: 0 10px;
}
 .cardText{
	 line-height: 1.5em;
}
 .info{
	 color: var(--black);
	 font-size: 1em;
	 padding: 0 10px;
	 bottom: 10px;
}
/*End Announcments Cards*/