.split-container {
    display: flex;
    height: 50vh;
	max-height: 700px;
}

.split-container  .section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
   transition: flex 1s cubic-bezier(0.25, 1, 0.5, 1);
    
    background-position: center;  /* Pour centrer l'image */
    background-repeat: no-repeat; /* Pas de répétition d'image */
	background-size: 50%; 
    filter: none; /* Suppression des filtres sur le texte */
}

.split-container  .left-section {
    background-color: #237BDC;
	background-image: url('https://www.sodeasoft.com/images/planning-web/planningweb-store.webp'); 
	background-blend-mode: multiply; /* Ajout d'un effet de mélange */
    background-size: 50%; /* Image plus petite et centrée */
}


.split-container  .right-section {
    background-color: #bd291c;
	background-image: url('https://www.sodeasoft.com/images/gnt-planning/gntplanning-store.webp'); 
	background-blend-mode: multiply; /* Ajout d'un effet de mélange */
    background-size: 50%; /* Image plus petite et centrée */
}


.split-container  .section:hover {
    flex: 3;
}

.split-container  .section:not(:hover) {
    flex: 1;
}

.split-container  .content {
    text-align: center;
    padding: 20px;
}

.split-container  h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    font-family: Arial, sans-serif;
    color: white;
}

.split-container  h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    color: white;
}

.split-container  p {
    font-size: 1rem;
    margin: 20px 0;
    color: white;
}

.split-container  .btn {
    padding: 10px 20px;
    border: 2px solid white;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
	border-radius: 25px;
}

.split-container  .btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.split-container a:visited {
	color: inherit;
}

.split-container a:hover  {
	text-decoration: none;
}


@media (max-width: 768px) {
    .split-container {
        flex-direction: column; /* Les sections sont empilées verticalement */
        height: auto; /* Autoriser la hauteur variable */
		    max-height: 1400px;
    }

    .split-container  .section {
        width: 100%; /* Chaque section prend toute la largeur */
        flex: none !important; 
        height: 40vh ; 
        transition: none; 
    }

    .split-container  .left-section, .right-section {
        <!-- background-size: 60%; /* L'image couvre toute la largeur en mode mobile */ -->
    }

    .split-container  h1 {
        font-size: 1.5rem; /* Réduire la taille des titres pour mobile */
    }

   .split-container  h2 {
        font-size: 1.2rem;
    }

    .split-container  p {
        font-size: 0.85rem;
    }
}