/*----------------------------------*/
/* BODY */
/*----------------------------------*/
:root {
    /* Couleur de fond du site */
    --BODY-background-color: whitesmoke;

    /* Police de texte */
    --BODY-font-familly: Nunito, Helvetica, sans-serif;

    /* Couleur de texte */
    --BODY-text-color: #546e7a;
    --BODY-link-color: #546e7a;
    --BODY-title1-color: #546e7a;
    --BODY-title2-color: #546e7a;
    --BODY-title3_color: #546e7a;
}
/*----------------------------------*/
/*----------------------------------*/
body {
	background-color: var(--BODY-background-color);
	font-size: 16px;
    font-family: var(--BODY-font-familly);
    font-weight: normal !important;
	margin: 0;
	padding: 0;
	width: 100%;
    height: 100%;
    color: var(--BODY-text-color);
}
li {
	text-decoration: none;
}
a {
	text-decoration: none;
	color: var(--BODY-link-color);
}
p, h1, h2, h3, h4, h5, h6, a {
	color: var(--BODY-text-color);
}
h1 {
    color: var(--BODY-title1-color);
    font-size: 52px;
	font-weight: bold !important;
}
h2 {
    color: var(--BODY-title2-color);
    font-size: 46px;
	font-weight: normal;
}
h3 {
    color: var(--BODY-title2-color);
    font-size: 40px;
	font-weight: normal;
}
h4 {
    color: var(--BODY-title3_color);
    font-size: 36px;
    font-weight: bold !important;
}/*----------------------------------*/
/* CONTAINER */
/*----------------------------------*/
.CONTAINER_20 {
	width: 20%;
	height: auto;
	margin: auto;
}
.CONTAINER_30 {
	width: 30%;
	height: auto;
	margin: auto;
}
.CONTAINER_40 {
	width: 40%;
	height: auto;
	margin: auto;
}
.CONTAINER_50 {
	width: 50%;
	height: auto;
	margin: auto;
}
.CONTAINER_60 {
	width: 60%;
	height: auto;
	margin: auto;
}
.CONTAINER_70 {
	width: 70%;
	height: auto;
	margin: auto;
}
.CONTAINER_80 {
	width: 80%;
	height: auto;
	margin: auto;
}
.CONTAINER_90 {
	width: 90%;
	height: auto;
	margin: auto;
}
.CONTAINER_100 {
	width: 100%;
	height: auto;
	margin: auto;
}

/* Double container */
/* 9 / 89 */

.CONTAINER_left_9 {
	width: 9%;
	height: auto;
	float: left;
}
.CONTAINER_right_89 {
	width: 89%;
	height: auto;
	float: right;
}

/* 19 / 79 */

.CONTAINER_left_19 {
	width: 19%;
	height: auto;
	float: left;
}
.CONTAINER_right_79 {
	width: 79%;
	height: auto;
	float: right;
}

/* 29 / 69 */

.CONTAINER_left_29 {
	width: 29%;
	height: auto;
	float: left;
}
.CONTAINER_right_69 {
	width: 69%;
	height: auto;
	float: right;
}

/* 50 / 50 */

.CONTAINER_left_50 {
	width: 50%;
	height: auto;
	float: left;
	margin: 0;
}
.CONTAINER_right_50 {
	width: 50%;
	height: auto;
	float: right;
	margin: 0;
}

/* Container hauteur */

.CONTAINER_height_10 {
	height: 10px;
}
.CONTAINER_height_500 {
	min-height: 500px;
}
.CONTAINER_height_150 {
	height: 150px;
}

/* Container volant */

.CONTAINER_fly {
	background-color: #FEFEFE;
	margin: auto;
	margin-top: 66px;
	padding: 20px;
	border: 1px solid #888888;
	width: 80%;
}
.CONTAINER_fly_back {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
}

/* Center */

.CONTAINER_center {
	text-align: center;
}
.CONTAINER_div_center {
	margin: auto;
}

/* White */

.CONTAINER_white {
	background-color: #FFFFFF;
	box-shadow: 1px 1px 12px #555555;
}
.CONTAINER_white p {
	color: black;
}
.CONTAINER_white h1 {
	color: black;
}
.CONTAINER_white h2 {
	color: black;
}
.CONTAINER_white h3 {
	color: black;
}
.CONTAINER_whitesmoke {
	background-color: whitesmoke;
	padding: 10px;
	border-radius: 5px;
}

/* Black */

.CONTAINER_black {
	background-color: #1C1C1C;
}

/* Grey */

.CONTAINER_grey {
	background-color: #EEEEEE;
	box-shadow: 1px 1px 12px #555555;
}

/* Vert */

.CONTAINER_vert_back {
    width: 100%;
    height: 100%;
    display: flex;
}
.CONTAINER_vert_50 {
    width: 50%;
    height: 50%;
    margin: auto;
}

/* Container tourné 6% */

.CONTAINER_rot_6_p {
    background: #8268fc;
    background: linear-gradient(135deg, #8268fc 0%, #6850fc 100%);
    width: 110%;
    height: 600px;
    margin-left: -5%;
    /* padding-left: 50%; */
    /* padding-right: 50%; */
    margin-top: 100px;
    position: relative;
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
}
.CONTAINER_rot_6_element {
    position: relative;
    width: 70%;
    top: 20%;
    margin: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transform: rotate(6deg);
}


/* Container tourné 2% */
.CONTAINER_rot_2_p {
    background: #8268fc;
    background: linear-gradient(135deg, #8268fc 0%, #6850fc 100%);
    width: 110%;
    height: 100px;
    margin-left: -5%;
    margin-top: 100px;
    position: relative;
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
}
.CONTAINER_rot_2_element {
    position: relative;
    width: 70%;
    top: 20%;
    margin: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transform: rotate(-2deg);
}


/* Flex */

.CONTAINER_flex {
    display: flex;
}
.CONTAINER_justify_center {
	justify-content: center;
}

/* Youtube */
.CONTAINER_yt {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border-radius: 17px;
}
.CONTAINER_yt iframe {  
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}
.COINTAINER_yt:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}/*----------------------------------*/
/* TEXTE */
/*----------------------------------*/
.TEXTE_15px p {
	font-size: 15px;
}
.TEXTE_20px p {
	font-size: 20px;
}
.TEXTE_grey p {
	color: grey;
}
.TEXTE_color_violet {
    color: #6850fc;
}
.TEXTE_uppercase {
    text-transform: uppercase;
}
.TEXTE_18 {
    font-size: 18px;
}
.TEXTE_lineheight_24 {
    line-height: 24px;
}