/* header */
html {box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}
html {-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}
body, html {height:100%;margin:0;font:400 15px/1.8 "Lato",sans-serif;color:#777;}

/* sections */
.parallax-focal {
  position:relative;opacity:1;background-attachment:fixed;background-position:top center;background-repeat:no-repeat;
  background-size:cover;background-image:url("images/bg_focal.jpg");min-height:500px;}
.parallax-focal-sprites {
  position:relative;opacity:1;background-position:top 200px center;background-repeat:no-repeat;
  background-image:url("images/focal_sprites_distractions.png");min-height:500px;}
.parallax-distractions-pet-labyrinth {
  position:relative;opacity:1;background-position:top center;background-repeat:no-repeat;
  background-image:url("images/bg_distractions.jpg");}  
.parallax-distractions-shooting {
  position:relative;opacity:1;background-attachment:fixed;background-position:top center;background-repeat:no-repeat;
  background-size:cover;background-image:url("images/bg_distractions_shooting.jpg");}
.parallax-distractions-ys {
  position:relative;opacity:1;background-attachment:fixed;background-position:top center;background-repeat:no-repeat;
  background-size:cover;background-image:url("images/bg_distractions_ys.jpg");}
.parallax-distractions-mona {
  position:relative;opacity:1;background-attachment:fixed;background-position:top center;background-repeat:no-repeat;
  background-size:cover;background-size:cover;background-image:url("images/bg_distractions_mona.jpg");}
.section-footer {
  position:relative;opacity:1;background-color:#FFF;min-height:175px;}
.section-title {
  position:absolute;height:25px;width:100%;opacity:0.9;background-color:#333}

/* menu */
.menu {position:fixed;top:25px;width:100%;}

/* sections */
.left {right:40%;height:300px;width:70%;}
.right_text {left:50%;width:45%;}
.pet {width:47%;}
.labyrinth {width:47%;}
.floating-box-shooting {display:inline-block;width:48%;margin-right:0px;margin-top:0px;margin-bottom:0px;overflow:hidden;}
   
/* section distractions */
.floating-box {display:inline-block;margin-right:0px;margin-top:0px;margin-bottom:0px;overflow:hidden;}
.after-box {clear:left;}

/* fonts */
.font_focal {font-family:'Annie Use Your Telescope',cursive;color:#333;font-size:9em;line-height:1.2em;font-weight:normal;letter-spacing:0px;opacity:0.7;}
.font_title {font-family:'Annie Use Your Telescope',cursive;color:#fff;font-size:5em;font-weight:normal;letter-spacing:0px;opacity:1;}
.font_section_titles {font-family:'Annie Use Your Telescope',cursive;color:#333;font-size:6em;line-height:1em;font-weight:normal;letter-spacing:0px;opacity:0.5;}
.font_body {font-family:'Annie Use Your Telescope',cursive;color:#000;font-size:1.5em;line-height:1.5em;font-weight:bold;}
.font_distractions {font-family: 'Spectral SC', serif;color:#FFF;font-size:4em;font-weight:normal;}
.font_footer {font-family:tahoma;color:#666;font-size:0.7em;}

/* a link */
a:link {color:#06F;text-decoration:none;}
a:visited {color:#06F;text-decoration:none;}
a:hover {color:#F90;text-decoration:none;}

/* max widths */
.max600 {max-width:600px;margin:auto;border:}
.max1600 {max-width:1600px;margin:auto;border:}

/* spacer */
.spacer-5 {width:100%;height:5px;}
.spacer-10 {width:100%;height:10px;}
.spacer-15 {width:100%;height:15px;}
.spacer-20 {width:100%;height:20px;}
.spacer-25 {width:100%;height:25px;}
.spacer-40 {width:100%;height:40px;}
.spacer-50 {width:100%;height:50px;}
.spacer-100 {width:100%;height:100px;}
.spacer-150 {width:100%;height:150px;}
.spacer-250 {width:100%;height:250px;}
.spacer-1000 {width:100%;height:1000px;}

/* slide anim */
.slideanim {
    visibility:hidden;
    visibility:visible\9;/*For old IE browsers IE6-8 */
}
.slideanim.slide {                  
    visibility: visible;                  
    animation: slide 1s;
}
.slideanim::after {
    /* useful when its child elements are float:left; */
    content: "";
    display: table;
    clear: both;
}
@keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(50%);
    } 
    100% {
        opacity: 1;
        transform: translateY(0);
    } 
}