/*!*******************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/styles/main.scss ***!
  \*******************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap);
/*!***********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/styles/main.scss (1) ***!
  \***********************************************************************************************************************************************/
@charset "UTF-8";

@font-face {
  font-family: "Neue Machina black";
  src: local("Neue Machina Black"), local("Neue-Machina-Black"), url("../fonts/NeueMachina-Black.woff2") format("woff2"), url("../fonts/NeueMachina-Black.woff") format("woff"), url("../fonts/NeueMachina-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Neue Machina Regular";
  src: local("Neue Machina Regular"), local("Neue-Machina-Regular"), url("../fonts/NeueMachina-Regular.woff2") format("woff2"), url("../fonts/NeueMachina-Regular.woff") format("woff"), url("../fonts/NeueMachina-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Neue Machina Light";
  src: local("Neue Machina Light"), local("Neue-Machina-Light"), url("../fonts/NeueMachina-Light.woff2") format("woff2"), url("../fonts/NeueMachina-Light.woff") format("woff"), url("../fonts/NeueMachina-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  outline: none;
}

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: "Bebas Neue", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  background-color: #000;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-left: 0;
}

a:focus,
button:focus {
  outline: none;
}

main {
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  transition: all 0.3s ease;
  height: 100px;
  /* tailles des bars */
  /* état actif (X) */
}

.header.hide {
  transform: translateY(-100%);
}

.header.show {
  transform: translateY(0);
  background: #000;
}

.header .burger-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 40px;
  background: none;
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 0;
  align-items: end;
  z-index: 9999;
}

.header .burger-btn span {
  display: block;
  height: 4px;
  background: #fff;
  transition: all 0.3s ease;
}

.header .burger-btn span:nth-child(1) {
  width: 57px;
}

.header .burger-btn span:nth-child(2) {
  width: 37px;
}

.header .burger-btn span:nth-child(3) {
  width: 19px;
}

.header .burger-btn.active span:nth-child(1) {
  transform: translateY(14px) rotate(45deg);
  width: 57px;
}

.header .burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.header .burger-btn.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-43deg);
  width: 57px;
}

.header .logo {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 9999;
}

.main-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 105px;
}

/* menu ouvert */
.main-menu.open {
  transform: translateX(0);
}

.main-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-menu ul li.has-submenu a {
  position: relative;
}

.main-menu ul li.has-submenu>a:after {
  content: "+";
  font-size: 75px;
  position: absolute;
  top: 0;
  right: -30px;
}

.main-menu>ul {
  background: #000;
  padding: 20px 0 20px;
  position: relative;
}

.main-menu>ul>li {
  padding: 5px 100px 5px 0;
  background: #000;
}

.main-menu a {
  color: #fff;
  font-size: 75px;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
  text-transform: uppercase;
}

.main-menu a:hover,
.main-menu a.active {
  color: #3315ED;
}

/* ===== SUB MENU ===== */
/* caché par défaut */
.main-menu ul.sub-menu {
  position: absolute;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 20px 0 20px 100px;
  left: 0;
  top: 0;
  z-index: -1;
  height: 100%;
  width: 555px;
}

.main-menu ul.sub-menu:after {
  content: "";
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  background: #fff;
}

/* liens sous menu */
/* DESKTOP hover */
@media (hover: hover) {
  .has-submenu:hover .sub-menu {
    left: 100%;
  }
}

/* état ouvert (mobile) */
.has-submenu.open .sub-menu {
  left: 100%;
}

.item-slide-home img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-video .video-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.box-video .video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.box-video .btn-play {
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  padding: 12px 14px;
  background: #272A2C;
  border-radius: 60px;
  font-size: 20px;
  display: flex;
  gap: 10px;
  border: none;
  color: #fff;
  width: fit-content;
  position: absolute;
  top: 0;
  left: 25px;
}

.box-video .btn-play:before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: url(../images/pause.svg) center no-repeat rgba(255, 255, 255, 0.1019607843);
}

.intro-home {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: end;
  justify-content: space-between;
  padding: 70px 25px 25px 25px;
}

.intro-home h1 {
  font-size: 120px;
  text-transform: uppercase;
  color: #fff;
  max-width: 830px;
  width: 100%;
}

.intro-home h1 span {
  color: #3315ED;
}

.intro-home .slug {
  font-family: "Neue Machina black";
  font-size: 35px;
  color: #fff;
  max-width: 555px;
  width: 100%;
}

.change {
  background: #000;
  padding: 200px 0 100px 0;
}

.change .box-change {
  max-width: 1290px;
  padding: 0 15px;
  margin: 0 auto;
}

.change .box-change .title-change {
  text-align: center;
  font-size: 100px;
  text-transform: uppercase;
  max-width: 630px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 128px;
  color: #fff;
}

.change .box-change .title-change span {
  color: #3315ED;
}

.bg {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.outer {
  width: 100%;
}

.item-change {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.item-change .label-change {
  font-size: 78px;
  color: #fff;
  max-width: 395px;
  width: 100%;
}

.item-change .nbr-change {
  font-size: 300px;
  color: #fff;
}

.item-change .desc-change {
  text-align: right;
  font-family: "Neue Machina Regular";
  font-size: 16px;
  color: #fff;
  max-width: 395px;
  width: 100%;
  text-transform: none;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.item-change .desc-change p {
  line-height: 1.4;
  padding-bottom: 15px;
  font-family: "Neue Machina Regular";
}

.item-change .desc-change a {
  font-family: "Neue Machina Regular";
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 2px;
  transition: all 0.3s;
}

.item-change .desc-change a:hover {
  color: #3315ED;
}

.medias {
  background: #000;
  padding: 128px 0;
}

.intro-medias {
  display: flex;
  justify-content: space-between;
  padding: 0 25px 137px 25px;
  align-items: end;
}

.intro-medias h2 {
  font-size: 120px;
  color: #fff;
  text-transform: uppercase;
  max-width: 620px;
  width: 100%;
}

.intro-medias h2 span {
  color: #3315ED;
}

.intro-medias .desc-medias {
  font-size: 24px;
  color: #fff;
  line-height: 1.5;
  font-family: "Neue Machina Light";
  text-align: right;
}

.item-medias {
  max-width: 1272px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 300px;
}

.item-medias:last-child {
  padding-bottom: 0;
}

.item-medias:nth-child(odd) {
  flex-direction: row-reverse;
}

.item-medias:nth-child(odd) .info-tv {
  padding-left: 91px;
  padding-right: 0;
}

.item-medias .pro.active {
  width: 40%;
}

.item-medias .pro.active .visu {
  position: relative;
}

.item-medias .pro.active .visu:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  /*box-shadow: 0px 0px 73px 15px rgba(51, 21, 237, 0.64);*/
}

.item-medias .pro.active .visu img {
  display: block;
  width: 100%;
}

.item-medias .pro.active .info-sup {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
}

.item-medias .pro.active .info-sup span {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 12px 24px;
  color: #fff;
}

.item-medias .pro.active .info-sup a {
  font-family: "Neue Machina Regular";
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 4px;
  transition: all 0.3s;
}

.item-medias .pro.active .info-sup a:hover {
  color: #3315ED;
}

.item-medias .info-tv {
  width: 60%;
  padding-left: 91px;
}

.item-medias .info-tv .logo-tv {
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
}

.item-medias .info-tv .name-tv {
  font-size: 100px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.list-pro {
  margin-top: -200px;
}

.list-pro .pro {
  position: relative;
  z-index: 1;
}

.list-pro .pro:first-child {
  margin-bottom: 150px;
}

.list-pro .pro:nth-child(odd) {
  margin-left: 50%;
}

.ecosysteme {
  background: #000;
  padding: 100px 0;
}

.intro-eco {
  text-align: center;
  max-width: 862px;
  width: 100%;
  margin: 0 auto;
  font-size: 52px;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 120px;
}

.intro-eco span {
  color: #3315ED;
}

.slide-ecosysteme {
  overflow: hidden;
}

.slide-ecosysteme .item-eco {
  width: auto;
}

.slide-ecosysteme .item-eco img {
  height: 210px;
}

.numbrs {
  padding: 100px 80px;
}

.item-numbrs {
  padding-bottom: 140px;
  display: flex;
  justify-content: end;
}

.item-numbrs:nth-child(odd) {
  justify-content: start;
}

.item-numbrs .content-numbrs {
  max-width: 875px;
}

.item-numbrs .label-numbrs {
  font-size: 200px;
  color: #fff;
  font-family: "Neue Machina Regular";
  padding-bottom: 15px;
}

.item-numbrs .label-numbrs span {
  font-size: 100px;
  font-family: "Neue Machina Regular";
}

.item-numbrs .desc-numbrs {
  font-size: 100px;
  color: #fff;
  text-transform: uppercase;
}

.equipe {
  padding: 100px 90px 0 90px;
  background: #000;
}

.intro-equipe {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 120px;
}

.intro-equipe .txt {
  font-size: 52px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 882px;
  width: 100%;
}

.intro-equipe .txt span {
  color: #3315ED;
}

.intro-equipe a {
  font-family: "Neue Machina Regular";
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 2px;
  transition: all 0.3s;
}

.intro-equipe a:hover {
  color: #3315ED;
}

.list-equipe {
  padding-bottom: 100px;
}

.line-pero {
  position: relative;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #7B7777;
}

.line-pero .name {
  font-size: 100px;
  color: #fff;
}

.line-pero .visu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s;
}

.line-pero .rols {
  font-size: 24px;
  color: #fff;
}

.line-pero.active .name,
.line-pero.active .rols,
.line-pero:hover .name,
.line-pero:hover .rols {
  color: #3315ED;
}

.line-pero.active .visu,
.line-pero:hover .visu {
  opacity: 1;
}

.comptent {
  padding: 200px 0;
  position: relative;
  background: url(../images/fnd-comptent.png) center no-repeat;
}

.comptent .list-item-comptent {
  display: flex;
  flex-wrap: wrap;
  gap: 250px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 92px;
}

.comptent .item-comptent {
  width: calc((100% - 250px) / 2);
  text-align: right;
}

.comptent .item-comptent img {
  max-width: 100%;
}

.comptent .item-comptent:nth-child(odd) {
  text-align: left;
}

.comptent .item-comptent:nth-child(odd) img {
  position: relative;
  bottom: -100px;
}

.comptent .title-comptent {
  font-size: 100px;
  color: #fff;
  text-transform: uppercase;
  max-width: 960px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.comptent .title-comptent span {
  color: #3315ED;
}

.transform {
  padding: 90px 30px 125px 30px;
  background: url(../images/fnd-transform.jpg) center no-repeat;
  background-size: cover;
  position: relative;
}

.transform .title-transform {
  font-size: 120px;
  text-transform: uppercase;
  max-width: 1100px;
  width: 100%;
  padding-bottom: 260px;
  color: #fff;
}

.transform .desc {
  margin-left: 50%;
  font-size: 26px;
  color: #fff;
  padding-bottom: 240px;
  font-family: "Neue Machina Regular";
  line-height: 1.4;
  max-width: 600px;
  width: 100%;
  position: relative;
  padding-left: 45px;
  padding-top: 40px;
}

.transform .desc:before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/plus.svg);
}

.transform .link {
  display: flex;
  justify-content: end;
}

.transform .link a {
  font-family: "Neue Machina Regular";
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 4px;
  transition: all 0.3s;
}

.transform .link a:hover {
  color: #3315ED;
}

.transform .ntb-transform {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 120px;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.2;
}

.partenarias {
  padding: 200px;
}

.partenarias .intro-part {
  max-width: 605px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 130px;
}

.partenarias .intro-part h2 {
  position: relative;
  font-size: 140px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -1px;
  padding: 0 0 20px 0;
  text-align: center;
}

.partenarias .intro-part h2:after {
  content: "";
  display: block;
  width: 49px;
  height: 49px;
  position: absolute;
  top: 0;
  right: -52px;
  background: url(../images/plus-v2.svg) center no-repeat;
}

.partenarias .intro-part a {
  font-family: "Neue Machina Regular";
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 4px;
  transition: all 0.3s;
}

.partenarias .intro-part a:hover {
  color: #3315ED;
}

.list-part {
  max-width: 1230px;
  width: 100%;
  height: 730px;
  margin: 0 auto;
  position: relative;
  background: url(../images/fnd-comptent.png) center no-repeat;
}

.list-part .logo-part-regie {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
}

#myCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.tendance {
  padding: 105px 30px;
  background: #000;
}

.tendance .intro-tendance {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 55px;
}

.tendance .intro-tendance h2 {
  position: relative;
  font-size: 100px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -1px;
  padding: 0 0 20px 0;
  text-align: center;
}

.tendance .intro-tendance h2:after {
  content: "";
  display: block;
  width: 49px;
  height: 49px;
  position: absolute;
  top: 0;
  right: -52px;
  background: url(../images/plus-v2.svg) center no-repeat;
}

.tendance .intro-tendance a {
  font-family: "Neue Machina Regular";
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 4px;
  transition: all 0.3s;
}

.tendance .intro-tendance a:hover {
  color: #3315ED;
}

.tendance {
  overflow: hidden;
}

.tendance .slide-tendance .item-tendance {
  position: relative;
  width: auto;
}

.tendance .slide-tendance .item-tendance:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(191deg, rgba(3, 6, 6, 0) 0%, rgba(3, 6, 6, 0.78) 100%);
}

.tendance .slide-tendance .item-tendance img {
  display: block;
  width: auto;
  height: 462px;
}

.tendance .slide-tendance .item-tendance .info-tendance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 30px;
  width: 100%;
  z-index: 2;
}

.tendance .slide-tendance .item-tendance .info-tendance .txt {
  font-family: "Neue Machina Regular";
  font-size: 26px;
  color: #fff;
  max-width: 435px;
  width: 100%;
}

.tendance .slide-tendance .item-tendance .info-tendance .date-tendance {
  font-size: 14px;
  color: #fff;
  padding: 12px 15px;
  border: 1px solid #fff;
  font-family: "Neue Machina Regular";
  border-radius: 40px;
}

.contact {
  background: #000;
  padding: 200px 0;
}

.contact .box-contact {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.contact .intro-contact {
  display: flex;
  align-items: end;
  padding-bottom: 191px;
}

.contact .intro-contact .label-contact {
  width: 344px;
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Neue Machina Regular";
}

.contact .intro-contact .desc-contact {
  width: calc(100% - 344px);
  font-size: 52px;
  color: #fff;
  text-transform: uppercase;
}

.contact .intro-contact .desc-contact span {
  color: #3315ED;
}

.contact .intro-contact .desc-contact .name-to span {
  color: #fff;
  display: block;
  opacity: 0.4;
}

.form {
  padding-left: 344px;
}

.form .col-option {
  padding-bottom: 40px;
}

.form label {
  display: block;
  width: 100%;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
}

.form input[type=text],
.form input[type=email],
.form input[type=password],
.form textarea {
  display: block;
  width: 100%;
  padding: 30px 0;
  border: none;
  border-bottom: 1px solid #8D8D8D;
  background: none;
  font-size: 22px;
  color: #8D8D8D;
  font-family: "Neue Machina Regular";
}

.form input[type=text]:focus,
.form input[type=email]:focus,
.form input[type=password]:focus,
.form textarea:focus {
  color: #3315ED;
  border-bottom: 1px solid #3315ED;
}

.form textarea {
  height: 170px;
}

.form button,
.form input[type="submit"] {
  width: 200px;
  height: 80px;
  background: #fff;
  border: 1px solid #fff;
  font-family: "Neue Machina Regular";
  font-size: 24px;
  color: #000;
  border-radius: 40px;
  cursor: pointer;
}

.radio-group input[type=radio] {
  display: none;
}

.radio-group {
  display: flex;
  gap: 10px;
  padding-top: 30px;
  border-bottom: 1px solid #8D8D8D;
  padding-bottom: 40px;
}

.radio-group label {
  display: inline-block;
  padding: 20px 34px;
  border: 1px solid #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

.radio-group label:hover {
  background: #000;
  color: #fff;
}

.radio-group input[type=radio]:checked+label {
  background: #fff;
  color: #000;
}

.footer {
  padding: 100px 30px 300px 30px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.footer .logo-footer {
  position: absolute;
  left: 0;
  bottom: 0;
}

.footer .row-menu-footer {
  display: flex;
  justify-content: space-between;
  padding-bottom: 170px;
}

.footer .row-menu-footer .signe {
  max-width: 615px;
  width: 100%;
}

.footer .row-menu-footer .signe p {
  font-size: 23px;
  padding-bottom: 25px;
  color: #000;
  line-height: 1.4;
  text-transform: uppercase;
  font-family: "Neue Machina Regular";
}

.footer .row-menu-footer .signe a {
  font-family: "Neue Machina Regular";
  font-size: 52px;
  color: #000;
  text-decoration: none;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 4px;
  transition: all 0.3s;
}

.footer .row-menu-footer .signe a:hover {
  color: #3315ED;
}

.footer .row-menu-footer .signe a img {
  width: 35px;
  height: 35px;
}

.footer .row-menu-footer .menu-footer {
  display: flex;
  gap: 80px;
}

.footer .row-menu-footer .menu-footer .col-menu h5 {
  font-size: 18px;
  color: #000;
  font-family: "Neue Machina black";
  padding-bottom: 10px;
}

.footer .row-menu-footer .menu-footer .col-menu ul li {
  padding: 8px 0;
}

.footer .row-menu-footer .menu-footer .col-menu ul li a {
  font-size: 14px;
  color: #000;
  font-family: "Neue Machina Regular";
  text-decoration: none;
  text-transform: none;
}

.footer .row-menu-footer .menu-footer .col-menu ul li a:hover {
  color: #3315ED;
}

.footer .row-right {
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.footer .row-right .copy {
  font-size: 15px;
  font-family: "Neue Machina Regular";
  color: #000;
}

.footer .row-right .copy a {
  font-family: "Neue Machina Regular";
  color: #000;
  text-decoration: none;
  transition: all 0.3s;
}

.footer .row-right .copy a:hover {
  color: #3315ED;
}

.footer .row-right ul {
  display: flex;
  gap: 40px;
}

.footer .row-right ul li a {
  font-size: 18px;
  color: #000;
  text-decoration: none;
  display: flex;
  gap: 5px;
  font-family: "Neue Machina Regular";
  transition: all 0.3s;
}

.footer .row-right ul li a:hover {
  color: #3315ED;
}

.wrapper {
  width: 100%;
}

.slider {
  position: relative;
  overflow: hidden;
}

.slider .outer,
.slider .inner {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}

.slide {
  width: 100%;
  background: #000;
}

.vertical-slider {
  height: 100vh;
  overflow: hidden;
}

.v-slide {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  background: #111;
  color: #fff;
}

.publicite {
  background: #000;
}

.publicite .box-publicite {
  max-width: 1440px;
  width: 100%;
  padding: 100px 91px;
  margin: 0 auto;
}

.publicite .box-publicite h1 {
  font-size: 120px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 240px;
}

.publicite .box-publicite h1 span {
  color: #3315ED;
}

.publicite .box-publicite .illus-pub {
  display: flex;
  flex-wrap: wrap;
}

.publicite .box-publicite .illus-pub .visu {
  width: 64%;
}

.publicite .box-publicite .illus-pub .visu img {
  display: block;
  width: 100%;
}

.publicite .box-publicite .illus-pub .caption {
  width: 36%;
  padding-left: 124px;
}

.publicite .box-publicite .illus-pub .caption p {
  color: #fff;
  font-family: "Neue Machina Regular";
  font-size: 22px;
  border-bottom: 1px solid #A1A1A1;
  line-height: 1.3;
  padding-bottom: 15px;
}

.publicite .box-publicite .illus-pub .desc {
  width: 100%;
  padding: 90px 0 0 296px;
}

.publicite .box-publicite .illus-pub .desc p {
  max-width: 510px;
  width: 100%;
  color: #fff;
  font-family: "Neue Machina Regular";
  font-size: 22px;
  line-height: 1.4;
  padding-bottom: 50px;
}

.publicite .box-publicite .illus-pub .desc p strong {
  font-family: "Neue Machina black";
}

.publicite .box-publicite .illus-pub .desc a {
  font-family: "Neue Machina Regular";
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 4px;
}

.publicite .box-publicite .illus-pub .desc a img {
  width: 17px;
}

.box-vesion {
  background: #fff;
  padding: 100px 30px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.box-vesion h2 {
  font-size: 120px;
  position: relative;
  width: fit-content;
}

.box-vesion h2:after {
  content: "+";
  font-size: 120px;
  position: absolute;
  top: -35px;
  right: -45px;
  color: #3315ED;
}

.box-vesion .desc-vesion {
  font-size: 24px;
  color: #000;
  line-height: 1.4;
  text-align: right;
  max-width: 900px;
  width: 100%;
  font-family: "Neue Machina Regular";
}

.box-mession {
  background: #3315ED;
  padding: 148px 30px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.box-mession h2 {
  font-size: 120px;
  position: relative;
  width: fit-content;
  color: #fff;
  padding-right: 50px;
  text-decoration: right;
}

.box-mession h2:after {
  content: "+";
  font-size: 120px;
  position: absolute;
  top: -35px;
  right: 0;
  color: #fff;
}

.box-mession .desc-vesion {
  font-size: 24px;
  color: #fff;
  line-height: 1.4;
  max-width: 900px;
  width: 100%;
  font-family: "Neue Machina Regular";
}

.fidelite {
  background: #000;
}

.fidelite .box-fidelite {
  max-width: 1440px;
  width: 100%;
  padding: 100px 91px;
  margin: 0 auto;
}

.fidelite .box-fidelite h2 {
  font-size: 120px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 240px;
}

.fidelite .box-fidelite h2 span {
  color: #3315ED;
}

.items-fidelite .line-item {
  padding-bottom: 50px;
}

.items-fidelite .line-item .item-fidelite {
  max-width: 330px;
  width: 100%;
  position: relative;
}

.items-fidelite .line-item .item-fidelite img {
  display: block;
  width: 100%;
}

.items-fidelite .line-item .item-fidelite .card-fidelite .nbr-card {
  font-family: "Neue Machina Regular";
  font-size: 24px;
  color: #fff;
  padding-bottom: 20px;
}

.items-fidelite .line-item .item-fidelite .card-fidelite h3 {
  font-size: 78px;
  text-transform: uppercase;
  padding-bottom: 15px;
  border-bottom: 1px solid #A1A1A1;
  margin-bottom: 15px;
  color: #fff;
}

.items-fidelite .line-item .item-fidelite .card-fidelite p {
  font-family: "Neue Machina Regular";
  font-size: 24px;
  color: #fff;
  line-height: 1.4;
}

.items-fidelite .line-item .item-fidelite.pos-100 {
  margin-left: calc(100% - 330px);
}

.items-fidelite .line-item .item-fidelite.pos-75 {
  margin-left: calc(75% - 330px);
}

.items-fidelite .line-item .item-fidelite.pos-60 {
  margin-left: calc(60% - 330px);
}

.items-fidelite .line-item .item-fidelite.pos-55 {
  margin-left: calc(55% - 330px);
}

.items-fidelite .line-item .item-fidelite.pos-45 {
  margin-left: calc(45% - 330px);
}

.items-fidelite .line-item .item-fidelite.pos-30 {
  margin-left: calc(30% - 330px);
}

.items-fidelite .line-item .item-fidelite.y-100 {
  margin-top: -100px;
}

.items-fidelite .line-item .item-fidelite.y-50 {
  margin-top: -50px;
}

.items-fidelite .line-item .item-fidelite.y-30 {
  margin-top: -30px;
}

.inner-page {
  padding-top: 100px;
  background: #000;
}

.inner-page.detail-cas {
  padding-top: 0;
}

.inner-page .title-page {
  max-width: 1440px;
  padding: 0 30px 60px 30px;
  width: 100%;
  margin: 0 auto;
  background: url(../images/fnd-title-page.png) center right no-repeat;
}

.inner-page .title-page h1 {
  font-size: 120px;
  color: #fff;
  text-transform: uppercase;
}

.inner-page .title-page span {
  color: #3315ED;
}

.intro-carriere {
  max-width: 1440px;
  padding: 0 30px 50px 30px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: end;
}

.intro-carriere p {
  text-align: right;
  font-size: 24px;
  color: #fff;
  font-family: "Neue Machina Light";
  line-height: 1.4;
  max-width: 1005px;
  width: 100%;
}

.hasFnd {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hasFnd>img {
  display: none;
}

.illus-carrier {
  min-height: 385px;
}

.time-line {
  max-width: 1440px;
  width: 100%;
  padding: 100px 90px;
  margin: 0 auto;
}

.box-timeline {
  display: flex;
  position: relative;
  overflow: hidden;
  padding: 0 0 100px 30px;
}

.box-timeline .line-year {
  border-left: 2px solid #4C4C4C;
  padding-left: 50px;
  padding-top: 60px;
  padding-bottom: 60px;
  flex: 0 0 250px;
}

.box-timeline .line-year .crt-year {
  padding: 75px 0;
  color: #4C4C4C;
  position: relative;
  font-size: 90px;
}

.box-timeline .line-year .crt-year:after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #4C4C4C;
  position: absolute;
  top: 50%;
  left: -62px;
  transform: translate(0, -50%);
}

.box-timeline .line-cards {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
}

.cards-time {
  max-width: 495px;
  width: 100%;
}

.cards-time.current {
  max-width: 495px;
  top: 0;
  right: 0;
}

.cards-time.current .name,
.cards-time.current .desc {
  opacity: 1;
}

.cards-time.current .name {
  font-size: 70px;
}

.cards-time.current .desc {
  font-size: 30px;
}

.cards-time.current .visu {
  opacity: 1;
}

.cards-time.next {
  top: 700px;
  right: 400px;
  max-width: 332px;
}

.cards-time .visu {
  margin-bottom: 50px;
  opacity: 1;
}

.cards-time .visu img {
  display: block;
  width: 100%;
}

.cards-time .name {
  font-size: 45px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 10px;
  opacity: 1;
}

.cards-time .desc {
  font-size: 17px;
  color: #fff;
  font-family: "Neue Machina Regular";
  opacity: 1;
  text-align: center;
}

.box-video-aquipe {
  max-width: 1215px;
  width: 100%;
  margin: 0 auto 100px auto;
  padding: 0 15px;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  position: relative;
}

.box-video-aquipe .video-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.box-video-aquipe .video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.box-video-aquipe .btn-play,
.btn-play-dup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
}

.box-video-aquipe .btn-play:hover,
.btn-play-dup:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

.box-video-aquipe .video-bg.playing .btn-play {
  opacity: 0;
  pointer-events: none;
}

.fidelite-clients {
  background: #000;
}

.fidelite-clients .box-fidelite-clients {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 150px 110px;
}

.fidelite-clients .box-fidelite-clients h2 {
  font-size: 100px;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 120px;
}

.fidelite-clients .box-fidelite-clients .item-pillier {
  display: flex;
  gap: 147px;
  padding-bottom: 130px;
}

.fidelite-clients .box-fidelite-clients .item-pillier .visu img {
  max-width: 100%;
}

.fidelite-clients .box-fidelite-clients .item-pillier:nth-child(odd) {
  flex-direction: row-reverse;
  justify-content: space-between;
}

.fidelite-clients .box-fidelite-clients .item-pillier:last-child {
  padding-bottom: 0;
}

.fidelite-clients .box-fidelite-clients .item-pillier .card-fidelite {
  max-width: 641px;
  width: 100%;
  padding-top: 80px;
}

.fidelite-clients .box-fidelite-clients .item-pillier .tec-card {
  font-family: "Neue Machina Regular";
  font-size: 24px;
  color: #fff;
  padding-bottom: 20px;
}

.fidelite-clients .box-fidelite-clients .item-pillier h3 {
  font-size: 78px;
  text-transform: uppercase;
  padding-bottom: 15px;
  border-bottom: 1px solid #A1A1A1;
  margin-bottom: 15px;
  color: #fff;
  width: fit-content;
}

.fidelite-clients .box-fidelite-clients .item-pillier p {
  font-family: "Neue Machina Regular";
  font-size: 24px;
  color: #fff;
  line-height: 1.4;
}

.box-marques {
  background: #000;
}

.box-marques .list-marques {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px 100px 30px;
}

.box-marques .list-marques .item-marque {
  max-width: 320px;
  width: 100%;
}

.box-marques .list-marques .item-marque.highlighted {
  max-width: 490px;
}

.box-marques .list-marques .item-marque.highlighted .visu {
  height: 550px;

}

.box-marques .list-marques .item-marque.highlighted .visu:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

.box-marques .list-marques .item-marque.highlighted .visu:before {
  width: 129%;
  height: 139%;
}

.box-marques .list-marques .item-marque.highlighted .name {
  font-size: 78px;
  color: #3315ED;
}

.box-marques .list-marques .item-marque .visu {
  height: 360px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.box-marques .list-marques .item-marque .visu:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #2300FF;
  background: radial-gradient(at center, #2300FF, #010101);
  opacity: 0.3;
}

.box-marques .list-marques .item-marque .visu img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  transition: all 0.3s;
}

.box-marques .list-marques .item-marque:hover .visu img {
  transform: scale(1.04) !important;
}

.box-marques .list-marques .item-marque .name {
  font-size: 52px;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.3s;
}

.box-marques .list-marques .item-marque:hover .name {
  color: #3315ED;
}

.box-marques .list-marques .y-pos-100 {
  margin-left: calc(100% - 320px);
}

.box-marques .list-marques .y-pos-90 {
  margin-left: calc(90% - 320px);
}

.box-marques .list-marques .y-pos-30 {
  margin-left: calc(30% - 320px);
}

.box-marques .list-marques .y-pos-55 {
  margin-left: calc(55% - 320px);
}

.box-marques .list-marques .y-pos-40 {
  margin-left: calc(40% - 320px);
}

.box-marques .list-marques .y-pos-10 {
  margin-left: calc(10% - 320px);
}

.box-marques .list-marques .x-pos-100 {
  margin-top: -100px;
}

.box-marques .list-marques .x-pos-50 {
  margin-top: -50px;
}

.intro-client {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 100px 96px 100px 55px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}

.intro-client .infos-client {
  width: calc(45% + 215px);
  margin-right: -215px;
  position: relative;
  z-index: 1;
}

.intro-client .infos-client .line-info-client {
  padding-bottom: 55px;
}

.intro-client .infos-client .line-info-client:last-child {
  padding-bottom: 0;
}

.intro-client .infos-client .line-info-client .kys {
  font-size: 128px;
  color: #8D8D8D;
  font-family: "Neue Machina Regular";
  padding-bottom: 10px;
}

.intro-client .infos-client .line-info-client .kys span {
  font-size: 56px;
  color: #8D8D8D;
  font-family: "Neue Machina Regular";
}

.intro-client .infos-client .line-info-client .desc-info {
  font-size: 72px;
  color: #fff;
  text-transform: uppercase;
}

.intro-client .illus-client {
  width: 55%;
}

.intro-client .illus-client img {
  display: block;
  width: 100%;
}

.link-pres {
  text-decoration: none;
  display: flex;
  width: fit-content;
  padding: 22px 54px;
  border-radius: 40px;
  background: #fff;
  border: 1px solid #fff;
  font-size: 24px;
  color: #000;
  margin: 0 auto;
  transition: all 0.3s;
  font-family: tahoma;
}

.link-pres:hover {
  background: #000;
  color: #fff;
}

.box-detail-client {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 112px 145px 112px;
}

.list-detail-client .item-detail-client {
  padding-bottom: 120px;
  display: flex;
  justify-content: end;
}

.list-detail-client .item-detail-client:nth-child(odd) {
  justify-content: start;
}

.list-detail-client .item-detail-client .card-detail-client {
  max-width: 760px;
  width: 100%;
}

.list-detail-client .item-detail-client .card-detail-client .visu {
  padding-bottom: 40px;
}

.list-detail-client .item-detail-client .card-detail-client .visu img {
  display: block;
  width: 100%;
}

.list-detail-client .item-detail-client .card-detail-client h3 {
  font-size: 78px;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 25px;
  border-bottom: 1px solid #A1A1A1;
  margin-bottom: 30px;
}

.list-detail-client .item-detail-client .card-detail-client p {
  font-size: 24px;
  color: #fff;
  font-family: "Neue Machina Regular";
  line-height: 1.4;
}

.box-etudes-cas {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 120px;
}

.box-etudes-cas .list-etudes-cas .item-cas {
  display: flex;
  padding-bottom: 130px;
}

.box-etudes-cas .list-etudes-cas .item-cas.right {
  justify-content: end;
}

.box-etudes-cas .list-etudes-cas .item-cas.center {
  justify-content: center;
}

.box-etudes-cas .list-etudes-cas .item-cas .x-pos-500 {
  margin-top: -500px;
}

.box-etudes-cas .list-etudes-cas .item-cas .card-cas {
  width: 100%;
  max-width: 517px;
}

.box-etudes-cas .list-etudes-cas .item-cas .card-cas.spec {
  max-width: 1112px;
}

.box-etudes-cas .list-etudes-cas .item-cas .card-cas .visu {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 10px;
}

.box-etudes-cas .list-etudes-cas .item-cas .card-cas .visu img {
  display: block;
  width: 100%;
  border-radius: 10px;
  transition: all 0.3s;
}

.box-etudes-cas .list-etudes-cas .item-cas .card-cas:hover .visu img {
  transform: scale(1.04) !important;
}

.box-etudes-cas .list-etudes-cas .item-cas .card-cas .name {
  font-size: 72px;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 10px;
  transition: all 0.3s;
}

.box-etudes-cas .list-etudes-cas .item-cas .card-cas:hover .name {
  color: #3315ED;
}

.box-etudes-cas .list-etudes-cas .item-cas .card-cas .desc {
  font-size: 24px;
  color: #fff;
  line-height: 1.3;
  font-family: "Neue Machina Light";
}

.tabs-nav {
  display: flex;
  list-style: none;
  gap: 60px;
  padding: 0 90px;
}

.tabs-nav li {
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 32px;
  font-family: "Neue Machina Regular";
}

.tabs-nav li.active {
  color: #3315ED;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.banner-detail {
  height: 658px;
}

.box-detail-etudes-cas {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 85px 30px 115px 30px;
  background: url(../images/fnd-detail.png) center no-repeat;
}

.box-detail-etudes-cas .intro-detail-cas {
  padding-bottom: 100px;
}

.box-detail-etudes-cas .item-detail {
  padding-bottom: 50px;
}

.box-detail-etudes-cas h1 {
  font-size: 120px;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 30px;
}

.box-detail-etudes-cas p {
  font-size: 24px;
  color: #fff;
  line-height: 1.3;
  font-family: "Neue Machina Regular";
}

.box-detail-etudes-cas h2 {
  font-size: 78px;
  color: #fff;
  text-transform: uppercase;
  width: fit-content;
  border-bottom: 1px solid #A1A1A1;
  padding-bottom: 25px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.box-detail-etudes-cas p {
  padding-bottom: 20px;
}

.box-detail-etudes-cas ul {
  list-style: disc;
  padding-left: 35px;
  padding-bottom: 60px;
}

.box-detail-etudes-cas ul li {
  font-family: "Neue Machina Regular";
  font-size: 24px;
  color: #fff;
  line-height: 1.4;
}

.box-iframe {
  max-width: 1186px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  height: 657px;
  margin-bottom: 115px;
}

.box-iframe iframe {
  width: 100%;
  height: 100%;
}

.patage-article {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 115px;
}

.patage-article .label-partage {
  font-size: 20px;
  color: #fff;
  font-family: "Neue Machina Regular";
}

.patage-article ul {
  display: flex;
  gap: 40px;
}

.patage-article ul li a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  display: flex;
  gap: 5px;
  font-family: "Neue Machina Regular";
  transition: all 0.3s;
}

.patage-article ul li a:hover {
  color: #3315ED;
}

.box-services {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 180px 50px 0 50px;
}

.item-service {
  text-decoration: none;
  display: block;
  margin-bottom: 100px;
}

.item-service .visu {
  margin-bottom: 40px;
}

.item-service .visu img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.item-service h2 {
  font-size: 72px;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 10px;
  transition: all 0.3s;
}

.item-service p {
  font-size: 24px;
  color: #fff;
  font-family: "Neue Machina Light";
  line-height: 1.3;
}

.item-service:hover h2 {
  color: #3315ED;
}

.banner-blog {
  min-height: 560px;
  position: relative;
}

.banner-blog .intro-blog {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 1440px;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 41px;
}

.banner-blog .intro-blog .date {
  font-size: 19px;
  font-family: tahoma;
  padding: 12px 32px;
  border: 1px solid #fff;
  border-radius: 40px;
  margin-bottom: 40px;
  width: fit-content;
  color: #fff;
}

.banner-blog .intro-blog h1 {
  font-size: 120px;
  color: #fff;
  text-transform: uppercase;
  max-width: 980px;
  width: 100%;
}

.banner-blog .intro-blog a {
  font-size: 26px;
  color: #fff;
  display: flex;
  width: fit-content;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  font-family: "Neue Machina Regular";
  transition: all 0.3s;
  white-space: nowrap;
}

.banner-blog .intro-blog a:hover {
  color: #3315ED;
}

.filter-art {
  padding-bottom: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-art ul {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.filter-art ul li a {
  font-size: 32px;
  font-family: "Neue Machina Regular";
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.filter-art ul li a:hover,
.filter-art ul li a.is-active {
  color: #3315ED;
}

.box-blogs {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 110px 30px;
  background: url(../images/fnd-detail.png) center no-repeat;
}

.box-blogs .list-blog .item-blog {
  display: flex;
  gap: 60px;
  align-items: end;
  text-decoration: none;
  margin-bottom: 200px;
  padding: 0 40px;
}

.box-blogs .list-blog .item-blog .visu {
  width: calc((100% - 60px) / 2);
  overflow: hidden;
}

.box-blogs .list-blog .item-blog .visu img {
  display: block;
  width: 100%;
  border-radius: 20px;
  transition: all 0.3s
}

.box-blogs .list-blog .item-blog:hover .visu img {

  transition: all 0.3s;
  transform: scale(1.04) !important;
}

.box-blogs .list-blog .item-blog .infos-item-blog {
  width: calc((100% - 60px) / 2);
}

.box-blogs .list-blog .item-blog .infos-item-blog .date {
  font-size: 19px;
  font-family: tahoma;
  padding: 12px 32px;
  border: 1px solid #fff;
  border-radius: 40px;
  margin-bottom: 40px;
  width: fit-content;
  color: #fff;
}

.box-blogs .list-blog .item-blog .infos-item-blog h2 {
  font-size: 78px;
  color: #fff;
  text-transform: uppercase;
}

.box-blogs .list-blog .item-blog:hover .infos-item-blog h2 {
  color: #3315ED;
}

.box-blogs .list-blog .item-blog:nth-child(even) {
  flex-direction: row-reverse;
}

.box-search {
  position: relative;
}

.box-search .btn-search {
  width: 36px;
  height: 36px;
  background: url(../images/si_search-line.svg) center no-repeat;
  cursor: pointer;
}

.box-search .form-search {
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  transition: all 0.3s;
  overflow: hidden;
}

.box-search.active .form-search {
  width: 300px;
}

.box-search .form-search input[type=text] {
  height: 40px;
  display: block;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 25px;
  background: #000;
  color: #fff;
  font-family: "Neue Machina Regular";
  font-size: 18px;
  padding: 0 15px;
}

.box-search .form-search input[type=submit] {
  width: 36px;
  height: 36px;
  background: url(../images/si_search-line.svg) center no-repeat;
  border: none;
  position: absolute;
  top: 3px;
  right: 5px;
}

.intro-ressources {
  max-width: 1440px;
  width: 100%;
  margin: 100px auto;
  padding: 75px 30px 0 30px;
  background: url(../images/fnd-title-page.png) center right no-repeat;
}

.intro-ressources h1 {
  padding-bottom: 115px;
  font-size: 120px;
  color: #fff;
  text-transform: uppercase;
}

.intro-ressources h1 span {
  display: block;
  color: #3315ED;
}

.intro-ressources p {
  text-align: right;
  font-size: 32px;
  color: #fff;
  font-family: "Neue Machina black";
}

.box-press {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 110px 30px;
  background: url(../images/fnd-detail.png) center no-repeat;
}

.box-press .list-press {
  padding: 0 30px;
}

.box-press .list-press .item-press {
  display: flex;
}

.box-press .list-press .item-press:nth-child(even) {
  justify-content: end;
}

.box-press .list-press .item-press .card-press {
  max-width: 700px;
  width: 100%;
}

.box-press .list-press .item-press .card-press .visu {
  margin-bottom: 35px;
}

.box-press .list-press .item-press .card-press .visu img {
  display: block;
  width: 100%;
}

.box-press .list-press .item-press .card-press h2 {
  font-size: 70px;
  color: #fff;
  text-transform: uppercase;
  border-bottom: 1px solid #A1A1A1;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.box-press .list-press .item-press .card-press p {
  font-size: 22px;
  line-height: 1.3;
  font-family: "Neue Machina Regular";
  color: #fff;
  padding-bottom: 35px;
}

.box-press .list-press .item-press .card-press a {
  display: flex;
  width: fit-content;
  padding: 16px 32px;
  color: #000;
  background: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 22px;
  transition: all 0.3s;
}

.box-press .list-press .item-press .card-press a:hover {
  background: #3315ED;
  color: #fff;
}

.box-press .list-press .item-press .w-600 {
  max-width: 600px;
}

.box-press .list-press .item-press .y-300 {
  margin-top: -300px;
}

.box-phototheque {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.box-phototheque h2 {
  font-size: 120px;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 60px;
}

.box-phototheque .list-phototheque .item-phototheque {
  display: flex;
  margin-bottom: 200px;
}

.box-phototheque .list-phototheque .item-phototheque:nth-child(even) {
  justify-content: end;
}

.box-phototheque .list-phototheque .item-phototheque a {
  display: flex;
  width: fit-content;
}

.box-phototheque .list-phototheque .item-phototheque a img {
  max-width: 100%;
}

.box-phototheque .list-phototheque .y-200 {
  margin-top: -200px;
}

.box-phototheque .list-phototheque .y-400 {
  margin-top: -400px;
}

.illus-blog {
  margin-bottom: 100px;
}

.box-location {
  display: flex;
  max-width: 1440px;
  padding: 100px 30px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
}

.box-location .infos-location {
  width: 344px;
  padding-right: 19px;
}

.box-location .infos-location .item-loc {
  padding-bottom: 50px;
}

.box-location .infos-location .item-loc h4 {
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 30px;
}

.box-location .infos-location .item-loc p {
  font-size: 24px;
  color: #fff;
  font-family: "Neue Machina Regular";
}

.box-location .infos-location .item-loc ul li a {
  font-size: 24px;
  color: #fff;
  font-family: "Neue Machina Regular";
  text-decoration: none;
}

.box-location .location-map {
  width: calc(100% - 344px);
  border-radius: 20px;
  height: 523px;
  overflow: hidden;
}

.box-location .location-map iframe {
  height: 523px;
  width: 100%;
}

.box-location #map {
  width: calc(100% - 344px);
  border-radius: 20px;
  height: 523px;
}

.rt-page .intro-ressources {
  text-align: center;
  background: none;
}

.rt-page .form {
  max-width: 1063px;
  width: 100%;
  margin: 0 auto;
  padding: 215px 15px;
  background: url(../images/fnd-detail.png) center no-repeat;
}

.submenu-back {
  display: none;
}

.timeline {
  display: flex;
  min-height: 100vh;
  margin-bottom: 200px;
}

.timeline-progress {
  position: relative;
  width: 120px;
}

.line {
  position: fixed;
  left: 60px;
  top: 80px;
  bottom: 80px;
  width: 2px;
  background: #444;
  opacity: 0;
}

.thumb {
  position: fixed;
  left: 56px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(80px);
  opacity: 0;
}

.years {
  position: fixed;
  left: 80px;
  top: 80px;
  border-left: 2px solid #4C4C4C;
  padding-left: 50px;
}

.years .year {
  padding: 55px 0;
  color: #4C4C4C;
  position: relative;
  font-size: 90px;
}

.years .year:after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #4C4C4C;
  position: absolute;
  top: 50%;
  left: -62px;
  transform: translate(0, -50%);
}

.years .year.active {
  color: #fff;
  font-size: 120px;
}

.years .year.active:after {
  background: #fff;
}

.timeline-content {
  flex: 1;
  max-width: 1440px;
  width: 100%;
  padding: 0 140px;
  margin: 0 auto;
}

.panel {
  display: flex;
  justify-content: end;
  align-items: center;
  color: #fff;
}

.spacer {
  height: 200px;
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .main-menu a {
    font-size: 57px;
  }

  .intro-home h1 {
    font-size: 67px;
  }
}

@media only screen and (max-width: 1024px) {
  .main-menu a {
    font-size: 47px;
  }

  .main-menu>ul>li {
    padding: 5px 70px 5px 0;
  }

  .main-menu ul.sub-menu {
    padding: 20px 0 20px 60px;
  }

  .main-menu {
    padding-left: 40px;
  }

  .main-menu ul.sub-menu {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .submenu-back {
    display: block;
    color: #fff;
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .submenu-back::before {
    content: "<";
    font-size: 46px;
  }

  .main-menu>ul {
    width: 100%;
  }

  .main-menu ul.sub-menu {
    left: -100%;
    background: #000;
    z-index: 2;
  }

  .has-submenu.open .sub-menu {
    left: 0;
  }

  .main-menu ul li.has-submenu>a:after {
    font-size: 47px;
  }

  .intro-medias {
    flex-direction: column;
  }

  .change .box-change .title-change,
  .intro-medias h2 {
    font-size: 67px;
  }

  .numbrs {
    padding: 50px 20px;
  }

  .item-numbrs .label-numbrs {
    font-size: 100px;
  }

  .item-numbrs .label-numbrs span {
    font-size: 60px;
  }

  .item-numbrs .desc-numbrs {
    font-size: 65px;
  }

  .equipe {
    padding: 50px 20px;
  }

  .line-pero .name {
    font-size: 40px;
  }

  .intro-equipe {
    flex-direction: column;
  }

  .comptent .title-comptent {
    font-size: 55px;
  }

  .transform .title-transform {
    font-size: 54px;
  }

  .partenarias {
    padding: 20px;
  }

  .list-part .logo-part-regie {
    width: 150px;
  }

  .list-part {
    height: 400px;
  }

  .tendance .intro-tendance {
    flex-direction: column;
    align-items: start;
  }

  .tendance .intro-tendance h2 {
    font-size: 58px;
  }

  .tendance .slide-tendance .item-tendance img {
    height: 310px;
  }

  .tendance .slide-tendance .item-tendance .info-tendance {
    flex-direction: column;
  }

  .contact .intro-contact {
    flex-wrap: wrap;
  }

  .contact .intro-contact .label-contact {
    width: 100%;
    padding: 20px;
  }

  .contact .intro-contact .desc-contact {
    width: 100%;
    font-size: 36px;
    padding: 20px;
  }

  .form {
    padding: 0 15px;
  }

  .radio-group {
    flex-wrap: wrap;
  }

  .footer .row-menu-footer {
    flex-direction: column;
  }

  .footer .row-menu-footer .menu-footer {
    padding-top: 30px;
  }

  .footer .row-right {
    flex-direction: column;
    gap: 25px;
  }

  .footer .logo-footer {
    width: 100%;
  }

  .banner-blog .intro-blog {
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column;
    gap: 20px;
  }

  .banner-blog .intro-blog h1 {
    font-size: 67px;
  }

  .box-detail-etudes-cas h1 {
    font-size: 65px;
  }

  .box-detail-etudes-cas p {
    font-size: 20px;
  }

  .box-detail-etudes-cas h2 {
    font-size: 53px;
  }

  .patage-article {
    flex-direction: column;
    gap: 40px;
  }

  .patage-article ul {
    flex-direction: column;
  }

  .box-phototheque h2 {
    font-size: 67px;
    padding-left: 15px;
  }

  .box-blogs .list-blog .item-blog {
    padding: 0;
    margin-bottom: 60px;
    gap: 30px;
  }

  .box-blogs .list-blog .item-blog h2 {
    font-size: 57px;
  }

  .timeline-content {
    padding: 0 24px;
  }

  .years {
    left: 30px;
  }

  .years .year {
    font-size: 33px;
  }

  .years .year.active {
    font-size: 37px;
  }

  .inner-page .title-page h1 {
    font-size: 67px;
  }

  .intro-carriere p {
    font-size: 20px;
  }

  .intro-client .infos-client .line-info-client .kys {
    font-size: 73px;
  }

  .intro-client .infos-client .line-info-client .kys span {
    font-size: 43px;
  }

  .intro-client .infos-client .line-info-client .desc-info {
    font-size: 50px;
  }

  .box-detail-client {
    padding-left: 15px;
    padding-right: 15px;
  }

  .list-detail-client .item-detail-client .card-detail-client h3 {
    font-size: 57px;
  }

  .list-detail-client .item-detail-client .card-detail-client p {
    font-size: 20px;
  }

  .intro-client {
    padding: 60px 15px;
  }

  .intro-ressources h1 {
    font-size: 67px;
    padding-bottom: 60px;
  }

  .box-location .infos-location,
  .box-location .location-map {
    width: 100%;
  }

  .banner-detail {
    height: 450px;
  }

  .box-etudes-cas {
    padding: 50px 30px;
  }

  .box-etudes-cas .list-etudes-cas .item-cas .x-pos-500,
  .box-etudes-cas .list-etudes-cas .item-cas .x-pos-500 {
    margin-top: inherit;
  }

  .box-marques .list-marques .y-pos-30,
  .box-marques .list-marques .y-pos-90,
  .box-marques .list-marques .y-pos-100,
  .box-marques .list-marques .y-pos-55 {
    margin-left: inherit;
  }

  .box-marques .list-marques .x-pos-100,
  .box-marques .list-marques .x-pos-50 {
    margin-top: inherit;
  }

  .publicite .box-publicite h1 {
    font-size: 73px;
    margin-bottom: 60px;
  }

  .publicite .box-publicite {
    padding-left: 15px;
    padding-right: 15px;
  }

  .publicite .box-publicite .illus-pub .visu {
    width: 100%;
  }

  .publicite .box-publicite .illus-pub .caption {
    padding-top: 30px;
    width: 100%;
    padding-left: 0;
  }

  .publicite .box-publicite .illus-pub .desc {
    padding-left: 0;
  }

  .box-vesion,
  .box-mession {
    flex-direction: column;
    gap: 30px;
  }

  .fidelite .box-fidelite h2 {
    font-size: 67px;
  }

  .fidelite .box-fidelite {
    padding: 50px 15px;
  }

  .items-fidelite .line-item .item-fidelite.y-100 {
    margin-top: inherit;
  }

  .items-fidelite .line-item .item-fidelite.pos-60,
  .items-fidelite .line-item .item-fidelite.pos-45,
  .items-fidelite .line-item .item-fidelite.pos-30,
  .items-fidelite .line-item .item-fidelite.pos-55 {
    margin-left: inherit;
  }

  .fidelite-clients .box-fidelite-clients h2 {
    font-size: 57px;
  }

  .fidelite-clients .box-fidelite-clients {
    padding: 50px 15px;
  }

  .fidelite-clients .box-fidelite-clients .item-pillier h3 {
    font-size: 67px;
  }

  .fidelite-clients .box-fidelite-clients .item-pillier,
  .fidelite-clients .box-fidelite-clients .item-pillier:nth-child(odd) {
    flex-direction: column;
    gap: 20px;
  }

  .tabs-nav {
    padding: 0 15px;
    flex-wrap: wrap;
  }

  .box-press .list-press {
    padding: 0;
  }

  .box-press .list-press .item-press .card-press h2 {
    font-size: 41px;
  }

  .box-press .list-press .item-press .y-300 {
    margin-top: inherit;
  }

  .item-press {
    padding-bottom: 30px;
  }

  .rt-page .form {
    padding: 15px 15px 100px 15px;
  }

  .item-service h2 {
    font-size: 37px;
  }

  .item-service {
    margin-bottom: 30px;
  }

  .box-services {
    padding: 50px 15px;
  }

  .item-service p {
    font-size: 20px;
  }

  .box-blogs .list-blog .item-blog .infos-item-blog h2 {
    font-size: 53px;
  }

  .intro-ressources p {
    font-size: 23px;
  }

  .item-medias {
    padding-bottom: 50px;
  }

  .medias {
    padding: 70px 0;
  }

  .item-numbrs {
    padding-bottom: 70px;
  }

  .comptent {
    padding: 20px 0 50px 0;
  }

  .slide-home .swiper-pagination {
    right: 20px;
  }

  .comptent .item-comptent {
    width: 50%;
  }

  .transform .desc {
    margin-left: 0;
  }

  .transform .title-transform {
    padding-bottom: 70px;
  }

  .partenarias .intro-part h2 {
    font-size: 77px;
  }

  .partenarias .intro-part h2:after,
  .tendance .intro-tendance h2:after {
    right: -10px;
  }

  .contact {
    padding: 50px 0;
  }

  .tendance {
    padding: 50px 30px;
  }

  .change {
    padding-top: 75px;
  }
}

@media only screen and (max-width: 560px) {
  .line-pero .name {
    font-size: 33px;
  }

  .line-pero .rols {
    font-size: 21px;
  }

  .main-menu a {
    font-size: 37px;
  }

  .main-menu ul.sub-menu {
    padding: 20px 0 20px 32px;
  }

  .submenu-back::before {
    font-size: 34px;
  }

  .intro-home h1 {
    font-size: 39px;
  }

  .intro-home {
    flex-direction: column;
  }

  .bg {
    flex-direction: column;
  }

  .item-medias .pro.active {
    width: 100%;
  }

  .item-medias .info-tv {
    width: 100%;
    padding-left: 30px;
  }

  .item-medias:nth-child(odd) .info-tv {
    padding-left: 34px;
  }

  .item-medias .info-tv .name-tv {
    font-size: 47px;
  }

  .intro-eco {
    font-size: 46px;
  }

  .numbrs {
    padding: 50px 20px;
  }

  .item-numbrs .label-numbrs {
    font-size: 100px;
  }

  .item-numbrs .label-numbrs span {
    font-size: 60px;
  }

  .item-numbrs .desc-numbrs {
    font-size: 65px;
  }

  .footer {
    padding-bottom: 150px;
  }

  .box-blogs .list-blog .item-blog {
    flex-direction: column;
  }

  .box-blogs .list-blog .item-blog .visu {
    width: 100%;
  }

  .box-blogs .list-blog .item-blog .infos-item-blog {
    width: 100%;
  }

  .box-blogs .list-blog .item-blog:nth-child(even) {
    flex-direction: column;
  }

  .filter-art ul li a {
    font-size: 25px;
  }

  .banner-detail {
    height: 305px;
  }
}

.split-line {
  display: block;
  overflow: hidden;
}

.split-word {
  display: inline-block;
  will-change: transform, filter, opacity;
}

.reveal-sweep {
  position: relative;
  --sweepX: -130%;
  --sweepO: 0;
}

.reveal-sweep::after {
  content: "";
  position: absolute;
  inset: -35% -50%;
  background: none !important;
  transform: translateX(var(--sweepX)) rotate(8deg);
  opacity: var(--sweepO);
  pointer-events: none;
  mix-blend-mode: overlay;
}


img {
  transform: translateZ(0);
}


.split-line {
  display: block;
  overflow: hidden;
}

.split-word {
  display: inline-block;
  will-change: transform, filter, opacity;
}


.img-reveal {
  will-change: transform, filter, clip-path;
  transform: translateZ(0);
}


.change .slider {
  position: relative;
  padding-bottom: 100px;
}

.change .slider .swiper-button-next,
.change .slider .swiper-button-prev {
  width: 36px;
  height: 36px;
  opacity: 1;
  bottom: 0;
  top: inherit;
}

.change .slider .swiper-button-next:after,
.change .slider .swiper-button-prev:after {
  display: none;
}

.change .slider .swiper-button-next,
.change .slider .swiper-rtl .swiper-button-prev {
  background: url(../images/arrow-up-right.svg) center no-repeat;
}

.change .slider .swiper-button-prev,
.change .slider .swiper-rtl .swiper-button-next {
  background: url(../images/arrow-up-left.svg) center no-repeat;
}

.change .slider .swiper-button-next:hover,
.change .slider .swiper-rtl .swiper-button-prev:hover {
  background: url(../images/arrow-up-right-hover.svg) center no-repeat;
}

.change .slider .swiper-button-prev:hover,
.change .slider .swiper-rtl .swiper-button-next:hover {
  background: url(../images/arrow-up-left-hover.svg) center no-repeat;
}

.change .slider .swiper-slide {
  filter: blur(10px);
  opacity: 0;
}

.change .slider .swiper-slide-active {
  filter: blur(0px);
  opacity: 1;
  transition: all 0.8s ease;
}

.change .panel {
  /* will-change: transform, filter, opacity; */
}

.change .no-sweep::after {
  display: none !important;
}



/* Pagination verticale à gauche */
.slide-home {
  position: relative;
}

.slide-home .swiper-pagination {
  position: absolute;
  right: 95px;
  left: inherit;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: fit-content;
}

.slide-home .swiper-pagination-bullet {
  width: 22px;
  height: 22px;
  margin: 16px 0 !important;
  background: #000;
  opacity: 1;
  position: relative;
  border: 1px solid transparent;
}

.slide-home .swiper-pagination-bullet:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
}

.slide-home .swiper-pagination-bullet-active {
  border: 1px solid #fff;
}

a:hover svg path {
  stroke: #3315ED !important;
}

a svg path {
  transition: stroke 0.3s ease;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}