html {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

body {
  margin: 0;
	font-family: "Archivo", sans-serif;
}

.section {
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-type: y proximity;
}

#intro {
	background: #222E50;
	text-align: left;
	align-content: center;
}

#intro > div {
	margin: 0 auto;
	max-width: 640px;
}

#logo {
	max-width: 100%;
}

#fullpage #intro p {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 400;
	border-top: 1px solid #fff;
	padding-top: 3rem;
	margin-top: 4rem;
	line-height: 1.35;
}

#fullpage {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

#about {
	background: #222E50;
}

#about .row > div:first-child {
	background-image: url('../img/sy.svg');
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 50%;
	height: 100vh;
}

#about .row .orange {
	background: #FAA41F;
	height: 100vh;
	align-content: center;
}

#fullpage .row > div {
	padding: 0;
	margin: 0;
}

h1 {
	color: #fff;
	text-transform: uppercase;
	font-size: 4rem;
	font-weight: 700;
	padding-bottom: 2rem;
}

h2 {
	color: #fff;
	text-transform: uppercase;
	font-size: 4rem;
	font-weight: 700;
	padding-bottom: 2rem;
}

#fullpage p {
	color: #fff;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
	font-weight: 300;
}

.wrap {
	padding: 4rem;
}

.col-sm-6 .wrap {
	max-width: 640px;
}

.orange h2,
#fullpage .orange p {
	color: #000;
}

.row {
	margin: 0;
}

#florida {
	background-image: url(../img/florida.png);
	background-position: right bottom;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 4rem;
}

#fullpage #florida h2 {
	color: #000;
}

#florida p {
	max-width: 50%;
	color: #000;
}

#fullpage .content {
	align-content: center;
}

#fullpage .content h2,
#fullpage .content p {
	color: #000;
}

#fullpage .content h2 {
	text-transform: none;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	padding: 1rem 0;
	line-height: 1;
	margin-bottom: 4rem;
}

#fullpage .content h4 {
	text-transform: none;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	padding: 1rem 0;
	line-height: 1;
	margin-bottom: 2rem;
	font-size: 2rem;
}

#fullpage .content .wrap {
	padding: 4rem;
}

ul {
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
	font-weight: 300;
	margin-left: 1rem;
}

li {
	padding: 1rem 0;
	list-style: square;
}

.sectionSM li {
	font-size: .9rem;
	padding: .5rem 0;
}

#foot {
	background-image: url(../img/foot.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 4rem;
}

#form h2 {
	text-align: center;
}

#form {
	background: #222E50;
	background-image: url('../img/sy.svg');
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 25%;
	height: 100vh;
	align-content: center;
	color: #fff;
}

#form .wrap {
	margin: 0 auto;
}

form {
	width: 100%;
	margin-top: 2rem;
}

#form label {
	margin: .5rem 0;
	display: block;
	grid-template-columns: 33% 66%;
}

#form input,
#form textarea {
	font-size: 1.125rem;
	background: rgba(0,0,0,.1);
	border: 2px solid #faa41f;
	color: #fff;
	padding: 10px;
	font-family: "Archivo", sans-serif;
	resize: none;
	transition: .5s;
	width: 100%;
}

#form input:focus,
#form textarea:focus {
	border-color: #fff;
	background: rgba(0,0,0,.25);
}

#form textarea {
	min-height: 200px;
}

form .col {
	display: grid;
	grid-template-columns: calc(50% - .5rem) calc(50% - .5rem);
	grid-gap: 1rem;
}

form label span {
	display: block;
	padding-right: 10px;
	padding-top: 12px;
	padding-bottom: 10px;
	text-align: left;
}

form button {
	background: #faa41f;
	color: #000;
	font-size: 1rem;
	padding: 1rem 3rem;
	cursor: pointer;
	border: none;
	transition: .5s;
	font-weight: 900;
	text-transform: uppercase;
	margin-top: 1rem;
}

form button:hover {
	background: #fff;
	color: #000;
}


@media only screen and (max-width: 960px) {

	#fullpage {
		height: auto;
	}

	.section {
		height: auto;
	}

	#intro {
		padding: 6rem 2rem;
	}

	#fullpage #intro p {
		font-size: 1rem;
		padding-top: 1rem;
		margin-top: 2rem;
	}

	h2 {
		font-size: 1.25rem;
	}

	#fullpage p {
		font-size: 1rem;
	}

	.wrap {
		padding: 4rem 2rem;
	}

	#about .row > div:first-child {
		height: auto;
		padding-bottom: 50%;
	}

	#about .row .orange {
		height: auto;
		padding: 4rem 0;
	}

	#florida {
		padding: 4rem 2rem;
		padding-bottom: 100%;
		background-size: 150% auto;
		background-color: #dbdfea;
	}

	#florida p {
		max-width: 100%;
	}

	#fullpage .content .wrap {
		padding: 6rem 2rem;
	}

	ul {
		font-size: 1rem;
	}

	#fullpage .content h4 {
		font-size: 1rem;
	}

	form .col {
		display: block;
	}

}