/*** MAJ 11/01/2021 ***/
@font-face {
  font-family: "slick";
  src: url("/assets/fonts/slick.woff") format("woff");
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #23216d;
  padding: 0;
}

.overflow-hidden {
  overflow: hidden;
}

/*** MENU ***/

header {
  position: relative;
  background: #fff;
  height: 88px;
  z-index: 100;
}

#mobilemenu,
#desktopmenu {
  position: fixed;
  width: 100%;
  height: 88px;
  background: #fff;
  transition: all linear 0.2s;
}

.header-logo img {
  width: 45px;
  height: 48px;
  transition: all linear 0.2s;
}

header.scrolled .header-mobilelogo img {
  width: 30px;
  height: 32px;
}

header.scrolled,
header.scrolled #mobilemenu {
  height: 50px;
}

header.scrolled .header-mobilelogo {
  height: 32px;
}

.mobilemenu-container,
.desktopmenu-container {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 15px;
}

.mobilemenu-container {
  justify-content: space-between;
  height: 100%;
  padding: 0 15px;
}

.desktopmenu-container {
  justify-content: flex-start;
}

.head .tile {
  width: 28px;
  transition: all 0.3s ease-in;
}

.head .burger {
  cursor: pointer;
  background-color: transparent;
}

.header-hamburger {
  /*	position: absolute;
	top: 15px; */
}

.meat {
  height: 28px;
  width: 28px;
  position: relative;
  transition: all 0.3s ease-in;
}

#mobilemenu.clicked .head .burger .meat {
  transform: rotate(180deg);
}
.meat .line {
  height: 4px;
  width: 28px;
  background-color: #23216d;
  border-radius: 3px;
  position: absolute;
  transition: all 0.3s ease-in;
}

.meat .line.one {
  top: 2px;
  left: 0px;
}

.meat .line.two {
  top: 12px;
  left: 0px;
}

.meat .line.three {
  top: 22px;
  left: 0px;
  width: 20px;
}

#mobilemenu.clicked .burger .line.one {
  transform: rotate(45deg);
  top: 12px;
}

#mobilemenu.clicked .burger .line.two {
  transform: rotate(-45deg);
  top: 12px;
}

#mobilemenu.clicked .burger .line.three {
  opacity: 0;
}

.nav-modal {
  position: fixed;
  top: 88px;
  left: 0px;
  width: 100%;
  height: calc(100vh - 88px);
  visibility: hidden;
  background-color: #fff;
  opacity: 0;
  transition: all 0.3s ease-in;
  pointer-events: none;
}

#mobilemenu.clicked .nav-modal {
  visibility: visible;
  opacity: 1;
  pointer-events: initial;
}

header.scrolled .nav-modal {
  top: 50px;
  height: calc(100vh - 50px);
}

.nav-modal nav ul {
  list-style: none;
  margin: 50px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.nav-modal nav li {
  height: 75px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-modal nav li a {
  font-size: 20px;
  font-weight: 700;
  color: #23216d;
}

.nav-modal nav li a:hover,
.nav-modal nav li.current a {
  color: #f00;
  text-decoration: none;
}

.sl-nav {
  display: inline;
  margin: 0 15px;
}

.sl-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: inline-block;
}
.sl-nav li {
  cursor: pointer;
}

.sl-nav li ul {
  display: none;
}

.sl-nav li:hover ul {
  position: absolute;
  top: 29px;
  right: -15px;
  display: block;
  background: #fff;
  width: 130px;
  padding-top: 0px;
  z-index: 1;
  border-radius: 5px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.sl-nav li:hover .triangle {
  position: absolute;
  top: 15px;
  right: -10px;
  z-index: 10;
  height: 14px;
  overflow: hidden;
  width: 30px;
  background: transparent;
}

.sl-nav li:hover .triangle:after {
  content: "";
  display: block;
  z-index: 20;
  width: 15px;
  transform: rotate(45deg) translateY(0px) translatex(10px);
  height: 15px;
  background: #fff;
  border-radius: 2px 0px 0px 0px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.sl-nav li ul li {
  position: relative;
  text-align: left;
  background: transparent;
  padding: 15px 15px 0;
  z-index: 2;
  font-size: 15px;
}

.sl-nav li ul li:last-of-type {
  padding-bottom: 15px;
}

.sl-nav li ul li span {
  padding-left: 5px;
}

.sl-flag {
  display: inline-block;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
  width: 15px;
  height: 15px;
  background: #aaa;
  border-radius: 50%;
  position: relative;
  top: 2px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.nav-modal .sl-flag {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

.flag-gb {
  background-image: url("/assets/img/gb.svg");
}

.flag-fr {
  background-image: url("/assets/img/fr.svg");
}

.sl-nav strong {
  padding-left: 5px;
}

.sl-nav strong:after {
  content: "";
  display: inline-block;
  position: relative;
  top: 3px;
  width: 10px;
  height: 16px;
  margin-left: 5px;
  background: url("/assets/img/angle-down-regular.svg") no-repeat center/contain;
}

.sl-nav li li a {
  font-weight: 700;
  text-decoration: none;
  color: #23216d;
}

.sl-nav li li .active {
  font-weight: 700;
  color: #23216d;
}

.sl-nav li li a:hover {
  color: #f00;
}

section {
  position: relative;
}

section > *,
section .container > * {
  position: relative;
}

section.home-intro {
  background: #171637;
  color: #fff;
  min-height: 100vh;
  padding-bottom: 30px;
}

section.home-intro:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url("/assets/img/before-home-intro.svg") no-repeat right top;
  z-index: 1;
  width: 64px;
  height: 65px;
}

.home-intro-slogan {
  padding: 30px 5px 20px;
  min-height: calc(100vh - 120px);
  position: relative;
  margin-bottom: 32px;
}

.home-intro-slogan p {
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}

.home-intro-slogan .home-intro-demo {
  position: absolute;
  bottom: 0;
  left: calc(50% - 140px);
}

.home-intro-video {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100vh - 88px);
}

.home-intro-video:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  background: url("/assets/img/circles-3.png") no-repeat left bottom/contain;
  z-index: 3;
  width: 100px;
  height: 100px;
}

/* .home-intro-video:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(to bottom, rgba(23,22,55,0), rgba(23,22,55,1));
	z-index: 3;
}

*/

.home-intro-logo {
  width: 230px;
  display: block;
  margin: 0 auto 50px;
}

.home-intro-hashtag {
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  position: absolute;
  bottom: 80px;
  left: calc(50% - 150px);
}

.home-intro-slider {
  padding: 25px 10px 15px;
  z-index: 2;
}

.home-intro-slider p {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.home-intro-slick {
  list-style: none;
  margin: 0 -15px;
  padding: 0 0 30px;
}

.home-intro-slick li {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: 25px 15px;
  background: linear-gradient(to bottom, #241f71, #161437);
  box-shadow: 0px 12px 14px rgba(0, 0, 0, 0.5);
  padding-bottom: 70px;
}

.home-intro-slick .slick-list {
  padding: 0 34px;
}

.home-intro-slick .slick-track {
  display: flex !important;
}

.home-intro-slick .slick-slide {
  height: inherit !important;
}

.home-intro-slick-icon {
  position: absolute;
  top: 0;
  left: 20px;
  width: 44px;
  z-index: 3;
}

.home-intro-slick-img {
  position: relative;
  width: 100%;
}

.home-intro-slick picture {
  position: relative;
  display: block;
}

.home-intro-slick picture:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 65px;
  background: linear-gradient(to bottom, rgba(29, 26, 85, 0), #1e1a56);
  z-index: 3;
}

.home-intro-slick h3 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.home-intro-slick p {
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  padding: 0 20px;
}

.home-intro-slick-lien {
  color: #fff;
  background-color: transparent;
  border-radius: 20px;
  height: 40px;
  width: 180px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  position: absolute;
  left: calc(50% - 90px);
  bottom: 25px;
  transition: all 0.2s linear;
}

.home-intro-slick-lien:hover {
  color: #23216d;
  background-color: #fff;
  text-decoration: none;
}

.btn-devis {
  position: relative;
  z-index: 20;
}

.btn-devis a {
  color: #23216d;
  background-color: #fff;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 60px;
  border-radius: 30px;
  font-size: 20px;
  margin: 0 auto;
  transition: all 0.2s linear;
}

.btn-devis a:hover {
  color: #fff;
  background-color: transparent;
  text-decoration: none;
}

.btn-devis.btn-devis-rouge a {
  color: #fff;
  background-color: #f00;
  border: 1px solid #f00;
}

.btn-devis.btn-devis-rouge a:hover {
  color: #f00;
  background-color: #fff;
}

.btn-devis.btn-devis-bleu a {
  color: #fff;
  background-color: #23216d;
  border: 1px solid #23216d;
}

.btn-devis.btn-devis-bleu a:hover {
  color: #23216d;
  background-color: #fff;
}

.home-profil {
  background: #fff;
  padding: 30px 0;
}

.home-profil h1 {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 700;
  color: #23216d;
  text-align: center;
  margin: 0;
  padding: 0 25px;
}

.home-profil-slick {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-profil-slick .slick-track {
  display: flex !important;
}

.home-profil-slick .slick-slide {
  height: inherit !important;
}

.home-profil-slick li {
  margin: 25px 15px;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  padding: 15px;
}

.home-profil-slick-main picture {
  position: relative;
  display: block;
}

.home-profil-slick-main picture:after {
  content: "";
  display: block;
  padding-bottom: 90%;
}

.home-profil-slick-main img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-profil h3 {
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  color: #f00;
  font-size: 20px;
  margin: 15px 0;
}

.home-profil p {
  font-weight: 400;
  color: #23216d;
  text-align: center;
  line-height: 1.5em;
  margin: 0 0 50px;
  font-size: 12px;
}

.home-solution {
  min-height: 600px;

  padding: 125px 0;
  color: #fff;
}

.home-solution > * {
  z-index: 1;
}

.home-solution:before {
  content: "";
  width: 102px;
  height: 52px;
  position: absolute;
  top: 30px;
  left: calc(50% - 51px);
  background: url("/assets/img/before-solution.svg") no-repeat center
    center/cover;
  z-index: 1;
}

.home-solution:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-45deg, #171537, #e20512),
    url("/assets/img/home-solution-bg-mobile.jpg");
  background-blend-mode: hard-light;
  background-size: auto, cover;
  background-attachment: fixed;
}

.home-solution h1 {
  text-align: center;
  padding: 0 25px;
  font-size: 30px;
  line-height: 1.5em;
  font-weight: 700;
  text-shadow: 0px 2px 14px rgba(0, 0, 0, 0.5);
}

.home-solution div {
  margin-top: 75px;
}

.home-solution div p {
  line-height: 1.5em;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.home-solution div p:first-of-type {
  font-size: 70px;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

.home-solution div p em {
  font-size: 18px;
  font-style: normal;
}

.home-legitimite {
  background: #fff;
  padding-top: 25px;
}

.home-legitimite h1 {
  display: inline-flex;
  text-align: left;
  margin: 0 auto 15px;
  padding: 12px 20px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: #f00;
}

.home-legitimite p {
  font-weight: 400;
  font-size: 12px;
  line-height: 2em;
  color: #23216d;
  margin: 0;
}

.home-legitimite img {
  display: block;
  height: 300px;
  position: relative;
  margin: 15px 20px -20px auto;
  z-index: 10;
}

.home-actu {
  background: radial-gradient(circle, #241f71, #161437);
  padding-top: 120px;
  padding-bottom: 25px;
}

.home-actu h1 {
  display: block;
  text-align: center;
  width: 150px;
  height: 65px;
  line-height: 65px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: #f00;
  position: absolute;
  left: 0;
  top: 0;
}

.home-actu-slick {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #fff;
}

.home-actu-slick .slick-list {
  padding: 0 10% 0 0;
}

.home-actu-slick li {
  margin: 0 20px;
  outline: none;
}

.home-actu-slick li:not(.slick-current) {
  opacity: 0.3;
}

.home-actu-slick li p {
  margin: 0;
}

.home-actu-slick li > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 10px;
  grid-template-areas:
    "profil date"
    "profil author"
    "excerpt excerpt"
    "image image"
    "lien lien";
}

.home-actu-slick-picture {
  grid-area: profil;
  display: block;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.home-actu-slick-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-actu-slick-date {
  grid-area: date;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
}

.home-actu-slick-author {
  grid-area: author;
  font-size: 12px;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
}

.home-actu-slick-title {
  grid-area: title;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.2em;
  margin-top: 20px;
}

.home-actu-slick-excerpt {
  grid-area: excerpt;
}

.home-actu-slick-excerpt p {
  font-size: 12px;
  line-height: 2em;
  font-weight: 400;
  min-height: 96px;
  max-height: 120px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.home-actu-slick-image {
  grid-area: image;
  max-width: 100%;
  max-height: 175px;
  margin: 15px 0 30px;
}

.home-actu-slick-image img {
  max-width: 100%;
  max-height: 175px;
  margin: 0 auto;
}

.home-actu-slick-lien {
  grid-area: lien;
  display: block;
  font-size: 12px;
  width: 140px;
  height: 30px;
  line-height: 30px;
  border: 1px solid #fff;
  background: #fff;
  border-radius: 15px;
  text-decoration: none;
  color: #23216d;
  text-align: center;
  transition: all 0.2s linear;
}

.home-actu-slick-lien:hover {
  background: transparent;
  color: #fff;
  text-decoration: none;
}

.home-actu-slick-dots .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 3px;
  padding: 0;
  cursor: pointer;
}

/*** PAGE FONCTIONNALITES ***/

section.fonctionnalites {
  background: linear-gradient(#23216d, #23216d),
    url("/assets/img/fonctionnalites-bg.jpg") no-repeat center bottom/950px auto;
  background-blend-mode: multiply;
  color: #fff;
  position: relative;
  padding-bottom: 25px;
}

section.fonctionnalites:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url(/assets/img/before-home-intro.svg) no-repeat right top;
  z-index: 1;
  width: 64px;
  height: 65px;
}

section.fonctionnalites h1 {
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 700;
  padding-top: 30px;
  margin: 0 0 15px;
  text-align: center;
  z-index: 2;
}

.fonctionnalites-icones {
  list-style: none;
  margin: 0 0 30px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  z-index: 2;
}

.fonctionnalites-icones li {
  height: 15px;
  text-align: center;
  overflow: hidden;
}

.fonctionnalites-icones li:first-child {
  display: none;
}

.fonctionnalites-icones li a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -2000px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.fonctionnalites-icones-entrainements a {
  background-image: url("/assets/img/feature-entrainements.svg");
}

.fonctionnalites-icones-exercices a {
  background-image: url("/assets/img/feature-exercices.svg");
}

.fonctionnalites-icones-calendrier a {
  background-image: url("/assets/img/feature-calendrier.svg");
}

.fonctionnalites-icones-competitions a {
  background-image: url("/assets/img/feature-competitions.svg");
}

.fonctionnalites-icones-administratif a {
  background-image: url("/assets/img/feature-administratif.svg");
}

.fonctionnalites-icones-statistiques a {
  background-image: url("/assets/img/feature-statistiques.svg");
}

.fonctionnalites-icones-performance a {
  background-image: url("/assets/img/feature-performance.svg");
}

.fonctionnalites-icones-mediacenter a {
  background-image: url("/assets/img/feature-mediacenter.svg");
}

.fonctionnalites-icones-medical a {
  background-image: url("/assets/img/feature-medical.svg");
}

.fonctionnalites-icones-analytics a {
  background-image: url("/assets/img/feature-analytics.svg");
}

.fonctionnalites-icones-sportifs a {
  background-image: url("/assets/img/feature-sportifs.svg");
}

.fonctionnalites-texte {
  font-size: 12px;
  line-height: 1.5em;
  padding: 15px 0;
}

.fonctionnalites-arguments {
  margin-bottom: -350px;
}

.fonctionnalites-arguments h2 {
  display: inline-flex;
  text-align: left;
  margin: 0 20px 15px -15px;
  padding: 12px 20px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: #f00;
}

.fonctionnalites-arguments p {
  font-size: 12px;
  line-height: 30px;
  margin: 15px 0 30px;
  padding-top: 75px;
}

.fonctionnalites-arguments p:first-of-type {
  background: url("/assets/img/fonctionnalites-synchro.svg") no-repeat center
    top/auto 50px;
}

.fonctionnalites-arguments p:last-of-type {
  background: url("/assets/img/fonctionnalites-messagerie.svg") no-repeat center
    top/auto 50px;
}

.fonctionnalites-smartphones {
  margin-bottom: 30px;
}

.fonctionnalites-smartphones img {
  width: 100%;
  display: block;
  margin: 0;
}

.fonctionnalites-apps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 15px;
  margin: 10px 15px 50px;
}

.fonctionnalites-apps img {
  max-width: 100%;
}

section.fonctionnalites-gerer {
  background: #fff url("/assets/img/fonctionnalites-gerer-bg-mobile.jpg")
    no-repeat center 30px / contain;
  padding-top: 30px;
  margin-top: 350px;
}

section.fonctionnalites-gerer .container,
section.fonctionnalites-monitorer .container,
section.fonctionnalites-analyser .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

section.fonctionnalites-gerer h1 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  padding-top: 70px;
  margin: 0;
  text-align: center;
  z-index: 2;
}

.fonctionnalites-gerer-slick {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fonctionnalites-gerer-slick li {
  margin: 25px 15px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  padding: 15px;
  outline: none;
}

.fonctionnalites-gerer-slick .slick-track {
  display: flex !important;
}

.fonctionnalites-gerer-slick .slick-slide {
  height: inherit !important;
}

.fonctionnalites-gerer-slick picture {
  position: relative;
  display: block;
}

.fonctionnalites-gerer-slick picture:after {
  content: "";
  display: block;
  padding-bottom: 64.13%;
}

.fonctionnalites-gerer-slick img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fonctionnalites-gerer h2 {
  text-align: center;
  margin: 0 0 30px;
  width: 100%;
  display: inline-block;
}

.fonctionnalites-gerer h2 span {
  font-weight: 700;
  background: #f00;
  color: #fff;
  font-size: 20px;
  padding: 10px 20px;
}

.fonctionnalites-gerer-slick p {
  font-weight: 400;
  color: #23216d;
  line-height: 1.5em;
  margin: 0 0 30px;
  font-size: 12px;
}

.fonctionnalites-gerer-slick-img,
.fonctionnalites-monitorer-slick-img {
  display: none;
}

section.fonctionnalites-monitorer {
  background: #171637;
  position: relative;
}

section.fonctionnalites-monitorer:before {
  content: "";
  position: absolute;
  width: 332px;
  height: 801px;
  left: 0;
  bottom: 0;
  background: url("/assets/img/fonctionnalites-monitorer-bg-before.png")
    no-repeat left bottom/contain;
}

section.fonctionnalites-monitorer h1 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  padding: 50px 50px 0;
  margin: 0;
  text-align: center;
  z-index: 2;
}

.fonctionnalites-monitorer-slick {
  list-style: none;
  margin: 25px 0 0;
  padding: 0;
}

.fonctionnalites-monitorer-slick li {
  margin: 25px 15px;
  padding: 0;
}

.fonctionnalites-monitorer-slick picture {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

.fonctionnalites-monitorer-slick picture:after {
  content: "";
  display: block;
  padding-bottom: 75%;
}

.fonctionnalites-monitorer-slick img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fonctionnalites-monitorer h2 {
  text-align: center;
  margin: 30px 0;
  width: 100%;
  display: inline-block;
}

.fonctionnalites-monitorer h2 span {
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid #f00;
  font-size: 20px;
  padding: 10px 20px;
}

.fonctionnalites-monitorer-slick p {
  font-weight: 400;
  color: #fff;
  line-height: 1.5em;
  margin: 0;
  padding: 0 15px;
  font-size: 12px;
  text-align: center;
}

section.fonctionnalites-analyser {
  background: #fff;
  position: relative;
  background: url("/assets/img/fonctionnalites-analyser-bg-mobile.jpg")
    no-repeat center top/contain;
  padding-bottom: 75px;
}

section.fonctionnalites-analyser h1 {
  color: #23216d;
  font-size: 28px;
  font-weight: 700;
  padding: 25px 0 100px;
  margin: 0;
  text-align: center;
}

.fonctionnalites-analyser-slick {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fonctionnalites-analyser h2 {
  text-align: left;
  width: 100%;
  display: inline;
  color: #23216d;
  border-bottom: 1px solid #f00;
  margin: 0 20px;
  font-weight: 700;
  font-size: 20px;
  padding: 0 0 10px;
}

.fonctionnalites-analyser-slick p {
  font-weight: 400;
  color: #23216d;
  line-height: 1.5em;
  margin: 50px 0 0;
  padding: 0 20px;
  font-size: 12px;
  text-align: left;
}

.fonctionnalites-analyser-slick picture {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.fonctionnalites-analyser-slick img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fonctionnalites-analyser .btn-devis {
  margin-top: 20px;
}

/* PERFORMANCE BI */

section.bi-intro {
  position: relative;
  background: #141142;
  color: #fff;
}

section.bi-intro:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: url("/assets/img/circles-1.svg") no-repeat right top/contain;
  right: 0;
  top: 0;
  z-index: 1;
  opacity: 0.25;
}

.bi-intro-video {
  display: none;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.bi-intro h1 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  padding: 30px 0 0;
  position: relative;
  z-index: 2;
}

section.bi-intro h1:after {
  content: "";
  display: block;
  overflow: hidden;
  position: relative;
  top: -20px;
  left: -15px;
  width: calc(100% + 30px);
  height: 285px;
  background: url("/assets/img/bi-intro-after.png") no-repeat center top;
  background-size: 425px 285px;
}

.bi-intro-accroche p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5em;
  margin: 0 0 25px;
  text-align: left;
}

.bi-intro-accroche p strong {
  font-weight: 700;
  color: #f00;
}

.bi-intro-texte p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5em;
  text-align: left;
  margin: 0;
}

.bi-intro-gif {
  text-align: center;
  position: relative;
  bottom: -27px;
  z-index: 10;
}

section.bi-solution {
  background: #fff;
}

.bi-solution-intro {
  padding: 50px 0 15px;
  background: url("/assets/img/solution-bi-bg.jpg") no-repeat center
    center/cover;
}

.bi-solution-intro h1 {
  font-size: 28px;
  text-align: center;
  line-height: 1.5em;
  color: #fff;
  margin: 0;
  padding: 0 0 250px;
}

.bi-solution-intro h2 {
  background: #f00 url("/assets/img/bi-clic.svg") no-repeat left center;
  background-size: auto 60%;
  background-position: 15px;
  color: #fff;
  margin: 0;
  padding: 10px 30px;
  text-indent: 40px;
  display: inline-block;
}

.bi-solution-intro p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 40px 15px 20px;
}

ul.bi-solution-texte {
  list-style: none;
  margin: 0;
  padding: 0 0 25px;
}

.bi-solution li {
  padding: 100px 0 20px;
  font-size: 12px;
  font-weight: 400;
  background-position: center 40px;
  background-size: 46px auto;
  background-repeat: no-repeat;
  line-height: 2em;
}

.bi-solution li:first-child {
  background-image: url("/assets/img/bi-algorithme-icon.svg");
}

.bi-solution li:last-child {
  background-image: url("/assets/img/bi-methodologie-icon.svg");
}

section.bi-surmesure {
  background: url("/assets/img/bi-surmesure-bg-mobile.jpg") no-repeat center
    bottom/cover;
  padding-bottom: 45px;
}

section.bi-surmesure:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #171637;
  opacity: 0.6;
}

.bi-surmesure h1 {
  color: #fff;
  font-size: 28px;
  line-height: 1.5em;
  text-align: left;
  margin: 0;
  padding: 30px 0;
}

.bi-surmesure img.bi-img-mobile {
  display: block;
  margin: 0;
  max-width: 100%;
}

.bi-surmesure p {
  margin: 30px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 2em;
  color: #fff;
}

.bi-surmesure-slick {
  margin: 0 0 50px;
  padding: 0;
  color: #fff;
}

.bi-surmesure li {
  font-size: 12px;
  margin-bottom: 15px;
  outline: none;
  position: relative;
  padding-left: 15px;
}

.bi-surmesure li:before {
  content: "•";
  display: block;
  position: absolute;
  left: 0;
  top: -3px;
  font-size: 16px;
}

.bi-surmesure li strong {
  font-weight: 700;
  color: #f00;
}

/*** FORMULES ***/

section.formules,
section.formules-detail {
  background: #141142;
  color: #fff;
}

section.formules {
  padding-bottom: 45px;
}

section.formules .container {
  padding-left: 0;
  padding-right: 0;
}

section.formules-detail {
  padding-bottom: 20px;
}

.formules-logo {
  width: calc(100% - 30px);
  display: block;
  margin: 0 auto;
  padding: 15px 0;
}

.formules h1,
.formules-detail h1 {
  text-align: center;
  font-size: 28px;
  line-height: 1.5em;
  font-weight: 700;
  margin-bottom: 30px;
  padding: 0 15px;
}

.formules-detail h1 {
  padding: 0;
}

.formules-detail h2 {
  position: relative;
  font-size: 20px;
  margin: 15px 0 50px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.formules-detail h2:before {
  content: "";
  position: absolute;
  background: #d8d8d8;
  width: 100%;
  height: 1px;
  left: 0;
  top: 14px;
}

.formules-detail h2 span {
  background: #141142;
  position: relative;
  padding: 0 10px;
}

.formules-dashboard {
  width: 100%;
}

.formules-socleclub h2 {
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  line-height: 1em;
  margin: 0;
  position: relative;
  bottom: -12px;
  z-index: 5;
}

.formules-socleclub-detail {
  border-radius: 10px;
  padding: 10px;
  margin: 0 30px 15px;
  background: #fff;
  box-shadow: 0px 2px 20px #000;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-rows: 50px 254px;
  grid-template-columns: 1fr 125px;
  grid-template-areas:
    "liste plus"
    "liste iphone";
}

.formules-socleclub .formules-socleclub-detail:after {
  content: "";
  width: 160px;
  height: 159px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url("/assets/img/circles-2.svg") no-repeat right bottom/contain;
}

.formules-socleclub-detail ul {
  list-style: none;
  margin: 0;
  z-index: 5;
}

.formules-socleclub-detail ul:first-of-type {
  color: #171637;
  font-size: 14px;
  font-weight: bold;
  line-height: 33px;
  padding-left: 5px;
  grid-area: liste;
}

.formules-socleclub-detail ul:last-of-type {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
  padding: 90px 0 0 12px;
  grid-area: iphone;
  background: url("/assets/img/iphone-navy.png") no-repeat right top/contain;
}

.formules-socleclub-detail ul:first-of-type li {
  display: flex;
}

.formules-socleclub-detail ul:first-of-type li:before {
  content: "";
  width: 20px;
  margin-right: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.formules-socleclub-detail ul:last-of-type li:before {
  content: "•";
  font-size: 12px;
  padding-right: 10px;
}

.formules .formules-devis {
  margin-bottom: 50px;
}

li.icon-effectif:before {
  background-image: url("/assets/img/socle-effectif.svg");
  background-size: auto 17px;
}

li.icon-entrainements:before {
  background-image: url("/assets/img/socle-entrainements.svg");
  background-size: auto 15px;
}

li.icon-competitions:before {
  background-image: url("/assets/img/socle-competitions.svg");
  background-size: auto 15px;
}

li.icon-statistiques:before {
  background-image: url("/assets/img/socle-statistiques.svg");
  background-size: auto 15px;
}

li.icon-calendrier:before {
  background-image: url("/assets/img/socle-calendrier.svg");
  background-size: auto 14px;
}

li.icon-exercices:before {
  background-image: url("/assets/img/socle-exercices.svg");
  background-size: auto 16px;
}

li.icon-messagerie:before {
  background-image: url("/assets/img/socle-messagerie.svg");
  background-size: auto 17px;
}

.formules-socleclub-detail li.icon-actualite:before {
  background-image: url("/assets/img/socle-actualite.svg");
  background-size: auto 15px;
}

.formules-socleclub-detail li.icon-dotations:before {
  background-image: url("/assets/img/socle-dotations.svg");
  background-size: auto 17px;
}

li.icon-dashboard:before {
  background-image: url("/assets/img/socle-dashboard.svg");
  background-size: auto 17px;
}

li.icon-questionnaires:before {
  background-image: url("/assets/img/socle-questionnaires.svg");
  background-size: auto 15px;
}

.formules-socleclub-detail div {
  grid-area: plus;
}

.formules-socleclub-detail p {
  color: #f00;
  padding-left: 28px;
  font-size: 16px;
  font-weight: bold;
  position: relative;
}

.formules-socleclub-detail p:before {
  content: "+";
  font-size: 36px;
  color: #f00;
  line-height: 50px;
  position: absolute;
  left: 0;
}

.formules-socleclub-tarifs p {
  font-size: 15px;
  font-weight: 700;
  width: 180px;
  margin: 0 auto 50px;
}

.formules-socleclub-tarifs strong {
  font-size: 35px;
  font-weight: 700;
  color: #f00;
}

.formules-detail ul {
  margin: 0;
  padding: 0 0 50px;
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.formules-detail ul:before {
  display: block;
  width: 100%;
  height: 70px;
  padding: 50px 0 0;
  margin-bottom: 25px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 40px;
  color: #f00;
  font-size: 20px;
  font-weight: 700;
  line-height: 1em;
  text-align: center;
  grid-column: 1 / 3;
}

.formules-detail-club:before {
  content: "Pour le club";
  background-image: url("/assets/img/option-club.svg");
}

html:lang(en) .formules-detail-club:before {
  content: "For the club";
}

.formules-detail-equipe:before {
  content: "Par équipe";
  background-image: url("/assets/img/option-equipe.svg");
}

html:lang(en) .formules-detail-equipe:before {
  content: "By team";
}

.formules-detail li {
  border-radius: 8.5px;
  background: linear-gradient(180deg, #241f71, #161437);
  box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.5);
  min-height: 240px;
}

.formules-detail li p {
  font-size: 12px;
  margin: 5px 25px;
}

.formules-detail h3 {
  width: calc(100% - 30px);
  height: 30px;
  background: #f00;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  margin: 0 auto 60px;
  color: #fff;
  position: relative;
  white-space: nowrap;
}

.formules-detail h3:after {
  content: "";
  width: 100%;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 26px;
  position: absolute;
  left: 0;
  bottom: -45px;
}

.formules-detail-administratif h3:after {
  background-image: url("/assets/img/option-administratif.svg");
}

.formules-detail-mediacenter h3:after {
  background-image: url("/assets/img/option-mediacenter.svg");
}

.formules-detail-performance h3:after {
  background-image: url("/assets/img/option-performance.svg");
}

.formules-detail-analytics h3:after {
  background-image: url("/assets/img/option-analytics.svg");
}

.formules-detail-bi h3:after {
  background-image: url("/assets/img/option-bi.svg");
}

.formules-detail-gps h3:after {
  background-image: url("/assets/img/option-gps.svg");
}

section.formules-offres {
  background: #141142 url("/assets/img/formules-offres-bg-mobile.jpg") no-repeat
    left top/cover;
  padding: 90px 0 20px;
}

.formules-offres-slick {
  margin: 0 0 20px;
  padding: 0;
}

.formules-offres-slick .slick-list {
  padding: 0 34px;
}

.formules-offres-slick .slick-track {
  display: flex !important;
}

.formules-offres-slick li.slick-slide {
  margin: 0 7.5px;
  /*   box-shadow: 0px 0px 10px #000; */
  height: inherit !important;
}

.formules-offres-slick li h2 {
  font-size: 30px;
  line-height: 1.25em;
  text-align: center;
  width: 100%;
  margin: 0;
  padding-bottom: 12px;
  color: #fff;
  position: relative;
  bottom: -12px;
  z-index: -1;
}

.formules-offres-rpe h2 {
  background-color: #f00;
}

.formules-offres-effort h2 {
  background-color: #23216d;
}

.formules-offres-gps h2 {
  background-color: #171637;
}

.formules-offres-slick li > div {
  position: relative;
  background: #fff;
  border-radius: 10px;
  height: calc(100% - 88px);
  padding: 10px;
  display: grid;
  grid-template-rows: auto 50px 254px;
  grid-template-columns: 1fr 125px;
  grid-template-areas:
    "texte texte"
    "liste plus"
    "liste iphone";
}

.formules-offres-slick li > div:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  background: url("/assets/img/circles-4.png") no-repeat left bottom/contain;
  z-index: 3;
  width: 125px;
  height: 125px;
}

.formules-offres-slick li > div > p {
  font-size: 12px;
  line-height: 1.5em;
  color: #000;
  margin-bottom: 20px;
  grid-area: texte;
}

.formules-offres-slick li ul {
  list-style: none;
  margin: 0;
  z-index: 5;
}

.formules-offres-slick li ul:first-of-type {
  color: #171637;
  font-size: 14px;
  font-weight: bold;
  line-height: 33px;
  padding-left: 0;
  grid-area: liste;
}

.formules-offres-slick ul:first-of-type li {
  display: flex;
  white-space: nowrap;
}

.formules-offres-slick ul:first-of-type li:before {
  content: "";
  width: 20px;
  margin-right: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.formules-offres-slick li ul:last-of-type {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  padding: 90px 0 0 6px;
  grid-area: iphone;
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
}

.formules-offres-rpe ul:last-of-type,
.formules-offres-gps ul:last-of-type {
  background-image: url(/assets/img/iphone-navy.png);
}

.formules-offres-effort ul:last-of-type {
  background-image: url(/assets/img/iphone-rouge.png);
}

.formules-offres-slick li div div p {
  color: #f00;
  padding-left: 28px;
  font-size: 16px;
  font-weight: bold;
  position: relative;
}

.formules-offres-slick li div div p:before {
  content: "+";
  font-size: 36px;
  color: #f00;
  line-height: 50px;
  position: absolute;
  left: 0;
}

section.formules-tracker {
  padding: 25px 0 50px;
  background: radial-gradient(circle, #241f71, #161437);
  position: relative;
}

section.formules-tracker:before {
  content: "";
  width: calc(100% - 30px);
  height: 100%;
  position: absolute;
  left: 15px;
  top: 15px;
  background: url("/assets/img/tracker-bg-mobile.png") no-repeat center
    top/contain;
}

.formules-tracker h1 {
  color: #fff;
  text-align: left;
  font-size: 28px;
  line-height: 1.5em;
  font-weight: 700;
  margin-bottom: 0;
  padding: 0 15px;
}

.formules-tracker h2 {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  text-align: left;
  line-height: 1em;
  margin: 0;
  position: relative;
  left: 20px;
  bottom: -7px;
  z-index: 5;
  max-width: 250px;
}

.formules-tracker p.formules-tracker-description {
  color: #fff;
  font-size: 12px;
  margin: 10px;
}

.formules-tracker p em {
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  padding: 0 15px;
  margin: 10px 0;
}

.formules-tracker > p:last-of-type {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding: 0 15px;
  margin: 10px 0 15px;
  z-index: 3;
}

.formules-tracker > p:last-of-type strong {
  font-size: 14px;
}

.formules-tracker h1 em {
  color: #f00;
  font-style: normal;
}

.formules-tracker .formules-socleclub-detail {
  margin: 0 15px 15px;
}

.formules-detail-tracker {
  color: #fff;
  margin: 0 15px;
  padding: 0 0 20px;
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.formules-detail-tracker:after {
  content: "";
  width: 42px;
  height: 42px;
  position: absolute;
  left: calc(50% - 21px);
  top: -30px;
  z-index: 10;
  background: url("/assets/img/tracker-plus.png") no-repeat center/contain;
}

.formules-detail-tracker:before {
  display: block;
  width: 100%;
  height: 70px;
  padding: 50px 0 0;
  margin-bottom: 25px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 40px;
  color: #f00;
  font-size: 20px;
  font-weight: 700;
  line-height: 1em;
  text-align: center;
  grid-column: 1 / 3;
}

.formules-detail-tracker li {
  border-radius: 8.5px;
  background: linear-gradient(180deg, #241f71, #161437);
  box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.5);
  min-height: 240px;
}

.formules-detail-tracker li p {
  font-size: 12px;
  margin: 5px 25px;
}

.formules-tracker h3 {
  width: calc(100% - 30px);
  height: 30px;
  background: #f00;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: 700;
  margin: 0 auto 60px;
  color: #fff;
  position: relative;
  white-space: nowrap;
}

.formules-tracker h3:after {
  content: "";
  width: 100%;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 26px;
  position: absolute;
  left: 0;
  bottom: -45px;
}

.formules-detail-trackers p {
  text-align: center;
}

.formules-detail-trackers h3:after {
  background-image: url(/assets/img/option-tracker.svg);
}

.formules-gps {
  background: #161437;
  color: #fff;
  font-size: 12px;
  padding: 50px 0;
}

.formules-gps .container h3 {
  font-style: italic;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 50px;
}

.formules-gps .container h3 span {
  color: #f00;
}

.formules-gps .container div + div {
  border-top: 1px solid #d8d8d8;
  margin-top: 40px;
  padding-top: 40px;
}

.formules-gps h2 {
  text-align: center;
  text-indent: -1000px;
  overflow: hidden;
  height: 57px;
  display: block;
  margin: 10px auto 30px;
}

.formules-gps a {
  display: block;
  width: 100px;
  height: 30px;
  line-height: 30px;
  border: 1px solid #fff;
  border-radius: 15px;
  font-weight: 700;
  color: #fff;
  margin: 15px auto;
  text-align: center;
}

.formules-gps h2.mclloyd {
  width: 290px;
  background: url("/assets/img/logo-mclloyd.png") no-repeat left top/cover;
}

.formules-gps h2.asi {
  width: 125px;
  background: url("/assets/img/logo-asi.png") no-repeat left top/cover;
}

/*** PAGES GENERIQUES ***/

section.container {
  padding: 50px 15px;
}

section.container h1 {
  font-size: 28px;
  font-weight: 700;
  color: #23216d;
  padding: 30px 0;
}

section.container p {
  font-size: 12px;
  line-height: 2em;
}

.communiques {
  list-style: none;
  margin: 0;
  padding: 0;
}

.communiques li {
  font-size: 12px;
  margin-bottom: 15px;
  display: flex;
}

.communiques li:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 17px;
  background: url("/assets/img/logo-rouge.svg") no-repeat left top/cover;
  margin-right: 10px;
}

.communiques li a {
  color: #23216d;
}

.communiques li a:hover {
  text-decoration: none;
}

.communiques li a span {
  color: #f00;
  font-style: italic;
}

/*** FOOTER ***/

footer {
  background: #fff;
  padding: 0 0 25px;
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-logo {
  width: 250px;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px 20px 25px;
  background: #f00;
}

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

.footer-socials {
  width: 280px;
  margin: 20px auto;
  padding: 0 0 15px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid #f00;
}

.footer-socials li a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-socials img {
  max-width: 27px;
  max-height: 27px;
}

.footer-links {
  width: 250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: left;
  grid-template-areas:
    "legal about"
    "presse presse"
    "confidentialite confidentialite"
    "cgu cgu"
    "copyright copyright";
}

.footer-links-copyright {
  grid-area: copyright;
}

.footer-links-legal {
  grid-area: legal;
}

.footer-links-about {
  grid-area: about;
  text-align: right;
}

.footer-links-presse {
  grid-area: presse;
}

.footer-links-confidentialite {
  grid-area: confidentialite;
}

.footer-links-cgu {
  grid-area: cgu;
}

.footer-links li {
  height: 25px;
}

.footer-links,
.footer-links a {
  color: #f00;
  text-decoration: none;
  font-size: 12px;
}

.footer-links a:hover {
  text-decoration: underline;
}

ul.sidebar-socials {
  display: none;
}

/* SLICK */

.slick-dots {
  text-align: center;
  margin: 0;
  padding: 30px 0;
}

.fonctionnalites-gerer-slick-dots {
  z-index: 10;
}

.home-profil .slick-dots,
.fonctionnalites-gerer-slick-dots .slick-dots {
  padding-top: 0;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 3px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:before {
  font-size: 6px;
  line-height: 12px;
  position: absolute;
  top: 0;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-radius: 5px;
  content: "";
  background: #d8d8d8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.home-profil-slick-dots .slick-dots li button:before,
.home-actu-slick-dots .slick-dots li button:before,
.fonctionnalites-gerer-slick-dots .slick-dots li button:before {
  background: #d8d8d8;
}

.home-profil-slick-dots .slick-dots li.slick-active button:before,
.home-actu-slick-dots .slick-dots li.slick-active button:before,
.fonctionnalites-gerer-slick-dots .slick-dots li.slick-active button:before,
.fonctionnalites-monitorer-slick-dots .slick-dots li.slick-active button:before,
.fonctionnalites-analyser-slick-dots .slick-dots li.slick-active button:before {
  background: #f00;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.home-actu-slick button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 28px;
  height: 28px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 9;
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 1px 1px 2px pink;
}

.slick-prev:before {
  content: "←";
}

.slick-next:before {
  content: "→";
}

/***************************
******** RESPONSIVE ********
****************************/

@media (max-width: 340px) {
  section.fonctionnalites-monitorer:before {
    width: 320px;
    height: 772px;
  }

  .formules-socleclub-detail {
    padding: 10px 6px;
  }

  .formules-socleclub-detail ul:first-of-type {
    padding-left: 0;
  }

  .formules-offres-slick li ul:first-of-type {
    font-size: 12px;
    padding-left: 0;
  }

  .formules-offres-slick li > div {
    grid-template-columns: 1fr 105px;
  }

  .formules-offres-slick li h2 {
    font-size: 26px;
  }
}
/******* TABLETTE PORTRAIT ******/
@media (min-width: 768px) {
  section.home-intro:before {
    width: 185px;
    height: 187px;
    background-size: contain;
  }

  section.home-intro:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    background: url(/assets/img/circles-3.png) no-repeat left bottom/contain;
    z-index: 3;
    width: 340px;
    height: 360px;
  }

  .home-intro-video:after {
    content: none;
  }

  .home-intro-slogan {
    padding: 140px 0 20px;
  }

  .home-intro-logo {
    width: 400px;
    margin: 0 0 50px;
  }

  .home-intro-slogan p {
    width: 540px;
    font-size: 30px;
  }

  .home-intro-hashtag {
    width: 475px;
    margin: 0;
    position: initial;
    bottom: initial;
    left: initial;
  }

  .home-intro-slick li {
    margin: 25px 5px;
  }

  .home-intro-slider {
    overflow: hidden;
    margin-bottom: 50px;
  }

  .home-intro-slider p {
    font-size: 30px;
    width: 580px;
    margin: 0 auto;
    position: relative;
  }

  .home-intro-slider p:before,
  .home-intro-slider p:after {
    content: "";
    width: 300px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 22px;
  }

  .home-intro-slider p:before {
    left: -310px;
  }

  .home-intro-slider p:after {
    right: -310px;
  }

  .home-profil h1 {
    font-size: 30px;
    margin: 15px 0 50px;
  }

  .home-profil-slick .slick-slide {
    height: 100% !important;
    position: relative;
  }

  .home-profil h3 {
    height: 60px;
  }

  .home-profil .slick-current h3 {
    font-size: 24px;
    height: 100px;
    margin-top: 50px;
  }

  .home-profil .slick-list {
    padding: 0 200px;
  }

  .home-profil .slick-track {
    width: fit-content !important;
  }

  .home-profil .slick-slide {
    cursor: pointer;
  }

  .home-profil .slick-slide:focus {
    outline: none;
  }

  .home-profil .slick-slide.slick-current {
    width: 345px !important;
  }

  .home-intro-slick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    z-index: 4;
  }

  .home-solution {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    min-height: initial;
    height: 475px;
  }

  .home-solution:after {
    background-image: linear-gradient(-45deg, #171537, #e20512),
      url(/assets/img/home-solution-bg.jpg);
  }

  .home-solution:before {
    top: 50px;
  }

  .home-solution h1 {
    width: 100%;
    font-size: 50px;
  }

  .home-solution div {
    margin: 30px 25px 0;
  }

  .home-legitimite {
    padding-top: 75px;
    padding-bottom: 50px;
  }

  .home-legitimite h1 {
    display: block;
    text-align: right;
    font-size: 40px;
    color: #23216d;
    background: none;
    width: 100%;
  }

  .home-legitimite p {
    font-size: 15px;
    margin: 0;
    text-align: justify;
  }

  .home-legitimite img {
    height: initial;
    max-width: calc(100% + 30px);
    margin: -50px -30px -40px 0;
  }

  .home-legitimite .container {
    display: grid;
    grid-template-rows: 100px auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .home-legitimite h1 {
    grid-column: 1 /3;
  }

  .home-legitimite p {
    grid-column: 2 / 3;
  }

  .home-legitimite picture {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }

  .home-actu {
    padding-bottom: 50px;
  }

  .home-actu-slick li > div {
    grid-template-columns: 110px 1fr;
    column-gap: 25px;
    grid-template-areas:
      "profil excerpt"
      "author excerpt"
      "date excerpt"
      ". image"
      ". lien";
  }

  .home-actu-slick li:not(.slick-current) {
    opacity: 0.3;
  }

  .home-actu-slick-picture {
    width: 110px;
    height: 110px;
    border-radius: 55px;
  }

  .home-actu-slick-author,
  .home-actu-slick-date {
    justify-content: center;
    text-align: center;
  }

  .home-actu-slick li p.home-actu-slick-author {
    margin: 15px 0;
  }

  .home-actu-slick-date {
    font-size: 16px;
  }

  .home-actu-slick-excerpt p {
    font-size: 15px;
  }

  .home-actu-slick-image img {
    margin: 0;
  }

  .home-actu-slick-date {
    font-size: 16px;
  }

  /*.slick-current .home-profil-slick-additional {
		display: block;
	} */

  body.page-fonctionnalites {
    overflow-x: hidden;
  }

  section.fonctionnalites {
    background: radial-gradient(#241f71, #0e0c26),
      url(/assets/img/fonctionnalites-bg.jpg) no-repeat center top/100% auto;
  }

  section.fonctionnalites:before {
    width: 150px;
    height: 150px;
    background-size: contain;
  }

  section.fonctionnalites .container {
    display: grid;
    grid-template-columns: 285px 1fr;
    column-gap: 30px;
    padding-top: 100px;
  }

  section.fonctionnalites h1 {
    grid-column: 1 / -1;
    text-align: left;
    font-size: 60px;
    padding-top: 50px;
    margin-bottom: 30px;
  }

  .fonctionnalites-icones {
    grid-template-rows: repeat(3, 80px);
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 15px;
    padding: 0;
  }

  .fonctionnalites-icones li:first-child {
    display: list-item;
  }

  .fonctionnalites-icones li {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    overflow: initial;
  }

  .fonctionnalites-icones li:first-child {
    background: url("/assets/img/logo-blanc.svg") no-repeat center/contain;
    overflow: hidden;
    text-indent: -1000px;
  }

  .fonctionnalites-icones li:not(:first-child) {
    background-color: #f00;
  }

  .fonctionnalites-icones li:after {
    content: attr(data-icone);
    font-size: 9px;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -18px;
    text-align: center;
    white-space: nowrap;
  }

  .fonctionnalites-texte {
    font-size: 20px;
    line-height: 40px;
    padding: 0 0 15px;
  }

  .fonctionnalites-arguments {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px 15px;
    margin-top: 150px;
    margin-bottom: -160px;
  }

  .fonctionnalites-arguments h2 {
    grid-column: 1 / 2;
    margin-right: -80px;
    font-size: 28px;
  }

  .fonctionnalites-arguments p {
    font-size: 12px;
    margin: 0;
  }

  .fonctionnalites-smartphones {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
    position: relative;
  }

  .fonctionnalites-smartphones img {
    width: 365px;
    position: absolute;
    left: -60px;
    top: 55px;
  }

  .fonctionnalites-apps {
    grid-column: 1 / 3;
  }

  .fonctionnalites-apps a:first-of-type {
    text-align: right;
  }

  .fonctionnalites-apps img {
    max-width: 260px;
  }

  section.fonctionnalites-gerer {
    margin-top: 150px;
    background: #fff url(/assets/img/fonctionnalites-gerer-bg.jpg) no-repeat
      center center/cover;
  }

  section.fonctionnalites-gerer h1 {
    color: #23216d;
    font-size: 60px;
    margin-bottom: 250px;
    padding-top: 0;
  }

  .fonctionnalites-gerer-slick {
    outline: none;
  }

  .fonctionnalites-gerer-slick li {
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: none;
    cursor: pointer;
    margin: 25px 10px;
  }

  .fonctionnalites-gerer-slick li:first-child {
    margin-left: 0;
  }

  .fonctionnalites-gerer-slick li:last-child {
    margin-right: 0;
  }

  .fonctionnalites-gerer-slick picture,
  .fonctionnalites-monitorer-slick picture,
  .fonctionnalites-analyser-slick picture {
    display: none;
  }

  .fonctionnalites-gerer-slick h2 {
    border-bottom: 2px solid transparent;
    padding-bottom: 10px;
  }

  .fonctionnalites-gerer-slick .slick-current h2 {
    border-bottom: 2px solid #f00;
  }

  .fonctionnalites-gerer-slick h2 span {
    background: none;
    color: #23216d;
    padding: 10px 0;
    font-size: 16px;
  }

  .fonctionnalites-gerer-slick p {
    text-align: center;
  }

  .gerer-wrapper-mask {
    position: relative;
    background: url("/assets/img/bi-mac-hero.png") no-repeat;
    background-size: cover;
    width: 720px;
    height: 413px;
    margin: 0 auto;
  }

  .gerer-mask {
    mask: url("/assets/img/mask.svg");
    mask-size: cover;
    -webkit-mask: url("/assets/img/mask.svg");
    -webkit-mask-size: cover;
    width: 100%;
    height: 100%;
    z-index: 100;
  }

  .fonctionnalites-gerer-slick-img {
    display: block;
    position: relative;
    width: 564px !important;
    height: 367px;
    margin-left: 82px;
    top: 14px;
  }

  section.fonctionnalites-monitorer:before {
    top: 0;
    bottom: initial;
  }

  section.fonctionnalites-monitorer h1 {
    font-size: 60px;
    margin-bottom: 60px;
  }

  .monitorer-wrapper-mask {
    position: relative;
    background: url("/assets/img/monitorer-ipad.png") no-repeat;
    background-size: cover;
    width: 720px;
    height: 535px;
    margin: 0 auto;
  }

  .monitorer-mask {
    mask: url("/assets/img/ipadmask.svg");
    mask-size: contain;
    -webkit-mask: url("/assets/img/ipadmask.svg");
    -webkit-mask-size: cover;
    width: 100%;
    height: 100%;
    z-index: 100;
  }

  .fonctionnalites-monitorer-slick-img {
    display: block;
    position: relative;
    width: 527px !important;
    height: 361px;
    margin-left: 22px;
    top: 20px;
  }

  .fonctionnalites-monitorer-slick-img img {
    border-radius: 5px;
  }

  .fonctionnalites-monitorer-slick {
    margin: 0;
  }

  .fonctionnalites-monitorer-slick li {
    outline: 0;
    margin: 0;
    padding: 15px 25px 50px;
    cursor: pointer;
  }

  .fonctionnalites-monitorer h2 span {
    border-bottom: 1px solid transparent;
    font-size: 24px;
  }

  .fonctionnalites-monitorer-slick p {
    padding: 0;
  }

  .fonctionnalites-monitorer-slick .slick-track {
    display: flex !important;
  }

  .fonctionnalites-monitorer-slick .slick-slide {
    height: inherit !important;
  }

  .fonctionnalites-monitorer-slick .slick-current {
    background: #0209db;
  }

  .fonctionnalites-monitorer-slick .slick-current h2 span {
    border-bottom: 1px solid #f00;
  }

  section.fonctionnalites-analyser {
    background: url(/assets/img/fonctionnalites-analyser-bg.jpg) no-repeat
      center top;
    padding-bottom: 100px;
  }

  section.fonctionnalites-analyser h1 {
    font-size: 60px;
    padding: 100px 0 200px;
  }

  .fonctionnalites-analyser-slick-dots {
    display: none;
  }

  .fonctionnalites-analyser-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-areas: "texte img";
    align-items: center;
    margin-left: 15px;
  }

  .fonctionnalites-analyser-slick-img {
    grid-area: img;
    max-height: 500px;
  }

  .fonctionnalites-analyser-slick-img img {
    width: auto !important;
    max-height: 100%;
  }

  .fonctionnalites-analyser-slick .slick-list {
    height: 100% !important;
  }

  .fonctionnalites-analyser-slick-img .slick-track {
    display: flex !important;
  }

  .fonctionnalites-analyser-slick-img .slick-slide {
    height: 500px !important;
    padding-right: 0;
    outline: 0;
  }

  .fonctionnalites-analyser-slick {
    grid-area: texte;
    width: 100%;
    background: #fff;
    justify-self: right;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.5);
    box-sizing: content-box;
  }

  .fonctionnalites-analyser-slick li {
    outline: 0;
    cursor: pointer;
    padding: 30px 15px;
  }

  .fonctionnalites-analyser-slick li.slick-current {
    background: #f1f1f1;
  }

  .fonctionnalites-analyser h2 {
    font-size: 24px;
    margin: 0;
    border-bottom: 2px solid transparent;
    padding: 0;
  }

  .fonctionnalites-analyser-slick li.slick-current h2 {
    border-bottom: 2px solid #f00;
  }

  .fonctionnalites-analyser-slick p {
    padding: 20px 0 6px;
    margin: 0;
  }

  .fonctionnalites-analyser .btn-devis {
    grid-column: 1 / 2;
    margin-left: auto;
    margin-right: 10px;
  }

  section.bi-intro {
    padding-bottom: 50px;
    overflow: hidden;
  }

  section.bi-intro:before {
    width: 360px;
    height: 360px;
    top: initial;
    bottom: -1px;
    opacity: 1;
    transform: rotate(90deg);
  }

  .bi-intro-video {
    display: block;
  }

  section.bi-intro h1 {
    text-align: left;
    font-size: 60px;
  }

  .bi-intro-accroche {
    width: 485px;
    margin-top: 50px;
    position: relative;
  }

  .bi-intro-texte {
    width: 300px;
  }

  .bi-intro-accroche p {
    font-size: 20px;
    line-height: 2em;
  }

  .bi-intro-texte p {
    font-size: 20px;
    line-height: 2em;
  }

  section.bi-intro h1:after {
    content: none;
  }

  section.bi-intro .bi-intro-accroche:after {
    content: "";
    display: block;
    overflow: hidden;
    position: absolute;
    top: -20px;
    right: -630px;
    width: 800px;
    height: 570px;
    z-index: 2;
    background: url(/assets/img/bi-intro-after.png) no-repeat center top/contain;
  }

  .bi-intro-gif {
    margin-top: 15px;
    text-align: left;
    bottom: initial;
  }

  section.bi-solution {
    background: #f00 url("/assets/img/bi-bg.jpg") no-repeat center/cover;
    padding-bottom: 75px;
  }

  section.bi-solution .container {
    text-align: center;
  }

  .bi-solution-intro {
    background: none;
  }

  .bi-solution-intro h1 {
    font-size: 50px;
    width: 690px;
    margin: 0 auto;
    padding-bottom: 50px;
  }

  .bi-solution-intro-macbook {
    display: none;
  }

  .bi-mac {
    width: 830px;
    max-width: 100%;
    margin: 0 auto -20px;
    display: block;
    z-index: 5;
  }

  ul.bi-solution-texte {
    position: relative;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 50px 0 25px;
  }

  ul.bi-solution-texte:before {
    content: "";
    width: 96px;
    height: 98px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: url("/assets/img/circles-6.svg") no-repeat right bottom/contain;
  }

  .bi-solution li {
    position: relative;
    padding: 60px 25px 40px;
    background-position: center top;
  }

  .bi-solution li + li {
    border-left: 1px solid #171637;
  }

  section.bi-surmesure {
    background: url(/assets/img/bi-surmesure-bg.jpg) no-repeat center/cover;
    padding: 30px 0 90px;
  }

  section.bi-surmesure:before {
    content: none;
  }

  .bi-surmesure h1 {
    font-size: 50px;
    margin-bottom: 30px;
  }

  .bi-surmesure p {
    font-size: 20px;
    line-height: 1.5em;
  }

  .bi-surmesure li {
    font-size: 14px;
  }

  section.formules .container {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 75px;
    display: grid;
  }

  .formules-logo {
    width: 400px;
    margin: 0 0 0 0;
  }

  .formules h1,
  .formules-detail h1 {
    font-size: 40px;
  }

  .formules h1 {
    text-align: left;
    padding: 0;
    margin: 0 0 30px 0;
  }

  .formules .formules-devis {
    grid-row: 3 / 4;
  }

  .formules .btn-devis a {
    margin: 0;
  }

  .formules-dashboard {
    display: none;
  }

  .formules-socleclub {
    width: 100%;
    justify-self: end;
    background: url("/assets/img/dashboard-formules.png") no-repeat -20px 70px /
      500px auto;
  }

  .formules-socleclub-detail {
    margin: 0 0 15px;
  }

  .formules-socleclub > * {
    width: 280px;
    margin-left: auto !important;
  }

  .formules .formules-devis {
    margin-bottom: 0;
  }

  .formules-detail h2 {
    font-size: 30px;
  }

  .formules-detail ul {
    position: relative;
    padding-bottom: 100px;
  }

  .formules-detail ul.formules-detail-club {
    width: 50%;
    margin: 0 auto;
  }

  .formules-detail ul:before {
    position: absolute;
    width: 100%;
    height: 46px;
    bottom: 30px;
    grid-column: initial;
    background-position: center bottom;
    margin: 0;
    padding: 0;
    background-size: auto 20px;
  }

  .formules-detail ul:after {
    content: "";
    width: 100%;
    height: 19px;
    position: absolute;
    left: 0;
    bottom: 80px;
  }

  .formules-detail ul.formules-detail-club:after {
    background: url("/assets/img/path-club.svg") no-repeat center bottom/contain;
  }

  .formules-detail ul.formules-detail-equipe:after {
    background: url("/assets/img/path-equipe.svg") no-repeat center
      bottom/contain;
  }

  ul.formules-detail-equipe {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }

  .formules-detail .formules-devis {
    display: none;
  }

  section.formules-offres {
    padding: 70px 0;
    background-image: url("/assets/img/formules-offres-bg.jpg");
    background-position: center;
  }

  .formules-offres-slick {
    display: flex;
    justify-content: center;
    list-style: none;
  }

  .formules-offres-slick > li {
    width: 300px;
    outline: none;
  }

  .formules-offres-slick > li + li {
    margin-left: 15px;
  }

  .formules-offres-slick li h2 {
    z-index: initial;
  }

  section.formules-tracker {
    padding: 50px 0;
    overflow: hidden;
    background: url("/assets/img/tracker-bg.png") no-repeat center/cover,
      radial-gradient(circle, #241f71, #161437);
  }

  section.formules-tracker:before {
    content: none;
  }

  .formules-tracker h1 {
    font-size: 40px;
  }

  .formules-tracker h1 br {
    display: none;
  }

  .formules-tracker p.formules-tracker-description {
    width: 550px;
    margin: 0 auto;
  }

  .formules-tracker p em {
    font-size: 20px;
  }

  .formules-tracker h2 {
    width: 800px;
    max-width: initial;
    left: initial;
    margin: 0 10px;
  }

  .formules-tracker h1,
  .formules-tracker > p {
    text-align: center;
  }

  .formules-tracker > p:last-of-type {
    margin-top: 30px;
  }

  .formules-tracker > p:last-of-type,
  .formules-tracker > p:last-of-type strong {
    font-size: 20px;
  }

  .formules-tracker-socle {
    background-color: #fff;
    display: grid;
    width: calc(100% - 20px);
    margin: 0 10px;
    grid-template-rows: 340px;
    grid-template-columns: 7fr 8fr;
    gap: 15px;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0px 2px 20px;
    z-index: 3;
  }

  .formules-tracker .formules-socleclub-detail {
    background: none;
    box-shadow: none;
  }

  .formules-detail-tracker {
    grid-template-rows: 240px;
    margin: 0 30px 0 15px;
    padding: 0;
  }

  .formules-detail-tracker:before {
    content: "";
    width: 1px;
    height: calc(100% + 70px);
    position: absolute;
    border-left: 1px dashed #d2d2d2;
    left: -35px;
    top: -35px;
    z-index: 5;
  }

  .formules-detail-tracker:after {
    content: "+";
    color: #f00;
    font-weight: 700;
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    height: 100%;
    left: -55px;
    top: 0;
  }

  .formules-gps .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .formules-gps .container h3 {
    grid-column: 1 / -1;
    font-size: 36px;
  }

  .formules-gps .container div {
    padding: 0 25px;
  }

  .formules-gps .container div + div {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
    border-left: 1px solid #d8d8d8;
  }

  /*** PAGES GENERIQUES ***/

  section.container {
    padding: 50px 15px;
    min-height: 66vh;
  }

  section.container h1 {
    font-size: 60px;
  }

  section.container p {
    font-size: 14px;
  }

  .communiques li {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .communiques li:before {
    width: 23px;
    height: 24px;
  }

  /*** FOOTER ***/

  .footer-links {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .footer-links li {
    padding: 0 20px;
  }

  /* SLICK */
  .fonctionnalites-gerer-slick-img-dots
    .slick-dots
    li.slick-active
    button:before,
  .fonctionnalites-monitorer-slick-img-dots
    .slick-dots
    li.slick-active
    button:before,
  .fonctionnalites-analyser-slick-img .slick-dots li.slick-active button:before,
  .bi-surmesure-slick-img .slick-dots li.slick-active button:before {
    background: #f00;
  }

  .fonctionnalites-gerer-slick-img-dots {
    position: absolute;
    width: 100%;
    bottom: 13px;
  }

  .fonctionnalites-gerer-slick-img-dots .slick-dots,
  .fonctionnalites-monitorer-slick-img-dots .slick-dots,
  .fonctionnalites-analyser-slick-img .slick-dots {
    padding: 0;
  }

  .fonctionnalites-monitorer-slick-img-dots {
    position: absolute;
    width: calc(100% - 145px);
    right: 145px;
    bottom: 90px;
  }

  .fonctionnalites-analyser-slick-img .slick-dots {
    position: absolute;
    width: 100%;
    bottom: 0px;
  }

  .fonctionnalites-gerer-slick .slick-track,
  .fonctionnalites-monitorer-slick .slick-track,
  .fonctionnalites-analyser-slick .slick-track,
  .bi-surmesure-slick .slick-track {
    transform: translate3d(0, 0, 0) !important; /* hack asNavFor */
  }
}

/******* TABLETTE PAYSAGE ******/
@media (min-width: 992px) {
  .desktopmenu-container nav {
    height: calc(100% - 18px);
    margin: 18px 0 0;
  }

  .desktopmenu-container nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
  }

  .desktopmenu-container nav li {
    height: 100%;
    margin: 0 0 0 25px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
  }

  .desktopmenu-container nav li a {
    padding: 16px 20px 0;
    height: 100%;
    width: 100%;
    display: block;
    color: #171637;
    text-decoration: none;
  }

  .desktopmenu-container nav li.current a,
  .desktopmenu-container nav li a:hover {
    background: #f00;
    color: #fff;
    text-decoration: none;
  }

  .desktopmenu-container .header-user {
    margin-left: auto;
    display: flex;
    align-items: center;
  }

  .desktopmenu-container .header-user > a {
    display: flex;
    height: 100%;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: #171637;
    text-decoration: none;
  }

  .desktopmenu-container .header-user > a:hover {
    color: #f00;
  }

  .desktopmenu-container .header-user svg {
    width: auto;
    height: 30px;
    margin-right: 15px;
    fill: #23216d;
  }

  .desktopmenu-container .header-user > a:hover svg {
    fill: red;
  }
  /* HOMEPAGE */
  .home-intro-slick li {
    margin: 25px 15px;
  }

  .home-profil .slick-current h3 {
    font-size: 28px;
  }

  .home-profil-slick-additional {
    display: none;
  }

  .home-profil .slick-current:after {
    content: attr(data-profil);
    position: absolute;
    width: 400px;
    height: 100px;
    right: -430px;
    bottom: 15px;
    font-size: 15px;
    color: #23216d;
    font-weight: 400;
  }

  .home-legitimite {
    padding-bottom: 0;
  }

  .home-legitimite .container {
    grid-template-columns: 2fr 1fr;
  }

  .home-legitimite img {
    max-width: calc(100% + 70px);
    margin: -50px -70px -40px 0;
  }

  /* FONCTIONNALITES */
  .fonctionnalites-icones {
    grid-template-rows: initial;
  }

  section.fonctionnalites .container {
    column-gap: 75px;
  }

  .fonctionnalites-arguments {
    grid-column: 1 / -1;
    display: grid;
    gap: 15px;
    margin-top: 150px;
    margin-bottom: -160px;
  }

  .fonctionnalites-apps {
    grid-column: 1 / 3;
  }

  .fonctionnalites-smartphones img {
    width: 420px;
    top: 0;
    left: -20px;
  }

  .fonctionnalites-apps a:first-of-type {
    text-align: right;
  }

  .fonctionnalites-apps img {
    max-width: 260px;
  }

  .gerer-wrapper-mask {
    width: 960px;
    height: 551px;
  }

  .fonctionnalites-gerer-slick-img {
    width: 752px !important;
    height: 490px;
    margin-left: 109px;
    top: 18px;
  }

  .fonctionnalites-gerer-slick li {
    margin: 25px 15px;
  }

  .fonctionnalites-gerer-slick li:first-child {
    margin-left: 15px;
  }

  .fonctionnalites-gerer-slick li:last-child {
    margin-right: 15px;
  }

  .fonctionnalites-gerer-slick h2 span {
    font-size: 20px;
  }

  .fonctionnalites-gerer-slick p {
    font-size: 14px;
  }

  .fonctionnalites-gerer-slick-img-dots {
    bottom: 22px;
  }

  section.fonctionnalites-monitorer:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 259px;
    height: 266px;
    background: url("/assets/img/circles-1.svg") no-repeat right top/contain;
  }

  .fonctionnalites-monitorer h2 span {
    font-size: 30px;
  }

  .fonctionnalites-monitorer-slick p {
    font-size: 14px;
  }

  .fonctionnalites-monitorer-slick-img-dots {
    width: calc(100% - 190px);
    right: 190px;
    bottom: 130px;
  }

  .monitorer-wrapper-mask {
    width: 904px;
    height: 672px;
  }

  .fonctionnalites-monitorer-slick-img {
    width: 660px !important;
    height: 452px;
    margin-left: 27px;
    top: 25px;
  }

  .fonctionnalites-analyser-grid {
    grid-template-columns: 35% 65%;
  }

  .fonctionnalites-analyser-slick-img {
    max-height: 620px;
  }

  .fonctionnalites-analyser-slick-img .slick-list {
    padding: 0 10% !important;
  }

  .fonctionnalites-analyser-slick-img .slick-dots {
    position: absolute;
    width: 80%;
    left: 10%;
    right: 10%;
  }

  .fonctionnalites-analyser-slick-img .slick-slide {
    height: 620px !important;
  }

  .fonctionnalites-analyser h2 {
    font-size: 30px;
  }

  .fonctionnalites-analyser-slick p {
    font-size: 14px;
  }

  .fonctionnalites-analyser .btn-devis {
    margin-right: 35px;
  }

  /* PERFORMANCE BI */
  .bi-surmesure img.bi-img-mobile {
    display: none;
  }

  .bi-surmesure-grid {
    display: grid;
    grid-template-columns: 35% 65%;
    align-items: center;
  }

  .bi-surmesure-texte {
    position: relative;
    padding: 25px 0;
    border-radius: 20px;
    background: linear-gradient(180deg, #241f71, #161437);
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.5);
  }

  .bi-surmesure-texte:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 187px;
    height: 185px;
    background: url("/assets/img/bi-surmesure-before.png") no-repeat
      center/contain;
    z-index: 1;
  }

  .bi-surmesure p {
    margin: 0;
    padding: 0 25px 25px;
    position: relative;
    z-index: 2;
  }

  .bi-surmesure li {
    font-size: 16px;
  }

  .bi-surmesure-slick-img img {
    max-width: 100%;
  }

  .bi-surmesure-slick li {
    margin-bottom: 25px;
    padding: 10px 15px;
    cursor: pointer;
  }

  .bi-surmesure-slick li:before {
    content: none;
  }

  .bi-surmesure-slick li.slick-slide {
    border: none;
    border-left: 9px solid transparent;
  }

  .bi-surmesure-slick li.slick-slide.slick-current {
    border-left: 9px solid #f00;
    background: #171637;
  }

  /* FORMULES */
  .formules-logo {
    margin: 0 0 0 50px;
  }

  .formules h1 {
    margin: 0 0 30px 50px;
  }

  .formules .btn-devis a {
    margin: 0 0 0 50px;
  }

  .formules-socleclub {
    background-position: 0 70px;
    background-size: 750px auto;
    padding-bottom: 120px;
  }

  .formules-socleclub > * {
    width: 315px;
  }

  .formules-detail h1 {
    white-space: nowrap;
  }

  .formules-detail h3 {
    width: 100%;
  }

  .formules-detail ul {
    display: inline-grid;
  }

  .formules-detail ul.formules-detail-club {
    width: calc(33% - 4px);
    margin-left: 0;
    margin-right: 6px !important;
  }

  .formules-detail li p {
    margin: 5px 15px;
  }

  ul.formules-detail-equipe {
    width: 66%;
  }

  .formules-tracker-socle {
    width: 800px;
    gap: 30px;
    margin: 0 auto;
  }

  .formules-tracker h2 {
    margin: 0 auto;
  }

  section.formules-tracker:after {
    content: "";
    width: 450px;
    height: 450px;
    position: absolute;
    right: 0;
    bottom: -2px;
    background: url("/assets/img/circles-5.svg") no-repeat right bottom/contain;
    z-index: 2;
  }

  .formules-gps .container div {
    padding: 0 50px;
  }
}

/******* ORDINATEURS ******/
@media (min-width: 1200px) {
  .desktopmenu-container nav ul {
    margin-left: 100px;
  }

  .desktopmenu-container nav li {
    margin-right: 25px;
  }

  /* HOMEPAGE */
  home-profil .slick-current:after {
    width: 400px;
    right: -430px;
  }

  /* FONCTIONNALITES */
  .fonctionnalites-arguments {
    grid-template-columns: 3fr 3fr 2fr;
    gap: 30px;
  }

  .fonctionnalites-arguments h2 {
    grid-column: 1 /-1;
    margin-right: 100px;
    font-size: 28px;
  }

  .fonctionnalites-arguments p {
    font-size: 20px;
  }

  .fonctionnalites-smartphones {
    grid-row: 2 / 4;
    grid-column: 3 / 4;
    position: absolute;
  }

  .fonctionnalites-smartphones img {
    width: 507px;
    position: absolute;
    left: -90px;
    top: -150px;
  }

  .fonctionnalites-apps {
    grid-column: 1 / 3;
  }

  .gerer-wrapper-mask {
    width: 1000px;
    height: 574px;
  }

  .fonctionnalites-gerer-slick-img {
    width: 784px !important;
    height: 510px;
    margin-left: 113px;
    top: 19px;
  }

  .fonctionnalites-gerer-slick-img-dots {
    bottom: 24px;
  }

  section.fonctionnalites-monitorer:before {
    top: initial;
    bottom: 0;
  }

  .fonctionnalites-analyser-grid {
    margin-left: 0;
  }

  .fonctionnalites-analyser-slick {
    width: 380px;
  }

  .fonctionnalites-analyser-slick li {
    padding: 30px 35px;
  }

  .fonctionnalites-analyser-slick-img .slick-slide {
    padding-right: 100px;
  }

  .fonctionnalites-analyser-slick-img .slick-list {
    padding: 0 30% 0 10% !important;
  }

  .fonctionnalites-analyser-slick-img .slick-dots {
    width: calc(60% - 100px);
    left: 10%;
    right: calc(30% + 100px);
  }

  .fonctionnalites-analyser .btn-devis {
    margin-right: 50px;
  }

  /* PERFORMANCE BI */
  .bi-surmesure p {
    padding: 25px 25px 50px;
  }
  .bi-surmesure-slick li {
    padding: 10px 25px;
  }
  /* FORMULES */
  .formules-logo,
  .formules h1,
  .formules .btn-devis a {
    margin-left: 150px;
  }
  .formules-socleclub {
    margin-right: 100px;
    background-position: 130px 70px;
  }
  .formules-detail h3 {
    width: calc(100% - 30px);
  }

  .formules-detail li p {
    margin: 5px 25px;
  }

  .formules-gps .container {
    width: 960px;
  }

  /* SIDEBAR */

  ul.sidebar-socials {
    display: block;
    position: fixed;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 48px;
    top: calc(50% - 160px);
    right: 0;
    z-index: 99;
  }

  ul.sidebar-socials li {
    width: 48px;
    height: 48px;
    background-color: #f00;
    border: 1px solid #f00;
    transition: all ease-in 0.25s;
  }

  ul.sidebar-socials li a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  ul.sidebar-socials li + li {
    margin-top: 20px;
  }

  ul.sidebar-socials li img {
    filter: grayscale(1) brightness(100);
    max-width: 25px;
    max-height: 25px;
    transition: all ease-in 0.25s;
  }

  ul.sidebar-socials li:hover {
    background: #fff;
  }

  ul.sidebar-socials li:hover img {
    filter: initial;
  }

  .slick-next {
    right: 50px;
  }
}

.devis-btn-header {
  margin-right: 20px;
}
