/*--------------
All Contents
--------------*/

/*-----------------
1. Reset.css
2. Helper Classes
3. Main and Hero Section Stylings
4. Services Styling
5. Features Split
6. Feature with BG
7. Feature Big
8. Testimonial Stling
9. Pricing Section
10. Call To Action Subscribe
11. Download Section
12. Back to top
------------------*/

/* fonts */
/* poppins-300 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/poppins-v5-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Poppins Light'), local('Poppins-Light'),
       url('/fonts/poppins-v5-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v5-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v5-latin-300.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v5-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v5-latin-300.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-regular - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/poppins-v5-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Poppins Regular'), local('Poppins-Regular'),
       url('/fonts/poppins-v5-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v5-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v5-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v5-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v5-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-500 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/poppins-v5-latin-500.eot'); /* IE9 Compat Modes */
  src: local('Poppins Medium'), local('Poppins-Medium'),
       url('/fonts/poppins-v5-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v5-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v5-latin-500.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v5-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v5-latin-500.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-600 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/poppins-v5-latin-600.eot'); /* IE9 Compat Modes */
  src: local('Poppins SemiBold'), local('Poppins-SemiBold'),
       url('/fonts/poppins-v5-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v5-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v5-latin-600.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v5-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v5-latin-600.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-700 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/poppins-v5-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Poppins Bold'), local('Poppins-Bold'),
       url('/fonts/poppins-v5-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/poppins-v5-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/poppins-v5-latin-700.woff') format('woff'), /* Modern Browsers */
       url('/fonts/poppins-v5-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/fonts/poppins-v5-latin-700.svg#Poppins') format('svg'); /* Legacy iOS */
}

/*----- 1. Reset.css -----*/

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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;
	font-weight:400;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	font-family:"Poppins",sans-serif;
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* --- Common Styles ---*/
h1 {
  font-size: 16px;
}

/*----- Helper Classes -----*/
.navbar-fixed-top {
	top: 0;
border-width: 0 0 1px;
position: fixed;
display: block;
width: 100%;
left: 0;
}
html * {
	text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.img-circle {
    border-radius: 50%;
}
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*
::-webkit-scrollbar {
	display: none;
}
*/

::-moz-selection {
    color: #fff;
    background: #0073AA;
}

::selection {
    color:#fff;
    background: #0073AA;
}

.nopadding {
	padding: 0;
}

.custom-padding {
	padding-left: 10px;
	padding-right: 10px;
}

.no-margin {
	margin-right: 0;
	margin-left: 0;
}


.sup-title {
	display: inline-block;
	font-size: 1em;
	padding: 4px;
	text-transform: uppercase;
	font-weight: bold;
	color: #FFFFFF;
	background: #000000;
	margin: 0 0 20px 0;
}

.spacer {
	width: 100%;
	height: 50px;
}

.spacer-big {
	width: 100%;
	height: 100px;
}

.error-message {
	color: #FF3333;

	margin-top: 5px;
}

.success-message {
	color:#33cc33;

	margin-top: 5px;
}

.btn-fill {
	background: #FFFFFF;
	color: #0073AA;
	border: 2px solid #0073AA;
	-webkit-transition: 200ms;
	-moz-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
}

.btn-fill:hover, .btn-fill:focus {
	color: #0073AA;
	background: transparent;
	border: 2px solid #0073AA;
}

/* ------- Header Section Styling Starts ------- */
.header-logo {
	height: 50px;
	width: auto;
}

/* ------ Navbar Styling Starts ----- */
.navbar {
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	padding-top: 25px;
	letter-spacing: 1px;
	height: 100px;
	z-index: 99;
}

.navbar-default {
  transition: all 0.6s ease;
	border-color: transparent;
  background-color: transparent;
}

.navbar-default .navbar-toggle {
  border-radius: 0px;
  border-color: transparent;
}

.navbar-default .navbar-toggle:hover {
  background-color: transparent;
}

.navbar-default .navbar-toggle:focus {
  background-color: transparent;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #111111;
}

.navbar-default .navbar-brand .navbar-toggle .collapsed {
    padding: 4px 6px;
    font-size: 16px;
    color: #111111;
  }

.navbar-default .navbar-brand {
	padding: 0 0;
	-webkit-transition: 200ms;
	-moz-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
}

.navbar-default .navbar-brand:hover {
  transition: 1s;
}

.navbar-default  .navbar-nav .nav-link {
  color: #474949;
  font-weight:700;
  -webkit-transition: all 0.5s;
	-moz-transition: all 0.5;
  transition: all 0.5s;
}

.navbar-default .navbar-nav > li > a:hover {
  color: #000000;
}

.navbar-default .navbar-nav > .active > a {
  background: transparent;
  color: #FFFFFF;
  }


.navbar-default .navbar-nav > .active > a:hover {
    background: transparent;
    color: #FFFFFF;
}

.navbar-default .navbar-nav > .active > a:focus {
	background: transparent;
  color: #FFFFFF;
}

.navbar-default .navbar-collapse {
	border-color: transparent;
  background-color: transparent;
}

.navbar-default .navbar-nav .open .dropdown-toggle {
  color: #111111;
}

.navbar-default .nav-white > li > a {
	color: #FFFFFF;
}

.navbar-default .nav-white > li > a:hover {
	color: #999999;
}

/*---------- Media Queries ---------*/
@media only screen and (max-width: 767px) {
	.navbar {
		padding-top: 5px;
		height: 60px;
	}

  .navbar-default {
    border: 0px;
    background-color: transparent;
  }

	.navbar-default .navbar-collapse {
		text-align: center;
		border-color: transparent;
	  background-color: #FFFFFF;
	}

  .navbar-default .navbar-collapse {
    border: 0;
    border-color: transparent;
  }

  .navbar-default .navbar-nav > li> a {
    color: #222222;
		margin-top: 10px;
  }

	.navbar-default .navbar-nav > li> a:hover {
		color: #222222;

	}
  .navbar-default .navbar-brand {
    color: #FFFFFF;
		padding: 8px 8px !important;
  }
  .navbar-default .navbar-toggle .icon-bar {
    background-color: #111111;
  }
}

@media only screen and (min-width: 240px) {
	.navbar.past-main {
	  transition: all 0.6s ease;
	  height: 50px;
	  background-color: rgba(255, 255, 255, 0.99);
	}

	.navbar.effect-main:active {
	  -webkit-transition: height 0.6s; /* For Safari 3.1 to 6.0 */
	  transition: height 0.6s;
	  height: 60px;
	}

	.navbar.past-main {
		font-size: 14px;
		padding-top: 5px;
		height: 90px;
		-webkit-box-shadow: 0 1px 5px 0 rgba(96, 96, 96, 0.3);
		-moz-box-shadow: 0 1px 5px 0 rgba(96, 96, 96, 0.3);
		box-shadow: 0 1px 5px 0 rgba(96, 96, 96, 0.3);
		-webkit-transition: height 0.6s; /* For Safari 3.1 to 6.0 */
		transition: height 0.6s;
	}

	.navbar-default.past-main .navbar-brand {
		padding: 8px 0;
	}

	.navbar-default.past-main .navbar-toggle .icon-bar {
		background-color: #111111;
	}

	.navbar-default.past-main .navbar-nav > li > a {
	  color: #2c394a;
	  -webkit-transition: color 0.5s;
	  transition: color 0.5s;
	}

	.navbar-default.past-main .navbar-nav > li > a:hover {
	  color: #111111;
	}

	.navbar-default.past-main .navbar-nav > .active > a {
	  background: transparent;
	  color: #0073AA;
	  }


	.navbar-default.past-main .navbar-nav > .active > a:hover {
		background: transparent;
		color: #222222;
	}

	.navbar-default.past-main .navbar-nav > .active > a:focus {
		background: transparent;
	  color: #222222;
	}
}
/* ------ Navbar Styling Ends ----- */

#main {
  height: 100%;
}

/* ----- Privacy & Imprint Section Styling Starts ----- */
.privacy-section,
.imprint-section {
	background: #fff;
	margin-top: 100px;
}

.privacy-content,
.imprint-content {
	padding: 100px 0;
}

.privacy-content h1,
.imprint-content h1 {
	font-size: 28px;
	color: #99161c;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.4;
	margin-bottom: 30px;
}

.privacy-content p,
.imprint-content {
	font-size: 16px;
	color: #8e8e8e;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0;
	margin-top: 0px;
}

/* ----- Privacy & Imprint Section Styling Ends ----- */

/* ------- Footer Section Styling Starts ------- */
.footer {
  background-color: #353737;
  width: 100%;
  height: 100%;
	overflow: hidden;
	padding-top: 50px;
	padding-bottom: 50px;
}

.footer img {
	margin-bottom: 20px;
}

.footer-menu ul {
	list-style-type: none;
}

.footer-menu li {
	display: inline;
	line-height: 2;
	font-size: 14px;
	padding-right: 15px;
	text-transform: uppercase;
}

.footer-menu > li:last-child {
	padding-right: 0px;
}

.footer-menu li a {
	color: #fff;
	text-decoration: none;
}

.footer-text p {
	font-size: 14px;
	color: #fff;
	line-height: 2;
	margin-top: 10px;
}

.footer-logo {
	width: auto;
	height: 60px;
}

/* ------- Footer Section Styling Starts ------- */

.no-color {
	background: #FFFFFF;
}

/* -------------------------------------------------------
----------- Back-to-Top Styling Starts Here --------------
---------------------------------------------------------*/

.back-to-top {
	background: rgba(46, 216, 182,0.5);
	margin: 0;
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	z-index: 90;
	display: none;
	text-decoration: none;
	color: #0E1729;
}

.back-to-top i {
	position: relative;
	left: 13px;
	top: 8px;
	font-size: 24px;
	color: #FFFFFF;
	-webkit-transition: 200ms;
	-moz-transition: 200ms;
	-o-transition: 200ms;
	transition: 200ms;
}

.back-to-top:hover {
    background: rgba(46, 216, 182,0.9);
    color: #FFFFFF;
}

.back-to-top:hover i {
	top: 6px;
}

.back-to-top:focus {
    color: #FFFFFF;
}

/*----------------------------------------------------
------------- All ------------------------------------
--------------------- Media --------------------------
------------------------------- Queries --------------
-----------------------------------------------------*/

@media only screen and (min-width: 768px) {
	#left, #right {
			width: 25px;
			}
	#top {
			height: 25px;
		}
	#bottom {
			height: 25px;
		}

	.custom-padding {
		padding-left: 80px;
		padding-right: 80px;
	}

	.privacy-content h1,
	.imprint-content h1	{
		font-size: 34px;
		line-height: 1.4;
	}

	.privacy-content p,
	.imprint-content p	{
		font-size: 18px;
	}
}

@media screen and (max-width: 399px) {
	.back-to-top {
		right: 10px;
	}
}