/*
Theme Name: Press Wind FSE
Theme URI: https://wp-performance.com/press-wind/
Author: WP Performance
Author URI: https://wp-performance.com
Description: Theme base with Tailwind CSS and Vite JS
Requires at least: 6.0
Tested up to: 6.0
Requires PHP: 8.1
Version: 0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: press-wind
Tags: tailwind, vite, Full Site Editing

Press Wind WordPress Theme, (C) 2022 wp-performance.com
Press Wind is distributed under the terms of the GNU GPL.
*/

/* Style par défaut pour les colonnes */
.inverse-columns {
	display: flex;
	flex-direction: row;
	align-items: center; /* Centre verticalement le contenu */
	justify-content: center; /* Centre horizontalement le contenu */
  }
  
  /* Inverser les colonnes pour les écrans mobiles */
  @media (max-width: 768px) {
	.inverse-columns {
	  flex-direction: column-reverse;
	  align-items: center; /* Assure que les éléments restent centrés */
	}
  }
  .inverse-columns img, .inverse-columns div {
	margin: 0;
	padding: 0;
}

  
  
/* Header transparent page*/

.transparent-header {
	position: absolute;
	top: 0;
	width: 100%;
	justify-content: space-between; 
  }
  .transparent-header *, .transparent-header > * {
  z-index: 10;
  }

/* animation boutton */

.animation-bulle > a{
	position:relative;
	z-index:2;
	overflow:hidden;
}
.animation-bulle > a:before{
	content:"";
	width:500px;
	height:500px;
	background-color:#fff;
	position:absolute;
	left:calc(50% - 250px);
	top:calc(50% - 250px);
	border-radius:50%;
	z-index:-1;
	transform:scale(0);
	transition:0.3s ease-in-out all;
}
.animation-bulle > a:hover:before{
	background-color:#fff;
	transform:scale(0.5);
}