
/* reset */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,dl,dt,dd,ol,nav ul,nav li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
ol,ul{list-style:none;margin:0px;padding:0px;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}
table{border-collapse:collapse;border-spacing:0;}
/* start editing from here */
a{text-decoration:none;}
.txt-rt{text-align:right;}/* text align right */
.txt-lt{text-align:left;}/* text align left */
.txt-center{text-align:center;}/* text align center */
.float-rt{float:right;}/* float right */
.float-lt{float:left;}/* float left */
.clear{clear:both;}/* clear float */
.pos-relative{position:relative;}/* Position Relative */
.pos-absolute{position:absolute;}/* Position Absolute */
.vertical-base{	vertical-align:baseline;}/* vertical align baseline */
.vertical-top{	vertical-align:top;}/* vertical align top */
nav.vertical ul li{	display:block;}/* vertical menu */
nav.horizontal ul li{	display: inline-block;}/* horizontal menu */
img{max-width:100%;}
/* end reset */

body {
	font-family: 'Source Sans Pro', sans-serif;
}

@font-face {
    font-family: 'Exo2Soft';
    src: url('../fonts/Exo2-Light.ttf');
    src: url('../fonts/Exo2-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.video-w3l {
    padding: 0;
    background: rgba(0, 0, 0, 0.28);
    min-height: 100vh;
    display: grid;
}
h1 {
    font-size: 1.3em;
    color: #333;
    letter-spacing: 10px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    width: 32%;
    margin: 0 auto;
    border: 2px solid #333;
	padding: 10px;
    margin-top: 60px;
    font-family: 'Exo2Soft';
}
h2 {
    font-family: 'Exo2Soft';
    font-size: 32px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 20px;
}
.wthree-info p{
    font-family: 'Exo2Soft';
	color: #333;
    font-size: 1em;
    letter-spacing: 1px;
    margin: 0em 0 .5em 0;
    font-weight: lighter !important;
}
/*--//background--*/

/*-- spinner effect --*/
.clear-loading {
    text-align: center;
    margin: 3em auto 1em;
    position: relative;
    box-sizing: border-box;
}

.spinner {
    width: 100px;
    height: 100px;
}

.spinner > span,
.spinner > span:before,
.spinner > span:after {
    content: "";
    display: block;
    border-radius: 50%;
    border: 2px solid #333;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

}

.spinner > span {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-left-color: transparent;
    -webkit-animation: effect-2 2s infinite linear;
    -moz-animation: effect-2 2s infinite linear;
    -o-animation: effect-2 2s infinite linear;
    animation: effect-2 2s infinite linear;
}

.spinner > span:before {
    width: 75%;
    height: 75%;
    border-right-color: transparent;
}

.spinner > span:after {
    width: 50%;
    height: 50%;
    border-bottom-color: transparent;
}

@-webkit-keyframes effect-2 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes effect-2 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/*-- //spinner effect --*/

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #eee;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #eee;
}
::-ms-input-placeholder { /* IE 10+ */
  color: #eee;
}
::-moz-placeholder { /* Firefox 18- */
  color: #eee;
}

/*--timer--*/
#countdown{
    width: 465px;
    height: 112px;
    text-align: center;
    /*background: #222;*/
    /*background-image: -webkit-linear-gradient(top, #222, #333, #333, #222);*/
    /*background-image:    -moz-linear-gradient(top, #222, #333, #333, #222);*/
    /*background-image:     -ms-linear-gradient(top, #222, #333, #333, #222);*/
    /*background-image:      -o-linear-gradient(top, #222, #333, #333, #222);*/
    /*border: 1px solid #111;*/
    border-radius: 0px;
    /*box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);*/
    margin: auto;
    padding: 24px 0;
    position: relative;
    /*top: 0; bottom: 0; left: 0; right: 0;*/
    margin-top: 30px !important;
}

/*#countdown:before{*/
/*    content:"";*/
/*    width: 8px;*/
/*    height: 65px;*/
/*    background: transparent !important;*/
/*    background-image: -webkit-linear-gradient(top, #555, #444, #444, #555);*/
/*    background-image:    -moz-linear-gradient(top, #555, #444, #444, #555);*/
/*    background-image:     -ms-linear-gradient(top, #555, #444, #444, #555);*/
/*    background-image:      -o-linear-gradient(top, #555, #444, #444, #555);*/
/*    border: 1px solid #111;*/
/*    border-top-left-radius: 6px;*/
/*    border-bottom-left-radius: 6px;*/
/*    display: block;*/
/*    position: absolute;*/
/*    top: 48px; left: -10px;*/
/*}*/

/*#countdown:after{*/
/*    content:"";*/
/*    width: 8px;*/
/*    height: 65px;*/
/*    background: transparent !important;*/
/*    background-image: -webkit-linear-gradient(top, #555, #444, #444, #555);*/
/*    background-image:    -moz-linear-gradient(top, #555, #444, #444, #555);*/
/*    background-image:     -ms-linear-gradient(top, #555, #444, #444, #555);*/
/*    background-image:      -o-linear-gradient(top, #555, #444, #444, #555);*/
/*    border: 1px solid #111;*/
/*    border-top-right-radius: 6px;*/
/*    border-bottom-right-radius: 6px;*/
/*    display: block;*/
/*    position: absolute;*/
/*    top: 48px; right: -10px;*/
/*}*/

#countdown #tiles{
    position: relative;
    z-index: 1;
}

#countdown #tiles > span{
    width: 92px;
    max-width: 92px;
    font: bold 48px 'Droid Sans', Arial, sans-serif;
    text-align: center;
    color: #111;
    background-color: #ddd;
    background-image: -webkit-linear-gradient(top, #bbb, #eee);
    background-image:    -moz-linear-gradient(top, #bbb, #eee);
    background-image:     -ms-linear-gradient(top, #bbb, #eee);
    background-image:      -o-linear-gradient(top, #bbb, #eee);
    border-top: 1px solid #fff;
    border-radius: 3px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7);
    margin: 0 7px;
    padding: 18px 0;
    display: inline-block;
    position: relative;
}

#countdown #tiles > span:before{
    content:"";
    width: 100%;
    height: 13px;
    background: #111;
    display: block;
    padding: 0 3px;
    position: absolute;
    top: 41%; left: -3px;
    z-index: -1;
}

#countdown #tiles > span:after{
    content:"";
    width: 100%;
    height: 1px;
    background: #eee;
    border-top: 1px solid #333;
    display: block;
    position: absolute;
    top: 48%; left: 0;
}

#countdown .labels{
    width: 100%;
    height: 25px;
    text-align: center;
    position: absolute;
    bottom: 8px;
}

#countdown .labels li{
    width: 102px;
    font-family: 'Exo2Soft';
    font-size: 15px;
    font-weight: bold;
    color: #333;
    /*text-shadow: 1px 1px 0px #000;*/
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
}

.wthree-info{
    text-align: center;
}
/* --//timer-- */
/*--newsletter--*/
.newsletter {
    text-align: center;
    width: 60%;
    margin: 1em auto 3em;
    position: relative;
}
.newsletter h2{
    color: #fff;
    font-size: 1em;
    margin: 0 0 1em 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.newsletter input[type="email"] {
    padding: 13px 15px;
    border: 2px solid #fff;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    font-size: 15px;
    color: #fff;
    background-color: transparent;
    outline: none;
    letter-spacing: 2px;
    border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
	font-family: 'Source Sans Pro', sans-serif;
}
.newsletter input[type="submit"] {
    width: 25%;
    height: 41px;
    color: #333;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #fff;
    position: absolute;
    top: 4px;
    right: 4px;
    padding: 0em;
    border: none;
    outline: none;
    border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
	font-family: 'Source Sans Pro', sans-serif;

}
.newsletter input[type="submit"]:hover {
    background: #999;
    color: #fff;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}
/*--//newsletter--*/
/*--copyright--*/
.copy p {
	color: #333;
    font-family: 'Exo2Soft';
    font-size: 14px;
    letter-spacing: 2px;
    margin: 4em 0 0 0;
    text-align: center !important;
}
.copy p a {
    color: #333;
    text-decoration: none;
}
.copy p a:hover {
    color: #00d2d4;
}



/*--//copyright--*/



/*--responsive--*/
@media(max-width: 1366px) {
    .agile h1 {
        margin-top: 88px !important;
    }
    h1{
        margin-top: 88px !important;
    }
}

@media(max-width: 1080px){
	h1 {
		width: 42%;
	}
	div#simply-countdown-losange {
		max-width: 53%;
	}
	.newsletter {
		width: 70%;
	}
}

@media(max-width: 900px){
	h1 {
		width: 50%;
	}
}
@media(max-width: 800px){
	h1 {
		letter-spacing: 7px;
	}
	.newsletter {
		width: 75%;
	}
	div#simply-countdown-losange {
		max-width: 56%;
	}
}
@media(max-width: 768px){
	.wthree-info p {
		font-size: 1.3em;
	}
	span.simply-amount {
		font-size: 50px;
	}
	h2 {
		font-size: 28px;
		margin-top: 15px;
		margin-bottom: 15px;
	}
}
@media(max-width: 736px){
	div#simply-countdown-losange {
		max-width: 58%;
	}
	h1 {
		width: 52%;
		letter-spacing: 5px;
	}
}
@media(max-width: 667px){
    
	div#simply-countdown-losange {
		max-width: 65%;
	}
	.newsletter {
		width: 82%;
	}
}
@media(max-width: 600px){
    
	h1 {
		width: 54%;
		letter-spacing: 4px;
	}
}
@media(max-width: 568px){
	div#simply-countdown-losange {
		max-width: 70%;
	}
	span.simply-amount {
		font-size: 40px;
	}
}
@media(max-width: 480px){
    
	div#simply-countdown-losange {
		max-width: 80%;
	}
	h1 {
		width: 65%;
		letter-spacing: 4px;
		font-size: 1.3em;
        margin-top: 125px !important;
	}
	.newsletter {
		width: 92%;
	}
	.newsletter input[type="submit"] {
		width: 35%;
	}

    .video-w3l {
        min-height: 120vh;
        display: inline-block;
        background: none;
    }
    .agile h1{
        margin-top: 125px !important;
    }

}
@media(max-width: 414px){
	h1 {
		width: 70%;
	}
	div#simply-countdown-losange {
		max-width: 95%;
		margin: 1vw 4vw;
	}
	.copy p {
		margin: 2em 0 0 0;
	}
	.simply-section {
		padding: 2vw 1vw;
	}
    .spinner{
        visibility: hidden;
        /*display: none;*/
        margin-left: 150px;
    }
}
@media(max-width: 380px){
    body{
        background-image:url("../video/1-copy.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        /*background-position: 50% 50%;*/
    }
    div{
        background-image:none !important;
    }
    
	h1 {
		width: 100%;
	}
	div#simply-countdown-losange {
		max-width: 100%;
		margin: 1vw 3vw;
	}
	span.simply-amount {
		font-size: 30px;
	}
	span.simply-word {
		letter-spacing: 2px;
	}
	.copy p {
		font-size: 15px;
	}
    .video-w3l {
        min-height: 120vh;
        display: inline-block;
        background: none;
        background-position: 53% 50% !important;
    }
    .agile h1{
        width: 100%;
        /*margin-left: 50px;*/
        margin-top: 100px !important;
    }
    .spinner{
        visibility: hidden;
        /*display: none;*/
        margin-left: 150px;
    }
    .wthree-info{
        width: 100%;
    }
    .wthree-info h2{
        width: 100%;
    }
    #countdown{
        /*width: 100%;*/
    }
    .labels li{
        /*display: list-item !important;*/
    }
    .copy p{
        width: 100%;
        margin-top:30px;
    }
}
@media(max-width: 320px){
	h1 {
		width: 90%;
	}
}

/*--//responsive--*/