/* -------------------------------- 

Primary style

-------------------------------- */
/*

  Title: Fullscreen Menu with jQuery and Flexbox
  Author: Steven Roberts

  Code from last months tutorial - Beautiful responsive layouts with Flexbox

  We're using this as a base. Scroll down to see the new code!

*/

/* Import Sanatize to reset browser defaults - Short URL(http://srt.lt/Q6P0nY) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/sanitize.css/2.0.0/sanitize.min.css');

/* Import Roboto and Roboto-slab from Google Fonts - Short URL (http://srt.lt/b4tY7) */
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:700|Roboto:300');

/* Import Font Awesome - Short URL (http://srt.lt/p2b4) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

*,
*::before,
*::after {
  box-sizing: border-box; /* Put padding on the inside of elements */
}

.aside{
  position: fixed;
  margin-top: 50px;
}
.fullscreen-menu__nav{
  position: inherit;
}

.card {
  display: flex; /* Sets entrire card element to be a flex container */
  flex-direction: column; /* Forces elements to align along the vertical axis */

  max-width: 62rem; /* Base-spacing-unit multiplied 35 */
  min-height: 75vh; /* Always at least 75% of the viewport */

  background-color: white; /* Set background colour of our content card */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Add a subtle drop shadow */
}
.card__image-container{
  position: fixed;
  z-index: 90;
}




  .card__footer {
    margin-top: 2rem; /* Create a bit of space between the content and the footer */
    text-align: right; /* Align the contents of the footer to the right */
  }

  .card__body {
    flex: 1 1 auto; /* Same as flex:1; */
  }

  /* The flex properties of the card header, footer and body allows the footer to always be at the bottom of the container */

  .card__title {
    margin-top: 0; /* Remove margin as there are no elements above it */
  }

@media only screen and (min-width: 53rem) { /* Base-spacing-unit * 30 */

  .card {
    flex-direction: row; /* Align items along the horizontal axis */
    min-height: 60vh;
  }


    .card__contents {
      flex: 1 1 55%; /* Grow, Shrink, 55% width */
      padding: 3rem; /* Increase padding now we have more space to play with */
    }

}



/* Social icons based on: codepen.io/matchboxhero/pen/onzkC */

[class^="icon--"] {
    font-family: 'FontAwesome'; /* Apply icon font */
    font-style: normal; /* Removes the default italics */
}

[class^="social-button"] {
    display: inline-flex; /* Display elements inline but turn them into a flex-container */
  align-items: center; /* Centrally align the children vertically */
  justify-content: center; /* Centrally align the children horizontally */

    height: 3rem; /* Create square */
    width: 3rem; /* Create square */

    font-size: 1.4rem; /* Increase the default font size */
    color: white; /* Make icon white */
    border-radius: 50%; /* Create circle */

    text-decoration: none; /* Remove default underline */

    transition: background-color 150ms ease-in-out; /* Transition background colour on hover */

    margin-right: 0.1rem;
}

.icon--linkedin::before {
    content: '\f0e1'; /* Unicode value for the twitter icon in our chosen icon font */
}

.icon--facebook::before {
    content: '\f0e1'; /* Unicode value for the facebook icon in our chosen icon font */
}

.icon--pintrest::before {
    content: '\f231'; /* Unicode value for the pintrest icon in our chosen icon font */
}

.social-button--linkedin {
    background-color: #00a0dc; /* Twitter colour */
}

.social-button--twitter:hover {
    background-color: #2a9dc4; /* Twitter hover colour */
}

.social-button--linkedin {
    background-color: #4b70ab; /* Facebook colour */
}

.social-button--facebook:hover {
    background-color: #3f5f91; /* Facebook hover colour */
}

.social-button--pintrest {
    background-color: #d63533; /* Pintrest colour */
}

.social-button--pintrest:hover {
    background-color: #b52d2b; /* Pintrest hover colour */
}



/*

  Start New Code For Menu

*/

/* Menu Button */

.menu-button {
  display: flex; /* Display flex to center the menu icon in the button */
  justify-content: center; /* Align horizontally */
  align-items: center; /* Align vertically */
  width: 4rem; /* Button width */
  height: 4rem; /* Button height */
  border-radius: 50%; /* Make the button a circle */
  margin-top: 20px;
  background-color: #777777; /* Make the background white and semi-transparent */
  cursor: pointer;
  transition: background-color 500ms ease-in-out; /* Add transition for the background-color */
}

.card__image-container .menu-button {
  margin: 1.5rem;
  margin-top: 30px;
}

.menu-button:hover,
.menu-button:focus,
.menu-button:active {
    background-color: #00aeef; /* On hover, transition the background-color and transparency */
}

.menu-icon {
  position: relative; /* Give the menu-icon position relative so we can absolutely position children */
    width: 2rem; /* Icon width */
  height: 1.5rem; /* Icon height */
}

.menu-icon span {
    position: absolute; /* Absolutely position all children of the menu-icon */
    height: 0.125rem; /* Height of each line in our menu button */
    width: 100%; /* With of each line */
    background-color: #332F21; /* Background colour of each line */
    transition: background-color 500ms ease-in-out; /* Transition added for the background colour */
    z-index: 90;
}

.menu-icon span:nth-child(1) {
    top: 0.0625rem; /* Position the first line roughly 1px from the top */
}

.menu-icon span:nth-child(2) {
    top: 0.625rem; /* Position the second line roughly 10px from the top, one on top of the other */
}

.menu-icon span:nth-child(3) {
    top: 1.25rem; /* Position the fourth line roughly 20px from the top */
}

.menu-button:hover span,
.menu-button:focus span,
.menu-button:active span {
    background: white; /* On hover, make the background-color of the menu icon white */
}

/* Turn the Menu icon into a close icon  */

.menu-icon.is-active span:nth-child(1) {
    opacity: 0; /* Hide the first line */
}

.menu-icon.is-active span:nth-child(2) {
    transform: rotate(45deg); /* Rotate the second line 45 degrees */
}

.menu-icon.is-active span:nth-child(3) {
  top: 0.625rem; /* Position the third line over the second line */
    transform: rotate(-45deg); /* Rotate the third line -45 degrees */
}

/* Fullscreen Menu */

.fullscreen-menu-container {
  position: fixed; /* Fix the menu to the viewport */
  top: 12.5rem; /* Add the top value to allow the element to animate up over */
  left: 0; /* Position to the left of the viewport */
  z-index: 5; /* Add z-index to make sure the element is always above everything else */
  width: 100vw; /* Cover the whole width of the viewport */
  height: 100vh; /* Cover the whole height of the viewport */
  overflow: scroll; /* Allow scrolling when the content is larger than the viewport */

  background-color: rgba(255,255,255,0.95); /* Semi-transparent white background for the menu-overlay */

  opacity: 0; /* Apply 0 transparency to hide the overlay on load */
  pointer-events: none; /* Stop the elements in the menu-container from being clicked */

  transition: top 500ms ease-in, opacity 300ms ease-in; /* Transition the top and opacity */
}

.fullscreen-menu-container.is-open {
  opacity: 1; /* Transition opacity from 0 to 1 */
  top: 0; /* Transition to the top of the viewport */
  pointer-events: auto; /* Re-add pointer events to elements can be clicked again */
}

.fullscreen-menu-container .menu-button {
  position: absolute; /* Position the button absolutely to the image-cotainer */
  top: 1.5rem; /* Position button from the top */
  right: 1.5rem; /* Position button from the left */
}

.fullscreen-menu {
  text-align: center; /* Apply text-align center to all children */
  max-width: 62rem; /* Maximum width of the content */
  padding: 6rem 2rem 4rem; /* Add padding to the content, large at the top to allow for the close button */
  width: 100%; /* Where it can, stretch to the max-width otherwise, the full viewport */
}


  .fullscreen-menu__title {
    max-width: 30rem; /* Apply a different max-width to the title to achieve a more optimal reading lenght */
    margin: 0 auto; /* Position in the horizontal center and remove top and bottom margins */
  }

  .fullscreen-menu__nav {
    margin: 3rem 0; /* Apply top and bottom margin of the navigation */
  }

  .fullscreen-menu__nav ul {
    list-style: none; /* Remove the dots from list items */
    margin: 0; /* Remove defualt margin */
    padding: 0; /* Remove default padding */
  }

  .fullscreen-menu__nav a {
    display: block; /* Span the whole width */
    font-size: 1.4rem; /* Increase the default font size */
    padding: 1rem; /* Add padding to the button to increase the click/tap area */
    color: #A2A2A2; /* Apply light grey colour */
    text-decoration: none; /* Remove default underline */
    transition: color 300ms ease-in; /* Add transition for the colour on hover */
  }

  .fullscreen-menu__nav a:hover,
  .fullscreen-menu__nav a:focus,
  .fullscreen-menu__nav a:active {
    color: #332F21; /* Darken the text colour on hover */
  }

.fullscreen-menu [class^="social-button"] {
  margin: 0 0.5rem; /* Add a larger margin between the social buttons in the menu overlay */
  height: 3.75rem; /* Increase the size of the social buttons */
    width: 3.75rem; /* Increase the size of the social buttons */
    font-size: 1.5rem; /* Increase the size of the social icon inside the button */
}

@media only screen and (min-width: 46rem) { /* When the viewport is large enough */

  .fullscreen-menu-container {
    display: flex; /* Add display flex to the container */
    justify-content: center; /* Align menu contents to the center horizontally */
    align-items: center; /* Align menu contents to the center vertically */
  }

  .fullscreen-menu {
    padding: 0;
  }

  .fullscreen-menu__nav {
    margin: 4rem 0; /* Increase the margin between the navigation and other elements in the menu */
  }

    .fullscreen-menu__nav ul {
      display: flex; /* Turn the unordered list into a flex-container */
      justify-content: space-between; /* Share the available space between the list items */
    }

}
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-size: 100%;
  font-family: "Helevetica regular", sans-serif;
  color: #777;
  background-color: white;
  margin-top: -20px;
}
body,
html {
  height: 100%;
}
a {
  color: #c4c4c4;
  text-decoration: none;
}
img {
  max-width: 100%;
}

.carousel-inner > .item > img {
  margin-left: 150px;
}
/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
/* -------------------------------- 

Main components 

-------------------------------- */
.cd-section {
  min-height: 100%;
  position: relative;
  padding: 2em 0;
}
.cd-section:nth-of-type(odd) {
  background-color: #3e3947;
}
.cd-section:nth-of-type(odd) p {
  color: #898099;
}
.cd-section:nth-of-type(even) {
  background-color: #745360;
}
.cd-section:nth-of-type(even) p {
  color: #bda3ad;
}
.cd-section h1,
.cd-section p {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 768px;
  text-align: center;
}
.cd-section h1 {
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 20px;
  font-size: 1.25rem;
}
.cd-section p {
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .cd-section h1 {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .cd-section p {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
  }
}
.cd-scroll-down {
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 20px;
  width: 38px;
  height: 44px;
  background: url("../img/cd-arrow-bottom.svg") no-repeat center center;
}
/* No Touch devices */
.cd-nav-trigger {
  display: none;
}
.no-touch #cd-vertical-nav {
  position: fixed;
  right: 40px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
.no-touch #cd-vertical-nav li {
  text-align: right;
}
.no-touch #cd-vertical-nav a {
  display: inline-block;
  /* prevent weird movements on hover when you use a CSS3 transformation - webkit browsers */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.no-touch #cd-vertical-nav a:after {
  content: "";
  display: table;
  clear: both;
}
.no-touch #cd-vertical-nav a span {
  float: right;
  display: inline-block;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6);
}
.no-touch #cd-vertical-nav a:hover span {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.no-touch #cd-vertical-nav a:hover .cd-label {
  opacity: 1;
}
.no-touch #cd-vertical-nav a.is-selected .cd-dot {
  background-color: white;
}
.no-touch #cd-vertical-nav .cd-dot {
  position: relative;
  /* we set a top value in order to align the dot with the label. If you change label's font, you may need to change this top value*/
  top: 8px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #d88683;
  -webkit-transition: -webkit-transform 0.2s, background-color 0.5s;
  -moz-transition: -moz-transform 0.2s, background-color 0.5s;
  transition: transform 0.2s, background-color 0.5s;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.no-touch #cd-vertical-nav .cd-label {
  position: relative;
  margin-right: 10px;
  padding: .4em .5em;
  color: white;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0;
  -webkit-transform-origin: 100% 50%;
  -moz-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}
/* Touch devices */
.touch .cd-nav-trigger {
  display: block;
  z-index: 2;
  position: fixed;
  bottom: 30px;
  right: 5%;
  height: 44px;
  width: 44px;
  border-radius: 0.25em;
  background: rgba(255, 255, 255, 0.9);
}
.touch .cd-nav-trigger span {
  position: absolute;
  height: 4px;
  width: 4px;
  background-color: #3e3947;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.touch .cd-nav-trigger span::before,
.touch .cd-nav-trigger span::after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: inherit;
  border-radius: inherit;
}
.touch .cd-nav-trigger span::before {
  top: -9px;
}
.touch .cd-nav-trigger span::after {
  bottom: -9px;
}
.touch #cd-vertical-nav {
  position: fixed;
  z-index: 1;
  right: 5%;
  bottom: 30px;
  width: 90%;
  max-width: 400px;
  max-height: 90%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
  border-radius: 0.25em;
  background-color: rgba(255, 255, 255, 0.9);
}
.touch #cd-vertical-nav a {
  display: block;
  padding: 1em;
  border-bottom: 1px solid rgba(62, 57, 71, 0.1);
}
.touch #cd-vertical-nav a span:first-child {
  display: none;
}
.touch #cd-vertical-nav a.is-selected span:last-child {
  color: #d88683;
}
.touch #cd-vertical-nav.open {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.touch #cd-vertical-nav.open + .cd-nav-trigger {
  background-color: transparent;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span {
  background-color: rgba(62, 57, 71, 0);
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before,
.touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
  background-color: #3e3947;
  height: 3px;
  width: 20px;
  border-radius: 0;
  left: -8px;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1px;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  bottom: 0;
}
.touch #cd-vertical-nav li:last-child a {
  border-bottom: none;
}
@media only screen and (min-width: 768px) {
  .touch .cd-nav-trigger,
  .touch #cd-vertical-nav {
    bottom: 40px;
  }
}
/*** START CSS **/
#propos {
  background-color: #201f1f;
  height: auto;
  display: block
  padding: 0px ;
}
#propos img {
  float: left;
  box-shadow: 2px -1px #2c2c32;
}
#propos .presentation {
  height: 570px;
  padding-top: 137px;
  padding-left: 120px;
  color: #777777;
}
#propos .presentation span {
  font-size: 48px;
}
#propos .presentation a {
  color: #b3b3b3;
  text-decoration: none;
}
#propos .presentation a:hover {
  color: #3c98ff;
}
#propos .presentation h1 {
  height: auto;
  width: auto;
  font-size: 18px;
  margin-bottom: 65px;
}
#propos .presentation p {
  font-size: 18px;
}
#compet {
  color: #777777;
  margin-left: 120px;
  background-color: #ffffff;
  height: 500px;
}
#compet h2.titre2 {
  font-size: 48px;
  color: #777777;
  margin-top: 100px;
}
#compet .tag {
  font-weight: bold;
  font-size: 20px;
}
#compet .tag li {
  float: left;
  margin-left: 10px;
  list-style-type: none;
}
#compet .tag li:after {
  content: '- ';
}
div.carrousel-inner {
  padding-left: 100px;
}
#slider1 {
  color: #777777;
  text-align: center;
  font-size: bold;
  background-color: #fbfbfb;
}
#slider1 h3.titre3 {
  font-size: 48px;
  color: #777777;
}
#slider1 div.carousel-caption {
  color: #777777;
  height: 306px;
  width: 501px;
}
#slider1 div.carousel-caption a {
  color: #3c98ff;
}
#slider1 div.carousel-caption h3 {
  font-size: 30px;
  font-weight: bolder;
  text-align: left;
  text-shadow: none;
}
#slider1 div.carousel-caption p {
  font-size: 20px;
  text-align: left;
  text-shadow: none;
}
#slider1 .glyphicon-chevron-right {
  color: #7a7a7a;
}
#slider1 .glyphicon-chevron-left {
  color: #7a7a7a;
}
#slider1 a {
  text-align: left;
  text-shadow: none;
  text-align-last: right;
  text-decoration: none;
  font-size: 20px;
  float: left;
}
#slider1 div#myCarousel {
  padding-left: 105px;
}
#cv {
  background-color: #201f1f;
  height: 135px;
  text-align: center;
  padding-top: 45px;
}
#cv a {
  color: #cccccc;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  line-height: 150px;
}
#cv a a:hover {
  color: #3c98ff;
}
#cv a img {
  padding-left: 5px;
}
#contact {
  font-family: "Helevetica regular", sans-serif;
  text-align: left;
}
#contact h4 {
  color: #777777;
  font-size: 48px;
}
#contact i {
  font-size: 25px;
  color: #0d0d0d;
  margin-right: 8px;
}
#contact span {
  display: block;
  width: 100%;
  color: #777777;
  font-size: 25px;
  margin-bottom: 50px;
  text-align: left;
  margin-left: 60px;
}
#contact .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: black;
  background-color: #fff;
  background-image: none;
  border: 2px solid #c9c9c9;
  border-radius: 1px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  /* box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); */
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
#contact ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: black;
  font-size: 18px;
}
#contact ::-moz-placeholder {
  /* Firefox 19+ */
  color: black;
  font-size: 18px;
}
#contact :-ms-input-placeholder {
  /* IE 10+ */
  color: black;
  font-size: 18px;
}
#contact :-moz-placeholder {
  /* Firefox 18- */
  color: black;
  font-size: 18px;
}
#contact #contact .form-control .textarea#message {
  height: 115px;
}
/**** RESPONSIVE DESIGN ***/
/* ============================================== */
/* Widescreen                                     */
/*                                       1280x800 */
/* ============================================== */
@media screen and (min-width: 800px) and (max-width: 1280px) {
  /* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
  .no-touch #cd-vertical-nav {
    position: fixed;
    right: 15px;
  }
  section#compet {
    margin-left: 50px;
  }
  body {
    background: black;
  }
}
#slider1 {
  position: inherit;
}
/* ============================================== */
/* iPad Landscape & Portrait                      */
/*                                       1024x768 */
/* ============================================== */
@media screen and (min-width: 600px) and (max-width: 800px) {

  .mobile {
    position: initial !important;
}
}
@media screen and (min-width: 768px) and (max-width: 1324px) {
  /* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
  #propos img {
    box-shadow: 2px -1px #2c2c32;
    text-align: center;
    margin-left: 80px;
    /* text-orientation: upright; */
  }
  #slider1 div#myCarousel {
    padding-left: 55px;
  }
  div.item {
    height: auto;
  }
  #compet {
    padding: 0px;
    margin-left: 40px;
  }
  .carousel-caption {
    right: 20%;
    left: 0%;
    padding-bottom: 150px;
  }
  .compet {
    float: none;
    height: auto;
    margin-left: 20px;
  }
  #slider1 div.carousel-caption {
    color: #777777;
    height: 306px;
    width: 100%;
    position: initial;
  }
}
/* A INTEGRER CSS 600PX */
@media screen and (min-width: 320px) {
  #slider1 div#myCarousel {
    padding-left: 35px;
  }
  #propos img {
    box-shadow: 2px -1px #2c2c32;
    text-align: center ;
    margin-left: 0px ;
    /* text-orientation: upright; */
  }
  #propos .presentation {
    height: 375px;
    padding-top: 45px;
    padding-left: 30px;
    color: #777777;
  }
  #propos {
    background-color: #201f1f;
    height: auto;
    padding: 0px;
  }
  #compet {
    color: #777777;
    margin-left: 0px;
    background-color: #ffffff;
    height: 745px;
    /* position: absolute; */
  }
  #compet h2.titre2 {
    font-size: 40px;
    color: #777777;
    text-align: center;
    margin-top: 50px;
    padding-bottom: 0px;
  }
  #slider1 div.carousel-caption {
    height: auto;
  }
  .mobile{
    position: initial ;
  }
  #cv {
    padding-top: 0px;
  }
  #contact h4 {
    color: #777777;
    text-align: center;
    margin-top: 15px;
    font-size: 48px;
  }
  #contact span {
    display: block;
    width: 100%;
    color: #777777;
    font-size: 18px;
    margin-bottom: 50px;
    text-align: left;
    margin-left: 0px;
  }
  #compet .tag .last li:after {
    content: ' ';
  }
  #compet .tag {
    margin-bottom: 5px;
    margin-top: 5px;
  }
}
#propos {
  background-color: #201f1f;
  height: auto;
  padding: 0px;
  /* margin-top: -75px; */
}
#compet {
  color: #777777;
  margin-left: 0px;
  background-color: #ffffff;
  height: auto;
  position: initial;
}
#slider1 div.carousel-caption p {
  font-size: 20px;
  text-align: left;
  text-shadow: none;
  margin: 0px;
}
#slider1 div.carousel-caption {
  color: #777777;
  height: 306px;
  width: 47%;
  /* background: black; */
  right: -1%;
  /* float: left; */
  /* right: 72%; */
  position: absolute;
  margin-left: 40px;
  left: 37%;
  /* padding-top: 102px; */
}
@media only screen and (min-width : 320px) and (max-width : 480px) {
/* Styles pour cette Media Queries */
  #slider1 div.carousel-caption {
   height: auto;
    width: 220px;
    position: initial !important;
    margin-left: 15px;
    text-align: left;
  }
  .carousel-inner > .item > img {
    margin-left: 0;
  } 
}
#propos .presentation{
    padding-top: 100px;
    padding-left: 60px;
    height: auto;
    padding-bottom: 20px;
}
#compet h2.titre2{
  padding-bottom: 30px;
}

#compet .tag{
  margin-top: 25px;
}