* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    font-family: Poppins, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
}

body {
    background-color: var(--snaaf-color-primary);
}

.site-container {
    color: var(--snaaf-color-primary);
    background-color: #fff;
}

.container {
    max-width: 1157px;
    margin: 0 auto;
    padding: 40px 0;
}

.container-block {
    padding: 30px 0;
}

p, ul,
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

img {
    vertical-align: middle;
}

#backToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    border: none;
    outline: none;
    color: lightgrey;
    cursor: pointer;
    font-size: 45px;
    width: 45px;
    height: 45px;
    opacity: 0.5;
}
  
#backToTop:hover, #backToTop:active, #backToTop:focus {
    opacity: 1;
    color: var(--snaaf-color-secondary);
}

.text-center {
    text-align: center;
}
.text-center > * {
    margin: 0 auto;
}

.my-5 {
    margin-top: 48px;
    margin-bottom: 48px;
}

.heading-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.value-items {
    margin-top: 33px;
    display: flex;
    flex-wrap: wrap;
}
.value-item {
    flex: 0 0 33.3333333333%;
    margin-bottom: 90px;
}
.value-item .icon {
    width: 100%;
    height: 90px;
    margin: 0 auto 30px auto;
    background-repeat: no-repeat;
    background-position: center center;
}
.value-item .libelle {
    text-transform: uppercase;
    font-size: 1.5em;
    font-weight: 500;
}

.contenu {
    font-size: 17px;
    line-height: 2;
}
.contenu strong,
.contenu b {
    font-weight: 700;
    color: var(--snaaf-color-secondary);
}
.contenu ul {
    padding-left: 34px;
    line-height: 2;
    margin-bottom: 20px;
}
.contenu li {
    list-style: url(../img/list-puce.png);
    padding-left: 6px;
}
.contenu p {
    margin-bottom: 16px;
}

.heading-page {
    margin-bottom: 40px;
}

.mt-5 {
    margin-top: 20px;
}

.mt-8 {
    margin-top: 32px;
}

@media (max-width: 1207px) {
    .container {
        max-width: 100%;
        padding: 40px 25px;
    }
    .value-item {
        flex: 0 0 50%;
    }
}