/*
Theme Name: H Create
Theme URI: http://www.hcreate.com.au/
Author: Hannah Tedder
Author URI: http://www.hcreate.com.au/
License: Copyright 2015

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/*animations*/

/******************
* Bounce in right *
*******************/


.animated { 
    -webkit-animation-duration: 1s; 
    animation-duration: 1s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
} 
.slow{
     -webkit-animation-duration: 1.5s; 
    animation-duration: 1.5s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
}
.slower{
     -webkit-animation-duration: 2s; 
    animation-duration: 2s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
}
.slowest{
     -webkit-animation-duration: 3s; 
    animation-duration: 3s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
}

/* Added by Andy Meetan */
.delay-250 {
    -webkit-animation-delay:0.25s;
    -moz-animation-delay:0.25s;
    -o-animation-delay:0.25s;
    animation-delay:0.25s;
}
.delay-500 {
    -webkit-animation-delay:0.5s;
    -moz-animation-delay:0.5s;
    -o-animation-delay:0.5s;
    animation-delay:0.5s;
}
.delay-750 {
    -webkit-animation-delay:0.75s;
    -moz-animation-delay:0.75s;
    -o-animation-delay:0.75s;
    animation-delay:0.75s;
}
.delay-1000 {
    -webkit-animation-delay:1.0s;
    -moz-animation-delay:1.0s;
    -o-animation-delay:1.0s;
    animation-delay:1.0s;
}
.delay-1250 {
    -webkit-animation-delay:1.25s;
    -moz-animation-delay:1.25s;
    -o-animation-delay:1.25s;
    animation-delay:1.25s;
}
.delay-1500 {
    -webkit-animation-delay:1.5s;
    -moz-animation-delay:1.5s;
    -o-animation-delay:1.5s;
    animation-delay:1.5s;
}
.delay-1750 {
    -webkit-animation-delay:1.75s;
    -moz-animation-delay:1.75s;
    -o-animation-delay:1.75s;
    animation-delay:1.75s;
}
.delay-2000 {
    -webkit-animation-delay:2.0s;
    -moz-animation-delay:2.0s;
    -o-animation-delay:2.0s;
    animation-delay:2.0s;
}
.delay-2500 {
    -webkit-animation-delay:2.5s;
    -moz-animation-delay:2.5s;
    -o-animation-delay:2.5s;
    animation-delay:2.5s;
}
.delay-2000 {
    -webkit-animation-delay:2.0s;
    -moz-animation-delay:2.0s;
    -o-animation-delay:2.0s;
    animation-delay:2.0s;
}
.delay-2500 {
    -webkit-animation-delay:2.5s;
    -moz-animation-delay:2.5s;
    -o-animation-delay:2.5s;
    animation-delay:2.5s;
}
.delay-3000 {
    -webkit-animation-delay:3.0s;
    -moz-animation-delay:3.0s;
    -o-animation-delay:3.0s;
    animation-delay:3.0s;
}
.delay-3500 {
    -webkit-animation-delay:3.5s;
    -moz-animation-delay:3.5s;
    -o-animation-delay:3.5s;
    animation-delay:3.5s;
}

.bounceInRight, .bounceInLeft, .bounceInUp, .bounceInDown{
    opacity:0;
    -webkit-transform: translateX(400px); 
    transform: translateX(400px); 
}
.fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown{
    opacity:0;
    -webkit-transform: translateX(400px); 
    transform: translateX(400px); 
}

.flipInX, .flipInY, .rotateIn, .rotateInUpLeft, .rotateInUpRight, .rotateInDownLeft, .rotateDownUpRight, .rollIn{
    opacity:0;
}

.lightSpeedInRight, .lightSpeedInLeft{
    opacity:0;
    -webkit-transform: translateX(400px); 
    transform: translateX(400px); 
}

/***********
* bounceIn *
************/
@-webkit-keyframes bounceIn { 
    0% { 
        opacity: 0; 
        -webkit-transform: scale(.3); 
    } 

    50% { 
        opacity: 1; 
        -webkit-transform: scale(1.05); 
    } 

    70% { 
        -webkit-transform: scale(.9); 
    } 

    100% { 
         -webkit-transform: scale(1); 
    } 
} 

@keyframes bounceIn { 
    0% { 
        opacity: 0; 
        transform: scale(.3); 
    } 

    50% { 
        opacity: 1; 
        transform: scale(1.05); 
    } 

    70% { 
        transform: scale(.9); 
    } 

    100% { 
        transform: scale(1); 
    } 
} 

.bounceIn.go { 
    -webkit-animation-name: bounceIn; 
    animation-name: bounceIn; 
}

/****************
* bounceInRight *
****************/

@-webkit-keyframes bounceInRight { 
    0% { 
        opacity: 0; 
        
        -webkit-transform: translateX(400px); 
    } 
    60% { 
        
        -webkit-transform: translateX(-30px); 
    } 
    80% { 
        -webkit-transform: translateX(10px); 
    } 
    100% {
    opacity: 1;
     
        -webkit-transform: translateX(0); 
    } 
} 

@keyframes bounceInRight { 
    0% { 
        opacity: 0; 
        
        transform: translateX(400px); 
    } 
    60% { 
        
        transform: translateX(-30px); 
    } 
    80% { 
        transform: translateX(10px); 
    } 
    100% {
    opacity: 1;
     
        transform: translateX(0); 
    } 
} 


.bounceInRight.go { 
    -webkit-animation-name: bounceInRight; 
    animation-name: bounceInRight; 
}

/******************
* Bounce in left *
*******************/

@-webkit-keyframes bounceInLeft { 
    0% { 
        opacity: 0; 
        
        -webkit-transform: translateX(-400px); 
    } 
    60% { 
       
        -webkit-transform: translateX(30px); 
    } 
    80% { 
        -webkit-transform: translateX(-10px); 
    } 
    100% {
        opacity: 1;
         
        -webkit-transform: translateX(0); 
    } 
} 

@keyframes bounceInLeft { 
    0% { 
        opacity: 0; 
        
        transform: translateX(-400px); 
    } 
    60% { 
       
        transform: translateX(30px); 
    } 
    80% { 
        transform: translateX(-10px); 
    } 
    100% {
        opacity: 1;
         
        transform: translateX(0); 
    } 
} 

.bounceInLeft.go { 
    -webkit-animation-name: bounceInLeft; 
    animation-name: bounceInLeft; 
}

/******************
* Bounce in up *
*******************/

@-webkit-keyframes bounceInUp { 
    0% { 
        opacity: 0; 
        
        -webkit-transform: translateY(400px); 
    } 
    60% { 
       
        -webkit-transform: translateY(-30px); 
    } 
    80% { 
        -webkit-transform: translateY(10px); 
    } 
    100% {
        opacity: 1;
         
        -webkit-transform: translateY(0); 
    } 
} 

@keyframes bounceInUp { 
    0% { 
        opacity: 0; 
        
        transform: translateY(400px); 
    } 
    60% { 
       
        transform: translateY(-30px); 
    } 
    80% { 
        transform: translateY(10px); 
    } 
    100% {
        opacity: 1;
         
        transform: translateY(0); 
    } 
} 

.bounceInUp.go { 
    -webkit-animation-name: bounceInUp; 
    animation-name: bounceInUp; 
}


/******************
* Bounce in down *
*******************/

@-webkit-keyframes bounceInDown { 
    0% { 
        opacity: 0; 
        
        -webkit-transform: translateY(-400px); 
    } 
    60% { 
       
        -webkit-transform: translateY(30px); 
    } 
    80% { 
        -webkit-transform: translateY(-10px); 
    } 
    100% {
        opacity: 1;
         
        -webkit-transform: translateY(0); 
    } 
} 

@keyframes bounceInDown { 
    0% { 
        opacity: 0; 
        
        transform: translateY(-400px); 
    } 
    60% { 
       
        transform: translateY(30px); 
    } 
    80% { 
        transform: translateY(-10px); 
    } 
    100% {
        opacity: 1;
         
        transform: translateY(0); 
    } 
} 

.bounceInDown.go { 
    -webkit-animation-name: bounceInDown; 
    animation-name: bounceInDown; 
}


/**********
* Fade In *
**********/ 
@-webkit-keyframes fadeIn { 
    0% {opacity: 0;} 
    100% {opacity: 1;
        display:block;} 
} 
@keyframes fadeIn { 
    0% {opacity: 0;} 
    100% {opacity: 1;
        display:block;} 
}
.fadeIn{
    opacity:0;
}
.fadeIn.go { 
    -webkit-animation-name: fadeIn; 
    animation-name: fadeIn; 
}

/**********
* Grow in *
***********/

@-webkit-keyframes growIn { 
    0% { 
        -webkit-transform: scale(0.2); 
        opacity:0;
    } 
    50% { 
        -webkit-transform: scale(1.2); 
        
    } 
    100% { 
        -webkit-transform: scale(1); 
        opacity:1;
    } 
} 
@keyframes growIn { 
    0% { 
        transform: scale(0.2); 
        opacity:0;
    } 
    50% { 
        transform: scale(1.2); 
        
    } 
    100% { 
        transform: scale(1); 
        opacity:1;
    } 
} 
.growIn { 

    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity:0;
}
.growIn.go{
    -webkit-animation-name: growIn; 
    animation-name: growIn; 
}

/********
* Shake *
********/
@-webkit-keyframes shake { 
    0%, 100% {-webkit-transform: translateX(0);} 
    10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);} 
    20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);} 
} 
@keyframes shake { 
    0%, 100% {transform: translateX(0);} 
    10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);} 
    20%, 40%, 60%, 80% {transform: translateX(10px);} 
} 
.shake.go { 
    -webkit-animation-name: shake; 
    animation-name: shake; 
}

/********
* ShakeUp *
********/
@-webkit-keyframes shakeUp { 
    0%, 100% {-webkit-transform: translateX(0);} 
    10%, 30%, 50%, 70%, 90% {-webkit-transform: translateY(-10px);} 
    20%, 40%, 60%, 80% {-webkit-transform: translateY(10px);} 
} 
@keyframes shakeUp { 
    0%, 100% {transform: translateY(0);} 
    10%, 30%, 50%, 70%, 90% {transform: translateY(-10px);} 
    20%, 40%, 60%, 80% {transform: translateY(10px);} 
} 
.shakeUp.go { 
    -webkit-animation-name: shakeUp; 
    animation-name: shakeUp; 
}

/*************
* FadeInLeft *
*************/

@-webkit-keyframes fadeInLeft { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateX(-400px); 
    } 
    50%{
       opacity: 0.3; 
    }
    100% { 
        opacity: 1; 
        -webkit-transform: translateX(0); 
    } 
} 
@keyframes fadeInLeft { 
    0% { 
        opacity: 0; 
        transform: translateX(-400px); 
    } 
    50%{
       opacity: 0.3; 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    } 
} 
.fadeInLeft{ 
    opacity: 0; 
    -webkit-transform: translateX(-400px); 
    transform: translateX(-400px);
}
.fadeInLeft.go { 
    -webkit-animation-name: fadeInLeft; 
    animation-name: fadeInLeft; 
}


/*************
* FadeInRight *
*************/

@-webkit-keyframes fadeInRight { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateX(400px); 
    } 
    50%{
       opacity: 0.3; 
    }
    100% { 
        opacity: 1; 
        -webkit-transform: translateX(0); 
    } 
} 
@keyframes fadeInRight { 
    0% { 
        opacity: 0; 
        transform: translateX(400px); 
    } 
    50%{
       opacity: 0.3; 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    } 
} 
.fadeInRight{ 
    opacity: 0; 
    -webkit-transform: translateX(400px); 
    transform: translateX(400px);
}
.fadeInRight.go { 
    -webkit-animation-name: fadeInRight; 
    animation-name: fadeInRight; 
}

/*************
* FadeInUp *
*************/

@-webkit-keyframes fadeInUp { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateY(400px); 
    } 
    50%{
       opacity: 0.3; 
    }
    100% { 
        opacity: 1; 
        -webkit-transform: translateY(0); 
    } 
} 
@keyframes fadeInUp { 
    0% { 
        opacity: 0; 
        transform: translateY(400px); 
    } 
    50%{
       opacity: 0.3; 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    } 
} 
.fadeInUp{ 
    opacity: 0; 
    -webkit-transform: translateY(400px); 
    transform: translateY(400px);
}
.fadeInUp.go { 
    -webkit-animation-name: fadeInUp; 
    animation-name: fadeInUp; 
}

/*************
* FadeInDown *
*************/

@-webkit-keyframes fadeInDown { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateY(-400px); 
    } 
    50%{
       opacity: 0.3; 
    }
    100% { 
        opacity: 1; 
        -webkit-transform: translateY(0); 
    } 
} 
@keyframes fadeInDown { 
    0% { 
        opacity: 0; 
        transform: translateY(-400px); 
    } 
    50%{
       opacity: 0.3; 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    } 
} 
.fadeInDown{ 
    opacity: 0; 
    -webkit-transform: translateY(-400px); 
    transform: translateY(-400px);
}
.fadeInDown.go { 
    -webkit-animation-name: fadeInDown; 
    animation-name: fadeInDown; 
}

/*****************
* rotateIn *
*****************/
@-webkit-keyframes rotateIn { 
    0% { 
        -webkit-transform-origin: center center; 
        -webkit-transform: rotate(-200deg); 
        opacity: 0; 
    } 
    100% { 
        -webkit-transform-origin: center center; 
        -webkit-transform: rotate(0); 
        opacity: 1; 
    } 
} 
@keyframes rotateIn { 
    0% { 
        transform-origin: center center; 
        transform: rotate(-200deg); 
        opacity: 0; 
    } 
    100% { 
        transform-origin: center center; 
        transform: rotate(0); 
        opacity: 1; 
    } 
} 
.rotateIn.go { 
    -webkit-animation-name: rotateIn; 
    animation-name: rotateIn; 
}

/*****************
* rotateInUpLeft *
*****************/

@-webkit-keyframes rotateInUpLeft { 
    0% { 
        -webkit-transform-origin: left bottom; 
        -webkit-transform: rotate(90deg); 
        opacity: 0; 
    } 
    100% { 
        -webkit-transform-origin: left bottom; 
        -webkit-transform: rotate(0); 
        opacity: 1; 
    } 
} 
@keyframes rotateInUpLeft { 
    0% { 
        transform-origin: left bottom; 
        transform: rotate(90deg); 
        opacity: 0; 
    } 
    100% { 
        transform-origin: left bottom; 
        transform: rotate(0); 
        opacity: 1; 
    } 
} 
.rotateInUpLeft.go { 
    -webkit-animation-name: rotateInUpLeft; 
    animation-name: rotateInUpLeft; 
}

/*******************
* rotateInDownLeft *
*******************/
@-webkit-keyframes rotateInDownLeft { 
    0% { 
        -webkit-transform-origin: left bottom; 
        -webkit-transform: rotate(-90deg); 
        opacity: 0; 
    } 
    100% { 
        -webkit-transform-origin: left bottom; 
        -webkit-transform: rotate(0); 
        opacity: 1; 
    } 
} 
@keyframes rotateInDownLeft { 
    0% { 
        transform-origin: left bottom; 
        transform: rotate(-90deg); 
        opacity: 0; 
    } 
    100% { 
        transform-origin: left bottom; 
        transform: rotate(0); 
        opacity: 1; 
    } 
} 
.rotateInDownLeft.go { 
    -webkit-animation-name: rotateInDownLeft; 
    animation-name: rotateInDownLeft; 
}

/******************
* rotateInUpRight *
*******************/

@-webkit-keyframes rotateInUpRight { 
    0% { 
        -webkit-transform-origin: right bottom; 
        -webkit-transform: rotate(-90deg); 
        opacity: 0; 
    } 
    100% { 
        -webkit-transform-origin: right bottom; 
        -webkit-transform: rotate(0); 
        opacity: 1; 
    } 
} 
@keyframes rotateInUpRight { 
    0% { 
        transform-origin: right bottom; 
        transform: rotate(-90deg); 
        opacity: 0; 
    } 
    100% { 
        transform-origin: right bottom; 
        transform: rotate(0); 
        opacity: 1; 
    } 
} 
.rotateInUpRight.go { 
    -webkit-animation-name: rotateInUpRight; 
    animation-name: rotateInUpRight; 
}

/********************
* rotateInDownRight *
********************/

@-webkit-keyframes rotateInDownRight { 
    0% { 
        -webkit-transform-origin: right bottom; 
        -webkit-transform: rotate(90deg); 
        opacity: 0; 
    } 
    100% { 
        -webkit-transform-origin: right bottom; 
        -webkit-transform: rotate(0); 
        opacity: 1; 
    } 
} 
@keyframes rotateInDownRight { 
    0% { 
        transform-origin: right bottom; 
        transform: rotate(90deg); 
        opacity: 0; 
    } 
    100% { 
        transform-origin: right bottom; 
        transform: rotate(0); 
        opacity: 1; 
    } 
} 
.rotateInDownRight.go { 
    -webkit-animation-name: rotateInDownRight; 
    animation-name: rotateInDownRight; 
}

/*********
* rollIn *
**********/

@-webkit-keyframes rollIn { 
    0% { opacity: 0; -webkit-transform: translateX(-100%) rotate(-120deg); } 
    100% { opacity: 1; -webkit-transform: translateX(0px) rotate(0deg); } 
} 
@keyframes rollIn { 
    0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); } 
    100% { opacity: 1; transform: translateX(0px) rotate(0deg); } 
} 
.rollIn.go { 
    -webkit-animation-name: rollIn; 
    animation-name: rollIn; 
}

/*********
* wiggle *
**********/

@-webkit-keyframes wiggle { 
    0% { -webkit-transform: skewX(9deg); } 
    10% { -webkit-transform: skewX(-8deg); } 
    20% { -webkit-transform: skewX(7deg); } 
    30% { -webkit-transform: skewX(-6deg); } 
    40% { -webkit-transform: skewX(5deg); } 
    50% { -webkit-transform: skewX(-4deg); } 
    60% { -webkit-transform: skewX(3deg); } 
    70% { -webkit-transform: skewX(-2deg); } 
    80% { -webkit-transform: skewX(1deg); } 
    90% { -webkit-transform: skewX(0deg); } 
    100% { -webkit-transform: skewX(0deg); } 
} 
@keyframes wiggle { 
    0% { transform: skewX(9deg); } 
    10% { transform: skewX(-8deg); } 
    20% { transform: skewX(7deg); } 
    30% { transform: skewX(-6deg); } 
    40% { transform: skewX(5deg); } 
    50% { transform: skewX(-4deg); } 
    60% { transform: skewX(3deg); } 
    70% { transform: skewX(-2deg); } 
    80% { transform: skewX(1deg); } 
    90% { transform: skewX(0deg); } 
    100% { transform: skewX(0deg); } 
} 
.wiggle.go { 
    -webkit-animation-name: wiggle; 
    animation-name: wiggle; 
    -webkit-animation-timing-function: ease-in; 
    animation-timing-function: ease-in; 
} 

/********
* swing *
*********/

@-webkit-keyframes swing { 
    20%, 40%, 60%, 80%, 100% { -webkit-transform-origin: top center; } 
    20% { -webkit-transform: rotate(15deg); } 
    40% { -webkit-transform: rotate(-10deg); } 
    60% { -webkit-transform: rotate(5deg); } 
    80% { -webkit-transform: rotate(-5deg); } 
    100% { -webkit-transform: rotate(0deg); } 
} 
@keyframes swing { 
    20% { transform: rotate(15deg); } 
    40% { transform: rotate(-10deg); } 
    60% { transform: rotate(5deg); } 
    80% { transform: rotate(-5deg); } 
    100% { transform: rotate(0deg); } 
} 
.swing.go { 
    -webkit-transform-origin: top center; 
    transform-origin: top center; 
    -webkit-animation-name: swing; 
    animation-name: swing; 
}

/*******
* tada *
********/

@-webkit-keyframes tada { 
    0% {-webkit-transform: scale(1);} 
    10%, 20% {-webkit-transform: scale(0.9) rotate(-3deg);} 
    30%, 50%, 70%, 90% {-webkit-transform: scale(1.1) rotate(3deg);} 
    40%, 60%, 80% {-webkit-transform: scale(1.1) rotate(-3deg);} 
    100% {-webkit-transform: scale(1) rotate(0);} 
} 
@keyframes tada { 
    0% {transform: scale(1);} 
    10%, 20% {transform: scale(0.9) rotate(-3deg);} 
    30%, 50%, 70%, 90% {transform: scale(1.1) rotate(3deg);} 
    40%, 60%, 80% {transform: scale(1.1) rotate(-3deg);} 
    100% {transform: scale(1) rotate(0);} 
} 
.tada.go { 
    -webkit-animation-name: tada; 
    animation-name: tada; 
}

/*********
* wobble *
**********/

@-webkit-keyframes wobble { 
  0% { -webkit-transform: translateX(0%); } 
  15% { -webkit-transform: translateX(-25%) rotate(-5deg); } 
  30% { -webkit-transform: translateX(20%) rotate(3deg); } 
  45% { -webkit-transform: translateX(-15%) rotate(-3deg); } 
  60% { -webkit-transform: translateX(10%) rotate(2deg); } 
  75% { -webkit-transform: translateX(-5%) rotate(-1deg); } 
  100% { -webkit-transform: translateX(0%); } 
} 
@keyframes wobble { 
  0% { transform: translateX(0%); } 
  15% { transform: translateX(-25%) rotate(-5deg); } 
  30% { transform: translateX(20%) rotate(3deg); } 
  45% { transform: translateX(-15%) rotate(-3deg); } 
  60% { transform: translateX(10%) rotate(2deg); } 
  75% { transform: translateX(-5%) rotate(-1deg); } 
  100% { transform: translateX(0%); } 
} 
.wobble.go { 
    -webkit-animation-name: wobble; 
    animation-name: wobble; 
}

/********
* pulse *
*********/

@-webkit-keyframes pulse { 
    0% { -webkit-transform: scale(1); } 
    50% { -webkit-transform: scale(1.1); } 
    100% { -webkit-transform: scale(1); } 
} 
@keyframes pulse { 
    0% { transform: scale(1); } 
    50% { transform: scale(1.1); } 
    100% { transform: scale(1); } 
} 
.pulse.go { 
    -webkit-animation-name: pulse; 
    animation-name: pulse; 
}

/***************
* lightSpeedInRight *
****************/
@-webkit-keyframes lightSpeedInRight { 
   0% { -webkit-transform: translateX(100%) skewX(-30deg); opacity: 0; } 
    60% { -webkit-transform: translateX(-20%) skewX(30deg); opacity: 1; } 
    80% { -webkit-transform: translateX(0%) skewX(-15deg); opacity: 1; } 
    100% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; } 
} 
@keyframes lightSpeedInRight { 
    0% { transform: translateX(100%) skewX(-30deg); opacity: 0; } 
    60% { transform: translateX(-20%) skewX(30deg); opacity: 1; } 
    80% { transform: translateX(0%) skewX(-15deg); opacity: 1; } 
    100% { transform: translateX(0%) skewX(0deg); opacity: 1; } 
} 
.lightSpeedInRight.go { 
    -webkit-animation-name: lightSpeedInRight; 
    animation-name: lightSpeedInRight; 
    -webkit-animation-timing-function: ease-out; 
    animation-timing-function: ease-out; 
} 

/***************
* lightSpeedInLeft *
****************/
@-webkit-keyframes lightSpeedInLeft { 
   0% { -webkit-transform: translateX(-100%) skewX(30deg); opacity: 0; } 
    60% { -webkit-transform: translateX(20%) skewX(-30deg); opacity: 1; } 
    80% { -webkit-transform: translateX(0%) skewX(15deg); opacity: 1; } 
    100% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; } 
} 
@keyframes lightSpeedInLeft { 
    0% { transform: translateX(-100%) skewX(30deg); opacity: 0; } 
    60% { transform: translateX(20%) skewX(-30deg); opacity: 1; } 
    80% { transform: translateX(0%) skewX(15deg); opacity: 1; } 
    100% { transform: translateX(0%) skewX(0deg); opacity: 1; } 
} 
.lightSpeedInLeft.go { 
    -webkit-animation-name: lightSpeedInLeft; 
    animation-name: lightSpeedInLeft; 
    -webkit-animation-timing-function: ease-out; 
    animation-timing-function: ease-out; 
} 


/*******
* Flip *
*******/
@-webkit-keyframes flip { 
    0% { 
        -webkit-transform: perspective(400px) rotateY(0); 
        -webkit-animation-timing-function: ease-out; 
    } 
    40% { 
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg); 
        -webkit-animation-timing-function: ease-out; 
    } 
    50% { 
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); 
        -webkit-animation-timing-function: ease-in; 
    } 
    80% { 
        -webkit-transform: perspective(400px) rotateY(360deg) scale(.95); 
        -webkit-animation-timing-function: ease-in; 
    } 
    100% { 
        -webkit-transform: perspective(400px) scale(1); 
        -webkit-animation-timing-function: ease-in; 
    } 
}
@keyframes flip { 
    0% { 
        transform: perspective(400px) rotateY(0); 
        animation-timing-function: ease-out; 
    } 
    40% { 
        transform: perspective(400px) translateZ(150px) rotateY(170deg); 
        animation-timing-function: ease-out; 
    } 
    50% { 
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); 
        animation-timing-function: ease-in; 
    } 
    80% { 
        transform: perspective(400px) rotateY(360deg) scale(.95); 
        animation-timing-function: ease-in; 
    } 
    100% { 
        transform: perspective(400px) scale(1); 
        animation-timing-function: ease-in; 
    } 
} 
.flip.go { 
    -webkit-backface-visibility: visible !important; 
    -webkit-animation-name: flip; 
    backface-visibility: visible !important; 
    animation-name: flip; 
}

/**********
* flipInX *
**********/
@-webkit-keyframes flipInX { 
    0% { 
        -webkit-transform: perspective(400px) rotateX(90deg); 
        opacity: 0; 
    } 
    40% { 
        -webkit-transform: perspective(400px) rotateX(-10deg); 
    } 
    70% { 
        -webkit-transform: perspective(400px) rotateX(10deg); 
    } 
    100% { 
        -webkit-transform: perspective(400px) rotateX(0deg); 
        opacity: 1; 
    } 
} 
@keyframes flipInX { 
    0% { 
        transform: perspective(400px) rotateX(90deg); 
        opacity: 0; 
    } 
    40% { 
        transform: perspective(400px) rotateX(-10deg); 
    } 
    70% { 
        transform: perspective(400px) rotateX(10deg); 
    } 
    100% { 
        transform: perspective(400px) rotateX(0deg); 
        opacity: 1; 
    } 
} 
.flipInX.go { 
    -webkit-backface-visibility: visible !important; 
    -webkit-animation-name: flipInX; 
    backface-visibility: visible !important; 
    animation-name: flipInX; 
}

/**********
* flipInY *
**********/

@-webkit-keyframes flipInY { 
    0% { 
        -webkit-transform: perspective(400px) rotateY(90deg); 
        opacity: 0; 
    } 
    40% { 
        -webkit-transform: perspective(400px) rotateY(-10deg); 
    } 
    70% { 
        -webkit-transform: perspective(400px) rotateY(10deg); 
    } 
    100% { 
        -webkit-transform: perspective(400px) rotateY(0deg); 
        opacity: 1; 
    } 
} 
@keyframes flipInY { 
    0% { 
        transform: perspective(400px) rotateY(90deg); 
        opacity: 0; 
    } 
    40% { 
        transform: perspective(400px) rotateY(-10deg); 
    } 
    70% { 
        transform: perspective(400px) rotateY(10deg); 
    } 
    100% { 
        transform: perspective(400px) rotateY(0deg); 
        opacity: 1; 
    } 
} 
.flipInY.go { 
    -webkit-backface-visibility: visible !important; 
    -webkit-animation-name: flipInY; 
    backface-visibility: visible !important; 
    animation-name: flipInY; 
}

/*****************
* Out animations *
*****************/


/************
* bounceOut *
*************/
@-webkit-keyframes bounceOut { 
    0% { 
        -webkit-transform: scale(1); 
    } 
    25% { 
        -webkit-transform: scale(.95); 
    } 
    50% { 
        opacity: 1; 
        -webkit-transform: scale(1.1); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: scale(.3); 
    } 
} 
@keyframes bounceOut { 
    0% { 
        transform: scale(1); 
    } 
    25% { 
        transform: scale(.95); 
    } 
    50% { 
        opacity: 1; 
        transform: scale(1.1); 
    } 
    100% { 
        opacity: 0; 
        transform: scale(.3); 
    } 
} 
.bounceOut.goAway { 
    -webkit-animation-name: bounceOut; 
    animation-name: bounceOut; 
}

/************
* bounceOutUp *
*************/
@-webkit-keyframes bounceOutUp { 
    0% { 
        -webkit-transform: translateY(0); 
    } 
    20% { 
        opacity: 1; 
        -webkit-transform: translateY(20px); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: translateY(-2000px); 
    } 
} 
@keyframes bounceOutUp { 
    0% { 
        transform: translateY(0); 
    } 
    20% { 
        opacity: 1; 
        transform: translateY(20px); 
    } 
    100% { 
        opacity: 0; 
        transform: translateY(-2000px); 
    } 
} 
.bounceOutUp.goAway { 
    -webkit-animation-name: bounceOutUp; 
    animation-name: bounceOutUp; 
}

/************
* bounceOutDown *
*************/
@-webkit-keyframes bounceOutDown { 
    0% { 
        -webkit-transform: translateY(0); 
    } 
    20% { 
        opacity: 1; 
        -webkit-transform: translateY(-20px); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: translateY(2000px); 
    } 
} 
@keyframes bounceOutDown { 
    0% { 
        transform: translateY(0); 
    } 
    20% { 
        opacity: 1; 
        transform: translateY(-20px); 
    } 
    100% { 
        opacity: 0; 
        transform: translateY(2000px); 
    } 
} 
.bounceOutDown.goAway { 
    -webkit-animation-name: bounceOutDown; 
    animation-name: bounceOutDown; 
}


/************
* bounceOutLeft *
*************/
@-webkit-keyframes bounceOutLeft { 
    0% { 
        -webkit-transform: translateX(0); 
    } 
    20% { 
        opacity: 1; 
        -webkit-transform: translateX(20px); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: translateX(-2000px); 
    } 
} 
@keyframes bounceOutLeft { 
    0% { 
        transform: translateX(0); 
    } 
    20% { 
        opacity: 1; 
        transform: translateX(20px); 
    } 
    100% { 
        opacity: 0; 
        transform: translateX(-2000px); 
    } 
} 
.bounceOutLeft.goAway { 
    -webkit-animation-name: bounceOutLeft; 
    animation-name: bounceOutLeft; 
}

/************
* bounceOutRight *
*************/
@-webkit-keyframes bounceOutRight { 
    0% { 
        -webkit-transform: translateX(0); 
    } 
    20% { 
        opacity: 1; 
        -webkit-transform: translateX(-20px); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: translateX(2000px); 
    } 
} 
@keyframes bounceOutRight { 
    0% { 
        transform: translateX(0); 
    } 
    20% { 
        opacity: 1; 
        transform: translateX(-20px); 
    } 
    100% { 
        opacity: 0; 
        transform: translateX(2000px); 
    } 
} 
.bounceOutRight.goAway { 
    -webkit-animation-name: bounceOutRight; 
    animation-name: bounceOutRight; 
}

/************
* fadeOut *
*************/
@-webkit-keyframes fadeOut { 
    0% {opacity: 1;} 
    100% {opacity: 0;} 
} 
@keyframes fadeOut { 
    0% {opacity: 1;} 
    100% {opacity: 0;} 
} 
.fadeOut.goAway { 
    -webkit-animation-name: fadeOut; 
    animation-name: fadeOut; 
}

/************
* fadeOutUp *
*************/
@-webkit-keyframes fadeOutUp { 
    0% { 
        opacity: 1; 
        -webkit-transform: translateY(0); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: translateY(-2000px); 
    } 
} 
@keyframes fadeOutUp { 
    0% { 
        opacity: 1; 
        transform: translateY(0); 
    } 
    100% { 
        opacity: 0; 
        transform: translateY(-2000px); 
    } 
} 
.fadeOutUp.goAway { 
    -webkit-animation-name: fadeOutUp; 
    animation-name: fadeOutUp; 
}

/************
* fadeOutDown *
*************/
@-webkit-keyframes fadeOutDown { 
    0% { 
        opacity: 1; 
        -webkit-transform: translateY(0); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: translateY(2000px); 
    } 
} 
@keyframes fadeOutDown { 
    0% { 
        opacity: 1; 
        transform: translateY(0); 
    } 
    100% { 
        opacity: 0; 
        transform: translateY(2000px); 
    } 
} 
.fadeOutDown.goAway { 
    -webkit-animation-name: fadeOutDown; 
    animation-name: fadeOutDown; 
}

/************
* fadeOutLeft *
*************/
@-webkit-keyframes fadeOutLeft { 
    0% { 
        opacity: 1; 
        -webkit-transform: translateX(0); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: translateX(-2000px); 
    } 
} 
@keyframes fadeOutLeft { 
    0% { 
        opacity: 1; 
        transform: translateX(0); 
    } 
    100% { 
        opacity: 0; 
        transform: translateX(-2000px); 
    } 
} 
.fadeOutLeft.goAway { 
    -webkit-animation-name: fadeOutLeft; 
    animation-name: fadeOutLeft; 
}

/************
* fadeOutRight *
*************/
@-webkit-keyframes fadeOutRight { 
    0% { 
        opacity: 1; 
        -webkit-transform: translateX(0); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: translateX(2000px); 
    } 
} 
@keyframes fadeOutRight { 
    0% { 
        opacity: 1; 
        transform: translateX(0); 
    } 
    100% { 
        opacity: 0; 
        transform: translateX(2000px); 
    } 
} 
.fadeOutRight.goAway { 
    -webkit-animation-name: fadeOutRight; 
    animation-name: fadeOutRight; 
}
/************
* flipOutX *
*************/
@-webkit-keyframes flipOutX { 
    0% { 
        -webkit-transform: perspective(400px) rotateX(0deg); 
        opacity: 1; 
    } 
    100% { 
        -webkit-transform: perspective(400px) rotateX(90deg); 
        opacity: 0; 
    } 
} 
@keyframes flipOutX { 
    0% { 
        transform: perspective(400px) rotateX(0deg); 
        opacity: 1; 
    } 
    100% { 
        transform: perspective(400px) rotateX(90deg); 
        opacity: 0; 
    } 
} 
.flipOutX.goAway { 
    -webkit-animation-name: flipOutX; 
    -webkit-backface-visibility: visible !important; 
    animation-name: flipOutX; 
    backface-visibility: visible !important; 
}

/************
* flipOutY *
*************/
@-webkit-keyframes flipOutY { 
    0% { 
        -webkit-transform: perspective(400px) rotateY(0deg); 
        opacity: 1; 
    } 
    100% { 
        -webkit-transform: perspective(400px) rotateY(90deg); 
        opacity: 0; 
    } 
} 
@keyframes flipOutY { 
    0% { 
        transform: perspective(400px) rotateY(0deg); 
        opacity: 1; 
    } 
    100% { 
        transform: perspective(400px) rotateY(90deg); 
        opacity: 0; 
    } 
} 
.flipOutY { 
    -webkit-backface-visibility: visible !important; 
    -webkit-animation-name: flipOutY; 
    backface-visibility: visible !important; 
    animation-name: flipOutY; 
}

/************
* lightSpeedOutRight *
*************/
@-webkit-keyframes lightSpeedOutRight { 
    0% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; } 
    100% { -webkit-transform: translateX(100%) skewX(-30deg); opacity: 0; } 
} 
@keyframes lightSpeedOutRight { 
    0% { transform: translateX(0%) skewX(0deg); opacity: 1; } 
    100% { transform: translateX(100%) skewX(-30deg); opacity: 0; } 
} 
.lightSpeedOutRight.goAway { 
    -webkit-animation-name: lightSpeedOutRight; 
    animation-name: lightSpeedOutRight; 
    -webkit-animation-timing-function: ease-in; 
    animation-timing-function: ease-in; 
} 


/************
* lightSpeedOutLeft *
*************/
@-webkit-keyframes lightSpeedOutLeft { 
    0% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; } 
    100% { -webkit-transform: translateX(-100%) skewX(30deg); opacity: 0; } 
} 
@keyframes lightSpeedOutLeft { 
    0% { transform: translateX(0%) skewX(0deg); opacity: 1; } 
    100% { transform: translateX(-100%) skewX(30deg); opacity: 0; } 
} 
.lightSpeedOutLeft.goAway { 
    -webkit-animation-name: lightSpeedOutLeft; 
    animation-name: lightSpeedOutLeft; 
    -webkit-animation-timing-function: ease-in; 
    animation-timing-function: ease-in; 

} 

/************
* rotateOut *
*************/
@-webkit-keyframes rotateOut { 
    0% { 
        -webkit-transform-origin: center center; 
        -webkit-transform: rotate(0); 
        opacity: 1; 
    } 
    100% { 
        -webkit-transform-origin: center center; 
        -webkit-transform: rotate(200deg); 
        opacity: 0; 
    } 
} 
@keyframes rotateOut { 
    0% { 
        transform-origin: center center; 
        transform: rotate(0); 
        opacity: 1; 
    } 
    100% { 
        transform-origin: center center; 
        transform: rotate(200deg); 
        opacity: 0; 
    } 
} 
.rotateOut.goAway { 
    -webkit-animation-name: rotateOut; 
    animation-name: rotateOut; 
}


/************
* rotateOutUpLeft *
*************/
@-webkit-keyframes rotateOutUpLeft { 
    0% { 
        -webkit-transform-origin: left bottom; 
        -webkit-transform: rotate(0); 
        opacity: 1; 
    } 
    100% { 
        -webkit-transform-origin: left bottom; 
        -webkit-transform: rotate(-90deg); 
        opacity: 0; 
    } 
} 
@keyframes rotateOutUpLeft { 
    0% { 
        transform-origin: left bottom; 
        transform: rotate(0); 
        opacity: 1; 
    } 
    100% { 
        -transform-origin: left bottom; 
        -transform: rotate(-90deg); 
        opacity: 0; 
    } 
} 
.rotateOutUpLeft.goAway { 
    -webkit-animation-name: rotateOutUpLeft; 
    animation-name: rotateOutUpLeft; 
}

/************
* rotateOutDownLeft *
*************/

@-webkit-keyframes rotateOutDownLeft { 
    0% { 
        -webkit-transform-origin: left bottom; 
        -webkit-transform: rotate(0); 
        opacity: 1; 
    } 
    100% { 
        -webkit-transform-origin: left bottom; 
        -webkit-transform: rotate(90deg); 
        opacity: 0; 
    } 
} 
@keyframes rotateOutDownLeft { 
    0% { 
        transform-origin: left bottom; 
        transform: rotate(0); 
        opacity: 1; 
    } 
    100% { 
        transform-origin: left bottom; 
        transform: rotate(90deg); 
        opacity: 0; 
    } 
} 
.rotateOutDownLeft.goAway { 
    -webkit-animation-name: rotateOutDownLeft; 
    animation-name: rotateOutDownLeft; 
}
/************
* rotateOutUpRight *
*************/

@-webkit-keyframes rotateOutUpRight { 
    0% { 
        -webkit-transform-origin: right bottom; 
        -webkit-transform: rotate(0); 
        opacity: 1; 
    } 
    100% { 
        -webkit-transform-origin: right bottom; 
        -webkit-transform: rotate(90deg); 
        opacity: 0; 
    } 
} 
@keyframes rotateOutUpRight { 
    0% { 
        transform-origin: right bottom; 
        transform: rotate(0); 
        opacity: 1; 
    } 
    100% { 
        transform-origin: right bottom; 
        transform: rotate(90deg); 
        opacity: 0; 
    } 
} 
.rotateOutUpRight.goAway { 
    -webkit-animation-name: rotateOutUpRight; 
    animation-name: rotateOutUpRight; 
}

/************
* rollOut *
*************/
@-webkit-keyframes rollOut { 
    0% { 
        opacity: 1; 
        -webkit-transform: translateX(0px) rotate(0deg); 
    } 
    100% { 
        opacity: 0; 
        -webkit-transform: translateX(100%) rotate(120deg); 
    } 
} 
@keyframes rollOut { 
    0% { 
        opacity: 1; 
        transform: translateX(0px) rotate(0deg); 
    } 
    100% { 
        opacity: 0; 
        transform: translateX(100%) rotate(120deg); 
    } 
} 
.rollOut.goAway { 
    -webkit-animation-name: rollOut; 
    animation-name: rollOut; 
}
/*****************
* Short Animations
*******************/

/*********************
* fadeInUpShort
*********************/
@-webkit-keyframes fadeInUpShort { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateY(20px); 
    } 
    100% { 
        opacity: 1; 
        -webkit-transform: translateY(0); 
    } 
} 

@keyframes fadeInUpShort { 
    0% { 
        opacity: 0; 
        transform: translateY(20px); 
    } 
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    } 
} 
.fadeInUpShort{
    opacity: 0; 
    -webkit-transform: translateY(20px); 
    transform: translateY(20px); 
}
.fadeInUpShort.go { 
    -webkit-animation-name: fadeInUpShort; 
    animation-name: fadeInUpShort; 
}

/*********************
* fadeInDownShort
*********************/
@-webkit-keyframes fadeInDownShort { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateY(-20px); 
    } 
    100% { 
        opacity: 1; 
        -webkit-transform: translateY(0); 
    } 
} 

@keyframes fadeInDownShort { 
    0% { 
        opacity: 0; 
        transform: translateY(-20px); 
    } 
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    } 
} 
.fadeInDownShort{
    opacity: 0; 
    -webkit-transform: translateY(-20px); 
    transform: translateY(-20px); 
}
.fadeInDownShort.go { 
    -webkit-animation-name: fadeInDownShort; 
    animation-name: fadeInDownShort; 
}

/*********************
* fadeInRightShort 
*********************/
@-webkit-keyframes fadeInRightShort { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateX(20px); 
    } 
    100% { 
        opacity: 1; 
        -webkit-transform: translateX(0); 
    } 
} 
@keyframes fadeInRightShort { 
    0% { 
        opacity: 0; 
        transform: translateX(20px); 
    } 
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    } 
} 
.fadeInRightShort { 
    opacity: 0; 
    -webkit-transform: translateX(20px);  
    transform: translateX(20px); 
}
.fadeInRightShort.go { 
    -webkit-animation-name: fadeInRightShort; 
    animation-name: fadeInRightShort; 
}

/*********************
* fadeInLeftShort 
*********************/
@-webkit-keyframes fadeInLeftShort { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateX(-20px); 
    } 
    100% { 
        opacity: 1; 
        -webkit-transform: translateX(0); 
    } 
} 
@keyframes fadeInLeftShort { 
    0% { 
        opacity: 0; 
        transform: translateX(-20px); 
    } 
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    } 
} 
.fadeInLeftShort { 
    opacity: 0; 
    -webkit-transform: translateX(-20px);  
    transform: translateX(-20px); 
}
.fadeInLeftShort.go { 
    -webkit-animation-name: fadeInLeftShort; 
    animation-name: fadeInLeftShort; 
}


/* html5reset.css - 01/11/2011 */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

.wrapper {
         max-width:800px;
         width:auto;
         height:auto;
         margin:0 auto;
}
.home .wrapper {max-width:1250px;}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
     display: block;
}

nav ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* change colours to suit your needs */
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/* change colours to suit your needs */
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration:  line-through;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;  
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input, select {
    vertical-align: middle;
}



/*  TYPOGRAPHY ===================================================================== */


@font-face {
    font-family: 'moonlight';
    src: url('fonts/moon_light-webfont.eot');
    src: url('fonts/moon_light-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/moon_light-webfont.woff2') format('woff2'),
         url('fonts/moon_light-webfont.woff') format('woff'),
         url('fonts/moon_light-webfont.ttf') format('truetype'),
         url('fonts/moon_light-webfont.svg#moonlight') format('svg');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'moonbold';
    src: url('fonts/moon_bold-webfont.eot');
    src: url('fonts/moon_bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/moon_bold-webfont.woff2') format('woff2'),
         url('fonts/moon_bold-webfont.woff') format('woff'),
         url('fonts/moon_bold-webfont.ttf') format('truetype'),
         url('fonts/moon_bold-webfont.svg#moonbold') format('svg');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'talking_to_the_moonregular';
    src: url('fonts/talkingtothemoon-webfont.eot');
    src: url('fonts/talkingtothemoon-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/talkingtothemoon-webfont.woff2') format('woff2'),
         url('fonts/talkingtothemoon-webfont.woff') format('woff'),
         url('fonts/talkingtothemoon-webfont.ttf') format('truetype'),
         url('fonts/talkingtothemoon-webfont.svg#talking_to_the_moonregular') format('svg');
    font-weight: normal;
    font-style: normal;

}


body,
button,
input,
select,
textarea {
	color: #333;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-size: 1.5rem;
	line-height: 1.6;
}

.fun {
font-family: 'talking_to_the_moonregular', serif;
font-size:30px;
}

.intro {
font-family: 'moonlight', sans-serif;
font-size:23px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'moonlight', sans-serif;
	clear: both;
    font-weight:normal;
    margin:0 0 20px 0;
}

h1 {font-size:40px;}

h2 {font-size:30px;}

h3 {font-size:24px;}

.home h2 {font-size:48px;}

p {
    font-size: 22px;
    font-weight:300;
	padding:0;
    margin:0 0 20px 0;
}

p.nomargin, .nomargin {
margin:0;
}

b,
strong {
	font-weight: 700;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	border-left: 4px solid #707070;
	border-left: 4px solid rgba(51, 51, 51, 0.7);
	color: #707070;
	color: rgba(51, 51, 51, 0.7);
	font-size: 18px;
	font-size: 1.8rem;
	font-style: italic;
	line-height: 1.6667;
	margin-bottom: 1.6667em;
	padding-left: 0.7778em;
}

blockquote p {
	margin-bottom: 1.6667em;
}

blockquote > p:last-child {
	margin-bottom: 0;
}

blockquote cite,
blockquote small {
	color: #333;
	font-size: 15px;
	font-size: 1.5rem;
	font-family: "Noto Sans", sans-serif;
	line-height: 1.6;
}

blockquote em,
blockquote i,
blockquote cite {
	font-style: normal;
}

blockquote strong,
blockquote b {
	font-weight: 400;
}

address {
	font-style: italic;
	margin: 0 0 1.6em;
}

code,
kbd,
tt,
var,
samp,
pre {
	font-family: Inconsolata, monospace;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

pre {
	background-color: transparent;
	background-color: rgba(0, 0, 0, 0.01);
	border: 1px solid #eaeaea;
	border: 1px solid rgba(51, 51, 51, 0.1);
	line-height: 1.2;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 0.8em;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

abbr[title] {
	border-bottom: 1px dotted #eaeaea;
	border-bottom: 1px dotted rgba(51, 51, 51, 0.1);
	cursor: help;
}

mark,
ins {
	background-color: #fff9c0;
	text-decoration: none;
}

sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}



/* LINKS & BUTTONS =========================================== */


a {
	color: #333;
	text-decoration: none;
    -webkit-transition: 0.5s ease;
-moz-transition: 0.5s ease;
-o-transition: 0.5s ease;
-ms-transition: 0.5s ease;
transition: 0.5s ease;
}

a:hover,
a:focus {
	color: #707070;
	color: rgba(51, 51, 51, 0.7);
}

a.button {
    font-family: 'moonbold', sans-serif;
    font-size: 15px;
    line-height:15px;
    display:inline-block;
    background-color:#ececec;
    color:#999;
    margin:0 0 20px 0;
    padding: 24px;
}

a.button:hover {
               background-color:#ececec;
    text-decoration: none;
}

a.button.full {
    display:block;
}

a.button.blue {
    background-color:#00a9c2;
    color:#fff;
}

a.button.blue:hover {background-color:#008fb8;}

a.button.orange {
    background-color:#ff7e00;
    color:#fff;
}

a.button.orange:hover {background-color:#ff5a00;}

a.button.yellow {
    background-color:#ffc600;
    color:#fff;
}

a.button.yellow:hover {background-color:#fcac00;}

a.button.green {
    background-color:#a9c200;
    color:#fff;
}

a.button.green:hover {background-color:#85b100;}

a.button.white {
    background-color:#fff;
    color:#999;
}

a.button.white:hover {background-color:#fff;color:#000;}








/*  ELEMENTS ========================================================= */


hr {
	background-color: #eaeaea;
	background-color: rgba(51, 51, 51, 0.1);
	border: 0;
	height: 1px;
	margin-bottom: 1.6em;
}

ul,
ol {
	margin: 0 0 1.6em 1.3333em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
}

dl {
	margin-bottom: 1.6em;
}

dt {
	font-weight: bold;
}

dd {
	margin-bottom: 1.6em;
}

table,
th,
td {
	border: 1px solid #eaeaea;
	border: 1px solid rgba(51, 51, 51, 0.1);
}

table {
	border-collapse: separate;
	border-spacing: 0;
	border-width: 1px 0 0 1px;
	margin: 0 0 1.6em;
	table-layout: fixed; /* Prevents HTML tables from becoming too wide */
	width: 100%;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

th {
	border-width: 0 1px 1px 0;
	font-weight: 700;
}

td {
	border-width: 0 1px 1px 0;
}

th, td {
	padding: 0.4em;
}

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

figure {
	margin: 0;
}

del {
	opacity: 0.8;
}


/*  FORMS ======================================================================== */



::-webkit-input-placeholder {
	color: rgba(51, 51, 51, 0.7);
	font-family: "Noto Sans", sans-serif;
}

:-moz-placeholder {
	color: rgba(51, 51, 51, 0.7);
	font-family: "Noto Sans", sans-serif;
}

::-moz-placeholder {
	color: rgba(51, 51, 51, 0.7);
	font-family: "Noto Sans", sans-serif;
	opacity: 1; /* Since FF19 lowers the opacity of the placeholder by default */
}

:-ms-input-placeholder {
	color: rgba(51, 51, 51, 0.7);
	font-family: "Noto Sans", sans-serif;
}


button,
input,
select,
textarea {
	background-color: #f7f7f7;
	border-radius: 0;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
	margin: 0;
	max-width: 100%;
	vertical-align: baseline;
}

button,
input {
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	line-height: normal;
}

input,
textarea {
	background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)); /* Removing the inner shadow on iOS inputs */
	border: 1px solid #eaeaea;
	border: 1px solid rgba(51, 51, 51, 0.1);
	color: #707070;
	color: rgba(51, 51, 51, 0.7);
}

input:focus,
textarea:focus {
	background-color: #e3f4f9;
	border: 1px solid #c1c1c1;
	border: 1px solid rgba(51, 51, 51, 0.3);
	color: #333;
}

input:focus,
select:focus {
	outline: 2px solid #c1c1c1;
	outline: 2px solid rgba(51, 51, 51, 0.3);
}

button[disabled],
input[disabled],
select[disabled],
textarea[disabled] {
	cursor: default;
	opacity: .5;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	background-color: #333;
	border: 0;
	color: #fff;
	cursor: pointer;
	font-family: "Noto Sans", sans-serif;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	padding: 0.7917em 1.5em;
	text-transform: uppercase;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
	background-color: #707070;
	background-color: rgba(51, 51, 51, 0.7);
	outline: 0;
}

input[type="search"] {
	-webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	padding: 0.375em;
	width: 100%;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	outline: 0;
}

.post-password-form {
	position: relative;
}

.post-password-form label {
	color: #707070;
	color: rgba(51, 51, 51, 0.7);
	display: block;
	font-family: "Noto Sans", sans-serif;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.5;
	text-transform: uppercase;
}

.post-password-form input[type="submit"] {
	padding: 0.7917em;
	position: absolute;
	right: 0;
	bottom: 0;
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0;
}

.search-form input[type="submit"],
.widget .search-form input[type="submit"] {
	padding: 0;
}


/*  SECTIONS  ============================================================================= */

.section {
     clear: both;
     padding: 0px;
     margin: 0px;
}

/*  GROUPING  ============================================================================= */


.group:before,
.group:after {
    content:"";
    display:table;
}
.group:after {
    clear:both;
}
.group {
    zoom:1; /* For IE 6/7 (trigger hasLayout) */
}

/*  GRID COLUMN SETUP   ==================================================================== */

.col {
     display: block;
     float:left;
     margin: 1% 0 1% 1.6%;
}

.col:first-child { margin-left: 0; } /* all browsers except IE6 and lower */


/*  REMOVE MARGINS AS ALL GO FULL WIDTH AT 480 PIXELS */

@media only screen and (max-width: 480px) {
     .col {
          margin: 1% 0 1% 0%;
     }
}

/*  GRID OF TWO   ============================================================================= */


.span_2_of_2 {
     width: 100%;
}

.span_1_of_2 {
     width: 49.2%;
}

/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
     .span_2_of_2 {
          width: 100%;
     }
     .span_1_of_2 {
          width: 100%;
     }
}

/*  GRID OF THREE   ============================================================================= */

    
.span_3_of_3 {
     width: 100%;
}

.span_2_of_3 {
     width: 66.13%;
}

.span_1_of_3 {
     width: 32.26%;
}


/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 520px) {
     .span_3_of_3 {
          width: 100%;
     }
     .span_2_of_3 {
          width: 100%;
     }
     .span_1_of_3 {
          width: 100%;
     }
}

/*  GRID OF FOUR   ============================================================================= */

    
.span_4_of_4 {
     width: 100%;
}

.span_3_of_4 {
     width: 74.6%;
}

.span_2_of_4 {
     width: 49.2%;
}

.span_1_of_4 {
     width: 23.2%;
}


/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 560px) {
     .span_4_of_4 {
          width: 100%;
     }
     .span_3_of_4 {
          width: 100%;
     }
     .span_2_of_4 {
          width: 100%;
     }
     .span_1_of_4 {
          width: 100%;
     }
}

/*  GRID OF FIVE   ============================================================================= */

    
.span_5_of_5 {
     width: 100%;
}

.span_4_of_5 {
       width: 79.68%;
}

.span_3_of_5 {
       width: 59.36%;
}

.span_2_of_5 {
       width: 39.04%;
}

.span_1_of_5 {
       width: 18.72%;
}


/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 620px) {
     .span_5_of_5 {
          width: 100%;
     }
     .span_4_of_5 {
          width: 100%;
     }
     .span_3_of_5 {
          width: 100%;
     }
     .span_2_of_5 {
          width: 100%;
     }
     .span_1_of_5 {
          width: 100%;
     }
}

/*  GRID OF SIX   ============================================================================= */


.span_6_of_6 {
     width: 100%;
}

.span_5_of_6 {
       width: 83.06%;
}

.span_4_of_6 {
       width: 66.13%;
}

.span_3_of_6 {
       width: 49.2%;
}

.span_2_of_6 {
       width: 32.26%;
}

.span_1_of_6 {
       width: 15.33%;
}


/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
     .span_6_of_6 {
          width: 100%;
     }
     .span_5_of_6 {
          width: 100%;
     }
     .span_4_of_6 {
          width: 100%;
     }
     .span_3_of_6 {
          width: 100%;
     }
     .span_2_of_6 {
          width: 100%;
     }
     .span_1_of_6 {
          width: 100%;
     }
}

/*  GRID OF SEVEN   ============================================================================= */


.span_7_of_7 {
     width: 100%;
}

.span_6_of_7 {
     width: 85.48%;
}

.span_5_of_7 {
       width: 70.97%;
}

.span_4_of_7 {
       width: 56.45%;
}

.span_3_of_7 {
       width: 41.94%;
}

.span_2_of_7 {
       width: 27.42%;
}

.span_1_of_7 {
       width: 12.91%;
}


/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
     .span_7_of_7 {
          width: 100%;
     }
     .span_6_of_7 {
          width: 100%;
     }
     .span_5_of_7 {
          width: 100%;
     }
     .span_4_of_7 {
          width: 100%;
     }
     .span_3_of_7 {
          width: 100%;
     }
     .span_2_of_7 {
          width: 100%;
     }
     .span_1_of_7 {
          width: 100%;
     }
}


/*  GRID OF EIGHT   ============================================================================= */

    
.span_8_of_8 {
     width: 100%;
}

.span_7_of_8 {
     width: 87.3%;
}

.span_6_of_8 {
     width: 74.6%;
}

.span_5_of_8 {
     width: 61.9%;
}

.span_4_of_8 {
     width: 49.2%;
}

.span_3_of_8 {
     width: 36.5%;
}

.span_2_of_8 {
     width: 23.8%;
}

.span_1_of_8 {
     width: 11.1%;
}


/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
     .span_8_of_8 {
          width: 100%;
     }
     .span_7_of_8 {
          width: 100%;
     }
     .span_6_of_8 {
          width: 100%;
     }
     .span_5_of_8 {
          width: 100%;
     }
     .span_4_of_8 {
          width: 100%;
     }
     .span_3_of_8 {
          width: 100%;
     }
     .span_2_of_8 {
          width: 100%;
     }
     .span_1_of_8 {
          width: 100%;
     }
}

/*  GRID OF NINE   ============================================================================= */


.span_9_of_9 {
     width: 100%;
}

.span_8_of_9 {
     width: 88.71%;
}

.span_7_of_9 {
     width: 77.42%;
}

.span_6_of_9 {
     width: 66.13%;
}

.span_5_of_9 {
     width: 54.84%;
}

.span_4_of_9 {
     width: 43.55%;
}

.span_3_of_9 {
     width: 32.26%;
}

.span_2_of_9 {
     width: 20.97%;
}

.span_1_of_9 {
     width: 9.68%;
}


/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
     .span_9_of_9 {
          width: 100%;
     }
     .span_8_of_9 {
          width: 100%;
     }
     .span_7_of_9 {
          width: 100%;
     }
     .span_6_of_9 {
          width: 100%;
     }
     .span_5_of_9 {
          width: 100%;
     }
     .span_4_of_9 {
          width: 100%;
     }
     .span_3_of_9 {
          width: 100%;
     }
     .span_2_of_9 {
          width: 100%;
     }
     .span_1_of_9 {
          width: 100%;
     }
}

/*  GRID OF TEN   ============================================================================= */


.span_10_of_10 {
     width: 100%;
}

.span_9_of_10 {
     width: 89.84%;
}

.span_8_of_10 {
     width: 79.68%;
}

.span_7_of_10 {
     width: 69.52%;
}

.span_6_of_10 {
     width: 59.36%;
}

.span_5_of_10 {
     width: 49.2%;
}

.span_4_of_10 {
     width: 39.04%;
}

.span_3_of_10 {
     width: 28.88%;
}

.span_2_of_10 {
     width: 18.72%;
}

.span_1_of_10 {
     width: 8.56%;
}


/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
     .span_10_of_10 {
          width: 100%;
     }
     .span_9_of_10 {
          width: 100%;
     }
     .span_8_of_10 {
          width: 100%;
     }
     .span_7_of_10 {
          width: 100%;
     }
     .span_6_of_10 {
          width: 100%;
     }
     .span_5_of_10 {
          width: 100%;
     }
     .span_4_of_10 {
          width: 100%;
     }
     .span_3_of_10 {
          width: 100%;
     }
     .span_2_of_10 {
          width: 100%;
     }
     .span_1_of_10 {
          width: 100%;
     }
}

/*  GRID OF ELEVEN   ============================================================================= */

.span_11_of_11 {
     width: 100%;
}

.span_10_of_11 {
     width: 90.76%;
}

.span_9_of_11 {
     width: 81.52%;
}

.span_8_of_11 {
     width: 72.29%;
}

.span_7_of_11 {
     width: 63.05%;
}

.span_6_of_11 {
     width: 53.81%;
}

.span_5_of_11 {
     width: 44.58%;
}

.span_4_of_11 {
     width: 35.34%;
}

.span_3_of_11 {
     width: 26.1%;
}

.span_2_of_11 {
     width: 16.87%;
}

.span_1_of_11 {
     width: 7.63%;
}


/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
     .span_11_of_11 {
          width: 100%;
     }
     .span_10_of_11 {
          width: 100%;
     }
     .span_9_of_11 {
          width: 100%;
     }
     .span_8_of_11 {
          width: 100%;
     }
     .span_7_of_11 {
          width: 100%;
     }
     .span_6_of_11 {
          width: 100%;
     }
     .span_5_of_11 {
          width: 100%;
     }
     .span_4_of_11 {
          width: 100%;
     }
     .span_3_of_11 {
          width: 100%;
     }
     .span_2_of_11 {
          width: 100%;
     }
     .span_1_of_11 {
          width: 100%;
     }
}

/*  GRID OF TWELVE   ============================================================================= */

.span_12_of_12 {
     width: 100%;
}

.span_11_of_12 {
     width: 91.53%;
}

.span_10_of_12 {
     width: 83.06%;
}

.span_9_of_12 {
     width: 74.6%;
}

.span_8_of_12 {
     width: 66.13%;
}

.span_7_of_12 {
     width: 57.66%;
}

.span_6_of_12 {
     width: 49.2%;
}

.span_5_of_12 {
     width: 40.73%;
}

.span_4_of_12 {
     width: 32.26%;
}

.span_3_of_12 {
     width: 23.8%;
}

.span_2_of_12 {
     width: 15.33%;
}

.span_1_of_12 {
     width: 6.86%;
}


/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
     .span_12_of_12 {
          width: 100%;
     }
     .span_11_of_12 {
          width: 100%;
     }
     .span_10_of_12 {
          width: 100%;
     }
     .span_9_of_12 {
          width: 100%;
     }
     .span_8_of_12 {
          width: 100%;
     }
     .span_7_of_12 {
          width: 100%;
     }
     .span_6_of_12 {
          width: 100%;
     }
     .span_5_of_12 {
          width: 100%;
     }
     .span_4_of_12 {
          width: 100%;
     }
     .span_3_of_12 {
          width: 100%;
     }
     .span_2_of_12 {
          width: 100%;
     }
     .span_1_of_12 {
          width: 100%;
     }
}



/*  EXTRA STYLES ===================================================================== */


 #goTop{
    position:fixed;
    bottom:-100px;
    right:20px;
     z-index:9999999;
     cursor:pointer;
     text-decoration:none;
background-color:#c9c9c9;
padding: 10px 15px;
font-size: 12px;
color: #fff;
line-height: 100%;
display: inline-block;
vertical-align: middle;
text-align: center;
font-weight: bold;
transition: background .2s ease-in-out;
-webkit-transition: background .2s ease-in-out;
-moz-transition: background .2s ease-in-out;
-ms-transition: background .2s ease-in-out;
-o-transition: background .2s ease-in-out;
-webkit-border-radius: 6px 0;
-moz-border-radius: 6px 0;
border-radius: 6px 0;
}

#goTop:hover{
background-color:#e68a00;
}

.window {
text-align:center;
padding:80px 0;
}

#header {
text-align:center;
}

.slogan {
text-transform:uppercase;}

.blues {
font-family: 'moonbold';
color:#00a9c2; }

.greens {
font-family: 'moonbold';
color:#a9c200; }

.oranges {
font-family: 'moonbold';
color:#ff7e00; }

.navigation .col {
vertical-align:middle;}

.navpaddings {
display:block;
width:10px;
height:50px;}

.name .intro {
text-transform:uppercase;
 }
 
 .logosmall {
 text-align:center;}

#shopify {
color:#fff;
position:relative;
overflow: hidden;
background: #7ab55c;
}

#siteground {
color:#777;
position:relative;
overflow: hidden;
background: #DADADA;
}
 
#services {
color:#fff;
position:relative;
overflow: hidden;
background: #00a9c2; /* Old browsers */
background: -moz-linear-gradient(top,  #00a9c2 0%, #0082b8 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00a9c2), color-stop(100%,#0082b8)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #00a9c2 0%,#0082b8 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #00a9c2 0%,#0082b8 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #00a9c2 0%,#0082b8 100%); /* IE10+ */
background: linear-gradient(to bottom,  #00a9c2 0%,#0082b8 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00a9c2', endColorstr='#0082b8',GradientType=0 ); /* IE6-9 */
}

.iceberg {
    text-align: center;
    padding: 10px 0 150px 0;
}

@keyframes nudge {
  0%, 100% {
    transform: translate(-5%, 0);
  }
  
  50% {
    transform: translate(-10%, 0);
  }

}

.wave {
    position: absolute;
    top: 600px;
    left: 0px;
    width: 120%;
}


.servicebox {
  position: absolute;
  display:block;
   width:425px;
}


.serviceboxw {
  display:block;
  padding: 30px;
  background:#ffffff;
  background:rgba(255,255,255,0.9);
}

.serviceboxb {
  display:block;
  padding: 30px;
  background:#004766;
  background:rgba(0,71,102,0.8);
}

.serviceboxw h3,.serviceboxb h3 {
margin: 0 0 5px 0;
font-size: 22px;
color:#00a9c2;}

.serviceboxw p,.serviceboxb p {
    font-size: 14px;
    line-height: 130%;
    font-weight:300;
	padding:0;
    margin:0;
}


.serviceboxw p{color:#000;}


.sone {
      top: 350px;
    right: 40%;
    margin-right: -420px;}

.stwo {
    top: 230px;
    left: 40%;
    margin-left: -420px;}

    
.sthree {
top: 550px;
    left: 35%;
    margin-left: -420px;}
    
.sfour {
    top: 680px;
    right: 35%;
    margin-right: -420px;}



.sfive {
    top: 880px;
    left: 38%;
    margin-left: -420px;
}

.ssix {
    top: 1030px;
    right: 38%;
    margin-right: -420px;
}

.sseven {
    top: 1280px;
    left: 42%;
    margin-left: -420px;
}

.seight {
    top: 1420px;
    right: 45%;
    margin-right: -420px;
}
.wave img {
    animation: nudge 5s linear infinite alternate;
    width: 100%;
    height: auto;}

#work {
background-color:#fff;
}

.orangetext {
 color:#ff7e00;
}

#cbpw-grid1 .cbp-caption-activeWrap {
    background-color: #ff7e00!important;
}

.cbp-l-grid-masonry-projects .cbp-caption-activeWrap {
    background-color: #ff7e00!important;
}

#cbpw-grid1 .cbp-l-grid-masonry-projects-title {
    color:#ff7e00!important;
}

#happy {
background-color:#ffc600;
position:relative;
overflow: hidden;
}

.smiley {
    padding: 200px 0 200px 0;
}

.smiley img {
    width: 350px;
    height:auto;
}

.reviewboxes {
  position: absolute;
  display:block;
   width:400px;
   display:block;
  padding: 0;
}

.reviewbox p,.reviewbox p {
    font-size: 14px;
    line-height: 130%;
    font-weight:300;
	padding:0;
    margin:0;
}


.rone {
    top: 190px;
    left: 38%;
    margin-left: -400px;
}

.rtwo {
    top: 120px;
    right: 35%;
    margin-right: -400px;
}

.rthree {
    top: 520px;
    left: 33%;
    margin-left: -400px;
}

.rfour {
    top: 430px;
    right: 30%;
    margin-right: -400px;
}

.rfive {
    bottom: 80px;
    right: 45%;
    margin-right: -400px;
}

p.named {
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    color: #000;
}

p.company {
    font-weight: 600;
}

.translogo {
    zoom: 1;
    filter: alpha(opacity=50);
    opacity: 0.5;
    margin: 0 0 15px 0;
    width: auto;
    height: 80px;
}

.translogo.long {
    height: 50px;
}

#contact {
background: url(http://www.hcreate.com.au/main/wp-content/uploads/2015/10/contactbg.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
overflow: hidden;
}

.contactdeets p {
font-size:18px;}

.contactdeets p.fun {
    font-size: 30px;
    padding: 20px 0 0 0;
}

.socialiconbutton {
    background-color: #719d00;
    color: #fff;
    font-size: 25px;
    line-height: 25px;
    padding: 10px 10px;
    margin: 0 5px 5px 0;
    font-weight: normal;
    display: inline-block;
}

.socialiconbutton:hover {
text-decoration:none;
color: #fff;}

.socialiconbutton.google:hover {
background-color:#cc3d2d;}

.socialiconbutton.facebook:hover {
background-color:#2e4b86;}

.socialiconbutton.twitter:hover {
background-color:#1aa9e1;}

.socialiconbutton.pinterest:hover {
background-color:#d0203d;}

.socialiconbutton.instagram:hover {
background-color:#4d423c;}

.socialiconbutton.linkedin:hover {
background-color:#4875b6;}


.hidethisfieldtitle .gfield_label{
    display: none!important;}
    
.gform_wrapper input[type=email], .gform_wrapper input[type=number], .gform_wrapper input[type=password], .gform_wrapper input[type=tel], .gform_wrapper input[type=text], .gform_wrapper input[type=url] {
    font-size: 16px!important;
    padding: 10px!important;
}

.gform_wrapper textarea {
    padding: 13px!important;
    font-size: 16px!important;
}

.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit] {
    font-family: 'moonbold', sans-serif!important;
    letter-spacing: 1px!important;
    font-size: 15px!important;
    line-height: 15px!important;
    display: inline-block!important;
    background-color: #719d00!important;
    color: #fff!important;
    padding: 24px!important;
        -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    transition: 0.5s ease;
}

.gform_wrapper .gform_footer {
    padding: 20px 0 0 0!important;
    margin: 0!important;
    clear: both!important;
    text-align: center!important;
}

.gform_wrapper .gform_footer input.button:hover, .gform_wrapper .gform_footer input[type=submit]:hover {
    background-color: #448a00!important;
}

input, textarea {
    border: none!important;
}

#footer {
background-color:#fff;
}

#footer.window {
    text-align: center;
    padding: 40px 0;
}

#footer p {
        color:#a8a8a8;
        font-size:18px;}

#footer p.copy {
       color:#ececec;
       font-size:60px;
       margin: 0;
}

@font-face {
    font-family: 'socicon';
    src: url('social/socicon.eot');
    src: url('social/socicon.eot?#iefix') format('embedded-opentype'),
         url('social/socicon.woff') format('woff'),
         url('social/socicon.ttf') format('truetype'),
         url('social/socicon.svg#sociconregular') format('svg');
    font-weight: normal;
    font-style: normal;
    text-transform: initial;
}

[class^="socicon-"], [class*=" socicon-"] {
	font-family: 'socicon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}



.socicon-renren:before {
	content: "\52";
}
.socicon-qq:before {
	content: "\5b";
}
.socicon-baidu:before {
	content: "\bf";
}
.socicon-douban:before {
	content: "\5c";
}
.socicon-weibo:before {
	content: "\b1";
}
.socicon-snapchat:before {
	content: "\60";
}
.socicon-ravelry:before {
	content: "\b0";
}
.socicon-periscope:before {
	content: "\30";
}
.socicon-angellist:before {
	content: "\20ac";
}
.socicon-istock:before {
	content: "\25";
}
.socicon-modelmayhem:before {
	content: "\21";
}
.socicon-icq:before {
	content: "\a7";
}
.socicon-storehouse:before {
	content: "\3e";
}
.socicon-whatsapp:before {
	content: "\3c";
}
.socicon-pocket:before {
	content: "\3f";
}
.socicon-airbnb:before {
	content: "\2f";
}
.socicon-twitch:before {
	content: "\7b";
}
.socicon-ello:before {
	content: "\27";
}
.socicon-8tracks:before {
	content: "\7d";
}
.socicon-amazon:before {
	content: "\a3";
}
.socicon-mixcloud:before {
	content: "\22";
}
.socicon-meetup:before {
	content: "\5d";
}
.socicon-persona:before {
	content: "\29";
}
.socicon-android:before {
	content: "\5f";
}
.socicon-odnoklassniki:before {
	content: "\2e";
}
.socicon-github:before {
	content: "\51";
}
.socicon-drupal:before {
	content: "\23";
}
.socicon-appnet:before {
	content: "\34";
}
.socicon-buffer:before {
	content: "\39";
}
.socicon-goodreads:before {
	content: "\35";
}
.socicon-houzz:before {
	content: "\2b";
}
.socicon-mail:before {
	content: "\40";
}
.socicon-patreon:before {
	content: "\3d";
}
.socicon-paypal:before {
	content: "\2d";
}
.socicon-playstation:before {
	content: "\5e";
}
.socicon-rss:before {
	content: "\2c";
}
.socicon-slideshare:before {
	content: "\38";
}
.socicon-smugmug:before {
	content: "\a8";
}
.socicon-swarm:before {
	content: "\24";
}
.socicon-triplej:before {
	content: "\2a";
}
.socicon-vkontakte:before {
	content: "\3b";
}
.socicon-yammer:before {
	content: "\26";
}
.socicon-coderwall:before {
	content: "\32";
}
.socicon-dailymotion:before {
	content: "\74";
}
.socicon-envato:before {
	content: "\47";
}
.socicon-feedburner:before {
	content: "\69";
}
.socicon-flattr:before {
	content: "\50";
}
.socicon-foursquare:before {
	content: "\65";
}
.socicon-friendfeed:before {
	content: "\53";
}
.socicon-identica:before {
	content: "\55";
}
.socicon-lanyrd:before {
	content: "\37";
}
.socicon-disqus:before {
	content: "\3a";
}
.socicon-newsvine:before {
	content: "\54";
}
.socicon-outlook:before {
	content: "\31";
}
.socicon-skype:before {
	content: "\67";
}
.socicon-stackoverflow:before {
	content: "\28";
}
.socicon-steam:before {
	content: "\58";
}
.socicon-tripadvisor:before {
	content: "\33";
}
.socicon-tripit:before {
	content: "\36";
}
.socicon-vimeo:before {
	content: "\73";
}
.socicon-vine:before {
	content: "\75";
}
.socicon-wikipedia:before {
	content: "\4e";
}
.socicon-windows:before {
	content: "\5a";
}
.socicon-wordpress:before {
	content: "\79";
}
.socicon-xbox:before {
	content: "\59";
}
.socicon-yahoo:before {
	content: "\66";
}
.socicon-yelp:before {
	content: "\68";
}
.socicon-youtube:before {
	content: "\72";
}
.socicon-zynga:before {
	content: "\57";
}
.socicon-500px:before {
	content: "\77";
}
.socicon-apple:before {
	content: "\4f";
}
.socicon-bebo:before {
	content: "\56";
}
.socicon-behance:before {
	content: "\48";
}
.socicon-blogger:before {
	content: "\41";
}
.socicon-delicious:before {
	content: "\49";
}
.socicon-deviantart:before {
	content: "\4a";
}
.socicon-digg:before {
	content: "\46";
}
.socicon-dribbble:before {
	content: "\44";
}
.socicon-facebook:before {
	content: "\62";
}
.socicon-flickr:before {
	content: "\76";
}
.socicon-forrst:before {
	content: "\4b";
}
.socicon-google:before {
	content: "\63";
}
.socicon-grooveshark:before {
	content: "\70";
}
.socicon-instagram:before {
	content: "\78";
}
.socicon-lastfm:before {
	content: "\71";
}
.socicon-linkedin:before {
	content: "\6a";
}
.socicon-myspace:before {
	content: "\6d";
}
.socicon-pinterest:before {
	content: "\64";
}
.socicon-play:before {
	content: "\4c";
}
.socicon-reddit:before {
	content: "\43";
}
.socicon-soundcloud:before {
	content: "\6e";
}
.socicon-spotify:before {
	content: "\6f";
}
.socicon-stumbleupon:before {
	content: "\45";
}
.socicon-technorati:before {
	content: "\42";
}
.socicon-tumblr:before {
	content: "\7a";
}
.socicon-twitter:before {
	content: "\61";
}
.socicon-viadeo:before {
	content: "\6b";
}
.socicon-xing:before {
	content: "\6c";
}
.socicon-zerply:before {
	content: "\4d";
}

@media all and (max-width: 1250px) {

.wrapper {
         width:96%;
         margin:0 auto;
         padding: 0 2%;
}

a.button {
    font-size: 14px;
    line-height: 14px;
    padding: 20px;
}

.sone, .sfour, .ssix, .seight, .rtwo, .rfour, .rfive {
    right: 2%;
    margin-right: 0;
}

.stwo, .sthree, .sfive, .sseven, .rone, .rthree {
    left: 2%;
    margin-left: 0;
}

.smiley {
    padding: 200px 0 250px 0;
}

.smiley img {
    width: 300px;
}

}


@media all and (max-width: 1110px) {

.reviewbox p, .reviewbox p {
    font-size: 13px;
    line-height: 120%;
}

.reviewboxes {
    width: 300px;
}

.servicebox {
    width: 40%;
}

#footer p {
    color: #a8a8a8;
    font-size: 15px;
}

.contactdeets p {
    font-size: 16px;
}

}
@media all and (min-width: 950px) {

.show950 {display:none;}

}

@media all and (max-width: 950px) {

.hide950 {display:none;}

.servicesbgmobile {
width:100%;
background: url(http://www.hcreate.com.au/main/wp-content/uploads/2015/10/website-tip-iceberg-hcreate.png) no-repeat center center;}

.iceberg {
display:none!important;}

.servicebox, .reviewboxes {
    position: static;
    display: block;
    width: 60%;

}

.sone, .sfour, .ssix, .seight, .rtwo, .rfour {
    margin: 0 40% 50px 0!important;
}

.stwo, .sthree, .sfive, .sseven, .rone, .rthree, .rfive {
    margin: 0 0 50px 40%!important;
}

.smiley {
    padding: 20px 0 40px 0;
}

.wave {
    top: 40%;
}

.gform_wrapper textarea {
    font-size: 14px!important;
}

.gform_wrapper input[type=email], .gform_wrapper input[type=number], .gform_wrapper input[type=password], .gform_wrapper input[type=tel], .gform_wrapper input[type=text], .gform_wrapper input[type=url] {
    font-size: 14px!important;
}

.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit] {
    padding: 20px!important;
}

.socialiconbutton {
    font-size: 30px;
    line-height: 30px;
    padding: 10px;
}

.reviewbox p, .reviewbox p {
    font-size: 14px;
    line-height: 130%;
    font-weight: normal;
}

p.company {
    font-weight: bold!important;
}

a.button {
    font-size: 13px;
    line-height: 13px;
    padding: 20px 15px;
}

#contact .span_1_of_3 {
    width: 48%;
}

.smiley img {
    width: 200px;
}

}

@media all and (max-width: 770px) {



.navpaddings {
        display: none;
}

a.button {
    font-size: 14px;
    line-height: 14px;
    padding: 20px;
    margin:0!important;
}

.logosmall {
    text-align: center;
    margin: 0 0 30px 0;
}

.name {
    display: none;
}

#header .window {
    text-align: center;
    padding: 0 0 80px 0;
}

#footer p {
    font-size: 13px;
}

}



@media all and (max-width: 570px) {

h2 {
    font-size: 40px;
}

#contact .span_1_of_3 {
    width: 100%;
}

.servicebox, .reviewboxes {
    width: 70%;

}

.sone, .sfour, .ssix, .seight, .rtwo, .rfour {
    margin: 0 30% 50px 0!important;
}

.stwo, .sthree, .sfive, .sseven, .rone, .rthree, .rfive {
    margin: 0 0 50px 30%!important;
}

.serviceboxb, .serviceboxw {
    padding: 20px!important;
}

.intro {
    font-family: 'moonlight', sans-serif;
    font-size: 20px;
}

}


@media all and (max-width: 400px) {

h2 {
    font-size: 35px;
}


.servicebox{
    width: 80%;

}

.sone, .sfour, .ssix, .seight {
    margin: 0 20% 50px 0!important;
}

.stwo, .sthree, .sfive, .sseven{
    margin: 0 0 50px 20%!important;
}

.reviewboxes {
    width: 100%;

}

.rtwo, .rfour, .rone, .rthree, .rfive {
    margin: 0 0 50px 0!important;
}

.reviewbox p, .reviewbox p {
    font-size: 13px;
}


}

body .gform_wrapper ul li.gfield {
    margin-top: 40px!important;
}

body .gform_wrapper ul li.gfield.gsection {
    margin-top: 80px!important;
    padding-top: 0!important;
}

.gform_wrapper .description_above .gfield_description {
    font-style: italic!important;
    font-size: 16px!important;
}

.gform_wrapper .gsection {
    border-bottom: 3px double #00a9c2!important;
}

.gform_wrapper h2.gsection_title {
    font-size: 25px!important;
    color: #00a9c2!important;
}

.gform_wrapper label.gfield_label {
    font-size: 20px!important;
}

.gform_wrapper ul.gfield_checkbox li input[type=checkbox]:checked+label, .gform_wrapper ul.gfield_radio li input[type=radio]:checked+label{
    color: #00a9c2!important;
}

.gsection_description {
    padding: 20px 0 15px 0!important;
    font-style: italic!important;
    font-size: 16px!important;
}

.gform_wrapper div.validation_error {
    background-color: #ffd9d9!important;
    margin-bottom: 20px!important;
    border-top: none!important;
    border-bottom: none!important;
    padding: 20px 30px!important;
}

.gform_wrapper li.gfield.gfield_error, .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    border-top: none!important;
    border-bottom: none!important;
    padding: 20px 30px!important;
    background-color: #ffd9d9!important;
}

.important {
    background-color: #ffe5e5;
    padding: 20px;
}