/*

Theme Name: Hello Elementor Child

Theme URI: https://github.com/elementor/hello-theme/

Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team

Author: Elementor Team

Author URI: https://elementor.com/

Template: hello-elementor

Version: 1.0.1

Text Domain: hello-elementor-child

License: GNU General Public License v3 or later.

License URI: https://www.gnu.org/licenses/gpl-3.0.html

*/


/* Your CSS code goes here
-------------------------------------- */
:root{
	--mauve: #40002B;
	--rouge: #BB392F;
	--bleu-clair: #E9F6FF;
	--beige: #FFFAF2;

	--font: Poppins, sans-serif;
	--header-h: 161px;
	--container-w: 1440px;
	--container-p: calc((1920px - var(--container-w)) / 2);
}

@media (max-width: 1920px){ :root{--container-p: calc((100vw - var(--container-w)) / 2);} }
@media (max-width: 1470px){ :root{--container-p: 15px;} }
@media (max-width: 1200px){ :root{--header-h: 56px;} }

*{
	font-family: var(--font);
}

body{
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
	overflow-x: hidden;
}

.container{
	width: 100%;
	max-width: calc(var(--container-w) + 30px);
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

button.reset{
	background-color: transparent;
	border: none;
	outline: none;
	padding: 0;
}

ul.reset{
	list-style: none;
	margin: 0;
	padding: 0;
}

a{
	text-decoration: none;
	color: inherit;
}

a:not(.btn):hover{
	text-decoration: underline;
	color: inherit;
}

