strong{
	font-weight: 600;
}

em{
	font-style: italic;
}

body.page-template-cap-vie-scenario{

	background-color: var(--dark-purple);
	background-image: none;
}

body.page-template-cap-vie-scenario h1,
body.page-template-cap-vie-scenario p{
	text-align: left;
}

h2{
	font-size: 30px;
	font-weight: 900;
	color: var(--dark-blue);
	text-transform: uppercase;
}

p{
	color: var(--dark-purple-font);
}

.hero-header .background-dot-clear{
	flex-basis: 50%;
}

.hero-header .hero-text {
	max-width: none;
	flex-grow: 1;
	text-align: center;
}

.hero-header{
	margin-bottom: 0px;
}

.hero-header h1 {
  text-align: left;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.hero-header > div {
  padding: 25px;
}

#breadcrumb{
	text-align: left;
	color: var(--dark-blue);
	margin-bottom: 10px;
	font-weight: 600;
}

#breadcrumb a{
	text-decoration: none;
	color: var(--dark-blue);
	text-transform: uppercase;
	font-weight: 600;
}


#breadcrumb a:last-of-type {
  color: white;
}

section{
	display: flex;
	max-width: 1500px;
	margin: auto;
	padding: 0px;
	overflow:hidden;
	color: white;
	position: relative;
	background-color: white;
	width: 120vh;
}

#usages{
	
	border: 2px solid var(--dark-purple);
	border-bottom: none;
	height: 30vh;

}

#instructions{
	padding: 2rem;
	flex-basis: 37.5%;
	flex-grow: 0;
	flex-shrink: 0;
	border-right:2px solid var(--dark-purple);
}
#answers{
	flex-grow: 1;
	position: relative;
}

.answer{
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ;
	position: absolute;
  top: 0;
  left: 0;
}

.answer.visible{
	opacity: 1;
	pointer-events: none;
}

.score{
	position: absolute;
	top: 25px;
	left:50%;
	color: var(--dark-blue);
	text-transform: uppercase;
	font-weight: 900;
	font-size: 30px;
}

.score .label{	
	text-decoration: underline 6px  var(--dark-blue);
}

.bullet{
	display: inline-block;
	border: 2px solid var(--dark-blue);
	min-width :20px;
	min-height: 20px;
	position: relative;
	margin-right: 5px;
}
.bullet.wrong::before,
.bullet.wrong::after {
    position: absolute;
    content: '';
    width: 150%;
    height: 2px; /* cross thickness */
    background-color: var(--dark-blue);
    top: 7px;
 		 left: -4px;

}

.bullet.wrong::before {
    transform: rotate(45deg);
}

.bullet.wrong::after {
    transform: rotate(-45deg);
}

.bullet.right{	
	background-color: var(--dark-blue);
}

.answer{
	display: flex;
	flex-wrap: wrap;
	padding: 25px;
	height: 100%;
	align-content: flex-start;
}

.answer, .answer p{
	font-size: 15px;
}

.feedback{	
	flex-basis: 100%;
	margin-bottom: 25px;
}

.feedback p{
	font-weight: 900;
	font-size: 20px;
	color: var(--dark-blue);
	text-transform: uppercase;
}

.thumbnail{
	margin-right: 15px;
}
.thumbnail img{
width: 7vh;
height: auto;
}

.meta{
	display: flex;
	flex-basis: calc(50% - 15px);
	margin-right: 15px;

}

.meta .title{
	font-weight: 900;
	font-size: 15px;
	color: var(--dark-purple-font);
	text-transform: uppercase;
}

.excerpt{
flex-shrink: 1;
  flex-basis: 20%;
  flex-grow: 1;
}

#cards{
	flex-wrap: wrap;
	border: 1px solid var(--dark-purple);
	height: 60vh;
}

#cards.hidden, #results.hidden{
	display: none;
	pointer-events: none;
}


.card{
	box-sizing:border-box;
	padding: 25px;
	flex-basis: 25%;
	flex-grow: 0;
	flex-shrink: 0;
	border: 1px solid var(--dark-purple);
	cursor: pointer;
	max-height: 30vh;
	height: 30vh;
	align-content: space-between;
	display: flex;
	flex-direction: column;
	max-width: 25%;
}

.card.hidden{
	opacity: 0;
	pointer-events: none;
}


.card.right.validated{
	background-color: var(--light-blue);
	pointer-events: none;
}

.card.wrong.validated{
	background-color: #4D495A;
	pointer-events: none;
}

.card.wrong.validated img{
		filter: grayscale(1);
}

.card.wrong.validated h3{
	color :#666666;
}

.card img{
	display: block;
	margin: auto;
	width: 60%;
	height: auto;
}
.card h3{
	text-align: center;
	font-size: 2vh;
	color: var(--dark-purple-font);
	margin-bottom: 0px;
}

#results{
	flex-direction: column;
	background-color: transparent;
	 height: 60vh;	
}

#infos{
	background-color: white;
	border: 2px solid var(--dark-purple);
	padding: 25px 50px;
	position: relative;
}

#infos h2{
	color: var(--dark-purple-font);
	font-size: 64px;
}

#infos .description{
	width: 50%;
}

#links{
	margin: 25px 0px;
	display: flex;
  row-gap: 25px;
  column-gap: 50px;
  flex-wrap: wrap;

}

#links a{
	background-color: white;
	color: var(--dark-blue);
	font-style: italic;
	font-size: 30px;
	border: 2px solid var(--dark-purple);
	padding:20px;
	padding-left: 45px;
	flex-basis: 40%;
  flex-grow: 1;
  text-decoration: none;

}

#links a:before {
	background-image: url('images/slideshow_arrow_right.png');
	display: inline-block;
	width: 28px;
	height: 35px;
	content: "";
	background-size: contain;
	margin-bottom: -5px;
	margin-right: 10px;
}

footer{
	margin-top: 0px;
}
