@charset "utf-8";
/* CSS Document */

/*html,body{
	background: url(../images/landingbg.jpg) no-repeat center center fixed;
	background-size: auto;
	padding: 0px;
	margin: 0px;
	background-color: #FFF;
	}*/

html,body{
	background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/landingbg.jpg); 
	background-repeat: no-repeat; 
	background-position: center;
	background-attachment: fixed;       
	webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 100%;
	width: 100%; 
}

.logo{
	top: 80px;
	position: relative;
	margin: auto;
	width: 100%;
	height: auto;
	text-align: center;
	animation-name: logo;
    animation-duration: 4s;
}

.logo img{
	width: 200px;
	height: auto;
}

.welcome{
	top: 100px;
	position: relative;
	margin: auto;
	width: 100%;
	height: auto;
	color: #FFF;
	font-size: 28px;
	text-align: center;
	
}

.buttons_wrapper{
	top: 120px;
	position: relative;
	width: 100%;
	height: auto;
	text-align: center;
}

.button {
	display: inline-block;
	border-radius: 4px;
	background-color: #F48F22;
	border: none;
	color: #FFFFFF;
	text-align: center;
	font-size: 20px;
	padding: 20px;
	width: 270px;
	transition: all 0.5s;
	cursor: pointer;
	margin: 5px;
	animation-name: fadeInLeft;
    animation-duration: 4s;
}

.button span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
}

.button span:after {
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
}

.button:hover span {
	padding-right: 25px;
}

.button:hover span:after {
	opacity: 1;
	right: 0;
}

/*Button Right*/
.button-right {
	display: inline-block;
	border-radius: 4px;
	background-color: #F48F22;
	border: none;
	color: #FFFFFF;
	text-align: center;
	font-size: 20px;
	padding: 20px;
	width: 270px;
	transition: all 0.5s;
	cursor: pointer;
	margin: 5px;
	animation-name: fadeInRight;
    animation-duration: 4s;
}

.button-right span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
}

.button-right span:after {
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
}

.button-right:hover span {
	padding-right: 25px;
}

.button-right:hover span:after {
	opacity: 1;
	right: 0;
}



/*@keyframes logo {
    0%   {top:0px;}
    100% {top:80px;}
}*/

@keyframes logo{
from {
    opacity: 0;
	top: 0px;
  }

  to {
    opacity: 1;
	top: 80px;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
	-webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0) 
  }

  to {
    opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


/* ANIMATION CODE ExAMPLE
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}*/