/*-------------------------
	Simple reset
--------------------------*/
@keyframes zoominoutsinglefeatured {
    0% {
        transform: scale(1,1);
    }
    50% {
        transform: scale(1.2,1.2);
    }
    100% {
        transform: scale(1,1);
    }
}

*{
    margin:0;
    padding:0;
}


/*-------------------------
	General Styles
--------------------------*/


html{
    background:#000;
}

body{
    min-height: 600px;
    padding: 100px 0 50px;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.4);
    box-shadow:0 0 25px rgba(0,0,0,0.3) inset;
    height:100%;
}

a, a:visited {
    text-decoration:none;
    outline:none;
    color:#2098f5;
}

a:hover{
    text-decoration:underline;
}

section, footer{
    display: block;
}


/*----------------------------
	Styling the presentation
-----------------------------*/


#impress:not(.impress-not-supported) .step{
    opacity:0.4;
}

#impress .step{
    width:700px;
    height: 560px;
    position:relative;
    margin:0 auto;

    -moz-transition:1s opacity;
    -webkit-transition:1s opacity;
    transition:1s opacity;
}

#impress .step.active{
    opacity:1;
}

#impress h2{
    font: normal 44px/1.5 'PT Sans Narrow', sans-serif;
    color:#FFF;
    position:absolute;
    z-index:10;
}

#impress p{
    font: normal 18px/1.3 'Open Sans', sans-serif;
    color:#fff;
}

.arrow{
    animation: zoominoutsinglefeatured 1s infinite ;
    width:32px;
    height:54px;
    background:url('../img/arrows2.png') no-repeat;
    position:fixed;
    top:50%;
    margin-top:-27px;
    cursor:pointer;
    text-indent:-9999px;
    overflow:hidden;
    opacity:0.8;
    border:none !important;
    text-decoration:none !important;

    -moz-transition:0.2s opacity;
    -webkit-transition:0.2s opacity;
    transition:0.2s opacity;
}

.arrow:hover{
    opacity:1;
    animation: none;
}

#arrowLeft{
    left:45px;
}

#arrowRight{
    right:45px;
    background-position:top right;
}

/* Hide the arrows if impress is not supported */

#impress.impress-not-supported + .arrow,
#impress.impress-not-supported + .arrow + .arrow{
    display:none;
}


/*----------------------------
	Slide 1 - Intro
-----------------------------*/


#impress #intro{
    width: 80vw;
}

#intro h2{
    text-align: center;
    width: 100%;
}

#intro p{
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
    margin-top: 7vh;
}

#intro img{
    width:100%;
}


/*----------------------------
	Slide 2 - Simplicity
-----------------------------*/


#impress #simplicity{
    display: flex;
    align-items: center; /* align vertical */
    width: 80vw;
}

#simplicity h2{
    text-align: center;
    width: 40%;
}

#simplicity p{
    display: block;
    float:left;
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
    width: 40%;
}

#simplicity img{
    display: block;
    float:left;
    width:40%;
    margin-left: 10%;
}


/*----------------------------
	Slide 3 - Connect
-----------------------------*/

#impress #connect{
    width: 80vw;
    text-align: center;
}

#connect p{
    font-size: 20px;
    line-height: 1.6;
}

#connect img{
    width:42%;
}