/* Light */ 
@font-face {
	font-family: "Sansation-Light";
	font-style: normal;
	font-weight: 300;
	src: local('Sansation-Light'), local('Sansation-Light'), url("/fonts/Sansation-Light.ttf") format('truetype');
}
@font-face {
	font-family: "Sansation-LightItalic";
	font-style: italic;
	font-weight: 300;
	src: local('Sansation-LightItalic'), local('Sansation-LightItalic'), url("/fonts/Sansation-LightItalic.ttf") format('truetype');
}
/* Normal */
@font-face {
	font-family: "Sansation-Regular";
	font-style: normal;
	font-weight: 400;
	src: local('Sansation-Regular'), local('Sansation-Regular'), url("/fonts/Sansation-Regular.ttf") format('truetype');
}

/* Bold */
@font-face {
	font-family: "Sansation-Bold";
	font-style: normal;
	font-weight: 700;
	src: local('Sansation-Bold'), local('Sansation-Bold'), url("/fonts/Sansation-Bold.ttf") format('truetype');
}
@font-face {
	font-family: "Sansation-BoldItalic";
	font-style: italic;
	font-weight: 700;
	src: local('Sansation-BoldItalic'), local('Sansation-BoldItalic'), url("/fonts/Sansation-BoldItalic.ttf") format('truetype');
}

.sl{  font-family: "Sansation-Light";}
.sli{ font-family: "Sansation-LightItalic";}
.sr{  font-family: "Sansation-Regular";}
.sb{  font-family: "Sansation-Bold";}
.sbi{ font-family: "Sansation-BoldItalic";}


/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
   */

   nav ol,nav ul,nav li{
   	margin: 0;
   	padding: 0;
   	border: 0;
   	font-size: 100%;
   	font: inherit;
   	vertical-align: baseline;
   }

   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, 
   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;
   }
   /* HTML5 display-role reset for older browsers */
   article, aside, details, figcaption, figure, 
   footer, header, hgroup, menu, nav, section, main {
   	display: block;
   }
   body {
   	line-height: 1;
   }
   header ol,header  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;
   }


/* -------------------------------- 

Primary style

-------------------------------- */
html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

html, body {
	/* you need to set this to assign to the main element a min height of 100% */
	height: 100%;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-img-replace {
	/* replace text with a background-image */
	display: inline-block;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}

.overflow-hidden {
	overflow: hidden;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-main-content {
	/* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
	min-height: 100%;
	position: relative;
	background-color: #f5f4e9;
	z-index: 2;
	padding-top: 50px;
	/* Force Hardware Acceleration in WebKit */
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
}
.lateral-menu-is-open {
	/* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
	-webkit-transform: translateX(-260px);
	-moz-transform: translateX(-260px);
	-ms-transform: translateX(-260px);
	-o-transform: translateX(-260px);
	transform: translateX(-260px);
	transition: all 0.4s;
}

.wrapper{
	transition: all 0.4s;
}
.wrapper:after{
	content: "";
	position: absolute;
	bottom: -50px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 50px 1500px 0px 0px;
	border-color: #ffffff transparent transparent transparent;
}

#cd-menu-trigger{
	display: none;
}

@media only screen and (min-width: 768px) {
	.cd-main-content {
		padding-top: 70px;
	}
}

header {
	position: fixed;
	top: 0;
	left: 0;
	height: 50px;
	width: 100%;
	background: #ffffff;
	z-index: 3;
	/* Force Hardware Acceleration in WebKit */
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
	box-shadow: 0px 3px 5px 1px rgba(0,0,0,0.2);
	transition: all 0.3s ease-out;
}
header.lateral-menu-is-open {
	/* translate to show the lateral menu */
	-webkit-transform: translateX(-260px);
	-moz-transform: translateX(-260px);
	-ms-transform: translateX(-260px);
	-o-transform: translateX(-260px);
	transform: translateX(-260px);
}
header.is-fixed {
	position: fixed;
}
@media only screen and (min-width: 768px) {
	header {
		height: 125px;
	}
}

#cd-logo {
	display: block;
	float: left;
	margin: 12px 0 0 20px;
}
#cd-logo img {
	display: block;
}
@media only screen and (min-width: 768px) {
	#cd-logo {
		margin: 22px 0 0 30px;
	}
}

#cd-top-nav {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
}
#cd-top-nav ul {
	height: 100px;
	line-height: 110px;
	transition: all 0.3s ease-out;

}
#cd-top-nav li {
	display: inline-block;
	padding:0px 20px;
}
#cd-top-nav a {
	display: inline-block;
	color: #464545;
	text-transform: uppercase;
	font-size:23px;
	font-family: "Sansation-Regular";
	transition: all 0.3s ease-out;
}
#cd-top-nav a.current {
	background-color: #242e30;
}

@media only screen and (min-width: 768px) {
	#cd-top-nav {
		display: block;
	}
}

#cd-menu-trigger {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 50px;
	z-index: 99;
	background-color: #fff;
}
#cd-menu-trigger .cd-menu-text {
	height: 100%;
	text-transform: uppercase;
	color: #000;
	font-weight: 600;
	display: none;
}
#cd-menu-trigger .cd-menu-icon {
	/* this span is the central line in the menu menu */
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 18px;
	height: 2px;
	background-color: #000;
	/* these are the upper and lower lines in the menu menu */
}
#cd-menu-trigger .cd-menu-icon::before, #cd-menu-trigger .cd-menu-icon:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: inherit;
	left: 0;
}


#cd-menu-trigger .cd-menu-icon::before {
	bottom: 5px;
}
#cd-menu-trigger .cd-menu-icon::after {
	top: 5px;
}
#cd-menu-trigger.is-clicked .cd-menu-icon {
	background-color: rgb(255, 255, 255);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before, #cd-menu-trigger.is-clicked .cd-menu-icon::after {
	background-color: #242e30;
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before {
	bottom: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

@media only screen and (min-width: 768px) {
	#cd-menu-trigger {
		width: 110px;
		padding-left: 1.25em;
	}
	#cd-menu-trigger .cd-menu-text {
		display: inline-block;
		line-height: 130px;
	}
	#cd-menu-trigger .cd-menu-icon {
		left: auto;
		right: 1.25em;
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	}
}

#cd-lateral-nav {
	position: fixed;
	height: 100%;
	right: 0;
	top: 0;
	/* the secondary navigation is covered by the main element */
	z-index: 1;
	width: 260px;
	background-color: #242e30;
	overflow-y: auto;
	/* Force Hardware Acceleration in WebKit */
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	transition: all 0.4s;
	/* this creates the subtle slide in animation of the navigation */
	-webkit-transform: translateX(80px);
	-moz-transform: translateX(80px);
	-ms-transform: translateX(80px);
	-o-transform: translateX(80px);
	transform: translateX(80px);
	right:-260px;
}
#cd-lateral-nav .cd-navigation {
	margin: 10px 0 16px;
}
#cd-lateral-nav .sub-menu {
	padding: 0 10px 20px 15px;
	display: none;
}
#cd-lateral-nav a {
	display: block;
	line-height: 4em;
	padding: 0 16px 0 32px;
	color: #aab5b7;
	transition: all 0.3s ease-out;
}
#cd-lateral-nav a.active {
	background-color: #d62f37;
	color: #FFF;
	transition: all 0.3s ease-out;
}
.no-touch #cd-lateral-nav a:hover {
	color: #FFF;
	transition: all 0.3s ease-out;
}
@media only screen and (min-width: 768px) {
	#cd-lateral-nav .cd-navigation {
		margin: 20px 0;
	}
}
#cd-lateral-nav.lateral-menu-is-open {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
	transition: all 0.4s;
	/* smooth the scrolling on touch devices - webkit browsers */
	-webkit-overflow-scrolling: touch;
	right:0px;
}

/* style menu items which have a submenu  */
#cd-lateral-nav .item-has-children > a {
	position: relative;
	/* this is the right arrow to show that the item has a submenu  */
}
#cd-lateral-nav .item-has-children > a::after {
	content: '';
	display: block;
	height: 11px;
	width: 8px;
	position: absolute;
	top: 50%;
	bottom: auto;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 1em;
	background: url("/images/cd-arrow.svg") no-repeat center center;
	background-size: 8px 11px;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	transition-duration: 0.2s;
}
#cd-lateral-nav .item-has-children > a.submenu-open::after {
	-webkit-transform: translateY(-50%) rotate(90deg);
	-moz-transform: translateY(-50%) rotate(90deg);
	-ms-transform: translateY(-50%) rotate(90deg);
	-o-transform: translateY(-50%) rotate(90deg);
	transform: translateY(-50%) rotate(90deg);
}

#cd-lateral-nav .socials {
	padding: 0 32px;
}
#cd-lateral-nav .socials:after {
	content: "";
	display: table;
	clear: both;
}
#cd-lateral-nav .socials a, footer .socials a {
	height: 32px;
	width: 32px;
	float: left;
	padding: 0;
	background-image: url("/images/cd-socials.svg");
	background-repeat: no-repeat;
	background-size: 128px 64px;
	background-color: #FFF;
	margin-right: .5em;
	border-radius: 0.25em;
}
#cd-lateral-nav .socials a.cd-twitter, footer .socials a.cd-twitter {
	background-position: 0 0;
}
#cd-lateral-nav .socials a.cd-github, footer .socials a.cd-github {
	background-position: -32px 0;
}
#cd-lateral-nav .socials a.cd-facebook, footer .socials a.cd-facebook {
	background-position: -64px 0;
}
#cd-lateral-nav .socials a.cd-google, footer .socials a.cd-google{
	background-position: -96px 0;
}
.no-touch #cd-lateral-nav .socials a:hover, footer .socials a:hover {
	background-color: #4e6361;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-twitter, footer .socials a:hover.cd-twitter {
	background-position: 0 -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-github, footer .socials a:hover.cd-github {
	background-position: -32px -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-facebook, footer .socials a:hover.cd-facebook {
	background-position: -64px -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-google, footer .socials a:hover.cd-google {
	background-position: -96px -32px;
}


#cd-top-nav .topmenu_left{
	position: absolute;
	right: 210px;
}

#cd-top-nav .topmenu_right{
	position: absolute;
	left: 210px;
}

.padding0{
	padding:0px;
}

.dotted{
	height: 105px;
	margin: 60px 0px;
	border-top: 1px dashed #3f3f3f;
	border-bottom: 1px dashed #3f3f3f;
	transition: all 0.3s ease-out;
}

header.small .dotted{
	margin:35px 0px;
}

#cd-top-nav a:hover{
	color:#d62f37;
	transition: all 0.3s ease-out;
}

#cd-top-nav a.active{
	color:#d62f37;
	position: relative;
}
#cd-top-nav a.active:after{
	content: "";
	width: 100%;
	position: absolute;
	height: 3px;
	background: #d62f37;
	bottom: 5px;
	left: 0px;
}

#cd-top-nav .topmenu_left a, #cd-top-nav .topmenu_right a{
	position: relative;
}

#cd-top-nav .topmenu_right a:hover:after, #cd-top-nav .topmenu_left a:hover:after{
	content: "";
	width: 100%;
	position: absolute;
	height: 3px;
	background: #d62f37;
	bottom: 5px;
	left: 0px;
}

header.small .dotted{
	height: 55px;
	transition: all 0.3s ease-out;
}

header.small #cd-top-nav ul{
	height: 55px;
	line-height: 55px;
	transition: all 0.3s ease-out;
}

header.small{
	height: 75px;
	transition: all 0.3s ease-out;
}

header.small .logo{
	top:-85px;
	transition: all 0.3s ease-out;
}

header.small #cd-top-nav a.active:after{
	bottom:0px;
	transition: all 0.3s ease-out;
}

#cd-top-nav ul.sub-menu{
	opacity: 0;
	position: absolute;
	transition: all 0.3s ease-out;
	display: none;
}

li.item-has-children{
	position: relative;
}

#cd-top-nav li.item-has-children:hover ul.sub-menu, #cd-top-nav li.item-has-children:hover ul.sub-menu li{
	opacity: 1;
	display: block;
	transition: all 0.3s ease-out;
}

#cd-top-nav ul.sub-menu li{
	transition: all 0.3s ease-out;
	opacity: 0; 
	background: #fff;
	padding: 0px 50px;
	position: relative !important;
	top: 0px;
	transform: translateX(-50%);
	text-align: center;
	left: 20%;
	height: 60px;
	line-height: 60px;
	box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.25);
	white-space: nowrap;
}

#cd-top-nav ul.sub-menu li:last-child{
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	/*    box-shadow: 0px 3px 2px 1px rgba(0,0,0,0.25);*/
}

a:focus, a:hover, a{
	text-decoration: none;
	outline: none;
}
body{
	background: #fff;
	overflow-x: hidden;
}

img{
	max-width: 100%;
}

.clear{
	clear:both;
}
.color-red{
	color: #d62f37;
}

.color-green{
	color :#218346;
}

.color-white{
	color:#fff;
}

.btn-green{
	background: #89be36;
	color:#fff;
	padding:10px 15px;
	transition: all 0.3s ease-out;
}

.logo{
	position: absolute;
	left: 50%;
	transform: translateX(-50%) !important;
	top: -3px;
	z-index: 1;
	transition: all 0.3s ease-out;
}

.mobileLogo{
	display: none;
}

#slider .item{
	height: 700px;
}

#slider .item h1{
	font-size: 53px;
	color:#fff;
	text-shadow: 3px 3px 6px rgba(0,0,0,1);
}

#content{
	padding-top:85px;
	box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.25);
	box-shadow: none;
	position: relative;
}

.welcome{
	background: url('/images/bg_right.png');
	background-repeat: no-repeat;
	background-position: center left;
	background-size: 100% 100%;
	height: 580px;
	padding-left: 120px;
	padding-left: 90px;
	padding-top: 30px;
}

.welcome_left{
	height: 580px;
	background-repeat: no-repeat !important;
	position: absolute;
	background-size: cover !important;
}


.welcome2{
	/*background: url('/images/bg_left.png');*/
	background: url('/images/potty-bg.jpg');
	background-repeat: no-repeat;
	background-position: center left;
	background-size: 100% 100%;
	height: auto;
	padding-bottom:20px;
	padding-left: 30px;
	padding-top: 30px;
	padding-right: 260px;
}

.welcome2 ul{
	margin-left: 40px;
}


.welcome_right{
	height: 405px;
	background-repeat: no-repeat !important;
	position: absolute;
	background-size: cover !important;
}

.welcome h1{
	text-transform: uppercase;
	font-size: 36px;
	margin-bottom:35px;
	margin-left: 50px;
}

.welcome2 h1{
	text-transform: uppercase;
	font-size: 36px;
	margin-bottom:35px;
	margin-left: 20px;
	white-space: nowrap;
}

.welcome p, .welcome2 p{
	color:#464545;
	font-size: 20px;
	text-align: justify;
	line-height: 30px;
}

.welcome2 ul li {
	font-size:22px;
	color:#464545;
	padding:5px;
	position: relative;
	line-height: 30px;
	list-style-type: none;
}

.welcome2 ul li:before{
	content:"";
	background: url('/images/list.png');
	width:27px;
	height: 30px;
	position: absolute;
	top: 2px;
	left: -30px;
}

.welcome a, .welcome2 a{
	font-size:26px;
	position: relative;
	top: 50px;
	padding-left: 10px;
}

@-moz-document url-prefix() { 
	.welcome img{
		margin-top: 50px !important;
	}
}

.welcome img{
	width:120px;
	height: 85px;
	position: relative;
	right: 20px;
	bottom: 0px;
}

.welcome2 img{
	position: absolute;
	right: 50px;
	top: 50%;
	transform: translateY(-50%);
}
.mainLogo{
	transition: all 1s ease-out;
}
.mainLogo:hover{
	-webkit-filter:grayscale(1);
	transition: all 1s ease-out;
}

a, a:hover{
	transition: all .4s ease-out;
}
.img-popup {
	display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: rgba(255,255,255,0.3);
    padding-top: 10px;
    cursor: pointer;
}
.soon {
	display: none;
	position: fixed;
    top: 200px;
    left: 37%;
    transform: translateY(0);
    z-index: 10000;
    width: 470px;
    height: auto;
    text-align: center;
    background-color: rgba(255,255,255,0.9);
    padding-top: 10px;
    cursor: pointer;
    color: red;
    padding: 50px;
    font-size: 27px;
}
.close-popup {
    position: absolute;
    right: 0;
    top: 0;
    color: #000;
    font-size: 22px;
}

.wrapper{
	position: relative;
	z-index: 10;
	background: #fff;
	margin-bottom: 420px;
	padding-bottom: 60px;
}

footer{
	position: relative; 
	bottom:0px;
	width: 100%;
	z-index: 0;
}

#content .container{
	box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.25);
}

footer .container-fluid{
	background: url('/images/footer.jpg');
	background-size:cover;
	background-repeat: no-repeat;
	background-position: top left;
	min-height: 360px;
}
#subpage{
	padding-top:200px;
	min-height: 475px;
}


#subpage h1.pageTitle{
	text-transform: uppercase;
	font-size: 36px;
	margin-bottom: 55px;
	margin-left: 50px;
	position: relative;
}

#subpage h1.pageTitle:after{
	content: "";
	width: 140px;
	height: 70px;
	background: url('/images/glass.png');
	position: absolute;
	background-repeat: no-repeat;
	top: -5px;
	background-size: contain;
	left: -30px;
}

.topmenu_right li:first-child a{
	animation: blinker 2s linear infinite;
}

@keyframes blinker {  
	0%   {color: #464545;}
	50% {color: #d62f37;}
	100%   {color: #464545;}
}

.footerBlocks{
	position: absolute;
	height: 100%;
}

.footerBlocks:first-child img{
	position: relative;
	top:50%;
	transform: translate(-50%, -50%);
	left:50%;
}

.footerBlocks .content{
	position: relative;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
}

.footerBlocks .content p{
	font-size: 24px;
	color:#fff;
	font-family: "Sansation-Light";
	margin-bottom: 25px;
	margin-left: 50px;
}

.footerBlocks .content p sup{
	text-decoration: underline;
	font-size:14px;
}

.footerBlocks .content h1{
	font-size:30px;
	color:#fff;
	text-transform: uppercase;
	position: relative;
	margin-bottom:50px;
}

.footerBlocks .content h1:after{
	content: "";
	width: 180px;
	height: 70px;
	background: url('/images/whiteglass.png');
	position: absolute;
	background-repeat: no-repeat;
	top: -15px;
	background-size: contain;
	left: -30px;
}

.footerIcon{
	position: relative;
	top: -8px;
	margin-right: 10px;
	margin-left: 20px;
	float: left;
}
#copyright span{
	font-size:15px;
	font-family: "Sansation-Light";
	color:#0d0d0d;
	line-height: 40px;
}

#copyright {
	text-align: center;
	height: 60px;
	padding: 10px;
	position: relative;
	z-index: 999;
}

#copyright img{
	float:left;
	margin-left:10px;
}

.welcomeDetails {
	background: url('/images/potty-bg.jpg');
	background-repeat: no-repeat;
	background-position: center left;
	background-size: cover;
	border-top: 3px dashed #7d7d7d;
	padding: 30px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	color: #464545 !important;
	font-size: 20px !important;
	text-align: justify !important;
	line-height: 30px !important;
}

/*#services{
	overflow: hidden;
}*/

#services .container{
	position: relative;
	min-height: 1050px;
}

#services .container .serviceImages, #services .container .serviceArrow{
	position: relative;
	display: inline-block;
	transition: all 0.5s ease-out;
}

#services .container .serviceImages p{
	text-align: center;
	font-size:28px;
	text-transform: uppercase;
	color:#218346;
}
#services .container .serviceArrow.arrowRight{
	position: absolute;
	left: 70%;
	top: 260px
}

#services .container .serviceArrow.arrowLeft{
	position: absolute;
	bottom: 200px;
	left: 70%;
}

#services .container .serviceArrow.arrowUp{
	position: absolute;
	bottom: 200px;
	left: 15%;
}

#services .container .mobileArrow{
	display: none;
}

#services .container .serviceImages:first-child{
	top: 80px;
	left: 50%;
	-webkit-transform:translateX(-50%);
	transform: translateX(-50%);
}
#services .container .serviceImages:nth-child(2){
	right: 0px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

#services .container .serviceImages:nth-child(3){
	bottom: 0px;
	position: absolute;
	left: 50%;
	-webkit-transform:translateX(-50%);
	transform: translateX(-50%);
}

#services .container .serviceImages:nth-child(4){
	left: 0px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

#services .container .origin{
	position: absolute;
}

.subCat h1{
	text-align: center;
	font-size: 28px;
	text-transform: uppercase;
	color: #218346;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.25);
}

.subCat img{
	width: 450px;
	height: 300px;
}

.subCat img.listImage{
	border-top-right-radius: 0px;
	margin-right: 30px;
	max-height: 250px;
	width: auto;
	border-bottom-left-radius: 0px;
	max-width: 370px;
}

.subCat img:hover{
	-webkit-filter: drop-shadow(0px 0px 3px #000);
	cursor: pointer;
}

.reverseImg{
	float:right !important;
	border-top-left-radius: 0px;
	border-top-right-radius: 70px !important;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 70px !important;
}

.marginb80{
	margin-bottom:80px;
}


.fa-search{
	float: right;
	position: absolute;
	right: 5px;
	z-index: 2;
	font-size: 25px;
	top: 5px;
}

#map{
	min-height: 400px;
}

.contactInfo{
	position: absolute;
	bottom: 0px;
	right: 0px;
	background: rgba(0,0,0,.5);
	color: #fff;
	border-top-left-radius: 10px;
	padding: 20px 30px 15px 30px;
	width: 340px;
	line-height: 35px;
	max-width: 100%;
}

.contactInfo ul{
	list-style: none;
	padding: 0px;
}

.contactInfo ul img{
	float:left;
	padding-right: 5px;
}

.kapcsolat .form-control{
	margin: 0px auto;
	margin-bottom: 20px;
	max-width: 500px;
}

.kapcsolat{
	padding: 20px;
}

.cd-top {
	display: inline-block;
	height: 60px;
	width: 60px;
	position: fixed;
	bottom: 100px;
	right: 10px;
	z-index: 10;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	/* image replacement properties */
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	/*background: rgba(232, 98, 86, 0.8) url(/images/cd-top-arrow.svg) no-repeat center 50%;*/
	background: url(/images/top-arrow.png) no-repeat center 50%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .3s 0s, visibility 0s .3s;
	-moz-transition: opacity .3s 0s, visibility 0s .3s;
	transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
	-webkit-transition: opacity .3s 0s, visibility 0s 0s;
	-moz-transition: opacity .3s 0s, visibility 0s 0s;
	transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
	/* the button becomes visible */
	visibility: visible;
	opacity: 1;
}
.cd-top.cd-fade-out {
	/* if the user keeps scrolling down, the button is out of focus and becomes less visible */
	opacity: .9;
}
.no-touch .cd-top:hover {
	/*background-color: #e86256;*/
	opacity: 1;
}

.carousel{
	    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    transition-duration: 0.4s;
    box-shadow: 0px 3px 5px 1px rgba(0,0,0,0.2);
    transition: all 0.3s ease-out;
}
@media only screen and (min-width: 768px) {
	.cd-top {
		right: 20px;
		bottom: 20px;
	}
}
@media only screen and (min-width: 1024px) {
	.cd-top {
		height: 60px;
		width: 60px;
		right: 30px;
		bottom: 30px;
	}
}

.carousel-indicators li {

    display: inline-block;
    width: 16px;
    height: 16px;
     margin: 2px !important; 
    text-indent: -999px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    /* outline: 1px solid #000; */
    /* border-radius: 10px; */
    -webkit-border-radius: 50px!important;
    -moz-border-radius: 50px!important;
    border-radius: 10px!important;
    box-shadow: 0 0 10px #000;
}


.carousel-indicators li:active {
	     margin: 2px !important; 
}
