*,
*:after,
*::before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* General styles and layout */

body {
	background: #bc172b;
	color: #EFF5DA;
	font-family: 'Open Sans', sans-serif;
}
.letitre {
	border-top: 1px solid rgba(255, 255, 255, 0.7);
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
}
.letitre span{
    position: relative;
    top: -13px;
    background-color: #DF1B33;
    padding: 0 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.header {
	margin: 0;
    padding: 0;
    text-align: center;
    background: #DF1B33;
}
.header img{
	padding-bottom: 10px;
    padding-top: 30px;
}
.column img{
	border: 5px solid rgba(61, 31, 55, 0.5);
    margin-bottom: 15px;
}

.container {
    margin: 0;
    padding: 0;
	overflow: hidden;
	/* we don't want the pseudo-elements sticking out */
}

.container svg {
	display: block;
}

section {
	position: relative;
	padding: 3em 10%;
	background: #bc172b;
	text-align: center;
}
section b{
    color: #3D1E37;
    font-weight: 700;
}

section.color {
    color: rgb(40, 56, 109);
}

section p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.3em;
	line-height: 1.5;
}

.text:first-child {
	text-align: right;
}

.text:nth-child(2) {
	text-align: left;
}

.col-2 .column {
    padding: 0 1%;
	width: 49%;
}



.column {
	display: inline-block;
	vertical-align: top;
}

.color {
	background: #DF1B33;
    
}

/*** Individual section styles and separators ***/

/* Common style for pseudo-elements */
section::before,
section::after {
	position: absolute;
	content: '';
	pointer-events: none;
}



/* Curves */
#curveUpColor path,
#curveDownColor path {
	fill: #DF1B33;
	stroke: #DF1B33;
}
#curveUpColor2 path,
#curveDownColor2 path {
	fill: #3d1e37;
	stroke: #3d1e37;
}

.piedepage {
	background: #3d1e37;
}
.piedepage .column{
	text-align: left;
}
.piedepage .column.text{
	text-align: right;
}
.piedepage .column.text h1,.piedepage .column.text h2,.piedepage .column.text h3{
	margin: 0;
    padding: 0;
    font-weight: 400;
    font-family: 'Open Sans Condensed', sans-serif; 
}

.piedepage .column.text h1,.piedepage .column.text h2 {  
    text-transform: uppercase;
}
.piedepage .column.text h1 {
    font-size: 90px;
    line-height: 90px;
}

/* Media Queries for the layout */
@media screen and (max-width: 68em) {
	section {
		font-size: 80%;
	}
}

@media screen and (max-width: 54em) {
	.column {
		display: block;
		width: 100% !important;
	}

	.text:first-child,
	.text:nth-child(2) {
		text-align: center;
	}

	.icon {
		margin: 0 auto;
	}

	.col-2 .column:first-child .icon {
		margin: 0 auto 50px;
	}

	.col-2 .column:nth-child(2) .icon {
		margin: 50px auto 0;
	}
}