.section3{
	width: 70%;
	height: 100%;
	margin-top: 5%;
	margin-left: 15%;
}

.section3{
	color: #081467;
}

.section3-cont{
	width: 100%;
    margin-top: 2%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
	gap: 40px;
}

.section3-card{
	width: 100%;
	height: 100%;
}

.section3-card img{
	width: 100%;
	height: 300px;
}
.section3-card span{
	display: flex;
	margin-top: 1%;
}
.section3-card span .fa-calendar-days{
	color: #5f5d5e;
	font-size: 18px;
	margin-top: 0.5%;
}
.section3-card span h2{
	font-size: 18px;
	font-weight: 600;
	margin-left: 1.5%;
	width: 100%;
	color: #fc9306;
}

.section3-card h3{
	color: #081468;
	margin-top: 0.5%;
}

.section3-card p{
	margin-top: 1%;
	color: black;
}

.section3-card a{
	display: inline-block;
	text-decoration: none;
	position: absolute;
	margin-top: 1%;
	margin-left: 0.5%;
	color: black;
	font-size: 18px;
	font-weight: 500;
	color: #081468;
}

.section3-card a .fa-arrow-right{
	font-size: 16px;
}

.section3-card a:hover{
	color: #fc9306;
}

.section3-card a::after{
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fc9306;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.section3-card a:hover::after{
  transform: scaleX(1);
  transform-origin: bottom left;
}

.section3-blank{
	width: 100%;
	height: 100px;
}