 @keyframes slide {
 0% {
 opacity: 0;
 transform: translateY(70%);
}
 100% {
 opacity: 1;
 transform: translateY(0%);
}
}

 @-webkit-keyframes slide {
 0% {
 opacity: 0;
 -webkit-transform: translateY(70%);
}
 100% {
 opacity: 1;
 -webkit-transform: translateY(0%);
}
}


/*sticky menu
http://jsfiddle.net/yeco/4EcFf/
js/rex.js
*/

.menu {
	width: 100%;
	height: auto;
}
.sticky {
	position: fixed;
	top: 0;
}

.content {
    /*margin-top:20px;/*important*/
}
.menu-padding {
    padding-top:50px;/*important*/
}

/*sticky menu*/

#font1em {
	font-size:1em;
}

.glyphicon {
	font-size:1.5em;
	color:#00a896;
	padding-top:10px;
	
}

footer .glyphicon {
	font-size: 40px;
	margin-bottom: 20px;
	color: #00a896;
}
.slideanim {
	visibility: hidden;
}
.slide {
	animation-name: slide;
	-webkit-animation-name: slide;
	animation-duration: 1s;
	-webkit-animation-duration: 1s;
	visibility: visible;
}
.logo-small {
	color: #f4511e;
	font-size: 50px;
}
.logo {
	color: #f4511e;
	font-size: 200px;
}


/*
.carousel-control.right, .carousel-control.left {
	background-image: none;
	color: #f4511e;
}
.carousel-indicators li {
	border-color: #f4511e;
}
.carousel-indicators li.active {
	background-color: #f4511e;
}
.item h4 {
	font-size: 19px;
	line-height: 1.375em;
	font-weight: 400;
	font-style: italic;
	margin: 70px 0;
}
.item span {
	font-style: normal;
}
*/



/*
@media screen and (max-width: 768px) {
.col-sm-4 {
	text-align: center;
	margin: 25px 0;
}
.btn-lg {
	width: 100%;
	margin-bottom: 35px;
}
}

@media screen and (max-width: 480px) {
.logo {
	font-size: 150px;
}
}
*/




