@charset "UTF-8";
:root {
  --primaryColor: rgb(47, 74, 206);
  --secondaryColor: #f9bb04;
  --ternaryColor: #e31e24;
  --lightPrimaryColor: #eaedfd;
  --lightSecondaryColor: #ffeebc;
  --lightTextColor: whitesmoke;
  --background-color: whitesmoke;
  --light-text-color: #aeb9f0;
  --lightColor: whitesmoke;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

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;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  vertical-align: baseline;
}

ul {
  list-style: none;
}

/* END SECTION CSS RESET */
/* ----- SECTION NAV ----- */
header {
  width: 100vw;
}

a,
a:active,
a:link {
  text-decoration: none;
  color: var(--primaryColor);
}

a:hover {
  color: var(--secondaryColor);
}

/* ----- END SECTION NAV ----- */
p {
  font-size: 16px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.subtitle {
  font-size: 16px;
}

.link {
  font-size: 14px;
  text-decoration: underline !important;
  text-underline-offset: 8px;
  text-decoration-color: red !important;
  text-transform: uppercase;
  font-weight: 600;
}
.link-black {
  color: black;
}

.shadow {
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.6);
}

.link:hover {
  color: var(--primaryColor);
  text-decoration-color: var(--primaryColor);
}

h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 0;
}

h2 {
  color: var(--primaryColor);
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  margin: 36px;
}

h3 {
  font-size: 22px;
}

.color-primary {
  color: var(--primaryColor);
}
.color-primary-light {
  color: var(--lightPrimaryColor);
}
.color-secondary {
  color: var(--secondaryColor);
}
.color-ternary {
  color: var(--ternaryColor);
}
.color-text-light {
  color: var(--light-text-color);
}
.color-white {
  color: white;
}

.video-content {
  background-color: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.video-section h1 {
  color: var(--primaryColor);
  font-weight: bold;
  font-size: 36px;
  text-align: center;
}

.video-section p {
  color: var(--primaryColor);
  font-size: 16px;
  text-align: center;
  margin-top: 16px;
  font-weight: bold;
}

.section-content {
  width: 80%;
  margin: auto;
}

.section-content h2 {
  color: var(--primaryColor);
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  margin: 32px;
}

.tiles-container {
  display: grid;
  grid-template-columns: repeat(3, 360px);
  gap: 16px;
  justify-content: center;
}

.tile {
  height: 300px;
  width: 360px;
  background-color: whitesmoke;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.tile h3 {
  font-size: 24px;
  color: var(--primaryColor);
  width: 300px;
}

.tile p {
  color: var(--primaryColor);
  width: 250px;
}

.background-color-secondary {
  background-color: var(--secondaryColor);
}

.detail-container {
  display: grid;
  grid-template-columns: repeat(2, 525px);
  gap: 32px;
  justify-content: center;
}

.detail-card {
  height: 180px;
  width: 525px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 32px;
}

.detail-card .bloc-text h3 {
  font-size: 24px;
  color: var(--primaryColor);
}

.detail-card .bloc-text p {
  margin-top: 16px;
  font-style: italic;
  color: var(--primaryColor);
}

.icon {
  height: 100px;
  width: 100px;
  border-radius: 50px;
}
.icon-burger-menu {
  height: 48px;
  width: 48px;
}

/* COMMENT CA SE PASSE */
.ccsp-card {
  background-color: white;
  height: 80%;
  width: 300px;
  border-radius: 25px 25px 0 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.ccsp-card:nth-child(2n) {
  align-self: flex-end;
}

.ccsp-card .img {
  height: 70px;
  width: 70px;
  background-color: grey;
  border-radius: 50%;
}

.ccsp-card .title {
  font-size: xx-large;
}

.ccsp-card .text {
  text-align: center;
}

/* ILS NOUS FONT CONFIANCE */
.bloc {
  min-height: 300px;
  padding: 64px 32px;
  position: relative;
}
.bloc-content {
  width: 1140px;
  margin: auto;
  position: relative;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  justify-content: center;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 200px;
  gap: 16px;
}
.card-content-icon {
  display: grid;
  grid-template-columns: 1fr 3fr;
}

.card .img {
  width: 200px;
  height: 100px;
  background-color: grey;
}

/* Centre de prévention */
.img-cover {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: grey;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}

.container-fluid {
  width: 100%;
  height: 600px;
  position: relative;
}

.pos-absolute {
  position: absolute;
}
.pos-left-0 {
  left: 0;
}
.pos-right-0 {
  right: 0;
}
.pos-top-0 {
  top: 0;
}
.pos-top-50 {
  top: 50%;
}
.pos-bottom-0 {
  bottom: 0;
}

.w-100 {
  width: 100%;
}
.w-80 {
  width: 80%;
}
.w-60 {
  width: 60%;
}
.w-50 {
  width: 50%;
}
.w-40 {
  width: 40%;
}

.h-80 {
  height: 80%;
}

.h-80 {
  height: 80%;
}
.h-90 {
  height: 90%;
}

.column-1-2 {
  grid-column: 1/3;
}

.bg-red {
  background-color: red;
}
.bg-blue {
  background-color: blue;
}
.bg-grey {
  background-color: grey;
}
.bg-white {
  background-color: white;
}
.bg-primary {
  background-color: var(--primaryColor);
}
.bg-light, .bg-light-hover:hover {
  background-color: var(--lightColor);
}
.bg-light-primary, .bg-light-primary-hover:hover {
  background-color: var(--lightPrimaryColor);
}
.bg-light-secondary, .bg-light-secondary-hover:hover {
  background-color: var(--lightSecondaryColor);
}
.bg-aquarel {
  background-image: url("./assets/images/watercolor-5062356_1280.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-prevention {
  background-image: url(./assets/images/woman-grayscale.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-samusocial {
  background-image: url(./assets/images/black-4706960_640.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-homeless {
  background-image: url(./assets/images/homeless-8265565_640.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-laptop {
  background-image: url(./assets/images/laptop-1478822_1280.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.fw-300 {
  font-weight: lighter;
}
.fw-600 {
  font-weight: 600;
}
.fw-800 {
  font-weight: 800;
  color: white;
  background-color: var(--primaryColor);
  padding: 16px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.grayscale {
  filter: grayscale(1);
}
.grayscale-none {
  filter: grayscale(0);
}

.p-0 {
  padding: 0;
}
.p-1 {
  padding: 16px;
}
.p-2 {
  padding: 32px;
}
.p-3 {
  padding: 40px;
}

.caption {
  color: gray;
}

.m-0 {
  margin: 0;
}
.m-1 {
  margin: 16px;
}
.m-2 {
  margin: 32px;
}
.m-auto {
  margin: auto;
}

.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}
.mb-4 {
  margin-bottom: 32px;
}

.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.mt-4 {
  margin-top: 32px;
}

.highlight {
  font-weight: bold;
  color: var(--primaryColor);
}

.f-size-large {
  font-size: 21px;
}
.f-size-text-small {
  font-size: 16px;
}

.float-left {
  float: left;
  width: 500px;
  height: 300px;
  margin: 16px 16px 16px 0;
}

.grid {
  display: grid;
  gap: 16px;
  justify-content: center;
}
.grid-1-2 {
  grid-template-columns: 1fr 2fr;
}
.grid-2 {
  grid-template-columns: 1fr 1fr;
}
.grid-2-1 {
  grid-template-columns: 2fr 1fr;
}
.grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.grid-4 {
  grid-template-columns: repeat(4, 230px);
}
.grid-item {
  min-height: 300px;
}

.gap-1 {
  gap: 8px;
}
.gap-2 {
  gap: 16px;
}
.gap-3 {
  gap: 24px;
}

.d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.flex-column {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-end {
  align-self: flex-end;
}

.align-items-start {
  align-items: start;
}
.align-items-center {
  align-items: center;
}
.align-self-start {
  align-self: flex-start;
}
.align-self-end {
  align-self: flex-end;
}

.justify-content-end {
  justify-content: end;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-around {
  justify-content: space-around;
}
.justify-content-between {
  justify-content: space-between;
}

.split-background {
  background-image: linear-gradient(0, var(--primaryColor) 35%, rgba(24, 61, 61, 0) 35%), url(./assets/images/2387-min-scaled.jpg);
  background-size: contain;
  height: 600px;
}

.image {
  width: 500px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-fluid {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-icon {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-icon-small {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-small {
  width: 150px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

.rounded {
  border-radius: 25px;
}
.rounded-top {
  border-radius: 25px 25px 0 0;
}
.rounded-circle {
  border-radius: 50%;
}

.button {
  transition: transform 0.2s ease-in-out;
}
.button-icon {
  background-color: var(--primaryColor);
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: none;
  fill: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-icon svg {
  width: 20px;
}

.fill-primary {
  fill: var(--primaryColor);
}
.fill-secondary {
  fill: var(--secondaryColor);
}
.fill-white {
  fill: white;
}

.svg-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.svg-icon {
  transform: scale(0.5);
}

.button:hover {
  transform: scale(1.04);
}

nav {
  position: relative;
  margin: auto;
  padding: 32px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.nav-ul-show {
  transform: translate(-100%, 0);
}

#burger-icon {
  cursor: pointer;
}

@media screen and (max-width: 576px) {
  .grid-1-2 {
    grid-template-columns: 300px;
  }
  .grid-2 {
    grid-template-columns: 300px;
  }
  .grid-3 {
    grid-template-columns: 300px;
  }
  .grid-4 {
    grid-template-columns: 300px;
  }
  .column-1-2 {
    grid-column: auto;
  }
  .bg-split {
    background: var(--primaryColor);
  }
  nav {
    padding: 32px 0;
  }
  nav ul {
    transition: transform 0.4s ease-in-out;
    position: absolute;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100vw;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(245, 245, 245, 0.978);
    padding: 32px;
  }
  nav ul li,
  nav ul a {
    color: var(--primaryColor);
    font-size: 18px;
    padding: 16px;
  }
  nav ul li:hover,
  nav ul a:hover {
    background-color: var(--lightPrimaryColor);
    color: var(--primaryColor);
  }
  .nav-ul-show {
    transform: translate(-100%, 0);
  }
  #burger-close-icon {
    position: absolute;
    top: 32px;
    right: 32px;
    cursor: pointer;
  }
  .bloc {
    min-height: 300px;
    padding: 64px 0;
    position: relative;
  }
  .bloc-content {
    position: relative;
    width: 340px;
  }
  .video-content {
    width: 340px;
  }
  .card-content-icon {
    display: flex !important;
    flex-direction: column !important;
  }
}
@media screen and (min-width: 576px) {
  nav {
    padding: 32px 0;
  }
  nav ul {
    transition: transform 0.4s ease-in-out;
    position: absolute;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100vw;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(245, 245, 245, 0.978);
    padding: 32px;
  }
  nav ul li,
  nav ul a {
    color: var(--primaryColor);
    font-size: 18px;
    padding: 16px;
  }
  nav ul li:hover,
  nav ul a:hover {
    background-color: var(--lightPrimaryColor);
    color: var(--primaryColor);
  }
  #burger-close-icon {
    position: absolute;
    top: 32px;
    right: 32px;
    cursor: pointer;
  }
  .bloc-content {
    width: 540px;
    position: relative;
  }
  .bg-split {
    background: var(--primaryColor);
  }
  .grid-1-2 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) {
  .bloc {
    min-height: 300px;
    padding: 64px 32px;
    position: relative;
  }
  .bloc-content {
    width: 720px;
    margin: auto;
    position: relative;
  }
  .grid-1-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .bg-split {
    background-color: var(--primaryColor);
  }
}
@media screen and (min-width: 992px) {
  nav {
    position: relative;
    margin: auto;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  nav ul {
    width: auto;
    height: auto;
    flex-direction: row;
    background-color: white;
    right: auto;
    top: auto;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 16px;
  }
  nav ul li,
  nav ul a {
    color: var(--primaryColor);
    font-size: 16px;
    padding: 0;
  }
  nav ul li:hover,
  nav ul a:hover {
    background-color: white;
    color: var(--primaryColor);
  }
  #burger-icon {
    display: none;
  }
  .grid {
    display: grid;
    gap: 16px;
    justify-content: center;
  }
  .grid-1-2 {
    grid-template-columns: 1fr 2fr;
  }
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-2-1 {
    grid-template-columns: 2fr 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-item {
    min-height: 300px;
  }
  #burger-close-icon {
    display: none;
  }
  .bloc-content {
    width: 940px;
    position: relative;
  }
  .bg-split {
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 51%, rgb(47, 74, 206) 51%, rgb(47, 74, 206) 100%);
  }
}
@media screen and (min-width: 1200px) {
  .bloc-content {
    width: 1140px;
    position: relative;
  }
}/*# sourceMappingURL=style.css.map */