.text-slider-items {
  display: none;
}
.text-slider {
  font-size: 20px;
}
.typed-cursor {
  font-size: 20px;
}

* {
    box-sizing: border-box;
}

/* The browser window */
.fakeWindow_container {
    border: 3px solid rgba(20,20,20,1);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

/* Container for columns and the top "toolbar" */
.fakeWindow_row {
    padding: 10px;
    background: rgba(20,20,20,1);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

/* Create three unequal columns that floats next to each other */
.fakeWindow_column {
    float: left;
}

.fakeWindow_left {
    width: 15%;
}

.fakeWindow_right {
    width: 10%;
}

.fakeWindow_middle {
    width: 75%;
}

/* Clear floats after the columns */
.fakeWindow_row:after {
    content: "";
    display: table;
    clear: both;
}

/* Three dots */
.fakeWindow_dot {
    margin-top: 4px;
    height: 12px;
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

/* Style the input field */
.fakeWindow_input {
    width: 100%;
    border-radius: 3px;
    border: none;
    background-color: white;
    margin-top: -8px;
    height: 25px;
    color: #666;
    padding: 5px;
}

/* Three bars (hamburger menu) */
.fakeWindow_bar {
    width: 17px;
    height: 3px;
    background-color: #aaa;
    margin: 3px 0;
    display: block;
}

/* Page content */
.fakeWindow_content {
    padding: 10px;
    background: rgba(50,50,50,1);
}

input.fakeWindow_input{
  height: 32px !important;
}




.project_role {
  margin-bottom: 1rem;
}
.project_role_label {
  text-decoration: underline;
  font-weight: bold;
}

.competence_icon {
  text-align: center;
}

.projects_list_logo {
  text-align: center;
  width: 150px;
  height: 150px;
}

/* Mini Contact img with name */
.chip {
    display: inline-block;
    padding: 0 25px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    border-radius: 25px;
    background-color: rgba(50,50,50,1);
}

.chip img {
    float: left;
    margin: 0 10px 0 -25px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
}







/* Timeline */
* {
  box-sizing: border-box;
}

/* The actual timeline (the vertical ruler) */
.timeline_timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline_timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: white;
  top: 0;
  bottom: 0;
  left: 50.7%;
  margin-left: -3px;
}

/* Container around content */
.timeline_container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.timeline_container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid rgba(255,255,255,0.075);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.timeline_left {
  left: 0;
}

/* Place the container to the right */
.timeline_right {
  left: 51.4%;
}

/* Add arrows to the left container (pointing right) */
.timeline_left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid rgba(255,255,255,0.075);
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent rgba(255,255,255,0.075);
}

/* Add arrows to the right container (pointing left) */
.timeline_right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid rgba(255,255,255,0.075);
  border-width: 10px 10px 10px 0;
  border-color: transparent rgba(255,255,255,0.075) transparent transparent;
}

/* Fix the circle for containers on the right side */
.timeline_right::after {
  left: -16px;
}

/* The actual content */
.timeline_content {
  padding: 20px 30px;
  background-color: rgba(255,255,255,0.075);
  position: relative;
  border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media all and (max-width: 600px) {
/* Place the timelime to the left */
  .timeline_timeline::after {
    left: 31px;
  }

/* Full-width containers */
  .timeline_container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

/* Make sure that all arrows are pointing leftwards */
  .timeline_container::before {
    left: 60px;
    border: medium solid rgba(255,255,255,0.075);
    border-width: 10px 10px 10px 0;
    border-color: transparent rgba(255,255,255,0.075) transparent transparent;
  }

/* Make sure all circles are at the same spot */
  .timeline_left::after, .timeline_right::after {
    left: 15px;
  }

/* Make all right containers behave like the left ones */
  .timeline_right {
    left: 0%;
  }
}




/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
    cursor: help;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    padding: 3px 3px 3px 3px;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}
.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}
.tooltip .tooltiptext {
    width: 150px;
    bottom: 100%;
    left: 50%;
    margin-left: -75px; /* Use half of the width (150/2 = 75), to center the tooltip */
}
.tooltip .tooltiptext {
    opacity: 0;
    transition: opacity 1s;
}

.tooltip:hover .tooltiptext {
    opacity: 1;
}








.contact_card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 300px;
    margin: auto;
    text-align: center;
    background-color: rgba(50,50,50,1);
}

.contact_title {
    color: grey;
    font-size: 18px;
}

.contact_button{
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
    border-radius: 0px;
    box-shadow: inset 0 0 0 0px #ffffff;
    text-transform: none;
    height: auto;
    transition: none;
    margin-bottom: 0;
}

a .contact_a {
    text-decoration: none;
    font-size: 22px;
    color: black;
}

.contact_button:hover, .contact_a:hover {
    opacity: 0.7;
}




/* Agrandissement d'image quand hover by bibi */
.img_hover_bigger:hover /* Fade in */
{
  -webkit-transform:scale3d(1.25, 1.25, 1.25); /* Safari and Chrome */
  -moz-transform:scale3d(1.25, 1.25, 1.25); /* Firefox */
  -ms-transform:scale3d(1.25, 1.25, 1.25); /* IE 9 */
  -o-transform:scale3d(1.25, 1.25, 1.25); /* Opera */
  transform:scale3d(1.25, 1.25, 1.25);

  -webkit-transition: 1s ease-in-out;
  -moz-transition: 1s ease-in-out;
  -o-transition: 1s ease-in-out;
  transition: 1s ease-in-out;


}
.img_hover_bigger /* Fade out */
{
  -webkit-transform:scale3d(1, 1, 1); /* Safari and Chrome */
  -moz-transform:scale3d(1, 1, 1); /* Firefox */
  -ms-transform:scale3d(1, 1, 1); /* IE 9 */
  -o-transform:scale3d(1, 1, 1); /* Opera */
  transform:scale3d(1, 1, 1);

  -webkit-transition: 0.75s ease-in-out;
  -moz-transition: 0.75s ease-in-out;
  -o-transition: 0.75s ease-in-out;
  transition: 0.75s ease-in-out;
}






/* iPhone 6S */

.blocsapp-device-iphone6{
	background-repeat:no-repeat;
	background-size:contain;
	background-position:center;
	display: block;
	width:100%;
	height:auto;
	padding: 18%;
}
.blocsapp-device-iphone6 img{
	width:100%;
	height:auto;
	margin: 0 auto;
}
.blocsapp-device-iphone6.iphone6-space-grey{
	background-image:url("../../images/Apple-iPhone-6s-Space-Gray.png");
}
.img-responsive-iphone
{display:block;max-width:100%;height:auto}










/* Perso */

.major {
  max-width: 100% !important;
  overflow-wrap: break-word;
}

@media all and (max-width: 500px) {
/* Place the timelime to the left */
  .projects_list_logo {
    display: none;
  }
  .text_with_rounded_img {
    width: 100%;
    height: auto !important;
    float: left;
  }
  .td_of_img {
    height: auto;
    width: 0px !important;
    padding: 0 !important;
  }
}

@media all and (max-width: 500px) {
  .hideWhenScreenSmall {
    display: none;
  }
}


/* Margin top */
.mt-0 { margin-top:0 !important }
.mt-1 { margin-top:.25rem !important }
.mt-2 { margin-top:.5rem !important }
.mt-3 { margin-top:1rem !important }
.mt-4 { margin-top:1.5rem !important }
.mt-5 { margin-top:3rem !important }
.mt-6 { margin-top:4.5rem !important }
.mt-7 { margin-top:6rem !important }
.mt-auto { margin-top:auto !important }

/* Margin bottom */
.mb-0 { margin-bottom:0 !important }
.mb-1 { margin-bottom:.25rem !important }
.mb-2 { margin-bottom:.5rem !important }
.mb-3 { margin-bottom:1rem !important }
.mb-4 { margin-bottom:1.5rem !important }
.mb-5 { margin-bottom:3rem !important }
.mb-6 { margin-bottom:4.5rem !important }
.mb-7 { margin-bottom:6rem !important }
.mb-auto { margin-bottom:auto !important }

/* Margin left */
.ml-0 { margin-left:0 !important }
.ml-1 { margin-left:.25rem !important }
.ml-2 { margin-left:.5rem !important }
.ml-3 { margin-left:1rem !important }
.ml-4 { margin-left:1.5rem !important }
.ml-5 { margin-left:3rem !important }
.ml-6 { margin-left:4.5rem !important }
.ml-7 { margin-left:6rem !important }
.ml-auto { margin-left:auto !important }

/* Margin right */
.mr-0 { margin-right:0 !important }
.mr-1 { margin-right:.25rem !important }
.mr-2 { margin-right:.5rem !important }
.mr-3 { margin-right:1rem !important }
.mr-4 { margin-right:1.5rem !important }
.mr-5 { margin-right:3rem !important }
.mr-6 { margin-right:4.5rem !important }
.mr-7 { margin-right:6rem !important }
.mr-auto { margin-right:auto !important }
