/* Tag */
body{
	font-family: 'Inter',Helvetica,Arial,Lucida,sans-serif;
	font-size: .9rem;
	line-height: 1.5;
}

a{
	text-decoration: none;
	color: #4472C4;
}

a:hover{
	text-decoration: underline;
}

p{
	margin: 0 0 1rem;
}

h1{
	margin: 0 0 1rem;
	font-size: 2.5rem;
	margin-bottom: .5rem;
}

h2{
	margin: 0 0 1rem;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* Font Icon */
@font-face {
	font-family: 'Font Icon';
	font-style: normal;
	font-weight: 400;
	src: url("icon.woff") format("woff");
}

.link:before {
	font-family: 'Font Icon';
	font-weight: 900;
	content: "\f0c1";
}

.mail:before {
	font-family: 'Font Icon';
	font-weight: 900;
	content: "\f1fa";
}

.telephone:before {
	font-family: 'Font Icon';
	font-weight: 900;
	content: "\f095";
}

.adresse:before {
	font-family: 'Font Icon';
	font-weight: 900;
	content: "\f3c5"; 
} 

.popup:after {
	font-family: 'Font Icon';
	font-weight: 900;
	content: "\f302"; /*f06e*/	
	cursor: pointer;
	transition: 0.3s;
}   

.popup:hover{
	opacity: 0.8;
}
  
/* Timeline Formation*/
.timeline {
	border-left: 4px solid white;
	position: relative;
	padding: 10px;   
	list-style: none; 
}

.timeline .event {
	padding-bottom: 5px;
	margin-bottom: 5px;  
	position: relative;
}

.timeline .event:last-of-type { 
	padding-bottom: 0;
	margin-bottom: 0; 
	border: none;      
}

.timeline .event:before {
	position: absolute;
	top: -9px;
	left: -55px;    
	width: 30px;
	height:40px;
	content: attr(data-date);
	line-height: 15px;
	text-align: right;  
	font-size: 0.9em; 
	justify-content: right;
	align-items: center;
	display: flex;
}

.timeline .event:after {
	position: absolute;
	box-shadow: 0 0 0 4px white;    
	left: -18px;        
	background: #e5175c;    
	border-radius: 50%;  
	height: 11px;
	width: 11px;
	content: "";
	top: 5px;
}

/* CV */
.cv-container{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-areas: "left-column right-column right-column";
	width: 1200px;
	margin: 0px auto;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.section{
	margin-bottom: 1.5rem;
}

/* Left Column */
.left-column{
	padding: 10px 20px 10px 50px;
	color: white;   
}

.gradien-left-column{
	background: linear-gradient(90deg, #e5175c 0%, #ffbb33 100%);
}

.portrait{
	border-radius: 40%;
	max-width: 200px;
	margin: auto;
	display: block;
	cursor: pointer;
}

.portait:hover{
	cursor: pointer;
}

figcaption {
	text-align: center;	
}

/* Right Column */
.right-column{
	display: grid;
	grid-area: right-column;
	grid-template-rows: 250px 1fr;
	grid-template-areas: 
	"header"
	"content";
}

/* Header */
.header{
	grid-area: header;
	padding: 50px;
	background-color: #FEF3EC;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.infos{
	columns: 2;
	list-style-type: none;
	padding: 0;
}

/* Content */
.content{
	grid-area: content;
	padding: 50px;
}

.gradient{
	background: #E5175C; /* Old browsers */
	background: -moz-linear-gradient(left,  #e5175c 0%, #ffbb33 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  #e5175c 0%,#ffbb33 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  #e5175c 0%,#ffbb33 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5175c', endColorstr='#ffbb33',GradientType=1 ); /* IE6-9 */
	-webkit-background-clip: text;
	background-clip: text;
	-moz-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	-moz-text-fill-color: transparent;
	-webkit-box-decoration-break: clone;
	-webkit-mask-image: linear-gradient(#e5175c, #ffbb33);	
}

/* Popup */
.modal {
	display: none;
	position: fixed;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.9);
}

.modal-content {
	margin: auto;
	display: block;
	max-width: 1000px;
	-webkit-animation-name: zoom;
	-webkit-animation-duration: 0.5s;
	animation-name: zoom;
	animation-duration: 0.5s;
    text-align:center;
}

@-webkit-keyframes zoom {
	from {-webkit-transform:scale(0)} 
	to {-webkit-transform:scale(1)}
}

@keyframes zoom {
	from {transform:scale(0)} 
	to {transform:scale(1)}
}

.close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 1s;
}

.close:hover {
	color: #e5175c;
	text-decoration: none;
	cursor: pointer;
}

/* affichage du nuage de mots */
.canvas {
	position: relative;
	width: 115%;
	left: -40px;
}

/* Experiences Professionnelles */ 
summary {
	cursor: pointer;
	list-style: none;
}

summary:hover {
	background-color: #FEF3EC;
}

summary div {
	display: flex;
	align-items: center;
}

summary h3 {
	display: flex;
	flex-direction: column;
	flex: 8;
	margin-left: 20px;
}

summary small {
	color: #999;
	font-size: 0.875em;
}

summary strong {
	font-weight: 700;
}

summary span:last-child {
	font-weight: 700;
}

summary div span {
	flex:1;
	text-align:center;
}

details {
	border-top: 1px solid #ffbb33;
	border-bottom: 1px solid #ffbb33;
}

details[open] {
	box-shadow: -3px 0 0 #ffbb33;
}

details > div {
	padding: 1em 1em 0;
	font-size: 0.875em;
}

dl dt {
	font-size: 1.2em;
	font-weight: 700;
}

dl div {
	margin-bottom: 2em;
}

dd:first-letter {
	color: #e5175c;
}

.nocolor:first-letter {
	color: black;
}

.nocolor:hover {
	cursor: pointer;
}

.tab{
	margin-left: 100px;
}

.logo {
	object-fit: contain;
	max-height: 64px;
	max-width: 100px;
	flex: 2;
}

/* Onglets */
.ongletActif {
	background-color: #ffbb33; 
    color: #e5175c !important;
	font-weight: 700;
}

.onglet {
	position: relative;
    float: right;
	padding: 10px;
	top: 38px;
	width: 100px;
	text-align: center;
    margin: 0px 6px 0 0;
    border-top: 1px solid #ffbb33;
    border-right: 1px solid #ffbb33;
    border-left: 1px solid #ffbb33;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
}

.languageInput{
	width: 100%;
	height: 22px;
	border: none;
	text-align: center;
	background: transparent;
	outline: none;
	color: inherit;
}