*
{
	box-sizing: border-box;
}

:root {
  --bs-light-green: rgba(18, 179, 101, 1);
  --bs-text-dark: rgba(4, 34, 108, 1);
  --bs-highlight-text: rgba(122, 226, 143, 1);
  --bs-button: rgba(122, 226, 128, 1);
  --bs-lighter-black: hsla(229, 24%, 17%, 1);
  --bs-light-gray: hsla(0, 0%, 97%, 1);
  --bs-darker-gray: hsla(0, 0%, 75%, 1);
  --bs-gold: rgba(201, 182, 60, 1);
  --bs-light-gray-op-9: hsla(0, 0%, 97%, .9);
  --bs-lighter-gray: hsla(0, 0%, 92%, 1);
  --bs-white: hsla(258,0%,92%,1);
  --bs-pure-white: hsla(0,100%,100%,0);
  --bs-white-full: hsla(0,100%,100%,1);
  --bs-font-stack: "Montserrat", Helvetica, Arial, Verdana, sans-serif;
}

html,body
{
	margin: 0;
}

body
{		
	display: flex;
	flex-direction: column;
	font: normal 0.9375rem / 2.1rem var(--bs-font-stack);
	font-size: 1rem;
	font-weight: 200;
	line-height: 2rem;
	letter-spacing: 1px;
	min-height: 100vh;
}

/*-------------------------Navbar Styling--------------------------*/

.navbar
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	width: 75%;
	padding-bottom: 1rem;
}

.sticky 
{
	position: sticky;
	top: 0;
	z-index: 999;
	background:var(--bs-light-gray-op-9);
	transform: translate(0, -140px);
}

.navView
{
	transform: translate(0,0);
	transition:all 200ms ease-in-out;
}

.navTrans
{
	transition: all 300ms ease-in-out;
}

.nav-links .menu
{
	margin: 0;
	padding: 0;
	display: flex;
}

.nav-links .item
{
	list-style: none;
	padding: .5rem;
}

.nav-links .item .nav-text
{
	display: inline-block;
	position: relative;
	padding: 0.5rem .5rem;
	padding-bottom: .2rem;
	text-decoration: none;
	font-family: var(--bs-font-stack);
	font-weight: 400;
	font-size: 1rem;
	color: var(--bs-lighter-black);
	opacity: .8;
}

.nav-links .item .nav-active
{
	display: inline-block;
	padding: 0.5rem .5rem;
	padding-bottom: .2rem;
	text-decoration: none;
	font-family: var(--bs-font-stack);
	font-weight: 400;
	font-size: 1rem;
	color: var(--bs-lighter-black);
}

.nav-links .item .nav-text
{
	transition: all 250ms linear;
}

.menu .item .nav-active
{
	color: var(--bs-light-green);
}

.menu .item .nav-text:hover
{
	color: var(--bs-light-green);
}

.menu .item .nav-text::after
{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	--color: var(--bs-light-green);
	--position: center bottom;
	--width: 50%;
	--height: 3px;
	background: linear-gradient(var(--color), var(--color)) var(--position) / var(--width) var(--height) no-repeat;
	transform: scaleX(0);
	transition: transform 250ms ease-in-out;
}

.menu .item .nav-text:hover::after
{
	transform:scaleX(1);
}

.menu .item .nav-active.active
{
	color: var(--bs-light-green);
	--color: var(--bs-light-green);
	--position: center bottom;
	--width: 50%;
	--height: 3px;
	background: linear-gradient(var(--color), var(--color)) var(--position) / var(--width) var(--height) no-repeat;
}

.toggle
{
	position: absolute;
	top: 1rem;
	right: 1rem;
	display: none;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 35px;
	height: 25px;
	background: var(--bs-pure-white);
	border: 0;
}

.toggle-style
{
	margin: 0;
	cursor: pointer;
}

.toggle .bar
{
	height: 3px;
	width: 100%;
	background-color: hsla(229, 24%, 17%, 1);
	border-radius: 0.625rem;
}

.brand
{
	max-width: 200px;
	padding-left: .5rem;
}

.brand leap-logo
{
	display: flex;
	align-self: center;
}

.logo_img
{
	width: 100%;
	height: auto;
}

@media (max-width: 85.375em) /* 1366px */
{	
	.nav-links
	{
		padding: 0;
	}
}

@media (max-width: 75em) /* 1200px */
{
	.toggle
	{
		display: flex;
		right: 0.063rem;
	}

	.nav-links
	{
		max-height: 0;
		overflow: hidden;
		width: 100%;
		transition: max-height 350ms ease-in-out;
	}
	
	.navbar
	{
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
	}

	.brand
	{
		margin: 0.313rem 0 0 0.313rem;
		padding: 0.0625rem;
		max-width: 200px;
	}
	
	.nav-links .menu
	{
		flex-direction: column;
		flex-basis: 100%;
	}
	
	.nav-links .item
	{
		text-align: center;
		padding: .5rem .5rem;
	}
}

@media (max-width: 48em) /* 768px */
{	
	.brand
	{
		padding: 0.0625rem;
	}
}

@media (max-width: 26.25em) /* 420px */
{
	.brand
	{
		max-width: 200px;
		margin: 0.400rem 0 0 0.313rem;
	}
}

@media (max-width: 25em) /* 400 px */
{
	.toggle
	{
		top: 1rem;
	}

	.navbar
	{
		width: 100%;
	}
}

/*-------------------------Navbar Styling--------------------------*/

.container
{
	display: flex;
	flex-wrap: wrap;
	max-width: 100%;
	width: 90rem;
	margin: auto auto;
}

.columns
{
	display: grid;
	grid-auto-flow: column;
	grid-template-columns: 1.5fr 1fr;
	gap: 1rem;
	grid-auto-rows: minmax(200px, auto);
	width: 90rem;
	margin: 1rem auto 1rem auto;
}

.lp-container
{
	display: flex;
	flex-wrap: wrap;
	margin: auto;
	width: 70rem;
	word-spacing: normal;
	align-items: center;
	margin-bottom: 1rem;
	margin-top: 1rem;
}

.ribbon-container
{
	display: flex;
	width: 100%;
	max-height: 200px;
	align-items: center;
	padding-top: 0.9375em;
}

.ribbon-img
{
	width: 100%;
	height: 100%;
	object-fit: cover;	
}

.banner-container
{
	display: flex;
	max-width: 100%;
	position: relative;
}

.banner_style
{
	width: 100%;
	padding-top: 28%;
	background-repeat: no-repeat;
	background-size: 100%;
}

#people_banner
{
	padding-top: 25.25%;
}

/*-------------------------Home Page Styling----------------------*/

.heading
{
	flex-basis: 100%;
}

.heading h1
{
	text-align: center;
	margin-bottom: 0.5rem;
	line-height: 1.2;
	font-size: 2.5rem;
	font-weight: 500;
	font-family: calibri;
}

.leap-content
{
	min-height: 15.625rem;
	max-width: 50rem;
	align-self: center;
	grid-column: 1/2;
}

.leap-content p:nth-child(1)
{
	width: 90%;
	margin-left: auto;
}

.illus-img, .cell-img
{
	flex-basis: 20%;
	align-self: center;
	margin: 0 auto;
	text-align: center;
}

#cel-img
{
	grid-column: 2/3;
	height: 25rem;
}

#il-img
{
	grid-column: 1/2;
}

.text-light-green
{
	color: var(--bs-light-green);
}

.main-font
{
	color: var(--bs-lighter-black);
	font-family: var(--bs-font-stack);
	text-align: right;
	font-size: 1rem;
	line-height: 1.5rem;
	width: 95%;
	margin-left: auto;
}

.leap-content p:nth-child(1),
.leap-content p:nth-child(2),
.leap-content p:nth-child(3)
{
	margin-top: 0;
}

.leap-content p:nth-child(1),
.leap-content p:nth-child(2)
{
	margin-bottom: 4rem;
}

.leap-content p:nth-child(3)
{
	margin-bottom: 0;
}

.lp-home
{
	font-weight: bold;
	font-size: 1.15rem;
}

.text-gold-italic
{
	color: var(--bs-gold);
	font-style: italic;
}

.sub-text-size
{
	font-size: 0.831rem;
}

.illus-img-size, .cell-img-size
{
	height: 25rem;
	max-height: 30rem;
}

@media (max-width: 240em) /* 3840px */
{
	.leap-content
	{
		margin-left: auto;
	}
}

@media (max-width: 85.375em) /* 1366px */
{
	.container
	{
		width: 95%;
	}

	.leap-content
	{
		padding: 0;
		min-height: 6.25em;
	}
	
	.illus-img,.cell-img
	{
		padding: 0;
		text-align: center;
		margin-top: 1rem;
	}
}

@media (max-width: 80em) /* 1280px */
{
	.leap-content
	{
		margin: auto;
		padding: 0;
		min-height: 6.25em;
	}
	
	.illus-img,.cell-img
	{
		padding: 0;
		margin: auto;
		text-align: center;
	}
}

@media (max-width: 67.5em) /* 1080px */
{
	.container
	{
		width: 95%;
	}

	.columns
	{
		gap: 1rem;
	}

	.cell-img-size
	{
		width: 20rem;
		height: 20rem;
	}

	.illus-img-size
	{
		width: 12rem;
		height: 20rem;
	}
}

@media (max-width: 51.25em) /* 820px */
{
	.container
	{
		width: 100%;
	}
	
	.columns
	{
		grid-template-columns: 1fr;
		grid-template-rows: repeat(3,auto);
		gap: 1em;
		justify-items: center;
	}

	.leap-content,
	#cel-img
	{
		grid-column: 1/2;
		height: auto;
	}

	.leap-content p
	{
		margin: auto;
		text-align: center;
	}

	#il-img
	{
		grid-row: 1/2;
		margin-top: 1rem;
		margin-bottom: 1rem;
	}
	
	.leap-content
	{
		text-align:center;
		margin: auto;
		padding: 0;
		grid-row: 2/3;
	}

	#cel-img
	{
		grid-row: 3/4;
		margin-top: 1rem;
		margin-bottom: 1rem;
	}
}

@media (max-width: 37.5em) /* 600px */
{
	.leap-content
	{
		text-align:center;
		padding: 0;
		width: 95%;
	}
}

@media (max-width: 17.5em) /* 280px */
{
	.cell-img-size
	{
		width: 15rem;
		height: 15rem
	}

	.illus-img-size
	{
		width: 10rem;
	}
}

@media (max-height: 17.5em) /* 280px */
{
	.leap-content
	{
		max-width: 45ch;
	}
}

/*--------------------------Home Page Styling---------------------*/

/*-------------------------Contact Page Styling-------------------*/

.map-wrapper
{
	display: grid;
	grid-auto-flow: column;
	gap: 3em;
	width: 100%;
	margin-bottom: 15rem;
}

.contact-wrapper
{
	display: flex;
	flex-direction: column;
}

.contact-wrapper h4
{
	font: var(--bs-font-stack);
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.map-lp
{
	width: 100%;
}

.map-lp iframe
{
	display: block;
	width: 100%;
	position: relative;
	border: .5rem solid var(--bs-light-gray);
}

.main-contact p, .collab-contact p
{
	font-size: 1.063rem;
	line-height: 1.5rem;
	margin-top: 0;
}

.inquiries h3
{
	margin-top: 0;
	margin-bottom: 0.5rem;
}

.inquiries a, .footer-heading a
{
	color: var(--bs-light-green);
	text-decoration: underline;
	text-decoration-skip-ink: none;
}

.inquiries a:hover, .footer-heading a:hover
{
	text-decoration: none;
	filter: brightness(1.10);
}

.inquiries p
{
	font-size: 1.063rem;
	margin-top: 0;
	margin-bottom: 0.5rem;
}

.lp-container h3
{
	font: var(--bs-font-stack);
	font-size: 1.375rem;
}

.contact-divider
{
	display: block;
	margin: auto;
	padding-top: 0.9375rem;
	text-align: center;
	height: 1px;
	border-top: 1px solid var(--bs-lighter-gray);
	position: relative;
	width: 100%;
}

@media (max-width: 85.375em) /* 1366px */
{
	.ribbon-container
	{
		margin: 0;
	}
	
	.lp-container
	{
		width: 75rem;
		margin-top: 0;
		margin-bottom: 0;
		padding: 0.9375em 0.9375em;
	}
}

@media (max-width: 64em) /* 1024px */
{	
	.map-wrapper
	{
		grid-auto-flow: row;
		gap: 1em;
	}
	
	.ribbon-container
	{
		margin: 0;
	}
	
	.ribbon-img
	{
		min-height: 8.125em;
	}
	
	.lp-container
	{
		width: 80%;
		flex-direction: column;
		padding: 0.9375rem 0.9375rem;
	}
	
	.inquiries
	{
		width: 100%;
		text-align: left;
	}
	
	.main-contact, .collab-contact
	{
		width: 100%;
		text-align: left;
		padding-bottom: 1.25em;
	}
}

@media (max-width: 75em) /* 1200px */
{
	.lp-container
	{
		width: 80%;
	}
}

@media (max-width: 50em) /* 800px */
{
	.lp-container
	{
		padding-top: 0.125em;
		padding-bottom: 0.0625em;
		width: 95%;
	}
}

/*-------------------------Contact Page Styling-------------------*/

/*-------------------------Careers Page Styling-------------------*/

.careers-text
{
	margin: auto;
}

.quote-text
{
	font-style: italic;
	font-weight: bold;
	position: absolute;
	bottom: 2%;
	left: 50%;
	margin: 0;
	width: 100%;
	text-align: center;
	color: var(--bs-white-full);
	transform: translate(-50%, 0);
	font-size: clamp(1.313rem, 1vw, 1.5rem);
}

.careers-text .desc-text
{
	font-family: var(--bs-font-stack);
	font-size: clamp(1.313rem, 1vw, 1.25rem);
	margin: 0;
}

.no-post
{
	text-align: center;
	margin: auto;
	font-family: var(--bs-font-stack);
	font-size: clamp(1.313rem, 1vw, 1.25rem);
}

.desc-text
{
	align-self: center;
}

.quote-text, .desc-text
{
	line-height: 1.5rem;
}

.careers-desc
{
	margin-bottom: 0;
	font-size: 1.063rem;
	line-height: 1.5rem;
}

.lp-jb-drop
{
	max-width: 100%;
	margin: 0;
}

.lp-jb-item
{
	background-color: var(--bs-light-gray);
	margin-top: 1rem;
	margin-bottom: 1rem;
	border-radius: .5rem;
	box-shadow: 0 1px 2px 0 var(--bs-lighter-black);
}

.jb-item-header
{
	padding: 0.5rem 3rem 0.5rem .5rem;
	min-height: 1rem;
	font-weight: 1;
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
	border: 0;
	border-radius: .5rem;
	background: var(--bs-light-gray);
	width: 100%;
	text-align: left;
}

.jb-item-header p
{
	font-size: clamp(1.125rem, 1vw, 1.25rem);
	font-family: var(--bs-font-stack);
	font-weight: lighter;
	margin: 0;
}

.jb-item-header::after
{
	content: "\002B";
	font-size: 1.5rem;
	position: absolute;
	right: 1rem;
	transition: transform 0.2s ease-in-out;
}

.jb-item-header.active::after
{
	transform: rotate(45deg);
}

.jb-item-body
{
	max-height: 0;
	overflow: hidden;
	transition: max-height 650ms ease-in-out;
}

.jb-item-content
{
	padding: .5rem;
	line-height: 1.5rem;
}

.jb-item-content ul
{
	padding: 0;
	margin: 0 0 0.625rem 1.25rem;
}

.jb-item-content p
{
	margin-top: 0.625rem;
	margin-bottom: 0.625rem;
}

.sp-underline
{
	text-decoration: underline;
	text-decoration-color: hsla(219,79%,66%,1);
	text-decoration-style: double;
	text-decoration-skip-ink: none;
}

@media (max-width: 85.375em) /* 1366px */
{
	.quote-text
	{
		width: 100%;
	}
}

/*-------------------------Careers Page Styling-------------------*/

/*-------------------------Our Science Page Styling---------------*/

.os-wrapper
{
	display: grid;
	margin-left: 5px;
	grid-template-columns: 1fr;
	gap: 1rem;
	font: var(--bs-font-stack);
	font-size: 1.063rem;
	line-height: 1.5rem;
}

.os-wrapper div p
{
	margin: 0;
}

.os-wrapper:last-child
{
	margin-bottom: 0.5rem;
}

.sc-heading h1
{
	font: var(--bs-font-stack);
	font-size: 1.5rem;
	margin-top: 1rem;
	margin-bottom: 0;
}

.pub-line
{
	height: 1px;
	border-top: 1px solid var(--bs-lighter-gray);
	display: block;
	position: relative;
	top: 1px;
	width: 80%;
	margin: 1rem auto 1rem auto;
}

.pub-line-sep
{
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
}

#sc-2 ul ,#sc-3 ul
{
	list-style: none;
	padding: 0;
	margin: 0;
}

#sc-1,#sc-2,#sc-3,#sc-4,#sc-5,#sc-6,#sc-7,#sc-8,#sc-9,#sc-10
{
	margin-bottom: 0.5rem;
}

#sc-1,
#sc-2,
#sc-5
{
	text-align: justify;
}

#sc-8 h1
{
	margin-top: 0;
}

#sc-9 p
{
	text-align: left;
}

#sc-9 a
{
	color: var(--bs-light-green);
	text-decoration-skip-ink: none;
}

#sc-9 a:hover
{
	filter: brightness(1.10);
	text-decoration: none;
}

.sc-dem-size
{
	height: 25rem;
}

.ol-col
{
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 10% 90%;
}

.ol-header
{
	font: var(--bs-font-stack);
	color: var(--bs-light-green);
	text-align: center;
	margin-top: 0;
}

@media (min-width: 17.5em) /* 280px */
{
	#sc-1,#sc-4,#sc-5,#sc-2,#sc-3,#sc-6,#sc-7,#sc-8,#sc-9,#sc-10
	{
		grid-column: 1 / -1;
	}

	#sc-3
	{
		margin: auto;
	}

	#sc-9 p:nth-child(1)
	{
		margin-bottom: 0rem;
	}

	.sc-dem-size
	{
		width: 100%;
		height: auto;
	}
	
	.os-wrapper
	{
		width: 95%;
		margin: auto;
	}
}

@media (min-width: 48em) /* 768px */
{
	.os-wrapper
	{
		display: grid;
		margin: auto;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(4,minmax(auto,auto));
		column-gap: 1rem;
		justify-content: center;
	}

	.sc-dem-size
	{
		height: 25rem;
	}
}

@media (min-width: 64em) /* 1024px */
{
	.os-wrapper
	{
		width: 75rem;
		grid-template-rows: auto auto auto auto auto auto;
	}

	.sc-dem-size
	{
		width: auto;
	}

	#sc-1
	{
		grid-column: 1/3;
		grid-row: 2/3;
	}

	#sc-2
	{
		grid-column: 1/3;
		grid-row: 4/5;
	}

	#sc-3
	{
		grid-column: 2/3;
		grid-row: 4/5;
	}

	#sc-4
	{
		grid-column: 1/3;
		grid-row: 1/2
	}

	#sc-5
	{
		grid-column: 1/3;
		grid-row: 6/7
	}

	#sc-6
	{
		grid-column: 1/3;
		grid-row: 3/4;
		text-align: center;
	}

	#sc-7
	{
		grid-column: 1/3;
		grid-row: 5/6;
		text-align: center;
	}

	#sc-8
	{
		grid-column: 1/3;
		grid-row: 8/9;
	}

	#sc-9
	{
		grid-column: 1/3;
		grid-row: 9/10;
	}

	#sc-10
	{
		grid-column: 1/3;
		grid-row: 7/8;
	}
}

/*-------------------------Our Science Page Styling---------------*/

/*-------------------------People Page Styling-------------------*/

.people-heading
{
	font-size: 1.5rem;
	font-family: var(--bs-font-stack);
	font-weight: 50;
}

.people-heading h4
{
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.people-wrapper
{
	display: grid;
	grid-template-columns: 1fr 2fr;
}

.toggle-people
{
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(3,2rem);
	width: 50%;
	height: auto;
	grid-row: span 6;
	margin-left: 13rem;
	margin-top: 3.5rem;
	row-gap: 0.5rem;
	justify-content: center;
	align-items: center;
}

.active-tab
{
	filter: brightness(1.10);
}

.active-li
{
	filter: brightness(1.10)
}

.toggle-people li
{
	list-style: none;
	background: var(--bs-light-green);
}

.toggle-people li:hover
{
	filter: brightness(1.10);
}

.toggle-people li a
{
	text-decoration: none;
	display: block;
	text-transform: uppercase;
	color: hsla(0, 0%, 92%, 1);
	padding-left: 1rem;
	margin: 0;
}

.people-content
{
	display: grid;
	max-height: 2000px;
	height: inherit;
}

.lp-photo
{
	margin: auto;
	max-width: 250px;
	max-height: 250px;
	width: 200px;
	height: 200px;
}

.lp-photo-size
{
	width: 200px;
	height: 200px;
}

.lp-person
{
	background: var(--bs-light-gray);
	text-align: center;
	margin: 0.313rem;
}

.lp-person p
{
	margin: 0;
	line-height: 1.5rem;
	position: relative;
}

.lp-line-container
{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
}

.lp-line-container .lp-line-segment
{
	height: 1px;
	position: relative;
	flex: 1 1 auto;
	min-width: 28%;
}

.lp-line-segment .lp-line
{
	border-top-width: 2px;
}

.lp-line-container .lp-line-segment .lp-line
{
	border-color: var(--bs-lighter-gray);
}

.lp-line-container .lp-line-segment .lp-line
{
	height: 1px;
	border-top: 1px solid var(--bs-lighter-gray);
	display: block;
	position: relative;
	top: 1px;
	width: 100%;
}

.lp-line
{
	border-color: var(--bs-lighter-gray);
}

.lp-line-container h4
{
	padding: 0.5rem;
	font: var(--bs-font-stack);
	font-size: 1.29rem;
	text-align: center;
}

.people-line
{
	height: 1px;
	border-top: 1px solid var(--bs-lighter-gray);
	display: block;
	position: relative;
	top: 1px;
	width: 80%;
	margin: 1rem auto 1rem auto;
}

.lp-person-text, .lp-person-text a
{
	color: var(--bs-light-green);
	font-size: 1.2rem;
}

.lp-person-text a
{
	text-decoration: none;
}

.lp-person-text a:hover
{
	text-decoration: underline;
	filter: brightness(1.10);
	text-decoration-skip-ink: none;
}

#mikeg-content p span br
{
	display: block;
}

#mikeg-content .lp-person,
#seth-content .lp-person,
#sanna-content .lp-person,
#brittany-content .lp-person
{
	height: auto;
}

.lp-person-title
{
	font-style: italic;
	font-weight: bold;
}

.text-read-more br
{
	display: block;
	margin-bottom: 1rem;
}

.lp-info
{
	opacity: .8;
	font: var(--bs-font-stack);
	line-height: 1.5rem;
	font-size: 1.063rem;
}

.lp-info p
{
	margin: 0;
}

.lp-info a
{
	text-decoration: none;
	color: var(--bs-light-green);
}

.lp-info a:hover
{
	filter: brightness(1.10);
	text-decoration: underline;
	text-decoration-skip-ink: none;
}

.lp-social
{
	margin: 1rem 0 0.625rem 0.625rem;
}

.lp-icon
{
	width: 25px;
	height: 25px;
}

.lp-grid
{
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(6,auto);
}

.lp-grid:last-child
{
	margin-bottom: 1rem;
}

linked-in svg path
{
	fill: hsla(229, 6%, 34%, 1);
}

@media (max-width: 17.5em) /* 280 px */
{
	#mike-content .lp-person
	{
		height: 6.65rem;
	}
}

@media (min-width: 17.5em) /* 280 px */
{
	.people-wrapper
	{
		grid-template-columns: 1fr;
	}

	.toggle-people
	{
		width: 15.8rem;
		margin: 2rem auto auto auto;
	}

	.people-heading
	{
		margin: auto;
		width: 98%;
	}

	.people-content
	{
		grid-template-columns: 1fr;
		grid-template-rows: auto auto 1fr;
	}

	.lp-sc-media
	{
		position: absolute;
		top: 105%;
		left: 45%;
		height: 25px;
		width: 25px;
	}

	.lp-info
	{
		margin: 0 0.313rem;
	}

	.lp-photo
	{
		margin-bottom: 1rem;
	}

	.people-line
	{
		width: 98%;
	}

	.text-read-more
	{
		display: none;
	}

	.show-more-btn
	{
		display: inline-block;
		color: var(--bs-light-green);
		font: var(--bs-font-stack);
		cursor: pointer;
		position: relative;
		z-index: 1;
	}
}

@media (min-width: 17.5em) and (max-width: 89.9375em) /* 280px to 1439px*/
{
	.wide-screen-text
	{
		display: none;
	}
}

@media (min-width: 22.5em) /* 360px */
{
	#mikeg-content p .lp-person-title br
	{
		display: none;
	}
}

@media (max-width: 24.9375em) /* 399px*/
{
	.lp-person
	{
		height: 5rem;
	}

	#peter-content .lp-person,
	#jessica-content .lp-person,
	#robin-content .lp-person
	{
		height: 6.6rem;
	}
}

@media (min-width: 25em) /* 400px */
{
	#peter-content .lp-person .lp-sc-media, 
	#jessica-content .lp-person .lp-sc-media, 
	#robin-content .lp-person .lp-sc-media
	{
		top: 30%;
	}

	.lp-sc-media
	{
		position: absolute;
		top: 25%;
		left: 91%;
	}

	.lp-person
	{
		height: auto;
	}
}

@media (min-width: 37.5em) /* 600px */
{
	.lp-person
	{
		margin: 0.313rem;
	}

	.lp-person p span br
	{
		display: none;
	}

	#peter-content .lp-person .lp-sc-media, 
	#jessica-content .lp-person .lp-sc-media, 
	#robin-content .lp-person .lp-sc-media
	{
		top: 25%;
	}

	#mikeg-content p .lp-person-title br
	{
		display: block;
	}

	.lp-sc-media
	{
		left: 94.5%;
	}
}

@media (min-width: 50em) /* 800px */
{
	.people-wrapper
	{
		width: 100%;
		margin: 0 auto 0.625rem auto;
		grid-template-columns: 1fr;
	}

	.people-heading
	{
		margin: auto;
		width: 95%;
	}

	.toggle-people
	{
		margin: 2rem auto 0.5rem auto;
	}

	.people-content
	{
		width: 95%;
		grid-template-columns: 12.6rem 1fr;
		grid-template-rows: auto 1fr;
		margin-top: 1rem;
		margin-bottom: 0.313rem;
		margin: auto;
		column-gap: 1rem;
	}

	.lp-photo
	{
		margin: 0.313rem auto 0.313rem 0;
		grid-row: span 3;
	}

	.lp-person
	{
		width: 99%;
		grid-column: 2;
	}

	.lp-info
	{
		width: 95%;
		grid-column: 2/3;
		grid-row: 2/4;
	}

	.lp-sc-media
	{
		left: 93%;
	}

	.sticky-footer-people
	{
		margin-top: auto;
	}

	.people-line
	{
		width: 95%;
	}
}

@media (min-width: 64em) /* 1024px */
{
	.lp-sc-media
	{
		left: 94.5%;
	}
}

@media (max-height: 67.5em) /* 1080px */
{
	#content-wrap
	{
		margin: 0;
	}

	.sticky-footer-people
	{
		margin-top: auto;
	}
}

@media (min-width: 80em) /* 1280px */
{
	.people-wrapper
	{
		width: 100%;
		grid-template-columns: 25% 75%;
	}

	.people-content
	{
		width: 95%;
		margin: auto;
	}

	.people-heading
	{
		margin: auto;
	}

	.toggle-people
	{
		margin: 2rem auto 0.5rem 4.5rem;
	}

	.lp-sc-media
	{
		left: 91%;
	}
}

@media (min-width: 85.375em) /* 1366px */
{
	.people-content
	{
		column-gap: 1rem;
		row-gap: 0.5rem;
	}

	.lp-person
	{
		width: 100%;
	}

	.lp-info
	{
		width: 100%;
	}

	.lp-sc-media
	{
		left: 94%;
	}
}

@media (min-width: 90em) /* 1440px */
{
	.people-wrapper
	{
		margin: auto auto 0.625rem auto;
		width: 90rem;
		grid-template-columns: 20% 80%;
	}

	.people-heading
	{
		margin: auto;
	}

	.lp-person
	{
		margin-left: 0;
	}

	.lp-info
	{
		margin-left: 0;
		margin-bottom: 0;
	}

	.toggle-people
	{
		margin-left: 2rem;
	}

	.lp-sc-media
	{
		left: 95%;
	}

	.show-more-btn
	{
		display: none
	}
}

/*-------------------------People Page Styling-------------------*/

/*-------------------------Footer Styling------------------------*/

.sticky-footer
{
	background-color: var(--bs-light-gray);
	width: 100%;
}

.sticky-footer-people
{
	width: 100%;
}

.sticky-footer-people .container
{
	width: 100%;
	background-color: var(--bs-light-gray);
}

.footer-contact
{
	flex: 0 0 50%;
	align-self: center;
	margin: auto;
	font-family: var(--bs-font-stack);
	font-size: 0.75rem;
}

.footer-contact p
{
	margin: 1rem;
	margin-bottom: 0;
	text-align: center;
	line-height: 1.5rem;
}

.footer-contact p a
{
	text-decoration: underline;
	color: var(--bs-light-green);
	text-decoration-skip-ink: none;
}

.footer-contact p a:hover
{
	text-decoration: none;
	filter: brightness(1.10);
}

.footer-contact-us
{
	font-size: 0.875rem;
}

.work-btn
{
	display: inline-block;
  	vertical-align: middle;
  	cursor: pointer;
}

.rounded-circle 
{
	border-radius: 50%;
}

.footer-heading
{
	flex: 0 0 100%;
	margin: auto;
	text-align: center;
	font-family: var(--bs-font-stack);
	font-size: 1.163rem;
}

.footer-heading p
{
	margin-top: 0.9375rem;
	margin-bottom: 0;
}

.join-btn
{
	margin: auto;
	text-align: center;
	border-radius: 50%;
	border: 1px solid var(--bs-lighter-black);
}

.footer-divider
{
	flex: 0 0 90%;
	margin: auto;
	padding-top: 0.9375em;
	text-align: center;
}

.footer-divider hr
{
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid var(--bs-lighter-gray);
}

.copy-text
{
	flex: 0 0 50%;
	margin: auto;
	text-align: center;
	font-family: var(--bs-font-stack);
	font-size: 0.625rem;
}

@media (max-width: 85.375em) /* 1366px */
{	
	.sticky-footer .container
	{
		width: 100%;
		margin-bottom: 0;
	}
}

@media (max-width: 80em) /* 1280px */
{	
	.sticky-footer .container
	{
		width: 100%;
	}
}

@media (max-width: 48em) /* 768px */
{	
	.footer-heading
	{
		flex: 0 0 100%;
	}

	.footer-contact
	{
		flex: 0 0 100%;
	}
	
	.copy-text
	{
		flex: 0 0 100%;
	}
}

/*-------------------------Footer Styling------------------------*/