
/*
Table Of Contents

1.)  Typography
2.)  Default Styles
3.)  Container - Main
4.)  Header
5.)  Content - Main
5.1) Banner - Main
5.2) Feature - List
5.3) Our - Services
6.)  Footer

===============================================*/

/*
 1.) Typography
----------------------------------------*/
@import url("font-awesome.css") all;

@font-face {
    font-family: 'myriad_proregular';
    src: url('../fonts/myriadpro-regular_0-webfont.eot');
    src: url('../fonts/myriadpro-regular_0-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/myriadpro-regular_0-webfont.woff') format('woff'),
         url('../fonts/myriadpro-regular_0-webfont.ttf') format('truetype'),
         url('../fonts/myriadpro-regular_0-webfont.svg#myriad_proregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'myriad_pro_lightbold';
    src: url('../fonts/myriadpro-semibold_0-webfont.eot');
    src: url('../fonts/myriadpro-semibold_0-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/myriadpro-semibold_0-webfont.woff') format('woff'),
         url('../fonts/myriadpro-semibold_0-webfont.ttf') format('truetype'),
         url('../fonts/myriadpro-semibold_0-webfont.svg#myriad_pro_lightbold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'merriweather_sansextrabold';
    src: url('../fonts/merriweathersans-extrabold-webfont.eot');
    src: url('../fonts/merriweathersans-extrabold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/merriweathersans-extrabold-webfont.woff2') format('woff2'),
         url('../fonts/merriweathersans-extrabold-webfont.woff') format('woff'),
         url('../fonts/merriweathersans-extrabold-webfont.ttf') format('truetype'),
         url('../fonts/merriweathersans-extrabold-webfont.svg#merriweather_sansextrabold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'montserratsemibold';
    src: url('../fonts/montserrat-semibold-webfont.eot');
    src: url('../fonts/montserrat-semibold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/montserrat-semibold-webfont.woff2') format('woff2'),
         url('../fonts/montserrat-semibold-webfont.woff') format('woff'),
         url('../fonts/montserrat-semibold-webfont.ttf') format('truetype'),
         url('../fonts/montserrat-semibold-webfont.svg#montserratsemibold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_nova_rgregular';
    src: url('../fonts/proxima_nova_reg-webfont.eot');
    src: url('../fonts/proxima_nova_reg-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/proxima_nova_reg-webfont.woff') format('woff'),
         url('../fonts/proxima_nova_reg-webfont.ttf') format('truetype'),
         url('../fonts/proxima_nova_reg-webfont.svg#proxima_nova_rgregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*
2.) Default Styles
----------------------------------------*/
* {
	margin: 0;
	padding: 0;
}

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;
}

/* render html5 elements as block */

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

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

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

sub, sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
	font-size: 20px;
}

sub {
	bottom: -0.25em;
}

img {
	width: auto;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	border: 0;
	-ms-interpolation-mode: bicubic;
	line-height: .5em;
}


/*  Custom animations
/*-------------------------------------------------- */
@-webkit-keyframes 
reveal {
 0% {
 opacity: 0;
}
 1% {
 opacity: 0;
 -webkit-transform: scale(0.98) translateY(-15px);
}
 80% {
 -webkit-transform: scale(1);
}
 100% {
 -webkit-transform: translateY(0);
}
}
 @-moz-keyframes 
reveal {
 0% {
 opacity: 0;
}
 1% {
 opacity: 0;
 -moz-transform: scale(0.98) translateY(-15px);
}
 80% {
 -moz-transform: scale(1);
}
 100% {
 -moz-transform: translateY(0);
}
}

/* #Basic Styles
================================================== */
body {
	font-family:"myriad_proregular", Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #666666;
	line-height: 24px; 
	background: #25425a;
}

@media only screen and (max-width: 767px) {
body {
	font-size: 15px;
	line-height: 22px; 
}
}


/* #Links
================================================== */
a {
	color: #ee6534;
	outline: 0;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	cursor: pointer;
	text-decoration: none;
}

a:hover {
	color: #ee6534;
	text-decoration: underline;
	outline: 0;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

a:focus, a:active, a:visited {
	outline: 0;
	text-decoration: none;
}


/* #Typography
================================================== */
h1, h2, h3, h4, h5, h6 {
	font-family: "myriad_pro_lightbold", Arial, Helvetica, sans-serif;
	font-size: 20px; 
	color: #333333; 
	text-transform: uppercase; 
	line-height: 1.1em; 
	padding: 0 0 10px 0;
	margin: 0;
}

h1 {
	font-size: 52px;
}

h2 {
	font-size: 37px;
}

h3 {
	font-size: 23px;
}

h4 {
	font-size: 20px;
}

p {
	padding: 0 0 20px 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
p:last-child {
	padding-bottom: 0;
}

.upper {
	text-transform: uppercase;
}

.lower {
	text-transform: none;
}

@media only screen and (max-width: 991px) {
h1 {
	font-size: 36px;
}

h2 {
	font-size: 28px;
}

h3 {
	font-size: 18px;
}

h4 {
	font-size: 16px;
}
}

@media only screen and (max-width: 767px) {
h1 {
	font-size: 30px;
}

h2 {
	font-size: 24px;
}

h3 {
	font-size: 18px;
}

h4 {
	font-size: 16px;
}
}


/* #Order and Unorder Styles
================================================= */
ul,
ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

li {
	position: relative;
	/* padding: 0 0 4px 12px; */
	margin: 0;
}

/* li:before {
	content: "";
	width: 4px;
	height: 4px;
	float: left;
	background: #666666; 
	border-radius: 10px;
	position: absolute;
	top: 12px;
	left: 0;
} */

@media (max-width: 767px) {
li:before {
	top: 10px;
}
}


/* #Input
================================================= */
form ul li:before {
	content: "";
	display: none;
}

input, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: 0;
}

textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {
	outline: 0;
}

input, textarea {
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
}

label { 
	width: 100%;
	float: left; 
	font-weight: normal;
	font-family:"myriad_pro_lightbold", Arial, Helvetica, sans-serif;
	font-size: 24px; 
	color: #1a1a1a; 
	text-align:left; 
	text-transform:uppercase; 
	line-height: 26px; 
	padding: 0 0 13px 0;
	margin: 0;
}

.input, 
.textarea {
	width: 100%;
	height: 65px;
	float: left;
	font-family: "myriad_proregular", Arial, Helvetica, sans-serif;
	font-size: 21px;
	color: #222222;
	line-height: 26px;
	letter-spacing: normal; 
	text-transform: none;
	background:  #ffffff;
	border: 2px solid #dedede;
	border-radius: 0;
	outline: none;
	position: relative;
	box-shadow: none;
	padding: 10px 20px;
	margin: 0;
}

.textarea {
	height: 225px;
	padding: 10px 20px;
	outline: none;
	resize: none;
}

:placeholder {
	color: #808080;
}

::-webkit-input-placeholder, 
::-webkit-textarea-placeholder,
::-webkit-select-placeholder{
	color: #808080;
}

input::-moz-placeholder, 
textarea::-moz-placeholder,
select::-moz-placeholder
{
	color: #808080;
}

::-moz-placeholder {
	color: #808080;
}

:-ms-input-placeholder {
	color: #808080;
}

@media only screen and (max-width: 991px) {
label { 
	font-size: 21px; 
	line-height: 22px; 
	padding: 0 0 10px 0;
}

.input, 
.textarea {
	height: 55px;
	font-size: 19px;
	line-height: 24px;
	padding: 10px 15px;
}

.textarea {
	height: 190px;
	padding: 10px 15px;
}
}

@media only screen and (max-width: 767px) {
label { 
	font-size: 18px; 
	line-height: 20px; 
}

.input, 
.textarea {
	height: 50px;
	font-size: 16px;
	line-height: 20px;
	padding: 10px 12px;
}

.textarea {
	height: 150px;
	padding: 10px 12px;
}
}

.sbHolder {
	width: 100%;
	height: 65px;
	float: left;
	position: relative;
	outline: none;
	text-decoration: none; 
}

.sbSelector {
	display: block;
	height: 65px;
	left: 0;
	line-height: 61px;
	outline: none;
	overflow: hidden;
	text-indent: 0;
	text-decoration: none;
	width: 100%;
	float: left;
	background:none;
	font-family:"myriad_proregular", Arial, Helvetica, sans-serif;
	font-size: 21px;
	color:#808080; 
	text-transform:none;
	text-align:left;
	letter-spacing:normal;
	border:2px solid #dedede; 
	border-radius:0;
	position:relative;
	padding:0 15px; 
	margin:0;
}

.sbSelector:link, .sbSelector:visited, .sbSelector:hover, .sbSelector:active {
	color:#858585;
	outline: none;
	text-decoration: none;
}

.sbHolder:hover .sbSelector {
	color:#858585;
	outline: none;
	text-decoration: none;
}

.sbToggle { 
	width: 45px;
	height: 61px;
	float:right;
	display: block;
	outline: none;
	position: absolute;
	right: 2px;
	top: 2px;
	z-index: 10;   
}

.sbToggle:before {
	float:right; 
	content:"\f078"; 
	width: 45px;
	height: 61px; 
	font-family:"FontAwesome"; 
	font-size:17px; 
	text-align:center;   
	color:#b3b3b3; 
	line-height:61px; 
	position:absolute; 
	top:0; 
	right:0;
}

.sbToggleOpen:before { 	
	content:"\f077"; 
}

.sbOptions {
	list-style:none;
	left: 0;
	margin: 0;
	padding: 0;
	position: relative;
	position: absolute;
	top: 60px;
	width: 100% !important;
	z-index: 1;
	overflow-y: auto;
	max-height:100px;
	z-index: 20;
	overflow:auto;
	overflow-x:hidden;
	background:#ffffff;
	border: 2px solid #dedede; 
	border-radius:0; 
	margin:0 !important;
}

.sbOptions li {
	width: 100%;
	float: left;
	padding: 0 ; 
	margin:0; 
}

.sbOptions a {
	width: 100%;
	float: left;
	display: block;
	color: #808080;
	font-size: 18px;
	font-family:"myriad_proregular", Arial, Helvetica, sans-serif;
	text-transform:none;
	border: none;
	outline: none;
	text-decoration: none; 
	text-align:left; 
	line-height:18px; 
	padding:15px 15px 15px 15px;
}

.sbOptions a:link, .sbOptions a:visited {
	color: #808080;
	text-decoration: none;
}

.sbOptions a:hover, .sbOptions a:focus, .sbOptions a.sbFocus {
	color: #ffffff;
	background:#999999;
}

.sbOptions .sbDisabled {
	color: #ffffff;
	display: block;
	padding: 10px 15px;
}

.sbOptions .sbGroup {
	color: #5b6e80;
	font-size: 18px;
	font-family:"proxima_nova_rgitalic", Arial, Helvetica, sans-serif;
	display: block;
	padding: 10px 11px;
}

.sbOptions .sbSub {
	padding-left: 11px;
}

@media only screen and (max-width: 991px) {
.sbHolder {
	height: 55px;
}

.sbSelector {
	height: 55px;
	line-height: 51px;
	font-size: 19px;
	padding: 0 15px; 
}

.sbToggle { 
	height: 55px;
}

.sbToggle:before {
	height: 55px; 
	font-size:14px; 
	line-height: 51px; 
}

.sbOptions a {
	font-size: 16px;
	padding: 13px 15px 12px 15px;
}

.sbOptions .sbGroup {
	font-size: 16px;
}
}

@media (max-width: 767px) {
.sbHolder {
	height: 50px;
}

.sbSelector {
	height: 50px;
	line-height: 46px;
	font-size: 16px;
	padding: 0 12px; 
}

.sbToggle { 
	height: 50px;
}

.sbToggle:before {
	height: 50px; 
	line-height: 46px; 
}

.sbOptions a {
	font-size: 15px;
	padding: 10px 12px 9px 12px;
}

.sbOptions .sbGroup {
	font-size: 15px;
}
}


/* #Buttons
================================================== */
.btn {
	width: auto;
	height: 40px;
	float: none;
	display: inline-block;
	font-weight: normal;
	font-family: "myriad_proregular", Arial, Helvetica, sans-serif;
	font-size: 21px;
	color: #ffffff;
	line-height: 40px;
	letter-spacing: 0.04em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: normal;
	vertical-align: middle;
	background: #ee6534;
	border: none;
	filter: 0;
	border-radius: 4px;
	position: relative;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	cursor: pointer;
	padding: 0 30px;
	margin: 0;
}

.btn:hover, 
.btn:focus, 
.btn:active, 
.btn:active:focus, 
.btn.active:focus {
	color: #ffffff;
	text-decoration: none; 
	background: #ed5018; 
	box-shadow: none;
}

.btn.disabled, 
.btn[disabled], 
fieldset[disabled] .btn {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
	opacity: .65;
}

a.btn.disabled, 
fieldset[disabled] a.btn {
	pointer-events: none;
}

.btn-out {
	width: 100%;
	float: left;
}

@media only screen and (max-width: 991px) {
.btn {
	font-size: 18px;
	padding: 0 20px;
}
}

@media only screen and (max-width: 767px) {
.btn {
	height: 40px;
	font-size: 16px;
	line-height: 40px;
	border-radius: 3px;
	padding: 0 20px;
}
}


/* #Show-Hide Responsive Options
================================================== */
.show_mobile {
	display: none;
}

.hide_mobile {
	display: block;
}

.show_both {
	display: none;
}

.hide_both {
	display: block;
}

@media only screen and (max-width:991px) {
.show_both {
	display: block;
}

.hide_both {
	display: none;
}
}

@media only screen and (max-width:767px) {
.show_mobile {
	display: block
}

.hide_mobile {
	display: none
}
}


/* #Owl-carousel
=======================================================*/
.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
	-moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,  
.owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%;
}

.owl-carousel .owl-nav.disabled,  
.owl-carousel .owl-dots.disabled {
	display: none;
}

.owl-carousel .owl-nav .owl-prev,  
.owl-carousel .owl-nav .owl-next,  
.owl-carousel .owl-dot {
	cursor: pointer;
	cursor: hand;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
	visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

.no-js .owl-carousel {
	display: block;
}

.owl-carousel .animated {
	animation-duration: 1000ms;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	animation-name: fadeOut;
}
 @keyframes 
fadeOut {
 0% {
 opacity: 1;
}
 100% {
 opacity: 0;
}
}

.owl-height {
	transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
	transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url("owl.video.play.png") no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-ms-transform: scale(1.3, 1.3);
	transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn, 
.owl-carousel .owl-video-playing .owl-video-play-icon {
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}

.owl-controls {
	padding: 0;
	margin: 0;
}

.owl-controls {
	width: 100%;
	float: left;
	text-align: center;
	padding: 0;
	margin: 0;
}

.owl-nav {
	width: 100%;
	float: left; 
}

.owl-nav div {
	width: 50px;
	height: 50px;
	float: left;
	background:rgba(255, 255, 255, 0.20);
	border-radius: 2px;
	position: absolute;
	top: 50%;
	z-index: 10;
	cursor: pointer;
	text-indent: -99999px;
	margin: -25px 0 0 0;
}

.owl-nav div:hover { 
	background:rgba(255, 255, 255, 1);
}

.owl-nav div:before {
	width: 100%;
	height: 100%;
	float: left;
	font-family: "FontAwesome";
	font-size: 20px;
	color: #ffffff;
	line-height: 50px;
	text-align: center;
	text-indent: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.owl-nav div:hover:before { 
	color:#f06529;
}

.owl-nav .owl-prev {
	left:30px;
}

.owl-nav .owl-prev:before {
	content: "\f104";
	padding-right: 2px;
}

.owl-nav .owl-next {
	right:30px;
}

.owl-nav .owl-next:before {
	content: "\f105";
	padding-left: 2px;
}


@media only screen and (max-width:767px) {
.owl-nav div {
	width: 30px;
	height: 30px;
	margin: -15px 0 0 0; 
	display:none;
}

.owl-nav div:before {
	font-size: 14px;
}

.owl-nav .owl-prev {
	left:20px;
}

.owl-nav .owl-next {
	right:20px;
}
}

/* Bullets */
.owl-dots {
	width: 100%; 
	float: none;
	display: inline-block;
	vertical-align: middle; 
	position: absolute; 
	left: 0; 
	bottom:0;
	padding: 0;
	margin: 0 0 30px 0; 
}

.owl-dots .owl-dot {
	width: auto;
	float: none;
	display: inline-block;
	vertical-align: top;
	zoom: 1;
	padding: 0;
	margin: 0 5px; 
	position:relative;   
	counter-increment:item; 
}

.owl-dots .owl-dot:before { 
	content:"0"counter(item); 
	width:20px; 
	height:18px; 
	float:left; 
	font-size:12px; 
	color:rgba(255, 255, 255, 0.40); 
	line-height:14px; 
	position:absolute; 
	top:0px; 
	left:0; 
	z-index:10; 
}

.owl-dots .owl-dot.active:before { 
	color:rgba(255, 255, 255, 1);
}

.owl-dots .owl-dot span {
	display: block;
	width: 20px;
	height: 21px; 
	background:none;
	border: none;
	border-radius: 0;
	padding: 0;
	margin: 0; 
	position:relative;
}

.owl-dots .owl-dot span:after { 
	content:""; 
	width:20px; 
	height:3px; 
	background:rgba(255, 255, 255, 0.40); 
	position:absolute; 
	bottom:0; 
	left:0; 
	z-index:10;
}

.owl-dots .owl-dot.active span {
	width: 20px;
	height: 21px;
	filter: Alpha(Opacity=100);
	opacity: 1;
}

.owl-dots .owl-dot.active span:after { 
	background:rgba(255, 255, 255, 1);
}

.owl-carousel .owl-controls .disabled, 
.owl-carousel .owl-controls .disabled {
	display: none;
}


/*
 3.) Home page
----------------------------------------*/
.container-main {
	width: 100%;
	float: left; 
	background: #ffffff;
	overflow: hidden;
}

.container {
	width: 100%;
	max-width: 1230px;
	margin: 0 auto;
	padding: 0 30px;
}

@media only screen and (max-width: 767px) {
.container {
	max-width: 540px;
	padding: 0 20px;
}
}

/* Vertical Align - Middle */
.outer-bg {
	width: 100%;
	height: 100%;
	float: none;
	display: table;
	margin: 0 auto
}

.inner-bg {
	width: 100%;
	height: 100%;
	float: none;
	display: table-cell;
	vertical-align: middle;
}

/* Menu - Btn */
.menu-btn {
	width: 30px;
	height: 24px;
	float: left;
	display: none;
	cursor: pointer;
	z-index: 10001;
	position: absolute;
	top: 94px;
	right: 30px;
}

.menu-btn .icon-bar {
	width: 100%;
	float: right;
	text-decoration: none;
	position: relative;
}

.menu-btn .icon-bar span {
	width: 100%;
	height: 4px;
	float: left;
	background: #ffffff;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	margin: 10px 0 0 0;
}

.menu-btn .icon-bar span:before {
	content: "";
	width: 100%;
	height: 4px;
	float: left;
	background: #ffffff;
	position: absolute;
	top: -8px;
	left: 0;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.menu-btn .icon-bar span:after {
	content: "";
	width: 100%;
	height: 4px;
	float: left;
	background: #ffffff;
	position: absolute;
	top: 8px;
	left: 0;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.menu-btn.active {
	color: #ffffff;
}

.menu-btn.active .icon-bar span {
	background: none;
}

.menu-btn.active .icon-bar span:before {
	height: 3.3px;
	top: 0;
	background: #ffffff;
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	transform: rotate3d(0, 0, 1, 45deg);
}

.menu-btn.active .icon-bar span:after {
	height: 3.3px;
	top: 0;
	background: #ffffff;
	-webkit-transform: rotate3d(0, 0, 1, -45deg);
	transform: rotate3d(0, 0, 1, -45deg);
}

@media only screen and (max-width:991px) {
.menu-btn {
	display: block;
}
}

@media only screen and (max-width:767px) {
.menu-btn {
	width: 25px;
	height: 35px;
	top: 76px;
	right: 20px;
}

.menu-btn .icon-bar span {
	height: 3px;
	margin: 16px 0 5px 0;
}

.menu-btn .icon-bar span:before {
	height: 3px;
	top: -7px;
}

.menu-btn .icon-bar span:after {
	height: 3px;
	top: 7px;
}

.menu-btn.active .icon-bar span:before {
	height: 2.3px;
}

.menu-btn.active .icon-bar span:after {
	height: 2.3px;
}
}

@media only screen and (max-width:479px) {
.menu-btn {
	top: 97px;
}
}


/* Social - Links */
.social-links {
	width: 100%;
	float: left;
	text-align: center;
	padding: 0 0 36px 0;
}

.social-links:last-child {
	padding: 0;
}

.social-links ul {
	width: 100%;
	float: left;
	margin: 0 0 -8px 0;
}

.social-links ul li {
	width: 26px;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0 4px 8px 4px;
}

.social-links ul li:before {
	display: none;
}

.social-links ul li a {
	width: 26px;
	height: 26px;
	float: left;
	font-size: 16px;
	color: #25425a;
	line-height: 26px;
	text-decoration: none;
	background: #ffffff;
	border-radius: 30px;
}

.social-links ul li a span {
	display: none;
}

.social-links ul li a:hover {
	color: #ffffff;
	background: #ee6534;
}

.social-links ul li a.active {
	color: #ffffff;
	background: #ee6534;
}

@media only screen and (max-width: 767px) {
.social-links { 
	padding: 0 0 31px 0;
}
}


/* Heading - Text */
.heading-text {
	width:100%;
	float:left;
	text-align:center;
	padding:0 0 38px 0;
}

.heading-text:last-child {
	padding-bottom:0;
}

.heading-text h2 {
	padding:0 0 16px 0;
}

.heading-text h2:last-child {
	padding-bottom:0;
}

.heading-text p {
	font-size:26px;
	color:#333333;
	line-height:32px;
}

.heading-text aside {
	width:100%;
	max-width:1000px;
	float:none;
	display:inline-block;
	vertical-align:top;
}

@media only screen and (max-width:991px) {
.heading-text {
	padding:0 0 29px 0;
}

.heading-text h2 {
	padding:0 0 10px 0;
}

.heading-text p {
	font-size:22px;
	line-height:26px;
}
}

@media only screen and (max-width:767px) {
.heading-text {
	padding:0 0 26px 0;
}

.heading-text h2 {
	padding:0 0 12px 0;
}

.heading-text p {
	font-size:18px;
	line-height:22px;
}
}


/*
 4.) Header
----------------------------------------*/
#header-main {
	width: 100%;
	height: 275px;
	float: left;
	z-index: 500; 
	position: absolute;
	top: 0;
	left: 0; 
}

#header-main .container {
	max-width: 1900px;
}

#header-main .logo {
	width: 548px;
	float: left;
	position: relative;
	z-index: 200;
	margin: 43px -548px 0 0;
}

#header-main .logo img {
	width: 100%;
}

#header-main .top-links { 
	width: 100%; 
	float: left; 
	position: relative; 
	z-index: 20; 
	margin: 15px 0;
}

#header-main .top-links ul { 
	float: right;
}

#header-main .top-links ul li { 
	float: left; 
	font-family: "myriad_pro_lightbold", Arial, Helvetica, sans-serif;
	font-size: 28px;
	color: #ffffff; 
	line-height: 32px; 
	text-transform: uppercase; 
	letter-spacing: normal; 
	position: relative;
	padding: 5px 0 5px 65px; 
	margin: 0 0 0 30px;
}

#header-main .top-links ul li:before {  
	content:""; 
	width:41px; 
	height:40px; 
	float:left; 
	display: block;
	background: url(../img/icon-01.png) no-repeat top center; 
	border-radius:none;
	background-size: 41px auto; 
	position:absolute; 
	top:0 ; 
	left: 0;
}

#header-main .top-links ul li.call-us:before { 
	background: url(../img/icon-02.png) no-repeat top center;
	background-size: 40px auto;
}

#header-main .top-links ul li a { 
	color: #ffffff; 
	text-decoration: none; 
}

#header-main .top-links ul li a:hover { 
	color: #ee6534;
}

#header-main .nav-bar { 
	float: right;
	padding-bottom:10px;
}

#header-main .nav-bar nav {
	float: left; 
}

#header-main .nav-bar nav ul {
	float: left; 
}

#header-main .nav-bar nav ul li { 
	height: 40px;
	float: left;
	font-family: "myriad_proregular", Arial, Helvetica, sans-serif;
	font-size: 22px;
	color: #ffffff; 
	line-height: 26px; 
	letter-spacing: 0. 06em;
	text-transform: uppercase;
	padding: 0;
	margin: 0 0 0 55px;
}

#header-main .nav-bar nav ul li:before {
	display: none;
}

#header-main .nav-bar nav ul li a { 
	height: 40px;
	float: left;
	color: #ffffff; 
	line-height: 40px;
	text-decoration: none;
}

#header-main .nav-bar nav ul li:hover a {
	color: #ee6534;
}

#header-main .nav-bar nav ul li.active a {
	color: #ee6534;
}

#header-main .nav-bar .btn { 
	float: left; 
	padding: 0 20px; 
	margin: 0 0 0 25px;
}

@media only screen and (max-width:1699px) {
#header-main {
	height: 225px;
}

#header-main .logo {
	width: 450px;
	margin: 35px -450px 0 0;
}

#header-main .top-links { 
	margin: 15px 0;
}

#header-main .top-links ul li { 
	font-size: 25px;
	line-height: 28px; 
	text-transform: uppercase; 
	letter-spacing: normal;
	padding: 3px 0 3px 55px; 
	margin: 0 0 0 30px;
}

#header-main .top-links ul li:before { 
	background-size: 34px auto;
}

#header-main .top-links ul li.call-us:before { 
	background-size: 33px auto;
}

#header-main .nav-bar nav ul li { 
	font-size: 20px;
	margin: 0 0 0 40px;
}

#header-main .nav-bar .btn { 
	font-size: 19px; 
	margin: 0 0 0 20px;
}
}

@media only screen and (max-width:1499px) {
#header-main {
	height: 190px;
}

#header-main .logo {
	width: 380px;
	margin: 30px -380px 0 0;
}

#header-main .top-links { 
	margin: 15px 0;
}

#header-main .top-links ul li { 
	font-size: 22px;
	line-height: 26px; 
	padding: 0 0 0 45px; 
	margin: 0 0 0 25px;
}

#header-main .top-links ul li:before { 
	background-size: 28px auto;
}

#header-main .top-links ul li.call-us:before { 
	background-size: 27px auto;
}

#header-main .nav-bar nav ul li { 
	font-size: 18px;
	margin: 0 0 0 35px;
}

#header-main .nav-bar .btn { 
	font-size: 17px; 
	margin: 0 0 0 20px;
}
}

@media only screen and (max-width:1279px) {
#header-main {
	height: 150px;
}

#header-main .logo {
	width: 260px;
	margin: 30px -260px 0 0;
}

#header-main .top-links { 
	margin: 15px 0;
}

#header-main .top-links ul li { 
	font-size: 20px; 
	padding: 0 0 0 45px;
	margin: 0 0 0 20px;
}

#header-main .top-links ul li:before { 
	background-size: 24px auto;
}

#header-main .top-links ul li.call-us:before { 
	background-size: 23px auto;
}

#header-main .nav-bar nav ul li { 
	font-size: 16px;
	margin: 0 0 0 25px;
}

#header-main .nav-bar .btn { 
	font-size: 15px; 
	padding: 0 15px; 
	margin: 0 0 0 20px;
}
}

@media only screen and (max-width:991px) {
#header-main {
	height: 170px;
	padding:60px 0 20px 0; 
}

#header-main .logo {
	width: 260px;
	margin: 0 -260px 0 0;
}

#header-main .top-links { 
	width: 100%; 
	height: 40px; 
	text-align: center; 
	border-bottom: 1px solid rgba(255, 255, 255, 0.30);
	position: absolute; 
	top: 0; 
	left: 0;
	padding: 7px 30px; 
	margin: 0;
}

#header-main .top-links ul { 
	float: none; 
	display:inline-block; 
	vertical-align: top;
	margin: 0 -10px -10px -10px;
}

#header-main .top-links ul li {
	float: none; 
	display:inline-block; 
	vertical-align: top;
	font-size: 18px; 
	padding: 0 0 0 40px;
	margin: 0 10px 10px 10px;
}

#header-main .top-links ul li:before { 
	background-size: 20px auto; 
	top: 4px;
}

#header-main .top-links ul li.call-us:before { 
	background-size: 20px auto;
}

#header-main .nav-bar { 
	width: 100%; 
	display: none;
	background: #25425a; 
	position: absolute;  z-index:10;
	top: 0; 
	left: 0; 
	padding: 0 0 30px 0; 
}

#header-main .nav-bar nav { 
	width: 100%; 
	padding: 190px 0 0 0;
}

#header-main .nav-bar nav ul { 
	width: 100%;
}

#header-main .nav-bar nav ul li { 
	width: 100%; 
	height: auto; 
	font-size: 16px;
	margin: 0;
}

#header-main .nav-bar nav ul li a { 
	width: 100%; 
	height: auto; 
	line-height: inherit; 
	padding: 7px 30px;
}

#header-main .nav-bar .btn {
	font-size: 15px; 
	padding: 0 15px; 
	margin: 15px 0 0 30px;
}
}

@media only screen and (max-width:767px) {
#header-main {
	height: 150px;
	padding:60px 0 20px 0; 
}

#header-main .logo {
	width: 200px;
	margin: 0 -200px 0 0;
}

#header-main .top-links { 
	padding: 10px 20px 7px 20px; 
}

#header-main .top-links ul { 
	float: none; 
	display:inline-block; 
	vertical-align: top;
	margin: 0 -7px -10px -7px;
}

#header-main .top-links ul li {
	font-size: 14px; 
	line-height: 18px;
	margin: 0 7px 10px 7px;
}

#header-main .top-links ul li:before { 
	background-size: 18px auto; 
	top: 3px;
}

#header-main .top-links ul li.call-us:before { 
	background-size: 18px auto;
}

#header-main .nav-bar nav { 
	padding: 180px 0 0 0;
}

#header-main .nav-bar nav ul li a { 
	padding: 7px 20px;
}

#header-main .nav-bar .btn {
	margin: 15px 0 0 20px;
}
}

@media only screen and (max-width:479px) {
#header-main {
	height: 177px;
	padding: 88px 0 20px 0; 
}

#header-main .top-links { 
	height: 68px;
	padding: 9px 20px 9px 20px; 
}

#header-main .top-links ul { 
	width: 100%; 
	margin: 0 0 -10px 0;
}

#header-main .top-links ul li { 
	float: none; 
	display: inline-block; 
	vertical-align: middle;
	margin: 0 20px 10px 20px;
}

#header-main .nav-bar nav { 
	padding: 187px 0 0 0;
}
}


/*
 5.) Content - Main
----------------------------------------*/
#content-main { 
	width:100%; 
	float:left;
}


/*
 5.1) Banner - Main
----------------------------------------*/
.banner-main {
	width:100%;
	float:left;
	text-align:center;
}

.banner-main .item {
	width:100%;
	float:left;
	position:relative;
}

.banner-main .item figure {
	width:100%;
	float:left;
	text-align:center;
	position:relative;
	overflow:hidden;
}

.banner-main figure:before {
	content: "";
	width: 160%;
	height: 300px;
	float: left;
	box-shadow: inset 0 140px 160px rgba(0, 0, 0, 0.20);
	position: absolute;
	top: 0;
	left: 0;
	margin: 0 -30%;
}

.banner-main .item figure img {
	width:100%;
	display:inline-block;
	min-width:1900px;
	margin:0 -950px;
}

.banner-main .banner-content {
	width:100%;
	height:100%;
	float:left;
	text-align:center;
	position: relative;
	background:rgba(0, 0, 0, 0.60);
	position:absolute;
	top:0;
	left:0;
	padding:275px 0 0 0;
}

.banner-main .banner-content .middle-content {
	width:100%;
	max-width:950px;
	float:none;
	display:inline-block;
	vertical-align:top;
}

.banner-main .banner-content .middle-content h1, 
.banner-main .banner-content .middle-content h2 {
	font-size:52px;
	color:#ffffff;
	padding:0 0 33px 0;
}

.banner-main .banner-content .middle-content p {
	font-size:3em;
	color:#ffffff;
	line-height:28px;
	padding:0;
}

.banner-main .banner-content .middle-content .btn {
	width:100%;
	max-width:185px;
	font-family:"merriweather_sansextrabold", Arial, Helvetica, sans-serif;
	font-size:12px;
	padding:0 10px;
}

.banner-main .banner-content .middle-content .btn span {
	float:none;
	display:inline-block;
	position:relative;
	padding:0 15px 0 0;
}

.banner-main .banner-content .middle-content .btn span:before {
	content:"\f105";
	width:auto;
	float:right;
	font-family:"FontAwesome";
	position:absolute;
	top:0;
	right:0;
}

.banner-main .banner-content .middle-content .btn-out {
	padding:65px 0 0 0;
}

@media only screen and (max-width: 1699px) {
.banner-main .banner-content {
	padding:225px 0 0 0;
}
}

@media only screen and (max-width: 1499px) {
.banner-main .banner-content {
	padding:190px 0 0 0;
}
}

@media only screen and (max-width: 1279px) {
.banner-main .banner-content {
	padding:150px 0 0 0;
}

.banner-main .banner-content .middle-content {
	max-width:800px;
}
}

@media only screen and (max-width: 991px) {
.banner-main .item figure img {
	min-width:1400px;
	margin:0 -700px;
}

.banner-main .banner-content {
	padding:170px 0 0 0;
}

.banner-main .banner-content .middle-content {
	max-width:600px;
}

.banner-main .banner-content .middle-content h1, 
.banner-main .banner-content .middle-content h2 {
	font-size:36px;
	padding:0 0 28px 0;
}

.banner-main .banner-content .middle-content p {
	font-size:19px;
	line-height:23px;
}

.banner-main .banner-content .middle-content .btn-out {
	padding:55px 0 0 0;
}
}

@media only screen and (max-width: 767px) {
.banner-main .item figure img {
	min-width:1200px;
	margin:0 -600px;
}

.banner-main .banner-content {
	padding:150px 0 0 0;
}

.banner-main .banner-content .middle-content h1, 
.banner-main .banner-content .middle-content h2 {
	font-size:30px;
	padding:0 0 15px 0;
}

.banner-main .banner-content .middle-content p {
	font-size:16px;
	line-height:20px;
}

.banner-main .banner-content .middle-content .btn {
	max-width:165px;
}

.banner-main .banner-content .middle-content .btn-out {
	padding:35px 0 0 0;
}
}

@media only screen and (max-width: 479px) {
.banner-main .banner-content {
	padding:177px 0 0 0;
}
}

/*
 5.2) Feature - List
----------------------------------------*/
.feature-list {
	width:100%;
	float:left;
	text-align:center;
	background:#2e4960;
	padding:35px 0 45px 0;
}

.feature-list figure {
	width:240px;
	height:240px;
	float:none;
	display:inline-block;
	vertical-align:top;
	text-align:center;
	overflow:hidden;
	border-radius:240px;
	margin:0 0 20px 0;
}

.feature-list figure img {
	width:100%;
	height:100%;
	border-radius:240px;
}

.feature-list h3 { 
	width:100%; 
	float:left; 
	font-family:"myriad_proregular", Arial, Helvetica, sans-serif; 
	font-size:21px; 
	color:#ffffff; 
	line-height:24px; 
	background:#ee6534; 
	border-radius:4px; 
	padding:8px 13px; 
	margin:0; 
	cursor:pointer;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.feature-list h3 a { 
	width:100%; 
	float:left; 
	color:#ffffff; 
	text-decoration:none;
}

.feature-list h3:hover { 
	background:#ed5018;
}

.feature-list .article {
	width:100%;
	max-width:240px;
	float:none;
	display:inline-block;
	vertical-align:top;
	margin:0 2.65% 5.8% 2.65%;
}

.feature-list .article-out {
	width:106%;
	float:left;
	margin:0 -3% -5.8% -3%;
}

@media only screen and (max-width: 1279px) {
.feature-list .article {
	margin:0 2.3% 5% 2.3%;
}

.feature-list .article-out {
	margin:0 -3% -5% -3%;
}
}

@media only screen and (max-width: 1199px) {
.feature-list .article {
	margin:0 3.5% 7% 3.5%;
}

.feature-list .article-out {
	margin:0 -3% -7% -3%;
}
}

@media only screen and (max-width: 767px) {
.feature-list .article {
	margin:0 10px 30px 10px;
}

.feature-list figure {
	width:220px;
	height:220px;
	margin:0 0 15px 0;
}

.feature-list h3 { 
	font-size:18px; 
	line-height:21px; 
	padding:7px 10px; 
}

.feature-list .article-out {
	width:100%;
	margin:0 0 -30px 0;
}
}


/*
 5.3) Our - Services
----------------------------------------*/
.our-services {
	width:100%;
	float:left;
	text-align:center;
	background:#ffffff;
	overflow:hidden;
	padding:60px 0 30px 0;
}

.our-services .container {
	max-width:1860px;
}

.our-services .service-list {
	width:100%;
	float:left;
}

.our-services .travel-img {
	width:33%;
	float:none;
	display:inline-block;
	vertical-align:bottom;
	margin:0 -2px;
}

.our-services .travel-img img {
	width:100%;
}

.our-services .article-list {
	width:67%;
	float:none;
	display:inline-block;
	vertical-align:bottom;
	padding:0 0 0 40px;
	margin:0 -2px;
}

.our-services .article-list .article {
	width:30.73%;
	float:left;
	background:#fafafa;
	margin:0 1.30% 2.60% 1.30%;
}

.our-services .article-list .article figure {
	width:100%;
	float:left;
}

.our-services .article-list .article figure img {
	width:100%;
}

.our-services .article-list .article aside {
	width:100%;
	float:left;
	text-align:left;
	position:relative;
	padding:20px 30px 50px 30px;
}

.our-services .article-list .article aside h3 {
	padding:0 0 17px 0;
}

.our-services .article-list .article aside h3 a {
	color:#333333;
}

.our-services .article-list .article aside h3 a:hover {
	color:#ee6534;
}

.our-services .article-list .article aside h3 a.active {
	color:#ee6534;
}

.our-services .article-list .article aside p {
	padding:0;
}

.our-services .article-list .article .icon {
	width:72px;
	height:45px;
	float:right;
	line-height:45px;
	text-align:center;
	background:#ee6534;
	border-radius:30px 0 0 30px;
	position:absolute;
	top:-23px;
	right:0;
}

.our-services .article-list .article .icon img {
	max-width:100%;
}

.our-services .article-list .article-out {
	width:102.60%;
	float:left;
	margin:0 -1.30% -2.60% -1.30%;
}

@media only screen and (max-width:1499px) {
.our-services .article-list .article aside {
	padding:20px 20px 40px 20px;
}

.our-services .article-list .article aside h3 {
	font-size:20px;
	padding:0 0 15px 0;
}
}

@media only screen and (max-width:1279px) {
.our-services .travel-img {
	width:100%;
	text-align:center;
	margin:0 0 20px 0;
}

.our-services .travel-img img {
	width:300px;
}

.our-services .article-list {
	width:100%;
	padding:0;
	margin:0;
}
}

@media only screen and (max-width:991px) {
.our-services {
	padding:50px 0 25px 0;
}

.our-services .travel-img img {
	width:280px;
}

.our-services .article-list .article aside {
	padding:20px 20px 30px 20px;
}

.our-services .article-list .article aside h3 {
	font-size:18px;
	padding:0 0 12px 0;
}

.our-services .article-list .article aside p {
	font-size:15px;
	line-height:22px;
}

.our-services .article-list .article .icon {
	width:68px;
	height:40px;
	line-height:38px;
	top:-20px;
	right:0;
}

.our-services .article-list .article .icon img {
	max-width:26px
}

.our-services .article-list .article-out {
	width:102.60%;
	float:left;
	margin:0 -1.30% -2.60% -1.30%;
}
}

@media only screen and (max-width:767px) {
.our-services {
	padding:40px 0 20px 0;
}

.our-services .container {
	max-width:540px;
}

.our-services .travel-img img {
	width:220px;
}

.our-services .article-list .article {
	width:100%;
	margin:0 0 25px 0;
}

.our-services .article-list .article-out {
	width:100%;
	margin:0 0 -25px 0;
}
}


/*
 6.) Footer
----------------------------------------*/
#footer-main {
	width:100%;
	float:left;
	text-align:center;
	background:#25425a;
	padding:28px 0;
}

#footer-main p {
	font-family:"proxima_nova_rgregular", Arial, Helvetica, sans-serif;
	font-size:20px;
	color:#ffffff;
	line-height:26px;
}

#footer-main p span {
	padding:0 5px;
}

#footer-main p a {
	color:#ffffff;
}

#footer-main p a:hover {
	color:#ffffff;
}

#footer-main p a.active {
	color:#ffffff;
}

@media only screen and (max-width:767px) {
#footer-main p {
	font-size:18px;
	line-height:24px;
}
}


/* Popup - Content*/
.popup {
	width:100%;
	max-width:880px;
	float:left;
	text-align:center;
	background:#ffffff;
	padding:35px;
}

.popup h2 {
	width:100%;
	max-width:600px;
	float:none;
	display:inline-block;
	vertical-align:top;
	font-size:28px;
	color:#ffffff;
	text-align:center;
	background:#ee6534;
	padding:14px 15px;
	margin:0 0 15px 0;
}

.popup .lrg-txt {
	width:100%;
	float:left;
	padding:0 0 20px 0;
}

.popup .lrg-txt p {
	font-size:22px;
	line-height:24px;
	color:#808080;
}

.popup .lrg-txt p a {
	color:#494b4c;
}

.popup .lrg-txt p a:hover {
	color:#ee6534;
}

.popup .lrg-txt strong {
	font-family:"myriad_pro_lightbold", Arial, Helvetica, sans-serif;
	color:#494b4c;
}

.popup label.name {
	font-family:"montserratsemibold", Arial, Helvetica, sans-serif;
}

.popup label.email {
	font-family:"montserratsemibold", Arial, Helvetica, sans-serif;
}

.popup ul {
	width:100%;
	float:left;
	padding:0 0 20px 0;
}

.popup ul li {
	width:50%;
	float:left;
	padding:10px 10px;
	margin:0;
}

.popup ul li:before {
	display:none;
}

.popup ul li.full {
	width:100%;
	float:left;
	margin:0;
}

.popup ul li:last-child {
	padding-bottom:0;
}

.popup ul li label {font-size:16px; line-height:16px; padding:0 0 5px 0;}
.popup ul li .input, .popup ul li .textarea {height:45px; font-size:16px; line-height:18px; padding:10px 10px;}
.popup ul li .sbToggle:before {height:41px; font-size:16px; line-height:41px;}
.popup ul li .sbToggle {height:41px;}
.popup ul li .sbSelector {height: 45px; line-height:45px; font-size:16px; padding:0 10px;}
.popup ul li .sbHolder {height:45px;}
.popup ul li .textarea {height:80px; padding:10px 10px;}
.popup .btn {max-width:260px; height:45px; font-size:18px; line-height:45px; margin-right:10px; float:right; border-radius:0px; letter-spacing:normal;}
.popup ul li .sbOptions a {font-size:16px; padding:10px;}
.popup .sbOptions {
	padding:0;
	margin:0;
}

.popup .sbOptions li {
	width:100%;
	padding:0;
	margin:0;
}

@media only screen and (max-width: 991px) {
.popup {
	max-width:620px;
	padding:20px;
}

.popup h2 {
	max-width:480px;
	font-size:22px;
	padding:10px;
}

.popup .lrg-txt p {
	font-size:20px;
	line-height:20px;
}

.popup ul li label {font-size:14px; line-height:14px;}
.popup ul li .input, .popup ul li .textarea {height:40px; font-size:15px; padding:5px 7px;}
.popup ul li .sbSelector {height:40px; line-height:40px; font-size:15px; padding:0 7px;}
.popup ul li .sbHolder {height:40px;}
.popup ul li .sbToggle {height:36px;}
.popup ul li .sbToggle:before {height:36px; font-size:13px; line-height:36px;}
.sbSelector {height:40px; line-height:40px; font-size:15px;}
.popup ul li .textarea {height:60px;}
.popup .btn {max-width:220px; height:40px; font-size:15px; line-height:40px;}
.popup ul li .sbOptions a {font-size:15px;}

}

@media only screen and (max-width: 767px) {
.popup {
	max-width:420px;
	padding:15px;
}

.popup h2 {
	max-width:360px; font-size:16px;
    padding: 10px 10px;
    margin: 0 0 10px 0;
}

.popup .lrg-txt {
	padding:0 0 15px 0;
}

.popup .lrg-txt p {
	font-size:13px;
	line-height:16px;
}

.popup ul {
	width:100%;
	padding:0 0 15px 0;
	margin-right:0;
}

.popup ul li {
	width:100%;
	padding:0 0 15px 0;
	margin:0;
}
.popup ul li label {font-size: 13px; line-height: 14px;}
.popup ul li .input, .popup ul li .textarea {height:36px; font-size:13px; line-height:18px; padding:5px 7px;}
.popup ul li .sbSelector {height:36px;}
.popup ul li .sbHolder {height:36px;}
.popup ul li .sbToggle {height:32px;}
.popup ul li .sbToggle:before {height: 32px; line-height: 32px;}
.popup ul li .sbSelector {height: 36px; line-height: 36px; font-size: 14px; padding: 0 7px;}
.popup ul li .sbOptions a {font-size: 14px; padding:6px 7px;}
.popup ul li .textarea {height: 60px; padding: 10px 10px;}
.popup .btn {max-width: 245px; height: 36px; font-size: 15px; float: none; line-height: 36px; margin: 0;}

}

@media only screen and (max-width: 359px) {
.popup .btn {
	max-width:100%;
	font-size:16px;
}
}


/*= #Fancybox
=======================================================*/
.fancybox-wrap, .fancybox-skin, .fancybox-outer, .fancybox-inner, .fancybox-image, .fancybox-wrap iframe, .fancybox-wrap object, .fancybox-nav, .fancybox-nav span, .fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: none;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	padding:0;
	margin:0
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	width: 100%;
	height: 100%; 
	background: none; 
	padding: 0;
	margin: 0;  
	position: relative;
	border:3px solid #ee6534;
	outline: none;
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background:url('../images/fancybox_sprite.png');
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url('../images/fancybox_loading.gif') center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	background:url(../img/icon-close.png) no-repeat; 
	background-size:36px auto;	
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url('../images/blank.gif'); /* helps IE */
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
	overflow: hidden !important;
	width: auto;
}

.fancybox-lock body {
	overflow: hidden !important;
}

.fancybox-lock-test {
	overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: rgba(63, 63, 63, .70);
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

.locations {
	text-align:left;
	padding:25px;
	border:2px solid black;
}

.locations .county {
	padding-left:15px;
}

.locations .county .title {
	font-weight:bold;
	font-size:1.1em;
	padding-left:-15px;
	padding-top:15px;
	padding-bottom:10px;
}

.breadcrumb li {
    display: inline;
}
.breadcrumb li+li:before {
    content:"» ";
}