
/*
Table Of Contents

1.)  Typography
2.)  Default Styles
3.)  Container - Main
4.)  Header - Main
5.)  Content - Main
6.)  Footer - Main

===============================================*/

/*
 1.) Typography
----------------------------------------*/

@import url("animate-6.css") all;

@font-face {
    font-family: 'open_sanslight';
    src: url('../eot/opensans-light-webfont.eot');
    src: url('../eot/opensans-light-webfontd41d.eot?#iefix') format('embedded-opentype'),
         url('../woff2/opensans-light-webfont.woff2') format('woff2'),
         url('../woff/opensans-light-webfont.woff') format('woff'),
         url('../ttf/opensans-light-webfont.ttf') format('truetype'),
         url('../svg/opensans-light-webfont.svg#open_sanslight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sansregular';
    src: url('../eot/opensans-regular-webfont.eot');
    src: url('../eot/opensans-regular-webfontd41d.eot?#iefix') format('embedded-opentype'),
         url('../woff2/opensans-regular-webfont.woff2') format('woff2'),
         url('../woff/opensans-regular-webfont.woff') format('woff'),
         url('../ttf/opensans-regular-webfont.ttf') format('truetype'),
         url('../svg/opensans-regular-webfont.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sanssemibold';
    src: url('../eot/opensans-semibold-webfont.eot');
    src: url('../eot/opensans-semibold-webfontd41d.eot?#iefix') format('embedded-opentype'),
         url('../woff2/opensans-semibold-webfont.woff2') format('woff2'),
         url('../woff/opensans-semibold-webfont.woff') format('woff'),
         url('../ttf/opensans-semibold-webfont.ttf') format('truetype'),
         url('../svg/opensans-semibold-webfont.svg#open_sanssemibold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sansbold';
    src: url('../eot/opensans-bold-webfont.eot');
    src: url('../eot/opensans-bold-webfontd41d.eot?#iefix') format('embedded-opentype'),
         url('../woff2/opensans-bold-webfont.woff2') format('woff2'),
         url('../woff/opensans-bold-webfont.woff') format('woff'),
         url('../ttf/opensans-bold-webfont.ttf') format('truetype'),
         url('../svg/opensans-bold-webfont.svg#open_sansbold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinsmedium';
    src: url('../eot/poppins-medium-webfont.eot');
    src: url('../eot/poppins-medium-webfontd41d.eot?#iefix') format('embedded-opentype'),
         url('../woff2/poppins-medium-webfont.woff2') format('woff2'),
         url('../woff/poppins-medium-webfont.woff') format('woff'),
         url('../ttf/poppins-medium-webfont.ttf') format('truetype'),
         url('../svg/poppins-medium-webfont.svg#poppinsmedium') 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 {
	-webkit-font-smoothing: antialiased;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
	font-family: "open_sansregular", Arial, Helvetica, sans-serif;
	font-size: 17px;
	color: #87899c;
	line-height: 22px; 
	background: #525659;
}


/* #Links
================================================== */

a { 
	color: #4d4c5c;
	text-decoration: underline;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	cursor: pointer;
	outline: 0;
}

a:hover,
a:focus,
a:active {
	color: #1dbd73;
	text-decoration: underline;
	outline: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

a:focus,
a:active,
a:visited {
	outline: 0;
	text-decoration: none;
}


/* #Heading H1, H2, H3, H4, H5, H6, P
================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "open_sansbold", Arial, Helvetica, sans-serif;
	color: #575866;
	padding: 0 0 13px 0;
	margin: 0;
}

h1 { 
	font-size: 55px;
	line-height: 65px;
	letter-spacing: 0.03em; 
}

h2 { 
	font-size: 43px;
	line-height: 61px;
	letter-spacing: 0.08em; 
}

h3 {
	font-size: 25px;
	line-height: 38px;
}

h4 {
	font-size: 23px;
	line-height: 30px;
}

p {
	padding: 0 0 20px 0;
	margin: 0;
}

p:last-child {
	padding: 0 0 40px 0;
}

em {
	font-style: normal; 
	font-family: "open_sansregular", Arial, Helvetica, sans-serif;  
}

strong {
	font-weight: normal; 
	font-family:"open_sansbold", Arial, Helvetica, sans-serif;  
}

.light {
	font-weight: normal; 
	font-family:"open_sanslight", Arial, Helvetica, sans-serif; 
}

.regular {
	font-weight: normal; 
	font-family: "open_sansregular", Arial, Helvetica, sans-serif; 
}

.bold {
	font-weight: normal; 
	font-family:"open_sansbold", Arial, Helvetica, sans-serif;  
}

.upper-case { 
	text-transform: uppercase;
}

.lower-case { 
	text-transform: none;
}

@media only screen and (max-width: 1399px) {
h1,
h2 { 
	font-size: 43px;
	line-height: 50px;
	letter-spacing: 0.06em; 
}

h1 { 
	letter-spacing: 0.02em; 
}
}

@media only screen and (max-width: 574px) {
h1,
h2 { 
	font-size: 32px;
	line-height: 40px;
	letter-spacing: 0.02em; 
}

h2 { 
	font-size: 30px;
	line-height: 40px;
	letter-spacing: 0.04em; 
}

h3 {
	font-size: 23px;
	line-height: 34px;
}

h4 {
	font-size: 21px;
	line-height: 28px;
}
}


/* #Order and Unorder Styles
================================================= */

ul,
ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

ul:last-child,
ol:last-child {
	padding-bottom: 22px;
}

li {
	font-weight: normal; 
	position: relative;
	padding: 0 0 0 18px;
	margin: 0;
}

li:last-child {
	padding-bottom: 12px;
}

ul:last-child li:last-child,
ol:last-child li:last-child {
	padding-bottom: 0;
}

ul li::before { 
	content: ""; 
	width: 6px; 
	height: 6px;
	float: left; 
	background: #2e3548; 
	border-radius: 360px;
	position: absolute;
	top: 13px;
	left: 0;
}

li ul:last-child,
li ol:last-child {
	padding-bottom: 0;
}

li ul li:last-child,
li ul li:last-child {
	padding-bottom: 0;
}

@media only screen and (max-width: 767px) {
ul:last-child,
ol:last-child {
	padding-bottom: 23px;
}

li {
	padding: 0 0 4px 25px;
}

li:last-child {
	padding-bottom: 13px;
}

ul li::before { 
	top: 11px;
}
}


/*= Order List 
=======================================================*/

ol {
	counter-reset: item;
}

ol > li {
	counter-increment: item;
	padding-left: 20px;
}

ol > li::before {
	content: counter(item);
	font-family: "open_sanssemibold", Arial, Helvetica, sans-serif; 
	color: #2e3548;
	text-align: right;
	position: absolute;
	top: 1px;
	left: 0;
}

ol > li:nth-child(n+10):before {
	left: -10px;
}

ol > li:nth-child(n+100):before {
	left: -20px;
}

@media only screen and (max-width: 767px) {
ol > li {
	counter-increment: item;
	padding-left: 25px;
}
}


/* #Input
================================================= */

textarea,
select,
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;
}

input,
textarea,
select {
	-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-family: "open_sansregular", Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 14px;
	color: #4d4c5c;
	line-height: 18px;
	padding: 0 0 6px 10px;
	margin: 0;
}

.req {
	color: #ff0000;
}

textarea,
select,
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 {
	width: 100%;
	height: 41px;
	float: left;
	font-family: "open_sansregular", Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 14px;
	color: #2e3548;
	line-height: 18px;
	background: #ffffff;
	border: 1px solid #b5b8c1;
	border-radius: 0;
	outline: none;
	position: relative;
	padding: 12px 25px;
	margin: 0;
}

textarea {
	height: 120px;
	padding: 12px 25px;
	outline: none;
	resize: none;
}

::-webkit-input-placeholder, 
::-webkit-textarea-placeholder {
	color: #999999;
}

input::-moz-placeholder, 
textarea::-moz-placeholder {
	color: #999999;
}

::-moz-placeholder {
	color: #999999;
}

::-ms-input-placeholder {
	color: #999999;
}

select:focus,
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;
	border-color: #14b1bb;
}


/* #Buttons
================================================== */

.btn,
button,
input[type="button"],
input[type="submit"] {
	height: auto;
	float: none;
	display: inline-block;
	vertical-align: middle;
	font-family: "open_sansregular", Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 15px;
	color: #4d4c5c;
	line-height: 19px;
	text-align: center;
	text-decoration: none;
	text-transform: none;
	white-space: normal;
	background: none;
	border: 1px solid #4d4c5c;
	border-radius: 0;
	box-shadow: none;
	position: relative;
	cursor: pointer;
	outline: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	padding: 10px 45px;
	margin: 0;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active,
.btn.active:focus,
button:hover,
button:focus,
button:active,
button:active:focus,
button.active,
button.active:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus {
	color: #ffffff;
	text-decoration: none; 
	background: #16a15d;
	border-color: #16a15d;
	outline: 0;
}

.btn-orange, 
button.btn-orange, 
input.btn-orange[type="button"], 
input.btn-orange[type="submit"] {
	font-family: "open_sanssemibold", Arial, Helvetica, sans-serif; 
	color: #ffffff;
	background: #e5932c;
	border-color: #e5932c;
	padding-left: 40px;
	padding-right: 40px; 
}

.btn-orange:hover, 
.btn-orange:focus, 
.btn-orange:active, 
.btn-orange:active:focus, 
.btn-orange.active, 
.btn-orange.active:focus, 
button.btn-orange:hover, 
button.btn-orange:focus, 
button.btn-orange:active, 
button.btn-orange:active:focus, 
button.btn-orange.active, 
button.btn-orange.active:focus, 
input.btn-orange[type="button"]:hover, 
input.btn-orange[type="button"]:focus, 
input.btn-orange[type="button"]:active, 
input.btn-orange[type="button"]:active:focus, 
input.btn-orange[type="button"].active, 
input.btn-orange[type="button"].active:focus, 
input.btn-orange[type="submit"]:hover, 
input.btn-orange[type="submit"]:focus, 
input.btn-orange[type="submit"]:active, 
input.btn-orange[type="submit"]:active:focus, 
input.btn-orange[type="submit"].active, 
input.btn-orange[type="submit"].active:focus { 
	color: #ffffff;
	background: #cd8123;
	border-color: #cd8123; 
}

.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;
}


/* #OWL
================================================== */

.owl-carousel .animated {
	-webkit-animation-duration: 1000ms;
	animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}
 @-webkit-keyframes 
fadeOut {
 0% {
 opacity: 1;
}
 100% {
 opacity: 0;
}
}
@keyframes 
fadeOut {
 0% {
 opacity: 1;
}
 100% {
 opacity: 0;
}
}

.owl-height {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}

.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;
}

.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-controls .owl-nav .owl-prev, 
.owl-carousel .owl-controls .owl-nav .owl-next, 
.owl-carousel .owl-controls .owl-dot {
	cursor: pointer;
	-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 {
	display: none;
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel .owl-item img {
	height:auto;
	display: inline-block;
	width: 100%;
	-webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto;
}

.owl-carousel .owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

.no-js .owl-carousel {
	display: block;
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	-webkit-transition: opacity 400ms ease;
	-moz-transition: opacity 400ms ease;
	-ms-transition: opacity 400ms ease;
	-o-transition: opacity 400ms ease;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
	height:auto;
	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(../404.html) no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-webkit-transition: scale 100ms ease;
	-moz-transition: scale 100ms ease;
	-ms-transition: scale 100ms ease;
	-o-transition: scale 100ms ease;
	transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-webkit-transition: scale(1.3, 1.3);
	-moz-transition: scale(1.3, 1.3);
	-ms-transition: scale(1.3, 1.3);
	-o-transition: 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;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	-webkit-transition: opacity 400ms ease;
	-moz-transition: opacity 400ms ease;
	-ms-transition: opacity 400ms ease;
	-o-transition: opacity 400ms ease;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
}


/* #Slider Controls
================================================== */

.owl-controls {
	width: 100%;
	float: left;
	text-align: center;
	padding: 0;
	margin: 0;
}

/* Previous and Next */
.owl-nav div {
	width: 20px;
	height: 36px;
	float: left;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 20px auto;
	position: absolute;
	top: 50%;
	z-index: 10;
	cursor: pointer;
	text-indent: -99999px;
	margin: -18px 0 0 0;
}

.owl-nav .owl-prev { 
	background-image: url(../png/arrow-previous-2.png); 
	left: 0;
}

.owl-nav .owl-next {
	background-image: url(../png/arrow-next-2.png); 
	right: 0;
}

.owl-nav .disabled {
	opacity: .15;
	cursor: default;
}

.owl-nav.disabled {
	display: none;
}

@media only screen and (max-width: 991px) {
.owl-nav div {
	width: 12px;
	height: 22px;
	background-size: 12px auto;
	margin: -11px 0 0 0;
}
}


/* Bullets */
.owl-dots {
	width: 100%; 
	height: 19px; 
	float:left; 
	text-align: center;
	padding: 0;
	margin: 30px 0 0 0;
}

.owl-dots .owl-dot {
	width: 19px;
	height: 19px;
	float: none;
	display: inline-block;
	vertical-align: top;
	background: #ffffff; 
	border: 1px solid #87899c;
	border-radius: 360px;
	text-indent: -9999px;
	padding: 0;
	margin: 0 6px;
}

.owl-dots .owl-dot.active {
	width: 19px;
	height: 19px;
	filter: Alpha(Opacity=100);
	opacity: 1; 
	background: #1dbd73; 
	border-color: #1dbd73;  
}

.owl-dots.disabled {
	display: none;
}


/*
 3.) Container - Main
----------------------------------------*/

#container-main-out {
	width: 100%;
	max-width: 1919px;
	margin: 0 auto;
}

#container-main {
	width: 100%;
	min-height: 100vh;
	float: left;
	background: #4d4c5c;
	overflow: hidden;
}

.container {
	width: 100%;
	max-width: 1090px;
	margin: 0 auto;
	padding: 0 40px;
}

@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;
}


/*
 4.) Header
----------------------------------------*/

#header-main {
	width: 100%;
	height: 125px;
	float: left;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	padding: 35px 0 0 0;
}

#header-main .container {
	max-width: 1840px;
}

#header-main .logo {
	float: left;
	position: relative;
	z-index: 10;
	margin: 0 -500px 0 0;
}

#header-main .logo img {
	width: 100%;
	max-width: 142px;
}

#header-main .nav-bar {
	float: right;
	margin: 10px 0 0 0;
}

#header-main .nav-bar .main-nav {
	float: left;
}

#header-main .nav-bar .main-nav ul {
	float: left;
	padding: 0;
	margin: 0;
}

#header-main .nav-bar .main-nav ul li {
	float: left;
	padding: 0;
	margin: 0 0 0 90px;
}

#header-main .nav-bar .main-nav ul li:before {
	display: none;
}

#header-main .nav-bar .main-nav ul li a {
	height: 41px;
	float: left;
	font-size: 15px;
	color: #4d4c5c;
	line-height: 41px;
	text-decoration: none;
	position: relative;
	padding: 0;
	margin: 0;
}

#header-main .nav-bar .main-nav ul li a:after {
	content: "";
	width: 0;
	height: 1px;
	float: left;
	background: #1dbd73;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	position: absolute;
	bottom: 7px;
	left: 50%;
}

#header-main .nav-bar .main-nav ul li a:hover,
#header-main .nav-bar .main-nav ul li.active a {
	color: #1dbd73;
}

#header-main .nav-bar .main-nav ul li a:hover:after,
#header-main .nav-bar .main-nav ul li.active a:after {
	width: 100%;
	left: 0;
}

#header-main .nav-bar .btn-out {
	width: auto;
	float: right;
	margin: 0 0 0 90px;
}

@media only screen and (min-width: 992px) {
#header-main .nav-bar {
	display: block!important;
}
}

@media only screen and (max-width: 991px) {
#header-main {
	height: 90px;
	background: #ffffff;
	border-bottom: 1px solid #1dbd73;
	padding: 22px 0 0 0;
}

#header-main .logo img {
	max-width: 130px;
}

#header-main .nav-bar {
	width: 100%;
	float: left;
	background: #ffffff;
	box-shadow: rgba(0, 0, 0, .10) 0 10px 10px;
	position: absolute;
	top: 90px;
	left: 0;
	display: none;
	padding: 25px 40px 35px 40px;
	margin: 0;
}

#header-main .nav-bar .main-nav {
	width: 100%;
	float: left;
}

#header-main .nav-bar .main-nav ul {
	width: 100%;
	float: left;
}

#header-main .nav-bar .main-nav ul li {
	width: 100%;
	float: left;
	padding: 10px 0;
	margin: 0;
}

#header-main .nav-bar .main-nav ul li a {
	height: auto;
	line-height: normal;
}

#header-main .nav-bar .main-nav ul li a:after {
	bottom: -2px;
	left: 0;
}

#header-main .nav-bar .btn-out {
	width: 100%;
	float: left;
	margin: 15px 0 0 0;
}
}

@media only screen and (max-width: 767px) {
#header-main {
	padding: 25px 0 0 0;
}

#header-main .logo img {
	max-width: 115px;
}

#header-main .nav-bar {
	padding: 15px 20px 30px 20px;
}
}

@media only screen and (max-width: 574px) {
#header-main {
	height: 75px;
	padding: 15px 0 0 0;
}

#header-main .logo img {
	max-width: 120px;
}

#header-main .nav-bar {
	top: 75px;
}
}


/* Menu - Btn */
#header-main .menu-btn {
	width: 26px;
	height: 23px;
	float: left;
	display: none;
	cursor: pointer;
	z-index: 10001;
	position: absolute;
	top: 35px;
	right: 40px;
}

#header-main .menu-btn .icon-bar {
	width: 100%;
	height: 2px;
	float: left;
	background: #4d4c5c;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	margin: 10px 0 0 0;
}

#header-main .menu-btn .icon-bar:before {
	content: "";
	width: 100%;
	height: 2px;
	float: left;
	background: #4d4c5c;
	position: absolute;
	top: -8px;
	left: 0;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

#header-main .menu-btn .icon-bar:after {
	content: "";
	width: 100%;
	height: 2px;
	float: left;
	background: #4d4c5c;
	position: absolute;
	top: 8px;
	left: 0;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

#header-main .menu-btn.active .icon-bar {
	background: none;
}

#header-main .menu-btn.active .icon-bar:before {
	height: 3px;
	top: 0;
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	transform: rotate3d(0, 0, 1, 45deg);
}

#header-main .menu-btn.active .icon-bar:after {
	height: 3px;
	top: 0;
	-webkit-transform: rotate3d(0, 0, 1, -45deg);
	transform: rotate3d(0, 0, 1, -45deg);
}

@media only screen and (max-width: 991px) {
#header-main .menu-btn {
	display: block;
}
}

@media only screen and (max-width: 767px) {
#header-main .menu-btn {
	right: 20px;
}
}

@media only screen and (max-width: 574px) {
#header-main .menu-btn {
	top: 28px;
}
}



/*
 5.) Content - Main
----------------------------------------*/

#content-main { 
	width: 100%;
	float: left;
	background: #ffffff;
}


/* Hero - Main */
.hero-main {
	width: 100%;
	min-height: 977px;
	float: left;
	background: #ffffff url(../png/header-bg.png) no-repeat bottom right;
	background-size: 1920px 977px;
	padding: 125px 0;
}

.hero-main .inner-cont {
	width: 100%;
	float: left;
	padding: 160px 0 0 0;
}

.hero-main .inner-cont figure {
	width: 57%;
	float: none;
	display: inline-block;
	vertical-align: middle;
	margin: 0 -2px 0 -2%;
}

.hero-main .inner-cont figure img {
	width: 100%;
}

.hero-main .inner-cont aside {
	width: 60%;
	float: none;
	display: inline-block;
	vertical-align: middle;
	padding: 25px 0 0 6%;
	margin: 0 -17% 0 -2px;
}

.hero-main .inner-cont aside strong {
	color: #1dbd73;
}

.hero-main .inner-cont aside h1,
.hero-main .inner-cont aside h2 {
	padding: 0 0 15px 0;
}

.hero-main .inner-cont aside p {
	width: 100%;
	max-width: 360px;
	float: none;
	display: inline-block;
	font-size: 16px;
	color: #747480;
	padding: 0 0 30px 0;
}

@media only screen and (max-width: 1699px) {
.hero-main {
	min-height: 850px;
	background-size: auto 100%;
}

.hero-main .inner-cont {
	padding: 110px 0 0 0;
}
}

@media only screen and (max-width: 1399px) {
.hero-main {
	min-height: 750px;
	background-size: auto 100%;
}

.hero-main .inner-cont {
	padding: 110px 0 0 0;
}

.hero-main .inner-cont figure {
	width: 50%;
	margin: 0 -2px 0 -2%;
}

.hero-main .inner-cont aside {
	width: 50%;
	padding-top: 0;
	margin-top: -20px;
}
}

@media only screen and (max-width: 991px) {
.hero-main {
	min-height: 500px;
	background-position: -290px 0;
	padding: 125px 0 100px 0;
}

.hero-main .inner-cont {
	text-align: center;
	padding: 70px 0 0 0;
}

.hero-main .inner-cont figure {
	width: 100%;
	float: left;
	margin: 0 0 20px 0;
}

.hero-main .inner-cont figure img {
	max-width: 420px;
}

.hero-main .inner-cont aside {
	width: 100%;
	max-width: 700px;
	padding: 0 5%;
	margin: 0;
}

.hero-main .inner-cont aside h1,
.hero-main .inner-cont aside h2 {
	padding: 0 0 20px 0;
}

.hero-main .inner-cont aside p {
	padding: 0 0 35px 0;
}

.hero-main .inner-cont aside p br {
	display: none;
}
}

@media only screen and (max-width: 767px) {
.hero-main {
	min-height: 100px;
	background-position: -480px 0;
}

.hero-main .inner-cont {
	padding: 50px 0 0 0;
}
}

@media only screen and (max-width: 574px) {
.hero-main {
	background-position: -560px 0;
	padding: 85px 0;
}
}


/* Our - Customers */
.our-customers {
	width: 100%;
	float: left;
	text-align: center;
	background: #f4f6ff url(../png/our-customers-bg.png) no-repeat center center;
	background-size: 1920px 100%;
	position: relative;
	overflow: hidden;
	padding: 110px 0 115px 0;
}

.our-customers h2 {
	width: 100%;
	float: left;
	font-size: 35px;
	color: #a1a8b2;
	line-height: 45px;
	padding: 0 0 28px 0;
}

.our-customers ul {
	width: 100%;
	max-width: 800px;
	float: none;
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	margin: -7px -50px;
}

.our-customers ul li {
	float: none;
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	margin: 7px 20px;
}

.our-customers ul li:before {
	display: none;
}

.our-customers ul li img {
	max-height: 41px;
}

.our-customers ul li:nth-child(1) img {
	max-height: 26px;
}

.our-customers ul li:nth-child(2) img {
	max-height: 31px;
}

.our-customers ul li:nth-child(3) img {
	max-height: 27px;
}

.our-customers ul li:nth-child(4) img {
	max-height: 41px;
}

.our-customers ul li:nth-child(5) img {
	max-height: 28px;
}

.our-customers ul li:nth-child(6) img {
	max-height: 29px;
}

.our-customers ul li:nth-child(7) img {
	max-height: 24px;
}

.our-customers ul li:nth-child(8) img {
	max-height: 21px;
}

@media only screen and (max-width: 991px) {
.our-customers {
	padding: 90px 0 95px 0;
}

.our-customers .container {
	padding: 0 20px;
}
}

@media only screen and (max-width: 767px) {
.our-customers {
	padding: 70px 0 75px 0;
}

.our-customers h2 {
	font-size: 32px;
	line-height: 42px;
	padding: 0 0 28px 0;
}

.our-customers ul {
	margin: -12px -40px;
}

.our-customers ul li {
	margin: 12px 15px;
}
}

@media only screen and (max-width: 574px) {
.our-customers {
	padding: 60px 0 65px 0;
}

.our-customers .container {
	padding: 0;
}

.our-customers h2 {
	font-size: 28px;
	line-height: 38px;
	padding: 0 20px 25px 20px;
}

.our-customers ul {
	margin: -14px 0;
}

.our-customers ul li {
	margin: 14px 13px;
}
}


/* Split - Content */
.split-cont {
	width: 100%;
	float: left;
	background: #ffffff url(../png/how-we-work-bg.png) no-repeat top center;
	background-size: 1920px auto;
	position: relative;
	overflow: hidden;
	padding: 130px 0 180px 0;
}

.split-cont h2 {
	width: 100%;
	float: left;
	text-align: center;
	padding: 0 0 65px 0;
}

.split-cont h2:last-child {
	padding-bottom: 0;
}

.split-cont .article {
	width: 100%;
	min-height: 560px;
	float: left;
	margin: 0 0 50px 0;
}

.split-cont .article:last-child {
	margin-bottom: 0;
}

.split-cont .article figure {
	width: 52%;
	float: right;
	text-align: center;
	overflow: hidden;
	padding: 0;
}

.split-cont .article figure img {
	width: 100%;
	max-width: 513px;
}

.split-cont .article aside {
	width: 48%;
	float: left;
	padding: 145px 8% 0 0;
}

.split-cont .article aside h4 {
	padding: 0 0 31px 0;
}

.split-cont .article aside h4:last-child {
	padding-bottom: 0;
}

.split-cont .article aside p:last-child {
	padding-bottom: 0;
}

.split-cont .article aside .readmore {
	width: 100%;
	float: left;
	padding: 27px 0 0 0;
}

.split-cont .article aside .readmore a {
	float: none;
	display: inline-block;
	vertical-align: top;
	color: #4d4c5c;
	letter-spacing: normal;
	text-decoration: none;
	position: relative;
	padding: 0 0 4px 10px;
}

.split-cont .article aside .readmore a:before {
	content: "";
	width: 100%;
	height: 1px;
	float: left;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	background: #4d4c5c;
	position: absolute;
	bottom: 0;
	left: 0;
}

.split-cont .article aside .readmore a:hover {
	color: #16a15d;
}

.split-cont .article aside .readmore a:hover:before {
	background: #16a15d;
	left: 10px;
}

.split-cont .article aside .number {
	width: 100px;
	float: left;
	font-family: "poppinsmedium", Arial, Helvetica, sans-serif;
	font-size: 120px;
	color: #ffab40;
	line-height: 1em;
	text-align: left;
	position: relative;
	z-index: 30;
	padding: 0 30px 0 0;
	margin: 0 -100px 0 0;
}

.split-cont .article aside .txt-out {
	width: 100%;
	float: left;
	padding: 25px 0 0 95px;
}

.split-cont .article:first-child {
	margin: 0 0 180px 0;
}

.split-cont .article:nth-child(2) figure {
	text-align: left;
	margin-top: 0;
}

.split-cont .article:nth-child(2) figure img {
	max-width: 420px;
}

.split-cont .article:nth-child(2) aside {
	padding-top: 30px;
}

.split-cont .article:nth-child(2) aside .txt-out {
	padding-top: 55px;
}

.split-cont .article:nth-child(3) {
	margin: 0 0 100px 0;
}

.split-cont .article:nth-child(3) figure {
	margin-top: 66px;
}

.split-cont .article:nth-child(3) aside {
	padding-top: 110px;
}

.split-cont .article:nth-child(3) aside .txt-out {
	padding-top: 43px;
}

.split-cont .article:nth-child(4) figure {
	margin-top: 50px;
}

.split-cont .article:nth-child(4) figure img {
	max-width: 300px;
}

.split-cont .article:nth-child(4) aside {
	padding-top: 80px;
}

.split-cont .article:nth-child(4) aside .txt-out {
	padding-top: 60px;
}

.split-cont .article:nth-child(even) figure {
	float: left;
	margin-top: 20px;
}

.split-cont .article:nth-child(even) aside {
	float: right;
	padding-right: 0;
	padding-left: 8%;
}

.split-cont .article-out {
	width: 100%;
	float: left;
}

@media only screen and (max-width: 991px) {
.split-cont {
	background: none;
	padding: 138px 0 150px 0;
}

.split-cont:before {
	content: "";
	width: 100%;
	height: 100%;
	float: left;
	background: url(../png/curve-02.png) no-repeat bottom center;
	background-size: 100% auto;
	position: absolute;
	bottom: 0;
	left: 0;
}

.split-cont:after {
	content: "";
	width: 100%;
	height: 100%;
	float: left;
	background: url(../png/curve-01.png) no-repeat top center;
	background-size: 100% auto;
	position: absolute;
	top: 0;
	left: 0;
}

.split-cont h2 {
	position: relative;
	z-index: 100;
	padding: 0 0 50px 0;
}

.split-cont .article {
	min-height: inherit;
	padding: 0 30px;
	margin: 0 0 100px 0;
}

.split-cont .article figure {
	width: 100%;
	padding: 0;
	margin: 0 0 30px 0;
}

.split-cont .article figure img {
	max-width: 380px;
}

.split-cont .article aside {
	width: 100%;
	padding: 0;
}

.split-cont .article aside h4 {
	padding: 0 0 8px 0;
}

.split-cont .article aside .number {
	width: 50px;
	font-family: "open_sanssemibold", Arial, Helvetica, sans-serif;
	font-size: 69px;
	padding: 0 0 0 0;
	margin: 0 -50px 0 0;
}

.split-cont .article aside .txt-out {
	padding: 10px 0 0 50px;
}

.split-cont .article:first-child {
	margin: 0 0 100px 0;
}

.split-cont .article:first-child aside {
	padding-top: 0;
}

.split-cont .article:nth-child(2) figure {
	text-align: center;
	margin-top: 0;
}

.split-cont .article:nth-child(2) figure img {
	max-width: 320px;
}

.split-cont .article:nth-child(2) aside {
	padding-top: 0;
}

.split-cont .article:nth-child(2) aside .txt-out {
	padding-top: 10px;
}

.split-cont .article:nth-child(3) {
	margin: 0 0 100px 0;
}

.split-cont .article:nth-child(3) figure {
	margin-top: 0;
}

.split-cont .article:nth-child(3) figure img {
	max-width: 342px;
}

.split-cont .article:nth-child(3) aside {
	padding-top: 0;
}

.split-cont .article:nth-child(3) aside .txt-out {
	padding-top: 10px;
}

.split-cont .article:nth-child(4) figure {
	margin-top: 0;
}

.split-cont .article:nth-child(4) figure img {
	max-width: 215px;
}

.split-cont .article:nth-child(4) aside {
	padding-top: 0;
}

.split-cont .article:nth-child(4) aside .txt-out {
	padding-top: 10px;
}

.split-cont .article:nth-child(even) figure {
	padding: 0;
}

.split-cont .article:nth-child(even) aside {
	padding-right: 0;
	padding-left: 0;
}

.split-cont .article-out {
	position: relative;
	z-index: 50;
}
}

@media only screen and (max-width: 767px) {
.split-cont {
	padding: 60px 0 120px 0;
}

.split-cont:before {
	width: 123%;
	margin: 0 -11.5%;
}

.split-cont:after {
	width: 115%;
	margin: 0 -7.5%;
}

.split-cont h2 {
	padding: 0 0 65px 0;
}

.split-cont .article {
	padding: 0 20px;
	margin: 0 0 80px 0;
}

.split-cont .article figure {
	margin: 0 0 19px 0;
}

.split-cont .article figure img {
	max-width: 240px;
}

.split-cont .article:first-child {
	margin: 0 0 80px 0;
}

.split-cont .article:nth-child(2) figure img {
	max-width: 235px;
}

.split-cont .article:nth-child(3) {
	margin: 0 0 80px 0;
}

.split-cont .article:nth-child(3) figure img {
	max-width: 255px;
}

.split-cont .article:nth-child(4) figure img {
	max-width: 170px;
}
}

@media only screen and (max-width: 574px) {
.split-cont .article {
	padding: 0;
}
}


/* Join - Us */
.join-us {
	width: 100%;
	float: left;
	background: url(../png/join-us-bg.png) no-repeat left bottom;
	background-size: auto 548px;
	padding: 84px 0 100px 0;
}

@media only screen and (max-width: 991px) {
.join-us {
	background: none;
	padding: 74px 0 90px 0;
}
}


/* Database - Content */
.database-cont {
	width: 100%;
	float: left;
	text-align: center;
	border-bottom: 2px solid #e1e1eb;
	padding: 0 0 125px 0;
	margin: 0 0 144px 0;
}

.database-cont h2 {
	width: 100%;
	max-width: 540px;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0 0 70px 0;
}

.database-cont figure {
	width: 100%;
	float: left;
	text-align: center;
	overflow: hidden;
	margin: 0 0 75px 0;
}

.database-cont figure img {
	width: 100%;
}

.database-cont .article {
	width: 24.33%;
	float: left;
	margin: 0 4.5% 40px 4.5%;
}

.database-cont .article h3 {
	font-size: 21px;
	color: #575866;
	line-height: 30px;
	padding: 0 0 6px 0;
}

.database-cont .article p:last-child {
	padding-bottom: 0;
}

.database-cont .article-out {
	width: 109%;
	float: left;
	margin: 0 -4.5% -40px -4.5%;
}

@media only screen and (max-width: 991px) {
.database-cont {
	border-bottom: none;
	padding: 0;
	margin: 0 0 84px 0;
}

.database-cont h2 {
	max-width: 420px;
	padding: 0 0 63px 0;
}

.database-cont figure {
	margin: 0 0 52px 0;
}

.database-cont .article {
	width: 100%;
	margin: 0 0 75px 0;
}

.database-cont .article:last-child {
	margin-bottom: 0;
}

.database-cont .article-out {
	width: 100%;
	max-width: 500px;
	float: none;
	display: inline-block;
	vertical-align: top;
	border-bottom: 2px solid #e1e1eb;
	padding: 0 0 80px 0;
	margin: 0;
}
}

@media only screen and (max-width: 767px) {
.database-cont {
	margin: 0 0 83px 0;
}

.database-cont h2 {
	max-width: 400px;
	padding: 0 0 50px 0;
}

.database-cont figure {
	margin: 0 0 52px 0;
}

.database-cont .article {
	width: 100%;
	margin: 0 0 53px 0;
	padding: 0 15%;
}

.database-cont .article-out {
	max-width: 100%;
	padding: 0 0 80px 0;
}
}

@media only screen and (max-width: 574px) {
.database-cont .article {
	padding: 0 5%;
}
}


/* Signup - Form */
.signup-form {
	width: 100%;
	float: left;
}

.signup-form .title-txt {
	width: 100%;
	float: left;
	padding: 0 0 28px 0;
}

.signup-form .title-txt h2 {
	width: 100%;
	max-width: 320px;
	float: left;
	text-align: right;
	padding: 0;
}

.signup-form .figure-out {
	width: 35.50%;
	float: left;
}

.signup-form .figure-out p {
	padding: 0 30px 50px 0;
}

.signup-form .figure-out figure {
	width: 100%;
	float: left;
	text-align: center;
	overflow: hidden;
}

.signup-form .figure-out figure img {
	width: 100%;
}

.signup-form .form-out {
	width: 64.50%;
	float: left;
	padding: 0 0 0 13%;
}

.signup-form .form-out ul {
	width: 105%;
	float: left;
	padding: 0 0 40px 0;
	margin: 0 -2.5% -22px -2.5%;
}

.signup-form .form-out ul:last-child {
	padding-bottom: 0;
}

.signup-form .form-out ul li {
	width: 45%;
	float: left;
	padding: 0;
	margin: 0 2.5% 22px 2.5%;
}

.signup-form .form-out ul li:before {
	display: none;
}

.signup-form .form-out ul li.full {
	width: 95%;
}

.signup-form .form-out .btn {
	width: 100%;
	max-width: 145px;
	padding-right: 15px;
	padding-left: 15px;
}

.signup-form .form-out .btn-out {
	text-align: right;
}

@media only screen and (max-width: 991px) {
.signup-form .title-txt h2 {
	max-width: 100%;
	text-align: center;
}

.signup-form .figure-out {
	width: 100%;
	text-align: center;
	padding: 0 0 54px 0;
}

.signup-form .figure-out p {
	padding: 0;
}

.signup-form .figure-out figure {
	display: none;
}

.signup-form .form-out {
	width: 100%;
	padding: 0 30px;
}

.signup-form .form-out ul {
	width: 104.78%;
	margin: 0 -2.39% -22px -2.39%;
}

.signup-form .form-out ul li {
	width: 45.22%;
	margin: 0 2.39% 22px 2.39%;
}

.signup-form .form-out ul li.full {
	width: 95.22%;
}

.signup-form .form-out .btn {
	max-width: 184px;
}

.signup-form .form-out .btn-out {
	text-align: center;
}
}

@media only screen and (max-width: 767px) {
.signup-form .title-txt {
	padding: 0 0 12px 0;
}

.signup-form .figure-out p {
	width: 100%;
	max-width: 320px;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0;
}

.signup-form .form-out ul {
	width: 106.30%;
	margin: 0 -3.15% -22px -3.15%;
}

.signup-form .form-out ul li {
	width: 43.70%;
	margin: 0 3.15% 22px 3.15%;
}

.signup-form .form-out ul li.full {
	width: 93.70%;
}
}

@media only screen and (max-width: 574px) {
.signup-form .form-out {
	width: 100%;
	padding: 0 10px;
}

.signup-form .form-out ul {
	width: 100%;
	margin: 0 0 -22px 0;
}

.signup-form .form-out ul li {
	width: 100%;
	margin: 0 0 22px 0;
}

.signup-form .form-out ul li.full {
	width: 100%;
}
}


/* Testimonials */
.testimonials {
	width: 100%;
	float: left;
	text-align: center;
	background: #f1f3fc;
	position: relative;
	overflow: hidden;
	padding: 90px 0;
}

.testimonials .container {
	max-width: 1150px;
}

.testimonials h2 {
	width: 100%;
	float: left;
	color: #4d4c5c;
	padding: 0 0 50px 0;
}

.testimonials .slider-out {
	width: 100%;
	float: left;
	position: relative;
}

.testimonials .article {
	width: 100%;
	float: left;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	transition: all .25s ease-out;
}

.testimonials .article figure {
	width: 100%;
	height: 160px;
	float: left;
	line-height: 160px;
	text-align: center;
	overflow: hidden;
}

.testimonials .article figure img {
	width: 100%;
	max-width: 110px;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	transition: all .25s ease-out;
	border-radius: 360px;
	box-shadow: rgba(0, 0, 0, .20) 0 0 20px;
	cursor: pointer;
}

.testimonials .owl-item.center .article figure img {
	max-width: 137px;
}

.testimonials .owl-item.center .article aside {
	display: block;
}

.testimonials .owl-carousel {
	position: static;
	padding: 0 90px;
}

.testimonials .slide-tab {
	width: 100%;
	float: left;
	margin: 10px 0 0 0;
}

.testimonials .slide-tab h3 {
	color: #4d4c5c;
	padding: 0;
}

.testimonials .slide-tab p {
	color: #999da4;
	padding: 0;
}

.testimonials .slide-tab .position {
	font-size: 21px;
	color: #6d7179;
	line-height: 25px;
	padding: 0 0 35px 0;
}

.testimonials .slide-tab .tab {
	width: 100%;
	max-width: 585px;
	float: none;
	display: none;
	margin: 0 auto;
}

.testimonials .slide-tab .tab.active {
	display: block;
}

@media only screen and (max-width: 991px) {
.testimonials {
	padding: 70px 0;
}

.testimonials .container {
	max-width: 700px;
}

.testimonials h2 {
	padding: 0 0 50px 0;
}

.testimonials .owl-carousel {
	padding: 0 60px;
}

.testimonials .slide-tab .tab {
	max-width: 495px;
}
}

@media only screen and (max-width: 767px) {
.testimonials {
	padding: 60px 0;
}

.testimonials .container {
	max-width: 400px;
}

.testimonials h2 {
	padding: 0 0 15px 0;
}

.testimonials .owl-carousel {
	padding: 0 20px;
}

.testimonials .article figure {
	height: auto;
	line-height: normal;
	padding: 25px 0;
}

.testimonials .article figure img {
	max-width: 185px;
}

.testimonials .owl-item.center .article figure img {
	max-width: 185px;
}

.testimonials .slide-tab {
	margin: 0;
}

.testimonials .slide-tab .position {
	padding: 0 0 20px 0;
}
}


/* Contact - Info */
.contact-info {
	width: 100%;
	float: left;
	background: #ffffff;
	position: relative;
}

.contact-info .top-cont {
	width: 100%;
	float: left;
	text-align: center;
}

.contact-info .top-cont aside {
	width: 100%;
	min-height: 360px;
	max-width: 740px;
	float: none;
	display: inline-block;
	vertical-align: top;
	background: url(../png/whyseedlybg.png) no-repeat top center;
	background-size: auto 360px;
	padding: 65px 0 0 0;
}

.contact-info .top-cont aside h2 {
	color: #6f6f6f;
	letter-spacing: 0.03em;
	padding-bottom: 25px;
}

.contact-info .top-cont aside h2:last-child {
	padding-bottom: 0;
}

.contact-info .top-cont aside p {
	font-size: 16px;
	line-height: 22px;
}

.contact-info .top-cont aside p:last-child {
	padding-bottom: 0;
}

.contact-info .top-cont aside .btn {
	width: 100%;
	max-width: 148px;
	padding-right: 15px;
	padding-left: 15px;
}

.contact-info .top-cont aside .btn-out {
	padding: 38px 0 0 0;
}

.contact-info .top-cont .aside-out {
	width: 100%;
	float: left;
	box-shadow: inset #e4e3f3 0 -2px 0 0;
	position: relative;
	z-index: 100;
	padding: 50px 0 70px 0;
	margin: 0 0 -2px 0;
}

.contact-info .form-block {
	width: 100%;
	float: left;
	background: #ffffff url(../png/contact-us-bg.png) no-repeat top right;
	background-size: auto 100%;
	padding: 120px 0 100px 0;
}

.contact-info .form-block h2 {
	width: 100%;
	float: left;
	letter-spacing: 0.03em;
	padding: 0 0 34px 0;
}

.contact-info .form-block .form-out {
	width: 42.25%;
	float: left;
	padding: 0 25px 0 0;
}

.contact-info .form-block .form-out ul {
	width: 100%;
	float: left;
	padding: 0 0 37px 0;
	margin: 0 0 -19px 0;
}

.contact-info .form-block .form-out ul:last-child {
	padding-bottom: 0;
}

.contact-info .form-block .form-out ul li {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0 0 19px 0;
}

.contact-info .form-block .form-out ul li:before {
	display: none;
}

.contact-info .form-block .form-out .btn {
	width: 100%;
	max-width: 125px;
	padding-right: 15px;
	padding-left: 15px;
}

.contact-info .form-block .form-out .btn-out {
	padding: 0 0 0 0;
}

.contact-info .form-block .map-out {
	width: 57.50%;
	float: left;
	padding: 5px 0 0 25px;
}

.contact-info .form-block .map-out .map {
	width: 100%;
	float: left;
	text-align: center;
	overflow: hidden;
	margin: 0 0 30px 0;
}

.contact-info .form-block .map-out .map:last-child {
	margin-bottom: 0;
}

.contact-info .form-block .map-out .map img {
	width: 100%;
}

.contact-info .form-block .map-out aside {
	width: 100%;
	float: left;
}

.contact-info .form-block .map-out aside h4 {
	font-family: "open_sanssemibold", Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #4d4c5c;
	line-height: 20px;
	padding: 0 0 12px 0;
}

.contact-info .form-block .map-out aside p {
	font-size: 10px;
	color: #525161;
	line-height: 20px;
}

.contact-info .form-block .map-out aside p a {
	color: #525161;
	text-decoration: none;
}

.contact-info .form-block .map-out aside p a:hover {
	color: #16a15d;
}

.contact-info .form-block .map-out aside p:last-child {
	padding-bottom: 0;
}

@media only screen and (max-width: 991px) {
.contact-info .top-cont aside {
	min-height: 290px;
	max-width: 620px;
	background-size: auto 290px;
	border-bottom: 2px solid #e4e3f3;
	padding: 30px 0 70px 0;
}

.contact-info .top-cont aside h2 {
	padding-bottom: 8px;
}

.contact-info .top-cont aside .btn-out {
	padding: 45px 0 0 0;
}

.contact-info .top-cont .aside-out {
	box-shadow: none;
	padding: 50px 0 0 0;
	margin: 0;
}

.contact-info .form-block {
	background: url(../png/curve-03.png) no-repeat bottom right;
	background-size: auto 508px;
	padding: 83px 0 68px 0;
}

.contact-info .form-block h2 {
	text-align: center;
	padding: 0 0 22px 0;
}

.contact-info .form-block .form-out {
	width: 100%;
	float: left;
	padding: 0 30px 85px 30px;
}

.contact-info .form-block .form-out .btn {
	max-width: 152px;
}

.contact-info .form-block .form-out .btn-out {
	text-align: center;
}

.contact-info .form-block .map-out {
	width: 100%;
	text-align: center;
	padding: 0;
}

.contact-info .form-block .map-out .map {
	margin: 0 0 35px 0;
}

.contact-info .form-block .map-out .map img {
	min-width: 870px;
	margin: 0 -435px;
}

.contact-info .form-block .map-out aside {
	width: 100%;
	float: left;
}

.contact-info .form-block .map-out aside p br {
	display: none;
}

.contact-info .form-block .map-out aside p a {
	margin: 0 0 0 30px;
}
}

@media only screen and (max-width: 767px) {
.contact-info .top-cont aside {
	min-height: 220px;
	max-width: 100%;
	background-size: auto 220px;
	padding: 30px 6% 55px 6%;
}

.contact-info .top-cont aside h2 {
	padding-bottom: 2px;
}

.contact-info .top-cont aside .btn-out {
	padding: 30px 0 0 0;
}

.contact-info .top-cont .aside-out {
	box-shadow: none;
	padding: 30px 0 0 0;
	margin: 0;
}

.contact-info .form-block {
	background-size: auto 415px;
	padding: 56px 0 68px 0;
}

.contact-info .form-block h2 {
	text-align: center;
	padding: 0 0 22px 0;
}

.contact-info .form-block .form-out {
	padding: 0 30px 65px 30px;
}

.contact-info .form-block .form-out .btn {
	max-width: 115px;
}

.contact-info .form-block .map-out {
	width: 100%;
	text-align: center;
	padding: 0;
}

.contact-info .form-block .map-out .map img {
	min-width: 640px;
	margin: 0 -320px;
}

.contact-info .form-block .map-out aside p br {
	display: none;
}
}

@media only screen and (max-width: 574px) {
.contact-info .form-block .form-out {
	padding: 0 10px 65px 10px;
}

.contact-info .form-block .map-out aside p a {
	margin: 0;
}

.contact-info .form-block .map-out aside p br {
	display: block;
}
}


/* 
 6.) Footer
----------------------------------------*/

#footer-main {
	width: 100%;
	float: left;
	padding: 60px 0;
}

#footer-main .container {
	max-width: 1840px;
}

#footer-main p {
	font-family: "open_sanslight", Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: rgba(255, 255, 255, .70);
	line-height: 15px;
	letter-spacing: 0.04em;
	padding: 0;
}

#footer-main .social-links {
	width: 100%;
	float: left;
	padding: 0 0 11px 0;
}

#footer-main .social-links ul {
	float: right;
	padding: 0;
	margin: 0;
}

#footer-main .social-links ul li {
	width: 20px;
	height: 23px;
	float: none;
	display: inline-block;
	vertical-align: middle;
	line-height: 23px;
	padding: 0;
	margin: 0 0 0 6px;
}

#footer-main .social-links ul li img {
	width: 100%;
	max-height: 100%;
}

#footer-main .social-links ul li:before {
	display: none;
}

#footer-main .social-links ul li a:hover {
	opacity: .70;
}

#footer-main .social-links ul li:nth-child(1) {
	width: 10px;
	height: 20px;
}

#footer-main .social-links ul li:nth-child(2) {
	width: 17px;
}

#footer-main .social-links ul li:nth-child(3) {
	width: 21px;
}

#footer-main .social-links ul li:nth-child(4) {
	width: 17px;
}

#footer-main .social-links ul li:nth-child(5) {
	width: 16px;
	margin-top: 2px;
	margin-bottom: -2px;
}

#footer-main .form-out {
	width: 100%;
	float: none;
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

#footer-main .form-out label {
	font-size: 15px;
	color: rgba(255, 255, 255, .70);
	letter-spacing: 0.04em;
	text-align: center;
	padding: 0 0 12px 0;
}

#footer-main .form-out .input-out {
	width: 100%;
	float: left;
	position: relative;
}

#footer-main .form-out input[type="text"],
#footer-main .form-out input[type="number"],
#footer-main .form-out input[type="email"],
#footer-main .form-out input[type="url"] {
	height: 43px;
	color: #ffffff;
	background: none;
	border: 1px solid rgba(255, 255, 255, .70);
}

#footer-main .form-out .btn,
#footer-main .form-out button,
#footer-main .form-out input[type="button"],
#footer-main .form-out input[type="submit"] {
	width: 40px;
	height: 40px;
	float: right;
	background: url(../png/arrow-right-2.png) no-repeat center center;
	background-size: 9px auto;
	text-indent: -99999px;
	border: none;
	position: absolute;
	top: 0;
	right: 2px;
	padding: 0;
	margin: 0;
}

#footer-main .foot-left {
	width: 25%;
	float: left;
	padding: 5px 0 0 0;
	margin-right: -5%;
}

#footer-main .foot-left .logo-footer {
	width: 100%;
	float: left;
	margin: 0 0 3px 0;
}

#footer-main .foot-left .logo-footer img {
	width: 117px;
}

#footer-main .foot-middle {
	width: 60%;
	float: left;
	text-align: center;
}

#footer-main .foot-middle .form-out {
	max-width: 62%;
}

#footer-main .foot-right {
	width: 25%;
	float: right;
	padding: 18px 0 0 0;
	margin-left: -10%;
}

#footer-main .foot-right p {
	text-align: right;
}

@media only screen and (max-width: 991px) {
#footer-main {
	text-align: center;
	padding: 37px 0 35px 0;
}

#footer-main .social-links {
	padding: 0 0 3px 0;
}

#footer-main .social-links ul {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0;
}

#footer-main .social-links ul li {
	margin: 3px;
}

#footer-main .form-out input[type="text"],
#footer-main .form-out input[type="number"],
#footer-main .form-out input[type="email"],
#footer-main .form-out input[type="url"] {
	height: 35px;
	padding: 8px 20px;
}

#footer-main .form-out .btn,
#footer-main .form-out button,
#footer-main .form-out input[type="button"],
#footer-main .form-out input[type="submit"] {
	width: 35px;
	height: 35px;
}

#footer-main .foot-left {
	width: 100%;
	text-align: center;
	padding: 0;
	margin: 0;
	display: none;
}

#footer-main .foot-middle {
	width: 100%;
	float: left;
	text-align: center;
	padding: 0 0 30px 0;
}

#footer-main .foot-middle .form-out {
	max-width: 340px;
}

#footer-main .foot-right {
	width: 100%;
	float: right;
	padding: 0;
	margin: 0;
}

#footer-main .foot-right p {
	text-align: center;
}
}


