/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
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;
}

.fullpage
{
    width: 100vw;
    height: 94vh;
    background: url(../images/fond.webp) no-repeat;
    background-size: cover;
    overflow: hidden;
}

.fond_blanc
{
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
}
.bandeau
{
    height: 7vh;
    background-color: white;
    width: 100%;
    box-shadow: -5px 5px 15px rgb(155, 155, 155);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.logo
{
    width: 250px;
}
.logo img
{
    width: 100%;
}
.triche
{
    width: 250px;
    height: 100%;
}
h1
{
    font-size: calc(1em + 1vw);
    font-family: 'Lato', sans-serif;
    color: #15427c;
    text-transform: uppercase;
    font-weight: bold;
}

.contenu
{
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
p
{
    font-size: calc(0.5em + 0.5vw);
}

.bande
{
    width: 80%;
    height: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;
}
button.learn-more {
    font-weight: 600;
    color: #382b22;
    text-transform: uppercase;
    padding: 1.25em 2em;
    background: #ffffff;
    /* border: 1px solid #fdc11e; */
    border-radius: 1em;
    transform-style: preserve-3d;
    transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1);
    height: 90%;
    width: 300px;
}
button.learn-more::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fdc11e;
    border-radius: inherit;
    box-shadow: 0 0 0 1px rgba(21, 66, 124, 0.4), 0 0.625em 0 0 rgba(21,66,124,0.4);
    transform: translate3d(0, 0.75em, -1em);
    transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
}
button.learn-more:hover {
    background: #f0f0f0;
    transform: translate(0, 0.25em);
}
button.learn-more:hover::before {
    box-shadow: 0 0 0 1px rgba(21, 66, 124,1), 0 0.5em 0 0 rgba(21, 66, 124,1);
    transform: translate3d(0, 0.5em, -1em);
}
button.learn-more:active {
    background: #ffffff;
    transform: translate(0em, 0.75em);
}
button.learn-more:active::before {
    box-shadow: 0 0 0 2px #ffffff, 0 0 #ffffff;
    transform: translate3d(0, 0, -1em);
}

.btn {
    padding: 12px 24px;
    border-radius: 4px;
    color: #fff;
    outline: none;
    border: none;


}
.btn::moz-focus-inner {
    border: none;
}
.btn:active {
    position: relative;
    top: 1px;
}

.lien
{
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    text-decoration: none;
    color: rgba(21, 66, 124,1);
    font-family: 'Lato', sans-serif;
}
.B1
{
    width: 100%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.B1 img
{
    width: 100%;
}

.B2
{
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border-top: 1px solid #000000;
}

.aside
{
    width: 70px;
    height: 70px;
    border-radius: 15px;
    border: 4px solid #fff;
    background:#fdc11e ;
    position: absolute;
    top: 15%;
    left: 1%;
    padding: 0.5%;
}
.aside2
{
    width: 70px;
    height: 70px;
    border-radius: 15px;
    border: 4px solid #fff;
    background:#fdc11e ;
    position: absolute;
    top: 25%;
    left: 1%;
    padding: 0.5%;
}
iframe
{
    width: 100%;
    height: 93%;
}
@media screen and (max-width: 1600px)
{
    .bande
    {
        width: 100%;
    }
    .btn.learn-more
    {
        width: 200px;
    }
}
@media screen and (max-width: 750px)
{
    .bande
    {
        width: 100%;
    }
    .btn.learn-more
    {
        width: 150px;
        height: 200px;
    }
}
