/*
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/04.jpg');
    background-size: cover;
    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;
}

.logo {
    width: auto;
    height: 30px;
    margin: 0 auto;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translate(-50%);
}

.label_cobrand {
    top: 50px;
    font-family: Arial;
    font-size: 10px;
    color: #aeaeae;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.overlay {
    background-color: rgba(28, 30, 33, 0.9);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 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: 30px;
    width: 85%;
    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: 20px;
}

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

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;
}

/*RESPONSIVE DESKTOP*/

@media screen and (min-width: 780px) and (max-width: 1023px) {
    body {
        background-image: url(../images/04.jpg);
        background-size: cover;
        box-sizing: border-box;
        background-position: center;
        background-repeat: no-repeat;
        background-color: #000;
        font-family: 'arial', serif;
        width: 100%;
        height: 100%;
        position: relative;
        font-size: 0;
        padding: 0;
        margin: 0;
        /* max-width: 750px; */
    }

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

}

@media screen and (min-width: 1024px) {
    body {
        background-image: url(../images/04.jpg);
        background-size: auto 100% !important;
        background-position: center;
        background-repeat: no-repeat;
        background-color: #000;
        font-family: 'arial', serif;
        height: 100vh;
        position: relative;
        font-size: 0;
        padding: 0;
        margin: auto;
        max-width: none;
        /*
    min-height: none;
    width: none;
*/
    }

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

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

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