@charset "UTF-8";

/* bordemenu */
.bordemenu
{
  width: 100%;
  height: 5px;
  background-color:#fff;
  animation-direction:normal;
  animation: bbottom 3s infinite;
}

@keyframes bbottom 
{
	0% {background-color: white; left: 5px;}
    25% {background-color: #bf0811; left: 200px;}
}

/* Fin bordemenu */

/* footer */
a:hover 
{
	text-decoration: none;
    color: #BF0811;
}
ol li:hover 
{
	color: #BF0811;
}  

/* Fin footer */ 

/* button contacto */
.button 
{
	border-radius: 15px;
	background-color: #005279;
	border: none;
	color: #FFFFFF;
	text-align: center;
	font-weight: bold;
	/*font-size: 18px;*/
	padding: 3px;
	width: 170px;
	transition: all 0.5s;
	cursor: pointer;
	margin: 5px;
}

.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;
}

/* Fin button contacto */
/* Inicio Go To Top */
.go-top 
{
	position: fixed;
    bottom: 2em;
    right: 2em;
    text-decoration: none;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    font-size: 9px;
    padding: 1em;
    display: none;
}

.go-top:hover 
{
	background-color: rgba(0, 0, 0, 0.6);
}
      