@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility; 
}

body {
	background: #fff;
	font-family: 'Roboto';
	color: #8e9196;
	font-size: 18px;
	overflow-x: hidden;
}

h1, h2 {
	color: #354052;
	font-weight: 300;
}

h2 span {
	font-weight: 400;
}

.row {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

#home .row, header .row {
	max-width: 1400px;
}

.row-m {
	width: 85%;
	max-width: 1060px;
	margin: 0 auto;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
}

p a, p span {
	color: #464749;
}

/* header */

header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 12;
	background: #fff;
	transition: all 0.4s;
}

header.moved {
	box-shadow: 0 10px 15px -5px rgba(0,0,0,0.1);
}

header + section {
	padding-top: 150px;
}

nav {
	display: flex;
	padding: 40px 0;
	align-items: center;
	justify-content: space-between;
}

nav li {
	list-style-type: none;
	display: inline-block;
	margin-left: 4em;
	font-size: 17px;
}

nav a {
	color: #354052;
	text-decoration: none;
}

.current a {
	color: #f9008e;
}

#menu-button {
	display: none;
}

/* sections */

section {
	width: 100%;
}

section h2 {
	font-size: 50px;
	line-height: 70px;
	letter-spacing: 1.2px;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility; 
}

.columns {
	display: flex;
}

.copy p {
	line-height: 150%;
	font-size: 16px;
}

.button {
	border-radius: 40px;
	background-color: #7877fb;
	box-shadow: 0 30px 50px -20px rgba(120,119,251,0.6);
	padding: 25px 70px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 1.5em;
}

.cta {
	margin-top: 4rem;
}

#home {
	background-image: url('assets/blob-pink.svg');
	background-position: left bottom;
	padding-bottom: 300px;
	background-repeat: no-repeat;
}

#home .gfx {
	flex: 1 1 400px;
}

#home .gfx img {
	position: absolute;
	transition: all 0.5s;
}

#home .gfx img:nth-child(1) {
	margin-left: -50px;
}

#home .gfx img:nth-child(2) {
	margin: 20px 0 0 10px;
}

#home .gfx img:nth-child(3) {
	cursor: pointer;
}

#home .gfx img:focus {
	outline: none;
}

#home .gfx.video-play img:nth-child(1) {
	transform: translateX(40px);
	opacity: 0;
	transition-delay: 0.1s;
}

#home .gfx.video-play img:nth-child(2) {
	transform: translateX(-40px);
	opacity: 0;
	transition-delay: 0.2s;
}

#home .gfx.video-play img:nth-child(3) {
	transform: translateY(40px);
	opacity: 0;
	transition-delay: 0.3s;
}

#home .copy {
	margin: 7em 70px 7em 0;
	flex: 0 0 680px;
}

#home #video {
	opacity: 0;
	pointer-events: none;
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
	transition: all 0.4s;
	transition-delay: 0.5s;
}

#home #video.start {
	opacity: 1;
	pointer-events: visible;
}

#home .copy span {
	white-space: nowrap;
}

#app {
	position: relative;
	margin: 150px 0;
	padding: 0px 0 0 100px;
}

#app:after {
	background-image: url('assets/blob-blue-right.svg');
	height: 1429px;
	width: 643px;
	right: 0;
	top: -300px;
	content:  "";
	z-index: -1;
	position: absolute;
}

#app p {
	line-height: 150%;
	padding-top: 4em;
}

#app .copy {
	flex: 1 1 48%;
}

#app .gfx {
	flex: 1 0 52%;
	position: relative;
	padding-top: 12em;
}

#app .gfx img {
	opacity: 0;
	transform: translateX(50px);
	transition: all 0.4s;
	transition-delay: 0.1s;
}

#app .gfx img + img {
	top: 12em;
	left: 0;
	right: 0;
	margin: 0 auto;
	position: absolute;
}

#app .gfx img.active {
	opacity: 1;
	transform: translateX(0px);
}

#features-list {
	padding-top: 80px;
	padding-left: 30px;
	position: relative;
	z-index: 5;
}

#features-list li {
	list-style-type: none;
	line-height: 80px;
	color: #354052;
	font-size: 24px;
	font-weight: 300;
	cursor: pointer;
	white-space: nowrap;
}

#features-list li.active {
	font-weight: 400;
}

#features-list li:nth-child(3) .icon img {
	margin-right: -6px;
}

#features-list .icon {
	background: #bcc4d3;
	position: relative;
	display: inline-flex;
	width: 43px;
	height: 43px;
	align-items: center;
	justify-content: center;
	border-radius: 40px;
	vertical-align: middle;
	margin-right: 30px;
}

#features-list .active .icon {
	background: #ffaa04;
}

#features-list .icon:before {
	content: "";
	position: absolute;
	background: inherit;
	box-sizing: content-box;
	width: 100%;
	height: 100%;
	padding: 12px;
	top: -12px;
	left: -12px;
	opacity: 0.1;
	border-radius: 40px;
}

#hosting {
	margin: 400px 0;
	position: relative;
}

#hosting .gfx {
	width: 50%;
	padding-right: 10%;
}

#hosting .copy p {
	max-width: 480px;
	margin-top: 4em;
	margin-bottom: 3em;
}

#hosting .gfx:before {
	position: absolute;
	top: -8em;
	left: -30px;
	width: 200px;
	height: 250vh;
	z-index: 2;
	content: "";
	background-image: url('assets/blob-medium-left.svg');
	background-repeat: no-repeat;
	background-position: left top;
	background-size: contain;
}

#hosting .gfx:after {
	position: absolute;
	z-index: 1;
	top: -55vh;
	left: 0;
	width: 45%;
	height: 200vh;
	content: "";
	background-image: url('assets/blob-big-left.svg');
	background-repeat: no-repeat;
	background-position: left top;
	background-size: contain;
}

#hosting .gfx img {
	width: 400px;
	position: relative;
	z-index: 4;
}

.check-list li {
	list-style-type: none;
	display: inline-flex;
	align-items: center;
	padding: 10px 30px 10px 10px;
	line-height: 24px;
	border: 1px solid #E7E7E7;
	border-radius: 30px;
	color: #4b5264;
	font-size: 20px;
	margin-right: 2rem;
}

.check-list li img {
	display: block;
	margin-right: 25px;
	vertical-align: middle;
}

#payment, #benefits {
	background-image: url('assets/blob-pink-right.svg');
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: contain;
	padding-bottom: 380px;
	position: relative;
}

#benefits {
	background-size: 100px auto;
	padding-bottom: 500px;
	margin-bottom: -200px;
}

#payment:before {
	background-image: url('assets/blob-pink-floating.svg');
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: contain;
	content: "";
	top: -20px;
	width: 120px;
	height: 180px;
	right: 160px;
	position: absolute;
}

#payment .copy p {
	max-width: 600px;
	margin-top: 4em;
	margin-bottom: 3em;
}

#recommendations {
	text-align: center;
}

#recommendations .copy {
	margin: 0 auto;
}

#recommendations p {
	margin: 5em auto 10em;
	max-width: 860px;
}

#recommendations #logos {
	margin-bottom: 5em;
	justify-content: space-between;
	align-items: center;
}

#recommendations #logos img {
	max-height: 80px;
	filter: grayscale(1);
}


/* ---------- careers -------- */

.columns.overlay {
	text-align: center;
	flex-direction: column;
	position: relative;
}

#banking .gfx {
	max-width: calc(100% + 200px);
	margin: 100px -100px;
	position: relative;
}

#banking .gfx img:nth-child(1) {
	float: left;
	width: 60%;
	margin-right: -15%;
	margin-top: 5%;
}

#banking .gfx img:nth-child(2) {
	float: right;
	width: 50%;
	margin-left: -20%;
	margin-top: -3%;
}

#banking .gfx img:nth-child(3) {
	width: 96%;
	top: 10%;
	position: absolute;
	left: 2%;
}

#banking h2 {
	font-size: 70px;
	line-height: 90px;
	position: absolute;
	top: 150px;
	width: 100%;
	z-index: 4;
	letter-spacing: 2px;
}

#mission {
	padding-top: 150px
}

#mission .columns {
	justify-content: space-between;
}

#mission .gfx {
	max-width: 750px;
	margin-right: -10%;
}

#mission .copy {
	max-width: 550px;
}

#mission h2 {
	letter-spacing: 1px;
}

#mission p {
	margin-top: 3em;
	max-width: 500px;
	font-size: 18px;
}

#mission p ~ p {
	margin-top: 1em;
}

#join {
	background-image: url('assets/c-bg.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
	text-align: center;
	margin-bottom: -20vw;
}

#join:before {
	display: block;
	padding-top: 30%;
	content: "";
}

#join:after {
	display: block;
	padding-top: 40%;
	content: "";
}

#join .gfx {
	background-image: url('assets/c-blob-bg.svg');
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	margin-left: -150px;
}

#join .gfx img {
	width: 160px;
	margin: 130px 100px 130px 60px;
}

.bg {
	color: #fff;
}

.bg h2 {
	color: inherit;
}

#join .row-m {
	max-width: 700px;
}

#join p {
	padding: 1em 0 6em;
}

.reasons {
	width: calc(50% - 2rem);
	border-radius: 23px;
	border: 1px solid #8F8EFA;
	padding: 20px;
	font-size: 16px;
	text-align: left;
	line-height: 21px;
	position: relative;
}

.reasons:nth-of-type(2n):after {
	content: "";
	width: 1px;
	background: #8F8EFA;
	height: 100%;
	position: absolute;
	left: -2rem;
	margin-left: -1px;
	top: 10px;
}

.reasons:nth-of-type(2n):before {
	content: "";
	width: 7px;
	background: rgba(255,255,255,1);
	height: 7px;
	border-radius: 35px;
	position: absolute;
	left: -2rem;
	margin-left: -18px;
	z-index: 1;
	border: 14px solid #7877FB;
	top: 4px;
}

.reasons:nth-of-type(2n + 1):after {
	content: "";
	width: 1px;
	background: #8F8EFA;
	height: 100%;
	position: absolute;
	right: -2rem;
	margin-right: -2px;
	top: 10px;
}

.reasons:nth-of-type(2n + 1):before {
	content: "";
	width: 7px;
	background: rgba(255,255,255,1);
	height: 7px;
	border-radius: 35px;
	position: absolute;
	right: -2rem;
	margin-right: -19px;
	z-index: 1;
	border: 14px solid #7877FB;
	top: 4px;
}

.reasons:last-child:after {
	display: none;
}

.reasons:nth-of-type(2n) {
	margin-left: auto;
	padding-left: 50px;
}

.reasons:nth-of-type(2n+1) {
	padding-right: 50px;
}

.reasons img {
	position: absolute;
}

.reasons:nth-of-type(2n+1) img {
	top: 10px;
	right: 10px;
}

.reasons:nth-of-type(2n) img {
	top: 10px;
	left: 10px;
}

.perk-list {
	display: flex;
	flex-wrap: wrap;
}

.perk-list li {
	list-style-type: none;
	margin-top: 130px;
	font-size: 24px;
	flex-basis: 33%;
	display: flex;
	align-items: center;
	color: #354052;
}

.perk-list li img {
	margin-right: 1.5em;
	width: 45px;
}

#benefits p {
	margin-top: 4em;
}

#people {
	margin-top: -30vw;
	padding: 20vw 0 140px;
	background-image: url('assets/clob-halftone-left.svg');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 100% auto;
	position: relative;
	z-index: 1;	
	text-align: center;
}

#people:before {
	content: "";
	background-image: url('assets/clob-blue-left.svg');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 250px auto;
	top: -50px;
	width: 100%;
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	z-index: 2;	
	text-align: center;	
}

#people .copy {
	max-width: 850px;
	margin: 0 auto;
}

#people .copy p {
	max-width: 850px;
	font-size: 18px;
	margin: 4em auto;
}

#team {
	text-align: left;
	flex-wrap: wrap;
	margin: 0 -1rem;
}

#team .team {
	margin: 1rem;
	width: calc(20% - 2rem);
}

#team .team img {
	display: block;
	margin-bottom: 2rem;
}

#team .team h4 {
	font-size: 24px;
	font-weight: normal;
	color: #354052;
}

#jobs {
	margin-top: 2em;
}

.job {
	background: #fbfbff;
	border-radius: 20px;
	margin-bottom: 10px;
	padding: 30px 45px;
}

.space {
	flex-grow: 2;
}

#jobs small {
	display: block;
	margin-top: 3rem;
}

.job:focus {
	outline: none;
}

.job.active a {
	transform: rotate(180deg);
}

.job a {
	transition: all 0.3s;
}

.job-icon {
	width: 56px;
}

.job-details {
	display: flex;
}

.job-details h5 {
	font-weight: normal;
	font-size: 18px;
	color: #4b5264;
	letter-spacing: 0.4px;
	margin-bottom: 2em;
}

.job-details div {
	flex: 0 0 50%;
	padding: 50px 56px 0;
	display: none;
}

.active .job-details div {
	opacity: 1;
	transform: translateY(0);
}

.job-summary {
	align-items: center;
}

.job-summary h4 {
	font-weight: normal;
	font-size: 20px;
	color: #4b5264;
	letter-spacing: 0.4px;	
	margin-right: 2rem;
}

.job-summary .location {
	font-size: 16px;
	color: #71757b;
}

.job li {
	margin-left: 40px;
	position: relative;
	font-size: 14px;
	line-height: 20px;
	margin-top: 1em;
	list-style-type: none;
}

.job li:before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 5px;
	top: 5px;
	left: -40px;
	position: absolute;
	background: #ffb626;
}

/* ---------- footer --------- */

footer {
	padding: 230px 0 140px;
	background-image: url('assets/blob-blue-bottom.svg');
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: auto 80%;
	position: relative;
	z-index: 3;
}

footer p {
	line-height: 30px;
	margin-top: 40px;
}

footer a {
	color: inherit;
}

footer li {
	list-style-type: none;
	line-height: 21px;
	margin-top: 15px;
}

footer .about {
	flex-grow: 2;
}

footer .links ~ .links {
	border-left: 2px solid rgba(158, 173, 198, 0.3);
	padding-left: 75px;
	margin-left: 100px;
}

footer .links p {
	line-height: 21px;
}

footer .links .icon {
	width: 20px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 15px;
	text-align: center;
	line-height: 21px;
}

footer .about img {
	height: 50px;
}

footer h4 {
	color: #4b5264;
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 40px;
}

@media screen and (max-width: 1450px) and (min-width: 1301px) {

	#home .gfx {
		flex: 1 1 320px;
		position: relative;
		margin-right: -150px;
	}

	footer {
		background-size: auto 30%;
	}

}

/* tablet */

@media screen and (max-width: 1300px) and (min-width: 751px) {

	body {
		font-size: 15px;
	}

	.row {
		width: 1000px;
		max-width: 90%;
	}

	.row-m {
		width: 800px;
		max-width: 85%;
	}

	.columns {
		flex-wrap: wrap;
	}

	#home {
		background-position: left 150px;
		padding-bottom: 100px;
	}

	#home .copy {
		margin: 5rem auto;
		text-align: center;
	}

	#home .gfx {
		max-width: 750px;
		margin: 0 auto;
	}

	#app {
		padding-left: 0
	}

	#app .copy {
		min-width: 80%;
	}

	#app p {
		max-width: 500px;
	}

	#app:after {
		top: 30%;
		width: 50%;
	}

	.check-list li {
		margin-bottom: 1rem;
	}

	#hosting .gfx:before {
		width: 15%;
	}

	#hosting .gfx:after {
		top: -42vw;
		left: 0;
		width: 65%;
		height: 200vh;
	}

	#hosting .gfx {
		margin-bottom: 20vw;
	}

	#hosting {
		margin: 200px 0;
		padding: 0 50px 0 25%;
	}

	#payment {
		padding: 0 35% 15vw 10%;
	}

	#payment:before {
		width: 10%;
	}

	#join, #people {
		background-size: auto 100%;
		margin-top: -300px
	}

	#join {
		position: relative;
		background-position: right center;
	}

	#join .gfx {
		bottom: 1%;
		right: 14%;
	}

	#join .gfx img {
		width: 140px;
		margin: 100px 70px;
	}

	#join:after {
		padding-top: 40%;
	}

	#join:before {
		padding-top: 60%;
	}

	#people:before {
		background-size: 100px auto;
	}

	#benefits {
		background-size: 50px auto;
		padding-bottom: 200px;
		margin: 180px 0;
	}

	.perk-list li {
		font-size: 15px;
		margin-top: 40px;
	}

	.perk-list li img {
		width: 40px;
	}

	footer {
		background-size: 20% auto;
		padding: 100px 0;
	}

	footer .links ~ .links {
		padding-left: 30px;
		margin-left: 30px;
	}

	footer .about img {
		height: 30px;
	}

	#recommendations p {
		margin-bottom: 5em;
	}

	#recommendations #logos {
		justify-content: center;
	}

	#recommendations #logos img {
		max-height: 40px;
		margin: 2rem;
	}
}

/* mobile */

@media screen and (max-width: 750px) {

	img {
		max-width: 100%;
		height: auto;
	}

	.row, .row-m {
		padding: 23px;
		width: 100%;
	}

	.copy {
		text-align: center;
	}

	nav img {
		height: 23px;
		display: block;
	}

	#menu-button {
		width: 40px;
		height: 40px;
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		position: relative;
		z-index: 6;
	}

	#menu-button span, #menu-button:before, #menu-button:after {
		content: "";
		display: block;
		width: 24px;
		height: 2px;
		transition: all 0.3s;
		background: #666777;
	}

	#menu-button.active:before {
		transform: rotate(45deg);
		transform-origin: 2px 7px;
		background: #fff;
	}

	#menu-button.active:after {
		transform: rotate(-45deg);
		transform-origin: 3px -4px;
		background: #fff;
	}

	#menu-button span {
		margin: 6px 0;
	}

	#menu-button.active span {
		background: #fff;
		width: 0;
		opacity: 0;
	}

	#top-menu {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: -100vh;
		z-index: 2;
		background: #7877FB;
		transition: all 0.4s;
		padding: 50px;
	}

	#top-menu.open {
		left: 0;
	}

	nav li {
		display: block;
		margin-left: 0;
		font-size: 24px;
		line-height: 40px;
		margin-bottom: 20px;
	}

	nav li a {
		color: #fff;
	}

	nav li.current a {
		color: #EDEDFF;
	}

	.columns {
		display: block;
	}

	section h2 {
		font-size: 23px;
		line-height: 30px;
		letter-spacing: 0.7px;
		margin: 0 -23px;
	}

	#home {
		background: #fff;
		padding-bottom: 0;
	}

	#home .copy {
		margin: 0 0 30px;
		text-align: center;
	}

	#home .copy .cta {
		display: none;
	}

	#home .gfx {
		margin: 0 -23px;
		overflow: hidden;
		position: relative;
		padding-top: 50px;
		z-index: 0;
		margin-top: -50px;
		padding-bottom: 150px;
		margin-bottom: -120px;
	}

	#home .gfx img:nth-child(2) {
		max-width: 157vw;
		margin-left: -53vw;
		margin-top: 0;
		bottom: 20px;
		max-height: 80%;
	}

	#home .gfx img:last-child {
		position: relative;
		max-width: 120vw;
		margin-left: -5vw;
		display: block;
	}

	#home .gfx img:nth-child(1) {
		max-width: 180vw;
		margin-left: 0;
		left: 0;
		bottom: 60px;
		max-height: 80%;
	}

	.copy p {
		font-size: 14px;
		margin: 2em 0;
	}

	.job-summary {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		text-align: center;
	}

	.job-summary h4 {
		margin: 1em 0;
		font-size: 16px;
		font-weight: 500;
	}

	.location {
		font-size: 14px;
		padding-bottom: 1em;
	}

	.job-details div {
		padding: 0 0 50px;
	}

	.job-details.columns {
		display: none;
	}

	.job:focus .job-details.columns {
		display: block;
	}

	#app {
		padding-left: 0;
		text-align: center;
		margin: 80px 0 0;
	}

	#app:after {
		width: 70vw;
		height: 95vh;
		top: unset;
		bottom: 0vh;
		background-position: right bottom;
		background-size: contain;
		background-repeat: no-repeat;
		display: none;
	}

	#app .gfx {
		padding-top: 0px;
		margin-top: 5rem;
		text-align: center;
		padding-bottom: 30vh;
		display: none;
	}

	#app .gfx img + img {
		top: 0;
		max-height: 100%;
	}

	#features-list {
		padding-left: 0;
	}

	#features-list li .icon {
		display: flex;
		margin: 0 auto 20px;
		border-radius: 100px;
		width: 80px;
		height: 80px;
	}

	#features-list li .icon:before {
		border-radius: 100px;
	}

	#features-list li .icon img {
		width: 40px;
		height: 40px;
	}

	#features-list li {
		white-space: normal;
		margin: 0 20px 50px;
		font-size: 16px;
		text-align: center;
		line-height: 22px;
	}

	#hosting .columns {
		display: flex;
		text-align: center;
		flex-direction: column;
	}

	#hosting .columns .gfx {
		order: 2;
		padding-right: 0;
		position: relative;
		margin: 0 -23px;
		width: 100%;
	}

	#hosting .gfx img {
		width: 50%;
		margin: 150px auto;
		display: block;
	}

	#hosting .gfx:before {
		position: absolute;
		top: 20%;
		left: 0;
		width: 20%;
		height: 140%;	
		z-index: -1;
	}

	#hosting .gfx:after {
		position: absolute;
		top: -5%;
		left: 0;
		width: 100%;
		height: 200%;	
		z-index: -2;
	}

	.check-list {
		text-align: left;
		margin: 0 25px;
	}

	.check-list li {
		font-size: 16px;
		display: flex;
		margin: 14px 0 0;
	}

	#hosting {
		margin: 30px 0 0;
	}

	#payment {
		background-size: 10%;
		padding-bottom: 250px;
		margin-bottom: -200px;
	}

	#payment:before {
		top: 50%;
		width: 23px;
		height: 180px;
		right: 50px;
	}

	#recommendations h2 {
		width: 200px;
		margin: 50px auto 0;
	}

	#recommendations p {
		margin: 5em 0 2em;
	}

	#logos {
		background: #fbfbfc;
		padding: 20px;
	}

	#banking {
		width: 100%;
		overflow: hidden;
		position: relative;
	}

	#banking h2 {
		font-size: 24px;
		line-height: 33px;
		position: relative;
		top: 0;
		margin-bottom: -130px;
	}

	#banking .gfx {
		background-size: 100% auto;
		background-position: center bottom;
		background-image: url('assets/c-mobile.svg');
		background-repeat: no-repeat;
		max-width: calc(100% + 46px);
		margin: 0px -23px;
		padding: 150px 0;

	}

	#banking .gfx img:nth-child(1) {
		float: left;
		position: relative;
		z-index: -1;
		max-width: 150%;
		width: 110%;
		margin-left: -25%;
		margin-right: -15%;
		margin-top: 0%;
	}

	#banking .gfx img:nth-child(2) {
		float: right;
		width: 90%;
		margin-right: -40%;
		margin-left: -20%;
		margin-top: -24%;
		position: relative;
		z-index: -1;
	}

	#banking .gfx img:nth-child(3) {
		display: none;
	}

	#mission {
		padding-top: 0;
	}

	#mission .copy p {
		font-size: 14px;
	}

	#mission .gfx {
		margin: 4em 0 0;
	}

	#join {
		background-size: auto 100%;
		background-position: right top;
		position: relative;
	}

	#join .gfx {
		bottom: 20px;
		margin-left: 0;
		right: 50px;
	}

	#join .gfx img {
		width: 80px;
		margin: 75px 50px 65px 30px;
	}

	#reasons {
		padding-top: 30px;
		display: flex;
		overflow-x: auto;
		padding-bottom: 50px;
	}

	#join:before {
		padding-top: 60%;
	}

	#join {
		margin-bottom: 0;
	}

	#join p {
		padding: 1em 0 2em;
	}

	.reasons {
		min-width: 100%;
		margin-right: 10px;
		padding: 15px;
	}

	.reasons:nth-of-type(2n+1) {
		padding-right: 15px;
	}

	.reasons:nth-of-type(2n) {
		padding-left: 15px;
	}

	#reasons .reasons:before {
		right: unset;
		left: 9px;
		top: -40px;
	}

	#reasons .reasons:after {
		right: unset;
		left: 9px;
		top: -23px;
		width: 110%;
		height: 1px;
	}

	.reasons img {
		display: block;
		position: static;
		margin-bottom: 10px;
	}

	#benefits h2, #people h2 {
		width: 200px;
		margin: 0 auto;
	}

	#benefits p {
		margin-top: 1em;
	}

	#benefits {;
		margin: -100px 0 0;
		padding: 150px 0 80px;
		background-image: url('assets/blob-pink-left.svg');
		background-position: top left;
		background-size: 12% auto;
	}

	#people:before {
		display: none;
	}

	#people {
		background-size: auto 100%;
		padding-bottom: 20px;
	}

	#people .copy p {
		font-size: 14px;
		margin: 2rem 0;
	}

	#team {
		overflow-x: auto;
		display: flex;
		flex-wrap: nowrap;
	}

	.team {
		min-width: 160px;
		text-align: center;
		padding-bottom: 2em;
		font-size: 16px;
	}

	.team h4 {
		font-size: 20px;
		margin-bottom: 0.5em;
	}

	.team img {
		margin: 0 20px;
		width: 120px;
	}

	.perk-list {
		display: block;
	}

	.perk-list li {
		font-size: 16px;
		margin-top: 40px;
		margin-left: 10%;
	}

	.perk-list img {
		width: 30px;
		margin-right: 3em;
	}

	footer {
		font-size: 14px;
		padding: 80px 30px 150px;
		background-image: url('assets/blob-blue-footer.svg');
		background-position: -40% 140%;
		background-size: 150% 50%;
	}

	footer h4 {
		font-size: 18px;
		color: #354052;
		letter-spacing: 0.5px;
	}

	footer .about img {
		height: 30px;
	}

	footer .about p {
		position: absolute;
		font-size: 12px;
		line-height: 16px;
		bottom: 100px;
	}

	footer .links ~ .links, footer .links {
		margin: 40px 0;
		padding: 0;
		border-left: 0;
	}

	footer .links:nth-child(2) ul {
		column-count: 3;
	}

	footer .links:nth-child(2) ul li {
		margin: 0 0 15px;
	}

	#typed-strings {
		display: block;
	}

}