*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
h1, h2, P, body, html { padding: 0; margin: 0; }
p { line-height: 1.5rem; }
strong {
	font-weight: 800;
}
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	}
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */
*:focus {
    outline: none;
}
body, html { height:100%; min-height:100%; }

UL { margin:0px auto; padding:0; list-style:none }
li{list-style:none; margin:0; padding:0; display:inline-block }
.aling-center { text-align:center }

body {
	font-family: 'Montserrat', sans-serif;
	color: #000;
	padding:0;
	margin:0;
	font-weight:500;
}

a {
	color: #000;
	text-decoration: none;
}

a:hover,
a:active {
	color: #f3f3f3;
}

.container {
	width:100%;
	max-width:1240px;
	margin:0px auto;
	padding: 0 10px;
	position: relative;
}

/* header */
header {
	width:100%;
	height: 100%;
	background: url(assets/header-bg.jpg) no-repeat center top;
	background-size: cover;
	color: #fff;
	position: relative;
}
header .info {
	position: absolute;
	top: 350px;
}
header h1 {
	font-size: 3.5rem;
	font-weight: 700;
	text-transform: inherit;
	line-height: 4.5rem;
	padding: 0;
	margin: 10px 0;
}
header h1 span {
	font-size: 5.5rem;
}

header .more {
	position: absolute;
	animation: pulse 2s infinite;
	bottom: 20px;
	left: 0;
	right: 0;
	margin: 0px auto;
	cursor: pointer;
    animation-direction: alternate;
    -webkit-animation-name: pulse;
    animation-name: pulse;
	transition: .5s;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
header .more:hover {
	opacity: .5;
}

nav {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
}
.logo {
	margin-top: 40px;
}
.scroll-logo {
	display: none
}
nav UL {
	float: right;
	position: relative;
	top: 60px;
	right: 0;
}
nav LI {
	display:inline-block;
	padding:20px 35px;
	cursor:pointer;
	transition: .5s;
	color: #fff;
}
nav LI:last-child {
	background:#384e80;
	border-radius:5px;
	font-weight: 700;
}
.nav-scrolled {
	position:fixed;
	background: rgba(0,0,0,.85);
	-webkit-box-shadow: 0px 3px 23px 3px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 3px 23px 3px rgba(0,0,0,0.75);
	box-shadow: 0px 3px 23px 3px rgba(0,0,0,0.75);
}
.nav-scrolled .logo{
	display: none
}
.nav-scrolled .scroll-logo{
	display: block;
	position: relative;
	top: 30px;
}
.nav-scrolled UL {
	top: -15px;
}

#features {
	display: block
}
#features LI {
	text-transform: uppercase;
	background: url(assets/bullet.png) no-repeat 5px top;
	padding: 0 0 0 35px;
	width: 100%;
	margin-bottom: 20px;
}

h1 {
	font-size: 3.5rem;
	font-weight: 700 !important;
	text-transform: uppercase;
}
.contact,
.about,
.plan,
.whatwedo {
	text-align: center;
	padding: 110px 10px;
	font-weight: 500;
}
.border-bar {
    margin: 25px auto;
    height: 5px;
    width: 210px;
    background: #2c4487;
}

.plan {
	background: #dddddd
}
.plan UL {
	text-align: left;
	margin-top: 40px;
}
.plan LI {
	width: 33%;
	display: inline-block;
	padding: 0 20px 0 50px;
	background: url(assets/star.png) no-repeat 10px 0;
	line-height: 1.5rem;
	margin-top: 40px;
	vertical-align: top
}

.about {
	text-align: left;
}
.about LI {
	width: 49%;
	display: inline-block;
	vertical-align: middle
}
.about IMG {
	width: 100%;
	height: auto;
}
.about .border-bar {
	margin: 25px 0;
}

.testimonials {
	text-align: left;
	padding: 0;
	color: #fff;
}
.testimonials UL {
	display: block
}
.testimonials LI {
  	min-height: 420px;
	float: left;
    width: 33.33333333%;
	padding: 100px 120px 0 20px;
}
.testimonials LI:first-of-type{ background: url(assets/testimonials-bg-1.jpg) no-repeat; background-size: cover; }
.testimonials LI:nth-of-type(2){ background: url(assets/testimonials-bg-2.jpg) no-repeat; background-size: cover; }
.testimonials LI:nth-of-type(3){ background: url(assets/testimonials-bg-3.jpg) no-repeat; background-size: cover; }
.testimonials LI IMG {
	margin-bottom: 20px;
}
.testimonials P {
	font-style: italic;
}
.testimonials H1 {
	font-size: 1.25rem;
	text-transform: capitalize
}
.testimonials .border-bar {
    margin: 25px 0;
    height: 1px;
    width: 210px;
    background: #fff;
}

.contact H1 {
	text-transform: capitalize;
}
.contact H1 span {
	color: #2b3990
}
select,
input {
    -webkit-appearance: none;
    -moz-appearance:    none;
    appearance:         none;
    -webkit-user-select: none;
	display:block;
    width:90%;
	max-width: 500px;
    padding: 15px;
    color: #999;
    background-color:#fff;
    background-image:none;
    border: 1px solid #cccccc;
	border-radius: 5px;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-webkit-box-shadow: inset 0px 0px 15px -5px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 0px 0px 15px -5px rgba(0,0,0,0.1);
	box-shadow: inset 0px 0px 15px -5px rgba(0,0,0,0.1);
	margin: 15px auto;
	font-family: 'Montserrat', sans-serif;
}
input {
    -webkit-user-select: auto !important;
}
select:focus,
input:focus {
    border-color: #ccc;
    box-shadow: 0 0 5px rgba(0,0,0,.5);
}
.btn,
button[type=submit]{
	background: #2b3990;
	border-radius: 5px;
	border: 0;
	padding: 15px 20px;
	min-width: 200px;
	font-weight: 800;
	color: #fff;
	cursor: pointer;
	transition: .5s;
}

.btn {
	display: inline-block;
	margin-top: 35px !important;
	font-size: 1.25rem;
	padding: 40px 80px;
}

.btn:hover,
button[type=submit]:hover {
	background: #000;
}

.contact UL {
	text-align: center;
	margin-top: 20px;
}
.contact LI {
	width: 100%;
	margin-bottom: 10px;
}
.contact LI IMG {
	position: relative;
	top: 10px;
}

footer {
	text-align: center;
	padding: 0 0 110px;
}

.error{
	color:red;
	font-weight:bold;
	display:block;
	font-size:12px;
}
input.error{background:#ffdddd;}
#phone-error{
	margin-bottom:20px;
}
#email-sent{display:none;    color: #6aa754;}

.phone-num {color:#fff}
.phone-num:hover {color:#fff}
.phone-num-footer:hover {color:#000!important;}

@media screen and (min-width:1241px) {
  .menu-phone {display:none}
}
