@import url(font-awesome.min.css);
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,600,700&display=swap');
@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?u68db0');
  src:  url('../fonts/icomoon.eot?u68db0#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?u68db0') format('truetype'),
    url('../fonts/icomoon.woff?u68db0') format('woff'),
    url('../fonts/icomoon.svg?u68db0#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-right:before {
  content: "\e902";
}
.icon-arrow-thin-right:before {
  content: "\e901";
}
.icon-arrow-up-right:before {
  content: "\e900";
}

/* Reset */

	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;
	}

	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block;
	}

	body {
		line-height: 1;
	}

	ol, ul {
		list-style: none;
	}

	blockquote, q {
		quotes: none;
	}

	blockquote:before, blockquote:after, q:before, q:after {
		content: '';
		content: none;
	}

	table {
		border-collapse: collapse;
		border-spacing: 0;
	}

	body {
		-webkit-text-size-adjust: none;
        background-color: #fff;
        transition: background-color 1s ease;
	}

	a {
		outline: none;
    	text-decoration: none;
	}

/* Box Model */

	*, *:before, *:after {
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

/* Basic */

	@-ms-viewport {
		width: device-width;
	}

	body {
		-ms-overflow-style: scrollbar;
	}

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

		html, body {
			min-width: 320px;
		}

	}

		body.is-loading *, body.is-loading *:before, body.is-loading *:after {
			-moz-animation: none !important;
			-webkit-animation: none !important;
			-ms-animation: none !important;
			animation: none !important;
			-moz-transition: none !important;
			-webkit-transition: none !important;
			-ms-transition: none !important;
			transition: none !important;
		}

/* Type */

	body {
		background-color: #fff;
		color: #000;
	}

	body, input, select, textarea {
		font-family: 'Josefin Sans', sans-serif;
		font-size: 16pt;
		font-weight: 300;
		line-height: 1.65;
	}

	body.overflow-hidden {
	    /* when primary navigation is visible, the content in the background won't scroll */
	    overflow: hidden;
	}

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

			body, input, select, textarea {
				font-size: 13pt;
			}

		}

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

			body, input, select, textarea {
				font-size: 12pt;
			}

		}

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

			body, input, select, textarea {
				font-size: 11pt;
			}

		}

	strong, b {
		font-weight: 500;
	}

	em, i {
		font-style: italic;
	}

	p {
		margin: 0 0 2em 0;
	}

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

		h1 {
			font-size: 1.5em;
		}

	}

	sub {
		font-size: 0.8em;
		position: relative;
		top: 0.5em;
	}

	sup {
		font-size: 0.8em;
		position: relative;
		top: -0.5em;
	}

	blockquote {
		border-left: solid 4px;
		font-style: italic;
		margin: 0 0 2em 0;
		padding: 0.5em 0 0.5em 2em;
	}

	hr {
		border: 0;
		border-bottom: solid 1px;
		margin: 2em 0;
	}

		hr.major {
			margin: 3em 0;
		}

	.align-left {
		text-align: left;
	}

	.align-center {
		text-align: center;
	}

	.align-right {
		text-align: right;
	}

	blockquote {
		border-left-color: #eaeaea;
	}

	code {
		background: rgba(144, 144, 144, 0.075);
		border-color: #eaeaea;
	}

	hr {
		border-bottom-color: #eaeaea;
	}

	a:hover, a:active, a:focus {
	  outline: 0;
	}

/* HEADER */
.header {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(215, 209, 206, 0.95);
    height: 50px;
    width: 100%;
    z-index: 11;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media only screen and (min-width: 768px) {
    .header {
	    height: 80px;
	    background: transparent;
	    box-shadow: none;
    }
}
@media only screen and (min-width: 1170px) {
    .header {
	    -webkit-transition: background-color 0.3s;
	    -moz-transition: background-color 0.3s;
	    transition: background-color 0.3s;
	    /* Force Hardware Acceleration in WebKit */
	    -webkit-transform: translate3d(0, 0, 0);
	    -moz-transform: translate3d(0, 0, 0);
	    -ms-transform: translate3d(0, 0, 0);
	    -o-transform: translate3d(0, 0, 0);
	    transform: translate3d(0, 0, 0);
	    -webkit-backface-visibility: hidden;
	    backface-visibility: hidden;
    }
    .header.is-fixed {
	    /* when the user scrolls down, we hide the header right above the viewport */
	    position: fixed;
	    top: -80px;
	    box-shadow: 0 0 1px #000;
	    background-color: rgba(255, 255, 255, 0.96);
	    -webkit-transition: -webkit-transform 0.3s;
	    -moz-transition: -moz-transform 0.3s;
	    transition: transform 0.3s;
    }
    .header.is-visible {
	    /* if the user changes the scrolling direction, we show the header */
	    -webkit-transform: translate3d(0, 100%, 0);
	    -moz-transform: translate3d(0, 100%, 0);
	    -ms-transform: translate3d(0, 100%, 0);
	    -o-transform: translate3d(0, 100%, 0);
	    transform: translate3d(0, 100%, 0);
    }
    .header.menu-is-open {
	    /* add a background color to the header when the navigation is open */
	    background-color: rgba(255, 255, 255, 0.96);
    }

}

.logo,
.small-logo {
    display: block;
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: .875em;
}

.logo img {
    width: 12%;
    top: 4px;
    position: relative;
    -webkit-transition: all 800ms cubic-bezier(.37,.01,.61,.99);
    -moz-transition: all 800ms cubic-bezier(.37,.01,.61,.99);
    -o-transition: all 800ms cubic-bezier(.37,.01,.61,.99);
    transition: all 800ms cubic-bezier(.37,.01,.61,.99);
    -webkit-transition-timing-function: cubic-bezier(.37,.01,.61,.99);
    -moz-transition-timing-function: cubic-bezier(.37,.01,.61,.99);
    -o-transition-timing-function: cubic-bezier(.37,.01,.61,.99);
    transition-timing-function: cubic-bezier(.37,.01,.61,.99);
}

.logo img:hover {
	-webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -o-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.logo.display-logo img {
	display: inline-block;
}

.header .small-logo img {
	display: none;
	transform: scaleX(-1);
 	width: 85%;
 	-webkit-transition: all 800ms cubic-bezier(.37,.01,.61,.99);
    -moz-transition: all 800ms cubic-bezier(.37,.01,.61,.99);
    -o-transition: all 800ms cubic-bezier(.37,.01,.61,.99);
    transition: all 800ms cubic-bezier(.37,.01,.61,.99);
    -webkit-transition-timing-function: cubic-bezier(.37,.01,.61,.99);
    -moz-transition-timing-function: cubic-bezier(.37,.01,.61,.99);
    -o-transition-timing-function: cubic-bezier(.37,.01,.61,.99);
    transition-timing-function: cubic-bezier(.37,.01,.61,.99);
}

.header.is-fixed.is-visible .logo img {
	display: none;
}

.header.is-fixed.is-visible .small-logo img {
	display: block;
}




@media only screen and (min-width: 768px) {
    .logo {
    	left: 2.6em;
    }
}

.secondary-nav {
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 690px;
}

.secondary-nav.align-right {
	margin: 0;
    right: 2em;
}

.secondary-nav li {
    display: inline-block;
    margin-left: 0.5em;
}

.secondary-nav a {
    display: inline-block;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    background: rgba(255, 255, 255, 0);
    font-size: 0.85em;
    letter-spacing: 0.3pt;
    line-height: 1.3;
    padding: 13px 10px 8px 10px;
    -webkit-transition: all 500ms cubic-bezier(.37,.01,.61,.99);
    -moz-transition: all 500ms cubic-bezier(.37,.01,.61,.99);
    -o-transition: all 500ms cubic-bezier(.37,.01,.61,.99);
    transition: all 500ms cubic-bezier(.37,.01,.61,.99);
    -webkit-transition-timing-function: cubic-bezier(.37,.01,.61,.99);
    -moz-transition-timing-function: cubic-bezier(.37,.01,.61,.99);
    -o-transition-timing-function: cubic-bezier(.37,.01,.61,.99);
    transition-timing-function: cubic-bezier(.37,.01,.61,.99);
}

.secondary-nav li:hover a,
.secondary-nav a.active {
	color: #000;
	background: rgba(255, 255, 255, 1);
}

.secondary-nav a.orange,
.primary-nav-trigger .menu-text.orange {
	color: #000;
}

.secondary-nav.align-right > li > a:hover,
.secondary-nav.align-right > li > a.active {
	color: #000;
}

.secondary-nav.align-right > li > a.orange:hover,
.secondary-nav.align-right > li > a.orange.active,
.primary-nav-trigger > li > .menu-text.orange:hover {
	color: #FC6700;
}

.secondary-nav .submenu a.black a:hover {
	color: #fff;
}

@media only screen and (min-width: 768px) {
    .secondary-nav {
   		display: block;
    }
}

.primary-nav-trigger {
	display: none;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background-color: #03263d;
}

@media only screen and (max-width: 767px) {
    .primary-nav-trigger {
   		display: block;
    }

    .primary-nav-trigger {
        width: 100px;
        padding-left: 0.3em;
        background-color: transparent;
        height: 30px;
        line-height: 30px;
        right: 0.2em;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .primary-nav-trigger .menu-text {
        display: inline-block;
    }

    .primary-nav-trigger .menu-icon {
        left: auto;
        right: 1em;
        -webkit-transform: translateX(0) translateY(-50%);
        -moz-transform: translateX(0) translateY(-50%);
        -ms-transform: translateX(0) translateY(-50%);
        -o-transform: translateX(0) translateY(-50%);
        transform: translateX(0) translateY(-50%);
    }
}

.primary-nav-trigger .menu-text {
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    /* hide the text on small devices */
    display: none;
}

.primary-nav-trigger .menu-icon {
    /* this span is the central line of the menu icon */
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 30px;
    height: 3px;
    background-color: #fc6700;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
  /* these are the upper and lower lines in the menu icon */
}

.primary-nav-trigger .menu-icon::before, .primary-nav-trigger .menu-icon:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #fc6700;
    right: 0;
    -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
    -moz-transition: -moz-transform .3s, top .3s, background-color 0s;
    transition: transform .3s, top .3s, background-color 0s;
}

.primary-nav-trigger .menu-icon.is-clicked::before, .primary-nav-trigger .menu-icon.is-clicked::after {
    background-color: #fc6700;
}

.primary-nav-trigger .menu-icon.background-black, 
.primary-nav-trigger .menu-icon.background-black::before, 
.primary-nav-trigger .menu-icon.background-black:after,
.primary-nav-trigger .menu-icon.background-black.is-clicked::before, 
.primary-nav-trigger .menu-icon.background-black.is-clicked:after {
	background-color: #000;
}

.primary-nav-trigger .menu-icon::before {
    top: -7px;
}

.primary-nav-trigger .menu-icon::after {
    top: 7px;
}

.primary-nav-trigger .menu-icon.is-clicked {
    background-color: rgba(255, 255, 255, 0);
}

.primary-nav-trigger .menu-icon.is-clicked::before {
    top: 0;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.primary-nav-trigger .menu-icon.is-clicked::after {
    top: 0;
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
}

.primary-nav {
    /* by default it's hidden - on top of the viewport */
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 2;
    text-align: center;
    padding: 50px 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: auto;
    /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.primary-nav li {
    font-size: 22px;
    font-size: 1.375rem;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: .2em 0;
    text-transform: capitalize;
}

.primary-nav a {
    display: inline-block;
    padding: .4em 1em;
    color: #000;
    border-radius: 0.25em;
    -webkit-transition: background 0.2s;
    -moz-transition: background 0.2s;
    transition: background 0.2s;
}

.no-touch .primary-nav a:hover {
    background-color: rgba(255, 247, 242, 0.95);
}

.primary-nav .label {
    color: #FC6700;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    font-size: 0.875rem;
    margin: 2.4em 0 .8em;
}

.social-links.mobile-nav {
    display: inline-block;
    margin: 2em 0 0;
}

.social-links.mobile-nav .icon {
    width: 60px;
    height: 60px;
    background: #3B5998;
}

.primary-nav.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

@media only screen and (min-width: 768px) {
    .primary-nav {
    	padding: 80px 0;
    }

}

@media only screen and (min-width: 1170px) {
    .primary-nav li {
	    font-size: 30px;
	    font-size: 1.875rem;
    }

    .primary-nav .label {
	    font-size: 16px;
	    font-size: 1rem;
    }

}

.intro {
    position: relative;
    height: 100vh;
    text-align: center;
    background: url("../images/bg-home.jpg") no-repeat center center;
    background-size: cover;
    z-index: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Backgrounds */
.intro:before {
	-moz-transition: opacity 2s ease;
	-webkit-transition: opacity 2s ease;
	-ms-transition: opacity 2s ease;
	transition: opacity 2s ease;
	content: '';
	display: block;
	background-color: #333333;
	height: 100%;
	left: 0;
	opacity: 0.3;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.intro.sub-page:before {
    opacity: 0.6;
}

.intro.esops-101 {
    background: url("../images/bg-esops-101.jpg") no-repeat center center;
    background-size: cover;
}

.intro.our-strategy {
	background: url("../images/bg-our-strategy.jpg") no-repeat center center;
    background-size: cover;
}

.intro.about-us {
    background: url("../images/bg-about-us3.jpg") no-repeat center center;
    background-size: cover;
}

.intro.resources{
    background: url("../images/bg-resources.jpg") no-repeat center center;
    background-size: cover;
}

.intro.contact {
    background: url("../images/bg-contact-us.jpg") no-repeat center center;
    background-size: cover;
}

body.is-loading .intro .intro-inner {
	-moz-transform: scale(0.98);
	-webkit-transform: scale(0.98);
	-ms-transform: scale(0.98);
	transform: scale(0.98);
	opacity: 0;
}

body.is-loading .intro:before {
	opacity: 1;
}

#why-esops {
	padding-top: 1em;
}

.intro-inner {
	-moz-transform: scale(1.0);
	-webkit-transform: scale(1.0);
	-ms-transform: scale(1.0);
	transform: scale(1.0);
	-moz-transition: opacity 1s ease, -moz-transform 1s ease;
	-webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
	-ms-transition: opacity 1s ease, -ms-transform 1s ease;
	transition: opacity 1s ease, transform 1s ease;
	opacity: 1;
	color: #fff;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	width: 80%;
}

.intro-inner .logo-banner {
	width: 23%;
}

.intro-inner h1,
.subsection-inner h1 {
	font-size: 3.5em;
    font-weight: 500;
}

.intro-inner h2,
.subsection-inner h2 {
	font-size: 2.1em;
    margin: 0 4em 2em;
}

.intro a.more-arrow {
	position: absolute;
    bottom: 5em;
    z-index: 99;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.intro a.more-arrow span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 16px;
    height: 16px;
    margin-left: -12px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: fadedown 2s infinite;
    animation: fadedown 2s infinite;
    opacity: 0;
    box-sizing: border-box;
}

.intro a.more-arrow span:nth-of-type(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.intro a.more-arrow span:nth-of-type(2) {
    top: 16px;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.intro a.more-arrow span:nth-of-type(3) {
    top: 32px;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

@-webkit-keyframes fadedown {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
}

@keyframes fadedown {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
}

.main-content {
  position: relative;
  z-index: 1;
}

.container {
    width: 90%;
    margin: 0 auto;
}

/* GLOBAL BUTTON */

.main-button {
    margin: 1em 0 10px 0;
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    padding: 14px 17px 13px 26px;
    position: relative;
    font-weight: 500;
    font-size: 1.1em;
    top: -3px;
    line-height: 20px;
    display: inline-block;
    transition: all .45s cubic-bezier(0.25,1,0.33,1);
    -webkit-transition: all .45s cubic-bezier(0.25,1,0.33,1);
    -moz-transition: all .45s cubic-bezier(0.25,1,0.33,1);
    -ms-transition: all .45s cubic-bezier(0.25,1,0.33,1);
    -o-transition: all .45s cubic-bezier(0.25,1,0.33,1);
}

.main-button.black {
    border: 1px solid #000;
    color: #000; 
}

button.main-button.black {
    color: #94aab0;
    font-family: 'Josefin Sans', sans-serif;
    outline: none;
    margin: 0.25em 0 10px 0;
    padding: 14px 17px 11px 26px;
}

.main-button:hover {
    color: #000;
    background-color: #fff;
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    cursor: pointer;
}

.main-button.black:hover {
    color: #fff;
    background-color: #000; 
}

.main-button.has-icon span {
    left: 0px;
    display: inline-block;
    -ms-transform: translateX(-18px);
    -webkit-transform: translateX(-18px);
    -o-transform: translateX(-18px);
    -moz-transform: translateX(-18px);
    transform: translateX(-18px);
    transition: all .45s cubic-bezier(0.25,1,0.33,1);
    -webkit-transition: all .45s cubic-bezier(0.25,1,0.33,1);
    -moz-transition: all .45s cubic-bezier(0.25,1,0.33,1);
    -ms-transition: all .45s cubic-bezier(0.25,1,0.33,1);
    -o-transition: all .45s cubic-bezier(0.25,1,0.33,1);
    position: relative;
}

.main-button .icon-arrow:before {
    content: "\e902";
    position: relative;
    top: 5px;
    font-size: 26px;
    line-height: 0;
}

/*** HOME PAGE ***/

/* Global */

.inner h1 {
	text-align: center;
    font-size: 2.2em;
    padding-bottom: 0;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0.5em 0;
}

.inner h1.section-header {
	margin-bottom: 0;
}

/* headlines with lines */
.inner h1.decorated {
     overflow: hidden;
     text-align: center;
     margin: -0.5em 0 0;
 }

 .decorated img {
 	transform: scaleX(-1);
 	width: 60%
 }

.decorated > span.headliner {
    position: relative;
    display: inline-block;
    width: 50px;
}

.decorated > span.headliner:before, .decorated > span.headliner:after {
    content: '';
    position: absolute;
    top: 42.5%;
    border-bottom: 1px solid #FC6700;
    width: 50px; 
    margin: 0;
}

.decorated > span.headliner:before {
    right: 100%;
}

.decorated > span.headliner:after {
    left: 100%;
}

.inner.spotlight h1,
.inner.spotlight h2,
.inner.spotlight h1.decorated {
	text-align: left;
}

.inner.spotlight .decorated > span.headliner:after {
	left: 75%;
}

.inner h2 {
	text-align: center;
	text-transform: none;
	font-weight: 300;
	padding-bottom: 0;
	font-size: 1.15em;
	line-height: 1.5em;
}

.inner p {
	font-size: 1em;
	text-align: center;
	margin-bottom: 0;
}

ul.home-benefits,
ul.study-info {
	display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 2em 0;
}

ul.home-benefits:last-child,
ul.study-info:last-child {
	padding-top: 0;
}

ul.home-benefits li,
ul.study-info li {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    margin: 0 1.2em;
}

ul.home-benefits li:hover img,
ul.study-info li:hover img {
	transform: scale(0.95);
	transition: all 0.3s;
}

ul.home-benefits li img,
ul.study-info li img {
	width: 60px;
	transition: all 0.3s;
}

.home-benefits-header {
	text-transform: none;
	font-size: 1.3em;
	font-weight: 400;
	margin: 0.75em 0 0.25em;
	padding: 0;
}

.home-benefits-description,
.study-info-description {
	font-size: 0.9em;
    color: rgba(0, 0, 0, 0.85);
}


.spotlight .image.why-us-img:after {
    content: "";
    position: absolute;
    top: -70px;
    left: 20%;
    right: -8%;
    overflow: hidden;
    bottom: 20px;
    z-index: -5;
    background: linear-gradient(180deg, #FC6700 0,rgba(255,250,250,.18));
}

.spotlight:nth-of-type(2n) .image.why-us-img:after {
    right: 20%;
    left: -10%;
}

.spotlight article {
	width: 50%;
}


/* ESOP WISDOM SECTION */
#esop-wisdom {
    padding-top: 2em;
    margin-top: 3em;
    background: rgba(252, 102, 0, 0.05);
}

.esop-quote-container {
	display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.esop-quote {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 2em 4em;
    position: relative;
}

.inner .esop-quote p {
	text-align: justify;
	margin-bottom: 0.5em;
    font-size: 1.2em;
}

.inner .esop-quote p.esop-quote-author {
	text-align: right;
	width: 100%;
    font-size: 1em;
    font-weight: 400;
}

.esop-quote:before {
    content: '”';
    position: absolute;
    top: -190px;
    left: 0;
    text-align: center;
    right: 0;
    color: rgba(252, 103, 0, 0.3);
    font-size: 34em;
    z-index: -1;
    margin: 0 auto;
}



/* Clouds flying */
#ready-to-esop {
    background: rgba(0, 180, 255, 0.5);
    color: #333;
    height: 500px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

#background-wrap {
    bottom: 0;
    left: 0;
    padding-top: 50px;
    right: 0;
    top: 0;
    position: absolute;
}

@keyframes animateCloud {
    0% {margin-left: 1500px;}
    100% {margin-left: -100%;}
}

.x1 {
    animation: animateCloud 30s linear infinite;
    transform: scale(0.65);
}

.x2 {
    animation: animateCloud 20s linear infinite;
    transform: scale(0.3);
}

.x3 {
    animation: animateCloud 24s linear infinite;
    transform: scale(0.5);
}

.x4 {
    animation: animateCloud 18s linear infinite;
    transform: scale(0.4);
}

.x5 {
    animation: animateCloud 50s linear infinite;
    transform: scale(0.55);
    top: -180px;
    position: relative;
}

.x6 {
    animation: animateCloud 40s linear infinite;
    transform: scale(0.35);
    top: -530px;
    position: relative;
}

.cloud {
    background: #fff;
    background: linear-gradient(top, white 5%, #f1f1f1 100%);
    filter: DXImageTransform.Microsoft.gradient(startColorstr='white',endColorstr='#f1f1f1',GradientType=0);
    border-radius: 100px;
    box-shadow: 0 8px 5px rbga(0,0,0,0.1);
    height: 120px;
    position: relative;
    width: 350px;
}

.cloud:after, .cloud:before {
    background: white;
    content: '';
    position: absolute;
    z-index: -1;
}

.cloud:after {
    border-radius: 100px;
    height: 100px;
    left: 50px;
    top: -50px;
    width: 100px;
}

.cloud:before {
    border-radius: 200px;
    height: 180px;
    right: 50px;
    top: -90px;
    width: 180px;
}

@keyframes logoFly {
    0% {top: 20%;}
    50% {top: 24%;}
    100% {top: 20%;}
}

.flying-logo {
    position: absolute;
    transform: scaleX(-1);
    left: 0;
    right: 0;
    margin: 0 auto;
    animation: logoFly 2s infinite ease-in-out;
}

.esop-contact {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 45%;
}

.esop-contact h4 {
    font-size: 2em;
}



/* Spotlight */

.spotlight {
	display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    text-align: left;
    margin: 8em 0 4em;
    padding: 0 3em;
}

.spotlight:last-child {
	margin-bottom: 0;
}

.spotlight .image {
	margin: 0 0 0 2em;
    width: 50%;
    border: 0;
    display: block;
    position: relative;
	-ms-flex: 1;
}

.spotlight .image img {
	width: 100%;
}

.spotlight:nth-of-type(2n) {
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.spotlight:nth-of-type(2n) .image {
    margin: 0 2em 0 0;
}

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

	.spotlight {
		-moz-flex-direction: column !important;
		-webkit-flex-direction: column !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}

	.spotlight .sub-content {
		text-align: center;
		-ms-flex: 0 1 auto;
		width: 100%;
	}

	.spotlight .image {
		margin: -3.75em auto 2em auto !important;
		top: 3.75em;
	}

}

.inner.spotlight h2.main-header {
	font-weight: 400;
	font-size: 1.5em;
	margin: -.5em 0 0.5em;
}

.inner.spotlight h3.main-subheader {
	font-size: 1.05em;
}


/* Menu */

	#menu {
		-moz-transform: translateX(20em);
		-webkit-transform: translateX(20em);
		-ms-transform: translateX(20em);
		transform: translateX(20em);
		-moz-transition: -moz-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
		-webkit-transition: -webkit-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
		-ms-transition: -ms-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
		transition: transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
		-webkit-overflow-scrolling: touch;
		background: #ffffff;
		color: #777777;
		height: 100%;
		max-width: 80%;
		overflow-y: auto;
		padding: 3em 2em;
		position: fixed;
		right: 0;
		top: 0;
		visibility: hidden;
		width: 20em;
		z-index: 10002;
	}

		#menu > ul {
			margin: 0 0 1em 0;
		}

			#menu > ul.links {
				list-style: none;
				padding: 0;
			}

				#menu > ul.links > li {
					padding: 0;
				}

					#menu > ul.links > li > a:not(.button) {
						border: 0;
						border-top: solid 1px #eaeaea;
						color: inherit;
						display: block;
						font-size: 0.8em;
						font-weight: 500;
						letter-spacing: 0.25em;
						line-height: 4.5em;
						text-transform: uppercase;
					}

					#menu > ul.links > li > .button {
						display: block;
						margin: 0.5em 0 0 0;
					}

					#menu > ul.links > li:first-child > a:not(.button) {
						border-top: 0 !important;
					}

		#menu .close {
			-webkit-tap-highlight-color: transparent;
			background-image: url("images/close.svg");
			background-position: 75% 50%;
			background-repeat: no-repeat;
			border: 0;
			color: rgba(255, 255, 255, 0.5);
			cursor: pointer;
			display: block;
			height: 3.25em;
			line-height: 3.25em;
			padding-right: 1.25em;
			position: absolute;
			right: 0;
			text-align: right;
			top: 0;
			vertical-align: middle;
			width: 7em;
		}

			#menu .close:before {
				font-size: 1.25em;
			}

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

				#menu .close {
					height: 4em;
					line-height: 4em;
				}

			}

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

			#menu {
				padding: 2.5em 1.75em;
			}

		}

	body.is-menu-visible #page-wrapper {
		-moz-pointer-events: none;
		-webkit-pointer-events: none;
		-ms-pointer-events: none;
		pointer-events: none;
		opacity: 0.5;
	}

	body.is-menu-visible #menu {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
		visibility: visible;
	}



/* OUR STRATEGY PAGE */

.intro.sub-page .intro-inner h2 {
    margin: 0 1em;
    font-size: 1.8em
}

/* Block Reveal */
.block-revealer__element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    pointer-events: none;
    opacity: 0;
}

.content {
    position: relative;
    min-height: 300px;
    overflow-x: hidden;
}

.content--full {
    min-height: 600px;
}

.flexy {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.flexy--center {
    justify-content: center;
}

.flexy--row {
    flex-direction: row;
}

.content__heading {
    flex: none;
    width: 100%;
    padding: 0 5vw;
}

.content__heading--center {
    text-align: center;
}

.content__title {
    font-size: 8vw;
    line-height: 1.2;
    padding: 0 5vw;
}

.content__title--half {
    width: 50vw;
    z-index: 2;
    position: relative;
    color: #FC6700;
}

.content__title--enclosed {
    padding: 0;
    margin: 0;
}

.content__title--center {
    margin: auto;
}

.content__title--right {
    text-align: right;
    padding: 0 0 0 0.75em;
}

.content__title--left {
    margin-left: -4vw;
    padding: 0;
}

.content__title--medium  {
    font-size: 6vw;
}

.content__title--small  {
    font-size: 2vw;
}

.content__title__inner {
    flex: none;
    display: inline-block;
    white-space: nowrap;
    position: relative;
}

.content__subtitle__inner {
    flex: none;
    display: block;
    position: relative;
}

.content__title__inner--offset-1 {
    top: -0.25em;
    left: 13.6vw;
}

.content__title__inner--offset-2 {
    top: -0.25em;
    left: 1.75vw;
}

.content__title__inner--offset-3 {
    left: -10vw;
    top: -0.25em;
}

.content__image-wrap {
    flex: none;
    width: 25vw;
}

.content__image-wrap--half {
    width: 50vw;
}

.content__image {
    width: 100%;
    display: block;
}

#strategy-reveal-1:before,
#strategy-reveal-2:before,
#strategy-reveal-3:before,
#strategy-reveal-4:before {
    content: '01';
    position: absolute;
    top: 0;
    left: -2em;
    text-align: center;
    right: 0;
    color: #e7e6e4;
    font-size: 20em;
    z-index: -1;
    margin: 0 auto;
}

#strategy-reveal-2:before {
    content: '02';
    left: 0;
    right: -2em;
    color: rgba(252, 103, 0, 0.3);
}

#strategy-reveal-3:before {
    content: '03';
}

#strategy-reveal-4:before {
    content: '04';
    left: 0;
    right: -2em;
    color: rgba(252, 103, 0, 0.3);
}

#personalized-strategies,
#flock-and-esops,
#contact-us {
    padding-top: 1em;
}

#flock-and-esops {
    overflow: hidden;
}

.inner.bigger h2 {
    font-size: 1.25em;
}

span.text-highlight {
    font-weight: 400;
    text-transform: uppercase;
}

#rev-16, #rev-18 {
    padding-left: 1em;
}

.rev-main {
    position: relative;
    top: -0.25em;
    text-align: left;
    white-space: normal;
    color: #000;
}

.rev-main h3 {
    font-weight: 400;
    line-height: 1.4;
    font-size: 1.4vw;
    margin-bottom: 0.5em;
}

.rev-main ul {
    list-style: none;
}

.rev-main ul li {
    font-weight: 300;
    line-height: 1.25;
    font-size: 1.25vw;
    position: relative;
    padding-left: 25px;
    width: 95%;
    margin-bottom: 0.5em;
}

.rev-main ul li:before {
    content: '';
    position: absolute;
    top: -4px;
    left: -1px;
    height: 1.25em;
    width: 1.25em;
    background-image: url(../images/wing-red.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transform: scaleX(-1);
}
   

/* ABOUT US PAGE */
#flock-and-esops .inner {
    position: relative;
}

#flock-and-esops .inner h2 {
    margin-bottom: 1em;
    text-align: left;
}

.left-side-about {
    width: 75%;
}

.top-about-image {
    position: absolute;
    top: 18%;
    right: -65px;
    z-index: -1;
    opacity: 0.5;
    overflow: hidden;
    width: 45%;
}

.inner h1.esop-love {
    text-transform: none;
    font-size: 3em;
}

#meet-the-flock {
    padding-top: 2em;
    margin-top: 3em;
    background: rgba(252, 102, 0, 0.05);
}

#esop-culture {
    padding: 2em 0;
    margin-top: 3em;
}

.team-container {
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

.team-member {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 1em 2em;
    position: relative;
}

.team-member img {
    width: 150px;
}

.team-member h3 {
    font-size: 1.4em;
    font-weight: 400;
    margin: 1em 0 0;
    line-height: 1;
}

.team-member h4 {
    font-size: 1.15em;
    font-weight: 400;
    color: #FC6700;
    margin: 0 0 0.25em;
}

.team-member p {
    text-align: justify;
}

.team-image-border {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: -12px;
    left: 33%;
    z-index: -5;
    background: linear-gradient(180deg, #FC6700 0,rgba(255,250,250,.18));
}

#our-clients {
    margin-top: 3em;
}

.quote-logo {
    width: 100px;
    margin-bottom: 1em;
}

#our-clients .esop-quote {
    margin: 1em 20em;
}

#our-clients .esop-quote:before {
    top: 0;
    opacity: 0.6;
    font-size: 28em;
}

#our-clients .esop-quote p {
    font-size: 1.2em;
    margin-bottom: 1em;
    text-align: justify;
}

#our-clients .esop-quote p.esop-quote-author {
    width: 100%;
    text-align: right;
    font-weight: 400;
    font-size: 1em;
}


/* ESOPS 101 PAGE */
#esops-explained {
    position: relative;
}

#route {
    position: absolute;
}

ul.home-benefits.good-fit li {
    margin: 0 2em;
}

.home-benefits.good-fit img {
    margin-bottom: 1em;
}

.inner .home-benefits.good-fit p {
    font-size: 1.15em;
}

ul.study-info li {
    text-align: justify;
    position: relative;
    vertical-align: middle;
    margin: 0 2em;
}

.study-info-header {
    text-transform: none;
    font-size: 2.5em;
    font-weight: 400;
    margin: 0.75em 0 0.25em;
    padding: 0;
}

.study-info-description {
    margin: 0;
    font-size: 1.15em;
}

.esop-steps {
    position: relative;
    height: 500px;
    width: 500px;
}

.esop-steps.one {
    top: 50px;
    left: 300px;
}

.esop-steps.two {
    left: 100px;
    top: 50px;
}

.esop-steps.three {
    top: -100px;
    left: 1000px;
    width: 300px;
}

.esop-steps.four {
    left: 100px;
}

.esop-steps.five {
    left: 1000px;
    width: 250px;
}

.esop-steps.six {
    left: 100px;
}

.esop-steps.final {
    width: 100%;
    top: 100px;
}

.esop-steps article {
    position: absolute;
    top: 5px;
    width: 400px;
    left: 170px;
}

.esop-steps.one article {
    left: 500px;
    top: 80px;
    width: 500px;
}

.esop-steps.three article {
    top: 75px;
    left: -390px;
    width: 390px;
}

.esop-steps.four article {
    top: 30px;
    width: 410px;
    left: 280px;
}

.esop-steps.five article {
    width: 410px;
    top: 260px;
    left: -160px;
}

.esop-steps.five article .steps-header {
    text-align: right;
}

.esop-steps.six article {
    top: 60px;
    width: 560px;
    left: 300px;
}

.esop-steps.final article {
    width: 100%;
    text-align: center;
    padding: 0 15em;
    display: block;
    top: 285px;
    left: 0;
}

.step-image {
    width: 300px;
    position: absolute;
}

.step-image.two {
    width: 125px;
}

.step-image.four,
.step-image.five,
.step-image.six {
    width: 250px;
}

.step-image.final {
    width: 100px;
    text-align: center;
    display: block;
    left: 0;
    margin: 0 auto;
    right: 0;
}

.steps-header {
    font-size: 1.3em;
    font-weight: 600;
}

.steps-subheader {
    font-size: 1.1em;
    text-align: justify;
}

.esop-steps.one:before, 
.esop-steps.two:before, 
.esop-steps.three:before, 
.esop-steps.four:before,
.esop-steps.five:before,
.esop-steps.six:before,
.esop-steps.final:before {
    content: '01';
    position: absolute;
    top: -100px;
    left: 50px;
    text-align: center;
    right: 0;
    color: rgba(252, 103, 0, 0.3);
    font-size: 14em;
    z-index: -1;
    margin: 0 auto;
    width: 300px;
}

.esop-steps.two:before {
    content: '02';
    top: -150px;
    left: -120px;
}

.esop-steps.three:before {
    content: '03';
    top: -80px;
    left: -590px;
}

.esop-steps.four:before {
    content: '04';
    top: -120px;
    left: 150px;
}

.esop-steps.five:before {
    content: '05';
    top: -210px;
    left: -15px;
}

.esop-steps.six:before {
    content: '06';
    top: 80px;
    left: 410px;
}

.esop-steps.final:before {
    content: '07';
    top: -40px;
    left: 0;
}




/* Panels */
.panel {
  min-height: 100vh;
  padding: 7.5rem 0;
}

.color-red {
  background-color: #FC7600;
}
.color-white {
  background-color: #fff;
}
.color-light-red {
  background-color: rgba(252, 102, 0, 0.1);
}
.color-green {
  background-color: green;
}





/* CONTACT PAGE */

#form-container {
    margin-bottom: 4em;
}

#form-container .container {
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    margin: 1em auto 0;
}

.contact-left,
.contact-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0 2em;
    position: relative;
}

.contact-image {
    width: 400px;
    top: 40px;
    position: relative;
}



/* -------------------------------- 

Form

-------------------------------- */
.cd-form {
  width: 85%;
  max-width: 600px;
}
.cd-form::after {
  clear: both;
  content: "";
  display: table;
}
.cd-form fieldset {
  margin: 24px 0;
}
.cd-form legend {
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 2rem;
  border-bottom: 1px solid #ecf0f1;
}
.cd-form div {
  /* form element wrapper */
  position: relative;
  margin: 20px 0;
}
.cd-form h4, .cd-form .cd-label {
  font-size: 1.3rem;
  color: #94aab0;
  margin-bottom: 10px;
}
.cd-form .cd-label {
  display: block;
}
.cd-form input, .cd-form textarea, .cd-form label {
  font-size: 1.3rem;
  color: #2b3e51;
}
.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form textarea,
.cd-form legend {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form textarea {
  /* general style for input elements */
  padding: 8px;
  border: 1px solid #cfd9db;
  background-color: #ffffff;
  border-radius: .25em;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
.cd-form input[type="text"]:focus,
.cd-form input[type="email"]:focus,
.cd-form textarea:focus {
  outline: none;
  border-color: #2c97de;
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.2);
}

.cd-form textarea {
  min-height: 200px;
  resize: vertical;
  overflow: auto;
}

.contact-button {
  /* button style */
  border: none;
  background: #2c97de;
  border-radius: .25em;
  padding: 16px 20px;
  color: #ffffff;
  font-weight: bold;
  float: right;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.no-touch .cd-form .contact-button:hover {
  background: #42a2e1;
}
.cd-form .contact-button:focus {
  outline: none;
  background: #2b3e51;
}
.cd-form .contact-button:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}
.cd-form [required] {
  background: url("../images/cd-required.svg") no-repeat top right;
}
.cd-form .error-message p {
  background: #e94b35;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: .25em;
  padding: 16px;
}
.cd-form .error {
  border-color: #e94b35 !important;
}

.success {
  padding: 1em;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #468847;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

.error {
  padding: 1em;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid rgba(185, 74, 72, 0.3);
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

@media only screen and (min-width: 600px) {
  .cd-form div {
    /* form element wrapper */
    margin: 32px 0;
  }
  .cd-form legend + div {
    /* reduce margin-top for first form element after the legend */
    margin-top: 20px;
  }
  .cd-form h4, .cd-form .cd-label {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  
}

/* -------------------------------- 
Custom icons
-------------------------------- */
.cd-form .field input, .cd-form .field textarea {
  padding-left: 54px !important;
}
.cd-form .user {
  background: url("../images/cd-icon-user.svg") no-repeat 16px center;
}
.cd-form [required].user {
  background: url("../images/cd-icon-user.svg") no-repeat 16px center, url("../images/cd-required.svg") no-repeat top right;
}
.cd-form .company {
  background: url("../images/cd-icon-company.svg") no-repeat 16px center;
}
.cd-form [required].company {
  background: url("../images/cd-icon-company.svg") no-repeat 16px center, url("../images/cd-required.svg") no-repeat top right;
}
.cd-form .email {
  background: url("../images/cd-icon-email.svg") no-repeat 16px center;
}
.cd-form [required].email {
  background: url("../images/cd-icon-email.svg") no-repeat 16px center, url("../images/cd-required.svg") no-repeat top right;
}
.cd-form .message {
  background: url("../images/cd-icon-message.svg") no-repeat 16px 16px;
}
.cd-form [required].message {
  background: url("../images/cd-icon-message.svg") no-repeat 16px 16px, url("../images/cd-required.svg") no-repeat top right;
}

/* -------------------------------- 
Floating labels 
-------------------------------- */
.js .floating-labels div {
  margin: 28px 0;
}
.js .floating-labels .cd-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 1.2em;
  cursor: text;
  -webkit-transition: top 0.2s, left 0.2s, font-size 0.2s;
  -moz-transition: top 0.2s, left 0.2s, font-size 0.2s;
  transition: top 0.2s, left 0.2s, font-size 0.2s;
}
.js .floating-labels .field .cd-label {
  left: 56px;
  line-height: 0.85;
}
.js .floating-labels .cd-label.float {
  /* move label out the input field */
  font-size: 1.2rem;
  top: -16px;
  left: 0 !important;
}
@media only screen and (min-width: 600px) {
  .js .floating-labels legend + div {
    /* reduce margin-top for first form element after the legend */
    margin-top: 16px;
  }
  .js .floating-labels .cd-label {
    top: 20px;
  }
}

form label.error {
    margin: -1.8em 0 0 0.4em;
    font-size: 0.9em;
    position: absolute;
    line-height: 1em;
    font-weight: 600;
    color: #FF200A;
}

#success {
    position: absolute;
    top: 35%;
    width: 100%; 
    left: 0;
    display: none;
}

#error {
    display:none;
}

#success span, #error span {
    display:block;
    top:0;
    width:100%
}

#success span p, #error span p {
    margin-top:6em
}

#success span p {
    color: #000;
    font-weight: 500;
    margin: 0 auto;
    text-align: center;
    width: 70%;
    position: relative;
    box-shadow: 0 0 4px #000;
    padding: 10px;
    background: rgba(255,255,255,1);
}

#error span p {
    color:#c0392b
}


/* FOOTER */
#footer {
	padding: 2em 0 0;
	background-color: #fff7f3;
	text-align: center;
}

.footer-container {
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

.footer-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 1em 2em;
    line-height: 0;
    position: relative;
}

.footer-section.fly img {
    width: 50px;
    vertical-align: middle;
    transform: scaleX(-1);
    position: relative;
    top: -12px;
}

@keyframes footerFly {
    0% {top: -12px;}
    50% {top: -24px;}
    100% {top: -12px;}
}

.footer-section.fly img:hover {
    animation: footerFly 2s infinite ease-in-out;
}

.footer-section p,
.footer-section a {
    font-size: 1.2em;
    font-weight: 400;
    color: #000;
    position: relative;
    top: 14px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.footer-section a:hover,
.footer-section a:focus {
    color: #FC6700;
}

.social-links {
    list-style: none;
    display: flex;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.social-links .icon {
    display: inline-block;
    position: relative;
    z-index: 1;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 23px;
    color: #f1f1f1;
    line-height: 52px;
    text-align: center;
    background-color: #FC6700;
    top: -12px;
}

.social-links .icon {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    color: #fff;
}

.social-links .icon:hover {
    background-color: #3B5998;
    color: #fff;
}

@media screen and (max-device-width: 414px) {

    .header {
        position: fixed;
        background: rgba(255, 247, 242, 0.95);
    }

    .intro {
        height: 80vh;
    }

    .logo {
        display: none;
    }

    .header .small-logo img {
        display: block;
        width: 50%;
    }

    .intro-inner h2, .subsection-inner h2,
    .intro.sub-page .intro-inner h2 {
        font-size: 1.3em;
        margin: 1em 0em 2em;
    }

    .intro-inner h1, .subsection-inner h1 {
        font-size: 2.75em;
        line-height: 1.3;
    }

    .inner h2 {
        font-size: 1em;
    }

    ul.home-benefits li, ul.study-info li,
    .esop-quote {
        -webkit-box-flex: auto;
        -webkit-flex: auto;
        -ms-flex: auto;
        flex: auto;
        margin: 1em 0 2em;
    }

    .spotlight {
        padding: 0;
    }

    .spotlight .image {
        margin: 0;
        top: 0;
        width: 100%;
    }

    .spotlight .image.why-us-img:after {
        display: none;
    }

    .spotlight article {
        width: 85%;
    }

    .inner.spotlight h3.main-subheader {
        font-size: 1.15em;
        font-weight: 300;
    }

    .slick-slide img {
        margin: 0 1em;
    }

    #footer {
        padding: 2em 0 0.5em;
    }

    .footer-section {
        -webkit-box-flex: auto;
        -webkit-flex: auto;
        -ms-flex: auto;
        flex: auto;
        height: 60px;
        margin: 0 4em;
    }

    .panel {
        min-height: 60vh;
        padding: 1.5rem 0;
    }

    .esop-steps.one:before, 
    .esop-steps.two:before, 
    .esop-steps.three:before, 
    .esop-steps.four:before, 
    .esop-steps.five:before, 
    .esop-steps.six:before, 
    .esop-steps.final:before {
        top: 295px;
        left: 0;
        color: rgba(252, 103, 0, 0.2);
    }

    .esop-steps.two:before {
        top: 125px;
    }

    .esop-steps.four:before {
        top: 255px;
    }

    .esop-steps.five:before {
        top: 235px;
    }

    .esop-steps.six:before {
        top: 275px;
    }

    .esop-steps.final:before {
        top: -25px;
    }

    .esop-steps,
    .esop-steps.one,
    .esop-steps.two,
    .esop-steps.three,
    .esop-steps.four,
    .esop-steps.five,
    .esop-steps.six,
    .esop-steps.final {
        top: 50px;
        left: 0;
        width: 100%;
        right: 0;
        margin-bottom: 10em;
        height: auto;
    }

    .step-image {
        width: 300px;
        position: relative;
        margin: 0 auto;
        display: block;
    }

    .esop-steps article,
    .esop-steps.one article,
    .esop-steps.three article,
    .esop-steps.four article,
    .esop-steps.five article,
    .esop-steps.six article,
    .esop-steps.final article {
        left: 0;
        top: 30px;
        position: relative;
        margin: 0 auto;
        width: 90%;
    }

    .esop-steps.final article {
        padding: 0;
    }

    .step-image.two {
        width: 175px;
    }

    #route {
        display: none;
    }

    ul.study-info {
        padding: 0;
    }

    .content__title--right {
        padding: 0;
    }

    .content__title--half {
        width: 90%;
        margin: 0 auto;
        top: -0.15em;
    }

    .content__title--medium {
        font-size: 14vw;
    }

    .content__subtitle__inner {
        top: 10px;
        width: 100%;
        font-size: 1.2em;
        position: relative;
    }

    #strategy-reveal-1:before, 
    #strategy-reveal-2:before, 
    #strategy-reveal-3:before, 
    #strategy-reveal-4:before {
        top: -8px;
        left: -240px;
        font-size: 8em;
    }

    #strategy-reveal-2:before {
        left: -5px;
    }

    #strategy-reveal-4:before {
        left: -10px;
    }

    .content__image-wrap--half {
        width: 60%;
        position: absolute !important;
        right: 0;
        top: 0;
    }

    .rev-main {
        top: 0.15em;
    }

    .rev-main h3 {
        font-size: 0.25em;
    }

    .rev-main ul li {
        font-size: 0.2em;
    }

    #personalized-strategies {
        margin-bottom: 2em;
    }

    .rev-main ul li:before {
        top: -2px;
    }

    .block-revealer__content {
        font-size: 0.8em;
    }

    #rev-6,
    #rev-12 {
        right: auto;
        left: 0;
    }

    #strategy-reveal-2 .content__title--half {
        top: -0.5em;
    }

    #strategy-reveal-3 .content__title--half {
        top: -0.75em;
    }

    #strategy-reveal-4 .content__title--half {
        top: -0.8em;
    }

    #rev-16, #rev-18 {
        padding-left: 0;
    }

    #rev-4, #rev-5,
    #rev-10, #rev-11 {
        left: -2.3em;
    }

    #rev-7, #rev-8,
    #rev-13, #rev-14 {
        left: 0.6em;
    }

    .top-about-image {
        display: none;
    }

    .left-side-about {
        width: 100%;
    }

    .inner h1.esop-love {
        font-size: 2.6em;
        margin-top: 1.1em;
        line-height: 1.4;
    }

    .team-image-border {
        left: 30%;
    }

    #our-clients .esop-quote {
        margin: 1em;
    }

    .contact-left, .contact-right {
        margin: 0;
    }

    .cd-form {
        width: 100%;
    }

    .contact-image {
        width: 340px;
        top: 10px;
    }

    .esop-contact h4 {
        width: 90%;
        margin: 0 auto;
    }

}

@media screen and (min-device-width: 768px) and (max-device-width: 1023px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {

    .intro {
        height: 50vh;
    }

    .intro-inner {
        width: 90%;
    }

    .intro-inner h1, .subsection-inner h1 {
        font-size: 2.5em;
    }

    .intro-inner h2, .subsection-inner h2 {
        font-size: 1.5em;
    }

    ul.home-benefits li, ul.study-info li {
        margin: 0 0.75em;
    }

    .home-benefits-header {
        font-size: 0.9em;
    }

    .inner p {
        font-size: 0.85em;
    }

    .spotlight {
        margin: 4em 0 6em;
    }

    .spotlight:last-child {
        margin-bottom: 6em;
    }

    .spotlight .image.why-us-img:after {
        right: -11%;
        top: -40px;
    }

    .spotlight:nth-of-type(2n) .image.why-us-img:after {
        left: -11%;
    }

    .slick-slide img {
        height: 75px;
    }

    .top-about-image {
        position: absolute;
        top: 32%;
        right: -100px;
        z-index: -1;
        opacity: 0.3;
        overflow: hidden;
        width: 65%;
    }

    .inner .esop-quote p {
        font-size: 1em;
    }

    .esop-quote:before {
        top: -140px;
        font-size: 28em;
    }

    .panel {
        min-height: 55vh;
        padding: 3.5rem 0;
    }

    ul.home-benefits.good-fit li {
        margin: 0 1em;
    }

    .inner .home-benefits.good-fit p {
        font-size: 1em;
    }

    #route {
        display: none;
    }

    .esop-steps.one,
    .esop-steps.two,
    .esop-steps.three,
    .esop-steps.four,
    .esop-steps.five,
    .esop-steps.six,
    .esop-steps.final {
        left: 40px;
        width: 90%;
    }

    .step-image {
        width: 260px;
    }

    .esop-steps article {
        width: 350px;
    }

    .esop-steps.one:before {
        margin: 0;
        right: auto;
        left: 90px;
    }

    .esop-steps.one article {
        left: 325px;
        top: 35px;
        width: 350px;
    }

    .step-image.two {
        width: 200px;
        right: 0;
    }

    .esop-steps.two:before {
        right: -250px;
    }

    .esop-steps.two article {
        left: 0;
        top: 25px;
    }

    .esop-steps.three {
        top: 0;
    }

    .step-image.three {
        width: 300px;
    }

    .esop-steps.three:before {
        top: -100px;
        left: -400px;
    }

    .esop-steps.three article {
        top: 60px;
        right: 0;
        left: auto;
        width: 350px;
    }

    .step-image.four, 
    .step-image.five, 
    .step-image.six {
        width: 260px; 
    }

    .step-image.four,
    .step-image.six {
        right: 0;
    }

    .esop-steps.four:before {
        left: 400px;
        top: -50px;
    }

    .esop-steps.four article {
        top: 50px;
        width: 350px;
        left: 0;
    }

    .esop-steps.five article {
        width: 350px;
        top: 20px;
        left: auto;
        right: 0;
    }

    .esop-steps.five:before {
        top: -80px;
        left: -280px;
    }

    .esop-steps.five article .steps-header {
        text-align: left;
    }

    .esop-steps.six article {
        top: 5px;
        width: 375px;
        left: 0;
    }

    .esop-steps.six:before {
        top: -140px;
        left: 200px;
    }

    .esop-steps.final {
        top: 0;
    }

    .esop-steps.final article {
        padding: 0 2em;
    }

    .study-info-header {
        font-size: 1.7em;
    }

    ul.study-info li {
        margin: 0 1.15em;
    }

    .study-info-description {
        font-size: 1.1em;
    }

    .footer-section {
        margin: 1em;
    }






}

@media screen and (min-device-width: 1024px) and (max-device-width: 1112px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {

    .intro {
        height: 50vh;
    }

    .home-benefits-header {
        font-size: 1.15em;
    }

    .inner p {
        font-size: 0.85em;
    }

    .spotlight {
        margin: 4em 0 6em;
    }

    .spotlight:last-child {
        margin-bottom: 6em;
    }

    .spotlight .image.why-us-img:after {
        right: -11%;
        top: -40px;
    }

    .spotlight:nth-of-type(2n) .image.why-us-img:after {
        left: -11%;
    }

    .slick-slide img {
        height: 75px;
    }

    .inner .esop-quote p {
        font-size: 1em;
    }

    .esop-quote:before {
        top: -140px;
        font-size: 28em;
    }

    .panel {
        min-height: 55vh;
        padding: 3.5rem 0;
    }

    #route {
        display: none;
    }

    .top-about-image {
        top: 20%;
        right: -170px;
        opacity: 0.3;
        width: 60%;
    }

    .esop-steps.one,
    .esop-steps.two,
    .esop-steps.three,
    .esop-steps.four,
    .esop-steps.five,
    .esop-steps.six,
    .esop-steps.final {
        left: 50px;
        width: 90%;
    }

    .esop-steps article {
        width: 500px;
    }

    .esop-steps.one:before {
        margin: 0;
        right: auto;
        left: 180px;
    }

    .esop-steps.one article {
        left: 425px;
    }

    .step-image.two {
        width: 260px;
        right: 0;
    }

    .esop-steps.two:before {
        right: -340px;
    }

    .esop-steps.two article {
        left: 0;
        top: 75px;
    }

    .esop-steps.three {
        top: 0;
    }

    .step-image.three {
        width: 350px;
    }

    .esop-steps.three article {
        top: 120px;
        right: 0;
        left: auto;
        width: 500px;
    }

    .step-image.four, 
    .step-image.five, 
    .step-image.six {
        width: 300px; 
    }

    .step-image.four,
    .step-image.six {
        right: 0;
    }

    .esop-steps.four:before {
        left: 430px;
    }

    .esop-steps.four article {
        top: 100px;
        width: 500px;
        left: 0;
    }

    .esop-steps.five article {
        width: 500px;
        top: 50px;
        left: auto;
        right: 0;
    }

    .esop-steps.five:before {
        top: -80px;
        left: -320px;
    }

    .esop-steps.six article {
        top: 45px;
        width: 500px;
        left: 0;
    }

    .esop-steps.six:before {
        top: -120px;
        left: 330px;
    }

    .esop-steps.final {
        top: 0;
    }

    .esop-steps.final article {
        padding: 0 2em;
    }

    .study-info-header {
        font-size: 2.25em;
    }

    ul.study-info li {
        margin: 0 1.5em;
    }

    .team-image-border {
        left: 25%;
    }

    #our-clients .esop-quote {
        margin: 1em 12em;
    }

}








