
			
			#video_accueil
			{
				height: 70vh;
				width: 92vw;
				object-fit: cover;
				border-style: solid;
                border-spacing: 0cap;
				border-width: 1;
				border-color: #ffffff;
			}
			
			#video_promo
			{
				width: 32vw;
				height: 18vw;
				border-style: solid;
                border-spacing: 0cap;
				border-width: 1;
				border-color: #ffffff;
			}
			
			#image_miniature
			{
				width: 32vw;
				border-style: solid;
                border-spacing: 0cap;
				border-width: 1;
				border-color: #ffffff;
			}
			
			#photo_miniature_parcours
			{
				width: 9vw;
				border-style: solid;
                border-spacing: 0cap;
				border-width: 1;
				border-color: #ffffff;
				margin: 1vw 1vw;
			}
			
			#image_profil
			{
				width: 32vw;
				border-style: solid;
                border-spacing: 0cap;
				border-width: 1;
				border-color: #ffffff;
			}
			
			#image_texte_bas
			{
				width: 25vw;
				position: relative;
			}
			
			#sponsors_bas
			{
				width: 60vw;
				position: relative;
			}
			
			#image_rendez_vous
			{
				width: 30vw;
			}
			
			#bouton_inscription
			{
				width: 25vw;
			}
			
			#bouton_envoyer
			{
				width: 25vw;
			}
			
			#image_fond_bas
			{
				width: 91.9vw;
			}
			
			#image_volx
			{
				width: 35vw;
				border-style: solid;
				Border-width: 1;
				Border-color: #FFFFFF;
			}
			
			#fenetre_drive
			{
				width:40vw;
				height: 25vw;
			}
			
			
			#a-photos 
			{
				color:#05abd2;  /* Couleur du lien */
			}


.drive-container {
    max-height: 100;
    width: 100%;
    margin: 20px auto;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    transition: max-height 0.5s ease-out, visibility 0s linear 0.5s; 
    display: block; 
    visibility: hidden;
}

.drive-container.open {
    visibility: visible; 
    max-height: 1000px;
    transition: max-height 0.5s ease-out, visibility 0s linear 0s;
}

.drive {
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

/* Version responsive */
@media (max-width: 768px) {
    .drive-container {
        max-width: 100%;
        padding: 5px;
    }
    
    .drive {
        height: 400px;
    }
}

.drive-button {
    display: block;
    width: 80%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    margin: 20px auto;

}

.drive-button:hover {
    background-color: #212121;
}

.toggle-btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    background-color: #333;
    color: white;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    display: block;
    margin-top: 20px;
}

.toggle-btn:hover {
    background-color: #121212;
}

.toggle-btn.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}