 /* GENERAL */
*{
  margin: 0;
  box-sizing: border-box;
}

body{
  font-family: Roboto;  
  font-size: .9rem;
  line-height: 1.5;
}

@media screen{
	body{
	font-weight: 300;
	font-family: Roboto;  
    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;
}

.text-blue{
  color: #4472C4;
}

.text-darkblue{
  color: #002060;
}

.text-uppercase{
  text-transform: uppercase; 
}

.icon{
  margin-right: .5rem;
}

.cv-container{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "left-column right-column right-column";
  width: 1200px;
  margin: 100px 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;
}

.experience-head{  
  display:flex;
  align-items: center;
  justify-content: left;
  
}

.experience-head img{  
	margin-right:10px;
	max-height:40px;
	max-width:40px;
}

.experience-head div{  	
	min-width:40px;
}


/* LEFT COLUMN */
.left-column{
  grid-area: left-column;
  padding: 50px;
  background-color: #4472C4;
  color: white;
}

.portait{
  border-radius: 50%;
  max-width: 300px;
  margin: auto;
  display: block;
  margin-bottom: 50px;
}

.skills{
  list-style-type: none;
  padding: 0;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin: 0 0 1rem;
}

/* RIGHT COLUMN */
.right-column{
  grid-area: right-column;
  display: grid;
  grid-template-rows: 250px 1fr;
  grid-template-areas: 
    "header"
    "content";
}

/* HEADER */
.header{
  grid-area: header;
  padding: 50px;
  background-color: #F2F2F2;
  /*background-image:url("vibe.png");*/
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.infos{	
  columns: 2;
  list-style-type: none;
  padding: 0;
}

.figures-container{
  margin-top:1rem;  
  padding:0;  
}

.figures{  
  padding: 0 2rem 0 0 ;  
  list-style:none;
  display:inline;
}


/* CONTENT */
.content{
  grid-area: content;
  padding: 50px;
}

.experience-list{
 padding-top:1rem;
 border-top: 1px solid grey; 
 list-style-type: circle;
}

.experience-list-noborder{
 padding-top:1rem; 
 list-style-type: circle;
}

.experience-resume{
 padding-top:1rem;
 border-top: 1px solid grey;  
 text-align:justify;
}



@media print {
	
	@page {
    size: A4;
	}
	
	html{		
		font-family:Roboto,Arial,helvetica,sans-serif;		
	}
	body{
		font-family:inherit;
		line-height:1.25;
	} 
	*,:before,:after{
		font-family:inherit;
	}
  
    .cv-container {
        margin: 0 auto auto auto;
		height:100%;
    }
	.content{
		margin-top:0px;
	}
}