
@media(min-width:768px){
.flex{
    display: grid;
    grid-template-columns: 7fr 4fr;
    gap: 50px;
}
.flex2{
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 12vw;
    align-items: center;
}
.xgrand{
   font-size: 14vw!important; 
    line-height: 0.7!important;
}

.dropdown-contact:hover{
    color: rgba(22,23,168,1)!important;
    background-color: white;
    font-family: "Satoshi-MediumItalic"!important;
}

/* Apparition au survol */
.dropdown-contact:hover .hover-content-contact-marine,
.dropdown-contact:hover .hover-content-contact-sarah {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Zone cachée Marine */
.hover-content-contact-marine {
    position: absolute;
    top: 100%;
    left: -10vw;
    width: 38vw;
    padding: 20px;
    background-color: white;
    color: rgba(22,23,168,1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

/* Zone cachée Sarah */
.hover-content-contact-sarah {
    position: absolute;
    top: 100%;
    left: -18vw!important;
    width: 38vw;
    padding: 20px;
    background-color: white;
    color: rgba(22,23,168,1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

/* Style du texte à l'intérieur */
.hover-content-contact-marine p,
.hover-content-contact-sarah p {
    margin: 0;
    color: rgba(22,23,168,1);
    line-height: 1.2;
}

.img-visible-small{
    display: none;
    align-items: center!important;
}

.width50-med{
    width: 50%!important;
}
.collab{
 width:35%!important ;
}
}


@media(max-width: 768px){
.cacher768px{
    display: none;
}

.hover-content-contact{
    display: none;
}

.img-hidden-small{
    display: none;
}
}


.dropdown-contact:focus {
  outline: none;
}

/* Conteneur général */

.dropdown-contact {
    position: relative;
    display: inline-block;
    cursor: pointer;
    border: solid 1px white;
    padding: 4px 8px;
    background-color: transparent;
    transition: all 0.3s ease;
    z-index: 1;
}

/* Apparition au survol */
.dropdown-contact:hover .hover-content-contact {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


.arrow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px; /* Ajuste selon ton besoin */
    position: relative;
}

.simple-arrow {
    display: inline-block;
    position: relative;
    width: 2px;
    height: 30px;
    background-color: white;
    margin: auto!important;
}

.simple-arrow::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 6px solid white;
    margin: auto!important;
}




/* Conteneur principal */
.display-flex {
    display: flex !important; /* Correction ici */
    flex-wrap: wrap; /* Permet le retour à la ligne si l'espace est insuffisant */
    justify-content: center; /* Centre les colonnes horizontalement */
    align-items: flex-start; /* Aligne les éléments en haut */
    gap: 20px; /* Espacement entre les colonnes */
    width: 100%;
    box-sizing: border-box;
}

/* Bloc pour chaque service */
.service-block {
    flex: 1 1 300px; /* Largeur adaptable, min 300px */
    text-align: center;
}

/* Boutons */
.accordion-2 {
    width: 100%;
    padding: 15px 20px;
    background-color: #1617A8;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Panels */
.panel2 {
    display: none;
    background-color: transparent!important;
    border: none!important;
    margin-top: 10px;
    text-align: center;
}

.panel2 p{
	color: white!important;
}

.panel2.open {
    display: block;
}


.le-plus{
	display: grid;
    grid-template-columns: 25px 11fr ;
    gap: 20px;

}

.fond-blanc{
    background-color: white;
    padding: 10px;
}



/*_________________________________________________
bouton fixe contactez nous*/

.fixed-button {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  color: #1617A8!important;
  border: 1px solid white;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 1000;
  min-width: 80%!important;
}

.fixed-button a{
    text-decoration: none;
    color: #1617A8!important;
}

/* Et pour cacher sur desktop si tu veux */
@media screen and (min-width: 769px) {
  .fixed-button {
    display: none;



