


/*------------------------------------------------------------------
[Master Stylesheet]

Project:	Verder - Responsive App Landing Page
Version:	1.0
Last change:	05/02/08 [fixed Float bug, vf]
Author:	petkof
Contacts:	https://themeforest.net/user/petkof
-------------------------------------------------------------------*/

@import url("css/navigation.css");
@import url("css/elements.css");
@import url("css/colors/color-green.css");

	/*------------------------------------------------------------------
	[Table of contents]

	Body and extra class

	 Loader

	 Parallax

	 OWL SLIDER

	 Buttons

	 Icon set

	 Download counter

	 Section pages styles

	 Home Pattern And Image Parallax

	 Home Version 1

	 Home Version 2

	 Home Version 3

	 Features

	 Video Box External

	 Testimonials

	 Team

	 Price Section

	 Contact form

	 Footer
-------------------------------------------------------------------*/






/*  Body and extra class  */

	html,body,div,span,h1,h2,h3,h4,h5,h6,p,blockquote,a,img,small,sub,b,dl,dd,dt,ul,li,label,article,details,footer,header,menu,nav,input,textarea,select{
		background:transparent;
		border:0;
		outline:0;
		padding:0;
		margin:0;
	}


	html,body{
		font-family: 'Roboto', sans-serif;
		font-size:12px;
		height:100%;
		width:100%;
		color:#444;
		background:#f5f5f5;
	}

	body{
		overflow-x:hidden
	}

	h1, h2, h3, h4, h5, h6 {
		font-weight: 400;
		font-family: 'Lato', sans-serif;
		  text-rendering: optimizeSpeed;
		color:#222222;

	}



	h2 {

		margin-bottom: 15px;
		font-weight: 300;

    text-transform: uppercase;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: 2px;

	}

	h2 span{

		font-weight: 300;
	}

	p {
		font-size:14px;
		line-height:25px;
		letter-spacing:1px;
		font-weight: 400;
		font-family: "Open Sans", arial, sans-serif;
	}

	b {
		color:#222;
	}

	.container {
	    z-index: 1;
		position: relative;
		margin:0 auto;
		padding:100px 20px;
		width: 1600px;
	}



	.small-width {
		width:980px;
	}

	.no-padding {
		padding:0!important;
	}

	a:hover, a:active, a:focus {
	  outline: 0;
	}

	a {
        text-decoration: none;
        -webkit-transition: background-color .3s ease, border .3s ease, color .3s ease, opacity .3s ease-in-out, outline .3s ease;
           -moz-transition: background-color .3s ease, border .3s ease, color .3s ease, opacity .3s ease-in-out, outline .3s ease;
            -ms-transition: background-color .3s ease, border .3s ease, color .3s ease, opacity .3s ease-in-out, outline .3s ease;
             -o-transition: background-color .3s ease, border .3s ease, color .3s ease, opacity .3s ease-in-out, outline .3s ease;
                transition: background-color .3s ease, border .3s ease, color .3s ease, opacity .3s ease-in-out, outline .3s ease;
    }

	li {
		list-style:none;
	}

	a {
		outline: 0;
			color: #999999;
	}

	a:hover {
		color: #222222;
		text-decoration:none;
	}

	.left {
		float: left;
	}

	.right {
		float: right;
	}

	.text-center {text-align:center;}
	.text-left {text-align:left;}
	.text-right {text-align:right;}

 .overflow_hidden { overflow: hidden;	}

 .vcenter {
	 display: inline-block;
	 vertical-align: middle;
	 float: none;
 }

	.section-title {
		text-align:center;
		width:700px;
		margin:0 auto;
		margin-bottom:60px;
	}

	.section-title p {
		border-left: 2px solid #82B440;
		border-right: 2px solid #82B440;
		display: inline-block;
		padding: 0 10px;
		line-height: 12px;
	}

	.white {color:#fff}






	/*  Loader  */

	.mask {
		background-color:#1c1c1c;
		width:100%;
		height:100%;
		position:fixed;
		z-index:100000;
	}


	.loader {
	  width: 40px;
	  height: 40px;
	  position: absolute;
	  left: 50%;
	  top: 50%;
	  margin: -20px 0 0 -20px;
	}
	.loader .circle {
	  position: absolute;
	  width: 38px;
	  height: 38px;
	  opacity: 0;
	  transform: rotate(225deg);
	  animation-iteration-count: infinite;
	  animation-name: orbit;
	  animation-duration: 5.5s;
	}
	.loader .circle:after {
	  content: '';
	  position: absolute;
	  width: 5px;
	  height: 5px;
	  border-radius: 5px;
	  background: #fff;
	  /* Pick a color */
	}
	.loader .circle:nth-child(2) {
	  animation-delay: 240ms;
	}
	.loader .circle:nth-child(3) {
	  animation-delay: 480ms;
	}
	.loader .circle:nth-child(4) {
	  animation-delay: 720ms;
	}
	.loader .circle:nth-child(5) {
	  animation-delay: 960ms;
	}
	@keyframes orbit {
	  0% {
		transform: rotate(225deg);
		opacity: 1;
		animation-timing-function: ease-out;
	  }
	  7% {
		transform: rotate(345deg);
		animation-timing-function: linear;
	  }
	  30% {
		transform: rotate(455deg);
		animation-timing-function: ease-in-out;
	  }
	  39% {
		transform: rotate(690deg);
		animation-timing-function: linear;
	  }
	  70% {
		transform: rotate(815deg);
		opacity: 1;
		animation-timing-function: ease-out;
	  }
	  75% {
		transform: rotate(945deg);
		animation-timing-function: ease-out;
	  }
	  76% {
		transform: rotate(945deg);
		opacity: 0;
	  }
	  100% {
		transform: rotate(945deg);
		opacity: 0;
	  }
	}





	/*  Parallax  */

.parallax {
    padding:  0;
    position: relative;
    overflow: hidden;
}


	.parallax {
		text-align: center;
		background-repeat: no-repeat;
		background-size: cover;
		background-attachment: fixed!important;
		z-index:99;

	}

	.parallax-overlay {
		background-color:rgba(0,0,0,0.60);
		height:100%;

	}



.parallax > .background-image-holder, .parallax .slides li > .background-image-holder {
    height: 100vh;
    top: -50vh;
    transition: all 0s ease !important;
    transition: opacity 0.3s ease !important;
    -webkit-transform-style: preserve-3d;
}

.background-image-holder {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: #292929;
    background-size: cover !important;
    background-position: 50% 50% !important;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    opacity: 1;
}



	/*  OWL SLIDER  */

	.grabbing {
		cursor:url(images/grabbing.png) 8 8, move;
	}



	.owl-theme .owl-controls .owl-page span {
		background: #FFFFFF;
		opacity: 1;
		width: 16px;
		height: 6px;
	}


	.owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span {
			background:#82b440;
			-webkit-animation-duration: 0.6s;
			animation-duration: 0.6s;
			-webkit-animation-fill-mode: both;
			animation-fill-mode: both;
			-webkit-animation-name: fadeInDown;
			animation-name:  fadeInDown;
	}


/*  Buttons  */


	.button {margin:20px 0!important;}

	.button-first {margin-right:10px!important;}

	.button-border.button-plain:hover, .button-plain.button-border-thin:hover, .button-plain.button-border-thick:hover, .button-border.button-plain:focus, .button-plain.button-border-thin:focus, .button-plain.button-border-thick:focus, .button-border-thin.button-plain:hover, .button-border-thin.button-plain:focus, .button-border-thick.button-plain:hover, .button-border-thick.button-plain:focus {color:#fff!important; background-color:#82b440; border-color:#82b440;}

	.button:visited, .button-plain:visited, .button-plain-flat:visited {color:#fff!important;}

	.button {
	  color: #fff;
	  letter-spacing:2px;
	  background-color: #222222;
	  border-color: #eeeeee;
	}

	.button:hover, .button:focus {
	    background-color: #868686;
	}

	.button-border.button-plain,  .button-plain.button-border-thin,  .button-plain.button-border-thick, .button-border-thin.button-plain,  .button-border-thick.button-plain {background-color: rgba(255, 255, 255, 0);}


	.button.theme{
	  background-color: #82b440;
	  border-color: #82b440;

	}

	.button.theme:hover {
	background-color: #E7E7E7;
	border-color: #E7E7E7;
	  color: #fff!important;
	}

	.button.theme:hover > span {
	  -webkit-animation-duration: 0.6s;
	  animation-duration: 0.6s;
	  -webkit-animation-fill-mode: both;
	  animation-fill-mode: both;
	  -webkit-animation-name: fadeInDown;
	  animation-name: fadeInDown;
	}

	.button.theme.contact {margin:0px!important;}
	.contact:hover {background-color:#82b440;}





	/* Icon set */
	.icon-set.nav-tabs a,
	.icon-set.nav-tabs {border:0px!important;}
	#anonse-tab {margin-top: 20px;}
	.icon-set span {margin-top:35px; font-size:23px; margin-right:20px;}


.icon-set span {
    font-size: 20px;
   /* background-color: #A0A0A0;*/
    margin-right: 25px;
    color: #fff;
    padding: 13px 16px;
    border-radius: 6px;
}

.icon-set span:hover,
.icon-set .active span {

    background-color: #1c1c1c!important;

	transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
	cursor:pointer;
}

.icon-set .active {margin-top:0px;}





	/* Download counter*/
	.counter-holder {
		border-top: 1px solid #fff;
		padding-top: 10px;
		display: inline-block;
		margin-top: 20px;
		font-weight: 400;
		font-size: 19px;
		text-transform: uppercase;
	}

	#counter {
		margin: 0 5px 0 0;
		font-weight: 400;
		color: #FFF;
		font-size: 22px;
	}


/* Section pages styles */

	section {
		position: relative;
		background-color:#fff;
		z-index: 99;
	}

	#home {
		z-index:100;
		position: relative;
		width: 100%;
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
	}



	#about-app {
		background-color:#eee;
				background:url(images/pattern.png) repeat;
	}

	#facts {
		background-color:#eee;
				background:url(images/pattern.png) repeat;
	}


	#Team {
		background-color:#eee;
	}

	#price-tables {
		background-color:#1c1c1c;
	}

	#features {
		background-color:#fff;
	}

	#Price-section {
		background-color:#fff;
				background:url(images/pattern.png) repeat;
	}


	#contact {
		background-color:#f7f7f7;
	}

	footer {
		background-color:#222;
	}












/* Home Pattern And Image Parallax */


	.home-static-image {
		background:url(images/home-static.jpg);
		width:100%;

		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover!important;

	}


	.pattern {
		background:url(images/pattern.png) repeat;
		width:100%;
		height:100%;
	}

	#home-center {
		height: 100%;
		display: table;
		position: absolute;
		top: 0;
		left:0;
		right:0;
		width: inherit!important;
		margin:0 auto;
		z-index:9;


	}

	.div-align-center {
		display: table-cell;
		vertical-align: middle;
		padding: 0 20px;
	}

	.home-static-image .vertical-align-middle.center {
		display: table-cell;
		vertical-align: middle;
		padding: 0 20px;
		text-align:center;
	}





/* Home Version 1 */

.home-version-1 {height:100%;}

.home-version-1 .home-static-image  {height:100%;}

#home .container {  padding: 100px 20px 20px; position:static;}

.vcenter .text-box-home {padding-left:40px;}

.center-wrapper {
  display: table;
  height: 100%;
}


.home-version-1 h1 {color:#fff;  font-size: 4em; text-transform: uppercase;}
.home-version-1 p {color:#fff; opacity:1;  font-size: 18px; margin: 20px 0px;}


#wrap-phone-home {     height: 705px; padding: 0px 15px 0px 0px;}

.mockup-home {
	padding:0px!important;
	position: relative;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	z-index:1;
}


.mockup__img-home {
	display: block;
  z-index: 3;
  position: relative;
}

.mobile-home {
  position: absolute;
  z-index: 100;
  overflow: hidden;
  background: #000;
  width: 320px;
  height: 569px;
  border: 1px solid #000;
  top: 0px;
  left: 21px;
  outline: 1px solid transparent;
  -webkit-transform-origin: 0px 0px 0px;
  transform-origin: 0px 0px 0px;
  -webkit-transform: matrix3d(
0.5518824474468281,	-0.2910501992532667,	0,	-0.00041343334295719736,
-0.00009770394155104967,	0.8366238201260152,	0,	0.0000075156878116192055,
0,	0,	1,	0,
-13,	157,	0,	1
);


  transform:matrix3d(
0.5518824474468281,	-0.2910501992532667,	0,	-0.00041343334295719736,
-0.00009770394155104967,	0.8366238201260152,	0,	0.0000075156878116192055,
0,	0,	1,	0,
-13,	157,	0,	1
);
}



.slideshow__item-home.current{
	pointer-events: auto;
	z-index: 100;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slideshow-home img {
	width: 100%;
}



.second-image {
	position: absolute;
	top: 0;
	z-index: 1;
}


.mobile-home-second {
  top: 0px;
  z-index: 2;
}






/* Home Version 2 */
.home-version-2 {height:100%;}
.home-version-2 .home-static-image {height:100%;}
.home-version-2 .container {height:100%;}

.home-version-2 h1 {color:#fff;  font-size: 3.5em; margin-bottom: 20px; text-transform: uppercase;  font-weight: 300;}
.home-version-2 p {color:#fff; opacity:1; font-size:17px; margin-bottom: 20px;}

.centered {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}



/* Home Version 3 */
.home-version-3  {height:100%; width:100%; background-color: #fff; z-index:99999;	 }
	#video	{
		background:url(images/video-background.jpg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover!important;
		}

.mb_YTPlayer { background-color: #fff;	}

.mb_YTPBar {display: none!important;}

.home-version-3 {height:100%;}
.home-version-3 .home-static-image {height:100%;}
.home-version-3 .container {height:100%;}


.home-version-3 h1 {color:#fff;  font-size: 3.5em; margin-bottom: 20px; text-transform: uppercase;  font-weight: 300;}
.home-version-3 p {color:#fff; opacity:1; font-size:17px; margin-bottom: 20px;}




.centered {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}






/* Features */

.features-box .icon {
  float: left;
  font-size: 53px;
  color: #82b440;
  padding: 0px;
  display: inline-table;
  text-align:center;

}

.iconbox-content {
  float: left;
  text-align: left;
  display: inline-table;
  margin-top: 10px;
  margin-bottom: 60px;
}

.iconbox-content h5 {
  margin-bottom: 10px;
  font-size: 17px;
  color: #222;
}


.features-box:hover > .icon {
	color: #000!important;
	/* text-shadow: 0px 10px 47px rgba(0,0,0,0.46); */
	transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
}


















/* Video Box External */


#videobox-external {
	height:400px;
	width:100%;
   background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed !important;

}


#videobox-external a img {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 120px;
    z-index: 999;
}















/* Testimonials */



#slideshow-testimonials {margin-top:0px; padding: 60px 0px;}



#Testimonial .testimonial-holder .info {
	margin-top:10px;
	font-size:13px;
	color:#fff;
	margin-bottom:20px;
}

.testimonial-holder {
	margin: 0 auto;
	display: block;
	float: none;
 }

#Testimonial .testimonial-holder .info .name {
	margin-right:10px;
	font-size:16px;
	font-weight:400;
}




#Testimonial .testimonial-holder blockquote p {
  margin-top: 10px;
  font-size: 20px;
  font-style: italic;
  color: #fff;
}

#Testimonial .testimonial-holder .testimonial-author-thumbnail {
    width: 200px;
    margin: 0 auto;
    position: relative;
}

#Testimonial .testimonial-holder .testimonial-author-thumbnail img {
    width: 100px;
    border-radius: 50%;
    border: 3px solid #fff;
}



.owl-theme .owl-controls {margin-top:30px;}








/* Team */

#Team .container .info-block {

    border-top: 1px solid #CECECE;
    margin-top: 30px;
    padding-top: 30px;
}


.widget {
  width: 100%;
  max-width: 245px;
  height: 290px;
	margin:0 auto;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  position: relative;

  -webkit-transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.widget__photo {
  width: 100%;
  height: 220px;

  -webkit-transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.widget__photo:after {
  -webkit-transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 10;
}

.widget__details {
padding-top:25px;
  padding: 20px;
  position: relative;
  text-align:center;
}

.widget__badges {
  position: absolute;
  right: 30px;
  top: 30px;
}



.widget__name {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 600;
  width: 100%;
  padding: 0 0px 0 0;
}

.widget__type {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}

.widget__info span {
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  display: block;
  width: 100%;
  margin-bottom: 4px;
}
.widget__info span:first-of-type {
  margin-top: 15px;
}

.widget p.title {margin-top:3px; font-size:13px; letter-spacing:1px;margin-bottom:5px;}

.widget p {font-size: 12px; line-height: 18px; letter-spacing: 0px;}
.widget hr {margin-top:10px; margin-bottom:10px;}


.icon-backgorund {  margin:0px 5px;  padding: 10px 13px 8px; display: inline-block; border-radius: 5px;}
.icon-backgorund.facebook {background: #3a5795;}

.icon-backgorund .fa {font-size:14px; color:#fff;}


.icon-backgorund.linkedin {background: #1883BB;}
.icon-backgorund.twitter {background: #1da1f2;}


.icon-backgorund:hover > .fa {
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}


.widget__overlay {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.widget__button {
  -webkit-transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  margin: 0 auto;
  padding: 10px 0;
  width: 90%;

  border-radius: 4px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 12px;
  left: 0;
  right: 0;
  top: -50px;
}


.widget:hover {-webkit-box-shadow: 0px 10px 47px 0px rgba(0,0,0,0.46);
-moz-box-shadow: 0px 10px 47px 0px rgba(0,0,0,0.46);
box-shadow: 0px 10px 47px 0px rgba(0,0,0,0.46);
}


.widget:hover .widget__button {
  top: 32px;
}
.widget:hover .widget__photo {
  height: 100px;
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
  margin-bottom:10px;
}
.widget:hover .widget__photo:after {
  opacity: 1;
}
.widget:hover .widget__overlay {
  visibility: visible;
  opacity: 1;
}


#Team .container [class*='col-'] {
	margin-bottom:20px;
	margin-top:20px;
}



/* Price Section */

#Price-section .container {
	top: -157px;
	padding-bottom:0px;
}

#Price-section .container .row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
}
#Price-section .container .row > [class*='col-'] {
	 display: flex;
	 flex-direction: column;
}


#Price-section .container .info-block {
    margin-top: 30px;
}


#download-section h2 {
	text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 300;

}



/* Contact form */

	#message {
		display: block;
		text-align: center;
		font-size: 14px;
	}

  .error_message {  color: #F00;   padding: 0px 0px 30px;}


	#success_page h3 {
		color: #529E00;
		margin-bottom: 10px;
	}


.input {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 15px 0px;
	vertical-align: top;
}

.input__field {
	position: relative;
	display: block;
	float: right;
	padding: 0.8em;
	width: 60%;
	border: none;
	border-radius: 0;
	background: #f0f0f0;
	color: #aaa;
	font-weight: 400;
	font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
	-webkit-appearance: none; /* for box shadows to show on iOS */
}

.input__field:focus {
	outline: none;
}

.input__label {
	display: inline-block;
	float: right;
	padding: 0 1em;
	width: 40%;
	color: #696969;
	font-weight: bold;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.input__label-content {
	position: relative;
	display: block;
	padding: 1.6em 0;
	width: 100%;
}



/* verder input style*/

.input--verder {
	padding-top: 1em;
}

.input__field--verder {
	width: 100%;
	padding: 0.8em 0.5em;
	background: transparent;
	border: 2px solid;
	  font-size: 14px;
  border-top-color: rgba(255, 255, 255, 0);
  border-right-color: rgba(255, 255, 255, 0);
  border-left-color: rgba(255, 255, 255, 0);
	  color: #777;
	  letter-spacing:1px;
	-webkit-transition: border-color 0.25s;
	transition: border-color 0.25s;
}

.input__field--verder.message {

}



.input__label--verder {
	width: 100%;
	position: absolute;
	top: -17px;
	text-align: left;
	overflow: hidden;
	padding: 0;
	pointer-events: none;
	-webkit-transform: translate3d(0, 3em, 0);
	transform: translate3d(0, 3em, 0);
}

.input__label-content--verder {
	padding: 0 1em;
	font-weight: 400;
	color: #777;
		  font-size: 14px;
}

.input__label-content--verder::after {
	content: attr(data-content);
	position: absolute;
	top: -200%;
	left: 0;
	color: #82b440;
	font-weight: 500;
	  margin-left: 8px;
}

.input__field--verder:focus,
.input--filled .input__field--verder {
	border-color: #cecece;
}

.input__field--verder:focus + .input__label--verder,
.input--filled .input__label--verder {
	-webkit-animation: anim-verder-1 0.25s forwards;
	animation: anim-verder-1 0.25s forwards;
}

.input__field--verder:focus + .input__label--verder .input__label-content--verder,
.input--filled .input__label-content--verder {
	-webkit-animation: anim-verder-2 0.25s forwards ease-in;
	animation: anim-verder-2 0.25s forwards ease-in;
}

@-webkit-keyframes anim-verder-1 {
	0%, 70% {
		-webkit-transform: translate3d(0, 3em, 0);
		transform: translate3d(0, 3em, 0);
	}
	71%, 100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes anim-verder-2 {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	70%, 71% {
		-webkit-transform: translate3d(0, 125%, 0);
		transform: translate3d(0, 125%, 0);
		opacity: 0;
		-webkit-animation-timing-function: ease-out;
	}
	100% {
		color: transparent;
		-webkit-transform: translate3d(0, 200%, 0);
		transform: translate3d(0, 200%, 0);
	}
}

@keyframes anim-verder-1 {
	0%, 70% {
		-webkit-transform: translate3d(0, 3em, 0);
		transform: translate3d(0, 3em, 0);
	}
	71%, 100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes anim-verder-2 {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	70%, 71% {
		-webkit-transform: translate3d(0, 125%, 0);
		transform: translate3d(0, 125%, 0);
		opacity: 0;
		-webkit-animation-timing-function: ease-out;
	}
	100% {
		color: transparent;
		-webkit-transform: translate3d(0, 200%, 0);
		transform: translate3d(0, 200%, 0);
	}
}
#contact-box {display:none;}
#hide-contact {display:none;}






/* Footer */


	footer {
		border-top:1px solid rgba(0, 0, 0, 0.16);
		z-index:100;
		position:relative;
		padding:15px 0;
		text-align:center;
		color:#fff;
	}

	footer .copyright {float:left; color:#fff;}



	#menu_top {

		height:50px;
		width:40px;
		border-radius:3px;
		left:50%;
		margin-left:-20px;
		margin-top:-10px;
		position:absolute;
		cursor:pointer;
		font-size:36px;
		color:#fff;
		opacity:1;
	}

	#menu_top:hover {color:#82b440; }





	.social-icons-footer {float:right;}

	.social-icons-footer ul li a {color:#fff; padding: 0 10px;}

	.social-icons-footer ul li a:hover > span {

	  -webkit-animation-duration: 0.6s;
	  animation-duration: 0.6s;
	  -webkit-animation-fill-mode: both;
	  animation-fill-mode: both;
	  -webkit-animation-name: fadeInDown;
	  animation-name: fadeInDown;
	}


	.social-icons-footer ul li {
		display: inline-block;

		font-size:18px;
		color:#333;
	}

	@-webkit-keyframes bottom_top_over { 0% { background-position: 0px 0px; }  100% { background-position: 0px -11px; } }
	@-moz-keyframes bottom_top_over { 0% { background-position: 0px 0px; }  100% { background-position: 0px -11px; } }
	@keyframes bottom_top_over { 0% { background-position: 0px 0px; }  100% { background-position: 0px -11px; } }
