
html {
	font-size: 100%;
}

body {
	font-family: 'Open Sans', Helvetica Neue, Sans-serif;
	font-size: 16px;
	line-height: 28px;
	font-weight: 300;
	color: #313131;
	text-align: center;
	overflow-x: hidden !important;
	margin: auto !important;
}

/*---------------------------------------
   1.2 PRE-LOADER              
-----------------------------------------*/
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fefefe;
	z-index: 99999;
	height: 100%;
	width: 100%;
	overflow: hidden !important;
}

.status {
	width: 40px;
	height: 40px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -20px 0 0 -20px;
}

/*---------------------------------------
   2.3 ANCHOR AND BOLD TEXT           
-----------------------------------------*/
a {
	text-decoration: none;
	-webkit-transition: all ease 0.25s;
	transition: all ease 0.25s;
	-ms-transition: all ease 0.25s;
	-moz-transition: all ease 0.25s;
	-o-transition: all ease 0.25s;
}

a:hover {
	text-decoration: underline;
}

/*---------------------------------------
   1.4 MISC FIXES         
-----------------------------------------*/
@-webkit-viewport {
	width: device-width;
}

@-moz-viewport {
	width: device-width;
}

@-ms-viewport {
	width: device-width;
}

@-o-viewport {
	width: device-width;
}

@viewport {
	width: device-width;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

ul,
ol {
	padding-left: 0 !important;
}

li {
	list-style: none;
}

.row.no-gutters[class^="col-"],
.row.no-gutters[class*=" col-"] {
	padding-right: 0;
	padding-left: 0;
}

.navbar-inverse .navbar-nav > li > a {
	color: inherit;
}

.nav > li > a {
	padding: inherit;
}

.navbar-nav.navbar-right:last-child {
	margin-right: 0;
}
.navbar-header a.facebook-button {
	display:none;
}
.navbar-nav a.facebook-button {
	display: inline-block;
	width:35px;
	height:35px;
	background-image:url("http://i.imgur.com/WHYYvdk.png ");
	float: left;
	position: relative;
	font-size: 30px;
	margin-top: 17px;
	margin-right: -2px;
    transition:all 0.5s ease-in-out;
	-webkit-transition:all 0.5s ease-in-out;
	-ms-transition:all 0.5s ease-in-out;
	-moz-transition:all 0.5s ease-in-out;
	-o-transition:all 0.5s ease-in-out;
}
.navbar-nav a.facebook-button:hover {
	background-image:url("http://i.imgur.com/TKuJsyo.png");
}

.navbar-inverse .navbar-nav > li > a:focus {
	color: inherit;
}

.mailchimp-success,
.mailchimp-error,
.email-success,
.email-error {
	display: none;
	margin-top: 15px;
}

.mailchimp-success span,
.mailchimp-error span,
.email-success span,
.email-error span {
	margin-right: 10px;
}

/* --------------------------------------
=========================================
   2. COMPONENTS
=========================================
-----------------------------------------*/
/*---------------------------------------
   2.1 TYPOGRAPHY      
-----------------------------------------*/
/* HEADINGS */

h1 {
	font-size: 3.75rem;
	line-height: 5rem;
}

h2 {
	font-size: 2.4rem;
	line-height: 3.125rem;
}

h2 strong {
	color: #272727;
}

h3 {
	font-size: 1.5rem;
	line-height: 2.375rem;
}

h4 {
	font-size: 1.25rem;
	line-height: 1.875rem;
}

h5 {
	font-size: 18px;
	line-height: 28px;
	font-weight: 300;
}

/* BUTTONS */
.standard-button {
	font-weight: 600;
}

/* OTHER TEXTS */
strong,
.strong {
	font-weight: 600;
}

.dark-text {
	color: #454545;
}

.transparent-text {
	color: rgba(255, 255, 255, 0.6);
}

.transparent-text-dark {
	color: rgba(49, 49, 49, 0.5);
}

.small-text {
	font-size: 14px;
}

.small-text-medium {
	font-size: 14px;
	font-weight: 600;
}

.uppercase {
	text-transform: uppercase;
}

.line-through {
	text-decoration: line-through;
}

.button-text {
	font-weight: 600;
	text-transform: uppercase;
}

.price .month {
	font-family: 'Open Sans', Helvetica Neue, Sans-serif;
	color: #666666;
	font-size: 16px !important;
}

/*---------------------------------------
   2.2 BUTTONS       
-----------------------------------------*/
.standard-button {
	border-radius: 3px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 16px;
	line-height: 1.6;
	border: none;
	padding: 18px 40px 18px 40px;
	color: #ffffff;
	-webkit-transition: none;
	transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
}

.secondary-button {
	border-radius: 3px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
	line-height: 1.6;
	background: transparent;
	padding: 20px 35px 20px 35px;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-color: rgba(255, 255, 255, 0.5);
	-webkit-transition: none;
	transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
}

.secondary-button:hover {
	background: transparent;
	border-color: #ffffff;
}

.secondary-button-dark {
	border-radius: 3px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
	line-height: 1.6;
	border: none;
	background: transparent;
	padding: 20px 35px 20px 35px;
	color: #272727;
	border-color: rgba(39, 39, 39, 0.5);
	-webkit-transition: none;
	transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
}

.secondary-button-dark:hover {
	background: transparent;
	border-color: #272727;
	color: #272727;
}

.navbar-register-button {
	border: none;
	font-weight: 500;
	text-transform: uppercase;
	color: #ffffff !important;
	-webkit-transition: none;
	transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
}

/*---------------------------------------
   2.3 BORDER AND LINE       
-----------------------------------------*/
.border-right {
	border-right: 1px solid #eaeaea;
}

.border-left {
	border-left: 1px solid #eaeaea;
}

.colored-line-left,
.colored-line-right,
.colored-line,
.white-line,
.grey-line {
	height: 2px;
	width: 80px;
	display: block;
}

.white-line {
	background: #ffffff;
	margin: auto;
}

.grey-line {
	background: #eaebec;
}

.grey-line-short {
	height: 2px;
	width: 40px;
	display: block;
	background: #eaebec;
}

.white-text {
	color: #ffffff;
}

.white-bg-border {
	background: #ffffff;
	border-top: 1px solid #eaebec;
	border-bottom: 1px solid #eaebec;
}

.white-bg {
	background: #ffffff;
}

.grey-bg {
	border-top: 1px solid #eaebec;
	border-bottom: 1px solid #eaebec;
	background: #F7F8FA;
}

.dark-bg {
	background: #2e3336;
}

.colored-line-left {
	float: left;
}

.colored-line-right {
	float: right;
}

.colored-line {
	margin: auto;
}

/*---------------------------------------
   2.4 SECTION HEADERS       
-----------------------------------------*/
.section-header {
	margin-top: 90px;
	margin-bottom: 60px;
}

.section-header h2 {
	margin-bottom: 20px;
	margin-top: 10px;
}

.sub-heading {
	margin-top: 20px;
}
.navbar-toggle.menu-style {
	background-color: #313131 !important;
}

/*---------------------------------------
   2.5 FORM ELEMENTS       
-----------------------------------------*/
.input-box,
.textarea-box {
	margin-bottom: 15px;
	margin-top: 15px;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 1px solid #dedede;
	border-radius: 3px;
	color: #999999;
	padding-left: 21px;
}

.input-box {
	min-height: 50px;
}

.textarea-box {
	padding-top: 15px;
}

.input-box:active,
.textarea-box:active,
.input-box:focus,
.textarea-box:focus {
	color: #272727;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.header {
	background: url('http://i.imgur.com/0PRmjJw.jpg') no-repeat center top fixed;
	-webkit-background-size: cover;
	background-size: cover;
	height: 100vh;
	background-position: 0px 50px !important;
}

.header .overlay-layer {
	position:relative;
	padding-top: 69px;
	height: 100%;
}
.header .overlay-layer .container-full {
	position:relative;
	top:50%;
}
.header .overlay-layer .container-full {
	width:100%;
}
.header .overlay-layer.custom-style .container {
	margin-top:-254px;
}
.header .overlay-layer.custom-style .container .intro-section {
	margin-top:0;
}
.header .overlay-layer.custom-style .container .intro-section h1 {
	margin-top:0;
}

/* STICKY NAVIGATION AND LOGO */
.appear-on-scroll {
	opacity: 0;
}

.sticky-navigation {
	background: #ffffff;
	min-height: 70px;
	border: none;
	margin-bottom: 0 !important;
	-webkit-backface-visibility: hidden;
	-webkit-box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08);
	box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08);
}

.sticky-navigation .navbar-brand {
	padding: 18px 15px;
}

.sticky-navigation .navbar-brand img {
	max-height: 30px;
	-webkit-backface-visibility: hidden;
}

.sticky-navigation .main-navigation {
	margin-top: 0;
}

.sticky-navigation .main-navigation li a {
	text-transform: uppercase;
	line-height: 34px;
	padding: 18px;
	font-weight: 400;
}

.sticky-navigation .login-register {
	margin-top: 0;
}

.sticky-navigation .login-register .login a {
	text-transform: uppercase;
	line-height: 34px;
	padding: 18px;
    font-weight: bold;
}

body#imprint .container.imprint,
body#disclaimer .container.disclaimer,
body#terms .container.terms {
    margin-top: 150px !important;
}
.disclaimer{
    margin-top: 40px;
}
.container.disclaimer h3 {
	font-weight: 800;
	text-align: left;
}
.container.disclaimer p {
	text-align: left;
}
.container.disclaimer h4 {
	font-weight: 600;
	text-align: left;
}
.container.disclaimer ul li {
	list-style: disc;
	text-align: left;
	margin-left: 30px;
}

.sticky-navigation .login-register .register-button {
	margin-top: 15px;
}

.sticky-navigation .login-register .register-button a {
	padding: 6px 13px 6px 13px;
	margin-top: 4px;
	background: none;
	box-shadow: inset 0px 0px 0px 3px #313131 !important;
	-webkit-box-shadow: inset 0px 0px 0px 3px #313131 !important;
	color:#353535 !important;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	-ms-border-radius:0px;
	-o-border-radius:0px;
	transition:all 0.4s ease-in-out;
	-webkit-transition:all 0.4s ease-in-out;
	-ms-transition:all 0.4s ease-in-out;
	-moz-transition:all 0.4s ease-in-out;
	-o-transition:all 0.4s ease-in-out;
}
.sticky-navigation .login-register .register-button a:hover {
	background-color: #008ed6 !important;
	color:#fff !important;
	-webkit-box-shadow:none !important;
	box-shadow:none !important;
}

/* ONLY LOGO */
.only-logo .navbar-header {
	margin: auto;
	float: none;
}

.only-logo .navbar-header img {
	max-width: 80px;
}

h1.intro{
	font-weight: 300;
}
/* INTRO */
.intro-section {
	margin-top: 70px;
}
.intro-section h1 {
	width: 45%;
	margin-top: 0;
	text-align:left;
	padding-left: 50px;
	font-size: 3.98rem;
	padding-top:100px;
}
.intro-section h5 {
	width: 45%;
	text-align:left;
	padding-left: 50px;
}
.intro-section h1.custom-style {
	width:50%;
}

.intro-section h5 {
	margin-top: 15px;
	margin-bottom: 70px;
	font-size:24.2px;
}
.intro-section p.small-text {
	color: #fff;
	font-size: 15.5px;
	margin-top: 12px;
}
.intro-section .button a {
	margin-top:180px;
	font-size:27px;
	background: none !important;
	border: none !important;
	outline: none !important;
	box-shadow: 0px 0px 0px 4px white !important;
	-webkit-box-shadow: 0px 0px 0px 4px white !important;
	border-radius: 0px !important;
	-webkit-border-radius: 0px !important;
	-moz-border-radius: 0px !important;
	-ms-border-radius: 0px !important;
	-o-border-radius: 0px !important;
	padding: 16px 90px 16px 90px !important;
	font-weight:900;
	text-shadow: none;
	transition:all 0.4s ease-in-out;
	-webkit-transition:all 0.4s ease-in-out;
	-moz-transition:all 0.4s ease-in-out;
	-ms-transition:all 0.4s ease-in-out;
	-o-transition:all 0.4s ease-in-out;
}
.intro-section .button a:hover {
	background-color: #fff !important;
	color:black!important;
}

/*---------------------------------------
   3.2 SECTION: CLIENTS LIST    
-----------------------------------------*/
.client-logos {
	border-bottom: 1px solid #dadfe3;
	margin-bottom: 0;
}

.client-logos li {
	display: inline-block;
	margin: 25px 25px 25px 25px;
	vertical-align: middle;
}

.client-logos li img {
	max-height: 40px;
	opacity: 0.6;
}

.client-logos li img:hover {
	opacity: 1;
	cursor: pointer;
}

/*---------------------------------------
   3.3 SECTION: SERVICES    
-----------------------------------------*/
.services .container .row .media .media-middle a {
	display:block;
	width:100px;
	height:100px;
	background-repeat: no-repeat;
	background-size: 100%;
	margin-left: auto;
	margin-right: auto;
}
.services .container .row .media {
overflow: initial;
}
.services .container .row .media .media-middle.item-first a {
	background-image:url("http://i.imgur.com/3XIxoQW.png");
	transition:all 0.6s ease-in-out;
	-webkit-transition:all 0.6s ease-in-out;
	-ms-transition:all 0.6s ease-in-out;
	-o-transition:all 0.6s ease-in-out;
	-moz-transition:all 0.6s ease-in-out;
}
.services .container .row .media .media-middle.item-first a:hover {
	background-image:url("http://i.imgur.com/G5CKpiS.png");
}
.services .container .row .media .media-middle.item-second a {
	background-image:url("http://i.imgur.com/NBdui3t.png");
	transition:all 0.6s ease-in-out;
	-webkit-transition:all 0.6s ease-in-out;
	-ms-transition:all 0.6s ease-in-out;
	-o-transition:all 0.6s ease-in-out;
	-moz-transition:all 0.6s ease-in-out;
}
.services .container .row .media .media-middle.item-second a:hover {
	background-image:url("http://i.imgur.com/YOVxoAi.png");
}
.services .container .row .media .media-middle.item-third a {
	background-image:url("http://i.imgur.com/nLMqmfG.png");
	transition:all 0.6s ease-in-out;
	-webkit-transition:all 0.6s ease-in-out;
	-ms-transition:all 0.6s ease-in-out;
	-o-transition:all 0.6s ease-in-out;
	-moz-transition:all 0.6s ease-in-out;
}
.services .container .row .media .media-middle.item-third a:hover {
	background-image:url("http://i.imgur.com/kpHsKoS.png");
}
.single-service {
	padding: 40px 35px 40px 35px;
	margin: 0 0 100px 0;
	background: #ffffff;
	border-top: 1px solid #eaeaea;
	border-left: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	border-bottom: 4px solid #eaeaea;
	border-radius: 3px;
	-webkit-transition: all ease 0.55s;
	transition: all ease 0.55s;
	-moz-transition: all ease 0.55s;
	-ms-transition: all ease 0.55s;
	-o-transition: all ease 0.55s;
}

.single-service .service-icon {
	font-size: 60px;
	margin-bottom: 35px;
}

.single-service h3 {
	margin-bottom: 10px;
}

/*---------------------------------------
   3.4 SECTION: APP BRIEF    
-----------------------------------------*/
.brief {
	padding-top: 80px;
	padding-bottom: 115px;
}

.brief .content-section {
	margin-top: 15px;
}

.brief h2 {
	margin-bottom: 15px;
	margin-top: 10px;
}

.brief p {
	margin-top: 40px;
}

.brief .brief-image-right {
	margin-top: 20px;
}

.brief .brief-image-right img {
	float: right;
	width: 92%;
}

.brief .brief-image-left {
	margin-top: 105px;
	overflow: hidden;
}

.brief .brief-image-left img {
	float: left;
	width: 95%;
}

.feature-list {
	margin-top: 15px;
}

.feature-list li {
	padding-top: 8px;
	padding-bottom: 8px;
}

.feature-list li span {
	margin-right: 10px;
}

/* ACCORDION */
.panel-default {
	border: 0;
	border-radius: 3px;
	margin-top: 35px;
	display: block;
	text-align: left;
}

.panel-body {
	border-top: 4px solid #F7F8FA !important;
}

.panel-heading {
	background-color: #ffffff !important;
	border: none;
	padding: 0;
}

.panel-group .panel+.panel {
	margin-top: 15px;
}

.panel-heading .title-text {
	line-height: 40px;
}

.panel-title a:hover {
	text-decoration: none;
}

.panel-title .icon-container {
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
	font-size: 16px;
	height: 40px;
	line-height: 40px;
	padding-top: 1px;
	padding-right: 10px;
	padding-left: 10px;
	border-top-left-radius: 3px;
	float: left;
}

/*---------------------------------------
   3.5 SECTION: STATS 
-----------------------------------------*/
.stats {
	background: url('https://www.silanis.com/blog/wp-content/uploads/2014/11/Fintech.jpg') no-repeat center top fixed;
	-webkit-background-size: cover;
	background-size: cover;
}

.stats .overlay-layer-2 {
	padding-top: 80px;
	padding-bottom: 80px;
}
.overlay-layer-2 a.style_white {
	background: none !important;
	text-shadow:none;
	-webkit-text-shadow:none;
	-ms-text-shadow:none;
	-o-text-shadow:none;
	-moz-text-shadow:none;
	box-shadow:0px 0px 0px 4px white;
	-webkit-box-shadow:0px 0px 0px 4px white;
	border-radius:0px;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	-ms-border-radius:0px;
	-o-border-radius:0px;
	transition:all 0.4s ease-in-out;
	-moz-transition:all 0.4s ease-in-out;
	-ms-transition:all 0.4s ease-in-out;
	-o-transition:all 0.4s ease-in-out;
	-webkit-transition:all 0.4s ease-in-out;
}
.overlay-layer-2 a.style_white:hover {
	background-color: white !important;
	color:#353535;
}

.single-stats {
	margin-top: 40px;
	margin-bottom: 40px;
}

.single-stats .icon-container {
	margin-bottom: 35px;
}

.single-stats .icon-container span {
	font-size: 70px;
}

.stats-footer .long-transparent-line {
	margin-bottom: 45px;
}

/*---------------------------------------
   3.6 SECTION: UNIQUE FEATURES 
-----------------------------------------*/
.unique-features {
	padding-bottom: 100px;
}

.ipad-image {
	margin: auto;
}

.ipad-image img {
	width: 100%;
}

.feature {
	margin: auto;
	padding-left: 10px;
	padding-right: 0;
	margin-top: 30px;
	margin-bottom: 25px;
	overflow: hidden;
}

.feature .icon-container {
	margin-right: 10px;
	padding-top: 18px;
	float: left;
}

.feature .icon-container span {
	font-size: 30px;
}

.feature .description {
	width: 85%;
	float: right;
}

.feature .description p {
	margin-top: 20px;
}

/*---------------------------------------
   3.7 SECTION: PRICING TABLE 
-----------------------------------------*/
.pricing {
	padding-bottom: 30px;
}

.pricing-table {
	padding-left: 30px;
	padding-right: 30px;
}

.single-pricing {
	background: #ffffff;
	border-radius: 3px;
	border: 1px solid #e4e7e7;
	border-bottom: 4px solid #e4e7e7;
	margin-bottom: 80px;
	padding: 20px;
	-webkit-transition: all ease 0.55s;
	transition: all ease 0.55s;
	-moz-transition: all ease 0.55s;
	-ms-transition: all ease 0.55s;
	-o-transition: all ease 0.55s;
}

.package-title h3 {
	line-height: 60px;
	margin-top: 0;
	margin-bottom: 0;
	border-radius: 3px;
}

.price {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 5px;
	border-bottom: 1px solid #ececec;
	padding-bottom: 25px;
	padding-top: 15px;
}
.price.style-padding {
	padding-bottom:27px;
}

.price .superscript {
	vertical-align: super;
	font-size: 25px;
	left: 90px;
	position: relative;
}
.price .superscript.style-large {
	left: 112px;
	position: relative;
}

.price .month {
	font-size: inherit;
	display: block;
	margin-top: 0;
	line-height: 1;
	font-size: 14px !important;
	font-weight: 300;
}

.package-list {
	padding-top: 10px;
	margin-bottom: 25px;
}

.package-list li {
	margin-top: 12px;
	margin-bottom: 12px;
	border-bottom: 1px dotted #eaeaea;
	padding-bottom: 10px;
}
.package-list li.style_fr {
	padding-top: 14px;
	padding-bottom: 25px;
	margin-top: 0;
	margin-bottom: 0;
}
.package-list li.style_pl {
	padding-top: 14px;
	padding-bottom: 25px;
}
.package-list li.style_it {
	padding-top: 14px;
	padding-bottom: 25px;
	margin-top: 0;
	margin-bottom: 0;
}
.package-list li.style_de {
	padding-top: 14px;
	padding-bottom: 25px;
	margin-top: 0;
	margin-bottom: 0;
}

.package-list li span {
	margin-right: 8px;
}
.package-list li.style_es_default {
	padding-top: 14px;
	padding-bottom: 25px;
}

.single-pricing .button {
	margin-bottom: 20px;
}
/*
.single-pricing .button.style_fr {
	padding-top:2px;
}
.single-pricing .button.style_it {
	padding-top: 5px !important;
}
.single-pricing .button.advanced_style {
	padding-top:2px;
}
.single-pricing .button.style_pl {
	padding-top:2px;
}
*/

.highlighted {
	margin-top: -24px;
}

.highlighted .package-title h3 {
	line-height: 84px;
}

/*---------------------------------------
   3.8 SECTION: SCREENSHOTS   
-----------------------------------------*/
.features {
	background: url('https://i.imgur.com/C6ZXuc8.jpg') no-repeat top center fixed;
	-webkit-background-size: cover;
	background-size: cover;
}

.features .overlay-layer-2 {
	padding-bottom: 84px;
}

.single-feature {
	margin-bottom: 58px;
}

.left-side .single-feature {
	padding-right: 18px;
}

.right-side .single-feature {
	padding-left: 18px;
}

.screenshot img {
	display: block;
	width: 100%;
	height: auto;
}

.screenshot img:hover {
	cursor: crosshair;
}

.owl-theme .owl-controls .owl-page span {
	background: #ffffff;
}

/*---------------------------------------
   3.9 VERTICAL TIMELINE
-----------------------------------------*/
.vertical-timeline {
	padding: 0;
	margin: 0;
}

.timeline-section {
	padding: 0;
	padding-left: 135px;
	padding-top: 20px;
}

.timeline-section li {
	list-style-type: none;
	padding: 1em;
	margin: 0;
	-webkit-transition: background-color 0.5s;
	transition: background-color 0.5s;
	-ms-transition: background-color 0.5s;
	-moz-transition: background-color 0.5s;
	-o-transition: background-color 0.5s;
	overflow: visible;
	border-left: 2px solid #eaeaea !important;
}

.timeline-section li .date {
	display: inline-block;
	float: left;
	margin-left: -100px;
	max-width: 55px;
	margin-top: 5px;
}

.timeline-section li .icon-container {
	display: inline-block;
	float: left;
	width: 42px;
	height: 42px;
	line-height: 42px;
	border-radius: 50%;
	margin-left: -38px;
	padding-top: 2px;
}

.timeline-section li .info {
	text-align: left;
	background: #F7F8FA;
	margin-left: 15px;
	padding: 10px;
	font-size: 14px;
}

/*---------------------------------------
   3.10 SECTION: TEAM
-----------------------------------------*/
.team {
	padding-bottom: 50px;
}

.team-member {
	margin-bottom: 50px;
}

.team-member .social-icons {
	opacity: 0;
	margin-top: 5px;
	position: relative;
	-webkit-transition: all ease 0.55s;
	transition: all ease 0.55s;
	-moz-transition: all ease 0.55s;
	-ms-transition: all ease 0.55s;
	-o-transition: all ease 0.55s;
}

.team-member .social-icons li {
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 3px;
}

.team-member .social-icons li a {
	opacity: 0.5;
}

.team-member .social-icons li a:hover {
	opacity: 1;
	text-decoration: none;
}

.team-member:hover .social-icons {
	opacity: 1;
}

.member-pic {
	border: 5px solid #ffffff;
	border-radius: 3px;
}

.member-pic img {
	width: 100%;
}

.member-pic img:hover {
	filter: sepia(10%) hue-rotate(50deg);
	-webkit-filter: sepia(10%) hue-rotate(50deg);
	-moz-filter: sepia(10%) hue-rotate(50deg);
	-o-filter: sepia(10%) hue-rotate(50deg);
	-ms-filter: sepia(10%) hue-rotate(50deg);
}

.member-details {
	padding-top: 10px;
	padding-bottom: 12px;
	position: relative;
	width: 85%;
	margin: auto;
	background: #ffffff;
	border-radius: 3px;
	margin-top: -45px;
	z-index: 1;
}

.member-details h5 {
	margin-bottom: 3px;
}

/*---------------------------------------
   3.11 SECTION: TESTIMONIALS
-----------------------------------------*/
.testimonials {
	padding-bottom: 60px;
}

.feedback {
	padding: 0 30px;
	margin-bottom: 45px;
}

.feedback .pic-container {
	border-radius: 50%;
	display: inline-block;
	overflow: hidden;
	width: 60px;
	height: 60px;
	border: 3px solid #ffffff;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
}

.feedback .pic-container img {
	width: 100%;
}

.feedback p {
	font-style: italic;
	margin-top: 10px;
	margin-bottom: 25px;
}

.feedback h5 {
	margin-bottom: 0;
}

/*---------------------------------------
   3.12 SECTION: CALL TO ACTION
-----------------------------------------*/
.call-to-action {
    background: url('http://i.imgur.com/m36pH8V.jpg') fixed no-repeat top center;
    -webkit-background-size: cover;
    background-size: cover;
}
.call-to-action .overlay-layer-2 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.call-to-action h2 {
	margin-top: 20px;
	margin-bottom: 50px;
}

/*---------------------------------------
   3.13 SECTION: CONTACT INFO
-----------------------------------------*/
.contact-info {
	padding-top: 30px;
}

.contact-info .logo-container {
	margin-top: 20px;
	margin-bottom: 35px;
}

.contact-info .logo-container img {
	filter: grayscale(1);
	-webkit-filter: grayscale(1);
	-moz-filter: grayscale(1);
	-o-filter: grayscale(1);
	-ms-filter: grayscale(1);
	opacity: 0.6;
	max-width: 65px;
}

.contact-info .icon-container {
	font-size: 30px;
	margin-top: 40px;
	margin-bottom: 20px;
}

.contact-info .contact-links a {
	padding-top: 40px;
	padding-bottom: 40px;
}

/*---------------------------------------
   3.14 SECTION: GOOGLE MAP
-----------------------------------------*/
#google-container {
	position: relative;
	width: 100%;
	height: 500px;
}

#cd-google-map {
	position: relative;
	-webkit-transition: all ease 0.55s;
	transition: all ease 0.55s;
	-moz-transition: all ease 0.55s;
	-ms-transition: all ease 0.55s;
	-o-transition: all ease 0.55s;
}

#cd-google-map address {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	opacity: 0.8;
	padding: 1em 1em;
	color: #ffffff;
}

/*---------------------------------------
   3.15 SECTION: FOOTER
-----------------------------------------*/
.footer {
	padding-top: 30px;
	padding-bottom: 0;
}

.footer-links li {
	display: inline-block;
	padding: 10px;
}

.footer-links li a:hover {
	text-decoration: none;
}

.social-icons li {
	display: inline-block;
	margin-right: 5px;
	margin-left: 5px;
}

.social-icons li a:hover {
	text-decoration: none;
}

.social-icons li a:hover .transparent-text-dark {
	color: #313131;
}

body#disclaimer,
body#terms,
body#imprint {
    text-align: left;
}

body#disclaimer ul,
body#terms ul {
    padding-left: 40px !important;
}

body#terms ul.dropdown-menu,
body#disclaimer ul.dropdown-menu {
    padding-left: 0 !important;
}

body#disclaimer ul li,
body#terms ul li {
    list-style-type: inherit;
}

body#disclaimer footer,
body#terms footer,
body#imprint footer {
    text-align: center;
}

body#imprint .header-table {
    border-bottom: 2px solid #000000;
    margin-top: 20px;
}

body#imprint .header-table table>tbody>tr>th {
    width: 55%;
}

body#imprint .header-table table>tbody>tr>th,
body#imprint .header-table table>tbody>tr>td {
    border-top: none;
}

.navbar-inverse .navbar-nav a.dropdown-toggle:hover,
.navbar-inverse .navbar-nav>.open>a,
.navbar-inverse .navbar-nav>.open>a:hover,
.navbar-inverse .navbar-nav>.open>a:focus {
    color: #008ed6;
    background: transparent;
}

.login-register .dropdown {
    margin-top: 15px;
    margin-left: 10px;
    display: block !important;
}

.login-register .dropdown a.dropdown-toggle {
    padding: 10px 15px 8px;
    text-transform: uppercase;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    background-color: #008ED6;
    color: #FFFFFF;
}
/* Add style for german */
.button-details-german {
	position: relative;
	width: 100%;
	clear: both;
	padding-top: 30px;
}
.button-details-german  a {
	display: block;
	width: 80px;
	height: 40px;
	line-height: 40px;
	background-color: #008ed6;
	color: white;
	float: right;
	margin-right: 105px;
	border-radius:2px;
	text-decoration:none;
	-webkit-border-radius:2px;
	transition:all 0.5s ease-in-out;
	-webkit-transition:all 0.5s ease-in-out;
}
.button-details-german  a:hover {
	text-decoration:none;
	color:#313131;
}
.container.details {
	margin-top:120px;
}
.container.details h2 {
	font-weight:800;
	text-align:left;
}
.container.details h4 {
	font-weight:600;
	text-align:left;
}
.container.details p {
	text-align:left;
}
.button-more-german {
	position: relative;
	width: 100%;
	clear: both;
	padding-top: 30px;
}
.button-more-german a {
	display: block;
	width: 80px;
	height: 40px;
	line-height: 40px;
	background-color: #008ed6;
	color: white;
	float: right;
	margin-right: 105px;
	border-radius:2px;
	text-decoration:none;
	text-align:center;
	-webkit-border-radius:2px;
	transition:all 0.5s ease-in-out;
	-webkit-transition:all 0.5s ease-in-out;
}
.button-more-german a:hover {
	text-decoration:none;
	color:#313131;
}
.container.style-more {
	margin-top:120px;
}
.container.style-more h2 {
	font-weight:800;
	text-align:left;
}
.container.style-more h4 {
	font-weight:600;
	text-align:left;
}
.container.style-more p {
	text-align:left;
}
.container.style-more ul li {
	list-style: disc;
	text-align: left;
}
.button-galleries-german {
	position: relative;
	width: 100%;
	clear: both;
	padding-top: 30px;
}
.button-galleries-german a {
	display: block;
	width: 80px;
	height: 40px;
	line-height: 40px;
	background-color: #008ed6;
	color: white;
	float: right;
	margin-right: 105px;
	border-radius:2px;
	text-decoration:none;
	text-align:center;
	-webkit-border-radius:2px;
	transition:all 0.5s ease-in-out;
	-webkit-transition:all 0.5s ease-in-out;
}
.button-galleries-german a:hover {
	text-decoration:none;
	color:#313131;
}
.container.gallery {
	margin-top:120px;
}
.container.gallery h2 {
	font-weight:800;
	text-align:left;
}
.container.gallery h4 {
	font-weight:600;
	text-align:left;
}
.container.gallery p {
	text-align:left;
}
.container.gallery ul li {
	list-style: disc;
	text-align: left;
}
.container.gallery ul ul {
	margin-left:30px;
}
.container.gallery ul ul li span {
	font-size:12px;
}
.container.gallery img{
	max-width:872px;
	width:100%;
	height:auto;
	margin-top:25px;
}
.container.faq {
	margin-top:40px;
}
.container.faq h2 {
	font-weight:800;
	text-align:left;
}
.container.faq h4 {
	font-weight:600;
	text-align:left;
}
.container.faq p {
	text-align:left;
}
.container.faq ul li {
	margin-left:30px;
	list-style:disc;
	text-align: left;
}

/* Style for change packages option */
.content .box-packages {
	width: 116px;
	top: -54px;
	height: 33px;
	right: 5px;
	float: right;
	position: relative;
	border: 1px solid #d4d4d4;
}
.content .box-packages span.caret {
	position: absolute;
	left: 93px;
	top: 7px;
}
.content ul.nav.option-packages {
	width: 100px;
	background-color: transparent !important;
	margin: 7px;
}
.content ul.nav.option-packages  li {
	background-color: transparent !important;
}
.content ul.nav.option-packages li.one-item a {
	margin-right:15px;
}
.content ul.nav.option-packages  li a {
	background-color: transparent !important;
	text-decoration:none;
	font-family: Verdana,Geneva,Kalimati,sans-serif;
	font-size: 13px;
	color: #4e4e4e;
}
.content ul.nav.option-packages  li.dropdown {
	display:block !important;
}
.content ul.nav.option-packages  ul.dropdown-menu {
	min-width: 117px;
	width: 100px;
	margin-left: -8px;
}
.content ul.nav.option-packages  ul.dropdown-menu li a {
	padding: 3px 12px;
	background-color: transparent !important;
	transition:all 0.5s ease-in-out;
	-webkit-transition:all 0.5s ease-in-out;
	-moz-transition:all 0.5s ease-in-out;
	-ms-transition:all 0.5s ease-in-out;
	-o-transition:all 0.5s ease-in-out;
}
.content ul.nav.option-packages  ul.dropdown-menu li a:hover {
	background-color: #008ed6 !important;
}
.contact-popup {
	display:none;
	position: fixed;
	visibility: visible;
	zoom: 1;
	opacity: 0.7;
	-webkit-opacity:0.7;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 10000;
	background: rgba(0, 0, 0, 0.8);
}
.contact-popup-inner {
	display:none;
	position:absolute;
	max-width:670px;
	width:100%;
	left:50%;
	margin-left:-335px;
	top:5800px;
	border-radius:10px;
	-webkit-border-radius:10px;
	background-color: white;
	z-index:10001;
}
.contact-popup-inner img.close-contact-popup {
	cursor:pointer;
	float: right;
	top: 5px;
	right: 5px;
	position: relative;
}
.contact-popup-inner .container  {
	width:100% !important;
	margin-bottom:27px;
}
.contact-form-inner {
	position:relative;
	max-width: 600px;
	width:100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	margin-bottom: 27px;
}
.contact-form-inner form .input-name {
	width:100% ;
}
.contact-form-inner form .input-company {
	width:100%;
}
.contact-form-inner form .input-message {
	width: 100%;
}
.contact-form-inner .box-name {
	width: 49%;
	display: inline-block;
	float:left;
}
.contact-form-inner .box-company {
	width: 49%;
	margin-left: 2%;
	display: inline-block;
	float:left;
}
.contact-form-inner .box-message {
	margin-top: 8px;
	width: 100%;
}
.contact-form-inner .submit-box {
	margin-top: 8px;
	right: 0;
	position: relative;
	float: right;
}
.contact-form-inner .submit-box p.success {
	display:none;
}
.contact-form-inner .submit-contact {
	position: relative;
	display: block;
	background-color: #008ed6 !important;
	background-image: none;
	text-shadow: none;
	color: white;
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}

.contact-form-inner form p {
	display:inline-block;
}
.contact-form-inner form input {
	display:inline-block;
}
.footer-popup {
	display:none;
	position: fixed;
	visibility: visible;
	zoom: 1;
	opacity: 0.7;
	-webkit-opacity:0.7;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 10000;
	background: rgba(0, 0, 0, 0.8);
}
.footer-popup-inner {
	display:none;
	position:absolute;
	max-width:1000px;
	width:100%;
	left:50%;
	margin-left:-500px;
	top:5800px;
	border-radius:10px;
	-webkit-border-radius:10px;
	background-color: white;
	z-index:10001;
}
.footer-popup-inner img.close-footer-popup {
	cursor:pointer;
	float: right;
	top: 5px;
	right: 5px;
	position: relative;
}
.footer-popup-inner .container  {
	width:100% !important;
}
.modal-body .prev_carousel {
	display: inline-block;
	width: 80px;
	height: 40px;
	line-height: 40px;
	border:none;
	background-color: #008ed6;
	color: white;
	outline:none;
	border-radius: 2px;
	text-decoration: none;
	text-align: center;
	-webkit-border-radius: 2px;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}
.modal-body .prev_carousel:hover {
	color: #313131;
}
.modal-body .next_carousel {
	display: inline-block;
	width: 80px;
	height: 40px;
	line-height: 40px;
	border:none;
	outline:none;
	background-color: #008ed6;
	color: white;
	border-radius: 2px;
	text-decoration: none;
	text-align: center;
	-webkit-border-radius: 2px;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}
.modal-body .next_carousel:hover {
	color: #313131;
}
.open-modal-btn {
	outline:none;
}
.open-modal-btn h5 {
	color: #008ed6;
	font-weight:600;
	outline:none;
}
.open-modal-btn:hover {
	text-decoration:none !important;
	outline:none;
}
.open-modal-btn:focus {
	text-decoration:none !important;
	border:none !important;
	box-shadow:none !important;
	outline:none;
}
.open-modal-btn h5:focus {
	text-decoration:none !important;
	border:none !important;
	box-shadow:none !important;
	outline:none;
}
.slider-box{
	width:170px;
	margin-left:auto;
	margin-right:auto;
	clear:both;
}
.navbar-nav > li > .dropdown-menu {
	left: -11px;
	min-width: 115px;
}
.ebay-box {
	width: 375px;
	margin-left: 50px;
	position: absolute;
	margin-top: 170px;
}
.ebay-box img {
	width:140px;
}
.ebay-box img.ebay_aplication {
	margin-left: 90px;
	position: relative;
	top: 2px;
}
.contact-form a.popup-form {
	color: black;
	font-weight: bold;
	font-size: 22px;
}
.contact-form a.popup-form:hover {
	text-decoration:none;
}
.contact-form a.popup-form:focus {
	text-decoration:none;
}
.privacy-box h1,.privacy-box p {
	text-align:left !important;
}