/* STYLE GLOBAL */
* { box-sizing: border-box; text-decoration: none;}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  background-image: url("../images/background.jpg");
  
  color: #111;
}

a { color: #0a58ca; text-decoration: none; }
a:hover { text-decoration: underline; }

.ensemble{
  width: 1024px;
  margin: 0 auto;
  background:#fff;
  border:1px solid #ddd;
}

.main{
  padding: 18px 20px; 
}

.layout{
  width: 100%;
  overflow: hidden; 
}

/* STYLE POUR L'ENTETE */

.header{
  height: 160px;
  background: #0f172a ;
  background-image: url("../images/header.jpg");
  background-size: 100% auto;
  border-bottom: 1px solid #ddd;
  position: relative;
  text-align: center;
}

.header .title-box{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #fff;
  
  backdrop-filter: blur(2px);
}

.header .title-box h1{
  margin: 0 0 6px 0;
  font-size: 32px;
  font-weight: bold;
  text-shadow: 2px 2px 5px red;
}

.header .title-box p{
  margin: 0;
  font-size: 22px;
  text-shadow: 1px 1px 3px rgb(150, 20, 226);
}


.header h1 strong {
  color: #a50dd3;
  text-shadow: #14d91e 2px 2px 5px;
}

/* STYLE POUR LA NAVBAR */

.menu{
  float: left;
  width: 150px;
  background:#2cbab7;
  border:2px solid #d06363;
  padding:5px 8px;
  box-sizing: border-box;
  position: fixed;
  top: 180px;
  box-shadow: 2px 2px #f3e306;
}

.menu h2 {
  margin: 0 0 10px 0;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li { margin: 0 0 8px 0; }

.menu a {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  color: #111;
}

.menu a:hover { background: #6abace; }

.menu a.active {
  background: #7092c7;
  color: #f3e306;
  border-color: #0a58ca;
}

/* STYLE DU CONTENU DE LA PAGE */
.content{
 
  margin-left: 20px;
  width: calc(100% - 220px - 20px);  
  min-height: 520px;
  border: 2px solid blue;
  padding: 15px;
  border-radius: 20px;
  position: relative;
  left: 200px;
}

.content h2{
  margin: 0;                 
  font-size: 24px;
  border-bottom:2px solid #eee;
  padding-bottom:10px;
}

.content p { margin-top: 12px; }

.content h3 {
  margin: 0 0 6px 0;
  font-size: 18px;
}

/* STYLE POUR LES CARDS */
.cards {
  margin-top: 18px;
}
.card {
  float: left;
  width: 48%;
  margin: 0 2% 50px 0;
  border: 1px solid #0bd8ac;
  border-radius: 25px;
  background: #fafafa;
  height: 150px;       /* fixe */
  overflow: hidden; 
  transition: 0.2s;
  box-sizing: border-box;
}

.card:hover{
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.card.right { margin-right: 0; }

.card a {
  display: block;
  padding: 16px 16px;
  color: #111;
}

.card a{ text-decoration: none; }
.card a:hover{ text-decoration: none; }


.card .small {
  font-size: 12px;
  color: #555;
  margin: 8px 0 0 0;
}

#rapport {
  border-color: #169ae7;
  background: url("../images/rapport.jpg") no-repeat center center;
  background-size: 100% auto  ;
  background-color: #0bd8ac;
} 

#rapport h3 {
  color: #246ae3;
  font-size: 22px;
}
#rapport .small {
  color: #e9c01f;
  font-size: 15px;
  font-weight: bold;
}
#parcours { 
  border-color: #f39c12; 
  background: url("../images/parcours.jpg") no-repeat center center;
  background-size: 100% auto  ;
  background-color: #73a3ec;
}
#parcours .small {
  color: #c7eacb;
  font-size: 15px;
  font-weight: bold;
}
#interview { 
  border-color: #0a58ca; 
  background: url("../images/interview.jpg") no-repeat center center;
  background-size: 100% auto  ;
  background-color: rgb(221, 147, 176);
}
#interview h3 {
  color: #cfd5ec;
  font-size: 22px;
}
#interview .small {
  color: #7471da;
  font-size: 15px;
  font-weight: bold;
}
#conclusion { 
  border-color: #28a745; 
  background: url("../images/conclusion1.jpg") no-repeat center center;
  background-size: 100% auto  ;
  background-color: #efbb0e;
}

.clearfix { clear: both; }
/* STYLE POUR LA PAGE DES QUESTIONS ET R2PONSES */

.qa {
  border: 1px solid #3ae6e6;
  background: #fcfcfc;
  padding: 12px 12px;
  margin-bottom: 12px;
  border-radius: 10px;
}

.question {
  margin: 0 0 8px 0;
  font-weight: bold;
  color: #0f172a;
  background: #eef3ff;
  border-left: 5px solid #0a58ca;
  padding: 8px 10px;
}

.answer {
  margin: 0;
  color: #111;
  background: #f6fff1;
  border-left: 5px solid #2e7d32;
  padding: 8px 10px;
}

/* STYLE SUR LE FOOTER */
.footer{
  border-top: 1px solid #ddd;
  background: #1c1b1b;
  padding: 14px 20px;
  font-size: 12px;
  color: #f5f5f5;

  text-align: center;   
}