/*big logo on home page*/

.home #masthead .wrap {
	text-align: center;
}

.home .custom-logo-link img {
  max-height: 250px;
}

.custom-header-media::before {
	background: rgba(0,0,0,0.6);
	height: 100% !important;
}

/*expand auspicios footer*/
.site-footer .widget-column.footer-widget-1 {
	width: 100%;
}

.auspicios-footer img{
	max-height:100px;
  width: auto;
}

/* flash animation*/

 @-webkit-keyframes flash {
    from   { background-color: cyan; }
    to { background-color: lightgreen; }
  }
  @-moz-keyframes flash {
    from   { background-color: cyan; }
    to { background-color: lightgreen; }
  }
  @keyframes flash {
    from   { background-color: cyan; }
    to { background-color: lightgreen; }
  }

a.menu-scroll-down {
 -webkit-animation: flash 2s infinite alternate;
  -moz-animation:    flash 2s infinite alternate;
  animation:         flash 2s infinite alternate;
}