/* ANIMATION
-------------------------------------------------------------------*/
a img{ opacity:1; transition:opacity .25s ease-in-out; -moz-transition:opacity .25s ease-in-out; -webkit-transition:opacity .25s ease-in-out; }
a:hover img{ opacity:0.5; }
a { -webkit-transition:.2s ease-in-out; -moz-transition:.2s ease-in-out; -o-transition:.2s ease-in-out; -ms-transition:.2s ease-in-out; transition:.2s ease-in-out;}
.drop a,
.flex-control-nav a,
a.select-opener{-webkit-transition:none; -moz-transition:none; -o-transition:none;}
/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.fade-in, body{
    opacity:0;  /* make things invisible upon start */
	filter: alpha(opacity=100);
  	zoom: 1;
    -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it once */
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;
 
    -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity:1)*/
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
 
    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}
.box1 { -webkit-animation-delay:.4s; -moz-animation-delay:.4s; animation-delay:.4s; }
.box2 { -webkit-animation-delay:.6s; -moz-animation-delay:.6s; animation-delay:.6s; }
.box3 { -webkit-animation-delay:.7s; -moz-animation-delay:.8s; animation-delay:.8s; }
.box4 { -webkit-animation-delay:1s; -moz-animation-delay:1s; animation-delay:1s; }
.box5 { -webkit-animation-delay:1.2s; -moz-animation-delay:1.2s; animation-delay:1.2s; }
.box6 { -webkit-animation-delay:1.2s; -moz-animation-delay:1.2s; animation-delay:1.2s; }
#featured-image .contact-form, 
#featured-image .caption,
.video-box .container{ -webkit-animation-delay:1.2s; -moz-animation-delay:1.2s; animation-delay:1.2s; }