/* 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;overflow-x:hidden;}

/* 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_index_01.jpg");min-height:950px;}
.parallax-intro {
  position:relative;opacity:1;background-attachment:fixed;background-position:top center;background-repeat:no-repeat;
  background-size:cover;background-image:url("images/bg_index_02.jpg");min-height:725px;}
.parallax-section-lore {
  position:relative;opacity:1;background-attachment:fixed;background-position:top center;background-repeat:no-repeat;
  background-size:cover;background-image:url("images/bg_index_03.jpg");min-height:400px;}
.parallax-section-gameplay {
  position:relative;opacity:1;background-attachment:fixed;background-position:top center;background-repeat:no-repeat;
  background-size:cover;background-image:url("images/bg_index_04.jpg");min-height:400px;}
.parallax-section-media {
  position:relative;opacity:1;background-attachment:fixed;background-position:top center;background-repeat:no-repeat;
  background-size:cover;background-image:url("images/bg_index_05.jpg");min-height:400px;}
.parallax-section-distractions {
  position:relative;opacity:1;background-attachment:fixed;background-position:top center;background-repeat:no-repeat;
  background-size:cover;background-image:url("images/bg_index_06.jpg");min-height:150px;padding-bottom:40px;}
.section-footer {
  position:relative;opacity:1;background-color:#FFF;min-height:175px;}
  
/* menu */
.menu {position:fixed;top:25px;width:100%;}

/* section 1 */
.pipiro {position:absolute;top:100px;left:15%;height:650px;width:500px;
background-image:url(images/index_pipiro.png);background-position:top 0px center;background-repeat:no-repeat;}
.pokkle {position:absolute;top:100px;right:10%;height:650px;width:500px;
background-image:url(images/index_pokkle.png);background-position:top 0px center;background-repeat:no-repeat;}
.logo {position:absolute;top:300px;width:100%;}
.grey_01 {position:absolute;top:750px;height:100px;width:100%;opacity:1;background-image:url("images/index_grey_01.png");}
.grey_02 {position:absolute;top:850px;height:100px;width:100%;opacity:1;background-image:url("images/index_grey_02.png");}
.index_store_links {position:absolute;top:-78px;width:100%;}

/* section 2 */
.intro {position:absolute;top:-50px;right:54%;height:800px;width:41%;}
.island {position:absolute;top:-60px;right:-25%;height:800px;width:100%;
background-image:url(images/index_island.png);background-position:top 0px center;background-repeat:no-repeat;}

/* section lore */
.lore {position:absolute;top:25px;right:50%;height:300px;width:50%;}
.lore_text {position:absolute;left:55%;width:40%;}

/* section gameplay */
.gameplay {position:absolute;top:25px;right:50%;height:300px;width:50%;}
.gameplay_text {position:absolute;left:55%;width:40%;}

/* section media */
.media {position:absolute;top:25px;right:50%;height:300px;width:50%;}
.media_text {position:absolute;left:55%;width:40%;}

/* section distractions */
.floating-box {display:inline-block;margin-right:0px;margin-top:0px;margin-bottom:0px;overflow:hidden;}
.after-box {clear:left;}

/* fonts */
.font_date {font-family:'Spectral SC', serif;color:#FFF;font-size:3em;font-weight:normal;}
.font_intro {font-family:'Annie Use Your Telescope',cursive;color:#000;font-size:1.3em;line-height:1.4em;letter-spacing:1px;font-weight:bold;}
.font_section_titles {font-family:'Annie Use Your Telescope',cursive;color:#333;font-size:6em;font-weight:normal;line-height:0.8em;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;}

/* 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-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);
    } 
}