.debug * {
    outline: 1px solid lightblue;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
p{
	margin:0;
}
/* Section */
.section {
    width: 100%;
}

.section--calendar{
	background-image: url(../images/line2.png);
	background-repeat: repeat-y;
	background-position: center;
	margin-top: 50px;
	margin-bottom: 50px;
}

.section--header{
	background-color: #fff;
	position: fixed;
	margin-top: 0;
	top: 0%;
	z-index:1000;
	height: 70px;
	box-shadow: 1px 1px 7px #555;
}

.section--picture{
	height: calc(100% - 70px);
	width: 100%;
	position: relative; 
	background-image: url(../images/Fond_Home_2000px.jpg);
	background-repeat:no-repeat;
	background-position: center;
	background-size: cover;
	display: flex; /* contexte sur le parent */
  	flex-direction: column; /* direction d'affichage verticale */
  	justify-content: center;

}

.section--headband-title{
	background-image: url(../images/headband-title4.png);
	height: 115px;
	background-repeat:no-repeat;
	background-position: top;
}
.section--headband-title-2{
	background-image: url(../images/headband-title4.png);
	background-repeat:no-repeat;
	background-position: top;
	margin-bottom: 30px;
}

.section--headband-annonce{
	background-image: url(../images/headband-title4.png);
	height: 151px;
	background-repeat:no-repeat;
	background-position: top;
	background-color: #f5f5f5;
}

.section--headband{
	background-image: url(../images/headband1.jpg);
	background-repeat:no-repeat;
	background-position: center;
	position: relative; 
	background-size: cover;
	width: 100%;
	height: 34%;
	margin-top: 30px;
}

.section--footer{
	background-color: #062451;
}

.section--gray{
	background-color: #f5f5f5;
}

/* container */
.container {
    max-width: 960px;
    margin: 0 auto;
}

/* header */
.header{
	height: 70px;
}

.header__logo{
	float: left;
	padding-top: 10px;
} 


.header__logo img{
	height: 55px;
} 

.header__nav{
	float: right;
}
.menu{
	padding: 0;
	margin:0;
	text-align: center;
	text-transform: uppercase;
	font-size: 14px;
	height: 70px;
}

.menu__item{
	display: inline-block;
	margin-left: 41px;
	text-decoration: none;
	color: #4a3d8e;
	position: relative;
	height: 55px;
	padding-right: 11px;
	
}
.menu__item--red{
	background-color: red;
	color: #fff;
	padding-left: 15px;
	padding-right: 15px;
}

.menu__item-line{
	padding-top: 15px;
}
.menu__item-line::after{
	content: '';
    width: 2px;
    height: 40px;
    display: block;
    position: absolute;
    top: 0;
    right: -20px;
    background-color: #e62634;
    margin-top: 15px;
}

.menu__item a:hover {
    color: #f4382f;
}

.menu__item--red a:hover {
    color: #4a3d8e;
}

.menu__item-test{
	padding-top: 0px;
}

a{
	text-decoration: none;
	color: inherit;
}
.header-push-down{
	 height: 70px;
}

/* menu reponsive */ 
.header__nav input[type=checkbox]{
    display: none;
}

.menu-phone{
    display: none;
}

.header__nav input[type=checkbox]:checked ~ .menu{
    display: block;
}

/*picture home */ 
.picture__text{
	color: #fff;
	text-align: center;
	font-size: 28px;
	font-weight: 200;
	border-style: solid;
    border-width: 2px;
    border-color: #fff;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    line-height: 1.5;
}

.picture__text p{
	margin:20px;
}

.picture__text-large{
	text-transform: uppercase;
	font-size: 35px;
}

.picture__text-folder{
	color: #f4382f;
	text-align: center;
    max-width: 300px;
    margin: auto;
    position: relative;
    top: -30px;
    background-color: #fff;
    font-size: 18px;
    padding: 15px;
    border-radius: 15px;
    text-transform: uppercase;
}
.picture__text-folder:hover{
	color: #fff;
    background-color: #f4382f;
}


@media screen and (max-width: 568px){

	.picture__text{
		font-size: 18px;
	    padding: 10px;
	    background-color: rgba(255, 255, 255, 0.1);
	}
	
	.picture__text-large{
		text-transform: uppercase;
		font-size: 20px;
	}
	
	.picture__text-folder{
	    max-width: 200px;
	    font-size: 14px;
	    padding: 15px;
	}

}

/* headband-title */ 

.headband-title{
	text-transform: uppercase;
	text-align: center;
	font-size: 28px;
	color: #fff;
	padding-top: 25px;
}
/* grid */

.grid {
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
}

.grid-alone{
	display: flex;
    flex-wrap:wrap;
}

/* criteres */ 
#calendar{
	padding-top: 70px; 
    margin-top: -70px;
}

.block__title{
	text-transform: uppercase;
	text-align: center;
	color:#f4382f;
	font-size: 30px;
	font-weight: 300;
	margin-bottom: 20px;
	margin-top: 30px;
}

.block__image img{
	width: 60%;
}
.block__description{
	color: #062451;
}

.block{
	width: 250px;
	text-align: center;
}

/* calendar */ 
.calendar{
	display: flex;
	flex-wrap:wrap;
}
.event{
	border-style: solid;
    border-width: 1px;
    border-color: #c6c6c6;
    margin-top: 20px;
    width: 300px;
    padding: 20px;
}

.event--right{
	margin-left: 120px;
}

.event--left{
	margin-left: 80px;
}

.calendar:hover .date, .calendar:hover .date--left::before, .calendar:hover .date--right::before, .calendar:hover .date--left-large::before  {
	color: #fff;
	background: #3c3c3b;
	background-color: #3c3c3b;
}
.calendar:hover .event__title{
	color: #3c3c3b;
} 
.date{
	position: relative;
    background-color: #e30613;
    color: #fff;
    padding: 10px;
    margin-top: 20px;
	background: rgba(84,52,133,1);
    background: -moz-linear-gradient(left, rgba(84,52,133,1) 0%, rgba(147,49,101,1) 49%, rgba(223,31,53,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(84,52,133,1)), color-stop(49%, rgba(147,49,101,1)), color-stop(100%, rgba(223,31,53,1)));
    background: -webkit-linear-gradient(left, rgba(84,52,133,1) 0%, rgba(147,49,101,1) 49%, rgba(223,31,53,1) 100%);
    background: -o-linear-gradient(left, rgba(84,52,133,1) 0%, rgba(147,49,101,1) 49%, rgba(223,31,53,1) 100%);
    background: -ms-linear-gradient(left, rgba(84,52,133,1) 0%, rgba(147,49,101,1) 49%, rgba(223,31,53,1) 100%);
    background: linear-gradient(to right, rgba(84,52,133,1) 0%, rgba(147,49,101,1) 49%, rgba(223,31,53,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#543485', endColorstr='#df1f35', GradientType=1 );
}

.date--left{
	margin-left: 319px;
}

.date--left-large{
	margin-left: 219px;
	width: 187px;
}

.date--right{
	margin-left: 120px;
}

.date p{
	margin:0;
}

.date--left::before, .date--left-large::before{
	content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    background-color: #c6c6c6;
    right: -68px;
    top: 0;
}

.date--right::before{
	content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    background-color: #c6c6c6;
    left: -72px;
    top: 0;
}

.event__title{
	font-size: 16px;
	text-transform: uppercase;
	color: #e62634;
	font-weight: 600;
}

.event__description{
	font-size: 13px;
	font-weight: 300;
	padding-top: 5px;
	color: #062451;
}

.grid__item--1, .grid__item--2{
	margin-top: 20px;
}
/* endowment */
#endowment{
	padding-top: 70px; 
    margin-top: -70px;
}
.endowment__small-picture{
	display: none;
}

.endowment{
	position: relative;
	height: 450px;
}

.endowment__text{
	position: absolute;
	color: #062451;
}

.endowment__text-color{
	color: #f4382f;
	font-size: 20px;
	font-weight: 500;
	text-transform: uppercase;
}

.endowment__text-1{
	top: 0px;
	left: 300px;
}

.endowment__text-2{
	top: 91px;
	left: 380px;
}

.endowment__text-3{
	top: 267px;
	left: 380px;
}

.endowment__text-4{
	top: 400px;
	left: 380px;
}
.endowment__picture img{
	width: 33%;
	margin-top: 70px;
}

.underline{
	text-decoration: underline;
}
/* jury */ 
.block-jury__photo{
	overflow:hidden;
    -webkit-border-radius:0px;
    -moz-border-radius:100px;
    border-radius:100px;
    width:150px;
    height:150px;
}

.block-jury{
	text-align: center;
	width: 200px;
	margin-bottom: 40px;
}
.block-jury__text{
	text-align: center;
	max-width: 600px;
	margin:auto;
	margin-bottom: 20px;
	color: #062451;
}
.block-jury__text--uppercase{
	text-transform: uppercase;
}
.block-jury__name{
	color: #593d8d;
	text-transform: uppercase;
	margin-bottom: 10px;
	font-weight: 600;
}

.block-jury__job{
	color: #062451;
	font-size: 14px;
}
/* portrait frédéric chevalier */ 

#portrait{
	padding-top: 70px; 
    margin-top: -70px;
}
.portrait img{
	height: 340px;
}

.portrait__text{
	max-width: 600px;
	padding-left: 20px;
	color:#062451;
}

.portrait__text-red{
	color: #db1b35;
	text-align: center;
	max-width: 600px;
	margin: auto;
	padding-top: 20px;
}

.block-date{
	max-width: 800px;
	border-style: solid;
    border-width: 5px;
    padding:20px;
    margin-bottom: 30px;
    margin-top: 30px;
    -moz-border-image: -webkit-linear-gradient(#fb1e3d 0%, #7046e8 100%);
    -moz-border-image: -o-linear-gradient(#fb1e3d 0%, #7046e8 100%);
    -moz-border-image: linear-gradient(#fb1e3d 0%, #7046e8 100%);
    -webkit-border-image: -webkit-linear-gradient(right, #e51f31 0%, #7046e8100%);
    border-image: linear-gradient(to right, #fb1e3d 0%, #7046e8 100%);
    border-image-slice: 1;
}

.block-region{
	max-width: 800px;
	margin-left: 120px;
	padding:20px;
	border-style: solid;
    border-width: 5px;
   -moz-border-image: -webkit-linear-gradient(#fb1e3d 0%, #7046e8 100%);
    -moz-border-image: -o-linear-gradient(#fb1e3d 0%, #7046e8 100%);
    -moz-border-image: linear-gradient(#fb1e3d 0%, #7046e8 100%);
    -webkit-border-image: -webkit-linear-gradient(left, #e51f31 0%, #7046e8100%);
    border-image: linear-gradient(to left, #fb1e3d 0%, #7046e8 100%);
    border-image-slice: 1;
    margin-bottom: 50px;
}

.title-color{
	text-align: center;
	text-transform: uppercase;
	padding-bottom: 20px;
	font-weight: 600;
	font-size: 18px;
}

.title-color--date{
	 background: -webkit-linear-gradient(left, #fb1e3d, #7046e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.title-color--region{
	background: -webkit-linear-gradient(left, #7046e8, #fb1e3d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.block__text-color{
	color: #f4382f;
	font-weight: 500;
}

/* make */
#make{
	padding-top: 70px; 
    margin-top: -70px;
}
.block__text{
	color: #062451;
	max-width: 380px;
	padding-left: 70px;
	font-size: 14px;
	line-height: 1.5;
}

.block__text--margin{
	padding-left: 0px;
	padding-right: 70px;
}

.block__logo img{
	width: 250px;
}
/* btn folder */ 

.btn-folder{
	padding:20px;
	border-style: solid;
    border-width: 5px;
   -moz-border-image: -webkit-linear-gradient(#fb1e3d 0%, #7046e8 100%);
    -moz-border-image: -o-linear-gradient(#fb1e3d 0%, #7046e8 100%);
    -moz-border-image: linear-gradient(#fb1e3d 0%, #7046e8 100%);
    -webkit-border-image: -webkit-linear-gradient(left, #e51f31 0%, #7046e8100%);
    border-image: linear-gradient(to left, #fb1e3d 0%, #7046e8 100%);
    border-image-slice: 1;
    margin-bottom: 40px;
    text-align: center;
    max-width: 350px;
    margin: auto;
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 60px;
    color: #fb1e3d;
}

/* footer */ 

.footer{
	display: flex;
	justify-content: center;
	padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 60px;
    padding-bottom: 30px;
}

.footer__lien {
    margin-top: 50px;
    color: #fff;
    padding-left: 40px;
    
}

.separation{
	border-right: solid 1px #fff;
	height: 100px;
	margin-top: 40px;
	margin-right: 20px;
	margin-left: 20px;
}

.footer__text{
	color: #fff;
	text-transform: uppercase;
}
.footer__logo{
	padding-top: 30px;
}

.footer__logo img{
	padding-right: 20px;
}

.footer__logo-highco img{
    height: 130px;
    padding-top: 30px;
}
.partnership__title{
	text-transform: uppercase;
	color: #fff;
	font-size: 14px;
	padding-top: 20px;
	text-align: center;
}

.menu-footer__item:hover{
	color: #f4382f;
}
.menu-footer{
	padding: 0;
	margin:0;
	text-align: center;
	text-transform: uppercase;
	font-size: 14px;
}

.menu-footer__item{
	display: inline-block;
	margin-right: 20px;
	text-decoration: none;
	position: relative;
	padding-top: 15px;
}
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 100px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  max-width: 900px;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #f4382f;
}
.popup .content {
  max-height: 400px;
  overflow: auto;
}

.content h1{
	font-size: 18px;
}

/* inscription */ 

.iframe{
	width: 100%;
	height: 100%;
}

.iframe iframe{
	width: 100%;
	height: 100%;
	border:0;
	overflow: hidden;
}

/* Annonce */ 

.card{
	width: 300px;
	height: 580px;
	background-color: #fff;
	margin-left: 20px;
	box-shadow: 0px 0px 10px #b9b9b9;
	margin-bottom: 40px; 
}

.card__text{
	padding:20px;
}

.card__title{
	color: #e62634;
	text-transform: uppercase;
	font-weight: 600;
}

.card__description{
	font-size: 14px;
	font-weight: 300;
	padding-top: 10px;
}

.description{
	text-align: center;
	padding-bottom: 30px;
}

/* laureate */

#price-1{
	padding-top: 70px; 
    margin-top: -70px;
}


#price-2{
	padding-top: 70px; 
    margin-top: -70px;
}

.laureate__picture img{
	padding-top: 10px;
}

.laureate__picture{
	text-align: center;
}

.laureate{
	max-width: 350px;
	height: 400px;
	padding: 0px 30px 0px 30px;
	background-color:#fff;
	box-shadow: 4px 7px 6px #d9d9d9;
	margin: 70px 20px 70px 20px;
	text-align: center;
}

.laureate__title{
	font-size: 18px;
	text-transform: uppercase;
	color: #062451;
	font-weight: 600;
	text-align: center;
	padding-top: 20px;
}

.color{
	color: #f4382f;
}

.laureate__picture img{ 
	width: 80%;
}

.laureate__text-color{
	color: #f4382f;
}

.laureate__name{
	color: #062451;
	font-weight: 400;
	text-align: center;
	font-size: 25px;
}
.laureate__intro{
	color: #062451;
	font-size: 15px;
	text-align: center;
	margin-top: 60px;
	margin-bottom: 70px;
}

.laureate__text{
	color: #062451;
	font-size: 15px;
}

.interview__picture{
	width: 400px;
}

.interview__picture img{
	width: 100%;
	padding-top: 10px;
}

.name-title{
	font-size: 16px;
	font-weight: 600;
	margin: 0px 0px 15px 0px;
}

.block-laureate__title{
	text-transform: uppercase;
	color:#f4382f;
	font-size: 20px;
	margin: 0px;
}

.block-laureate__btn{
	padding:10px;
	border-style: solid;
   -moz-border-image: -webkit-linear-gradient(#fb1e3d 0%, #7046e8 100%);
    -moz-border-image: -o-linear-gradient(#fb1e3d 0%, #7046e8 100%);
    -moz-border-image: linear-gradient(#fb1e3d 0%, #7046e8 100%);
    -webkit-border-image: -webkit-linear-gradient(left, #e51f31 0%, #7046e8100%);
    border-image: linear-gradient(to left, #fb1e3d 0%, #7046e8 100%);
    border-image-slice: 1;
    margin-bottom: 40px;
    text-align: center;
    max-width: 110px;
    text-transform: uppercase;
    font-size: 15px;
    margin-top: 30px;
    color: #fb1e3d;
}


.laureate__btn{
	padding:10px;
	-moz-background: -webkit-linear-gradient(#fb1e3d 0%, #7046e8 100%);
    -moz-background: -o-linear-gradient(#fb1e3d 0%, #7046e8 100%);
    -moz-background: linear-gradient(#fb1e3d 0%, #7046e8 100%);
    -webkit-background: -webkit-linear-gradient(left, #e51f31 0%, #7046e8100%);
    background: linear-gradient(to left, #fb1e3d 0%, #7046e8 100%);
    margin-bottom: 40px;
    text-align: center;
    max-width: 110px;
    margin: auto;
    text-transform: uppercase;
    font-size: 15px;
    margin-top: 30px;
    color: #fff;
}

.interview{
	color: #062451;
	line-height:1.6;
}

.interview__question{
	margin-top: 20px;
	font-weight: 600;
	font-size: 18px;

}

.interview__answer{
	font-style: italic;
}

.block-laureate{
    
  	padding-top: 70px;
  	padding-bottom: 70px;
}

.interview__btn{
	padding:15px;
	border-style: solid;
    border-width: 5px;
   -moz-border-image: -webkit-linear-gradient(#fb1e3d 0%, #7046e8 100%);
    -moz-border-image: -o-linear-gradient(#fb1e3d 0%, #7046e8 100%);
    -moz-border-image: linear-gradient(#fb1e3d 0%, #7046e8 100%);
    -webkit-border-image: -webkit-linear-gradient(left, #e51f31 0%, #7046e8100%);
    border-image: linear-gradient(to left, #fb1e3d 0%, #7046e8 100%);
    border-image-slice: 1;
    margin-bottom: 40px;
    text-align: center;
    max-width: 250px;
    margin: auto;
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 60px;
    color: #fb1e3d;
}

.interview__title{
	font-size: 18px;
	font-weight: 300;
}

/* responsive */ 

@media screen and (max-width: 960px){

.container{
	padding-left: 10px;
	padding-right: 10px;
}
.popup {
	margin: 80px auto;
}
/* menu */
.header__nav .menu-phone{
    display: block;
    color: #f4382f;
    background-color: #fff;
    text-align: right;
    padding: 12px 0;
}

.menu{
    display: none;
}


.menu__item{
	margin-left: 0px;
}

.menu__item, .menu__item a{
    width: 100%;
    text-align: center;
}

.menu__item{
	background-color: #fff;
	border-bottom: 1px solid #f4382f;
}

.menu__item--red{
	background-color: #f4382f;
	padding-left: 0px;
	padding-right: 0px;
}

.menu__item:hover{
    display: block;
}

.header__nav{
    float: none;
}

/* headband */
.headband-title{
	font-size: 22px;
}
.headband-title--large{
	padding-top: 15px;
}

/* calendar */
.grid__item--1{
	order:1;
}
.grid__item--2{
	order:2;
}
.section--calendar{
	background-position: 10px;
}
.event--right{
	margin-left: 20px;
}

.event--left{
	margin-left: 20px;
}

.date--left{
	margin-left: 20px;
}

.date--right{
	margin-left: 20px;
}

.date--left-large{
	margin-left: 20px;
}

.date--left::before{
    right: 105px;
    top: inherit;
}

.date--right::before{
    left: -22px;
    top: inherit;
}
.date--left-large::before{
	right: 209px;
    top: inherit;
}
.block__title{
	font-size: 25px;
	margin-bottom: 0px;
}
/* endowment */ 
.endowment__picture{
	display: none;
}

.endowment__small-picture{
	display: inherit;
}

.endowment__small-picture img{
	width: 195px;

}

.endowment__text{
	position: inherit;
}

.endowment__text-4{
	padding-top: 10px;
}

.endowment{
	position: inherit;
	text-align: center;
	height: inherit;
}
/*portrait*/ 
.block-region{
	margin-left: 0px;
}
.portrait__text{
	padding-left: 0px;
	padding-top: 10px;
}
.block__text{
	padding-left: 0px;	
}

/*footer*/ 

.footer__logo-highco img{
    height: 200px;
    padding-top: 0px;
}
.popup .content {
  max-height: 350px;

}
.block__title--regulations{
	font-size: 17px;
	font-weight: bold;
}
.content h2{
	font-size: 15px;
}

.footer__lien{
	margin-top: 20px;

}

.footer__logo{
	text-align: center;
}

.separation{
	display: none;
}

/*grid*/ 
.grid-alone{
    justify-content: center;
}

}

@media screen and (max-width: 568px){
	.footer__lien{
		border-bottom: solid 1px;
		padding-bottom: 20px;
	}

	.partnership{
		text-align: center;
		border-bottom: solid 1px #fff;
		padding-bottom: 20px;
	}

}

















