/* GENERAL */
*{
  margin: 0;
  box-sizing: border-box;
}

body{
  font-family: Muli;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.5;
}

a{
  color: inherit;
  text-decoration: underline;
}

a:hover{
  color: inherit;
  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-white{
  color: white;
}

.text-visible{
  color: #002060;
  font-weight: bold;
}


.text-uppercase{
  text-transform: uppercase; 
}

.icon{
  margin-right: .5rem;
}

.cv-container{
  display: grid;
  grid-template-columns: 350px 1fr 1fr;
  grid-template-areas: "left-column right-column right-column";
  overflow: hidden;
  height: auto;
/*  
  
  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;
}

.delimiter{
  height: 3px;
  background: #E2E9ED;
  border: none;
  width: 50%;
  margin: 40px auto;
}

/* LEFT COLUMN */
.left-column{
  grid-area: left-column;
  background-color: #4472C4;
  color: white;
  position: fixed;
  height: 100%;
  left: 0px;
  top: 0px;
  padding: 30px;
}

.portait{
  border-radius: 50%;
  max-width: 250px;
  margin: auto;
  display: block;
  margin-bottom: 50px;
  box-shadow: 1px 1px 2px black;
}

.menu{
  list-style-type: none;
  padding: 0;
  letter-spacing: 1px;
  margin: 0 0 1rem;
  font-size: 1.5rem;
}
.menu li{
  padding: 10px;
  color: white;
}
.menu li:hover{
  color: #002060;
  text-decoration: none;
}
.menu a{
  text-decoration: none;
}
.menu a:hover{
  text-decoration: none;
}
.menu li .active{
  color: #002060;
  text-decoration: none;
}
.menu  li.active{
  text-decoration: none;
  color: #002060;
}


.social-icons {
  padding-top: 40px;
}

.social-icons a {
  display: inline-block;
  height: 3.5rem;
  width: 3.5rem;
  background-color: #495057;
  color: #fff!important;
  border-radius: 100%;
  text-align: center;
  font-size: 1.5rem;
  line-height: 3.5rem;
  margin-right: 1rem;
}

.right-column{
  grid-area: right-column;
  display: grid;
  grid-template-rows: 300px 1fr;
  grid-template-areas: 
    "header"
    "content"
    "footer";
  float: right;
}

.header{
  grid-area: header;
  padding: 50px;
  padding-top: 100px;
  background-color: #F2F2F2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.center{
  text-align: center;
}

.footer{
  grid-area: footer;
  padding: 50px;
  background-color: #F2F2F2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.infos{
  list-style-type: none;
  padding: 0;
}

.content{
  grid-area: content;
  padding: 50px;
}

ul{
  list-style-type: circle;
}

.column_3 {
  float: left;
  width: 30%;
}

.column_3 img{
  width: 70%;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}


table, th, td {
  border: 1px solid black;
}



/* Timeline Container */
.timeline {
  margin: 20px auto;
  padding: 20px;
}

/* Card container */
.card {
  position: relative;
}

/* setting padding based on even or odd */
.card:nth-child(odd) {
  padding: 30px 0 30px 30px;
}
.card:nth-child(even) {
  padding: 30px 30px 30px 0;
}
/* Global ::before */
.card::before {
  content: "";
  position: absolute;
  width: 50%;
  border: solid #4472C4;
}

/* Setting the border of top, bottom, left */
.card:nth-child(odd)::before {
  left: 0px;
  top: -4.5px;
  bottom: -4.5px;
  border-width: 5px 0 5px 5px;
  border-radius: 50px 0 0 50px;
}

/* Setting the border of top, bottom, right */
.card:nth-child(even)::before {
  right: 0;
  top: 0;
  bottom: 0;
  border-width: 5px 5px 5px 0;
  border-radius: 0 50px 50px 0;
}

/* Removing the border if it is the first card */
.card:first-child::before {
  border-top: 0;
  border-top-left-radius: 0;
}

/* Removing the border if it is the last card  and it's odd */
.card:last-child:nth-child(odd)::before {
  border-bottom: 0;
  border-bottom-left-radius: 0;
}

/* Removing the border if it is the last card  and it's even */
.card:last-child:nth-child(even)::before {
  border-bottom: 0;
  border-bottom-right-radius: 0;
}

/* Information about the timeline */
.info {
  display: flex;
  flex-direction: column;
  background: #F2F2F2;
  border-radius: 10px;
  padding: 10px;
}

/* Title of the card */
.title {
  color: #4472C4;
  position: relative;
}

/* Timeline dot  */
.title::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 999px;
  border: 3px solid #4472C4;
}

/* text right if the card is even  */
.card:nth-child(even) > .info > .title {
  text-align: right;
}

/* setting dot to the left if the card is odd */
.card:nth-child(odd) > .info > .title::before {
  left: -45px;
}

/* setting dot to the right if the card is odd */
.card:nth-child(even) > .info > .title::before {
  right: -45px;
}



.skill-card{
  border: 1px solid lightgray;
  border-radius: 10px;
  padding: 10px;
  margin-top: 10px;
  display: float;
  content: "";
  display: table;
  clear: both;
  width: 100%;
}

.skill-card h3{
  float: left;
  width: 80%;
}

.skill-card .score{
  float: right;
  width: 20%;
  min-width: 150px;
}
.skill-card img{
  float: right;
  width: 15%;
  min-width: 150px; 
  padding: 10px;
}
.skill-card p{
  float: left;
  width: 80%;
}
.skill-card ul{
  float: left;
  width: 80%;
}
