
/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/* Style pour la bande horizontale */
.cta-horizontal-stripes {
    display: flex;
    height: 10px;
    border-top-left-radius: 0; /* Pas d'arrondi en haut à gauche */
    border-top-right-radius: 0; /* Pas d'arrondi en haut à droite */
    overflow: hidden; /* Pour s'assurer que les bandes ne dépassent pas */
}

.cta-stripe1, .cta-stripe2, .cta-stripe3 {
    flex: 1; /* Chaque bande prend une part égale de l'espace */
}

.cta-stripe1 {
    background-color: rgb(152, 103, 249);
}

.cta-stripe2 {
    background-color: rgb(162, 175, 41);
}

.cta-stripe3 {
    background-color: rgb(82, 175, 221);
}

/* Style pour la section avec arrondis */
.cta-section2 {
    position: relative;
    padding: 0 0 2rem;x;
    background-color: #fff; /* Couleur de fond de la section */
    border-radius: 0 0 10px 10px; /* Arrondis en bas à gauche et en bas à droite */
    border-top-left-radius: 0; /* Pas d'arrondi en haut à gauche */
    border-top-right-radius: 0; /* Pas d'arrondi en haut à droite */
box-shadow: 0px 23px 43px 0px rgba(172, 189, 199, 0.49);}

.cta-section2 div.text-center {padding:25px 40px;}

/* ANIMATION MENU */
/* Styles pour les liens du menu */
.nav-link {
  position: relative;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Arrière-plan SVG invisible par défaut */
.nav-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -6%;
  width: 22px;
  height: 22px;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30.737 30.007"><path d="M17.525,5.886c-1.199,1.199-3.143,1.199-4.341,0-1.199-1.199-1.199-3.143,0-4.341,1.198-1.199,3.142-1.199,4.341,0,1.199,1.198,1.199,3.142,0,4.341" fill="%237f50d2"/><path d="M23.163,11.524c-1.199,1.199-3.143,1.199-4.341,0-1.199-1.199-1.199-3.143,0-4.341,1.198-1.199,3.142-1.199,4.341,0,1.199,1.198,1.199,3.142,0,4.341" fill="%235414b6"/><path d="M28.8,17.161c-1.199,1.199-3.143,1.199-4.341,0-1.199-1.199-1.199-3.143,0-4.341,1.198-1.199,3.142-1.199,4.341,0,1.199,1.198,1.199,3.142,0,4.341" fill="%235414b6"/><path d="M11.888,11.524c-1.199,1.199-3.143,1.199-4.341,0-1.199-1.199-1.199-3.143,0-4.341,1.198-1.199,3.142-1.199,4.341,0,1.199,1.198,1.199,3.142,0,4.341" fill="%23a68be1"/><path d="M17.525,17.161c-1.199,1.199-3.143,1.199-4.341,0-1.199-1.199-1.199-3.143,0-4.341,1.198-1.199,3.142-1.199,4.341,0,1.199,1.198,1.199,3.142,0,4.341" fill="%237f50d2"/><path d="M23.163,22.798c-1.199,1.199-3.143,1.199-4.341,0-1.199-1.199-1.199-3.143,0-4.341,1.198-1.199,3.142-1.199,4.341,0,1.199,1.198,1.199,3.142,0,4.341" fill="%235414b6"/><path d="M6.251,17.161c-1.199,1.199-3.143,1.199-4.341,0-1.199-1.199-1.199-3.143,0-4.341,1.198-1.199,3.142-1.199,4.341,0,1.199,1.198,1.199,3.142,0,4.341" fill="%23d9ceef"/><path d="M11.888,22.798c-1.199,1.199-3.143,1.199-4.341,0-1.199-1.199-1.199-3.143,0-4.341,1.198-1.199,3.142-1.199,4.341,0,1.199,1.198,1.199,3.142,0,4.341" fill="%23a68be1"/><path d="M17.525,28.435c-1.199,1.199-3.143,1.199-4.341,0-1.199-1.199-1.199-3.143,0-4.341,1.198-1.199,3.142-1.199,4.341,0,1.199,1.198,1.199,3.142,0,4.341" fill="%237f50d2"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.1);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: -1;
}

/* Effet au survol */
.nav-link:hover {
  color: #000!important;
}

.nav-link:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
/* FIN ANIMATION MENU */

    .horizontal-stripes {
      display: flex;
      height: 8px;
      position: absolute;
      top: 0;
      left: 0;
      width: 100vw;
      z-index: 1;
    }
	
	sup {
	  top: -.2em;
	  left: -.1em;
	  color: #bc9bf7;
	}
	b, strong {font-weight:700;}
	
	.spacer {padding-bottom:80px}
			
    .horizontal-stripes div {
      flex: 1;
    }

    .stripe1 {
      background-color: rgb(152, 103, 249);
    }

    .stripe2 {
      background-color: rgb(162, 175, 41);
    }

    .stripe3 {
      background-color: rgb(82, 175, 221);
    }
   
 a.navbar-brand img {max-width:250px!important;}
 
 .bc-vc {background-color: #f3f3fb;}

.container-slide {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.image-container {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
}

#img1 {
    background-image: url('../images/hero-area/PARAPENTE.jpg');
}

#img2 {
    background-image: url('../images/hero-area/VOLLEY-WEB.jpg');
}

#img3 {
    background-image: url('../images/hero-area/WINDSURF.jpg');
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    background: transparent;
}

.overlay-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slider-text-container {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  border-radius: 0;
  padding: 20px 40px;
  text-align: center;
  transition: background 0.1s ease, color 0.1s ease;
  z-index: 3;
  width: 50%;
  clip-path: polygon(10% 0%, 0% 100%, 0% 100%, 100% 100%, 100% 0%);
  min-height: 150px;
  max-height: 150px;
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  overflow-wrap: break-word;
  word-break: break-word;
}

.slider-text-container h2 {
font-family: "Barlow Semi Condensed", sans-serif;  font-weight: 300;
  font-style: normal;
  margin: 0;
  font-size: 2.5rem;
  color: #555;
}
@media (max-width: 991px) {.slider-text-container {
	width: 100%;
    min-height: 100px;
    max-height: 100px;
	}}

	@media (max-width: 991px) {.slider-text-container h2 {
	  font-size: 2rem;
	  color: #222;
	}}

.slider-text-container:hover  {
  color: #fff;
  background: rgba(128, 0, 128, 0.65);
    cursor:pointer;
}
.slider-text-container:hover h2  {
  color: #fff;
}

/* Styles spécifiques pour chaque slide */
#slide1 .slider-text-container {
  background: #fff;
}

#slide1 .slider-text-container:hover {
	background: rgba(22, 88, 45, 0.65);
	
}
	

#slide2 .slider-text-container {
  background: #fff;
}

#slide2 .slider-text-container:hover {
	background: rgba(28, 169, 239, 0.65);
	
	
}


#slide3 .slider-text-container {
  background: #fff;
}

#slide3 .slider-text-container:hover {
	background: rgba(128, 0, 128, 0.65);
	
}





.custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 50px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0 30px;
}

.custom-prev-arrow {
    left: -10px;
}

.custom-next-arrow {
    right: 10px;
}

.container-slide:hover .custom-arrow {
    opacity: 1;
}



/* 1.1 typography */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body, html {
    height: 100%;
    margin: 0;
}

body {
	line-height: 1.5em;
	  font-family: "Barlow Semi Condensed", sans-serif;
	  font-weight: 300;
	  -webkit-font-smoothing: antialiased;
	  font-size: 20px;
	  background-color: #fff;
	  overflow-x: hidden;
}


p, .paragraph {
  font-weight: 300;
  color: #333;
  font-size: 21px;
  line-height: 1.5em;
  font-family: "Barlow Semi Condensed", sans-serif;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  color: #091337;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 56px;
}

h2, .h2 {
  font-size: 43px;
}

h3, .h3 {
  font-size: 37px;
}

h4, .h4 {
  font-size: 26px;
}

h5, .h5 {
  font-size: 20px;
}

h6, .h6 {
  font-size: 17px;
}

.btn {
  font-size: 18px;
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
  padding: 15px 40px;
  font-weight: 500;
  border: 0;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
}
.btn:focus {
  outline: 0;
  box-shadow: none !important;
}
.btn:active {
  box-shadow: none;
}

.btn-contour {background-color:transparent; border:1px solid #fff; color:#fff!important;}
.btn-contour:hover {background-color:#a76bda;}

.btn-primary {
  background-image: linear-gradient(25deg, rgb(87, 182, 250) 0%, rgb(227, 69, 255) 100%);
  color: #fff; border: none; cursor: pointer; background-size: 150% 150%; background-position: left;
 transition: background-position 1s ease-out, color 1s ease-out;
}
.btn-primary:active {
  background: linear-gradient(25deg, rgb(87, 182, 250) 0%, rgb(227, 69, 255) 100%) !important;
}
.btn-primary:hover {
	background-position: right;
	            color: #fff;
}

.btn-secondary {
  background-image: linear-gradient(6deg, rgb(87, 182, 250) 0%, rgb(227, 69, 255) 100%);
  color: #fff; border: none; cursor: pointer; background-size: 150% 150%; background-position: top;
  color: #fff;
}
.btn-secondary:active {
  background: linear-gradient(6deg, rgb(87, 182, 250) 0%, rgb(227, 69, 255) 100%) !important;
}
.btn-secondary:hover {
	background-position: bottom;
	            color: #fff;
}

.btn-lg {
  padding: 15px 85px;
}

.btn-icon {
  font-size: 1.5em;
  padding-right: 15px;
  vertical-align: top;
}




::-moz-selection {
  background:#8986ff;
  color: #fff;
}

::selection {
    background:#8986ff;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}
a {color:#994cda;}
a:hover {color:#510590;}


a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
}
a:focus,
button:focus,
select:focus {
  outline: 0;
}



.slick-slide {
  outline: 0;
}

.section {
  padding-top: 130px;
  padding-bottom: 130px;
}
.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}
.section-lg {
  padding-bottom: 200px;
}
@media (max-width: 575px) {
  .section-lg {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
.section-title {
  margin-bottom: 30px;
}

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

/* overlay */
.overlay {
  position: relative;
}
.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.5;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

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

.bg-primary {
  background: #008dec !important;
}

.bg-gray {
  background: #f2f3f5;
}

.text-primary {
  color: #008dec !important;
}

.text-dark {
  color: #091337 !important;
}

.text-purple {
  color: #9491ff !important;
}

.text-color {
  color: #333;
}

.primary-shadow {
  box-shadow: 0px 35px 46px 0px rgba(172, 189, 199, 0.28);
}

.phone-btn {
  height: 55px;
  margin: auto 0 !important;
}

.border-blue {
  border-color: #dcebf4 !important;
}

.shadow-primary {
  box-shadow: 0px 35px 46px 0px rgba(172, 189, 199, 0.28);
}

.facebook {
  color: #334bff;
}

.twitter {
  color: #45d9f0;
}

.linkedin {
  color: #1b91ff;
}

.black {
  color: #000;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mt-80 {
  margin-top: 80px !important;
}
.mt-100 {
  margin-top: 100px !important;
}
.mt-120 {
  margin-top: 120px !important;
}
.mt-140 {
  margin-top: 140px !important;
}

.mt-160 {
  margin-top: 160px !important;
}
.mt-180 {
  margin-top: 180px !important;
}
.mt-200 {
  margin-top: 200px !important;
}
.mt-220 {
  margin-top: 220px !important;
}
.mt-240 {
  margin-top: 240px !important;
}
.mt-260 {
  margin-top: 260px !important;
}
.mt-500 {
  margin-top: 500px !important;
}
.pb-100 {
  padding-bottom: 100px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-60 {
  padding-bottom: 600px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.pt-0 {padding-top:0;}
.pt-20 {padding-top:20px;}
.pt-40 {padding-top:40px;}
.pt-60 {padding-top:60px;}
.pt-80 {padding-top:80px;}
.pt-100 {padding-top:100px;}
.pt-120 {padding-top:120px;}

.translate-y-150 {
  transform: translateY(150px);
}
@media (max-width: 575px) {
  .translate-y-150 {
    transform: translateY(0);
  }
}

.text-md-end {text-align:right;}

.left-right-animation {
  animation: left_right 3s ease-in infinite alternate-reverse;
}

@-webkit-keyframes left_right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20px);
  }
}

@keyframes left_right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20px);
  }
}
.up-down-animation {
  animation: up_down 3s ease-in infinite alternate-reverse;
}

@-webkit-keyframes up_down {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

@keyframes up_down {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}
.zindex-1 {
  z-index: 1;
}

/* Styles pour le menu principal et le sous-menu */
.navbar {
  background-color: transparent !important;
}



.navbar-light .navbar-nav .nav-link {
  color: #091337;
  background-color: transparent !important;
  position: relative;
}

.navbar-nav .nav-item .dropdown-menu {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
  background-color: rgba(255, 255, 255, 0.65);
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 1000;
}

.navbar-nav .nav-item:hover > .dropdown-menu,
.navbar-nav .nav-item:focus-within > .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px); /* Préfixe pour Safari et iOS */
}

.dropdown-menu .dropdown-item {
  color: #000;
  padding: 10px 20px;
  position: relative;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa;
}

/* Afficher le sous-menu au survol */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Ajustez selon vos besoins pour l'espacement */
}


/* Sous-menu */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: -1px;
}

.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu:focus-within > .dropdown-menu {
  display: block;
  backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px); /* Préfixe pour Safari et iOS */
  background-color: rgba(255, 255, 255, 0.65) !important;
  opacity: 1;
  transform: translateY(0);
}

/* Arrow for submenus */
.nav-item.dropdown .nav-link::after {
  content: ' \25BC';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: #000;
}

/* Custom arrow for dropdown-submenu */
.dropdown-submenu > .dropdown-item::after {
  content: ' \25B6';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: #000;
}

/* Remove default Bootstrap arrow */
.dropdown-toggle::after {
  content: '' !important;
}
 
/* Menu styles for mobile devices */
@media (max-width: 991px) {
  .navbar-collapse {
	  padding: 50px;
	  background-color: #fff;
	  font-size: 1.5em;
    z-index: 1000;
  }
  .navbar-collapse.show {
    transform: none;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    width: 100%;
    text-align: left;
  }
  .dropdown-menu {
    position: relative;
    display: none;
    width: 100%;
    box-shadow: none;
	
  }
  .dropdown-menu.show {
    display: block;
  }
  .dropdown-submenu > .dropdown-menu {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
  }
  .dropdown-submenu .dropdown-item::after {
    content: '\25B6';
    float: right;
    margin-left: 10px;
  }
  .dropdown-toggle::after {
    content: '\25BC';
    float: right;
    margin-left: 10px;}
	
	.dropdown-item {font-size:1.5em;
  }
}


/* Language switcher */
.language-switcher {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: auto 20px;}
  
  @media (max-width: 991px) {
    .language-switcher {
      display: block;
      margin: 30px auto; /* Centrage horizontal et padding de 30px en haut et en bas */
	  width: 60px!important;
	    height: 60px!important;
    }
  }
  
  .flag {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
  }
  
  .flag-fr {
    background: linear-gradient(to right, #0055a4 33.33%, #fff 33.33%, #fff 66.66%, #ef4135 66.66%);
    z-index: 2;
  }
  
  .flag-uk {
    transform: translateY(100%);
    z-index: 1;
	width: 100%;
	left: 0;
  }



/* Navigation */

.navigation {
	  width: 100%;
  transition: 0.3s ease;
}

.container-fluid {
  padding: 0;
  max-width: 100vw;
}

.img-fluid.logos {
	max-width: 150px;
	max-height: 65px;
	width: auto;
	height: auto;
}

.fixed-top {
    backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Préfixe pour Safari et iOS */
    background-color: rgba(255, 255, 255, 0.65) !important;
	border-bottom: 1px solid #e2f4f8;
  }
  @media (max-width: 752px) {
    .fixed-top {
	    background-color: rgba(255, 255, 255, 0.85) !important;
    }
  }
  
  
  @media (min-width: 992px) {
    .fixed-top {
      padding: 0 40px;
    }
  }

.navbar {
	  width: 100%;
  transition: 0.3s ease;
  padding-top:10px;
  font-size: 1.2em;
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding-bottom: 20px;
  }
}

.nav-bg {
    backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Préfixe pour Safari et iOS */
  opacity: 1;
  box-shadow: 0px 10px 20px 0px rgba(0, 141, 236, 0.1);
}

.nav-bg .navbar {
  padding: 10px 0;
}

.nav-item {
  padding: 20px 10px;
}

@media (max-width: 991px) {
  .nav-item {
    padding: 0;
  }
}

/* Hero styles */
.hero-section {
  
}

.banner-image {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-bg-1 {
  position: absolute;
  left: 30px;
  top: 200px;
}
@media (max-width: 767px) {
  .hero-bg-1 {
    display: none;
  }
}
.hero-bg-2 {
  position: absolute;
  top: 50%;
  left: 20%;
}
@media (max-width: 767px) {
  .hero-bg-2 {
    display: none;
  }
}
.hero-bg-3 {
  position: absolute;
  bottom: 0%;
  left: 10%;
}
@media (max-width: 767px) {
  .hero-bg-3 {
    display: none;
  }
}
.hero-bg-4 {
  top: 210px;
  right: 40%;
  position: absolute;
}
@media (max-width: 767px) {
  .hero-bg-4 {
    display: none;
  }
}
.hero-bg-5 {
  position: absolute;
  top: 250px;
  right: 17%;
}
@media (max-width: 767px) {
  .hero-bg-5 {
    display: none;
  }
}
.hero-bg-6 {
  position: absolute;
  right: 10%;
  bottom: 20%;
}
@media (max-width: 767px) {
  .hero-bg-6 {
    display: none;
  }
}
.hero-bg-7 {
  position: absolute;
  left: 20%;
  bottom: -17%;
  z-index: 1;
}
@media (max-width: 767px) {
  .hero-bg-7 {
    display: none;
  }
}
.hero-bg-8 {
  position: absolute;
  bottom: -30%;
  right: 50%;
  z-index: 1;
}
@media (max-width: 767px) {
  .hero-bg-8 {
    display: none;
  }
}
.hero-bg-9 {
  position: absolute;
  right: 20%;
  bottom: -10%;
  z-index: 1;
}
@media (max-width: 767px) {
  .hero-bg-9 {
    display: none;
  }
}

.feature {
  position: relative;
}
.feature-item h4 {
  line-height: 1;
  margin-top: -5px;
}

.feature-item:hover .feature-icon {
  box-shadow: 0px 18px 43px 0px rgba(0, 141, 236, 0.21);
}
.feature-bg-1 {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
}
@media (max-width: 767px) {
  .feature-bg-1 {
    display: none;
  }
}
.feature-bg-2 {
  position: absolute;
  right: 0;
  bottom: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .feature-bg-2 {
    display: none;
  }
}
.feature-icon {
  display: inline-block;
  height: 90px;
  width: 90px;
  border-radius: 5px;
  color: #fff;
  font-size: 45px;
  line-height: 90px;
  background: #764cd3;
  box-shadow: 0px 18px 25px 0px rgba(0, 141, 236, 0.1);
  text-align: center;
  transition: 0.2s ease;
}
.barre {color:#bc9bf7;}

.seo {
  position: relative;
  overflow: visible;
}
.seo-bg {
  position: absolute;
  left: 0;
  top: -350px;
  z-index: -1;
}
.seo-dektec {
  left: -40%;
  top: -30%;
}

@media (max-width: 1200px) {
  .seo-bg {
    max-width: 500px;
  }
}
@media (max-width: 991px) {
  .seo-bg {
    max-width: 400px;
  }
}
.seo-bg-shape-1 {
  position: absolute;
  left: 25%;
  top: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .seo-bg-shape-1 {
    display: none;
  }
}
.seo-bg-shape-2 {
  position: absolute;
  right: 2%;
  top: 40%;
  z-index: -1;
}
@media (max-width: 767px) {
  .seo-bg-shape-2 {
    display: none;
  }
}





.part-image {
    float: left;
    margin-right: 15px;
    margin-bottom: 20px; /* Pour ajouter un espacement sous l'image sur les grands écrans également */
}

.part-image img {
    width: 250px;
    height: auto; /* Conserve les proportions de l'image */
}

@media (max-width: 768px) {
    .part-image {
        float: none; /* Supprime l'effet de flottement sur mobile */
        margin-right: 0; /* Réinitialise la marge droite */
        margin-bottom: 20px; /* Ajoute un espacement sous l'image */
        text-align: center; /* Centre l'image sur mobile */
    }

    .part-image img {
        width: 100%; /* L'image prend toute la largeur sur mobile */
        height: auto; /* Conserve les proportions de l'image */
    }
}








.seo-bg-shape-3 {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .seo-bg-shape-3 {
    display: none;
  }
}

.service {
  position: relative;
  overflow: visible;
}
.service-list li {
  margin-bottom: 10px;
  color: #333;
}
.service-list li i {
  margin-right: 20px;
  color: #333;
}
.service-bg {
	position: absolute;
	right: -7%;
	top: -40%;
	z-index: -1;
	opacity: .8;
}
@media (max-width: 1200px) {
  .service-bg {
    max-width: 500px;
  }
}
@media (max-width: 991px) {
  .service-bg {
    max-width: 400px;
    top: 0;
  }
}
.service-bg-shape-1 {
  position: absolute;
  left: 0;
  top: 150px;
  z-index: -1;
}
@media (max-width: 767px) {
  .service-bg-shape-1 {
    display: none;
  }
}
.service-bg-shape-2 {
  position: absolute;
  left: 40%;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .service-bg-shape-2 {
    display: none;
  }
}

.team {
  overflow: visible;
  position: relative;
}
.team-slider {
  overflow: hidden;
  padding-bottom: 100px;
  
}
.team-slider .slick-list {
  overflow: visible;
}
.team-slider .slick-arrow {
  border: 0;
  background: transparent;
  color: #008dec;
  position: absolute;
  bottom: 0;
  z-index: 1;
  font-size: 25px;
}
.team-slider .slick-arrow.slick-disabled {
  color: #86ceff;
}
.team-slider .prevArrow {
  left: 10px;
}
.team-slider .nextArrow {
  left: 50px;
}
.team-member {
  padding: 30px 45px;
  background: #fff;
  box-shadow: 0px 23px 43px 0px rgba(172, 189, 199, 0.49);
  margin: 0 20px;
}
@media (max-width: 1200px) {
  .team-member {
    padding: 30px;
  }
}
.team-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.cygnus-bg {
	position: absolute;
	left: 0;
	bottom: -42%;
	z-index: -1;
}

.supervision-top-bg {
  position: absolute;
  left: 0;
  bottom: -10%;
  z-index: -1;
}
.team-bg-shape-1 {
  position: absolute;
  top: 100px;
  left: 20px;
  z-index: -1;
}
@media (max-width: 767px) {
  .team-bg-shape-1 {
    display: none;
  }
}
.team-bg-shape-2 {
  position: absolute;
  top: 100px;
  right: -5px;
  z-index: -1;
}
@media (max-width: 767px) {
  .team-bg-shape-2 {
    display: none;
  }
}
.team-bg-shape-3 {
  position: absolute;
  bottom: 20%;
  right: 40%;
  z-index: -1;
}
@media (max-width: 767px) {
  .team-bg-shape-3 {
    display: none;
  }
}
.team-bg-shape-4 {
	position: absolute;
	bottom: 0;
	right: 2%;
	z-index: -1;
}
@media (max-width: 767px) {
  .team-bg-shape-4 {
    display: none;
  }
}

/* pricing */
.justified-text {
            text-align: justify;
			text-rendering: optimizeLegibility;
			font-kerning: normal;
			hyphens: auto;
			    overflow-wrap: break-word;
			    word-break: break-word;
			    text-align: justify;
				widows: 2;
				orphans: 2;
        }
.justified-text p::last-word {
	    hyphens: manual; /* Empêche la césure automatique du dernier mot */
}
        .custom-list {
			text-align:left;
            color: white;
        }
        .custom-list2 {
			text-align:left;
            color: #000;
        }
		.custom-list2 li {
			border-top: 1px solid #ccc;
			padding-top: 10px;
		}
        .custom-list li, .custom-list2 li {
            display: flex;
            align-items: baseline;
            margin-bottom: 10px;
        }
        .custom-list li i, .custom-list2 li i {
            flex-shrink: 0;
        }
        .custom-list li span, .custom-list2 li span {
            margin-left: 8px;
            line-height: 1.5;
            hyphens: auto;
        }
		p.custom-text {
		            color: white;
		        }
				
		p.custom-text2 {
				            color: #000;
				        }
		
.pricing, .pricing2 {
  position: relative;
  overflow: visible;
  width: 100%;
}

.pricing-table, .pricing2-table {
	position: relative;
	            overflow: visible;
	            width: 100%;
	            padding: 30px 35px 30px;
	            transition: 0.2s ease;
	            background-size: cover;
	            background-position: center;
	            background-repeat: no-repeat;
	            background-blend-mode: overlay;
			    box-shadow: 0px 23px 43px 0px rgba(172, 189, 199, 0.49);
			    
        }

.pricing.container-fluid, .pricing2.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.pricing .container, .pricing2 .container {
  max-width: 1600px; /* Adjust the max-width as needed */
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 1200px) {
            .pricing-table {
                padding: 30px 20px;
            }
        }
        .pricing-table h2 {
            font-size: 35px;
            color: #fff;
            line-height: 0.3em;
        }
        .pricing-table h3 {
            font-size: 65px;
            font-weight: 100;
            color: #fff;
            padding-bottom: .4em;
        }
        .pricing-table p {
            color: #fff;
        }
		
		
		@media (max-width: 1200px) {
				.pricing2-table {
		                padding: 30px 20px;
		            }
		        }
		        .pricing2-table h2 {
					font-size: 35px;
					color: #8e8e8e;
					line-height: 1.2em;
					font-weight: 300;
					padding-bottom: 10px;
		        }
		        .pricing2-table h3 {
		            font-size: 65px;
		            font-weight: 100;
		            color: #000;
		            padding-bottom: .4em;
		        }
		        .pricing2-table p {
		            color: #000;
		        }

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
  }

.pricing-table:hover {
    box-shadow: 0px 23px 43px 0px rgba(172, 189, 199, 0.49);
  }

.pricing2-table:hover {
	transform: translateY(-7px);
  }

.pricing-table.table-1 {
	background-image: linear-gradient(45deg, rgb(152, 103, 249) 15%, rgb(84, 20, 182) 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 7% 100%, 0% 93%);
        }
		

.pricing-table.table-2 {
  background-image: linear-gradient(45deg, rgb(34, 76, 49) -20%, rgb(162, 175, 41) 40%);
clip-path: polygon(0 0, 93% 0, 100% 13%, 100% 100%, 0 100%);  
}


.pricing-table.table-3 {
  background-image: linear-gradient(59deg, rgb(82, 175, 221) 20%, rgb(25, 101, 153) 85%);
clip-path: polygon(0 0, 100% 0, 100% 87%, 93% 100%, 0 100%);
}

.pricing2-table.table-1, .pricing2-table.table-2, .pricing2-table.table-3 {
	background-color:#fff;
}

.topstroke1, .topstroke2, .topstroke3 {
    height: 35px;
    width: 100%;
	margin-bottom:20px;
}

.topstroke1 {
    background-image: linear-gradient(90deg, rgb(152, 103, 249) 15%, rgb(84, 20, 182) 85%);
}

.topstroke2 {
    background-image: linear-gradient(90deg, rgb(34, 76, 49) -20%, rgb(162, 175, 41) 85%);
}


.topstroke3 {
    background-image: linear-gradient(90deg, rgb(82, 175, 221) 20%, rgb(25, 101, 153) 85%);
}

.logos-trilo-home {
  max-height: 35px;
  height: 35px;
  width: auto;
  margin-bottom: 10px;
}

.logos-trilo-prod {
	display: block;
	max-height: 60px;
	height: 60px;
	width: auto;
	margin: 0 auto;
	margin-bottom: 0px;
	margin-bottom: 15px;
}

h1.prod {
	font-size: 3.5rem;
	line-height: 1.2;
	font-weight: 100;
	color: #8e8e8e;
}

.pricing-btn {
            font-size: 25px;
            font-weight: 700;
            color: #fff;
        }
        @media (max-width: 1200px) {
            .pricing-btn {
                padding: 5px;
            }
        }
        .pricing-btn:hover {
            opacity: .6;
			color:#fff;
        }
		
		.pricing2-btn {
		            font-size: 25px;
		            font-weight: 700;
		        }
		        @media (max-width: 1200px) {
		            .pricing2-btn {
		                padding: 5px;
		            }
		        }
		        .pricing2-btn:hover {
		            opacity: .6;
		        }
				
				.pricing2-btn.table1 {color:rgb(152, 103, 249);}
				.pricing2-btn.table2 {color:rgb(162, 175, 41);}
				.pricing2-btn.table3 {color:rgb(82, 175, 221);}
				
        .pricing-bg-shape-1,
        .pricing-bg-shape-2,
        .pricing-bg-shape-3 {
            position: absolute;
            z-index: -1;
        }
        .pricing-bg-shape-1 {
            left: 30%;
            top: 100px;
        }
        @media (max-width: 767px) {
            .pricing-bg-shape-1 {
                display: none;
            }
        }
        .pricing-bg-shape-2 {
            right: 10%;
            top: 110px;
        }
        @media (max-width: 767px) {
            .pricing-bg-shape-2 {
                display: none;
            }
        }
        .pricing-bg-shape-3 {
            bottom: 20%;
            left: 0;
        }
        @media (max-width: 767px) {
            .pricing-bg-shape-3 {
                display: none;
            }
        }

.newsletter {
  position: relative;
}
.newsletter-form {
  height: 85px;
  width: 100%;
  padding: 0 40px;
  border: 1px solid #d9d8fd;
  background: #fff;
  box-shadow: 0px 35px 46px 0px rgba(172, 189, 199, 0.28);
  border-radius: 5px;
}
.newsletter-form:focus {
  outline: 0;
  box-shadow: 0;
}
.newsletter-btn {
  position: absolute;
  height: 100%;
  background: #8986ff;
  top: 0;
  right: 0;
  border-radius: 0 5px 5px 0;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .newsletter-btn {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.newsletter-bg-shape {
  position: absolute;
  top: 0;
  right: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .newsletter-bg-shape {
    display: none;
  }
}

.footer {
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.footer-section {
  padding-top: 500px;
  padding-bottom: 100px;
}

.footer-menu a {
  color: #091337;
  display: block;
  padding: 15px;
  font-weight: 400;
}


.social-icon li {
  margin: 0 12px;
}
.social-icon li a {
  height: 45px;
  width: 45px;
  background: #fff;
  border-radius: 5px;
  line-height: 45px;
  display: block;
  text-align: center;
}



/** /Footer **/

.client-logo-slider {;}

.client-logo-slider img {
  transition: 0.2s ease;
}
.client-logo-slider a:hover img {
  transform: scale(1.2);
}
.logos {
  transition: transform 0.3s ease-in-out;
}
.logos:hover {
  transform: scale(1.2)!important;
}


/* service page */
.service-bg-image {
  background-size: contain;
  background-repeat: no-repeat;
background-position: 40% 450px;}

.service-bg-1 {
  position: absolute;
  left: 50px;
  top: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .service-bg-1 {
    display: none;
  }
}
.service-bg-2 {
  position: absolute;
  right: 50px;
  top: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .service-bg-2 {
    display: none;
  }
}
.service-bg-3 {
  position: absolute;
  right: 50px;
  top: 50%;
  z-index: -1;
}
@media (max-width: 767px) {
  .service-bg-3 {
    display: none;
  }
}
.service-bg-4 {
  position: absolute;
  left: 50px;
  bottom: 30%;
  z-index: -1;
}
@media (max-width: 767px) {
  .service-bg-4 {
    display: none;
  }
}
.service-bg-5 {
  position: absolute;
  left: 10%;
  bottom: 5%;
  z-index: -1;
}
@media (max-width: 767px) {
  .service-bg-5 {
    display: none;
  }
}

.about {
  position: relative;
  overflow: visible;
}
.about-video {
  position: relative;
}
.about-video .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.about-bg-1 {
  position: absolute;
  left: 30%;
  top: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-bg-1 {
    display: none;
  }
}
.about-bg-2 {
  position: absolute;
  top: 30%;
  right: 40px;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-bg-2 {
    display: none;
  }
}
.about-bg-3 {
  position: absolute;
  bottom: 20%;
  left: 30px;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-bg-3 {
    display: none;
  }
}
.about-bg-4 {
  position: absolute;
  top: 20%;
  left: 40px;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-bg-4 {
    display: none;
  }
}
.about-bg-5 {
  position: absolute;
  bottom: 10%;
  right: 40px;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-bg-5 {
    display: none;
  }
}
.about-bg-6 {
  position: absolute;
  top: 10%;
  right: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-bg-6 {
    display: none;
  }
}

.play-btn {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  color: #fff;
  line-height: 70px;
  font-size: 20px;
  text-align: center;
  background: #f706dc;
  display: inline-block;
  transition: 0.2s ease;
  box-shadow: 0px 23px 43px 0px rgba(94, 254, 198, 0.3);
}
.play-btn:hover {
  color: #fff;
  font-size: 30px;
}

.product {
  position: relative;
  overflow: visible;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.about-bg {
  position: absolute;
  left: 0;
  top: 0px;
  z-index: -1;
}

.form-control {
  height: 65px;
  width: 100%;
  background: #faf9fc;
}
.form-control:focus {
  border-color: #008dec;
  box-shadow: none;
}

textarea.form-control {
  height: 157px;
}

.contact-bg {
  background-color: #ebe3fe;
}

.round-icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 50px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}
.round-icon.green {
  background: #e0fef4;
  color: #00f7a7;
}
.round-icon.blue {
  background: #e0f1ff;
  color: #008cff;
}
.round-icon.orange {
  background: #fff1e0;
  color: #ff8b00;
}

.contact {
  position: relative;
}
.contact-bg-1 {
  position: absolute;
  left: 0;
  top: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .contact-bg-1 {
    display: none;
  }
}
.contact-bg-2 {
  position: absolute;
  top: 20%;
  right: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .contact-bg-2 {
    display: none;
  }
}
.contact-bg-3 {
  position: absolute;
  top: 10%;
  left: 40%;
  z-index: -1;
}
@media (max-width: 767px) {
  .contact-bg-3 {
    display: none;
  }
}
.contact-bg-4 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .contact-bg-4 {
    display: none;
  }
}
.contact-bg-5 {
  position: absolute;
  bottom: 10%;
  right: 10%;
  z-index: -1;
}
@media (max-width: 767px) {
  .contact-bg-5 {
    display: none;
  }
}
.fullwidth-row-dektec {
	align-items: center;
	background-size: cover;
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('../images/dektec/broadcasting-solutions.jpg');
	display: flex;
	height: 500px;
	justify-content: center;
	margin-top: 105px;
	padding: 50px 0;
	width: 100%;
}

.slider-text-container-dektec {
  position: relative;
  bottom: -190px;
  right: 0;
  background: #fff;
  border-radius: 0;
  padding: 20px 40px;
  text-align: center;
  z-index: 3;
  width: 50%;
  clip-path: polygon(10% 0%, 0% 100%, 0% 100%, 100% 100%, 100% 0%);
  min-height: 150px;
  max-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fullwidth-row-supervision {
  width: 100%;
  height: 700px;
  background-image: url('../images/hero-area/WINDSURF.jpg');   
background-size: cover;
background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 105px;
}



.fullwidth-row-supervision::before {
  background-color: rgb(240, 14, 152);
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  mix-blend-mode: darken;
  position: absolute;
  top: 0;
  left: 0;
}

.fullwidth-row-supervision::after {
	background-color: rgba(82, 0, 128, 0.65);
	  content: '';
	  display: block;
	  width: 100%;
	  height: 100%;
	  mix-blend-mode: lighten;
	  position: absolute;
	  top: 0;
	  left: 0;
	  filter: contrast(200%);
	}
	
	.fullwidth-row-diffusion {
	  width: 100%;
	  height: 700px;
	  background-image: url('../images/hero-area/VOLLEY-WEB.jpg');   
	background-size: cover;
	background-position: center;
	  background-repeat: no-repeat;
	  position: relative;
	  margin-top: 105px;
	}
	
	.fullwidth-row-diffusion::before {
  background-color: rgba(0, 255, 243, 0.66);
    	  content: '';
	  display: block;
	  width: 100%;
	  height: 100%;
	  mix-blend-mode: darken;
	  position: absolute;
	  top: 0;
	  left: 0;
	}

	.fullwidth-row-diffusion::after {
  background-color: rgb(45, 2, 253);
    		  content: '';
		  display: block;
		  width: 100%;
		  height: 100%;
		  mix-blend-mode: lighten;
		  position: absolute;
		  top: 0;
		  left: 0;
		  filter: contrast(200%);
		}

		.fullwidth-row-production {
		  width: 100%;
		  height: 700px;
		  background-image: url('../images/hero-area/PARAPENTE.jpg');   
		background-size: cover;
		background-position: center;
		  background-repeat: no-repeat;
		  position: relative;
		  margin-top: 105px;
		}
	
		.fullwidth-row-production::before {
background-color: rgb(5, 251, 135);
    		  content: '';
		  display: block;
		  width: 100%;
		  height: 100%;
		  mix-blend-mode: darken;
		  position: absolute;
		  top: 0;
		  left: 0;
		}

		.fullwidth-row-production::after {
background-color: rgb(4, 66, 111);
    			  content: '';
			  display: block;
			  width: 100%;
			  height: 100%;
			  mix-blend-mode: lighten;
			  position: absolute;
			  top: 0;
			  left: 0;
			  filter: contrast(200%);
			}
			
			.fullwidth-row-about {
			  width: 100%;
			  height: 700px;
			  background-image: url('../images/about/trilogic.jpg');   
			background-size: cover;
			background-position: center;
			  background-repeat: no-repeat;
			  position: relative;
			  margin-top: 105px;
			}



			.fullwidth-row-about::before {
			  background-color: rgb(255, 22, 164);
			  content: '';
			  display: block;
			  width: 100%;
			  height: 100%;
			  mix-blend-mode: darken;
			  position: absolute;
			  top: 0;
			  left: 0;
			}

			.fullwidth-row-about::after {
			  background-color: rgba(82, 0, 128, 0.65);
			  content: '';
			  display: block;
			  width: 100%;
			  height: 100%;
			  mix-blend-mode: lighten;
			  position: absolute;
			  top: 0;
			  left: 0;
			  filter: contrast(200%);
			}

.polygon-blanc-supervision, .polygon-blanc-diffusion, .polygon-blanc-production, .polygon-blanc-about{
	position: absolute;
	  bottom: 0;
	  right: 0;
	  background: #fff;
	  z-index: 3;
	  width: 40%;
	  clip-path: polygon(10% 0%, 0% 100%, 0% 100%, 100% 100%, 100% 0%);
	  min-height: 130px;
	  max-height: 130px;
	  
}

.trame {
  width: 100%;
  height: 700px; 
  position: absolute;
  z-index: 3;
  top: 105px; 
  background:
     linear-gradient(to left,transparent 50%, rgba(0,0,0,0.3) 50%),
     linear-gradient(to bottom,transparent 50%, rgba(0,0,0,0.3)50%);
	 background-size:3px 6px, 2px 2px, cover
}

.trame-dektec {
  width: 100%;
  height: 500px; 
  position: absolute;
  z-index: 3; 
  top: 105px;
  background:
     linear-gradient(to left,transparent 50%, rgba(0,0,0,0.3) 50%),
     linear-gradient(to bottom,transparent 50%, rgba(0,0,0,0.3)50%);
	 background-size:3px 6px, 2px 2px, cover
}

.dektec, .lead-dektec {
  color: #fff;
  z-index: 8;
  position: relative;
}
.ti-exchange-vertical::before {
  padding-right: 5px;
  color:#994cda!important;
}

/* Product list */
.product-img .product-list {
    width: 120px;
    height: 120px;
    object-fit: cover;
}
.product-list-img-thumbnail {
  border: none!important;
  max-width: 100%;
  height: auto;
  padding: .25rem;
}
.product-row {
    transition: background-color 0.3s;
}
.product-row h3 {font-size: 22px;}
.product-row:hover {
  background-color: #ebe3fe;
}
.page-description {
    border-radius: 0.3rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.list-group {
	box-shadow: 0px 23px 43px 0px rgba(172, 189, 199, 0.49);
}

.list-group-item:last-child {
  border-bottom-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
}
.list-group-item:first-child {
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}



.align-with-icon {
	text-indent: -40px;
	padding-left: 40px;
}

.align-with-icon i.ti-star {
    color: #764cd3; 
}

.align-with-icon i {
    margin-right: 5px; /* Ajuste l'espace entre le pictogramme et le texte */
}

@media (max-width: 767px) { /* Pour les écrans de taille mobile */
    .product-row .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 15px; /* Ajoute une marge en haut pour espacer le bouton du texte */
    }
    
    .product-row .text-md-end {
        text-align: center; /* Centre le bouton pour les petits écrans */
    }
	.product-row .col-md-2 {
	        text-align: center; /* Centre l'image */
	    }
    
	    .product-row .product-img {
	        width: 60%; /* Définit la largeur de l'image à 60% */
	        margin: 0 auto; /* Centre l'image horizontalement */
	    }
	}


/* Schema.org FAQ styles */


.ac-container {
    width: 100%;
    margin: 10px auto 30px auto;
}

.ac-container label {
  padding: 15px 25px;
  position: relative;
  z-index: 20;
  display: block;
  height: auto;
  cursor: pointer;
  box-shadow: 0px 0px 0px 1px rgba(155, 155, 155, 0.3), 1px 0px 0px 0px rgba(255, 255, 255, 0.9) inset, 0px 2px 2px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-size: 1.2em;
}

.ac-container label:hover {
  background: #ebe3fe;
}

.ac-container input:checked + label, .ac-container input:checked + label:hover {
  background: #ebe3fe;
  color: #57086d;
  text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.6);
  box-shadow: 0px 0px 0px 1px rgba(155, 155, 155, 0.3), 0px 2px 2px rgba(0, 0, 0, 0.1);
}

.ac-container label:after {
    content: '\e61a'; /* Themify icon code for closed arrow */
    font-family: 'themify';
    font-size: 18px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.ac-container input:checked + label:after {
    content: '\e62a'; /* Themify icon code for ti-arrow-up */
    transform: translateY(-50%) rotate(180deg);
}

.ac-container input {
    display: none;
}

.ac-container article {
    background: rgba(255, 255, 255, 0.5);
    margin-top: -1px;
    overflow: hidden;
    height: 0px;
    position: relative;
    z-index: 10;
    transition: height 0.3s ease-in-out, box-shadow 0.6s linear;
}

.ac-container article div {
    padding: 20px;
}

.ac-container input:checked ~ article.ac-small {
    height: auto;
}

.ac-container input:checked ~ article.ac-medium {
    height: auto;
}

.ac-container input:checked ~ article.ac-large {
    height: 230px;
}


.faq-section {
    border-radius: 0.3rem;
padding: 2rem 0;
    margin-top: 100px;
}

.faq-section h2 {
    margin-bottom: 20px;
}

[itemscope][itemtype="https://schema.org/FAQPage"] {
    display: block;
}

[itemprop="mainEntity"] {
    display: block;
	padding-bottom:7px;
}

[itemprop="name"] {
    display: inline;
}

[itemprop="acceptedAnswer"] {
    display: block;
}

[itemprop="text"] {
    display: block;
}

/* fin faqs - Accordions */


.io-icon {
    color: #0056b3;
    margin-right: 0.5rem;
	opacity: .7!important;
}

.cta-section {
    width: auto;
    background-color: #994cda;
    border-radius: .5rem;
    padding: 2rem;
	margin: 0 auto;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0px 23px 43px 0px rgba(172, 189, 199, 0.49);
}

.cta-icon {
    font-size: 6rem;
    color: #c995f4;
}

.cta-section h2 {
    color: #fff;
    padding-top: 3rem;
    font-weight: 500;
}

.cta-section p {
    color: #fff;
}

.cta-section .row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch; /* Assure que toutes les colonnes ont la même hauteur */
}

.cta-section .col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Assure un alignement uniforme du contenu */
    padding: 0 15px;
    max-width: 50%;
    width: 100%;
}

.cta-section .d-flex {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Le contenu est poussé vers le bas */
    width: 100%;
}

.cta-section .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    text-align: center;
    white-space: nowrap;
    width: auto;
    max-width: 100%;
}

@media (max-width: 767px) {
    .cta-section h2 {
        padding-top: 1.5rem;
    }

    .cta-section .row {
        flex-direction: column;
    }

    .cta-section .col-md-6 {
        max-width: 100%;
        padding: 0 15px;
        margin-bottom: 1rem;
    }

    .cta-section .btn {
        width: 100%;
    }
}


/* cards */
.card-border {
	border: 5px solid #d98c5e;
}

.list-group-product-specs  {color:#444!important;
}

.card {
  height: 100%;
  transition: transform 0.3s;
    background: #fff;
    box-shadow: 0px 23px 43px 0px rgba(172, 189, 199, 0.49);
  
}


.card-container .card {
  height: 100%;
  transition: transform 0.3s;
  background: #fff;
  box-shadow: 0px 23px 43px 0px rgba(172, 189, 199, 0.49);
}

.card-container .card a {cursor:pointer;}

.card-container .card:hover {
  transform: translateY(-7px);
}

.card-container .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* recall */
/* Container positioning */
.custom-pos-rel {
    position: relative;
}

/* Modal trigger styles */
.custom-modal-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-image: linear-gradient(25deg, rgb(87, 182, 250) 0%, rgb(227, 69, 255) 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    background-size: 150% 150%;
    background-position: left;
    transition: background-position 1s ease-out, color 1s ease-out;
    box-shadow: 0 0 0 0 rgba(137, 103, 252, .7);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: battement 1.4s infinite cubic-bezier(.66, 0, 0, 1);
    z-index: 1000;
}

/* Pour la couleur blanche et la taille du SVG */
.custom-svg-icon {
    fill: white; /* Rend le SVG blanc */
    width: 30px; /* Taille du SVG */
    height: 30px; /* Taille du SVG */
}


.custom-modal-trigger:hover {
    background-position: right;
    color: #fff;
}

@keyframes battement {
    to {
        box-shadow: 0 0 0 50px rgba(137, 103, 252, 0);
    }
}

/* Modal styles */
.custom-modal {
    position: fixed;
    z-index: 2000; /* Augmentation du z-index pour s'assurer que la modale est au-dessus du menu */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 20px;
    transition: opacity 0.3s, visibility 0.3s;
}

.custom-modal h2 {
    font-size: 27px;
    padding-bottom: 20px;
}

.custom-modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: scale(0.7);
    transition: transform 0.3s;
    overflow-y: auto;
    position: relative; /* Pour que les éléments à l'intérieur soient bien positionnés */
}

/* Ajout d'un padding-top pour s'assurer que le titre et le bouton de fermeture ne sont pas masqués */
@media (max-width: 768px) {
    .custom-modal {
        padding-top: 40px; /* Ajuste selon la hauteur du menu pour que le titre ne soit pas masqué */
    }
}

/* Pour activer la modale avec un effet */
.custom-modal.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}


/* Toggle and modal visibility */
#custom-modal-toggle {
    display: none;
}

#custom-modal-toggle:checked ~ .custom-modal {
    opacity: 1;
    visibility: visible;
}

#custom-modal-toggle:checked ~ .custom-modal .custom-modal-content {
    transform: scale(1);
}

/* Close button styles */
.custom-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.custom-close:hover,
.custom-close:focus {
    color: #000;
}

/* Form group styles */
.custom-form-group {
    margin-bottom: 15px;
}

.custom-form-group label {
    display: block;
    margin-bottom: 5px;
}

.custom-form-group input,
.custom-form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Button styles */
.custom-button {
	background-color: #e5e0f9;
	color: #8364f0;
	border: 1px solid #8364f0;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
}

.custom-button:hover {
    background-color: #8364f0;
    color: #fff;
}

/* Contact type selector styles */
.custom-contact-type-selector {
    margin-bottom: 15px;
}

#custom-call:checked ~ #custom-callForm,
#custom-message:checked ~ #custom-messageForm {
    display: block;
}

#custom-callForm,
#custom-messageForm {
    display: none;
}

#custom-call,
#custom-message {
    display: none;
}

#custom-call:checked ~ .custom-contact-type-selector label[for="custom-call"],
#custom-message:checked ~ .custom-contact-type-selector label[for="custom-message"] {
	color: #8364f0;
	border: 1px solid #8364f0;
    cursor: pointer;
}

.custom-contact-type-selector label {
    display: inline-block;
	color: #8364f0;
	border: 1px solid #8364f0;
    cursor: pointer;
    padding: 10px 15px;
    margin-right: 10px;
    border-radius: 5px;
}

.custom-contact-type-selector label:hover {
	color: #fff!important;
	border: 1px solid #8364f0;
	background-color: #8364f0;
    
}

/* recall */

/* usecase */
.usecase-section {
      padding: 60px 0;
    }
   
    .usecase-section p {
      margin-bottom: 40px;
    }
    
    .btn-primary {
      background-color: #2980b9;
      border: none;
    }
    .btn-primary:hover {
      background-color: #1f6391;
    }
    .btn-danger {
		background-image: linear-gradient(25deg, rgb(250, 194, 87) 0%, rgb(255, 69, 69) 100%);
		color: #fff;
		border: none;
		cursor: pointer;
		background-size: 150% 150%;
		background-position: left;
		transition: background-position 1s ease-out, color 1s ease-out;
    }
    .btn-danger:hover {
background-position: right;    }

	.see-all-btn {
		background-image: linear-gradient(25deg, rgb(250, 194, 87) 0%, rgb(255, 69, 69) 100%);
		color: #fff;
		border: none;
		cursor: pointer;
		background-size: 150% 150%;
		background-position: left;
		transition: background-position 1s ease-out, color 1s ease-out;
		padding: 10px 20px;
		border-radius: 7px;
    }
    .see-all-btn:hover {
		background-position: right; 
	color:#fff;   }
    }

/* product page */
	.product-page h1 {font-size:1.9em;}
	.product-page h2 {font-size:1.4em;}
	.product-page h5 {font-size:1.1em;}
	
	.product-page h6 {font-size:.9em;}
	
    .product-page .product-image {
      max-height: 400px;
      object-fit: contain;
    }
    .product-page .related-product-image {
      height: 200px;
      object-fit: contain;
    }
    .product-page .card-hover:hover {
      transform: scale(1.05);
      transition: transform 0.3s ease-in-out;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .product-page .accessories-list {
      list-style-type: none;
      padding-left: 0;
    }
    .product-page .accessories-list li {
      margin-bottom: 15px;
    }
    .product-page .section-title {
      color: #2c3e50;
border-bottom: 2px solid #baa9f4;
      padding-bottom: 10px;
      margin-bottom: 20px;
    }
    .product-page .feature-list, .trilo .feature-list, .cadusage .feature-list {
      list-style-type: none;
      padding-left: 0;
    }
    .product-page .feature-list li, .trilo .feature-list li, .cadusage .feature-list li {
      margin-bottom: 10px;
      padding-left: 25px;
      position: relative;
    }
    .product-page .feature-list li:before, .trilo .feature-list li:before, .cadusage .feature-list li:before {
      content: '✓';
      color: #2ecc71;
      position: absolute;
      left: 0;
      top: 0;
    }
	.product-page .btn-outline-primary {
	  color: #8364f0;
	  border: 1px solid #8364f0;
	  padding: 10px 40px;
	}
    .product-page .btn-primary:hover {
      background-color: #8364f0;
      border-color: #8364f0;
    }
    
    .product-page .btn-outline-primary:hover {
      background-color: #8364f0;
      color: white;
    }
    .product-page .card {
      border: none;
box-shadow: 0px 7px 21px 0px rgba(172, 189, 199, 0.49);
      height: 100%;
      display: flex;
      flex-direction: column;
    }
	
	/* Marges pour les cartes sur mobile et tablette */
	@media (max-width: 991px) {
	  .product-page .card {
	    margin: 10px; /* Ajoute une marge de 10px autour de chaque carte */
	  }
	}

	@media (max-width: 767px) {
	  .product-page .card {
	    margin: 15px; /* Augmente la marge sur les petits écrans */
	  }
	}

	@media (max-width: 575px) {
	  .product-page .card {
	    margin: 20px; /* Encore plus d'espace sur les plus petits écrans */
	  }
	}
	/* Espacements verticaux entre les cartes */
	.product-page .mb-4 {
	  margin-bottom: 30px; /* Augmente l'espacement vertical entre les cartes */
	}
	
    .product-page .card-body {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .product-page .card-text {
      flex-grow: 1;
    }
    .product-page .product-carousel {
      position: relative;
    }
    .product-page .product-carousel .row {
      transition: transform 0.5s ease;
    }
    .product-page .carousel-controls {
      text-align: right;
      margin-bottom: 10px;
    }
    .product-page .carousel-arrow {
      display: inline-block;
      font-size: 1.5rem;
      color: #8364f0;
      cursor: pointer;
      margin-left: 10px;
    }
    .product-page .carousel-arrow:hover {
      color: #2980b9;
    }
    .product-page .hidden {
      display: none;
    }
    .product-page .product-details {
      display: flex;
    }
    .product-page .functionalities {
      flex-grow: 1;
      padding-right: 20px;
    }
    .product-page .accessories {
      width: 250px;
    }

    /* Responsive styles */
    @media (max-width: 991px) {
      .product-page .product-details {
        flex-direction: column;
      }
      .product-page .accessories {
        width: 100%;
        margin-top: 20px;
      }
      .product-page .functionalities {
        padding-right: 0;
      }
    }

    @media (max-width: 767px) {
      .product-page .product-image {
        max-height: 300px;
      }
      .product-page .related-product-image {
        height: 150px;
      }
      .product-page .carousel-controls {
        text-align: center;
      }
      .product-page .col-md-3 {
        width: 50%;
      }
    }

    @media (max-width: 575px) {
      .product-page .product-image {
        max-height: 250px;
      }
      .product-page .col-md-3 {
        width: 100%;
      }
      .product-page .hidden {
        display: block;
      }
      .product-page .carousel-controls {
        display: none;
      }
    }

/* Lyrae */
	
	.bg-shadow {
		box-shadow: 0px 23px 43px 0px rgba(172, 189, 199, 0.49);
	}
	.download-buttons .btn {
		font-size:.7em;
		color: #8364f0;
		border: 1px solid #8364f0;
		padding: 7px 10px;
		margin-left:10px;
	}
	.download-buttons .btn:hover {
		color: #fff;
		background-color:#8364f0
	}

	@media (min-width: 768px) {
	    .download-buttons {
	        flex-wrap: nowrap;
	    }
	    .download-buttons button {
	        margin-right: 5px;
	    }
	}

	@media (max-width: 767px) {
	    .download-buttons {
	        flex-direction: column;
			margin-left:0;
	    }
	    .download-buttons button {
	        margin-bottom: 10px;
			margin-left:0;
	    }
	}
	
	
	@media (max-width: 576px) {
	    .download-buttons button {
	        width: 100%;
	        margin-bottom: 10px;
	    }
	}

	/* Styles spécifiques pour les onglets avec la classe custom-tabs */
	.sticky-tabs-wrapper {
	  position: relative; /* Conteneur relatif pour gérer le dégradé */
	}

	.sticky-tabs-wrapper::after {
	  content: '';
	  position: absolute;
	  left: 0;
	  right: 0;
	  bottom: -80px;
	  height: 80px; /* La hauteur du dégradé */
	  background: linear-gradient(to bottom, white, transparent);
	  pointer-events: none; /* Empêche le ::after d'interférer avec l'interaction de l'utilisateur */
	  z-index: 999; /* S'assure que le dégradé est visible par-dessus les autres éléments */
	}

	.sticky-tabs {
	  position: sticky;
	  top: 100px;
	  background-color: white;
	  z-index: 1000;
	  width: 100%;
	  border-bottom: 1px solid #fff;
	  padding-top: 0;
	}
	
    @media (max-width: 752px) {
   .sticky-tabs {
     display: none;
   }}

	        .custom-tabs {
	            list-style-type: none;
	            padding-left: 0;
	            display: flex;
	            justify-content: flex-start;
	            border-bottom: 1px solid #8364f0;
	        }

	        .custom-tabs .nav-item {
	            margin-right: 10px;
				padding: 0 10px;
				padding-top:20px;
	        }

	        .custom-tabs .nav-link {
	            text-decoration: none;
	            padding: 10px 15px;
	            display: block;
	            background-color: #f3f3fb;
	            border: 1px solid #c5b7f5;
	            border-bottom: none;
	            color: #ab97f1;
	            border-radius: 0.25rem 0.25rem 0 0;
	            cursor: pointer;
	        }

	        .custom-tabs .nav-link.active {
	            background-color: white;
	            color: #8364f0;
	            border-color: #8364f0;
	            border-bottom: 2px solid white;
	            margin-bottom: -2px;
	            z-index: 2;
	        }

	        .content-sections {
	            padding-top: 20px;
	        }

	        .content-sections > div {
	            padding-bottom: 140px;
	        }
	
	h2.display-trilo  {
	  font-size: 3.2rem;
	  font-weight: 300;
	  line-height: 1.2;
	}
	h3.display-trilo  {
	  font-size: 1.9rem;
	  line-height: 1.2;
	}
	h4.display-trilo  {
	  font-size: 1.5rem;
	  line-height: 1.2;
	}
	/* Lyrae screens */
	.images-onglet-screens {
	    position: relative;
	    max-width: 100%;
	    margin: 0 auto;
	}

/* Styles spécifiques pour la section screenshots */
	.screenshots-section .custom-slick-btn {
	    position: absolute;
	    top: 50%;
	    transform: translateY(-50%);
	    z-index: 10;
	    border-radius: 50%; /* Pour un bouton parfaitement circulaire */
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    width: 40px; /* Largeur égale à la hauteur pour un cercle parfait */
	    height: 40px; /* Hauteur égale à la largeur pour un cercle parfait */
	    line-height: 40px; /* Ligne de hauteur égale à la hauteur pour centrer le contenu */
	    cursor: pointer;
	    background-color: white; /* Couleur de fond */
	    border: 2px solid #8364f0; /* Couleur du contour */
	    color: #8364f0; /* Couleur de l'icône */
	    padding: 0; /* Pas de padding pour éviter les déformations */
	    transition: all 0.3s ease;
	}

	/* Position du bouton précédent */
	.screenshots-section .slick-prev.custom-slick-btn {
	    left: 10px; /* Ajustez selon vos besoins */
	}

	/* Position du bouton suivant */
	.screenshots-section .slick-next.custom-slick-btn {
	    right: 10px; /* Ajustez selon vos besoins */
	}

	/* Au survol : Changement de couleurs */
	.screenshots-section .custom-slick-btn:hover {
	    background-color: #8364f0; /* Fond violet au survol */
	    border-color: #8364f0; /* Contour violet au survol */
	    color: white; /* Couleur de l'icône blanche au survol */
	}

	.screenshots-section .custom-slick-btn i {
	    font-size: 16px; /* Taille des icônes */
	}

	.screenshots-section .custom-slick-btn:hover i {
	    color: white; /* Changer la couleur de l'icône au survol */
	}
	
	
	
	
	
	
    .images-onglet-screens .screenshot-item {
        text-align: center;
        margin-bottom: 30px;
    }

    .images-onglet-screens img {
        max-height: 400px;
		margin:0 auto;
        margin-bottom: 15px;
    }

    .images-onglet-screens .screenshot-caption p {
        font-size: 14px;
        color: #555;
    }
	
	
	
	
	/* Lyrae Refs */
	.refs-logo-align {
	            max-height: 120px;
	            max-width: 220px;
	            display: block;
	            margin-left: auto;
	            margin-right: auto;
	        }

	       
/* cas d'usage */
	  	  .cadusage h2 {
	  		  font-size:35px;
	  		  padding-bottom:10px;
	  	  }
	        .case-nav {
	            position: fixed;
	            top: 50%;
	            transform: translateY(-50%);
	            z-index: 1000;
	            transition: all 0.3s ease;
	        }

	        .case-nav-left {
	            left: 20px;
	        }

	        .case-nav-right {
	            right: 20px;
	        }

	        .case-nav-button {
	            display: flex;
	            flex-direction: column;
	            align-items: center;
	            text-decoration: none;
	            color: #7241fc;
	            transition: all 0.3s ease;
	        }

	        .case-nav-button:hover {
	  		  color: #333;
	  		  transform: scale(1.1);
	        }

	  	  .case-nav-icon {
	  		  background-color: #fff;
	  	    border-radius: 50%;
	  	    width: 70px;
	  	    height: 70px;
	  	    display: flex;
	  	    justify-content: center;
	  	    align-items: center;
	  	    font-size: 28px;
	  	    margin-bottom: 12px;
	  	    transition: all 0.3s ease;
	  	    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	  	    border: 1px solid #7241fc;
	  	  }

	        .case-nav-button:hover .case-nav-icon {
	            background-color: #7241fc;
	            color: #fff;
	            transform: scale(1.1);
	        }

	        .case-nav-text {
	  		  color:#333;
	            text-align: center;
	            font-size: 14px;
	            font-weight: 500;
	            line-height: 1.4;
	            background-color: rgba(255, 255, 255, 0.9);
	            padding: 10px;
	            border-radius: 5px;
	        }

	        .case-number {
	            font-size: 16px;
	            font-weight: 700;
	            margin-bottom: 5px;
	        }

	        .case-title {
	            max-width: 200px;
	            overflow: hidden;
	            text-overflow: ellipsis;
	            display: -webkit-box;
	            -webkit-line-clamp: 3;
	            -webkit-box-orient: vertical;
	        }

	        section.cadusage {
	            background-color: #fff;
				border: 1px solid #e3dbfa;
	            border-radius: 10px;
	            padding: 2.5rem;
	            margin-bottom: 2.5rem;
	  	    box-shadow: 0px 15px 25px 0px rgba(172, 189, 199, 0.49);
	            transition: all 0.3s ease;
	        }

	        section.cadusage:hover {
	  	    box-shadow: 0px 23px 43px 0px rgba(172, 189, 199, 0.69);
	            transform: translateY(-5px);
	        }
	  
			
		  
		  .logos-trilo-cadusage {
			  margin: 0 auto 40px -10px;
		  }
		  
		
	        .cadusage .img-fluid {
	            border-radius: 8px;
	            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	            transition: transform 0.3s ease;
	            cursor: pointer;
	        }

	        .cadusage .img-fluid:hover {
	            transform: scale(1.05);
	        }
			
  		  .logos-client-cadusage {
  			  max-height: 35px; /* hauteur en fonction taille du titre Client */
  			      height: auto;
  				  box-shadow:none!important;
  		  }
		  
  		  .logos-solution-cadusage {
  			  max-height: 40px; /* hauteur en fonction taille du titre solution */
  			      height: auto;
  				  box-shadow:none!important;
  		  }

	        .cadusage svg {
	            max-width: 100%;
	            height: auto;
				box-shadow:none!important;
	        }

	        @keyframes fadeIn {
	            from { opacity: 0; transform: translateY(20px); }
	            to { opacity: 1; transform: translateY(0); }
	        }

	        .fade-in {
	            animation: fadeIn 1s ease-out;
	        }

	        .cadusage p {
	            text-align: justify;
	            margin-bottom: 1.5rem;
	        }

	        .intro {
	            font-size: 1.1rem;
	            line-height: 1.8;
	            margin-bottom: 2.5rem;
	        }

	        .equal-height-cards {
	            display: flex;
	            flex-wrap: wrap;
	        }

	        .equal-height-cards > div {
	            display: flex;
	            flex-direction: column;
	        }

	        .equal-height-cards section.cadusage {
	            flex-grow: 1;
	        }

	  	  .case-indicator {
	  	    position: fixed;
	  	    top: 104px;
	  	    left: 50%;
	  	    transform: translateX(-50%);
	  	    background-color: #7241fc;
	  	    color: white;
	  	    padding: 10px 70px;
	  	    border-radius: 0 0 20px 20px;
	  	    font-weight: 400;
	  	    z-index: 1500;
	  	    box-shadow: 0px 23px 43px 0px rgba(172, 189, 199, 0.49);
	  	  }

	        .cadusage .slick-prev,
	        .cadusage .slick-next {
	            z-index: 1;
	            width: 40px;
	            height: 40px;
	        }

	        .cadusage .slick-prev {
	            left: -50px;
	        }

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

	        .cadusage .slick-prev:before,
	        .cadusage .slick-next:before {
	            font-family: 'themify';
	            font-size: 18px;
	            line-height: 1;
	            opacity: 1;
	            color: #7241fc;
				border: 1px solid #7241fc;
				border-radius: 50%;
				padding: 10px;
				background-color: #fff;
	        }


			
	        .cadusage .slick-prev:before {
	            content: "\e64a";
	        }

	        .cadusage .slick-next:before {
	            content: "\e649";
	        }

	        .cadusage .modal-content {
	            background-color: transparent;
	            border: none;
	        }

	        .cadusage .modal-body {
	            padding: 0;
	        }

	        .cadusage .modal-body img {
	            max-width: 100%;
	            height: auto;
	        }

	        @media (max-width: 867px) {
				.cadusage h1 {
					font-size: 2.2em;
				}
	            .case-nav {
	                position: static;
	                transform: none;
	                margin-top: 2rem;
	            }

	            .case-nav-left, .case-nav-right {
	                left: auto;
	                right: auto;
	            }

	            .case-nav-button {
	                flex-direction: row;
	                justify-content: center;
	                margin-bottom: 1rem;
	            }

	            .case-nav-icon {
	                margin-bottom: 0;
	                margin-right: 1rem;
	            }

	            .case-nav-text {
	                text-align: left;
	            }

	            .equal-height-cards {
	                display: block;
	            }

	            .equal-height-cards > div {
	                margin-bottom: 1.5rem;
	            }

	            .case-indicator {
	                top: 86px;
					width: 80%;
					text-align: center;
	            }

	            .cadusage .slick-prev {
	                left: 10px;
	            }

	            .cadusage .slick-next {
	                right: 10px;
	            }
	        }
			
			.quote-container {
			    position: relative;
			    padding: 20px;
			    background-color: #f9f9f9; /* Fond léger pour faire ressortir la citation */
			    border-radius: 5px; /* Bords arrondis pour un style plus doux */
			    margin-bottom: 20px; /* Espacement inférieur */
			}

			.quote-text {
			    font-size: 2.2rem; /* Taille de la police plus grande pour la citation */
			    font-weight: 300; /* Font-weight léger */
			    color: #333; /* Couleur du texte */
			    position: relative;
			    z-index: 1; /* Assurer que le texte est au-dessus des guillemets */
			    margin: 0;
				padding: 28px 20px;
				text-indent: 40px;
			}
			
			@media (max-width: 768px) {
			  .quote-text {
			    font-size: 1.8rem; /* Ajustez cette valeur selon vos besoins */
			  }
			}
			
			.text-left {
				text-align:left!important;
			}

			.quote-author {
			    text-align: right!important; /* Alignement à droite pour la signature */
			    font-size: 1rem; /* Taille plus petite pour l'auteur */
			    font-weight: 400; /* Font-weight normal pour l'auteur */
			    color: #666; /* Couleur grise pour l'auteur */
			    margin-top: 10px; /* Espace au-dessus de l'auteur */
				padding-right:24px;
			}

			.quote-container::before {
				content: '“';
				font-family: Georgia, serif;
				font-size: 26rem;
				color: #8986ff;
				position: absolute;
				top: 35%;
				left: -30px;
				z-index: 0;
				opacity: .15;
			}

			
			
			.cadusage.solution {
			    position: relative;
			    background-color: #fff;
			    border: 1px solid #e3dbfa;
			    border-radius: 10px;
			    padding: 2.5rem;
			    margin-bottom: 2.5rem;
			    box-shadow: 0px 15px 25px 0px rgba(172, 189, 199, 0.49);
			    transition: all 0.3s ease;
			}

			.cadusage.solution::after {
				content: "";
				position: absolute;
				bottom: 0;
				left: 17%;
				transform: translateX(-50%);
				width: 0;
				height: 0;
				border-left: 40px solid transparent;
				border-right: 40px solid transparent;
				border-bottom: 50px solid #f0ad4e;
			}

			.cadusage.solution:hover {
			    box-shadow: 0px 23px 43px 0px rgba(172, 189, 199, 0.69);
			    transform: translateY(-5px);
			}
			
			
			.usage-block {
				background-color: #ffffff;
				padding: 15px 50px;
				font-size: 1.3rem;
				color: #777;
				border-radius: 5px;
				box-shadow: 0px -12px 20px 0px rgba(172, 189, 199, 0.49);
				text-align: center;
				width: fit-content;
				margin: 20px auto;
				text-transform: uppercase;
				font-weight: 500;
				border: 1px solid #e3dbfa;
				border-bottom: none;
			}
			
			/* cas d'usage animation des points */
			
/* Positionnement horizontal pour les points entre "Client" et "Besoin" */
.dots-line.horizontal {
    display: flex;
    flex-direction: row; /* Assure que les points s'alignent en ligne */
    justify-content: center;
    align-items: center;
    width: 100%; /* Prend toute la largeur du conteneur parent */
    margin-top: -20px; /* Ajuste la position verticale pour centrer */
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.dots-line.horizontal .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #7241fc;
    opacity: 0.2;
    animation: fade 1.5s infinite alternate;
}

.dots-line.horizontal .dot:nth-child(2) {
    animation-delay: 0.5s;
}

.dots-line.horizontal .dot:nth-child(3) {
    animation-delay: 1s;
}

/* Animation */
@keyframes fade {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
}

/* Points verticaux entre "Besoin" et "Solution" */
.dots-line.vertical {
	display: flex;
	flex-direction: column;
	margin-top: -85px;
	padding-left: 75% !important;
}

.dots-line.vertical .dot {
    width: 10px;
    height: 10px;
    margin: 5px 0;
    border-radius: 50%;
    background-color: #7241fc;
    opacity: 0.2;
    animation: fade 1.5s infinite alternate;
}

.dots-line.vertical .dot:nth-child(2) {
    animation-delay: 0.5s;
}

.dots-line.vertical .dot:nth-child(3) {
    animation-delay: 1s;
}


@media (max-width: 768px) {
	.dots-line.horizontal, .dots-line.vertical { display:none;
	        
	    }
	}
    

			
			/* fin dotlines */
			
			/* signature make it simple */
			.content-footer {
			    width: 100%;
			    padding: 70px 0; /* Optionnel : Padding autour de la section */
			}

			.signature-container {
			    max-width: 75%; /* Largeur ajustée */
			    padding-right: 20px; /* Padding à droite */
			    text-align: right; /* Aligner le contenu à droite */
			    display: flex;
			    align-items: center;
			    justify-content: flex-end; /* Alignement à droite */
			    white-space: nowrap; /* Empêche le texte de se diviser sur plusieurs lignes */
			    margin-left: auto; /* Assurer l'alignement à droite */
			}

			.signature-text {
			    font-size: 2rem; /* Taille du texte */
			    margin: 0;
			    line-height: 1.2; /* Pour ajuster la hauteur de ligne */
			    flex-shrink: 0; /* Empêche le texte de rétrécir */
			}

			.signature-logo {
			    flex-shrink: 0; /* Empêche le logo de rétrécir */
			    max-height: 2.5em; /* Définir une hauteur maximale pour le logo */
			    width: auto; /* Conserve les proportions du logo */
			    margin-left: 10px; /* Espace entre le texte et le logo */
			}

			.text-muted.small {
			    font-size: 0.85rem; /* Taille plus petite pour le texte en italique */
				padding-right:85px;
			}

			@media (max-width: 768px) {
			    .signature-container {
			        max-width: 100%; /* Largeur de 100% sur mobile */
			        padding-right: 10px;
			        justify-content: flex-end; /* S'assurer que les éléments restent alignés à droite */
			        text-align: right; /* Assurer que le texte et le logo restent à droite */
			        margin-left: auto; /* Maintenir l'alignement à droite */
			    }

			    .signature-text {
			        font-size: 1.5rem; /* Réduire la taille du texte sur les petits écrans */
			    }

			    .signature-logo {
			        max-height: 1.5em; /* Réduire la hauteur du logo sur les petits écrans */
			    }
				.text-muted.small {
					padding-right:60px;
				}
			}
			
			
			.card {
			    display: flex;
			    flex-direction: column;
			    height: 100%; /* Assure que toutes les cartes prennent toute la hauteur disponible */
			}

			.card-body {
			    display: flex;
			    flex-direction: column;
			    flex-grow: 1; /* Permet au card-body de prendre tout l'espace restant dans la carte */
			}

			.card-body p {
			    flex-grow: 1; /* Permet au texte de s'étendre si nécessaire, poussant le bouton vers le bas */
			}

			.card-body a.btn {
			    margin-top: auto; /* Pousse le bouton vers le bas de la carte */
			}
			
			a.text-color.h5.d-block.phone {
				font-size: 1.5em;
				font-weight: 400;
			}
			
			.border-1px-eb  { border: 1px solid #ebebeb}
			
			.image-ombre {
filter: drop-shadow(10px 10px 25px rgba(100, 194, 250, 0.5));			}
			
			
.diffuser-btn {
    position: relative;
	margin-top:20px;
    padding: 15px 40px;
	font-size: 25px;
	font-weight: 700;
    background: white;
    color: #52afdd!important;
    border: 2px solid #52afdd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    font-family: "Barlow Semi Condensed", sans-serif;
	text-transform: uppercase;
}

.diffuser-btn a {
    color: #52afdd!important;
}

.diffuser-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
    border-color: transparent; /* Enlever la bordure au survol */
}

/* SVG icône (invisible par défaut) */
.diffuser-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0); /* Icône cachée au début */
    width: 72px; /* Taille du SVG */
    height: 72px;
    opacity: 0; /* Invisible au début */
    transition: all 0.3s ease;
    pointer-events: none; /* Empêche l'interaction avec le SVG */
}

/* Texte dans le bouton */
.diffuser-text {
    transition: opacity 0.3s ease;
}

/* Animation au survol (montre l'icône) */
.diffuser-btn:hover .diffuser-icon {
    transform: translate(-50%, -50%) scale(1); /* Affiche l'icône en agrandissant */
    opacity: 1; /* Rendre l'icône visible */
}

.diffuser-btn:hover .diffuser-text {
    opacity: 0; /* Cache le texte lors du survol */
}

/* Effet de pulsation au survol de l'icône */
@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.5); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.diffuser-btn:hover .diffuser-icon {
    animation: pulse 1.5s infinite; /* Animation de pulsation en boucle */
}