/* 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;
}


@font-face {
    font-family: "Baloo2";
    src: url('fonts/Baloo2-Regular.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Baloo2";
    src: url('fonts/Baloo2-Bold.ttf') format("truetype");
    font-weight: 700;
    font-style: normal;
}

html {
    background-color: #03051F;
    color:#fff;
    font-family: 'Baloo2', sans-serif;
    font-size: 14px;
}

body {
    padding-top:50px;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
}

.title {
    display: inline-flex;
    align-items: center;
    gap:2rem;
}

.title img {
    height:5rem;
}

h1 {
    font-weight: 700;
    font-size:5rem;
}

h2 {
    font-size:3rem;
    font-weight: 300;
    margin-top: 30px;
    line-height: 4rem;
}

h3 {
    font-size:2rem;
    text-align: center;
    padding: 10px;
    line-height: 2.5rem;
}

.perso {
    max-height: 400px;
    max-width: 100%;
}

.right {
    text-align: right;
}
.center {
    text-align: center;
}


.cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:40px;
    margin:0 60px;
    padding:60px 0;
}


.card img {
    width: 100%;
    height: 170px;
    object-fit: contain;
}

.card .bloc {
    padding:20px;
    background-color: #35374C;
    border-radius: 15px;;
}

.captures {
    background-color: #4E5062;
    padding-top:60px;
}

.capture {
    padding:20px;
}
.capture img {
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    width: 800px;
    max-width: 80%;
}

.tarif {
    padding:60px 0;
}

.twocol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:80px;
    margin-top:40px;
    padding: 0 40px;
}

.bt {
    background-color: #FFFF47;
    color: #03051F; 
    border-radius: 30px;
    padding:10px 20px;
    font-size:1.5rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
}

.li-offre span {
    color: #FFFF47;
}
.li-offre li {
    display: flex;
    padding:10px;
    font-size:1.4rem;
    gap:15px;
    line-height: 1.6rem;
}

.opt-title {
    font-size : 1.6rem;
    padding:10px;
    text-align: center;
    margin-bottom: 40px;
}

.li-option li {
    border: solid 1px #FFFF47;
    border-radius: 30px;
    padding:15px 20px;

    font-size:1.2rem;
    margin-bottom: 20px;
    line-height: 1.5rem;
}
footer {
    padding:80px 0;
    background-color: #1C1E35;
    font-size:1.4rem;
    color: #CDCDD2;
}

footer .inner {
    display: flex;
    justify-content: space-between;
    gap:60px;
    padding: 10px;

}

.mail {
    font-size: 1.4rem;
    color: #CDCDD2;
    padding-right: 20px;
}

footer a, b {
    color: #CDCDD2;
    font-weight: 700;;
    padding: 0 5px;
}
.t200 {
    margin-top:-200px;
}

@media (max-width:740px) {
    .cards {
        grid-template-columns: 1fr 1fr;
        gap:30px;
        margin:0 20px;
        padding:40px 0;
    }
    .card img {
        height:70px;
    }
    
    h1 { font-size:3rem; }
    h2 { font-size: 1.6rem; line-height: 2.2rem;}
    h3 { font-size: 1.2rem; line-height: 1.4rem;}

    .title img { height:4rem;}
    .t200 { margin-top: -60px;}

    .twocol {
        grid-template-columns:  1fr;
    }
    footer .inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width:350px) {
    .cards {
        grid-template-columns: 1fr ;
        gap:40px;
        margin:0 40px;
    }
    .card img {
        height:100px;
    }
}