/***********************************
 * PUNCH LINES
 ***********************************/

/*
 * home_punch_lines
 */
.mobile .home_punch_lines {
    width: 100%;
    padding: 1em 0;
}

.computer .home_punch_lines {
    --img_width: 747px;
    width: 100%;
    padding: 10em 0;
}

/*
 * home_punch_line
 */
.home_punch_line #mesProcessusTitle {
    font-size: 2.5em;
    font-weight: bold;
    margin: 0;
    padding: 1.5em 0 1em 0;
    width: 100%;
}

.mobile .home_punch_line{
    float: none;
    width: 100%;
    padding-bottom: var(--padding);
}

.computer .home_punch_line {
    float: left;
    width: calc(100% - var(--img_width));
    vertical-align: center;
    text-align: center;
}

/*
 * home_punch_lines_youtube
 */
.mobile .home_punch_lines_youtube {
    display: block;
    width: 600px;
    height: 338px;
    margin: 25px auto;
	border: 1px solid var(--color_theme_3);
    box-shadow: lightgray 10px 10px 10px;
}

.computer .home_punch_lines_youtube {
    display: block;
    float: right;
    width: calc(var(--img_width) - 4px);
    height: calc((var(--img_width) - 4px) / 16 * 9 + 5px);
	border: 1px solid var(--color_theme_3);
    box-shadow: lightgray 10px 10px 10px;
}

/*
 * home_punch_lines_image
 */
.mobile .home_punch_lines_image {
    display: block;
    width: 600px;
    height: 350px;
    margin: 25px auto;
    transform: perspective(300px) rotateY(-10deg);
    box-shadow: lightgray 10px 10px 10px;
}

.computer .home_punch_lines_image {
    display: block;
    float: right;
    width: var(--img_width);
    transform: perspective(300px) rotateY(-10deg);
    box-shadow: lightgray 10px 10px 10px;
}

/***********************************
 * CHALLENGES
 ***********************************/


.home_slideshow {
	min-height: 250px;
	position: relative;
	margin: 2em auto 1em auto;
	border: 1px solid rgb(230, 150, 0);
	border-radius: 1em;
	padding: 1em;
}

.computer .home_slideshow {
	width: 70%;
}

.mobile .home_slideshow {
	width: 95%;
}

.home_slide {
	display: none;
}

.home_question {
	margin: 1em 2em;
	padding-bottom: 1em;
	font-size: 1.5em;
	border-bottom: 1px solid rgb(230, 150, 0);
}

.home_answer {
	margin-top: 2em;
	margin-left: 3em;
	margin-right: 3em;
	margin-bottom: 3.5em;
}

.home_prev, .home_next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translate(0%, -50%);
	padding: 1em;
	border-radius: 0.25em;
	vertical-align: text-top;
	color: var(--color_yin);
	font-weight: bold;
	font-size: 18px;
	user-select: none;
}

.home_prev { left: 0; }

.home_next { right: 0; }

.home_prev:hover, .home_next:hover {
	background-color: var(--color_yin);
	color: var(--color_yang);
}

.home_dots {
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translate(-50%, 0);
}

.home_dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px 2em 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.home_active, .home_dot:hover {
	background-color: #717171;
}

.home_fade {
	animation-name: home_fade;
	animation-duration: 1.5s;
}

@keyframes home_fade {
	from {opacity: .4}
	to {opacity: 1}
}


/***********************************
 * LIFE CYCLE
 ***********************************/

.home_life_cycle{
    padding: 2em 0;
}

/*
 * mobile
 */
.mobile .home_life_cycle_image{
    width: 40%;
    display: block;
    margin: 0 auto;
}

/*
 * computer
 */
.computer .home_life_cycle {
    --home_life_cycle_body_width: 600px;
    --home_life_cycle_height: 400px;

    width: 100%;
    height: var(--home_life_cycle_height);
}

/* left */
.computer .home_life_cycle_left .home_life_cycle_body {
    width: var(--home_life_cycle_body_width);
    transform: translate(0, calc(0.5 * var(--home_life_cycle_height) - 50%));
    margin-left: 10%;
}

.computer .home_life_cycle_left .home_life_cycle_image {
    display: block;
    float: right;
    height: var(--home_life_cycle_height);
    margin-right: 10%;
}

/* right */
.computer .home_life_cycle_right .home_life_cycle_body {
    width: var(--home_life_cycle_body_width);
    transform: translate(0, calc(0.5 * var(--home_life_cycle_height) - 50%));
    margin-left: calc(90% - var(--home_life_cycle_body_width));
}

.computer .home_life_cycle_right .home_life_cycle_image {
    display: block;
    float: left;
    height: var(--home_life_cycle_height);
    margin-left: 10%;
}


/***********************************
 * WHO AM I
 ***********************************/
.home_whoami {
    width: 100%;
    text-align: center;
}
.mobile .home_values {
    display: inline-block;
    min-width: 150px;
    width: 20%;
    padding: 0.5em;
    text-align: center;
    box-sizing: border-box;
}
.mobile .home_values img {
    display: block;
    width: 100%;
}
.mobile .home_values div {
    display: block;
    width: 100%;
}

/*
 * mobile
 */
.mobile .home_whoami img {
    display: block;
    margin: 1em auto 1em auto;
    width: 40%;
    border-radius: 10px;
}

.mobile .home_whoami_she img, .mobile .home_whoami_he img {
    display: block;
    margin: 1em auto 1em auto;
    width: 20%;
}

/*
 * computer
 */
.computer .home_whoami img {
    display: block;
    margin: 1em auto 1em auto;
    width: 20%;
    border-radius: 10px;
}
.computer .home_values {
    display: inline-block;
    width: 10%;
    margin: 1em;
    text-align: center;
}
.computer .home_values img {
    display: block;
    width: 60%;
}
.computer .home_values div {
    display: block;
    width: 100%;
}

.computer .home_whoami_he {
    display: inline-block;
    width: 600px;
    margin-left: 50px;
    vertical-align: top;
}

.computer .home_whoami_she {
    display: inline-block;
    width: 600px;
    margin-left: calc(100% - 1300px);
    vertical-align: top;
}

.computer .home_whoami_she img, .computer .home_whoami_he img {
    display: block;
    margin: 1em auto 1em auto;
    width: 20%;
}


/***********************************
 * CONTACT
 ***********************************/
.home_contact {
    margin: 1em auto;
    text-align: center;
}


/*
 * mobile
 */
.mobile .home_contact .style_button{
    display: block;
    width: 20em;
    max-width: 20em;
    margin: 1em auto;
    vertical-align: middle;
    background-color: var(--color_theme_1);
}

/*
 * computer
 */
.computer .home_contact .style_button {
    width: 20em;
    max-width: 20em;
    background-color: var(--color_theme_1);
}
