/* Department CSS Document */
/*For mobile first adaptive design place styles for mobile and up in the mobile and up area.
Place styles for tablet and up inside the media query in the tablet and up area.
Place styles for desktop only inside the media query in the desktop only area.

For questions or media query training contact Web Development Services.
*/
/* ====================== Mobile and Up ========================== */

/* Height settings */
.height-100-perct {
	height: 100%;
}

/* left border cards */
.left-border-card {
	border-top: none;
    border-left: 0.4525rem solid #c9e5a6;
    box-shadow: 0.0625rem 0.4375rem 1.4375rem rgba(0, 42, 71, 0.225);
	background: white;
    padding: 1.175rem;
	width: 100%;
/* 	transition: transform 0.3s ease-in-out; */
/* 	display: flex; */
}

.left-border-card .h2 {
	text-align: center;
}

.grid-info-card {
	display: grid;
	grid-template-columns: auto auto;
	justify-content: center;
	row-gap: 30px;
	column-gap: 40px;
}

.card-container {
	display: flex;
	justify-content: space-between;
	column-gap: 10px;
}

.card-container .left-border-card {
	flex: 50%
}

.grid-item {
    padding: 8px;
}

.border-card-section {
	padding: 18px;
}

.photo-card {
	display: flex;
	justify-content: space;
}

.link-section {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 10px;
}

.left-border-card .link-section p {
  margin: 0; /* Remove default margin from <p> */
}

.left-border-card .link-section a {
/*   display: block; */
  width: 100%;
/*   text-align: center; */
  padding: 10px;
}

.flex-container > .left-border-card {
    margin-right: 10px; /* Apply the margin between each .left-border-card */
}

/* Remove the right margin from the last .left-border-card to avoid extra spacing */
.flex-container > .left-border-card:last-child {
    margin-right: 0;
}



