.finaid_container {
            display: flex;
            justify-content: space-around;
            padding: 10px;
            flex-wrap: wrap;
}


.finaid_card {
	background-color: #ecf0f1;
	border: 1px solid #ddd;
	border-radius: 8px;
	width: 30%;
	margin: 10px;
	text-align: left;
	padding: 20px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	transition: transform 0.2s;
}
.finaid_card h3{
	text-align: center;
}

.finaid_card p {
    font-size: 0.9em; /* Decrease font size of <p> elements */
}

.finaid_card li {
    font-size: 0.9em; /* Decrease font size of <p> elements */
}

.finaid_card:hover {
	transform: translateY(-10px);
}

.finaid_icon {
	
	margin-bottom: 15px;
	text-align: center;
}
.finaid_video_player{
	width: 100%;
	height: 500px;
}
@media (max-width: 768px) {
	.finaid_card {
		width: 80%;
	}
	.finaid_video_player{
		width: 100%;
		height: 250px;
	}
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 40
}

