/*START 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-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;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
}

* {
    box-sizing: border-box;
}

ul,
ol {
    margin: 0 0 30px 20px;
}

li {
    margin: 0 0 10px;
}

strong,
b {
    font-weight: 700;
}

/*END RESET*/

body {
    font-family: "Funnel Sans", sans-serif;
    background: #F4F2EE;
    font-size: 15px;
    line-height: 22px;
}

#main-container {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

h1,
h2,
h3 {
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    width: 100%;
    position: relative;
}

h2 {
    font-size: 30px;
    line-height: 36px;
    margin: 0 0 40px;
    color: #202024;
}

h3 {
    font-size: 26px;
    line-height: 28px;
    margin: 0 0 20px;
    color: #202024;
}

p {
    font-size: 15px;
    line-height: 22px;
}

.content-page {
    padding: 90px 20px 0;
    z-index: 0;
    position: relative;
}

.content-page__container {
    width: 100%;
    max-width: 1050px;
    margin: auto;
}

.content-page__container p {
    margin: 0 0 20px;
}

/* START - Bloc Encats bleu */
.bloc-list {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
}

.item-bloc {
    width: 31%;
    max-width: 322px;
    background: #202024;
    color: #fff;
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-radius: 10px;
    padding: 15px 10px 25px 30px;
    box-shadow: 0px 0px 0px 10px rgba(255, 255, 255, 0.4);
}

.item-bloc:before {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    opacity: .5;
    z-index: 0;
    width: 550px;
    height: 550px;
    background-color: rgba(76, 196, 243, 0.5);
    left: -20px;
    top: -50px;
    -webkit-filter: blur(80px);
    filter: blur(80px);
    z-index: -1;
}

.icon-bloc {
    min-height: 50px;
    line-height: 0;
}

.icon-bloc img {
    max-width: 30px;
}

.item-bloc h3 {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 20px;
    color: #fff;
}

.item-bloc p {
    margin: 0;
}

/* END - Bloc Encats bleu */


/*Tablette*/
@media only screen and (max-width : 1024px) {
    .content-page {
        padding: 60px 20px 0;
        z-index: 0;
        position: relative;
    }

    .bloc-list {
        gap: 35px;
    }

    .item-bloc {
        width: 30%;
    }
}


/*Mobile*/
@media only screen and (max-width : 767px) {
    h2{
        font-size: 25px;
        line-height: 28px;
    }

    .item-bloc {
        width: 100%;
    }
}