/* HERO BANNER STYLING */
#hero_banner {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

#hero_banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#hero_banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#hero_banner > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 75%;
  z-index: 2;
}

#hero_banner > div > h1 {
  font-family: "Ruda", sans-serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: var(--background-color);
}
/* END */

#brief {
  margin-top: 6rem;
  margin-left: 8rem;
  margin-right: 8rem;
  margin-bottom: 6rem;
}
.brief_title {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.brief_title > h2 {
  font-family: "Ruda", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--text-color);
  text-align: center;
  width: 50%;
  margin: 0;
}
.brief_subtitle {
  font-family: "Archivo", sans-serif;
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: var(--text-color);
  text-align: center;
  margin: 0;
  margin-top: 1.25rem;
}

#specs {
  margin-left: 11rem;
  margin-right: 11rem;
}
.specs_container {
  display: flex;
  justify-content: space-between;
}
.specs_container > div {
  width: 45%;
}
.specs_container > .decorations {
  position: relative;
  max-width: 600px;
  height: 700px;
  margin-left: auto;
  margin-right: auto;
}
.specs_container > .decorations > img {
  position: absolute;
  border-radius: var(--border-radius);
}
.specs_container > .decorations > img:nth-child(1) {
  top: 0;
  left: 0;
  z-index: 0;
}
.specs_container > .decorations > img:nth-child(2) {
  top: 0;
  right: 0;
  z-index: 1;
  object-fit: cover;
  width: 260px;
  height: 290px;
}
.specs_container > .decorations > img:nth-child(3) {
  top: 50%;
  left: 0;
  width: 65%;
  transform: translateY(-50%);
  z-index: 2;
  width: 410px;
  height: 320px;
}
.specs_container > .decorations > img:nth-child(4) {
  bottom: 0;
  left: 25%;
  transform: translateX(-50%);
  z-index: 3;
  object-fit: cover;
  width: 220px;
  height: 250px;
}

.specs_container > .content {
  font-family: "Archivo", sans-serif;
  font-size: 1.25rem; /* 20px */
  line-height: 2rem; /* 28px */
  font-weight: 300;
}

.specs_container > .content > .specs_description > h3 {
  font-family: "Ruda", sans-serif;
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: var(--text-color);
  font-weight: 900;
}
.specs_container > .content > .specs_description > p {
  font-family: "Archivo", sans-serif;
  font-size: 1.25rem; /* 20px */
  line-height: 1.875rem; /* 28px */
  font-weight: 300;
}

.specs_keypoints > p {
  font-weight: 700;
  margin: 0;
}

.specs_keypoints > ul {
  list-style: none; /* Supprime les puces par défaut */
  padding-left: 0;
  width: 80%;
}

.specs_keypoints > ul > li {
  position: relative;
  padding-left: 2rem; /* Espace pour l'icône */
  margin: 1rem 0;
}

.specs_keypoints > ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* Centre l'image verticalement */
  width: 1.25rem; /* Taille de l'icône */
  height: 1.25rem;
  background-image: url("../images/icons/checkmark_red.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#specs > .summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 2rem;
  margin-top: 8rem;
  margin-bottom: 3.5rem;
  text-align: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

#specs .summary_item {
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.875rem;
}
#specs .summary_item > img {
  height: 85px;
}

#specs .summary_item .summary_item_text > p {
  margin: 0 auto;
}

#specs .summary_item .summary_item_text > p:first-child {
  font-family: "Ruda", sans-serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 800;
  color: var(--text-color);
}
#specs .summary_item .summary_item_text > p:last-child {
  line-height: 1.25rem;
}

.networks {
  display: flex;
  justify-content: space-between;
  width: 65%;
  margin: 5rem auto;
  align-items: center;
  padding: 0;
}
.networks > li {
  list-style: none;
}

.separator {
  height: 1px;
  background-color: var(--text-color);
  margin: 11rem 6rem;
}

#our_platform > hr.separator {
  margin: 0 auto 5rem auto !important;
}

#prestation {
  padding-left: 15rem;
  padding-right: 15rem;
  padding-bottom: 10rem;
}

.prestation_text,
.prestation_keypoints {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 6rem;
}

.prestation_text > div:first-child > h3 {
  font-family: "Ruda", sans-serif;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 900;
  color: var(--text-color);
  margin: 0;
}
.prestation_text > div:first-child > p {
  font-family: "Ruda", sans-serif;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
}
.prestation_text > div:last-child > p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin: 0;
}
.prestation_keypoints {
  margin-top: 7rem;
}
.prestation_keypoints > div > div {
  display: grid;
  column-gap: 2rem;
  text-align: center;
  font-family: "Ruda", sans-serif;
  line-height: 1.25rem;
  color: var(--text-color);
}
.prestation_keypoints > div:first-child > div {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.prestation_keypoints > div:last-child > div {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.prestation_keypoints > div > p {
  font-family: "Ruda", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin: 0;
  color: var(--text-color);
}
.prestation_keypoints > div > div {
  margin-top: 3.5rem;
}

#our_platform {
  padding-top: 9rem;
  padding-left: 14rem;
  padding-right: 14rem;
  background-color: var(--secondary-background-color);
}

.youtube_text,
.facebook_text {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 6rem;
}

.youtube_text img,
.facebook_text img {
  width: 20rem;
}

.youtube_text > div:first-child,
.facebook_text > div:first-child {
  width: fit-content;
  margin-bottom: auto;
}

.youtube_text > div:first-child > h3,
.facebook_text > div:first-child > h3 {
  font-family: "Ruda", sans-serif;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 900;
  color: var(--text-color);
  margin: 0;
}
.youtube_text > div:first-child > p,
.facebook_text > div:first-child > p {
  font-family: "Ruda", sans-serif;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
}
.youtube_text > div:last-child > p,
.facebook_text > div:last-child > p {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.youtube_keypoints,
.facebook_keypoints {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  column-gap: 2.75rem;
  padding-top: 9rem;
  padding-bottom: 9rem;
}
.youtube_keypoints > div,
.facebook_keypoints > div {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.youtube_keypoints > div > img,
.facebook_keypoints > div > img {
  max-height: 93px;
}
.youtube_keypoints > div > p,
.facebook_keypoints > div > p {
  font-family: "Ruda", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin: 1.25rem auto;
  color: var(--text-color);
}
.youtube_keypoints > .separator,
.facebook_keypoints > .separator {
  height: 75%;
  width: 1px;
  margin: auto;
}

.youtube_keypoints > .separator {
  background-color: var(--w4tch-red);
  color: var(--w4tch-red);
  border-color: var(--w4tch-red);
}
.facebook_keypoints > .separator {
  background-color: var(--w4tch-blue);
  color: var(--w4tch-blue);
  border-color: var(--w4tch-blue);
}

.swiper_container {
  overflow-x: hidden;
  width: 100%;
}

.youtube_channel > h3,
.facebook_channel > h3 {
  text-align: center;
  font-family: "Ruda", sans-serif;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 900;
  color: var(--text-color);
  margin: 0;
}

/* <!-- W4tch Slider Channels | CSS --> */
.swiper {
  width: 100%;
  height: 100%;
  margin-top: 5rem;
}
.swiper-wrapper {
  display: flex;
  align-items: center;
}
.swiper-slide {
  width: 217px !important;
}

.youtube_channel .channel,
.facebook_channel .channel {
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius);
  flex-shrink: 0;
  text-align: center;
  background-color: var(--background-color);
  padding-top: 4rem;
  padding-bottom: 2rem;
  position: relative;
  /* max-width: 217px; */
}

.youtube_channel .channel img,
.facebook_channel .channel img {
  object-fit: cover;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
  top: -40%;
  transform: translateY(50%);
  display: flex;
  align-self: center;
}
.youtube_channel .channel .channel_title,
.facebook_channel .channel .channel_title {
  color: var(--text-color);
  font-weight: 700;
}
.youtube_channel .channel p,
.facebook_channel .channel p {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--text-color);
}
.youtube_channel .channel p > span,
.facebook_channel .channel p > span {
  font-weight: 400;
}

.scrollbar_control {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 7rem;
  padding-top: 5rem;
}
.swiper-scrollbar-youtube,
.swiper-scrollbar-facebook {
  width: 85%;
  background-color: #d9d9d9;
  height: 5px;
  border-radius: var(--border-radius);
}
.swiper-scrollbar-drag {
  background-color: var(--tertiary-color);
  border-radius: var(--border-radius);
  height: 5px;
}
.swiper-scrollbar-drag:hover {
  cursor: pointer;
}

.scrollbar_control > button {
  background-color: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.scrollbar_control > button:hover {
  background-color: var(--tertiary-color);
  color: var(--background-color);
}

.scrollbar_control > button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.scrollbar_control > button:disabled:hover {
  background-color: var(--background-color);
  color: var(--text-color);
  opacity: 0.5;
}

/* END */
