/*
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,
center,
dl,
dt,
dd,
ol,
ul,
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: inherit;
    box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */

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

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

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

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

img {
    max-width: 100%;
}

/*
globalrules
*/

html {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-size: 62.5%;
}

body {
    background-image: url('../images/bg.jpg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    font-family: 'arial', serif;
    width: 100%;
    min-height: 100vh;
    position: relative;
    font-size: 0;
    padding: 0;
    margin: auto;
    max-width: 750px;
}

.overlay {
    background-color: rgba(28, 30, 33, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.label_cobrand {
	position: absolute;
	z-index: 9;
	width: 100%;
	text-align: center;
	font-size: 10px;
	color: #fff;
	padding: 10px 0;
}

.box {
    position: relative;
    margin: auto;
    padding: 35vh 0;
    width: 90%;
    text-align: center;
}

.box .captionS {
    font-size: 2.2rem;
    color: #fff;
    text-decoration: underline;
}

.box a div .button {
    font-size: 31px;
    padding: 22px;
    width:70%;
    background: #15509a;
    color: #fff;
    margin: 3vh 0 10px 0;
    display: inline-block;
    text-decoration: none;
    border-radius: 8px;
    animation-name: button;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
#click_zone{
    height:150px;
/*    position:relative;
    bottom:192px;*/
}
@keyframes button{
    0%{color: rgba( 255, 255, 255, 0 );}
    50%{color: rgba( 255, 255, 255, 1 );}
    100%{color: rgba( 255, 255, 255, 0 );}
}
.box .legal .tarif {
    font-size: 1.2rem;
    color: #fff;
}
.legal{
    margin-top:2px;
}

footer {
    text-align: center;
    padding: 12px;
    position: relative;
    margin-top: 2vh;
}

.sub-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

footer ul {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: auto;
}

footer ul li {
    display: inline;
    font-size: 10px;
    color: #a5a5a5;
}

footer ul li a {
    color: #a5a5a5;
    text-decoration: none;
}

footer ul li.separator:last-child {
    display: none;
}

footer img {
    max-width: 180px;
    margin: 12px auto;
    display: block;
}

footer img:first-child {
    max-width: 120px;
    margin: 0 auto 12px auto;
}
