@charset "UTF-8";

#grid-body
{
	display: grid;
	max-width:1440px;
	background-color:rgb(250,250,250);
	margin:auto;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: 1fr;
	grid-template-areas:
		"title title title title title title"
		"ssonglets ssonglets ssonglets ssonglets ssonglets ssonglets"
		"responsables responsables responsables responsables responsables responsables";
		
}

#cont-title-page
{
	grid-area: title;
	text-align: center;
    padding: 30px 40px 40px 40px;
}

.link-red
{
	color: #121619;
	text-decoration: underline;
	text-underline-position: under;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	-o-transition: color 0.3s;
	transition: color 0.3s;
}

.link-red:hover
{
	color: #B41021;
}


#title-page
{
	font-family: kaushan, Arial; 
	font-size: 2.9rem;
	color: #B41021;
}

#desc-page
{
	font-family: overpass-light, Arial;
	font-size: 1.5rem;
}

.cont-ss-onglets
{
	grid-area: ssonglets;
	margin-bottom: 50px;
}

.redline
{
	grid-area: redline;
	width: 100%;
    height: 4px;
    background-color: #B41021;
    margin-top: 17px;
}

.btn-ss-onglets
{
	font-family: overpass-bold, Arial;
    font-size: 1.1rem;
    border-radius: 8px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 13px 29px 13px 26px;
    text-decoration: none;
    color: #121619;
    background-color: rgb(250,250,250);
    margin-bottom: 10px;
}

.onglets-aff
{
	box-shadow: 2px 2px 3px rgba(0, 0, 0, .15), 2px -2px 3px rgba(0, 0, 0, .15);
	border-left: 3px solid #B41021;
}

.onglets-hide
{
	box-shadow: none;
	border-left: none;
	-webkit-transition: box-shadow 0.2s;
	-moz-transition: box-shadow 0.2s;
	-o-transition: box-shadow 0.2s;
	transition: box-shadow 0.2s;
}

.onglets-hide:hover
{
	box-shadow: 2px 2px 3px rgba(0, 0, 0, .15), -2px -2px 3px rgba(0, 0, 0, .15);
}

.cont-btn-ss-onglets
{
	display: flex;
    justify-content: center;
	flex-wrap: wrap;
	padding-right: 22px;
    padding-left: 22px;
}

.a-deco-none
{
	text-decoration: none;
}

#section-responsables
{
	grid-area: responsables;
	display: flex;
	flex-direction: column;
	align-items: center;
}

h1
{
	font-family: overpass-extrabold, Arial;
	font-size: 2.8rem;
	line-height: 3.2rem;
	font-weight: initial;
	text-align: center;
	margin: 0;
}

h2
{
	font-family: overpass-light, Arial;
	font-size: 1.5rem;
	font-weight: initial;
	text-align: center;
	margin: 0;
	padding-top: 30px;
}

.tx-nos-formations
{
	font-family: overpass-bold, Arial;
}

#redline-art
{
	grid-area: redline;
	height: 4px;
	background-color: #B41021;
	margin-top: 22px;
}

#btn-telecharger-pdf
{
    border-radius: 50px;
    border: 2px solid #121619;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #121619;
    width: 250px;
    height: 48px;
    font-family: overpass-light, Arial;
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 50px;
    cursor: pointer;
}

#btn-telecharger-pdf:hover
{
    color: #B41021;
    font-family: overpass-extrabold, Arial;
    border: 2px solid #B41021;
}

.title-fonction
{
    font-family: overpass-extrabold, Arial;
    font-size: 2.52rem;
    margin-top: 80px;
}

.center-box-responsables 
{
	display: flex;
	justify-content: center;
	margin-top: 15px;
	flex-wrap: wrap;
}

.box-responsables 
{
    width: 230px;
    height: 220px;
    background-color: rgb(250,250,250);
    box-shadow: 0px 2px 20px -4px rgba(0, 0, 0, .2);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 14px;
    text-decoration: none;
    color: #121619;
    padding-top: 35px;
    margin: 15px;
}

.box-responsables > img 
{
	width: 90px;
	border-radius: 50%;
}

.nom-responsables 
{
	font-family: overpass-extrabold, Arial;
	font-size: 1.4rem;
	margin-top: 20px;
}

.fonction-responsables 
{
	font-family: overpass-light, Arial;
	font-size: 1.3rem;
	text-align: center;
}

.description-fonction
{
	font-family: overpass-light, Arial;
	font-size: 1.45rem;
	margin-bottom: 10px;
	text-align: center;
}

/*rupture en dessous d'ordi/tablette paysage*/
@media screen and (max-width: 1200px)
{	
	#grid-body
	{
		display: grid;
		max-width:1440px;
		background-color:rgb(250,250,250);
		margin:auto;
		grid-template-columns: repeat(6, 1fr);
		grid-template-rows: 1fr;
		grid-template-areas:
			"title title title title title title"
			"ssonglets ssonglets ssonglets ssonglets ssonglets ssonglets"
			"responsables responsables responsables responsables responsables responsables";
			
	}
}

/*rupture en dessous de tablette portrait*/
@media screen and (max-width: 959px)
{
	
	#grid-body
	{
		display: grid;
		max-width:1440px;
		background-color:rgb(250,250,250);
		margin:auto;
		grid-template-columns: repeat(6, 1fr);
		grid-template-rows: 1fr;
		grid-template-areas:
			"title title title title title title"
			"ssonglets ssonglets ssonglets ssonglets ssonglets ssonglets"
			"responsables responsables responsables responsables responsables responsables";
			
	}
	
	#section-responsables
	{
		padding-left: 22px;
    	padding-right: 22px;
	}
	
	
}

/*rupture smartphone*/
@media screen and (max-width: 767px)
{
	
	#grid-body
	{
		display: grid;
		max-width:1440px;
		background-color:rgb(250,250,250);
		margin:auto;
		grid-template-columns: repeat(6, 1fr);
		grid-template-rows: 1fr;
		grid-template-areas:
			"title title title title title title"
			"ssonglets ssonglets ssonglets ssonglets ssonglets ssonglets"
			"responsables responsables responsables responsables responsables responsables";
	}
	
	h1
	{
		font-size: 2.3rem;
    	line-height: 2.9rem;
	}

	#btn-telecharger-pdf
	{
		align-self: center;
	}
}

