/* 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 ========================== */
h1,
h2 {
	font-weight: 600;
}
.accordion:not(.accordion-unstyled) {
	padding: 10px;
}
.accordion-content td {
	vertical-align: top !important;
}
.contained {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
}

/* HALF IMAGE HALF CONTENT BANNER */
.half-banner {
	margin-right: -15px;
	margin-left: -15px;
}
.banner-content {
	padding: 40px 15px;
}
.banner-img img {
	max-height: 300px;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

/* ADD OVERLAY TO HERO IMAGES */
.fullbleed::before {
	background: linear-gradient(to bottom, #000000b3, #000000b3);
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.5;
	z-index: 0;
}

/* TAB NAVIGATION STYLING - CURRENTLY IN USE ON THE MECHATRONICS STUDENT WORK PAGE */
div.student-projects {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto;
	gap: 30px;
}
div.student-projects iframe {
	width: 100%;
}
ul.tabs {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	border-bottom: 3px solid #275d38;
}
ul.tabs li {
	margin: 0;
	width: 25%;
	max-width: 200px;
}
ul.tabs li a.anchorTab {
	display: block;
	padding: 10px;
	width: 100%;
	text-align: center;
	border-radius: 10px 10px 0 0;
	border: 2px solid #275d38;
	border-bottom: none;
	font-weight: 600;
	font-family: 'Rajdhani', sans-serif;
	font-size: 18px;
	transition: 0.6s;
}
ul.tabs li a.anchorTab.active {
	background-color: #275d38;
	color: white;
}
ul.tabs li a.anchorTab:hover {
	text-decoration: none;
	background-color: #dcdcdd;
	color: #275d38;
}


/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	div.student-projects {
		grid-template-columns: 1fr 1fr;
	}
}

/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	.half-banner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		max-height: 375px;
	}
	.banner-img {
		height: 100%;
	}
	.banner-img img {
		max-height: 375px;
	}
	div.student-projects {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	.half-banner {
		justify-content: end;
		max-height: 350px;
	}
	.banner-content {
		max-width: 600px;
		justify-self: end;
	}
	.banner-img img {
		max-height: 350px;
	}
}

/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/