/* ==========================================================================
   General
   ========================================================================== */
html, body {
	min-height: 100%;
	width: 100%;
	font-family: "Roboto";
/* 	font-family: "Helvetica Neue";	 */
/* 	position: relative; */
}
* {
	box-sizing: border-box;
}
.row {
	display: flex;
	height: 100%;
}

section {
	width: 100%;
}

.left, .right {
	width: 50%;
	height: 100%;
}
.inner {
	width: 600px;
	height: 100%;
}
.left .inner {
	float: right;
}
.btn {
	color: white;
	text-decoration: none;
/* 	font-family: "HelveticaNeue-Bold"; */
	font-weight: 700;
	border-radius: 15px;
	padding: 30px 35px;
	display: inline-block;
}
.btn-big {
	background-color: rgba(0,0,0,0.5);
	padding: 30px 35px 40px 35px;
	box-shadow: inset 0px -10px 0px rgba(0,0,0,0.5);
}
.btn-simple {
	border: 1px solid black;
	color: black;
}
.center {
	display: flex;
	align-items: center;
/* 	justify-content: center;	 */
	height: 100%;
}
.animated {
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  25% {
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }
  25% {
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate-delay-0ms { animation-delay: 1ms; }
.animate-delay-100ms { animation-delay: 100ms; }
.animate-delay-200ms { animation-delay: 200ms; }
.animate-delay-250ms { animation-delay: 250ms; }
.animate-delay-300ms { animation-delay: 300ms; }
.animate-delay-400ms { animation-delay: 400ms; }
.animate-delay-500ms { animation-delay: 500ms; }
.animate-delay-600ms { animation-delay: 600ms; }
.animate-delay-700ms { animation-delay: 700ms; }
.animate-delay-800ms { animation-delay: 800ms; }
.animate-delay-900ms { animation-delay: 900ms; }
.animate-delay-1000ms { animation-delay: 1000ms; }
.wrapper {
	width: 1200px;
	margin: auto;
}
@media only screen and (max-width: 1350px) {
	
	.inner {
		width: 100%;
	}
	.wrapper {
		width: 100%;
	}

}

@media only screen and (max-width: 900px) {
	
	.row {
		flex-direction: column;
	}
	section {
		width: 100%;
	}
	.left, .right {
		display: block;
		width: 100%;
	}
	.inner {
		width: 100%;
	}
	.wrapper {
		width: 100%;
	}

}
/* ==========================================================================
   Navigation
   ========================================================================== */
#nav {
	padding: 60px 50px;
	left: 0;
	right: 0;
	top: 50px;
	position: absolute;
	z-index: 1;
}
#nav.dark img {
	filter: invert(100%);
}
@media only screen and (max-width: 900px) {
	#nav {
		padding-top: 50px;
		padding-bottom: 0px;
		top: 0px;
		text-align: center;
	}
}

/* ==========================================================================
   Home Header
   ========================================================================== */
#home #header {
/* 	display: none; */
	overflow: hidden;
	position: relative;
	height: 100vh;
	color: white;
	background: url("../img/headerbg-p.jpg"), linear-gradient(135deg, rgba(98,16,246,1) 0%,rgba(156,15,246,1) 100%);
	background-position: center center;
	background-size: cover;
	padding: 50px;
	min-height: 750px;
}
#home #header .row .left .inner {
	position: relative;
}
#home #header h1 {
	font-size: 86px;
/* 	font-family: "HelveticaNeue-Bold"; */
	font-weight: 700;
	line-height: 110%;
}
#home #header h1 span {
/* 	font-family: "HelveticaNeue-UltraLight"; */
	font-weight: 100;
	letter-spacing: -0.03em;
}
#home #header h2 {
	padding: 50px 0;
	font-size: 41px;
/* 	font-family: "HelveticaNeue-UltraLight"; */
	font-weight: 700;
}
#home #header h2 span {
/* 	font-family: "HelveticaNeue-Bold"; */
	font-weight: 100;
	letter-spacing: -0.03em;
}
#home #header .btn {
	font-size: 20px;
}


#home #header .showcases {
	position: relative;
	height: 100%;
	vertical-align: middle;
}
#home #header .showcase {
 	display: none;
}
#home #header .showcase.show {
	display: block !important;
}
#home #header .showcase img {
	position: absolute;
	top: 0; bottom: 0;
	margin: auto;
/* 	box-shadow: 0px 0px 50px rgba(0,0,0,0.5); */
}
#home #header .btn span {
	border: 1px solid rgba(255,255,255,0.5);
	padding: 10px;
	border-radius: 10px;
	margin-left: 5px;
/*
	padding-bottom: 5px;
	border-bottom: 3px solid rgba(255,255,255,0.5);
*/
}
@media only screen and (max-width: 1350px) {
	
	#home #header h1 {
		font-size: 76px;
	}
	#home #header h2 {
		font-size: 31px;
	}
	#home #header .btn {
		font-size: 20px;
	}
	
}
@media only screen and (max-width: 900px) {
	
	#home #header {
		min-height: 650px;
	}	
	#home #header .center {
		text-align: center;
		justify-content: center;
	}
	#home #header .right {
		display: none;
	}
	#home #header nav {
		padding-top: 0px;
		padding-bottom: 0px;
		text-align: center;
	}
	#home #header h1 {
		font-size: 14vw;
	}
	#home #header h2 {
		font-size: 5vw;
	}
	#home #header .btn {
		font-size: 4vw;
	}
	
}
/* ==========================================================================
   Home About
   ========================================================================== */
   
#home #about {
/* 	display: none; */
	height: 400px;
}
#home #about .newark-castle {
	background-image: url("../img/newark-castle.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left top;
}
#home #about .newark-map {
	background-image: url("../img/newark-map.jpg");
	background-size: auto;
	background-repeat: no-repeat;
	background-position: right center;
}
#home #about h3 {
	font-size: 31px;
/* 	font-family: "HelveticaNeue-bold"; */
	font-weight: 700;
	line-height: 150%;
	display: inline-block;
/*
	background-color: white;
	padding: 20px;
	border-radius: 15px;
	box-shadow: 5px 5px 0px rgba(0,0,0,0.2);
*/
}
#home #about h3 .light {
	font-weight: 100;
	letter-spacing: -0.03em;
}
#home #about h3 span {
/* 	font-family: "HelveticaNeue-UltraLight"; */
	background-color: white;
	padding: 3px 6px;
	border-radius: 10px;
}
#home #about .btn {
	font-size: 20px;
	margin-top: 20px;
	background-color: #8e786a;
}
#home #about .right .inner {
	box-sizing: border-box;
	padding: 50px;
}
@media only screen and (max-width: 1350px) {

	#home #about {
/* 		height: 300px; */
	}	

}

@media only screen and (max-width: 900px) {

	#home #about {
		height: 190px;
	}	
	#home #about .left {
		display: none;
	}

}

/* ==========================================================================
   Home Work
   ========================================================================== */
   
#home #work {
/* 	display: none; */
/* 	background-color: #CB417D; */
	background-image: url("../img/horse-jump.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	height: 600px;
	overflow: hidden;
	position: relative;
	color: white;
	padding: 50px;
}
#home #work .btn {
	font-size: 20px;	
}
#home #work h3 {
	line-height: 150%;
/* 	font-family: "HelveticaNeue-UltraLight"; */
	font-weight: 100;
	letter-spacing: -0.03em;
	font-size: 38px;
}
#home #work ul {
	margin-left: -25px;
	padding: 30px 0;
/* 	font-family: "HelveticaNeue-bold"; */
	font-weight: 700;
	font-size: 28px;
}
#home #work ul i {
	opacity: 0.5;
	margin-right: 5px;
}
#home #work ul li {
	white-space: nowrap;
	line-height: 200%;
}
#home #work .row .left .inner {
/* 	position: relative; */
}
#home #work #portfolio {
	position: absolute;
	display: none;
	width: 100%;
/* 	left: 150px; */
	bottom: 350px;
	background-color: blue;
}
#home #work #portfolio img {
	position: absolute;
	left: 0;
	top: 0;
}
#home #work #portfolio .meetings {
	left: 500px;
	top: 50px;
}
#home #work #portfolio .spanish {
	left: 660px;
	top: 100px;
}
#home #work #portfolio .falcon {
	left: 800px;
	top: 0px;
}
#home #work #portfolio .wedding {
	left: 370px;
	top: 150px;
}
#home #work #portfolio .stylebox {
	left: 200px;
	top: 200px;
}
#home #work #portfolio .headline {
	left: 0px;
	top: 280px;
}
@media only screen and (max-width: 1350px) {

	#home #work #portfolio {
		left: -100px;
	}
	#home #work #portfolio {
		bottom: 310px;
	}
}

@media only screen and (max-width: 900px) {

	#home #work {
		height: 750px;		
	}	
	#home #work h3 {
		font-size: 32px;
	}
	#home #work #portfolio {
		left: -500px;
		bottom: 310px;
	}
	#home #work ul {
		font-size: 26px;
	}
	
}
/* ==========================================================================
   Home Pricing
   ========================================================================== */

#home #pricing {
/* 	display: none; */
	background-image:url("../img/headerbg-p.jpg");
	background-position: center center;
	background-size: cover;
	box-sizing: border-box;
	padding: 100px 50px;
/*  	height: 100vh; */
	min-height: 950px;
}
#home #pricing .row {
	width: 1200px;
	margin: auto;
}
#home #pricing .box {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	text-align: center;
	width: 25%;
	background-color: white;
	padding: 30px 40px;
/* 	border-radius: 10px; */
/* 	align-self: baseline; */
}
#home #pricing .box > * {
	flex-grow: 1;
}
#home #pricing .box.standard {
	margin: 30px 0px;
}
#home #pricing .box.selected {
	z-index: 10;
	box-shadow: 0px 0px 30px rgba(0,0,0,0.25);
}
#home #pricing .box h3 {
	padding: 20px 0;
	font-size: 31px;
/* 	font-family: "HelveticaNeue-bold"; */
	font-weight: 700;
}
#home #pricing .box .price {
	font-size: 52px;
	padding: 20px 0;
	font-weight: 100;
	letter-spacing: -0.03em;
}
#home #pricing .box .info {
	padding: 20px 0px;
	font-size: 18px;
/* 	font-family: "HelveticaNeue"; */
	line-height: 170%;
}
#home #pricing .box ul {
	font-size: 20px;
	font-weight: 700;
}
#home #pricing .box ul li {
	white-space: nowrap;
	line-height: 250%;
}
#home #pricing .box ul .italic {
/* 	font-family: "HelveticaNeue-italic"; */
}
#home #pricing .box ul .underline {
	padding-bottom: 10px;
	border-bottom: 2px solid black;
}
#home #pricing .box.black ul .underline {
	border-color: white;
}
#home #pricing .box .btn {
	margin-top: 30px;
}
#home #pricing .box.free {
	color: white;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#60bb63+0,419944+100 */
	background: rgb(96,187,99); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(96,187,99,1) 0%, rgba(65,153,68,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(96,187,99,1) 0%,rgba(65,153,68,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(96,187,99,1) 0%,rgba(65,153,68,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#60bb63', endColorstr='#419944',GradientType=0 ); /* IE6-9 */
}
#home #pricing .box.black {
	text-shadow: -1px -1px 0px black;
	color: white;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#444444+0,000000+100 */
	background: rgb(68,68,68); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(68,68,68,1) 0%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(68,68,68,1) 0%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(68,68,68,1) 0%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
}
#home #pricing .box.black .btn, #pricing .box.free .btn {
	border-color: white;
	color: white;
}
#home #pricing .box .pound {
	font-size: 26px;
	vertical-align: top;
	line-height: 150%;
	padding-right: 5px;
}
#home #pricing .box {
/* 	border-right: 1px solid rgba(0,0,0,0.3); */
}
@media only screen and (max-width: 1350px) {
	
	#home #pricing .row {
		width: 100%;
	}
	#home #pricing .box {
		width: 34%;
	}
	
}
@media (min-width: 900px) and (max-width: 1350px) {

	#home #pricing .free {
		display: none;
	}

}
@media only screen and (max-width: 900px) {

	#home #pricing {
		padding: 0;
	 	height: auto;
		min-height: auto;
	}
	#home #pricing .row {
		width: 100%;
	}
	#home #pricing .box {
		margin: 0 !important;
		width: 100%;
	}

}

/* ==========================================================================
   Home Contact
   ========================================================================== */
   
#home #contact {
/* 	display: none; */
/* 	background-color: white; */
	background-image:url("../img/contactbg.png");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 50px;
}
#home #contact h3 {
	line-height: 150%;
	font-weight: 100;
	letter-spacing: -0.03em;
	font-size: 50px;
}
#home #contact p {
	padding: 20px 0px;
	font-size: 18px;
/* 	font-family: "HelveticaNeue"; */
	line-height: 170%;
	width: 300px;
}
#home #contact ul {
	padding: 30px 0;
	font-weight: 700;
	font-size: 28px;
}
#home #contact ul i {
	opacity: 0.5;
	margin-right: 5px;
}
#home #contact ul li {
	line-height: 250%;
}
#home #contact i {
	width: 50px;
}
#home #contact a {
	color: black;
	text-decoration: none;
}
#home #contact .right {
	overflow: hidden;
}
#home #contact .right .inner {
	padding: 50px 0px;
}
#home #contact #form {
	margin-left: 50px;
/* 	display: none; */
	background-color: white;
}
#home #contact form {
	display: flex;
	flex-direction: column;
	box-shadow: 0px 0px 50px rgba(0,0,0,0.1);
	padding: 50px;
/* 	border-radius: 15px; */
}
#home #contact form > * {
	flex-grow: 1;
}
#home #contact form label {
	margin-top: 30px;
	margin-bottom: 20px;
	font-weight: 700;
}
#home #contact form label span {
	font-weight: 100;
	letter-spacing: -0.03em;
}
#home #contact form label:first-child {
	margin-top: 0;
}
#home #contact form .input {
	border: 1px solid rgba(0,0,0,0.2);
	padding: 20px;
	font-size: 22px;
/* 	border-radius: 5px; */
}
#home #contact form .btn {
	margin-top: 20px;
	background-color: #479F4A;
	text-align: center;
	color: white;
	font-size: 20px;
	cursor: pointer;
}
#home #contact .disabled form > * {
	opacity: 0.3;
}
#home #contact .disabled .btn {
	opacity: 1 !important;
/* 	background-color: grey !important; */
}
#home #contact .btn:focus {
	outline: none;
}
@media only screen and (max-width: 1350px) {

	#home #contact {
		padding-right: 0;
	}

}

@media only screen and (max-width: 900px) {

	#home #contact {
		padding-right: 50px;
	}
	#home #contact i {
		width: 40px;
	}
	#home #contact ul {
		padding: 30px 0;
		font-weight: 700;
		font-size: 21px;
	}
	#home #contact .right {
/* 		display: none; */
	}
	#home #contact #form {
		margin-left: 0;
	}
	#home #contact .right .inner {
		padding: 0;
	}
	#home #contact form {
		box-shadow: none;
		padding: 50px 0;
	}
	
}

/* ==========================================================================
   Footer
   ========================================================================== */

#footer {
/* 	display: none; */
	color: white;
	background-color: black;
	padding: 100px 50px;
}
#footer a {
	color: white;
	text-decoration: none;
	padding-bottom: 5px;
	border-bottom: 1px solid rgba(255,255,255,0.5);
}
#footer ul {
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 50px;
}
#footer ul i {
	opacity: 0.5;
	margin-right: 5px;
}
#footer ul li {
	line-height: 200%;
}
#footer ul a {
	border: none;	
}
#footer .links {
	font-weight: 100;
	letter-spacing: -0.03em;
}
#footer .links a {
	margin-right: 20px;
}
#footer .right {
	text-align: right;
}
#footer .right p {
/* 	font-family: "Helvetica Neue"; */
	font-size: 16px;
	opacity: 0.8;
	margin-bottom: 20px;
}
#footer .logo {
	margin-bottom: 50px;
}
@media only screen and (max-width: 900px) {

	#footer .right {
		margin-top: 50px;
		text-align: left;
	}
	#footer .right p {
		font-size: 12px;
	}
	
}

/* ==========================================================================
   Privacy
   ========================================================================== */

#privacy {
/*
	width: 1200px;
	margin: auto;
*/
}
#privacy header {
	padding-top: 200px;
	padding-bottom: 20px;
}
#privacy h1 {
	font-size: 86px;
	font-weight: 100;
	letter-spacing: -0.03em;
	line-height: 110%;
}
#privacy h2 {
	font-size: 30px;
	font-weight: 700;
	padding: 30px 0;
}
#privacy p {
	line-height: 150%;
	padding: 10px 0;
}
#privacy ul {
	padding: 10px 0;
	list-style: square;
}
#privacy li {
	line-height: 150%;
}

@media only screen and (max-width: 1350px) {
	
	#pricing .row {
		width: 100%;
	}
}

@media only screen and (max-width: 900px) {

	#pricing .row {
		width: 100%;
	}

}

/* ==========================================================================
   -
   ========================================================================== */

