.br, .br-normal {
  border-radius: 7.5px;
}

.br-large {
  border-radius: 15px;
}

.button {
  border-radius: 7.5px;
}

.bg-primary {
  background-color: #272640;
}

.bg-secondary {
  background-color: #1B3A4B;
}

.bg-red {
  background-color: #EF4D4D;
}

@font-face {
  font-family: AfterHours;
  src: url(assets/fonts/after-hours.woff2);
}
@font-face {
  font-family: Azo;
  src: url(assets/fonts/azosans.woff2);
}
@font-face {
  font-family: SmoothFantasy;
  src: url(assets/fonts/smooth-fantasy.woff2);
}
@font-face {
  font-family: Poppins;
  src: url("assets/fonts/poppins/poppins-light.woff2");
  font-weight: lighter;
}
@font-face {
  font-family: Poppins;
  src: url("assets/fonts/poppins/poppins-regular.woff2");
  font-weight: 400;
}
@font-face {
  font-family: Poppins;
  src: url("assets/fonts/poppins/poppins-medium.woff2");
  font-weight: 500;
}
@font-face {
  font-family: Poppins;
  src: url("assets/fonts/poppins/poppins-semibold.woff2");
  font-weight: 600;
}
@font-face {
  font-family: Poppins;
  src: url("assets/fonts/poppins/poppins-bold.woff2");
  font-weight: 700;
}
@font-face {
  font-family: Poppins;
  src: url("assets/fonts/poppins/poppins-extrabold.woff2");
  font-weight: 800;
}
@font-face {
  font-family: Poppins;
  src: url("assets/fonts/poppins/poppins-black.woff2");
  font-weight: 900;
}
html {
  font-size: 80%;
}
@media only screen and (min-resolution: 1dppx) {
  html {
    border: none;
    font-size: 100%;
  }
}

body {
  color: white;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  font-size: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 0.5rem;
  border-left: 0.1rem solid transparent;
}
body::-webkit-scrollbar-track {
  background: transparent;
  width: 0.15rem;
}
body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 7.5px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.container {
  width: 100%;
  max-width: 1750px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media screen and (min-width: 576px) {
  .container {
    padding-inline: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .container {
    padding-inline: 1.5rem;
  }
}
@media screen and (min-width: 1204px) {
  .container {
    padding-inline: 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    padding-inline: 3rem;
  }
}
@media screen and (min-width: 1500px) {
  .container {
    padding-inline: 3rem;
  }
}

.text {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .text {
    font-size: 1.25rem;
  }
}

.section {
  margin-top: 5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.section.nopad {
  padding-top: 0;
  padding-bottom: 0;
}
.section.nomt {
  margin-top: 0;
}
.section__title {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
  width: 100%;
  z-index: 1;
}
.section__title--nomb, .section__title.nomb {
  margin-bottom: 0;
}
.section__title_h2 {
  position: relative;
  font-size: 2.5rem;
  font-weight: 900;
  z-index: 2;
  text-align: center;
}
.section__title_h2_gif {
  position: absolute;
  left: 97.5%;
  bottom: 90%;
  transform: scaleX(-1);
  width: 4rem;
}
.section__title_h2.w-fit {
  width: fit-content;
}
.section__title_h2.center {
  text-align: center;
}
@media screen and (min-width: 576px) {
  .section__title_h2 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .section__title_h2 {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .section__title_h2 {
    font-size: 5rem;
  }
}
.section__title_gradient, .section__title_pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 3rem);
  height: 150%;
  transform: translate(-50%, -50%);
}
.section__title_pattern {
  background-image: url("assets/images/decorations/title_pattern.webp");
  background-size: 100px;
  z-index: 0;
  opacity: 0.75;
}
.section__title_gradient {
  z-index: 1;
}
.section__title.white .section__title_h2 {
  color: #272640;
  text-shadow: 0 0 25px rgba(39, 38, 64, 0.15);
}
.section__title.white .section__title_gradient {
  box-shadow: inset 0 0 50px 0 white;
}
.section__title.light .section__title_h2 {
  color: #272640;
  text-shadow: 0 0 25px rgba(39, 38, 64, 0.15);
}
.section__title.light .section__title_gradient {
  box-shadow: inset 0 0 50px 0 #F3F7FD;
}
.section__title.secondary .section__title_h2 {
  color: white;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}
.section__title.secondary .section__title_gradient {
  box-shadow: inset 0 0 50px 0 #1B3A4B;
}
.section__title.dark .section__title_h2 {
  color: white;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}
.section__title.dark .section__title_gradient {
  box-shadow: inset 0 0 50px 0 #191E23;
}
.section__title.text-left, .section__subtitle.text-left {
  text-align: left;
}
.section__title--nomb, .section__title.nomb, .section__subtitle--nomb, .section__subtitle.nomb {
  margin-bottom: 0;
}

.websitesGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 850px) {
  .websitesGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.AlbumsGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 576px) {
  .AlbumsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .AlbumsGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .AlbumsGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.videosGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 576px) {
  .videosGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .videosGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .videosGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.home .main {
  position: relative;
}
@keyframes header__overlay {
  from {
    background: linear-gradient(90deg, #272640 0%, #272640 100%);
  }
  to {
    background: linear-gradient(90deg, rgba(39, 38, 64, 0.85) 0%, #272640 50%);
  }
}
@keyframes animal {
  from {
    left: -10rem;
  }
  to {
    left: 100%;
  }
}
.home .header {
  background-color: #191E23;
}
.home .header__container {
  position: relative;
  display: grid;
  grid-template-columns: calc(100vw - 1rem);
  gap: 1rem;
  max-width: 1920px;
  background-color: #191E23;
}
@media screen and (min-width: 768px) {
  .home .header__container {
    grid-template-columns: calc(100vw - 3rem);
    padding-top: 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .home .header__container {
    grid-template-columns: minmax(1rem, 5fr) minmax(20rem, 2fr);
    padding-top: 3rem;
  }
}
@media screen and (min-width: 1500px) {
  .home .header__container {
    padding-top: 3rem;
    gap: 2rem;
  }
}
.home .header__container_box {
  position: relative;
  border-radius: 15px;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 1200px) {
  .home .header__container_box {
    grid-column: 1/span 2;
  }
}
.home .header__container_box_gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10%;
  z-index: 1;
  border-radius: 0 0 15px 15px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #272640 100%);
}
.home .header__container_box_animals {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  height: 5rem;
}
@media screen and (min-width: 1200px) {
  .home .header__container_box_animals {
    display: flex;
  }
}
.home .header__container_box_animals_animal {
  position: absolute;
  left: -10rem;
  bottom: 0;
  animation-name: animal;
  animation-duration: 0s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}
@media screen and (min-width: 1200px) {
  .home .header__container_box_animals_animal {
    animation-duration: 6s;
  }
}
@media screen and (min-width: 1500px) {
  .home .header__container_box_animals_animal {
    animation-duration: 6s;
  }
}
@media screen and (min-width: 1800px) {
  .home .header__container_box_animals_animal {
    animation-duration: 7s;
  }
}
.home .header__container_box_animals_animal--simba, .home .header__container_box_animals_animal--pitchou {
  transform: scaleX(-1) translateY(4px);
  height: 75%;
}
.home .header__container_box_animals_animal--simba {
  animation-delay: 10s;
}
.home .header__container_box_animals_animal--pitchou {
  animation-delay: 10.5s;
}
.home .header__container_box_animals_animal--pilou {
  height: 100%;
  animation-delay: 9.5s;
}
.home .header__container_box_overlay {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: linear-gradient(90deg, rgba(39, 38, 64, 0.85) 0%, #272640 75%);
  animation-duration: 2.5s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}
@media screen and (min-width: 1200px) {
  .home .header__container_box_overlay {
    grid-template-columns: 3fr 2fr;
  }
}
@media screen and (min-width: 1500px) {
  .home .header__container_box_overlay {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home .header__container_box_overlay_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: white;
  position: relative;
  z-index: 1;
  padding: 2rem;
}
@media screen and (min-width: 576px) {
  .home .header__container_box_overlay_content {
    padding: 3rem 2rem;
  }
}
@media screen and (min-width: 768px) {
  .home .header__container_box_overlay_content {
    padding: 5rem 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .home .header__container_box_overlay_content {
    padding: 5rem 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .home .header__container_box_overlay_content {
    padding: 5rem 4rem;
    padding-bottom: 7.5rem;
  }
}
@media screen and (min-width: 1800px) {
  .home .header__container_box_overlay_content {
    padding: 7.5rem 5rem;
  }
}
.home .header__container_box_overlay_content_head {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 3rem;
}
@media screen and (min-width: 576px) {
  .home .header__container_box_overlay_content_head {
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .home .header__container_box_overlay_content_head {
    flex-direction: column;
    align-items: inherit;
  }
}
@media screen and (min-width: 1024px) {
  .home .header__container_box_overlay_content_head {
    flex-direction: row;
    align-items: center;
  }
}
.home .header__container_box_overlay_content_head_logo {
  max-height: 6rem;
  width: auto;
}
.home .header__container_box_overlay_content_head_note {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 576px) {
  .home .header__container_box_overlay_content_head_note {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .home .header__container_box_overlay_content_head_note {
    margin-left: 0.5rem;
    margin-top: 0.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .home .header__container_box_overlay_content_head_note {
    margin-top: 0;
  }
}
.home .header__container_box_overlay_content_head_note_stars {
  display: flex;
}
.home .header__container_box_overlay_content_head_note_stars_star {
  width: 1.5rem;
  margin-right: 0.25rem;
  opacity: 0.1;
  fill: white;
}
.home .header__container_box_overlay_content_head_note_stars_star.filled {
  opacity: 1;
  fill: #FBBC04;
}
.home .header__container_box_overlay_content_head_note_stars_star:last-child {
  margin-right: 0;
}
.home .header__container_box_overlay_content_head_note_number {
  transform: translateY(0.1rem);
  font-weight: 600;
  margin-left: 0.5rem;
  font-size: 0.85rem;
}
@keyframes home_header__title {
  from {
    text-shadow: none;
  }
  to {
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
  }
}
.home .header__container_box_overlay_content_title {
  font-weight: 900;
  font-size: 2.75rem;
  line-height: 1;
  animation-name: home_header__title;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}
@media screen and (min-width: 576px) {
  .home .header__container_box_overlay_content_title {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .home .header__container_box_overlay_content_title {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .home .header__container_box_overlay_content_title {
    font-size: 5rem;
  }
}
.home .header__container_box_overlay_content_description {
  margin-top: 1rem;
  font-size: 1rem;
  text-align: justify;
  line-height: 1.75;
}
@media screen and (min-width: 576px) {
  .home .header__container_box_overlay_content_description {
    font-size: 1.25rem;
  }
}
.home .header__container_box_overlay_content_description strong {
  background-color: white;
  color: #272640;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  border-radius: 2.5px;
}
.home .header__container_box_overlay_content_buttons {
  display: grid;
  gap: 1rem;
  width: 100%;
  margin-top: 3rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 576px) {
  .home .header__container_box_overlay_content_buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .home .header__container_box_overlay_content_buttons {
    display: flex;
  }
}
.home .header__container_box_overlay_content_buttons_button_label {
  word-break: normal;
  width: fit-content;
  font-weight: 500;
}
.home .header__container_box_overlay_content_buttons_button_icon {
  width: 1rem;
  margin-left: 0.5rem;
  fill: white;
  transition: all 0.3s ease-in-out;
}
.home .header__container_box_overlay_illustration {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-image: url("assets/images/header-pattern3.png");
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .home .header__container_box_overlay_illustration {
    justify-content: center;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .home .header__container_box_overlay_illustration {
    padding: 0 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .home .header__container_box_overlay_illustration {
    justify-content: center;
  }
}
.home .header__container_box_overlay_illustration_img {
  height: 35rem;
  max-height: 90%;
  z-index: 1;
}
@media screen and (min-width: 576px) {
  .home .header__container_box_overlay_illustration_img {
    height: 25rem;
  }
}
@media screen and (min-width: 576px) and (max-height: 768px) {
  .home .header__container_box_overlay_illustration_img {
    height: 15rem;
  }
}
@media screen and (min-width: 1024px) {
  .home .header__container_box_overlay_illustration_img {
    height: 50rem;
  }
}
@media screen and (min-width: 1024px) and (max-height: 1024px) {
  .home .header__container_box_overlay_illustration_img {
    max-height: 45rem;
    height: auto;
    width: auto;
  }
}
.home .header__container_customers {
  display: flex;
  background-color: white;
  border-radius: 15px;
  width: 100%;
}
.home .header__container_customers_list {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}
.home .header__container_customers_list .js-marquee-wrapper {
  display: flex;
  gap: 1rem;
}
.home .header__container_customers_list .js-marquee-wrapper .js-marquee {
  display: flex;
  gap: 1rem;
  margin-right: 0 !important;
}
.home .header__container_customers_list_customer {
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 7.5rem;
  height: 6rem;
}
.home .header__container_customers_list_customer:hover .header__customers_list_customer_background {
  opacity: 0.1;
}
.home .header__container_customers_list_customer_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  transition: all 0.1s ease-in-out;
  border-radius: 7.5px;
}
.home .header__container_customers_list_customer_logo {
  position: relative;
  max-width: 85%;
  width: auto;
  max-height: 75%;
  height: auto;
  z-index: 1;
}
.home .header__container_button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f2b400;
  border-radius: 15px;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
  min-height: 5rem;
}
.home .header__container_button_icon {
  width: 1.75rem;
  height: auto;
  fill: #191E23;
  margin-right: 1rem;
}
.home .header__container_button_label {
  font-size: 1.5rem;
  font-weight: 500;
  color: #191E23;
}
.home .header__container_button:hover {
  transform: scale(1.01);
  background-color: #e4a900;
}
.home .prestations {
  display: flex;
  min-height: 40rem;
  background-color: #191E23;
  padding-top: 7.5rem;
}
.home .prestations__container {
  display: grid;
}
.home .prestations__container_list {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 1024px) {
  .home .prestations__container_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home .prestations__container_list .ontitle {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 576px) {
  .home .prestations__container_list .ontitle {
    font-size: 1.25rem;
  }
}
.home .prestations__container_list .title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
}
@media screen and (min-width: 450px) {
  .home .prestations__container_list .title {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 576px) {
  .home .prestations__container_list .title {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .home .prestations__container_list .title {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .home .prestations__container_list .title {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .home .prestations__container_list .title {
    font-size: 3rem;
  }
}
.home .prestations__container_list_prestation {
  display: grid;
  min-height: 35rem;
}
.home .prestations__container_list_prestation.primary .prestations__container_list_prestation_content_ontitle,
.home .prestations__container_list_prestation.primary .prestations__container_list_prestation_content_title {
  color: #272640;
}
.home .prestations__container_list_prestation.primary .prestations__container_list_prestation_content_points_element_icon {
  background-color: #272640;
}
.home .prestations__container_list_prestation.secondary .prestations__container_list_prestation_content_ontitle,
.home .prestations__container_list_prestation.secondary .prestations__container_list_prestation_content_title {
  color: #1B3A4B;
}
.home .prestations__container_list_prestation.secondary .prestations__container_list_prestation_content_points_element_icon {
  background-color: #1B3A4B;
}
.home .prestations__container_list_prestation.red .prestations__container_list_prestation_content_ontitle,
.home .prestations__container_list_prestation.red .prestations__container_list_prestation_content_title {
  color: #EF4D4D;
}
.home .prestations__container_list_prestation.red .prestations__container_list_prestation_content_points_element_icon {
  background-color: #EF4D4D;
}
@media screen and (min-width: 1024px) {
  .home .prestations__container_list_prestation {
    grid-column: 1/span 2;
  }
}
@media screen and (min-width: 1024px) {
  .home .prestations__container_list_prestation {
    grid-template-columns: 3fr 5fr;
  }
}
@media screen and (min-width: 1200px) {
  .home .prestations__container_list_prestation {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home .prestations__container_list_prestation_illustration {
  display: flex;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
@media screen and (min-width: 1024px) {
  .home .prestations__container_list_prestation_illustration {
    border-radius: 15px 0 0 15px;
  }
}
.home .prestations__container_list_prestation_illustration_img {
  height: auto;
  max-height: 100%;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.home .prestations__container_list_prestation_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  background-color: #F3F7FD;
  color: #272640;
  box-shadow: inset 0 0 50px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0 0 15px 15px;
}
@media screen and (min-width: 576px) {
  .home .prestations__container_list_prestation_content {
    padding: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .home .prestations__container_list_prestation_content {
    border-radius: 0 15px 15px 0;
  }
}
@media screen and (min-width: 1500px) {
  .home .prestations__container_list_prestation_content {
    padding: 5rem;
  }
}
.home .prestations__container_list_prestation_content_ontitle {
  margin-bottom: 0.5rem;
}
.home .prestations__container_list_prestation_content_points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media screen and (min-width: 576px) {
  .home .prestations__container_list_prestation_content_points {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .home .prestations__container_list_prestation_content_points {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .home .prestations__container_list_prestation_content_points {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1500px) {
  .home .prestations__container_list_prestation_content_points {
    grid-template-columns: repeat(3, 1fr);
  }
}
.home .prestations__container_list_prestation_content_points_element {
  display: flex;
  align-items: center;
}
.home .prestations__container_list_prestation_content_points_element_icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 2.5rem;
  width: 2.5rem;
  min-height: 2.5rem;
  height: 2.5rem;
  border-radius: 15px;
}
.home .prestations__container_list_prestation_content_points_element_icon svg:not(.prestations__container_list_prestation_content_points_element_icon_check) {
  fill: white;
  width: 1.25rem;
}
.home .prestations__container_list_prestation_content_points_element_icon_check {
  position: absolute;
  bottom: -0.15rem;
  right: -0.5rem;
  width: 1rem;
  fill: #46B450;
  border-radius: 50%;
  border: 1px solid white;
  background-color: white;
}
.home .prestations__container_list_prestation_content_points_element_title {
  margin-left: 1rem;
  font-weight: 600;
  line-height: 1.25;
}
.home .prestations__container_list_prestation_content_cta {
  margin-top: 3rem;
  width: 100%;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .home .prestations__container_list_prestation_content_cta {
    width: fit-content;
    justify-content: flex-start;
  }
}
.home .portfolio {
  background-color: white;
}
.home .portfolio__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.home .portfolio__header_cta {
  display: none;
}
@media screen and (min-width: 576px) {
  .home .portfolio__header_cta {
    display: flex;
  }
}
.home .portfolio__cta {
  margin-top: 1rem;
}
@media screen and (min-width: 576px) {
  .home .portfolio__cta {
    width: fit-content;
    margin-top: 0;
  }
}
.home .portfolio__category {
  margin-bottom: 3rem;
}
.home .portfolio__category:last-of-type {
  margin-bottom: 0;
}
.home .portfolio__category_header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  width: 100%;
}
.home .portfolio__category_header_icon {
  min-width: 3rem;
  width: 3rem;
  min-height: 3rem;
  height: 3rem;
  border-radius: 7.5px;
  padding: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(25, 30, 35, 0.1);
}
.home .portfolio__category_header_icon_svg {
  fill: #191E23;
}
.home .portfolio__category_header_title {
  font-weight: bold;
  font-size: 2rem;
  margin-left: 1rem;
  margin-right: 2rem;
  color: #191E23;
}
.home .portfolio__category_header_line {
  display: none;
  width: auto;
  height: 2px;
  box-shadow: 0 0 25px 0 rgba(25, 30, 35, 0.5);
  width: 100%;
  border: 0;
  border-radius: 7.5px;
  background-color: rgba(25, 30, 35, 0.25);
}
@media screen and (min-width: 576px) {
  .home .portfolio__category_header_line {
    display: inline-block;
  }
}
.home .portfolio .inprogress {
  padding: 2rem 0;
  border-top: 0.25rem dashed rgba(255, 255, 255, 0.25);
  border-bottom: 0.25rem dashed rgba(255, 255, 255, 0.25);
}
.home .portfolio .videos {
  margin-top: 3rem;
}
.home .portfolio__footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-top: 5rem;
  background-color: #F3F7FD;
  border-radius: 15px;
  padding: 1rem 1.5rem;
}
.home .portfolio__footer_stats {
  display: flex;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .home .portfolio__footer_stats {
    width: fit-content;
  }
}
.home .portfolio__footer_stats_data {
  width: 100%;
  display: flex;
  flex-flow: row;
  align-items: center;
  margin-right: 1rem;
  background-color: #191E23;
  padding: 1rem 1.25rem;
  border-radius: 15px;
  box-shadow: inset 0 0 10px 0 rgba(39, 38, 64, 0.25);
}
@media screen and (min-width: 576px) {
  .home .portfolio__footer_stats_data {
    width: fit-content;
  }
}
.home .portfolio__footer_stats_data:last-of-type {
  margin-right: 0;
}
.home .portfolio__footer_stats_data_number {
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2.5px 2.5px 0 rgba(255, 255, 255, 0.25);
}
.home .portfolio__footer_stats_data_description {
  font-size: 1rem;
  margin-left: 0.5rem;
  transform: translateY(2px);
}
.home .portfolio__style {
  display: none;
}
.home .portfolio__style--top {
  top: -0.1rem;
}
.home .portfolio__style--bottom {
  bottom: -0.1rem;
}
.home .portfolio__stats {
  z-index: 0;
}
.home .banner {
  display: flex;
  height: auto;
  background-color: #191E23;
  padding: 1rem 0;
}
.home .banner__icon {
  fill: white;
  width: 3rem;
  margin-inline: 1rem;
}
.home .banner__message {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 600;
  white-space: nowrap;
  color: white;
  text-transform: uppercase;
  transform: translateY(4px);
}
.home .banner .marquee-track {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
  font-size: 26px;
  line-height: 31px;
}
.home .banner .marquee-track .marquee {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.home .reviews {
  padding: 7.5rem 0;
  background-color: #F3F7FD;
}
.home .reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .home .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .home .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1500px) {
  .home .reviews__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.home .reviews__review {
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  color: #272640;
  background-color: white;
  box-shadow: 0 0 50px 0 rgba(25, 30, 35, 0.1);
  border: 1.5px solid rgba(25, 30, 35, 0.5);
}
.home .reviews__review_author {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.home .reviews__review_author_picture {
  min-width: 4rem;
  width: 4rem;
  min-height: 4rem;
  height: 4rem;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  margin-right: 1rem;
}
.home .reviews__review_author_informations {
  transform: translateY(-0.3rem);
}
.home .reviews__review_author_informations_name {
  font-weight: bold;
  font-family: AfterHours;
  font-size: 2.25rem;
}
@media screen and (min-width: 1500px) {
  .home .reviews__review_author_informations_name {
    font-size: 2.75rem;
  }
}
.home .reviews__review_author_informations_title {
  font-size: 0.85rem;
  margin-top: -0.5rem;
}
.home .reviews__review_testimonial {
  text-align: justify;
  font-size: 0.85rem;
  line-height: 1.25;
  margin-bottom: 2rem;
  line-height: 1.25;
}
@media screen and (min-width: 576px) {
  .home .reviews__review_testimonial {
    font-size: 1rem;
  }
}
.home .reviews__review_stars {
  display: flex;
  margin-top: auto;
}
.home .reviews__review_stars_star {
  width: 1.5rem;
  fill: #f2b400;
  margin-right: 0.5rem;
}
.home .reviews__review_stars_star:last-of-type {
  margin-right: 0;
}
.home .about {
  position: relative;
  background-color: white;
}
.home .about__plant {
  position: absolute;
  bottom: 100%;
  left: 5rem;
  bottom: 0;
  width: 3.5rem;
  pointer-events: none;
}
@media screen and (min-width: 576px) {
  .home .about__plant {
    width: 5rem;
    left: 5rem;
    pointer-events: all;
  }
}
.home .about__container_box {
  display: grid;
}
@media screen and (min-width: 768px) {
  .home .about__container_box {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
.home .about__container_box_content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #272640;
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .home .about__container_box_content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media screen and (min-width: 1024px) {
  .home .about__container_box_content {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}
.home .about__container_box_content_description {
  margin-top: 1rem;
  text-align: justify;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 1200px) {
  .home .about__container_box_content_description {
    font-size: 1.5rem;
  }
}
.home .about__container_box_content_cta {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}
@media screen and (min-width: 576px) {
  .home .about__container_box_content_cta {
    width: fit-content;
    justify-content: flex-start;
  }
}
.home .about__container_box_illustration {
  position: relative;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  height: 35rem;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .home .about__container_box_illustration {
    min-height: 35rem;
    height: auto;
  }
}
.home .about__container_box_illustration_words {
  position: absolute;
  top: 2rem;
  left: 2rem;
  line-height: 1.25;
  opacity: 0.05;
  transition: opacity 0.3s ease-in-out;
}
.home .about__container_box_illustration_words:hover {
  opacity: 1;
}
.home .about__container_box_illustration_words_word {
  pointer-events: none;
  text-transform: uppercase;
  color: white;
  font-weight: 900;
  font-size: 1.5rem;
}
@media screen and (min-width: 450px) {
  .home .about__container_box_illustration_words_word {
    font-size: 2rem;
  }
}
@media screen and (min-width: 576px) {
  .home .about__container_box_illustration_words_word {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .home .about__container_box_illustration_words_word {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .home .about__container_box_illustration_words_word {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .home .about__container_box_illustration_words_word {
    font-size: 4rem;
  }
}
.home .about__container_box_illustration_video {
  min-width: 100%;
  min-height: 100%;
}
.home .links {
  background-color: #1B3A4B;
  margin-top: 0;
  padding: 5rem 0;
}
.home .links__title {
  color: white;
}
.home .links__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .home .links__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
.home .links__grid_link {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 15px;
  overflow: hidden;
  color: white;
  background-color: white;
  transition: border 0.1s ease-in-out;
  text-decoration: none;
  padding: 1rem;
  transition: background-color 0.3s ease-in-out;
}
.home .links__grid_link:hover {
  background-color: #F3F7FD;
}
.home .links__grid_link:hover .links__grid_link_content_more {
  opacity: 1;
}
.home .links__grid_link_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 5rem;
  width: 5rem;
  padding: 1.5rem;
  border: 1px solid #1B3A4B;
  border-radius: 15px;
  overflow: hidden;
  margin-right: 1.5rem;
  aspect-ratio: 1/1;
}
.home .links__grid_link_icon svg {
  height: 100%;
  fill: #1B3A4B;
}
.home .links__grid_link_content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.home .links__grid_link_content_title {
  font-weight: 600;
  font-size: 1.15rem;
  transform: translateY(2px);
  line-height: 1.25;
  color: #1B3A4B;
}
@media screen and (min-width: 1500px) {
  .home .links__grid_link_content_title {
    font-size: 1.5rem;
  }
}
.home .links__grid_link_content_description {
  margin-top: 0.5rem;
}
.home .links__grid_link_content_more {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}
.home .links__grid_link_content_more_label {
  font-size: 1rem;
  color: #1B3A4B;
}
.home .links__grid_link_content_more_icon {
  width: 0.75rem;
  fill: #1B3A4B;
  margin-left: 0.25rem;
}

.page-template-portfolio .header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: #F3F7FD;
  min-height: 25vh;
  padding: 2rem 0;
}
.page-template-portfolio .header .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.page-template-portfolio .header__title {
  color: #272640;
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (min-width: 576px) {
  .page-template-portfolio .header__title {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-portfolio .header__title {
    font-size: 5rem;
  }
}
.page-template-portfolio .header__description {
  color: #272640;
  line-height: 1.25;
  margin-top: 0.5rem;
}
.page-template-portfolio .filters {
  margin: 3rem 0;
}
.page-template-portfolio .filters .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 425px) {
  .page-template-portfolio .filters .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 650px) {
  .page-template-portfolio .filters .container {
    display: flex;
  }
}
.page-template-portfolio .filters__filter {
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 7.5px;
  padding: 0.75rem 1rem;
  background-color: #F3F7FD;
  cursor: pointer;
  margin-bottom: 0;
}
.page-template-portfolio .filters__filter.current {
  background-color: #272640;
  color: white;
}
.page-template-portfolio .filters__filter.current .filters__filter_icon {
  fill: white;
}
.page-template-portfolio .filters__filter.current .filters__filter_number {
  background-color: rgba(255, 255, 255, 0.25);
  color: white;
}
.page-template-portfolio .filters__filter:last-of-type {
  margin-right: 0;
  margin-bottom: 0;
}
.page-template-portfolio .filters__filter_icon {
  fill: #272640;
  width: 1.5rem;
  margin-right: 0.75rem;
}
.page-template-portfolio .filters__filter_title {
  font-weight: 600;
  font-size: 0.85rem;
  transform: translateY(-2px);
}
@media screen and (min-width: 450px) {
  .page-template-portfolio .filters__filter_title {
    font-size: 1rem;
    transform: none;
  }
}
@media screen and (min-width: 576px) {
  .page-template-portfolio .filters__filter_title {
    font-size: 1.25rem;
    transform: translateY(-2px);
  }
}
.page-template-portfolio .filters__filter_number {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(39, 38, 64, 0.25);
  color: #272640;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: 7.5px;
  width: 2rem;
  height: 2rem;
  margin-left: 0.75rem;
  font-size: 0.85rem;
}
.page-template-portfolio .section {
  margin-top: 0;
}
.page-template-portfolio .section.websites {
  display: none;
}
.page-template-portfolio .section.websites.current {
  display: flex;
}
.page-template-portfolio .section.websites .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.page-template-portfolio .section.videos {
  display: none;
}
.page-template-portfolio .section.videos.current {
  display: flex;
}
.page-template-portfolio .section.videos .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 576px) {
  .page-template-portfolio .section.videos .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .page-template-portfolio .section.videos .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .page-template-portfolio .section.videos .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-template-formations .header {
  height: 25vh;
  margin-bottom: 5rem;
  background-color: #EF4D4D;
}
@media screen and (min-width: 768px) {
  .page-template-formations .catalogue__list .FormationCard {
    width: 49%;
    margin-right: 2%;
  }
  .page-template-formations .catalogue__list .FormationCard:nth-child(2n+0) {
    margin-right: 0;
  }
}
.page-template-formations .pedagogie {
  background-color: #1B3A4B;
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .page-template-formations .pedagogie__list_point {
    width: 47.5%;
    margin-right: 5%;
  }
  .page-template-formations .pedagogie__list_point:nth-child(2n+0) {
    margin-right: 0;
  }
}
.page-template-formations .pedagogie__list_point_icon {
  position: relative;
  min-width: 7.5rem;
  width: 7.5rem;
  height: 7.5rem;
  height: 100%;
  margin-right: 1rem;
}
.page-template-formations .pedagogie__list_point_icon_background {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.25;
  z-index: 0;
}
.page-template-formations .pedagogie__list_point_icon i {
  color: white;
  position: relative;
  z-index: 1;
  font-size: 3rem;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.page-template-formations .pedagogie__list_point_content {
  color: white;
}
.page-template-formations .pedagogie__list_point_content_description {
  font-size: 1rem;
}

.page-template-about .header {
  min-height: 50vh;
  padding-bottom: 5rem;
}
.page-template-about .header__content {
  color: #4D194D;
}
.page-template-about .header__video {
  overflow: hidden;
  border-radius: 0.75rem;
  padding-left: 3rem;
}
.page-template-about .header__video_vid {
  width: 100%;
  height: auto;
  outline: none;
  border-radius: 0.75rem;
}
.page-template-about .state {
  min-height: 50vh;
  border-radius: 1rem;
  background-color: black;
  overflow: hidden;
}
.page-template-about .state__logo {
  height: 5rem;
  width: auto;
}
.page-template-about .state__content {
  width: 50%;
}

.page-template-contact {
  padding-top: 7.5rem;
}
.page-template-contact .main {
  min-height: calc(100vh - 7.5rem);
}
.page-template-contact .main .container .part__title {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 3rem;
  padding: 0.5rem 0.75rem;
  background-color: #EF4D4D;
  color: white;
  width: fit-content;
}
.page-template-contact .main .container .informations__p {
  color: #272640;
  font-weight: bold;
}
.page-template-contact .main .container .informations__p_span {
  font-weight: normal;
}
@keyframes loader {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.page-template-contact .main .container .form .cache.loader .cache__icon {
  animation-name: loader;
  animation-timing-function: ease-in-out;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
.page-template-contact .main .container .form .cache {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
.page-template-contact .main .container .form .cache__icon {
  color: #1B3A4B;
  font-size: 2rem;
}
.page-template-contact .main .container .form .cache__message {
  color: #1B3A4B;
  font-size: 1.5rem;
  margin-top: 1rem;
  text-align: center;
}
.page-template-contact .main .container .form .wpcf7-form.submitting > p, .page-template-contact .main .container .form .wpcf7-form.sent > p {
  filter: blur(2.5px);
}
.page-template-contact .main .container .form .wpcf7-form.submitting > .cache.loader,
.page-template-contact .main .container .form .wpcf7-form.sent > .cache.sent {
  display: flex;
}
.page-template-contact .main .container .wpcf7-form {
  display: flex;
  flex-flow: row wrap;
}
.page-template-contact .main .container .wpcf7 p {
  width: 100%;
  position: relative;
  margin-bottom: 0.75rem;
}
.page-template-contact .main .container .wpcf7 p .button.is-primary {
  background-color: #272640;
  color: white;
}
.page-template-contact .main .container .wpcf7 p:last-of-type {
  margin-bottom: 0;
}
.page-template-contact .main .container .wpcf7 p:hover .wpcf7-not-valid-tip {
  display: flex;
}
.page-template-contact .main .container .wpcf7 p .input {
  width: 100%;
  border: 1px solid transparent;
  transition: border 0.1s ease-in-out;
}
.page-template-contact .main .container .wpcf7 p .wpcf7-list-item {
  margin-left: 0;
}
.page-template-contact .main .container .wpcf7 p:last-child {
  margin-bottom: 0;
}
.page-template-contact .main .container .wpcf7 p .wpcf7-not-valid-tip {
  display: none;
  position: absolute;
  right: 0;
  bottom: 110%;
  margin: auto 0;
  width: fit-content;
  max-width: 100%;
  height: fit-content;
  background-color: red;
  color: white;
  padding: 0.5rem;
  border-radius: 0.25rem;
  z-index: 2;
  animation-name: contact__requiered;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}
.page-template-contact .main .container .wpcf7 p .wpcf7-not-valid-tip::before {
  content: "";
  position: absolute;
  right: 5%;
  top: 95%;
  bottom: 0;
  margin: auto 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12.5px 12.5px 0 12.5px;
  border-color: red transparent transparent transparent;
  z-index: 0 !important;
}
.page-template-contact .main .container .wpcf7-text {
  background-color: #f5f5f5;
  border: 0;
  padding: 1.5rem 1rem;
}
.page-template-contact .main .container .wpcf7-not-valid {
  border: 1px solid red !important;
}
.page-template-contact .main .container .wpcf7-validates-as-required ~ .requiered {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  right: -0.5rem;
  top: -0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  background-color: white;
  z-index: 2;
  color: red;
  opacity: 0.75;
  font-weight: bold;
}
.page-template-contact .main .container .wpcf7-validates-as-required ~ .requiered span {
  height: 100%;
  width: 100%;
  text-align: center;
}
.page-template-contact .main .container .wpcf7-form-control-wrap {
  position: static;
  font-size: 0.75rem;
  text-align: justify;
}
.page-template-contact .main .container .wpcf7-form-control-wrap .wpcf7-list-item label {
  display: flex;
  align-items: center;
}
.page-template-contact .main .container .wpcf7-form-control-wrap .wpcf7-list-item label input {
  margin-right: 1rem;
}
.page-template-contact .main .container .wpcf7-textarea {
  width: 100%;
  min-height: 15rem;
  resize: none;
  overflow-y: hidden;
  background-color: #f5f5f5;
  border: 0;
  padding: 1rem;
}
.page-template-contact .main .container .wpcf7-response-output {
  position: absolute;
  top: 0;
  left: 110%;
  display: none;
}
.page-template-contact .main .container .wpcf7 .ajax-loader {
  display: none;
}
.page-template-contact .footer {
  margin-top: 0;
}

.FormationCard {
  border-radius: 7.5px;
  overflow: hidden;
  background-color: #EF4D4D;
}
.FormationCard__header, .FormationCard__content {
  padding: 2rem;
}
.FormationCard__header {
  min-height: 15rem;
  height: 15rem;
  background-color: #1B3A4B;
}
.FormationCard__header_img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.FormationCard__content {
  height: auto;
  background-color: #EF4D4D;
  height: 100%;
  color: white;
}
.FormationCard__content_title {
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.FormationCard__content_cta {
  color: white !important;
}
.FormationCard__content_cta:hover {
  background-color: white !important;
  color: #EF4D4D !important;
}

.ProjetCard {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 15px;
  height: auto;
  z-index: 0;
  background: white;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  height: 25rem;
  overflow: hidden;
}
@media screen and (min-width: 850px) {
  .ProjetCard {
    height: 25rem;
  }
}
@media screen and (min-width: 1500px) {
  .ProjetCard {
    height: 30rem;
  }
}
.ProjetCard__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  display: none;
  border-radius: 15px;
  z-index: 0;
}
@media screen and (min-width: 1200px) {
  .ProjetCard__video {
    display: flex;
  }
}
.ProjetCard:hover:not(.novideo) .ProjetCard__overlay {
  opacity: 0;
}
.ProjetCard:hover:not(.novideo) .ProjetCard__informations {
  opacity: 0;
}
.ProjetCard:hover:not(.novideo) .ProjetCard__informations_title,
.ProjetCard:hover:not(.novideo) .ProjetCard__informations_excerpt {
  text-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}
.ProjetCard__overlay {
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  border-radius: 7.5px;
  transition: opacity 0.1s ease-in-out;
  z-index: 1;
  overflow: hidden;
  padding: 2rem 2rem 0 2rem;
  box-shadow: inset 0 0 25px 0 rgba(25, 30, 35, 0.1);
}
.ProjetCard__overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, rgba(25, 30, 35, 0.25) 0%, rgba(255, 255, 255, 0) 25%);
}
@keyframes SiteCard__thumbnail--center {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes SiteCard__thumbnail--left {
  0% {
    transform: translateY(0) translateX(10%);
  }
  50% {
    transform: translateY(10px) translateX(15%);
  }
  100% {
    transform: translateY(0) translateX(10%);
  }
}
@keyframes SiteCard__thumbnail--right {
  0% {
    transform: translateY(0) translateX(-10%);
  }
  50% {
    transform: translateY(10px) translateX(-15%);
  }
  100% {
    transform: translateY(0) translateX(-10%);
  }
}
.ProjetCard__overlay_thumbnail {
  position: relative;
  width: 65%;
  border-radius: 7.5px 7.5px 0 0;
  animation-duration: 45s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  box-shadow: 0 0 25px 0 rgba(25, 30, 35, 0.35);
}
.ProjetCard__overlay_thumbnail--left, .ProjetCard__overlay_thumbnail--right {
  z-index: 0;
  width: 55%;
}
.ProjetCard__overlay_thumbnail--left {
  transform: translateX(10%);
  animation-name: SiteCard__thumbnail--left;
}
.ProjetCard__overlay_thumbnail--center {
  z-index: 1;
  animation-name: SiteCard__thumbnail--center;
}
.ProjetCard__overlay_thumbnail--right {
  transform: translateX(-10%);
  animation-name: SiteCard__thumbnail--right;
}
.ProjetCard__informations {
  position: absolute;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  opacity: 1;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, border 0.3s ease-in-out;
  color: white;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 1rem 1.5rem;
  margin: 1rem;
}
.ProjetCard__informations_title, .ProjetCard__informations_excerpt {
  position: relative;
  line-height: 1.25;
  z-index: 1;
  transition: all 0.1s ease-in-out;
}
.ProjetCard__informations_title {
  font-weight: 700;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 450px) {
  .ProjetCard__informations_title {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 576px) {
  .ProjetCard__informations_title {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .ProjetCard__informations_title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1500px) {
  .ProjetCard__informations_title {
    font-size: 3rem;
  }
}
.ProjetCard__informations_excerpt {
  font-size: 1rem;
  font-weight: 500;
}
.ProjetCard__informations_tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.ProjetCard__informations_tags_tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  border-radius: 15px;
  backdrop-filter: blur(2.5px);
  z-index: 2;
  width: fit-content;
}
.ProjetCard__informations_tags_tag_svg {
  fill: white;
  min-width: 1rem;
  width: 1rem;
  min-height: 1rem;
  margin-right: 0.4rem;
}
.ProjetCard__informations_tags_tag_label {
  color: white;
  font-size: 0.75rem;
}
.ProjetCard__informations_tags_tag--favourite {
  background-color: rgba(242, 180, 0, 0.7);
}
.ProjetCard__informations_tags_tag--category {
  background-color: rgba(25, 30, 35, 0.7);
}
.ProjetCard__informations_dates {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.ProjetCard__informations_dates_date {
  display: none;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  margin-right: 0.5rem;
  border-radius: 7.5px;
  background-color: rgba(39, 38, 64, 0.85);
}
.ProjetCard__informations_dates_date:last-of-type {
  margin-right: 0;
}
@media screen and (min-width: 450px) {
  .ProjetCard__informations_dates_date {
    display: inline-block;
  }
}

.body:not(.home) .VideoCard {
  color: #272640;
}

.VideoCard {
  color: white;
  text-decoration: none;
}
.VideoCard:hover .VideoCard__illustration_thumbnail {
  opacity: 0;
}
.VideoCard__illustration {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  aspect-ratio: 16/9;
  padding: 1rem;
  border-radius: 15px;
  overflow: hidden;
}
.VideoCard__illustration_logo {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2rem;
  height: 2rem;
  background-color: white;
  border-radius: 7.5px;
  padding: 0.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.VideoCard__illustration_video {
  position: absolute;
  min-height: 100%;
  min-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.VideoCard__illustration_thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.1s ease-in-out;
}
.VideoCard__illustration_play {
  position: relative;
  fill: white;
  width: 2rem;
  filter: drop-shadow(0 0 25px rgba(0, 0, 0, 0.75));
  z-index: 2;
}
.VideoCard__illustration_duration {
  position: relative;
  padding: 0.5rem 0.75rem;
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 7.5px;
  z-index: 2;
}
.VideoCard__informations {
  margin-top: 1rem;
  color: #272640;
  line-height: 1.25;
}
.VideoCard__informations_title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.VideoCard__informations_description {
  text-align: justify;
  font-size: 0.85rem;
  line-height: 1.25;
}
.VideoCard__informations_date {
  font-size: 0.75rem;
  margin-top: 0.75rem;
  opacity: 0.5;
  font-weight: 500;
}

.AlbumCard {
  aspect-ratio: 1/1;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform 0.1s ease-in-out;
}
.AlbumCard:hover {
  transform: scale(1.01);
}
.AlbumCard__overlay {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(25, 30, 35, 0.75) 0%, rgba(25, 30, 35, 0.25) 50%, rgba(25, 30, 35, 0) 100%);
  border-radius: 15px;
  color: white;
  padding: 2rem;
  line-height: 1.25;
}
.AlbumCard__overlay_title {
  font-size: 1.5rem;
  font-weight: 700;
}
.AlbumCard__overlay_total {
  font-size: 1rem;
}

@keyframes navAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hamburger {
  position: fixed;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 100;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.hamburger .hamburger-inner {
  background-color: white !important;
}
.hamburger .hamburger-inner:before, .hamburger .hamburger-inner:after {
  background-color: white !important;
}
@media screen and (min-width: 1024px) {
  .hamburger {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  .body:not(.home) .navigation {
    position: relative;
    background-color: #272640;
    padding: 1rem 0;
  }
  .body:not(.home) .navigation .container {
    flex-direction: row;
    justify-content: space-between;
  }
  .body:not(.home) .navigation__logo {
    display: flex;
    transition: opacity 0.1s ease-in-out;
  }
  .body:not(.home) .navigation__logo_img {
    height: 4rem;
  }
}
.admin-bar .navigation {
  top: 32px;
}

.navigation {
  display: none;
  position: fixed;
  flex-flow: row wrap;
  top: 0;
  left: 0;
  z-index: 99;
  overflow-y: scroll;
  background-color: #272640;
  width: 100vw;
  height: 100vh;
  padding-top: 5rem;
  transition: background-color 0.1s ease-in-out;
}
@media screen and (min-width: 1024px) {
  .navigation {
    position: absolute;
  }
}
@media screen and (min-width: 1200px) {
  .navigation {
    padding: 0;
  }
}
.navigation::-webkit-scrollbar {
  display: none;
}
.navigation.is-active {
  display: flex;
}
@media screen and (min-width: 1024px) {
  .navigation {
    height: auto;
    background-color: transparent;
    overflow: visible;
    padding: 2rem 0;
  }
}
.navigation .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.navigation__logo {
  display: none;
}
.navigation .nav {
  display: flex;
  width: fit-content;
  margin-top: 3rem;
}
@media screen and (min-width: 1024px) {
  .navigation .nav {
    margin-top: 0;
    width: fit-content;
  }
}
.navigation .nav .menu {
  display: flex;
  flex-flow: column;
}
@media screen and (min-width: 1024px) {
  .navigation .nav .menu {
    flex-flow: row;
  }
}
.navigation .nav .menu .menu-item {
  position: relative;
  display: flex;
  height: auto;
  margin-top: 2rem;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1024px) {
  .navigation .nav .menu .menu-item {
    margin-left: 3rem;
    margin-top: 0;
    width: fit-content;
  }
}
.navigation .nav .menu .menu-item:first-child {
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .navigation .nav .menu .menu-item:first-child {
    margin-left: 0;
  }
}
.navigation .nav .menu .menu-item::after {
  content: "";
  position: absolute;
  top: calc(100% + 0.5rem);
  width: 0%;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  transition: width 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.navigation .nav .menu .menu-item:hover::after {
  width: 100%;
  box-shadow: 0 0 20px 0 white;
}
.navigation .nav .menu .menu-item.current_page_item::after, .navigation .nav .menu .menu-item.current_page_item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  border-radius: 7.5px;
  transform: inherit;
  box-shadow: 0 0 20px 0 white;
}
.navigation .nav .menu .menu-item.current_page_item::before {
  top: calc(0px - 0.5rem);
}
.navigation .nav .menu .menu-item.current_page_item::after {
  bottom: calc(0px - 0.5rem);
}
.navigation .nav .menu .menu-item a {
  display: flex;
  color: white;
  text-transform: uppercase;
  align-items: center;
  font-weight: 600;
  width: 100%;
  font-size: 0.85rem;
  transition: all 0.1s ease-in-out;
}
.navigation .nav .menu .menu-item a span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
}
.navigation .nav .menu .menu-item a span img {
  width: 100% !important;
  height: auto !important;
}

.footer {
  background-color: #4D194D;
}
.footer__style {
  top: 0;
  left: 0;
}
.footer__social {
  order: 1;
}
@media screen and (min-width: 768px) {
  .footer__social {
    order: 0;
  }
}
.footer__credit {
  order: 0;
}
@media screen and (min-width: 768px) {
  .footer__credit {
    order: 1;
  }
}
.footer__legal {
  order: 2;
}
@media screen and (min-width: 768px) {
  .footer__legal {
    order: 2;
  }
}
@media screen and (min-width: 768px) {
  .footer .menu-footer-legal-container .menu-item {
    margin-left: auto;
    width: fit-content;
  }
}
.footer .menu-footer-legal-container .menu-item a {
  color: white;
  font-size: 0.75rem;
}

.single-site {
  background-color: #191E23;
}
.single-site .header {
  background-color: #191E23;
  padding-top: 5rem;
}
.single-site .header__container {
  max-width: 1920px;
}
.single-site .header__container_box {
  position: relative;
  border-radius: 15px;
  height: 40rem;
  background-color: white;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.single-site .header__container_box_video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
}
.single-site .header__container_box_overlay {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 5rem;
  background: linear-gradient(0deg, rgba(25, 30, 35, 0.75) 0%, rgba(25, 30, 35, 0.25) 100%);
  z-index: 1;
}
.single-site .header__container_box_overlay_title {
  font-size: 5rem;
  font-weight: bold;
}
.single-site .header__container_box_overlay_description {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
.single-site .header__container_box_overlay_buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.single-site .header__container_bar {
  display: grid;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  margin: 3rem 0;
}
@media screen and (min-width: 768px) {
  .single-site .header__container_bar {
    display: flex;
    justify-content: space-between;
  }
}
.single-site .header__container_bar_stats {
  display: flex;
  gap: 3rem;
}
.single-site .header__container_bar_stats_stat {
  display: flex;
  align-items: center;
}
.single-site .header__container_bar_stats_stat_iconbox {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 4rem;
  width: 4rem;
  min-height: 4rem;
  height: 4rem;
  padding: 1.15rem;
  border-radius: 7.5px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-right: 1rem;
}
.single-site .header__container_bar_stats_stat_iconbox svg {
  fill: white;
  height: 100%;
}
.single-site .header__container_bar_stats_stat_informations_title {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
}
.single-site .header__container_bar_stats_stat_informations_value {
  font-size: 1.75rem;
  font-weight: bold;
  margin-top: 0.5rem;
}
.single-site .contexte {
  background-color: #191E23;
}
.single-site .contexte__container_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.single-site .contexte__container_box_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.single-site .contexte__container_box_content h3 {
  font-weight: bold;
  font-size: 2rem;
}
.single-site .contexte__container_box_illustration {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
  border-radius: 15px;
}
.single-site .contexte__container_box_illustration_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}
.single-site .collaborators {
  background-color: #191E23;
}
.single-site .collaborators__container_list {
  display: grid;
}
.single-site .collaborators__container_list.one {
  display: flex;
  justify-content: center;
  grid-template-columns: 1fr;
}
.single-site .collaborators__container_list.one .collaborators__container_list_collaborator {
  display: grid;
  grid-template-columns: 3fr 9fr;
  max-width: 75rem;
  width: 100%;
  gap: 3rem;
}
.single-site .collaborators__container_list.one .collaborators__container_list_collaborator_picture {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
}
.single-site .collaborators__container_list.one .collaborators__container_list_collaborator_picture_img {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border-radius: 15px;
}
.single-site .collaborators__container_list.one .collaborators__container_list_collaborator_content {
  display: flex;
  flex-direction: column;
}
.single-site .collaborators__container_list.one .collaborators__container_list_collaborator_content_name {
  font-weight: bold;
  font-size: 2rem;
}
.single-site .collaborators__container_list.one .collaborators__container_list_collaborator_content_job {
  font-size: 1.25rem;
  margin-top: 0.5rem;
}
.single-site .collaborators__container_list.one .collaborators__container_list_collaborator_content_separator {
  height: 1px;
  border: 0;
  background-color: white;
  margin: 1.5rem 0;
  opacity: 0.25;
}
.single-site .collaborators__container_list.one .collaborators__container_list_collaborator_content_description {
  font-size: 1rem;
}
.single-site .updates {
  background-color: #191E23;
}
.single-site .updates__container_list {
  display: flex;
}
.single-site .updates__container_list_update {
  position: relative;
  z-index: 1;
  display: flex;
}
.single-site .updates__container_list_update:last-of-type .informations__logs_list_log_icon::before {
  display: none;
}
.single-site .updates__container_list_update_icon {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  padding: 1rem;
  border-radius: 7.5px;
  background-color: #FD841F;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5rem;
}
.single-site .updates__container_list_update_icon svg {
  width: 100%;
  fill: white;
}
.single-site .updates__container_list_update_icon::before, .single-site .updates__container_list_update_icon::after {
  position: absolute;
  content: "";
  width: 200%;
  z-index: 0;
  background-color: #FD841F;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
}
.single-site .updates__container_list_update_icon::before {
  right: 100%;
}
.single-site .updates__container_list_update_icon::after {
  left: 100%;
}
.single-site .updates__container_list_update_content {
  line-height: 1.25;
}
.single-site .updates__container_list_update_content_date {
  font-size: 0.85rem;
  opacity: 0.5;
}
.single-site .updates__container_list_update_content_title {
  font-weight: bold;
  font-size: 1rem;
}
.single-site .updates__container_list_update_content_description {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  text-align: justify;
}

.play {
  z-index: 1;
  font-size: 3.5rem;
}
@media screen and (min-width: 576px) {
  .play {
    font-size: 5rem;
  }
}

.pause {
  z-index: 1;
  font-size: 2.5rem;
}

.page-template-community .pause {
  top: 5%;
}

.button {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.75rem;
  border-radius: 15px;
  text-decoration: none;
  color: white;
  transition: all 0.1s ease-in-out;
}
.button:hover {
  transform: translate(-5px, -5px);
  box-shadow: 5px 5px 0 0 #F3F7FD;
  border-color: #F3F7FD;
}
.button__icon {
  min-width: 1.5rem;
  width: 1.5rem;
  margin-right: 0.5rem;
  fill: white;
}
.button__icon.right {
  margin-left: 0.5rem;
  margin-right: 0;
}
.button__label {
  font-weight: 500;
}
.button.outline:hover, .button.outlined:hover {
  backdrop-filter: blur(10px);
}
.button.primary {
  background-color: #272640;
  color: white;
}
.button.primary.outlined {
  border: 2px solid #272640;
  color: #272640;
  background-color: transparent;
}
.button.primary.outlined .button__icon {
  fill: #272640;
}
.button.primary.shadow:hover {
  box-shadow: 5px 5px 0 0 rgba(39, 38, 64, 0.25);
}
.button.secondary {
  background-color: #1B3A4B;
  color: white;
}
.button.secondary.shadow:hover {
  box-shadow: 5px 5px 0 0 rgba(27, 58, 75, 0.25);
}
.button.red {
  background-color: #EF4D4D;
  color: white;
}
.button.red.shadow:hover {
  box-shadow: 5px 5px 0 0 rgba(239, 77, 77, 0.25);
}
.button.white {
  color: #272640;
  background-color: white;
}
.button.white svg {
  fill: #272640;
}
.button.white.outlined {
  border: 2px solid white;
  color: white;
  background-color: transparent;
}
.button.white.outlined svg {
  fill: white;
}
.button.white.shadow:hover {
  box-shadow: 5px 5px 0 0 rgba(255, 255, 255, 0.25);
}

.page-template-legal .content p {
  font-size: 0.75rem;
}

/*# sourceMappingURL=style.css.map */
