/**************************************************

    Template stylesheet

**************************************************/

/*
    Body
==============================*/

html, body {
    height: 100%;
}

body {
    margin: 0;
    overflow: hidden;  

    font: 18px/1.4 'Open Sans', Arial, Helvetica, sans-serif;

    background-position: left top;
    background-repeat: no-repeat;
	
	
}


/*
    Panels
==============================*/

.panel {
    position: absolute;
    z-index: 0;
    background: #fff;

    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;

    -moz-box-shadow: 0 0 10px #fff;
    -webkit-box-shadow: 0 0 10px #fff;
    box-shadow: 0 0 10px #fff;
}


/*
    Content
==============================*/

.content {
    max-width: 80%;
    margin: 100px;

    float: left;

    position: relative;
    z-index: 1;    
}


/*
    Headings
==============================*/

h1 {
    font-size: 72px;
    line-height: 56px;
    font-weight: 300;    
}

h2 {
    margin: 15px 0 50px;    

    font-size: 30px;
    line-height: 30px;    
    font-weight: 300;    
}


/*
    Subscription form
==============================*/

.subscribe-form {
    margin-top: 50px;
    position: relative;
}

.subscribe-email {
    width: 300px;
    height: 26px;
	margin-top: -1px;
    padding: 12px 10px;

    vertical-align: top;

    border: 0;
    border-radius: 0; 

    outline: none;    
}

.subscribe-submit {
    height: 50px;
    padding: 12px 10px;

    vertical-align: top;  

    color: #fff;

    background: #34247A;

    border: 0;
    border-radius: 0;
    
    -webkit-appearance: none; 
}

.subscribe-tooltip {
    width: 275px;
    margin-top: 10px;
    padding: 2px 10px;    

    position: absolute;
    left: 0;
    top: 100%;    

    text-align: center;
    font-size: 16px;
}


/*
    Social links
==============================*/

.social {    
    min-height: 100px;
    margin: 50px 0;
}

.social > a {
    display: inline-block;
    * display: inline;
    zoom: 1;
    width: 64px;
    height: 64px;
    margin-right: 8px;

    vertical-align: top;    
    
    background-position: top left;
    background-repeat: no-repeat;
}

.social > a:hover {
    background-position: -64px 0;
}

.social-twitter {
    background-image: url(../img/social-twitter.png);
}

.social-facebook {
    background-image: url(../img/social-facebook.png);
}

.social-google {
    background-image: url(../img/social-google.png);
}

.social-vimeo {
    background-image: url(../img/social-vimeo.png);
}

.social-skype {
    background-image: url(../img/social-skype.png);
}

.puce {
	    vertical-align:bottom;
}

/*
    Countdown
==============================*/

.countdown {
    margin: 100px 0 0 25px;    
    float: left;    

    position: relative;
    z-index: 99;      
}

.countdown > div {
    padding-bottom: 50px;

    font-size: 40px;
    line-height: 56px;    
    font-weight: 300;
}

.countdown-number {
    display: inline-block;    
    * display: inline;
    zoom: 1;
    padding: 0 10px;
    
    color: #1178D2;    
    background: #fff;
}

.countdown-text {
    display: inline-block;
    * display: inline;
    zoom: 1;
    * margin-left: 5px;

    vertical-align: top;

    font-size: 32px;
    line-height: inherit;    
}


/*
    Responsiveness
==============================*/

@media only screen and (max-width: 900px) {
    .content {
        margin: 50px;
    }

    .subscribe-email {
        width: 300px;
        padding: 8px 5px;

        font-size: 16px;
    }

    .subscribe-submit {
        height: 42px;
        padding: 8px 5px;
        font-size: 16px;
    }

    .subscribe-tooltip {
        width: 240px;        
    }
}

@media only screen and (max-width: 767px) {
    body {
        padding: 30px;
    }

    .content {
        max-width: none;
        margin: 0;

        float: none;        
    }

    .countdown {        
        margin: 0;
        padding: 0;

        float: none;
    }

    .social a {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .hide-on-phones {
        display: none;
    }
}

@media only screen and (max-width: 479px) {
    h1 {
        font-size: 48px;
        line-heiht: 36px;
    }

    h2 {
        margin-top: 0;
        font-size: 24px;
    }

    .subscribe-email {        
        width: 180px;
        padding: 5px 3px 4px;

        font-size: 12px;
    }

    .subscribe-submit {  
        height: 35px;      
        padding: 5px 3px;
        font-size: 12px;
    }

    .subscribe-tooltip {
        width: 176px;
        padding: 2px 5px;
    }    
}