:root {
	--primary-blue: #004B98;
	--dark-blue: #0A2240;
	--light-blue: #3DB5E6;
	--white: #ffffff;
	--black: #000000;
	--red: #E1261C;
	--green: #76bc21;
	--gray: #C8C8C8;
	--light-gray: #eeeeee;
	--green: #76bc21;
}

/* Reset */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	max-width: 100vw;
	font-family: "Gotham SSm A", "Gotham SSm B", Verdana, Geneva, Tahoma, sans-serif;
}
em {
	font-family: "verdana", sans-serif;
}
/* Standard Classes */
body.no-scroll {
	height: 100vh;
	overflow: hidden;
}

img {
	object-fit: contain;
}

.columns {
	margin: 0;
}

.columns:not(:last-child) {
	margin: 0;
}
/* Typography */
p,
i,
strong,
b,
input {
	font-family: "Gotham SSm A", "Gotham SSm B", Verdana, Geneva, Tahoma, sans-serif;
	font-size: 1rem;
	letter-spacing: 1px;
	line-height: 24px;
	font-weight: 200;
}

ul {
	margin-left: 20px;
	text-align: left;
}

ul li {
	list-style-type: disc;
}

h1,
h3,
h5 {
	font-family: clarendon-text-pro, serif;
}

h2,
h4,
h6 {
	font-family: "Gotham SSm A", "Gotham SSm B", Verdana, Geneva, Tahoma, sans-serif;
}

h1 {
	font-size: 2rem;
}

h2 {
	font-size: 1.25rem;
}

h3 {
	font-size: 1.25rem;
}

h4 {
	font-size: 1.15rem;
}

h5 {
	font-size: 1.15rem;
}

h6 {
	font-size: 1rem;
}

a {
	font-family: "Gotham SSm A", "Gotham SSm B", Verdana, Geneva, Tahoma, sans-serif;
	font-size: 1rem;
	font-weight: bold;
	position: relative;
}

/*effect-underline*/
a:after {
	content: '';
	position: absolute;
	left: 0;
	display: inline-block;
	height: 1em;
	width: 100%;
	border-bottom: 1px solid;
	margin-top: 10px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

<!--a:hover:after {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}-->

select option {
	color: var(--black);
}

.select-arrow {
	margin: 0 0 0 -40px !important;
	color: var(--black);
	font-size: 1rem;
	pointer-events: none;
}

.capitalize {
	text-transform: capitalize;
}

.uppercase {
	text-transform: uppercase;
}

.text-center {
	text-align: center;
}

.bold, strong {
	font-weight: bold;
}

.full-width {
	width: 100%;
}

.italic, i {
	text-emphasis: oblique;
}

.m15 {
	margin: 1em;
}

.m25 {
	margin: 1.5em;
}

.mb15{
	margin-bottom: 1rem;
}

.mt15 {
	margin-top: 1rem;
}

.mb25 {
	margin-bottom: 1.5rem;
}

.mt25{
	margin-top: 1.5rem;
}

.w80 {
	width: 80%;
}

.w75 {
	width: 75%;
}

.w50 {
	width: 50%;
}

.w25 {
	width: 25%;
}

.h100 {
	height: 100%;
}

.z5 {
	z-index: 5;
	position: relative;
}

.white-text {
	color: var(--white) !important;
}

.lightBlue-text {
	color: #3DB5E6;
}

.blue-text {
	color: #004B98;
}

.darkBlue-text {
	color: #0A2240;
}

.red-text {
	color: #E1261C;
}

.black-text {
	color: var(--black);
}

.green-text {
	color: var(--green);
}

.gray-text {
	color: var(--gray);
}

.lightgray-text {
	color: var(--light-gray);
}

.slant {
	clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
}

.fas {
	display: inline-flex !important;
	justify-content: center;
	align-items: center;
	margin: -1px 0 0 1px;
}

.fas:hover:after {
	opacity: 0 !important;
}

.fa-info-circle {
	padding: 0 15px 0 0;
}

#de:hover:after {
	opacity: 0 !important;
}
/* Forms */

@media screen and (min-width: 768px) {
	p,
	i,
	strong,
	b {
		font-size: 1.4rem;
		line-height: 32px;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.4rem;
	}

	h3 {
		font-size: 1.4rem;
	}

	h4 {
		font-size: 1.2rem;
	}

	h5 {
		font-size: 1.2rem;
	}

	h6 {
		font-size: 1.1rem;
	}
}
@media screen and (min-width: 1200px) {
	p,
	i,
	strong,
	b {
		font-size: 1rem;
		line-height: 24px;
	}

	h1 {
		font-size: 3rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	h3 {
		font-size: 1.75rem;
	}

	h4 {
		font-size: 1.45rem;
	}

	h5 {
		font-size: 1.45rem;
	}

	h6 {
		font-size: 1.25rem;
	}
}
/* Buttons */
div[class*=buttons] {
	margin: 5% 0;
}

a[class*=light-blue__button] {
	background-color: #3DB5E6;
	color: var(--black);
}

a[class*=light-blue__button]:hover {
	background-color: #E1261C;
	color: var(--white);
}

a[class*=red__button] {
	background-color: #E1261C;
	color: var(--white);
	border: 1px solid var(--white);
}

a[class*=red__button]:hover {
	background-color: var(--white);
	color: #E1261C;
	border: none;
}

a[class*=green__button] {
	background-color: var(--green);
	color: var(--black);
}

a[class*=green__button]:hover {
	background-color: #E1261C;
	color: var(--white);
}

a[class*=button] {
	font-size: 0.75rem;
	text-decoration: none;
	text-transform: uppercase;
	padding: 15px 25px;
	border-radius: 50px;
	margin: 15px 5% 5% 0;
	display: inline-flex;
	align-items: center;
}

a[class*=button] i {
	margin: 0 0 0 10px;
}

a[class*=button]:hover:after {
	opacity: 0 !important;
}
.button-link {
	position: relative;
	overflow: hidden;
}

.button-link img {
	display: block;
	width: 100%;
	height: auto; /* Adjust height to maintain aspect ratio */
	object-fit: cover;
	transition: transform 0.3s ease-out;
}

.button-link h3 {
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 0;
	font-size: 1.3rem;
	padding: 10px 30px 10px 20px; /* add padding for the arrow icon */
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	width: calc(100% - 15px); /* subtract padding for the arrow icon */
	z-index: 1;
	transform: translateY(0%);
	transition: transform 0.3s ease-out;
}

.button-link .overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex; /* Add this line */
	align-items: center; /* Add this line */
	justify-content: center; /* Add this line */
	padding: 15px;
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	opacity: 0;
	transition: opacity 0.3s ease-out, transform 0.3s ease-out;
	transform: translateY(100%);
}
.button-link .overlay p {
	text-align: center;
	font-size: 1vw;
	line-height: 2.5vh;
}
.button-link .arrow {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	width: 15px;
	height: 15px;
	border-top: 4px solid #3db5e6;
	border-right: 4px solid #3db5e6;
	transition: transform 0.3s ease-out;
}

@media screen and (max-width: 1300px) {
	.button-link .overlay {
		display: none; /* Keep this to remove the hover effect */
	}
	.button-link img {
		display: block; /* Ensure image is always shown */
	}
	.button-link h3 {
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	}
}

.button-link:hover .overlay {
	opacity: 1;
	transform: translateY(0%);
}

.button-link:hover .arrow {
	transform: translateY(-50%) rotate(45deg);
}

/* Backgrounds */
[class*=-background] {
	padding: 2.5% 7.5%;
}

.blue-background {
	background: #004B98;
	color: var(--white);
}

.dark-background {
	background: #0A2240;
	color: var(--white);
}

.light-background {
	background: var(--light-blue);
	color: var(--black);
}

.white-background {
	background: var(--white);
	color: var(--black);
}

.red-background {
	background: #E1261C;
	color: var(--white);
}

.gray-background {
	background: #C8C8C8;
	color: var(--black);
}

.lightgray-background {
	background: var(--light-gray);
	color: var(--black);
}

.green-background {
	background: var(--green);
	color: var(--black);
}

.gradient-background {
	background: #004b98;
	background: radial-gradient(circle, #004b98 0%, #0a2240 100%);
	color: var(--white);
}

.waves-background {
	position: relative;
}

.waves-background::before {
	content: "";
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-image: url(https://www.etown.edu/etcsandbox/kyle-test/images/images-cca/homepage-stats-lineart-wave1.png);
	background-size: cover;
	background-position: bottom;
	opacity: .3;
}

.lines-background {
	position: relative;
}
.lines-background::before {
	content: "";
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-image: url(https://www.etown.edu/etcsandbox/kyle-test/images/images-cca/homepage-news-lineart.png);
	background-size: cover;
	background-position: center;
	opacity: .3;
}

.grid-background {
	position: relative;
}
.grid-background::before {
	content: "";
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-image: url(https://www.etown.edu/etcsandbox/zach-test/blueprint/images/grid-background.png);
	background-size: cover;
	background-position: center;
	opacity: .3;
}

.prism-background {
	position: relative;
}

.prism-background::before {
	content: "";
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-image: url(https://www.etown.edu/images/cca_images/prism-blues.png);
	background-repeat: no-repeat;
	background-size: cover;
	transform: scale(-1);
	opacity: .3;
}

@media screen and (min-width: 768px) {
	div[class*=-background] {
		padding: 3.5% 10%;
	}
}

.lines-background {
	position: relative;
}
.lines-background::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("https://www.etown.edu/etcsandbox/kyle-test/images/images-cca/homepage-news-lineart.png");
	background-size: contain;
	opacity: .3;
}



.flex-column {
	flex-direction: column;
}

.center-start {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.center-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.center-end {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.start-start {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.start-center {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.start-end {
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
}

.around-start {
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
}

.around-center {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.around-end {
	display: flex;
	justify-content: space-around;
	align-items: flex-end;
}

/* Start Footer Code */
footer#main-footer {
	color: var(--white);
	width: 100vw;
	min-height: 40vh;
	background: #0A2240;
	padding: 5% 7%;
	position: relative;
}

footer#main-footer .container {
	position: initial !important;
}

footer#main-footer .BigE {
	position: absolute;
	right: 0px;
	top: 0px;
	height: 100%;
	width: auto;
	object-fit: cover;
}

footer#main-footer .select-arrow {
	visibility: visibile;
}

footer#main-footer li {
	list-style-type: none;
	z-index: 2;
	position: relative;
}
footer#main-footer li a {
	color: var(--white);
	text-decoration: none;
	z-index: 2;
	position: relative;
}
footer#main-footer .logo-contact {
	z-index: 2;
	position: relative;
}
footer#main-footer .logo-contact img {
	margin: 10% 0 0 0;
	width: 60%;
}
footer#main-footer .logo-contact .contact {
	margin: 7% 7% 0 0;
}
footer#main-footer .logo-contact .social {
	margin: 7% 0 0 0;
}
footer#main-footer .logo-contact .social .icons {
	display: flex;
	margin: 25px 0 0 0;
}
footer#main-footer .logo-contact .social .icons a {
	width: 9%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 20px 0 0;
}
footer#main-footer .logo-contact .social .icons a .social_icon {
	width: 100%;
}
footer#main-footer .resources {
	z-index: 2;
	position: relative;
}
footer#main-footer .resources h6 {
	text-transform: uppercase;
	margin: 7% 0 3%;
	z-index: 2;
	position: relative;
}
footer#main-footer .resources .resource-links {
	display: none;
	z-index: 2;
	position: relative;
}
footer#main-footer .resources #additional-resources {
	width: 60%;
	padding: 3% 2%;
}
footer#main-footer .disclaimer {
	margin: 7% 0 0;
}
footer#main-footer .disclaimer li,
footer#main-footer .disclaimer p {
	margin: 2% 0;
}

@media screen and (min-width: 1200px) {
	footer#main-footer .select-arrow {
		visibility: hidden;
	}
	footer#main-footer .logo-contact img {
		width: 35%;
		margin: 0;
	}
	footer#main-footer .connect {
		margin: 50px 0 0 0;
		display: flex;
		justify-content: space-between;
	}
	footer#main-footer .connect .contact {
		margin: 0;
	}
	footer#main-footer .resources h6 {
		margin: 3% 0;
	}
	footer#main-footer .resources #additional-resources {
		display: none;
	}
	footer#main-footer .resources .resource-links {
		display: flex;
		width: 100%;
		justify-content: space-between;
	}
	footer#main-footer .resources .resource-links ul li {
		margin: 0 0 15px 0;
	}
	footer#main-footer .resources .resource-links ul li a {
		font-size: 1.5rem;
		font-weight: 400;
	}
	footer#main-footer .disclaimer ul {
		display: flex;
		flex-wrap: wrap;
	}
	footer#main-footer .disclaimer ul li {
		margin-right: 15px;
		font-size: 2rem;
	}
}
@media screen and (min-width: 1200px) {
	footer#main-footer {
		display: flex;
		padding: 5% 5% 0 5%;
		flex-wrap: wrap;
		align-items: flex-end;
	}
	footer#main-footer:after {
		width: 25%;
		height: 100%;
		right: -5%;
	}
	footer#main-footer .logo-contact {
		width: 30%;
	}
	footer#main-footer .logo-contact img {
		width: 50%;
		margin: 0;
	}
	footer#main-footer .logo-contact .connect {
		flex-direction: column;
	}
	footer#main-footer .resources {
		width: 70%;
		margin: 2% 0 1% 0;
		font-weight: bold;
	}
	footer#main-footer .disclaimer {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin: 0;
		font-size: 1rem;
	}
	footer#main-footer .disclaimer ul li {
		font-size: 1rem;
	}
}
/* End Footer Code */
/* Start Header Code */
header#main-header {
	position: relative;
	width: 100vw;
	z-index: 51;
	height: 100%;
}
header#main-header .menu,
header#main-header .close-menu {
	display: none;
}
header#main-header .menu.open,
header#main-header .close-menu.open {
	display: flex;
	text-transform: uppercase;
	align-items: center;
	font-size: 20px;
}
header#main-header .menu.open i,
header#main-header .close-menu.open i {
	font-size: 24px;
	margin: 0 0 0 5px;
}
header#main-header nav.main-navigation {
	background-color: #0A2240;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 13vh;
}
header#main-header nav.main-navigation .main-navigation__home {
	width: 13%;
	padding: 0 0 0 2%;
}
header#main-header nav.main-navigation .main-navigation__home .logo {
	width: 80%;
}
header#main-header nav.main-navigation .main-navigation__links {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 55%;
	height: 100%;
}
header#main-header nav.main-navigation .main-navigation__links li {
	white-space: nowrap;
	text-align: center;
	list-style-type: none;
}
header#main-header nav.main-navigation .main-navigation__links li a {
	color: var(--white);
	text-decoration: none;
	font-weight: 150;
	font-size: 1.5rem;
}
header#main-header nav.main-navigation .main-navigation__links li p {
	color: #004B98;
	font-weight: bold;
}
header#main-header nav.main-navigation .main-navigation__links .hamburger {
	background-color: var(--white);
	height: 100%;
	width: 20%;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #004B98;
}
header#main-header nav.main-navigation .main-navigation__links .hamburger p {
	font-weight: bold;
}
header#main-header nav.main-navigation .main-navigation__links .hamburger .menu-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	font-weight: bold;
	margin: 0 0 0 5px;
}
header#main-header nav.main-navigation .main-navigation__links .hamburger:focus {
	outline: 3px solid #3DB5E6;
}
header#main-header .secondary-navigation {
	width: 100%;
	min-height: 92vh;
	display: none;
}
header#main-header .secondary-navigation:focus-within .secondary-navigation {
	display: flex;
}
header#main-header .secondary-navigation.open {
	display: flex;
}
header#main-header .secondary-navigation section {
	width: 50%;
	height: 87vh;
}
header#main-header .secondary-navigation .secondary-navigation__information {
	padding: 5% 10%;
	background: #004b98;
	background: linear-gradient(180deg, #004b98 0%, #0a2240 100%);
	color: var(--white);
}
header#main-header .secondary-navigation .secondary-navigation__information h5 {
	margin: 0 0 5% 0;
}
header#main-header .secondary-navigation .secondary-navigation__information ul {
	columns: 2;
	margin: 0 0 5% 0;
}
header#main-header .secondary-navigation .secondary-navigation__information ul li {
	list-style-type: none;
	margin: 0 0 15px 0;
}
header#main-header .secondary-navigation .secondary-navigation__information ul li a {
	color: var(--white);
	text-decoration: none;
	font-size: 1rem;
	font-weight: normal;
}
header#main-header .secondary-navigation .secondary-navigation__information select {
	display: none;
}
header#main-header .secondary-navigation .secondary-navigation__information input {
	width: 85%;
	padding: 3%;
}
header#main-header .secondary-navigation .secondary-navigation__links {
	padding: 4%;
	margin: 0 auto;
	background: var(--white);
	overflow-y: scroll;
}
header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__sub-navs {
	border-bottom: 1px solid #C8C8C8;
	padding: 3% 0;
	color: #004B98;
	cursor: pointer;
	position: relative;
}

header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__sub-navs:hover {
	padding: 3% 0 3% 15px;
	transition: all 250ms ease-in;
}

header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__sub-navs .sub-navs__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__sub-navs .sub-navs__header .sub-navs__title {
	text-transform: uppercase;
}
header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__sub-navs .sub-navs__header .sub-navs__toggle {
	border: 2px solid #3DB5E6;
	border-radius: 100%;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 250ms ease-in;
}
header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__sub-navs .sub-navs__header .sub-navs__toggle span {
	color: #3DB5E6;
}
header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__sub-navs .sub-navs__links {
	display: none;
	cursor: pointer;
}
header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__sub-navs .sub-navs__links:focus {
	display: block;
}
header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__sub-navs .sub-navs__links ul {
	width: 95%;
	margin: 2.5% auto;
}
header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__sub-navs .sub-navs__links ul li {
	list-style-type: none;
	margin: 0 0 15px 0;
}
header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__sub-navs .sub-navs__links ul li a {
	color: var(--black);
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: normal;
}
header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__sub-navs.open .sub-navs__links {
	display: block;
}
header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__sub-navs.open .sub-navs__toggle {
	transform: rotate(45deg);
}
header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__sub-navs:focus {
	border-bottom: 2px solid #004B98;
	outline: none;
}
header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__sub-navs:focus .sub-navs__toggle {
	transform: rotate(45deg);
}
header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__resources {
	margin: 10% 0 0 0;
}
header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__resources h6 {
	color: #0A2240;
	margin: 0 0 15px 0;
}
header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__resources ul {
	color: #004B98;
	columns: 2;
}
header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__resources ul li {
	list-style-type: none;
	margin: 0 0 15px 0;
}
header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__resources ul li a {
	text-decoration: none;
	color: #004B98;
	font-size: 1rem;
	font-weight: 200;
}

@media screen and (max-width: 1400px) {
	header#main-header nav.main-navigation .main-navigation__links {
		width: 75%;
	}
	header#main-header nav.main-navigation .main-navigation__links .hamburger {
		width: 25vw;
	}
}
@media screen and (max-width: 1200px) {
	header#main-header {
		overflow-y: scroll;
	}
	header#main-header nav.main-navigation .main-navigation__home {
		width: 25%;
	}
	header#main-header nav.main-navigation .main-navigation__links {
		position: relative;
	}
	header#main-header nav.main-navigation .main-navigation__links li {
		display: none;
	}
	header#main-header nav.main-navigation .main-navigation__links .hamburger {
		position: absolute;
		top: 0;
		right: 0;
		width: 20vw;
	}
	header#main-header .secondary-navigation {
		flex-wrap: wrap;
		flex-direction: column-reverse;
		justify-content: flex-end;
	}
	header#main-header .secondary-navigation section {
		width: 100%;
		height: auto;
	}
}
@media screen and (max-width: 768px) {
	header#main-header .menu, .close header#main-header.open {
		font-size: 16px;
	}
	header#main-header nav.main-navigation {
		height: 8vh;
	}
	header#main-header nav.main-navigation .main-navigation__home {
		width: 35%;
		padding: 0 0 0 5%;
	}
	header#main-header nav.main-navigation .main-navigation__links .hamburger {
		color: var(--white);
		background-color: #0A2240;
		right: 50px;
	}
	header#main-header nav.main-navigation .main-navigation__links .hamburger p {
		align-items: center;
		justify-content: center;
	}
	header#main-header .secondary-navigation {
		background: #004b98;
		background: linear-gradient(180deg, #004b98 0%, #0a2240 100%);
	}
	header#main-header .secondary-navigation .secondary-navigation__information #find-information {
		background: none;
		padding: 5% 3%;
		margin: 0 0 15px 0;
		font-size: 1.2rem;
		color: var(--white);
		outline: none;
		border: none;
		border-bottom: 1px solid #3DB5E6;
	}
	header#main-header .secondary-navigation .secondary-navigation__information #find-information option {
		color: var(--black);
	}
	header#main-header .secondary-navigation .secondary-navigation__information .secondary-navigation__audiences {
		display: none;
	}
	header#main-header .secondary-navigation .secondary-navigation__information select#find-information {
		display: block;
		width: 100%;
	}
	header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__resources h6 {
		color: #0A2240;
	}
	header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__resources ul li a {
		color: #0A2240;
	}
	header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__sub-navs {
		color: #0A2240;
	}
	header#main-header .secondary-navigation .secondary-navigation__links .secondary-navigation__sub-navs .sub-navs__links ul li a {
		color: #0A2240;
	}
}

.accessibility-skip {
	position: fixed;
	width: 250px;
	height: 50px;
	background: #3DB5E6;
	color: var(--black);
	border: 2px solid var(--white);
	left: -265px;
	top: -65px;
	z-index: 50;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 250ms ease-in-out;
}
.accessibility-skip:focus {
	left: 15px;
	top: 15px;
}

.main-navigation__home:hover {
	color: transparent;
}
/* End Header Code */
#majors-search__wrapper {
	background: #004B98;
	width: 100vw;
	padding: 5%;
}

.outcome-fadeIn {
	animation-name: fadeIn;
	animation-duration: 1s;
	animation-iteration-count: 1;
	transition: 1s ease-in linear;
}

.outcome-fadeOut {
	animation-name: fadeOut;
	animation-duration: 1s;
	animation-iteration-count: 1;
	transition: 1s ease-in linear;
}

@media screen and (min-width: 768px) {
	.outcome-fadeIn,
	.outcome-fadeOut {
		animation: none;
	}
}
.Social-fadeIn {
	animation-name: fadeIn;
	animation-duration: 1s;
	animation-iteration-count: 1;
	transition: 1s ease-in linear;
}

.Social-fadeOut {
	animation-name: fadeOut;
	animation-duration: 1s;
	animation-iteration-count: 1;
	transition: 1s ease-in linear;
}

@media screen and (min-width: 768px) {
	.Social-fadeIn,
	.Social-fadeOut {
		animation: none;
	}
}
.audience-fadeIn {
	animation-name: fadeIn;
	animation-duration: 1s;
	animation-iteration-count: 1;
	transition: 1s ease-in linear;
}

.audience-fadeOut {
	animation-name: fadeOut;
	animation-duration: 1s;
	animation-iteration-count: 1;
	transition: 1s ease-in linear;
}

@keyframes fadeOut {
	from {
		transform: translate(0, 0);
		opacity: 1;
	}
	to {
		transform: translate -25px, 0;
		opacity: 0;
	}
}
@keyframes fadeIn {
	from {
		transform: translate(25px, 0);
		opacity: 0;
	}
	to {
		transform: translate 0, 0;
		opacity: 1;
	}
}
.accessibility-skips {
	position: fixed;
	top: 0;
	left: 0;
	transform: translate(-100%, -100%);
	background: #3DB5E6;
	border: 1px solid #004B98;
	transition: all 250ms ease-in-out;
	padding: 1%;
}
.accessibility-skips:focus-within {
	transform: translate(25px, 25px);
}
.accessibility-skips a {
	text-decoration: none;
	color: #004B98;
}
.accessibility-skips a:focus {
	outline: none;
	text-decoration: underline;
}
/* Majors Minors CSS */
#search-majors {
	font-size: 0.95rem;
	text-decoration: none;
	text-transform: uppercase;
	padding: 2% 4%;
	border-radius: 50px;
	margin: 5% 2% 5% 0;
	display: inline-flex;
	align-items: center;
	background: #3DB5E6;
	border: none;
	font-weight: bold;
	cursor: pointer;
}
#search-majors:hover {
	background: #E1261C;
	color: var(--white);
}

.majors-intro {
	padding: 5% 10%;
}
.majors-intro h1 {
	font-weight: bold;
	font-size: 2.8rem;
}
.majors-intro h6 {
	color: #004B98;
	margin: 1% 0 0 0;
	font-size: 1.68rem;
}
.majors-intro p {
	font-size: 1.4rem;
}

section.input_wrapper {
	padding: 2% 5vw;
}
section.input_wrapper .shownInputs {
	padding: 0 5vw;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
section.input_wrapper .shownInputs .searchInput {
	width: 40%;
	padding: 3% 0;
	margin: 0 5% 0 0;
	border-right: 2px solid #3DB5E6;
}
section.input_wrapper .shownInputs .searchInput label {
	font-family: clarendon-text-pro, serif;
	font-size: 1.6rem;
	margin: 0 5% 0 0;
}
section.input_wrapper .shownInputs .searchInput input {
	width: 50%;
	padding: 2% 5%;
}
section.input_wrapper .toggleInputs {
	display: flex;
	align-items: center;
	width: 60%;
	cursor: pointer;
}
section.input_wrapper .toggleInputs h5 {
	margin: 0 2% 0 0;
}
section.input_wrapper .toggleInputs .filterCircle {
	width: 40px;
	height: 40px;
	border: 1px solid #3DB5E6;
	border-radius: 100%;
	color: #3DB5E6;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 250ms ease-in;
}
section.input_wrapper .toggleInputs .filterCircle:hover {
	transform: rotate(-45deg);
}
section.input_wrapper .hiddenInputs {
	display: none;
}
section.input_wrapper .hiddenInputs.show {
	display: flex;
	margin: 3% 0 0 0;
}
section.input_wrapper .hiddenInputs .column .inputWrapper {
	margin: 0 0 1% 0;
}

.accordions_wrapper {
	padding: 0;
	cursor: pointer;
}
.accordions_wrapper article.accordion_wrapper:nth-child(even) {
	background: #C8C8C8;
}
.accordions_wrapper article.accordion_wrapper {
	padding: 2.5% 10vw;
}
.accordions_wrapper article.accordion_wrapper .accordion_outer {
	display: flex;
	align-items: center;
}
.accordions_wrapper article.accordion_wrapper .accordion_outer h2.accordion_title {
	width: 70%;
	font-size: 2.24rem;
	text-transform: uppercase;
	color: #004B98;
	font-weight: bold;
	display: flex;
	align-items: center;
}
.accordions_wrapper article.accordion_wrapper .accordion_outer h2.accordion_title .hover-arrow {
	opacity: 0;
	margin-left: 0;
}
.accordions_wrapper article.accordion_wrapper .accordion_outer .accordion_program {
	width: 25%;
}
.accordions_wrapper article.accordion_wrapper .accordion_outer .filterCircle {
	width: 40px;
	height: 40px;
	border: 1px solid #3DB5E6;
	border-radius: 100%;
	color: #3DB5E6;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 250ms ease-in;
}
.accordions_wrapper article.accordion_wrapper .accordion_outer .filterCircle:hover {
	transform: rotate(45deg);
}
.accordions_wrapper article.accordion_wrapper.hidden {
	display: none;
}
.accordions_wrapper article.accordion_wrapper.open {
	padding: 5% 10vw;
	background: #004b98;
	background: radial-gradient(circle, #004b98 0%, #0a2240 100%);
}
.accordions_wrapper article.accordion_wrapper.open .accordion_outer {
	display: none;
}
.accordions_wrapper article.accordion_wrapper.open .accordion_inner {
	display: flex;
	color: var(--white);
}
.accordions_wrapper article.accordion_wrapper.open .accordion_inner aside.accordion_meta {
	width: 30%;
}
.accordions_wrapper article.accordion_wrapper.open .accordion_inner aside.accordion_meta .program_type {
	margin: 0 0 2% 0;
}
.accordions_wrapper article.accordion_wrapper.open .accordion_inner section.accordion_main h4, .accordions_wrapper article.accordion_wrapper.open .accordion_inner section.accordion_main p {
	margin: 0 0 2% 0;
}
.accordions_wrapper article.accordion_wrapper:hover .accordion_outer h2.accordion_title .hover-arrow {
	opacity: 1;
	margin-left: 10px;
	transition: 150ms all ease-in;
}
.accordions_wrapper article.accordion_wrapper .accordion_inner {
	display: none;
}

@media screen and (max-width: 1200px) {
	.majors-intro h1 {
		font-size: 1.68rem;
	}
	.majors-intro p {
		font-size: 1rem;
	}
	.majors-intro h6 {
		font-size: 1rem;
	}

	section.input_wrapper .shownInputs {
		flex-direction: column;
		padding: 0 2.5vw;
	}
	section.input_wrapper .shownInputs .searchInput {
		width: 100%;
		border-right: none;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	section.input_wrapper .shownInputs .searchInput input {
		width: 80%;
		margin: 0 0 15px 0;
	}
	section.input_wrapper .shownInputs .toggleInputs {
		width: 100%;
		padding: 0 2.5vw;
	}
	section.input_wrapper .shownInputs .toggleInputs h5 {
		width: 80%;
	}
	section.input_wrapper .hiddenInputs.show {
		flex-direction: column;
	}

	.accordions_wrapper article.accordion_wrapper .accordion_outer {
		flex-direction: column;
	}
	.accordions_wrapper article.accordion_wrapper .accordion_outer h2.accordion_title {
		width: 100%;
		font-size: 1.4rem;
	}
	.accordions_wrapper article.accordion_wrapper .accordion_outer p.accordion_program {
		width: 100%;
	}
	.accordions_wrapper article.accordion_wrapper .accordion_outer .filterCircle {
		display: none;
	}
	.accordions_wrapper article.accordion_wrapper.open .accordion_inner {
		flex-direction: column;
	}
	.accordions_wrapper article.accordion_wrapper.open .accordion_inner aside.accordion_meta {
		width: 100%;
		display: flex;
		justify-content: flex-start;
	}
	.accordions_wrapper article.accordion_wrapper.open .accordion_inner aside.accordion_meta div {
		width: 50%;
	}
}
.breadcrumb {
	display: none !important;
}

.hero-section {
	width: 100vw;
	min-height: 80vh;
	color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5% 15%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero-section__small {
	width: 100vw;
	min-height: 40vh;
	color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5% 15%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	text-shadow: 1px 1px #333333;
}

.hero-section .hero-section__content {
	padding: 5% 0 0 0;
	text-shadow: 1px 1px #333333;
}
.hero-section .hero-section__content h1 {
	font-weight: bold;
}
.hero-section .hero-section__content h1 span {
	font-size: 5.5rem;
}
.hero-section .hero-section__content h6 .red {
	background-color: #E1261C;
	padding: 0 5px;
}

@media screen and (max-width: 768px) {
	.hero-section .hero-section__content h1 span {
		font-size: 2.8rem;
	}
}
.etown-circle__large {
	position: relative;
	border-radius: 100%;
	width: 250px;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 15px;
	margin: 0 0 15px 0;
}
.etown-circle__large::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	border: 3px solid #FFFFFF;
	z-index: 1;
}
.etown-circle__large i.fas {
	font-size: 4rem;
	height: auto;
	margin: 0 0 15px 0;
}

.etown-circle__medium {
	position: relative;
	border-radius: 100%;
	width: 200px;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 15px;
	margin: 0 0 15px 0;
}
.etown-circle__medium::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	border: 3px solid #FFFFFF;
	z-index: 1;
}
.etown-circle__medium i.fas {
	font-size: 3rem;
	height: auto;
	margin: 0 0 15px 0;
}

.etown-circle__medium:hover::after {
	display: none !important;
}

.etown-circle__small {
	position: relative;
	border-radius: 100%;
	width: 150px;
	height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 15px;
	margin: 0 0 15px 0;
}
.etown-circle__small::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	border: 3px solid #FFFFFF;
	z-index: 1;
}
.etown-circle__small:hover::after {
	display: none !important;
}

.etown-circle__small i.fas {
	font-size: 2.5rem;
	height: auto;
	margin: 0 0 15px 0;
}

.dark-circle {
	background: #0A2240;
	color: var(--white);
}

.blue-circle {
	background: #004B98;
	color: var(--white);
}

.red-circle {
	background: #E1261C;
	color: var(--white);
}

.lightBlue-circle {
	background: #3DB5E6;
	color: var(--black);
}

.gray-circle {
	background: #C8C8C8;
	color: var(--black);
}

.fancy-or {
	border-top: 2px solid #3DB5E6;
	border-bottom: 2px solid #3DB5E6;
	padding: 15px;
}

.overlayed-image {
	height: 25vw;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.overlayed-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.75;
}
.overlayed-image.blueOverlay::before {
	background-color: #004B98;
}
.overlayed-image.darkOverlay::before {
	background-color: #0A2240;
}
.overlayed-image.grayOverlay::before {
	background-color: #C8C8C8;
}
.overlayed-image.redOverlay::before {
	background-color: #E1261C;
}
.overlayed-image.lightOverlay::before {
	background-color: #3DB5E6;
}
.overlayed-image.greenOverlay::before {
	background-color: #76bc21;
}

@media screen and (max-width: 1200px) {
	.overlayed-image {
		height: 100vw;
	}
}
.lg-text {
	font-size: 3.36rem;
	margin: 25px 0;
	font-family: clarendon-text-pro, serif;
}

.md-text {
	font-size: 1.12rem;
	margin: 3px 0;
}

.sm-text {
	font-size: 0.84rem;
	width: 80%;
	margin: 0 auto;
}

@media screen and (max-width: 1200px) {
	.lg-text {
		font-size: 2.8rem;
	}

	.md-text {
		font-size: 0.84rem;
	}

	.sm-text {
		font-size: 0.6rem;
	}
}

@media(max-width: 1023px) {
	.reverse-columns {
		flex-direction: column-reverse;
		display: flex;
	}
}



/* Snippets Code */
/* Video Snippet */
.video-section {
	width: 100vw;
	height: 35vh;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.video-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: -60%;
	width: 250%;
	height: 100%;
	background-image: url(https://www.etown.edu/etcsandbox/kyle-test/images/images-cca/homepage-virtualvisit-overlay.png);
	background-size: cover;
	background-position: right center;
	opacity: 0.3;
	z-index: 1;
}
.video-section video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.video-section .video__copy {
	position: absolute;
	width: 80%;
	color: var(--white);
	z-index: 2;
	align-items: center;
}
.video-section .video__copy h2 {
	margin: 0 15px 0 0;
}
.video-section .video__copy .video__button a {
	white-space: nowrap;
}
/* iFrame */
.iframe-container {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

/* Hero Video Styles */
.hero-video__wrapper {
	width: 100vw;
	height: 60vh;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero-video__wrapper video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 0;
}
.hero-video__wrapper::before {
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	z-index: 1;
	background: var(--black);
	opacity: 0.3;
}
.hero-video__wrapper .hero-video__text-wrapper {
	position: absolute;
	width: 80%;
	color: var(--white);
	z-index: 2;
}
.hero-video__wrapper .hero-video__text-wrapper h6 {
	margin: 4% 0 0 0;
}
.hero-video__wrapper .hero-video__text-wrapper .hero-video__buttons {
	margin: 10% 0 0 0;
}

@media screen and (min-width: 768px) {
	.hero-video__wrapper {
		height: 70vh;
	}
}
@media screen and (min-width: 1200px) {
	.hero-video__wrapper {
		height: 70vh;
	}
	.hero-video__wrapper .hero-video__text-wrapper .hero-video__buttons {
		margin: 2% 0 0 0;
	}
}

/* SGPS Header Styles */
.sgps_bar {
	background: #004B98;
	padding: 1%;
	display: flex;
	justify-content: flex-end;
}
.sgps_bar a {
	margin: 0 15px;
}
.radioOption {
	display: flex;
	margin: 5% 0;
	align-items: center;
}
header#main-header .secondary-navigation .secondary-navigation__information .radioOption input[type='radio'] {
	width: 25px;
	height: 25px;
	border-radius: 100%;
	background: white;
	padding: 0;
	margin: 0 15px 0 0;
	cursor: pointer;
}

header#main-header .secondary-navigation .secondary-navigation__information .radioOption label {
	width: calc(100% - 50px);
}

header#main-header .secondary-navigation .secondary-navigation__information .radioOption input[type='radio']:checked {
	background: #76bc21;
}

.green__button.apply_button {
	padding: 10px 25px;
	color: var(--black) !important;
}

header#main-header nav.main-navigation .main-navigation__home.sgpsLogo {
	width: 25%;
}

/* Percentage Cirlce CSS */
.percentageCircle__large {
	width: 250px;
	height: 250px;
	position: relative;
	z-index: 5;
}
.percentageCircle__medium {
	width: 200px;
	height: 200px;
	position: relative;
	z-index: 5;
}
.percentageCircle__small {
	width: 150px;
	height: 150px;
	position: relative;
	z-index: 5;
}

.percentageCircleInner.circleAnimate {
	animation: progress 1s ease-out forwards;
}
.percentage {
	font-size: .5em;
	text-anchor: middle;
}
@keyframes progress {
	0% {
		stroke-dasharray: 0 100;
	}
}


/* Page Navigation Styles */
.pageNavigationMenu {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50;
	color: #000000;
	background: var(--light-blue);
	padding: 12.5px;
	cursor: pointer;
	width: 100%;
	text-align: center;
	font-style: normal;
	font-weight: bold;
	height: 50px;
}

.pageNavigationMenu:focus {
	background: #004B98;
	z-index: 99;
	outline: solid;
	outline-color: #ffffff;
	outline-offset: -10px;


}

.pageNavigation {
	position: fixed;
	bottom: 0;
	left: 0;
	background: #0A2240;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ffffff;
	clip-path: circle(0 at 50% 0%);
	transition: all 250ms ease-in-out;
	z-index: 15;
	line-height: 1.2;
}

.pageNavigation ul li a{
	color: #ffffff;
	font-weight: bold;
	font-size: 1.25rem;
}

.closePageNavigation {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 50;
	color: #ffffff;
	background: #E1261C;
	padding: 12.5px;
	cursor: pointer;
	width: 100%;
	text-align: center;
	font-style: normal;
	font-weight: bold;
	height: 50px;
}

.closePageNavigation:focus {
	background: #014f99;
}

.pageNavigation.expanded {
	clip-path: circle(100%)
}	

.pageNavigationMenu.hidden {
	display: none !important;
}

.inset-image {
	outline: 1px solid var(--white);
	outline-offset: -15px;
	width: 100%;
	height: 300px;
	object-fit: cover;
}

aside#page-navigation {
	display: none;
}

.pageNavigation li.seperator {
	display: none;
}

.pageNavigation ul {
	list-style-type: none;
	text-align: center;
	margin-left: 0px;
}

.pageNavigation ul li {
	font-size: 1.5rem;
	list-style-type: none;
	margin-bottom: 10px;
}

/* Overlap Section CSS */
.overlap-section {
	display: flex;
}

.overlap-section__inner {
	width: 50%;
}

.overlap-section__inner:nth-child(1) {
	transform: translate(10%, 10%) scale(.75);
}

.overlap-section__inner:nth-child(2) {
	transform: translate(-10%, -10%) scale(.75);
}

.overlap-section__inner.front {
	z-index: 10;
}

@media screen and (max-width: 1200px) {
	.overlap-section {
		flex-wrap: wrap;
	}

	.overlap-section__inner {
		transform: translate(0, 0) scale(1) !important;
		width: 100%;
	}

	.overlap-section__inner img {
		width: 100%;
	}
}

/* Overlapped Overlap */

.overlapped-section {
	display: flex;
}

.overlapped-section__inner {
	width: 50%;
}

.overlapped-section__inner:nth-child(1) {
	transform: translate(25%, 15%) scale(.75);
}

.overlapped-section__inner:nth-child(2) {
	transform: translate(-25%, -15%) scale(.75);
}

.overlapped-section__inner.front {
	z-index: 10;
}

@media screen and (max-width: 1200px) {
	.overlapped-section {
		flex-wrap: wrap;
	}

	.overlapped-section__inner {
		transform: translate(0, 0) scale(1) !important;
		width: 100%;
	}

	.overlapped-section__inner img {
		width: 100%;
	}
}

/* Inner Frames CSS */

.white-frame {
	outline: 2px solid var(--white);
	outline-offset: -15px;
}
.blue-frame {
	outline: 2px solid var(--primary-blue);
	outline-offset: -15px;
}
.dark-frame {
	outline: 2px solid var(--dark-blue);
	outline-offset: -15px;
}
.lightblue-frame {
	outline: 2px solid var(--light-blue);
	outline-offset: -15px;
}
.black-frame {
	outline: 2px solid var(--black);
	outline-offset: -15px;
}
.red-frame {
	outline: 2px solid var(--red);
	outline-offset: -15px;
}
.gray-frame {
	outline: 2px solid var(--gray);
	outline-offset: -15px;
}
.lightgray-frame {
	outline: 2px solid var(--light-gray);
	outline-offset: -15px;
}
.green-frame {
	outline: 2px solid var(--green);
	outline-offset: -15px;
}

/* Accordion CSS */
.accordion__wrapper {
	width: 100%;
	padding: 2.5%;
	background: var(--white);
	color: var(--primary-blue);
	cursor: pointer;
	z-index: 10;
	position: relative;
}

.accordion__wrapper:nth-child(even) {
	background: var(--gray);
}

.accordion__wrapper .accordion__outer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.accordion__wrapper .accordion__inner {
	display: none;
}

.accordion__wrapper.show .accordion__inner {
	display: block;
	color: var(--black);
	border-top: 1px solid rgba(0, 0, 0, .25);
	margin: 15px 0 0 0;
	padding-top: 15px;
}

/* CCA Gallery */
.photo-gallery__lightbox-wrapper {
	display: none;
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	background: #33333375;
	z-index: 5;
}

.photo-gallery__lightbox-wrapper.show {
	display: block;
}

.photo-gallery__lightbox-wrapper .photo-gallery__top-bar {
	width: 100vw;
	height: 7vh;
	background: #000000;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.photo-gallery__lightbox-wrapper .photo-gallery__lightbox {
	width: 100vw;
	height: 86vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5%;
}

.photo-gallery__lightbox img {
	max-width: 90%;
	max-height: 80%;
}

.photo-gallery__lightbox-wrapper .photo-gallery__caption {
	width: 100vw;
	height: 7vh;
	background: #000000;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: scroll;
}

.photo-gallery__lightbox-wrapper .close {
	position: fixed;
	top: -5px;
	right: 10px;
	cursor: pointer;
}

.prevArrow {
	position: fixed;
	left: 10%;
	top: 50%;
	color: #ffffff;
	cursor: pointer;
}

.nextArrow {
	position: fixed;
	right: 10%;
	top: 50%;
	color: #ffffff;
	cursor: pointer;
}

.prevArrow i {
	font-size: 3rem;
}

.nextArrow i {
	font-size: 3rem;
}

.photo-gallery__images img {
	cursor: pointer;
}

@media screen and (max-width: 1200px) {
	.prevArrow {
		top: 10%;
		left: 50%;
		transform: translate(-50%, 0);
	}

	.nextArrow {
		top: 90%;
		left: 50%;
	}
}

/* Countdown Styles */
.countDownClock {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.countDownClock .days {
	width: 50%;
	font-size: 5rem;
	text-align: right;
	font-weight: bold;
	padding: 1%;
	line-height: 200px;
	white-space: nowrap;
	transform: translate(0, 1.5rem);
}

.countDownClock .hoursMinutesSeconds {
	width: 50%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	transform: translate(0, 25%);
}

.countDownClock .hoursMinutesSeconds .hours {
	width: 100%;
	font-size: 2rem;
	font-weight: bold;
}

.countDownClock .hoursMinutesSeconds .minutes {
	font-size: 2rem;
	margin: 0 15px 0 0;
}

.countDownClock .hoursMinutesSeconds .seconds {
	font-size: 2rem;
}

@media screen and (max-width: 1000px) {
	.countDownClock {
		flex-direction: column;
	}
	.countDownClock .days {
		transform: translate (0, 0);
		padding: 0;
	}
}

/* Progress Bar */
.primary-progress::-webkit-progress-value {
	background: var(--primary-blue) !important;
}

.red-progress::-webkit-progress-value {
	background: var(--red) !important;
}

.light-progress::-webkit-progress-value {
	background: var(--light-blue) !important;
}

.dark-progress::-webkit-progress-value {
	background: var(--dark-blue) !important;
}

/* Slideshow CSS */
.slideshow__wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 5;
}

.slideshow__images {
	width: 100%;
	height: 100%;
}

.slideshow__images img.frontImage {
	display: block;
}

.slideshow__images img {
	width: 100%;
	height: auto;
	display: none;
}

.slideshow__controls {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.slideshow__controls .control {
	position: absolute;
	top: 50%;
	z-index: 10;
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--red);
	cursor: pointer;
	text-shadow: 0px 0px 5px black;
}

.slideshow__controls .prev-image {
	left: 50px;
	transform: translate(-50%, 0);
}

.slideshow__controls .next-image {
	left: calc(100% - 50px);
}

.slideshow__controls .prev-image:focus, .slideshow__controls .next-image:focus {
	color: var(--primary-blue);
}

.slideshow__controls .bubbles {
	position: absolute;
	bottom: 25px;
	left: 50%;
	font-size: 1rem;
	transform: translate(-50%, 0);
}

.slideshow__controls .bubbles .bubble {
	text-shadow: 0px 0px 1px black;
	cursor: pointer;
	margin: 0 2px;
	color: var(--red);
}

.slideshow__controls .bubbles .bubble:focus {
	color: var(--primary-blue);
	outline: none;
}

.slideshow__controls .bubbles .bubble.selectedBubble {
	text-shadow: 0px 0px 3px white;
	color: var(--red);
}

.slideshow__caption {
	position: absolute;
	top: 0;
	left: 0;
	height: 20%;
	width: 100%;
	z-index: 10;
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7203475140056023) 75%, rgba(0,0,0,0) 100%);
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 2.5%;
}

.slideshow__caption p {
	color: white;
	width: 100%;
}

/* Class Notes CSS */
.card-image-hidden {
	display: none !important;
}

/* Carousel CSS */
.carousel__wrapper {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.carousel-images__wrapper {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	display: flex;
}

.carousel-image {
	min-width: 100%;
	min-height: 100%;
	padding: 2.5%;
}

.carousel__controls {
	position: absolute;
	top: 50%;
	left: -5;
	display: flex;
	justify-content: space-between;
	width: 110%;
	transform: translate(0, -100%);
}

.carousel__controls i {
	cursor: pointer;
	font-size: 3rem;
}

.carousel__transition {
	transition: all 1s ease-in;
}

.no-click {
	pointer-events: none;
	opacity: .5;
}

/* Pop-up Styles */
.info-session {
	position: fixed;
	bottom: -300px;
	right: 10%;
	padding: 1%;
	height: 300px;
	background: white;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border: 3px solid #cbe4f2;
	box-shadow: 0 0 5px #333333;
	color: #000000;
	transition: all 500ms ease-in-out;
	z-index: 999;
}

.info-session.disable {
	display: none !important;
}

.info-close {
	position: absolute;
	top: 0;
	right: 5px;
	cursor: pointer;
	color: #E1261C;
}	

@media screen and (max-width: 1080px) {
	.info-session {
		right: 0;
		left: 5vw;
		width: 90vw;
	}
}
/* fallback */
@font-face {
	font-family: 'Material Icons';
	font-style: normal;
	font-weight: 400;
	src: url(https://fonts.gstatic.com/s/materialicons/v138/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 600px)  {
	.mobile-break { display: none; }
}
}
/*timeline-css*/
.timelines {
	box-sizing: border-box;
}

/* Set a background color */
.timelines body {
	background-color: #474e5d;
	font-family: Helvetica, sans-serif;
}

/* The actual timeline (the vertical ruler) */
.timelines {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timelines::after {
	content: '';
	position: absolute;
	width: 6px;
	background-color: white;
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -3px;
}

/* Container around content */
.timelines .container {
	padding: 10px 40px;
	position: relative;
	background-color: inherit;
	width: 50%;
}

/* The circles on the timeline */
.timelines .container::after {
	content: '';
	position: absolute;
	width: 25px;
	height: 25px;
	right: -17px;
	background-color: white;
	border: 4px solid #FF9F55;
	top: 15px;
	border-radius: 50%;
	z-index: 1;
}

/* Place the container to the left */
.timelines .left {
	left: 0;
}

/* Place the container to the right */
.timelines .right {
	left: 50%;
}

/* Add arrows to the left container (pointing right) */
.timelines .left::before {
	content: " ";
	height: 0;
	position: absolute;
	top: 22px;
	width: 0;
	z-index: 1;
	right: 30px;
	border: medium solid white;
	border-width: 10px 0 10px 10px;
	border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.timelines .right::before {
	content: " ";
	height: 0;
	position: absolute;
	top: 22px;
	width: 0;
	z-index: 1;
	left: 30px;
	border: medium solid white;
	border-width: 10px 10px 10px 0;
	border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.timelines .right::after {
	left: -16px;
}

/* The actual content */
.timelines .content {
	padding: 20px 30px;
	background-color: white;
	position: relative;
	border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
	/* Place the timelime to the left */
	.timelines::after {
		left: 31px;
	}

	/* Full-width containers */
	.timlines .container {
		width: 100%;
		padding-left: 70px;
		padding-right: 25px;
	}

	/* Make sure that all arrows are pointing leftwards */
	.timelines .container::before {
		left: 60px;
		border: medium solid white;
		border-width: 10px 10px 10px 0;
		border-color: transparent white transparent transparent;
	}

	/* Make sure all circles are at the same spot */
	.timelines .left::after, .right::after {
		left: 15px;
	}

	/* Make all right containers behave like the left ones */
	.timelines .right {
		left: 0%;
	}
}
<!-- Bird HR -->
.bird hr { 
	background: url('https://www.etown.edu/offices/special-events/images/jays-inn/bird-logo-white.png') no-repeat top center;
	background-size: contain;
	display: block;
	height: 20px;
	border: 0;
	position: relative;
}
.bird hr:before,
.bird hr:after {
	content: '';
	display: block;
	position: absolute;
	background: #d7d7d7;
	height: 2px;
	top: 8px;
}
.bird hr:before {
	left: 0;
	right: 50%;
	margin-right: 10px;
}
.bird hr:after {
	right: 0;
	left: 50%;
	margin-left: 10px;
}

.product-card:hover {
	box-shadow: 0 8px 16px rgba(0,0,0,0.2); /* Shadow effect */
	transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for transform and shadow */
}