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


.animated_header:before {
  -webkit-animation: no-transform 2s .5s cubic-bezier(0, 0.5, 0, 1) forwards;
          animation: no-transform 2s .5s cubic-bezier(0, 0.5, 0, 1) forwards;
  background: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.8)),
              url(https://www.midea.es/wp-content/uploads/2018/06/background_header_bajo_consumo.jpg) no-repeat bottom;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.8)),
               url(https://www.midea.es/wp-content/uploads/2018/06/background_header_bajo_consumo.jpg) no-repeat bottom;
  background-size: cover;
    bottom: 0;
  content: "";
    left: 0;
  opacity: 0;
  position: absolute;
    right: 0;
    top: 0;
  -webkit-transform: translateY(-4rem);
          transform: translateY(-4rem);
  z-index: -1;
}

.animation_aire_header{
	animation: a_drop_down 4s 3s cubic-bezier(0,.94,0,1.01) forwards;
	opacity: 0;
}


.animated-fadeup{
	animation: a_pop_up_fade 2s 0.7s cubic-bezier(0,.78,0,1.24) forwards;
	opacity: 0;
}


.animated_lef_rigth{
	animation: a_move_left_right 3s 4.5s cubic-bezier(0,.83,0,.97) forwards;
	opacity: 0;
}

@-webkit-keyframes no-transform {
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes a_drop_down{
	0%{
		transform: translateY(-5rem);
		
		
	}
	100%{
		transform: none;
		opacity: 1;
	}
}

@keyframes a_pop_up_fade{
	0%{
		transform: scale(0);
		opacity: 0;
	}
	
	100%{
		transform: scale(1);
		opacity: 1;
	}
	
}


@keyframes a_move_left_right{
	0%{
		transform:translateX(25rem);
		opacity: 0;
	}
	
	100%{
		transform:translateX(0);
		opacity: 1;
	}
	
}

