@import url("fonts.css");

body {
  font-family: GilroyMedium;
  background-color: #092273;
  color: #fff;
}
a {
  color: #59ffff;
}
a.btn {
  padding: 15px 30px;
  display: inline-block;
  margin: 1em 0;
  text-decoration: none;
  color: #fff;
}
b,
strong {
  font-family: GilroyBold;
}
p,
ul {
  opacity: 0.8;
}
.badge {
  text-transform: uppercase;
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  line-height: 13px;
  font-family: GilroyBold;
  vertical-align: middle;
  border-radius: 4em;
  padding: 5px 10px 3px;
  background-color: #76c219;
}
h3 {
  font-family: GilroySemiBold;
  font-size: 1.5em;
}
blockquote {
  opacity: 0.8;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
}

.hero-title {
  font-family: GilroyExtraBold;
}
.roundcorners-30 {
  border-radius: 30px;
}
.roundcorners-60 {
  border-radius: 60px;
}
@media screen and (min-width: 556px) {
  .h3 {
    font-size: 2em;
  }
}

/* COLORS */
.darkblue {
  color: #092273;
}
/* LEGEND */
.legend p {
  font-size: 16px;
}
/* BACKGROUND */

.bg-darkblue {
  background-color: #092273;
}
.bg-grad-hero {
  background: linear-gradient(244deg, #59ffff -6.74%, #223a85 98.82%);
}
.bg-grad-1 {
  background: linear-gradient(
    180deg,
    rgba(3, 186, 234, 0.3) 0%,
    rgba(34, 58, 133, 0.3) 100%
  );
}

/* BLEND MODES */
.blend-screen {
  mix-blend-mode: screen;
}

.blend-overlay {
  mix-blend-mode: overlay;
}

/* COMPONENTS */
.pill-border-gradient {
  display: inline-block;
  padding: 0;
  border-radius: 100px;
  position: relative;
  border: none;
  background: none;
  background-clip: padding-box;
}
.pill-border-gradient::after {
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
  background: none;
  content: "";
  z-index: -1;
  border-radius: 100px;
}
.btn.pill-border-gradient {
  display: inline-block;
  border-radius: 100px;
  position: relative;
  border: none;
  background: #092273;
  background-clip: padding-box;
}
.btn.pill-border-gradient::after {
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
  background: linear-gradient(90deg, #ade558, #59ffff);
  content: "";
  z-index: -1;
  border-radius: 100px;
}
.carousel-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.carousel-nav > * {
  display: inline-flex;
  padding: 15px 20px;
  align-items: center;
  gap: 30px;
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0);
}
.carousel-nav > *.active {
  color: #092273;
  background: linear-gradient(90deg, #91ea03 0%, #fddc13 100%);
}
.hero-small {
  height: 450px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 60px;
}
.hero-small .hero-title {
  font-size: 3em;
  margin: 0;
  font-weight: 900;
}
@media screen and (min-width: 556px) {
  .hero-small .hero-title {
    font-size: 4em;
  }
  .pill-border-gradient {
    padding: 0.2em 0.5em 0.1em 0.6em;
    background: #092273;
  }
  .pill-border-gradient::after {
    background: linear-gradient(90deg, #ade558, #59ffff);
  }
}
@media screen and (min-width: 768px) {
  .hero-small .hero-title {
    font-size: 5.5em;
  }
}
@media screen and (min-width: 1400px) {
  .hero-small .hero-title {
    font-size: 6em;
  }
}

/* HEADER */

.mast-header {
  position: absolute;
  width: 100%;
  z-index: 99999;
}
.mast-header .logo {
}
.mast-header .main-nav {
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #03baea;
  z-index: 2;
}
.menu-collapse .mast-header .main-nav {
  display: block;
}
.mast-header .main-nav .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 0px;
  height: 100vh;
}
.mast-header .main-nav .container > div {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}
.mast-header .main-nav .container a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  text-align: left;
  font-size: 2.2em;
  margin: 0;
  padding: 0.8em 2em;
  transition: all 0.1s;
}
.mast-header .main-nav .container a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.mast-header .hamburger,
.mast-header .hamburger.hamburger-squeeze {
  position: fixed;
  z-index: 300;
  top: 30px;
  width: 36px;
  padding: 0;
  right: 30px;
  height: 36px;
}
.hamburger-box {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 36px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  background-color: #fff;
  width: 36px;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
  background-color: #fff;
}
/* VIDEO BG */
.videobg {
  text-align: center;
  position: relative;
}

.videobg .video {
  position: absolute;
  right: 0;
  top: 0;
  min-width: 100%;
  min-height: 100%;
}

.videobg .videobg-content {
  position: relative;
  right: 0;
  top: 0;
  min-width: 100%;
  min-height: 100%;
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}
/* ACCORDION */
.accordion-item {
  background: linear-gradient(
    180deg,
    rgba(3, 186, 234, 0.3) 0%,
    rgba(34, 58, 133, 0.3) 100%
  );
  display: flex;
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 27px;
  justify-content: flex-start;
  align-self: stretch;
}
.accordion-content {
  display: none;
}
.accordion-item .accordion-header:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url(../images/plus-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 10px;
}

.accordion-item.active .accordion-header:before {
  background-image: url(../images/minus-white.svg);
}

.accordion-item.active .accordion-content {
  display: block;
}
button.accordion-header {
  text-align: left;
  border: 0px;
  background: none;
  font-size: 1.5em;
  color: #fff;
  font-family: GilroySemiBold;
  width: 100%;
}
button.accordion-header:hover {
  cursor: pointer;
}
/* FOOTER */
.mast-footer {
  padding: 60px 30px;
  min-height: 300px;
  background: linear-gradient(87deg, #092273 0%, #344d9d 100.97%);
}

.mast-footer a {
  color: #fff;
  text-decoration: none;
}
/* GLOBAL */
.separator-grad {
  display: block;
  width: 93px;
  height: 10px;
  border-radius: 100px;
  margin: 1em 0;
  background: linear-gradient(90deg, #ade558 0%, #59ffff 100%);
}

.section-title {
  color: #fff;
  font-family: GilroyExtraBold;
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section footer {
  padding: 120px 30px !important;
}
/* HOME HERO */

.home .hero {
  min-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
}
.home .hero h2 {
  font-size: 2em;
}
.home .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home .datawall .number-item {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  flex-shrink: 1;
  flex-basis: 32%;
  align-items: flex-start;
}
.home .datawall .number-item:last-child {
  flex-shrink: 2;
}
.home .datawall .number-flex {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  align-items: flex-start;
  flex-wrap: wrap;
}

.home .datawall .number-item .number {
  display: block;
  color: #fff;
  font-family: GilroyMedium;
  font-size: 44px;
  font-style: normal;
  margin: 0.1em 0 0;
  font-weight: 500;
}
.home .datawall .number-item .number .small {
  font-size: 0.5em;
}
.home .datawall .number-item.big .number {
  font-size: 96px;
}
.home .hero .mouse {
  height: 180px;
  width: 50px;
  margin: 0 auto;
  margin-top: auto;
  bottom: 0;
}
.home .hero .mouse::after {
  content: "";
  display: block;
  width: 1px;
  margin: 0 auto;
  height: 160px;
  background: #fff;
}
.home .card {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 15px;
  align-items: flex-start;
  padding: 30px;
  position: relative;
  border-radius: 15px;
  border: 1px solid #59ffff;
  background: linear-gradient(
    154deg,
    rgba(9, 34, 115, 0.53) 5.02%,
    rgba(34, 59, 143, 0.53) 101.24%
  );
  backdrop-filter: blur(2px);
  flex-basis: calc(50% - 15px);
  color: #fff;
  min-height: 250px;
}

.home .card img {
  position: absolute;
  top: 15px;
  right: 15px;
}

.home .card .number.big {
  font-family: GilroyExtraBold;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
}
.home .card-text {
  font-size: 18px;
}
.card-blur {
  padding: 30px;
  border-radius: 15px;
  background: linear-gradient(
    154deg,
    rgba(9, 34, 115, 0.3) 5.02%,
    rgba(34, 59, 143, 0.3) 101.24%
  );
}

@media screen and (min-width: 990px) {
  .home .datawall .number-item {
    flex-shrink: 0;
    flex-basis: inherit;
  }
  .home .datawall .number-flex {
    gap: 0;
    align-items: flex-end;
  }
}
/* CHIFFRES CLEFS */

.chiffres-clefs .table-positionnement {
  width: 100%;
  border-collapse: collapse;
}

.chiffres-clefs .table-positionnement thead th {
  font-size: 14px;
  font-weight: normal;
}
.chiffres-clefs .table-positionnement thead tr th {
  border-bottom: 1px solid #fff;
}
.chiffres-clefs .table-positionnement tr td {
  border-bottom: 1px solid #00030c;
}
.chiffres-clefs .table-positionnement tr td:nth-child(2) {
  text-align: center;
  color: #ade558;
  font-family: GilroyBold;
}
.chiffres-clefs .table-positionnement tr td:nth-child(3) {
  color: #59ffff;
  text-align: center;
  font-weight: bold;
}
.chiffres-clefs .table-positionnement thead th:first-child {
  text-align: left;
}

.chiffres-clefs .table-positionnement tr td:not(:first-child):after {
  content: "%";
}
.chiffres-clefs .table-positionnement tr td:not(:first-child).ns:after {
  content: "(NS)";
}

.chiffres-clefs .table-positionnement th,
.chiffres-clefs .table-positionnement td {
  padding: 1em 0;
}
#chiffres-7-content,
#chiffres-9-content {
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  border-radius: 15px;
  background: linear-gradient(
    154deg,
    rgba(9, 34, 115, 0.3) 5.02%,
    rgba(34, 59, 143, 0.3) 101.24%
  );
}
.chiffres-clefs #chiffres-9 .legend {
  display: none;
}
.chiffres-clefs #chiffres-9 .legend.active {
  display: block;
}
.chiffres-clefs #chiffres-9 .color-legend {
  display: inline-flex;
  padding: 10px 15px;
  align-items: center;
  gap: 25px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  list-style-type: none;
}
.chiffres-clefs #chiffres-9 .color-legend li {
  display: flex;
  opacity: 1;
  font-size: 0.9em;
  gap: 10px;
  align-items: center;
}
.chiffres-clefs #chiffres-9 .color-legend li:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
}
.chiffres-clefs #chiffres-9 .color-legend li:nth-child(1):before {
  background-color: #03baea;
}
.chiffres-clefs #chiffres-9 .color-legend li:nth-child(2):before {
  background-color: #8c14c8;
}
.chiffres-clefs #chiffres-9 .color-legend li:nth-child(3):before {
  background-color: #a1ae25;
}
.chiffres-clefs #chiffres-9 .color-legend li:nth-child(4):before {
  background-color: #05ae9e;
}
.chiffres-clefs #chiffres-9 .color-legend li:nth-child(5):before {
  background-color: #76c219;
}
/* EDITO */

.edito p:not(.intro):not(.hero-title) {
  opacity: 0.8;
  line-height: 1.3em;
}
.edito .edito figcaption span {
  opacity: 0.8;
  line-height: 1.5em;
}
.edito figcaption span {
  display: block;
  font-size: 1.2em;
}
.edito :not(h1).hero-title {
  font-size: 2.5em;
  opacity: 1;
}
.intro {
  font-size: 1.2em;
  opacity: 1;
}
.edito .sidebar {
  border-radius: 60px 0 0 60px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-items: center;
  gap: 30px;
}

.edito .sidebar .number-item {
  max-width: 185px;
}
.edito .sidebar .number {
  display: block;
  font-size: 2.8em;
  margin: 0.1em 0;
}

.gradient-text {
  background: linear-gradient(90deg, #91ea03 0.19%, #59ffff 99.97%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#etude-conso > * {
  margin: 120px auto;
}
#etude-conso > * div:nth-child(2) {
  margin-bottom: 120px;
}

.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.exemples .tabs {
  text-align: center;
  font-size: 1.5em;
  padding: 60px 0;
}
.exemples .tabs a {
  text-decoration: none;
  text-transform: uppercase;
  font-family: GilroySemiBold;
  color: #fff;
  opacity: 0.3;
  margin: 0.5em;
}
.exemples .tabs a:hover {
  cursor: pointer;
}
.exemples .tabs a.active {
  opacity: 1;
}
.exemples #exemples-2 {
  display: none;
}

@media screen and (min-width: 336px) {
  .exemples .tabs a {
    margin: 1.5em;
  }
}
@media screen and (min-width: 420px) {
  .exemples .tabs a {
    margin: 3.5em;
  }
}
@media screen and (min-width: 645px) {
  .exemples .tabs a {
    margin: 0.5em;
  }
}
@media screen and (min-width: 990px) {
  .edito .sidebar {
    gap: 15px;
  }
}
