
a, a:visited, a:active, a:link{
  color: #fff;
  text-decoration: none;
}

a:hover{
  font-style: oblique;
}




.banner{
  margin-bottom: 10px;
  margin-top: 0px;
}

#text-banner{
  display: inline-block;
  font-size: 1.7em;
  color: #C0C0C0;
  height: 40px;
  vertical-align: middle;
  margin: 3px 5px;

}

.container{
  width: 100%;
  padding: 0;
}

.row{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}


.thumbnail{
  background-color: rgba(255, 0, 0, 255);
  border: none;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently
                                  not supported by any browser */
}

#row-content, #navbar-limit, .banner{
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/************************* navbar ***********************/

.navbar{
  background-color: #282C34;
  color: #fff;
  box-shadow: 0px 5px 20px #303030;
  margin: 0;
}

.navbar-default .navbar-nav > li > a{

  border: none;
}

.navbar-default .navbar-nav > li > a:focus{

  color: #777;
}

.navbar-default .navbar-nav > li > a:hover{
  border: none;
  color: #fff;

}
.navbar-right{
  margin-right: 10px;
}


#white-space{
  height: 30px;
  background-color: #fff;
}

/************************* banner ***********************/

#banner-title{
  text-align: right;
  width: 100%;
  margin-right: 50px;
  font-size: 4em;
  font-family: cursive;
}

#image-banner{

    background-image: url(../img/banner.png);
    background-size: 80px 40px;
    height: 40px;
    width: 80px;
    float: left;
    margin-top: 3px;
    margin-bottom: 3px;
    margin-left: 20px;
}


.navbar-default .navbar-brand{
  border: none;
}
.navbar-default .navbar-header > a:hover{
  color:#fff;
}

.citation{
  font-style: italic;
}

#section-title{
  padding-left: 15px;
  height: 35px;
  border-bottom: 1px solid #F0F0F0;
  margin-bottom: 10px;
}

#section-title h2{
  font-size: 2em;
  color: #404040;

}


#section-description {
  padding: 10px;
  font-size: 1.2em;
}


#annees-experience{
  display: block;
  width:75px;
  font-size: 0.55em;
  text-decoration: none;
  color: #cfcd1f;
  position: absolute;
  right: 5px;
  top: 5px;

}

[id*="tag-"]{
  padding-top:50px;
  padding-bottom: 50px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: #282C34;

}

#tag-home{
  padding-bottom:0px;
}

/********************************* intro ***************************/

#tag-intro{
  color: #fff;
  background-color: #282C34;
}


#intro-content {
    display: flex;
}

#text-intro{
  border-top: 1px solid #fff;
  padding-top: 15px;
  margin-top: 15px;
  font-size: 1.2em;
  color: #A0A0A0;

}


#avatar img{
  margin: 15px 30px;
}

/********************************* realisations ***************************/

#tag-realisations{
  background-color: #FFF;
  background-image: url(../img/arche.png);
}

#tag-realisations #section-title{
  border-color: #C0C0C0;
}

.realisation-box{
  position: relative;
  width: 250px;
  height: 250px;
  text-align: center;
  margin: auto;
  margin-top:10px;
  margin-bottom: 10px;
  overflow: hidden;
}

#tag-realisations a{
  background-color: #A0A0A0;
  padding: 1px 3px;
}

.realisation-type{
  cursor:  pointer;
}


.realisation-type{
  display: block;
  position: absolute;
  /*top:40px;
  left: 40px;*/
  width: 170px;
  z-index: 20;
  transition: all 200ms ease-in;
  transform: scale(1);
}

.realisation-type.clicked {
  transition: all 200ms ease-in;
  transform: scale(0.6) translate3d(-140px,-140px,0);
}

.realisation-type-description{
    position: absolute;
    font-size: 1.8em;
    color: #606060;
    z-index: 0;
    top:20px;
    left: -250px;
    width: 190px;
    margin-left: 100px;
    opacity: 0;
    text-align: left;
    filter: alpha(opacity=0);
}

.realisation-exemple{
  position: absolute;
  z-index: 0;
  top:75px;
  left: 75px;
  width: 70px;
  opacity: 0;
  filter: alpha(opacity=0);
}

.description-exemple1{
  animation:exemple1-description-move 400ms linear 1 forwards;
}

.description-exemple2{
  animation:exemple2-description-move 600ms linear 1 forwards;
}

.realisation-type.clicked ~ .realisation-exemple{
  opacity: 1;
  filter: alpha(opacity=1);
  transition: opacity 0.5s ease-out 0.3s;
}

.realisation-type.clicked ~  .realisation-type-description{
  opacity: 1;
  filter: alpha(opacity=1);
  -webkit-transform: translate3d(250px,0px,0);
  transform: translate3d(250px,0px,0);
  -webkit-transition: all 0.5s ease-out 0.5s;
  transition: all 0.5s ease-out 0.5s;
}
.realisation-type.clicked ~  .exemple1{
  animation:exemple1-move 400ms linear 1 forwards;
  -webkit-animation: exemple1-move 400ms linear 1 forwards;
}

.realisation-type.clicked ~ .exemple2{
  animation:exemple2-move 600ms linear 1 forwards;
  -webkit-animation: exemple2-move 600ms linear 1 forwards;
}

.realisation-exemple-description{
  position: absolute;
  left: -250px;
  width: 170px;
  height: 70px;
  color: #606060;
  font-size: 0.85em;
  padding: 5px 5px;
  margin-left: 80px;
  opacity: 0;
}


.img-wrapper{
  width:170px;
  height:170px;
  position:relative;
  z-index:100px;
  top:40px;
  left: 40px;
  border-radius: 85px;
  /*border: 1px solid #AA1010;*/
  overflow: hidden;
}


.glow-overlay{
  position:absolute;
  z-index:10;
  margin:0px;
  width:150px;
  height:150px;
  opacity: 0.3;
  left: -150px;
  top:150px;

}

.glow-overlay-moved{
  transform: translate3d(400px,-300px,0);
  transition: all 1.0s ease-out 0.1s;

}


.realisation-type.clicked ~ .realisation-exemple-description{
  -webkit-transform: translate3d(250px,0px,0);
  transform: translate3d(250px,0px,0);
  -webkit-transition: all 0.5s ease-out 0.5s;
  transition: all 0.5s ease-out 0.5s;

  opacity: 1;
  transition: opacity 0.5s ease-out 1s;

}

.realisation-exemple-description ul{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  list-style-type: none;
  padding-left: 2px;
  text-align: left;
  height: 100%;

}


/********************************* competencies ***************************/
.panel-competencies{
  margin-top: 5px;
  margin-bottom: 5px;
  display:flex;
  justify-content:flex-start;
  transition: opacity 500ms ease-in-out;
}

#tag-outils{
  background-color: #282C34;
  background-image: url(../img/turbine1.png);
}

#tag-outils #section-title2{
  color: #DDD;
  width: 100%;
  min-height: 20px;
  margin-top: 30px;
  margin-left: 15px;
  padding-left: 10px;
  font-size: 1.7em;

}

.panel-competencies-image{
  display: flex;
  flex-direction:column;
  justify-content:center;
  width:80px;
}

.panel-competencies-image img{
    width:60px;
    margin:auto;
}

#tag-outils h2{
  color: #fff;
}


.experience-level-title{
  display: inline-block;
  font-size: 1.5em;
  color: #fff;
  border-bottom: 1px solid #909090;
  width: 200px;
  margin: 0px 20px;
  text-align: center;
}

.experience-level{
  display: flex;
  justify-content:center;
  flex-direction: column;
  align-items: center;
  width:230px;
}

.experience-level-bar{
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 5px;
}

.experience-level-bar .progress{
  width: 200px;
  margin-left:10px;
  margin-bottom:0;
  background-color: rgba(35,39,47,1);
  border-radius: 5px;
}

.experience-level-years{
  opacity: 1;
  margin-left:15px;
  font-size:1.1em;
  color: #C0C0C0;
}

/********************************* parcours ***************************/

#tag-profile{
  background-color: #FFF;
  background-image: url(../img/chateau_vincennes.png);
}

#tag-profile #section-title{
  border-color: #C0C0C0;
}

#tag-profile #section-description{
  background-color: rgba(40,44,52,0.7);
  border-radius: 10px;
  color: #C0C0C0;
}


/********************************* passion ***************************/
#tag-passion{
  background-image: url(../img/glows.png);
  background-color: #282C34;
  color: #D0D0D0;

}

#tag-passion h2{
  color: #fff;
}



/********************************* Footer ***************************/

.footer{
  display:flex;
  align-items: center;
  padding: 10px;
}

#avatar-footer .img-circle{
  max-width: 100%;
  height: auto;
}

#avatar-footer{
  width: 120px;
  float: right;
  margin: 10px 25px;

}

.social{
  display: flex;
  justify-content:space-around;
  align-items: center;
  border-radius: 15px;
  margin: 20px 20px 20px 20px;
  width:350px;
}

#my_name{
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  text-decoration: italic;
  color: #A0A0A0;
  margin:15px 100px 15px 15px;
  font-size: 1.3em;

}
#my_name #town{
  font-size: 1.6em;
}

.social .noselect{
  width: 70px;
  height: 70px;
  border-radius: 60px;
  /*border-bottom: 2px solid #C0C0C0;
  border-top: 2px solid #606060;*/
  background-color: #FFF;
  /*overflow: hidden;*/
  display: flex;
  justify-content:space-around;
  align-items: center;
}

.social_img{

  height: 35px;
  width: auto;

}


#tag-contact{
  background-color: #000;
  display: flex;
  justify-content: space-around;
  padding:0;
  /*background-image: url(../img/passion-bg.jpg);*/

}

/********************* Animations ***************/

.hideme{
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

[class*="pop-lvl"]{
  position:absolute;
  border-radius: 5px;
  margin: auto;
  top:0;
  bottom:0;
}

.pop-lvl1{
  z-index:5;
  animation:pop-lvl1 500ms linear 0.5s forwards;
}

.pop-lvl2{
  z-index:10;
  margin-left:40px;
  animation:pop-lvl2 500ms linear 1.0s forwards;
}

.pop-lvl3{
  z-index:15;
  margin-left:80px;
  animation:pop-lvl3 500ms linear 1.5s forwards;
}

.pop-lvl4{
  z-index:20;
  margin-left:120px;
  animation:pop-lvl4 500ms linear 2.0s forwards;
}

.pop-lvl5{
  z-index:20;
  margin-left:160px;
  animation:pop-lvl4 500ms linear 2.5s forwards;
}

.pop-lvl1-blue{
  z-index:5;
  animation:pop-lvl1-blue 500ms linear 0.5s forwards;
}

.pop-lvl2-blue{
  z-index:10;
  margin-left:40px;
  animation:pop-lvl2-blue 500ms linear 1.0s forwards;
}

.pop-lvl3-blue{
  z-index:15;
  margin-left:80px;
  animation:pop-lvl3-blue 500ms linear 1.5s forwards;
}

.pop-lvl4-blue{
  z-index:20;
  margin-left:120px;
  animation:pop-lvl4-blue 500ms linear 2.0s forwards;
}

.pop-lvl5-blue{
  z-index:20;
  margin-left:160px;
  animation:pop-lvl5-blue 500ms linear 2.5s forwards;
}


.beat{
  animation:beat-heart 800ms linear 0.5s;

}

@keyframes beat-heart {
  0%  {transform: scale(1.0);}
  10%  {transform: scale(1.05);}
  30%  {transform: scale(1.0);}
  40%  {transform: scale(1.05);}
  100%  {transform: scale(1.0);}
}


@keyframes pop-lvl1 {
  0%  {width:0px; height:20px; background-color:#408040; }
  80%  {width:40px; height:20px; background-color:#408040;}
  90%  {width:40px; height:30px; background-color:#AAFFAA;}
  100% {width:40px; height:20px; background-color:#408040;}

}

@keyframes pop-lvl2 {
  0%  {width:0px; height:20px; background-color:#40A040; }
  80%  {width:40px; height:20px; background-color:#40A040;}
  90%  {width:40px; height:30px; background-color:#AAFFAA;}
  100% {width:40px; height:20px; background-color:#40A040;}
}

@keyframes pop-lvl3 {
  0%  { width:0px; height:20px; background-color:#40C040; }
  80%  {width:40px; height:20px;  background-color:#40C040;}
  90%  {width:40px; height:30px;  background-color:#AAFFAA;}
  100% {width:40px; height:20px;  background-color:#40C040;}
}

@keyframes pop-lvl4 {
  0%  { width:0px; height:20px; background-color:#40E040; }
  80%  {width:40px; height:20px;  background-color:#40E040;}
  90%  {width:40px; height:30px;  background-color:#AAFFAA;}
  100% {width:40px; height:20px;  background-color:#40E040;}
}

@keyframes pop-lvl5 {
  0%  { width:0px; height:20px; background-color:#40E040; }
  80%  {width:40px; height:20px;  background-color:#40E040;}
  90%  {width:40px; height:30px;  background-color:#AAFFAA;}
  100% {width:40px; height:20px;  background-color:#40F040;}
}


@keyframes pop-lvl1-blue {
  0%  {width:0px; height:20px; background-color:#0088AA; }
  80%  {width:40px; height:20px; background-color:#0088AA;}
  90%  {width:40px; height:30px; background-color:#0088FF;}
  100% {width:40px; height:20px; background-color:#0088AA;}

}

@keyframes pop-lvl2-blue {
  0%  {width:0px; height:20px; background-color:#00AAD4; }
  80%  {width:40px; height:20px; background-color:#00AAD4;}
  90%  {width:40px; height:30px; background-color:#00AAFF;}
  100% {width:40px; height:20px; background-color:#00AAD4;}
}

@keyframes pop-lvl3-blue {
  0%  { width:0px; height:20px; background-color:#00CCFF; }
  80%  {width:40px; height:20px;  background-color:#00CCFF;}
  90%  {width:40px; height:30px;  background-color:#00FFFF;}
  100% {width:40px; height:20px;  background-color:#00CCFF;}
}

@keyframes pop-lvl4-blue {
  0%  { width:0px; height:20px; background-color:#2AD4FF; }
  80%  {width:40px; height:20px;  background-color:#2AD4FF;}
  90%  {width:40px; height:30px;  background-color:#BBFFFF;}
  100% {width:40px; height:20px;  background-color:#2AD4FF;}
}

@keyframes pop-lvl5-blue {
  0%  { width:0px; height:20px; background-color:#2AD4FF; }
  80%  {width:40px; height:20px;  background-color:#2AD4FF;}
  90%  {width:40px; height:30px;  background-color:#FFFFFF;}
  100% {width:40px; height:20px;  background-color:#71e3ff;}
}

@keyframes exemple1-move {
  50% {top:10px; left:10px ; }
  100% {top:105px; left:10px ; }

}


@keyframes exemple1-description-move{
  50% {top:20px; }
  100% {top:105px;  }

}

@keyframes exemple2-move {
  50% {top:10px; left:10px ; }
  100% {top:180px; left:10px ; }

}


@keyframes exemple2-description-move{
  50% {top:20px; }
  100% {top:180px;  }

}
