#wrap {
	max-width: none;
}

#main {
	padding-left: 0;
	padding-right: 0;
}

.box {
	padding: 60px 0;
}

.box:first-child {
	padding-top: 0;
}

.box:last-child {
	padding-bottom: 0;
}

.box > div {
	padding: 0 100px;
	max-width: 1500px;
	margin: 0 auto;
}

.box.yellow {
	background-color: #f8ead7;
}

#staff > h2 {
	text-align: center;
}

#staff > h3 {
	margin-bottom: 32px;
	border-bottom: 1px solid rgba(0, 0, 0, .25);
}

.employee-wrap {
	margin-bottom: 90px;
	display: flex;
	flex-wrap: wrap;
	gap: clamp(30px, 3vw, 80px);
	justify-content: space-evenly;
}

#staff .employee-wrap:last-child {
	margin-bottom: 0;
}

.employee {
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	align-items: center;
	margin-bottom: 32px;
	max-width: 250px;
}

.employee > div:first-child {
	max-width: 250px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 18px;
}

.employee > div:last-child {
	text-align: center;
	flex: 1;
	display: flex;
	flex-direction: column;
	font-size: .85em;
	line-height: 1.5em;
}

body.is-phone .employee > div:last-child {
	font-size: 1em;
}

.employee .info > div:first-child {
	font-size: 1.2em;
	margin-bottom: 12px;
}

.languages {
	display: flex;
	gap: 10px;
	justify-content: center;
	line-height: 1;
	margin-bottom: 5px;
}

.languages svg {
	width: 100%;
	max-width: 23px;
	height: auto;
}

.job-title {
	line-height: 1.3em;
	margin-bottom: 20px;
	color: var(--header-color);
}

.extra-note {
	color: var(--main-color);
}

#our-story img {
	border-radius: 6px;
	margin-bottom: 20px;
	box-shadow: 0 2px 4px 0px rgba(0, 0, 0, .3);
	width: 100%;
}

#our-story img[align=right] {
	margin-left: 50px;
	max-width: 300px;
}

#our-story img[align=left] {
	margin-right: 50px;
	max-width: 300px;
}

/*.button,
body.is-mobile .button:hover {
	max-width: 130px;
	padding: 8px;
}*/

.more {
	padding-top: 10px;
	flex: 1;
	display: flex;
	align-items: end;
}

.info-box {
	background-color: rgba(255, 255, 255, .9);
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% - 12px);
	line-height: 1.3em;
	font-size: .9em;
	padding: 10px;
	box-shadow: 0px 6px 15px -10px rgba(0, 0, 0, .75);
	border-radius: 5px;
	border: 1px solid var(--gray);
	transform: translateY(calc(-100% - 20px));
	transition: transform .35s ease-in-out;
	margin: 0 6px;
	backdrop-filter: blur(5px);
	font-size: 1em;
}

.info-box.open {
	transform: translateY(0);
}

#language-wrap > div {
	margin-top: 80px;
	position: relative;
}

#language-wrap > div::before {
	content: '';
	width: 66.6666%;
	height: 1px;
	border-bottom: 2px solid var(--gray);
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -40px;
}

#family-img {
	margin: 40px auto 0;
	max-width: 1150px;
}

/* ===== MEDIA QUERIES ===== */

@media screen and (max-width: 1023px) {
	.box > div {
		padding: 0 40px;
	}
}

@media screen and (max-width: 700px) {
	.box {
		padding: 0;
	}
	
	.box > div {
		padding: 20px 16px;
	}
		
	.box:not(:last-child) {
		margin-bottom: 60px;
	}
	
	#our-story img[align=right],
	#our-story img[align=left] {
		width: 45%;
		max-width: none;
	}
}

@media screen and (max-width: 450px) {
	#our-story img {
		width: 100%;
	}
	
	#our-story img[align=right] {
		margin-left: 0;
		width: 100%;
	}
	
	#our-story img[align=left] {
		margin-right: 0;
		width: 100%;
	}

	#family-img {
		margin: 0;
	}
}