@CHARSET "UTF-8";

.grow { transition: all .3s ease-in-out; }
.grow:hover { transform: scale(1.15); }

.sepia{
	filter: sepia(0%);
	-webkit-filter: sepia(0%);
}
.sepia:hover {
  filter: sepia(100%); /* IE6-9 */
  -webkit-filter: sepia(100%); /* Chrome 19+ & Safari 6+ */
}

div.grayscale:hover {
  filter: sepia(100%); /* IE6-9 */
  -webkit-filter: sepia(100%); /* Chrome 19+ & Safari 6+ */
}

div.grayscale {
  filter: sepia(0%);
  -webkit-filter: sepia(0%);
}

.slider-1-texto {
	-webkit-animation-name: slider-1-texto;
	-webkit-animation-duration: 5s;
	-webkit-animation-fill-mode: forwards;
	animation-name: slider-1-texto;
	animation-duration: 5s;
	animation-fill-mode: forwards;
}

@-webkit-keyframes slider-1-texto { 
	from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slider-1-texto {
	from { opacity: 0; }
    to   { opacity: 1; }
}

.hideme{
    opacity:0;
}

.fadeIn{
	-webkit-animation-name: animat_show;
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-name: animat_show;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}
@keyframes animat_show{
	0%{opacity:0}
    100%{opacity:1}
}
@-webkit-keyframes animat_show{
	0%{opacity:0}
    100%{opacity:1}
}
