/* ALL */

body{
	font-family: 'Lato', sans-serif;
}

h1,h2,h3,h4,h5,h6{
	font-weight: bold;
}

h1{
	text-transform: uppercase;
}

img{
	max-width: 100%;
	height: auto;
}

section{
	padding: 45px 0 80px 0;
}

section .heading{
	text-align: center;
	padding-bottom: 40px;
}

section .heading h2{
	text-transform: uppercase;
}

.red-devider{
	width: 100px;
	height: 2px;
	background: #d82c2e;
	margin: 0 auto;
}

.white-devider{
	width: 100px;
	height: 2px;
	background: white;
	margin: 0 auto;
}

ul,ol
{
	list-style:none;
}

.ptnav{
	font-weight: bold;
}

.button1{
	font-weight: bold;
	text-transform: uppercase;
	color: white;
	border: 1px solid white;
	margin-top: 20px;
	padding: 18px 50px;
	border-radius: 3px;
	display: inline-block;
	transition: all 0.5s ease;
	background: transparent;
}

.button1:hover{
	background: white;
	color: #d82c2e;
	text-decoration: none;
}

a.disabled{
	pointer-events: none;
	cursor: default;
}




/*SelectLanguage*/
#selectLanguage{
	position:fixed;
	top: 7px;
	right: 8px;
	float: right;
}

#selectLanguage .btn{
	color: white;
	background-color: #d82c2e;
}

@media screen and (max-width: 767.5px){
	#selectLanguage{
		left: 8px !important;
	}
}



/* MENU */
.navbarTitle{
	padding-top: 25%;
	margin-top: -16%;
	font-weight: bold;
	color: lightgrey;
	text-shadow: 1px 1px 1px black;
}

.navbar{
	padding: 0;
	background: #d82c2e;
	font-size: 12px;
	letter-spacing: 4px;
	text-transform: uppercase;
	font-weight: bold;
}

.navbar .navbar-nav{
	display: inline-block;
	float: none;
	vertical-align: top;
}

.navbar .navbar-collapse{
	text-align: center;
}

.navbar-toggle{
	text-align: left;
}

.navbar li a{
	color: white !important;
	transition: all 0.25s ease;
}

.navbar-nav li a:hover, .navbar-nav li.active a{
	color: #d82c2e !important;
	background-color: white !important;
}

.navbar-default .navbar-toggle{
	border-style: none;
	float: right;
}

.navbar-default .navbar-toggle:hover{
	color: #d82c2e;
}

.icon-bar{
	background-color: white !important;
}

.navbar-header a{
	color: white !important;
	margin-top: 50%;
	float: left;
	left:0;
	position: fixed;
}

.navbar-brand{
	transition: all 0.5s ease;
	
}

.navbar-brand:hover{
	transform: rotate(1440deg);
	/*animation: rotateCD 0.2s linear infinite;*/
}

@keyframes rotateCD{
	0% {transform:rotate(0deg)}
	100% {transform:rotate(360deg)}
}

#navLogoFit{
	display: none;
	margin-top: 0 !important
}

@media screen and (max-width: 767.5px){
	#navLogoLarge{
		display:none;
	}
	
	#navLogoFit{
		display: block;
	}
}

.workInProgress{
	position: relative;
	z-index: 999999999999999999;
	top: 1px;
	right: 1px;
	background:url('images/vector/rubalise chantier.jpg') top left repeat-x;
	height:10px;
	width: 14px;
}




/* ABOUT */
#about{
	padding-top: 80px;
	background: #d82c2e;
}

.profile-picture{
	text-align: center;
	margin: 0 auto;
	float: none;
}

.me{
	text-align: justify;
	/*margin: 0 auto;*/
	float: none;
	padding: 20px 0 0 0;
	color: white;
}

.me p{
	font-size: 15px;
}

#about .heading h1{
	color: white;
}

#about .heading h3{
	color: black;
	
}

#about ::selection{
	color: #d82c2e;
	background: white;
}





/* SKILLS */
#skills{
	background: white;
}

#skills .heading h2{
	color: #d82c2e;
	text-transform: uppercase;
}

#skills h3{
	padding-bottom: 20px;
}

#skills .progress{
	height: 16%;
	margin: 30px 20px;
	background: #ddd;
}

#skills .progress-bar{
	background: #d82c2e;
}

#skills .progress h5{
	text-shadow: 1px 1px 1px black;
}

.skillsRate{
	font-size: 10px;
}


.infoSkills{
	position: relative;
	display: inline-block;
}

.infoSkills .badgeSkills {
  position: absolute;
	z-index: 1;
  top: -5px;
  right: -5px;
  border-radius: 50%;
  background-color: red;
  color: white;
  height:14px;
  width: 14px;
}


.tooltipOffice {
	position: relative;
	display: inline-block;
}

.tooltipOffice .tooltiptextOffice {
	visibility: hidden;
	width: 200px;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 10px 0;
	margin-left : 10px;

	/* Position the tooltip */
	position: absolute;
	z-index: 2;

	top: -5px;
	left: 105%;
}

.tooltipOffice:hover .tooltiptextOffice {
	visibility: visible;
}

.tooltipOffice .tooltiptextOffice::after { /*flèche à gauche sur l'exemple de https://www.w3schools.com/css/tryit.asp?filename=trycss_tooltip*/
	content: " ";
	position: absolute;
	top: 20%;
	right: 100%; /* To the left of the tooltip */
	margin-top: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent black transparent transparent;
}


.tooltipPS {
	position: relative;
	display: inline-block;
}

/* Tooltip text */
.tooltipPS .tooltiptextPS {
	visibility: hidden;
	background-color: black;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	border-radius: 6px;

	/* Position the tooltip text - see examples below! */
	position: absolute;
	z-index: 2;
	
	width: 180px;
	top: 100%;
	left: 50%; 
	margin-left: -140px; /* Use half of the width (120/2 = 60), to center the tooltip */
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltipPS:hover .tooltiptextPS {
	visibility: visible;
}

.tooltipPS .tooltiptextPS::after {
  content: " ";
  position: absolute;
  bottom: 100%;  /* At the top of the tooltip */
  left: 79%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}


.tooltipCpp {
	position: relative;
	display: inline-block;
}

/* Tooltip text */
.tooltipCpp .tooltiptextCpp {
	visibility: hidden;
	background-color: black;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	border-radius: 6px;

	/* Position the tooltip text - see examples below! */
	position: absolute;
	z-index: 2;
	
	width: 180px;
	top: 100%;
	left: 50%; 
	margin-left: -90px; /* Use half of the width (120/2 = 60), to center the tooltip */
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltipCpp:hover .tooltiptextCpp {
	visibility: visible;
}

.tooltipCpp .tooltiptextCpp::after {
  content: " ";
  position: absolute;
  bottom: 100%;  /* At the top of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}


.skillsdivider:before
{
    top: 0;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 3px;
    background-color: #333;
    left: 50%;
    margin-left: -1.5px;
}

@media screen and (max-width: 767.5px){
	.skillsdivider:before{
		display: none
	}
}

.attent{
	color: red;
	font-weight: bold;
	
}

.tagLangue{
	border: solid 1px black;
	border-radius: 50px;
}

.tooltipAng {
	position: relative;
	display: inline-block;
}

/* Tooltip text */
.tooltipAng .tooltiptextAng {
	visibility: hidden;
	background-color: black;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	border-radius: 6px;

	/* Position the tooltip text - see examples below! */
	position: absolute;
	z-index: 2;
	
	width: 270px;
	top: 100%;
	left: 50%; 
	margin-left: -135px; /* Use half of the width (120/2 = 60), to center the tooltip */
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltipAng:hover .tooltiptextAng {
	visibility: visible;
}

.tooltipAng .tooltiptextAng::after {
  content: " ";
  position: absolute;
  bottom: 100%;  /* At the top of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}

#skills ::selection{
	color: white;
	background: #d82c2e;
}



#skills svg{
	width: 50px;
}


#skills .svgInToolTip svg{
	width: 40px !important;
}






/* EXPERIENCE */
#experience
{
    background: #d82c2e;
}
#experience .heading h2
{
    color: #fff;
}

#experience h3{
	text-transform: uppercase;
}

.timeline
{
    padding: 30px 10px;
    position: relative;
}
.timeline:before
{
    top: 0;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 5px;
    background-color: #333;
    left: 50%;
    margin-left: -2.3px;
}
.timeline > li
{
    margin-bottom: 20px;
    position: relative;
}
.timeline > li:after
{
    clear: both;
}
.timeline > li:before, .timeline > li:after
{
    content: " ";
    display: table;
}
.timeline li .timeline-badge
{
    color: #d82c2e;
    width: 50px;
    line-height: 50px;
    font-size: 20px;
    text-align: center;
    position: absolute;
    top: 16px;
    left: 50%;
    margin-left: -25px;
    background-color: #ddd;
    border-radius: 50%;
}
.timeline-panel-container
{
    width: 50%;
    float: left;
}
.timeline-panel-container-inverted
{
    width: 50%;
    float: right;
}
.timeline-panel
{
    width: 90%;
    float: right;
    margin-right: 40px;
    border: 1px solid #d4d4d4;
    border-radius: 7px;
    padding: 20px 25px;
    position: relative;
    box-shadow: 0 1px 6px rgba(0,0,0, 0.175);
    background: #fff;
}
.timeline-panel-container-inverted .timeline-panel
{
    float: left;
    margin-left: 40px;
}

.timeline-panel:after
{
    position:absolute;
    top: 27px;
    right: -14px;
    display:inline-block;
    border-top: 14px solid transparent;
    border-left: 14px solid #fff;
    border-right: 0 solid #fff;
    border-bottom: 14px solid transparent;
    content: " ";
}
.timeline-panel-container-inverted .timeline-panel:after
{
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
}
.timeline-heading h3
{
    margin-top: 5px;
    font-size: 20px;
}
.timeline-heading h4
{
     color: #d82c2e;
}

.ptnav{
	color: #d82c2e;
}

.tasks{
	list-style: circle;
	margin-left: -20px;
}


@media screen and (max-width: 767.5px){
	.timeline:before{
		left:100%;
    	margin-left: -27.5px;
		visibility: hidden !important;
	}
	.timeline li .timeline-badge{
		left: 100%;
	}
	.timeline-panel-container{
		width: 100%
	}
	.timeline-panel-container-inverted{
		float: left;
		width: 100%
	}
	.timeline-panel-container-inverted .timeline-panel{
		width: 90%;
		float: right;
		margin-right: 40px;
		border: 1px solid #d4d4d4;
		border-radius: 7px;
		padding: 20px 25px;
		position: relative;
		box-shadow: 0 1px 6px rgba(0,0,0, 0.175);
		background: #fff;
	}
	.timeline-panel-container-inverted .timeline-panel:after{
		position:absolute;
		top: 27px;
		right: -14px;
		display:inline-block;
		border-top: 14px solid transparent;
		border-left: 14px solid #fff;
		border-right: 0 solid #fff;
		border-bottom: 14px solid transparent;
		content: " ";
		left : 100%
	}
}

#experience ::selection{
	color: #d82c2e;
	background: white;
}

#experience .accordion{
	color : #d82c2e;
	padding: 0 2px;
	border-radius: 4px;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	transition: ease 0.30s all;
}

#experience .accordion:hover{
	background-color : #d82c2e;
	color:white;
	cursor: pointer;
}

#experience .accordion i{
	color: #d82c2e;
	transition: ease 0.30s all;
}

#experience .accordion:hover i{
	transform: rotate(180deg);
	color: white;
}

#experience .accordionContent hr{
	background-color: #d82c2e;
	margin-top: -6px
}

#experience .accordionContent{
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

#ulys-soft-logo-link > svg > path{
	transition: all 0.2s
}

#ulys-soft-logo-link:hover > svg > path{
	fill: #d82c2e;
}






/* EDUCATION */
#education{
	background: white;
}

#education .heading h2{
	color: #d82c2e;
}

.education-block{
	width: 80%;
	margin: 0 auto;
	text-align: center;
	padding: 30px;
	background: #ddd;
	border-radius: 10px;
	border: 2px solid #ccc;
	margin-bottom: 20px;
}

.education-block h5{
	color: #888;
	font-size: 15px;
	margin-bottom: 15px;
}

.education-block .glyphicon{
	font-size: 40px;
	margin-right: 3px
}

.education-block h3{
	color: #d82c2e;
}

.education-block h4{
	margin-bottom: 20px;
}

.education-block p{
	font-weight: bold;
}

.education-block .red-devider{
	margin-bottom: 20px;
}

#education ::selection{
	color: white;
	background: #d82c2e;
}






/* PORTFOLIO */
#portfolio{
	background: #d82c2e;
}

#portfolio .heading h2{
	color: white;
}

#portfolio .thumbnail{
	margin-bottom: 2.5px;
	margin-top: 5px;
}



#portfolio .thumbnail img{
	width: 100%;
	height: 100%;
	-webkit-filter: greyscale(100%);
}

#portfolio .thumbnail img:hover{
	filter: none;
	filter: grayscale(100%);
	-webkit-filter:greyscale(100%);
}

#portfolio .heading .ptnav{
	color: white;
	text-transform: uppercase;
}

#portfolio .heading .ptnav:hover{
	cursor: pointer;
}

/********* Superposition simple de texte sur une image *******/
/* Conteneur principal */
.overlay-image {
 position: relative;
 width: 100%;
 margin-top: 10px;
 margin-bottom: 10px;
}
/* Image originale */
.overlay-image .image {
	display: block;
	width: 100%;
	height: auto;
	transition:all 0.5s ease;
}
/* Texte original */
.overlay-image .text {
	color: #fff;
	font-size: 30px;
	line-height: 1.5em;
	text-shadow: 2px 2px 2px #000;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

/* Overlay */
.overlay-image .hover {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: .5s ease;
}
/* Apparition overlay sur passage souris */
.overlay-image:hover .hover {
	opacity: 1;
}

.overlay-image:hover .image{
	filter: grayscale(100%);
}

.overlay-image .normal {
	transition: .25s ease;
}
.overlay-image:hover .normal {
	opacity: 0;
}

#portfolio ::selection{
	color: #d82c2e;
	background: white;
}

#portfolio .indProj{
	font-size: 25px;
	color: white !important;
	height: 30px;
	transition: all 0.125s ease;
}

#portfolio .defProj{
	background: white !important;
	border-radius: 10px;
	color: #333 !important;
	margin-bottom: 15px;
}

.defProj h4{
	color: #d82c2e;
}

.thumbnail:hover{
	cursor: pointer;
}






/* VT */
#VT h2{
	color: #d82c2e;
}

.btn-VT{
	font-weight: bold;
	text-transform: uppercase;
	color: #d82c2e;
	border: 1px solid #d82c2e;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 5px 10px;
	border-radius: 3px;
	display: inline-block;
	transition: all 0.2s ease;
	background: transparent;
}

.btn-VT:hover{
	background: #d82c2e;
	color: #fff;
	text-decoration: none;
}

#VT .thumbnail{
	background: #d82c2e;
}

#VT .thumbnail img{
	width: 100%;
	height: 100%;
	transition: ease 0.2s all;
}

#VT .thumbnail img:hover{
	filter: none;
	filter: grayscale(100%);
	-webkit-filter:greyscale(100%);
}

#VT .indProj{
	font-size: 25px;
	color: #d82c2e !important;
	height: 30px;
	transition: all 0.125s ease;
}

#VT .defProj{
	background: #fff;
	border-radius: 10px;
	border: solid 2px #d82c2e;
}

#VT .defProj a{
	color: #d82c2e;
	font-weight: bold;
}

#VT .ptnav{
	color: lightgrey;
}

#VT .text-muted{
	color: #8A8A8A !important;
}

#VT .overlay-image:hover{
	cursor: pointer;
}

#VT h3
{
    margin-top: 5px;
    font-size: 20px;
}

#VT h4
{
     color: #d82c2e;
}

.titlePart {
	color: #d82c2e !important;
	font-weight: bold;
	margin: 20px 0 2px 0;
}

.tasks{
	list-style: circle;
	margin-left: -20px;
}

#VT ::selection{
	color: #fff;
	background: #d82c2e;
}

.chantier-rubalise-top{
	background:url('./../images/vector/rubalise_chantier.svg') top left repeat-x; height:10px;
	/* margin-bottom:20px;*/;
	border-radius:10px 10px 0 0;
}

.chantier-rubalise-bottom{
	background:url('./../images/vector/rubalise_chantier.svg') top left repeat-x;
	height:10px;
	border-radius:0 0 10px 10px;
}

.chantier-title{
	width:100%;
	text-align:center;
	padding: 20px 0 20px 0;
	background-color:black;
	color:#dae500;
	text-transform: uppercase;
	font-weight:bold;
}

.chantier{
	background:black;
	width:100%;
	margin-left:0px;
}

.nav .btn-chantier{
	background:black;
	color:#dae500 !important;
	pointer-events:none;
}



/* CONTACT */
#contact{
	/* background: #d82c2e; */
	background: white;
}

#contact .heading h2
{
	/* color: white; */
	color: #d82c2e;
}
#contact-form
{
    font-size: 20px;
    background: #d82c2e;
    padding: 40px;
    border-radius: 10px;
	color: white;
}

/*---  NEW  ------*/
.blue
{
    /*color: #0069d6;*/
	color:yellow;
}
.form-control
{
    height: 50px;
    font-size: 18px;
}
#contact-form input[type=submit]
{
    margin: 40px auto 0px;
    display: block;
}
.comments
{
    font-style: italic;
    font-size: 18px;
    color: white;
    height: 25px
}
#contact-form .thank-you
{
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
    font-size: 22px;
}

#contact ::selection{
	color: #d82c2e;
	background: white;
}



/* A PART CA */
#other{
	background-color: #d82c2e;
}

#other .heading h2, h5{
	color: white;
}

#other .descriptionGroup{
	border-top: solid 1px white;
	border-radius: 10px;
	margin-bottom: 50px;
}

#other a:hover{
	cursor: pointer;
}

#other a .fillInstaLogoSvg{
	transition: ease 0.2s all;
}

#other a:hover .fillInstaLogoSvg{
	fill: black;
}

#other .accolade-custom{
	--widthAccolade: width;
}

#other .accolade-custom .accolade-top-left{
	height:10px;
	width:10px;
	border-bottom: solid 1px #d82c2e;
	border-right: solid 1px #d82c2e;
	border-radius: 0 0 10px;
	position: relative;
}

#other .accolade-custom .accolade-top-right{
	height:10px;
	width:10px;
	border-bottom: solid 1px #d82c2e;
	border-left: solid 1px #d82c2e;
	border-radius: 0 0 0 10px;
	position: relative;
	top: -10px;
	left: 9px
}


#myCarousel .item{
	height: 600px;
}

.carousel-control.left, .carousel-control.right{
	background-image: none;
	color: #d82c2e
}

.carousel-indicators{
	bottom: 0px;
}

.carousel-indicators li{
	border-color: #d82c2e;
	max-width: 10px;
	max-height: 12px;
}

.carousel-indicators li.active{
	background-color: #d82c2e;
	max-height: 12px;
	max-width: 12px;
}

#myCarousel .item{
	padding: 40px 30px;
}

#myCarousel .item h3{
	color: #d82c2e;
	/*mix-blend-mode:	difference;*/
}

#myCarousel .item h4{
	/*color: #FFF;*/
	/*mix-blend-mode: difference;*/
}

#other ::selection{
	color: white;
	background: #d82c2e;
}





/* FOOTER */
footer{
	background: #333;
	padding: 20px 0 40px;
}

footer .glyphicon{
	font-size: 25px;
	margin: 20px;
	color: #d82c2e;
	height: 30px;
	transition: all 0.125s ease;
}

footer .glyphicon:hover{
	font-size: 30px;
	color : white
}

footer h5{
	color: white;
	font-weight: normal;
	text-transform: uppercase;
}

.logoRed{
	display: inline-block;
	width: 60px;
	padding: 0 5px;
	margin: 0 auto;
	transition: all 0.125s ease;
}








/*SCROLLBAR*/
::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  	/*background: #888;*/
	background: #d82c2e;
	border-left: 1px solid #f1f1f1;
	border-right: 1px solid #f1f1f1;
	
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #99191b; 
}






.myNameFooter a{
	font-family: 'CD-Font';
	color: #d82c2e;
	font-size: 30px;
	text-decoration: none;
	transition: ease 0.2s all;
}

.myNameFooter a:hover{
	color: white;
}


@font-face{
	font-family: 'CD-Font';
	src: url("../fonts/AvenirNextLTPro-Bold.otf");
}
