@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slidein {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0px);
  }
}
@keyframes chevronLeftmove {
  from {
    transform: translateX(0px);
  }
  to {
    transform: translateX(-10px);
  }
}
@keyframes chevronRightmove {
  from {
    transform: translateX(0px);
  }
  to {
    transform: translateX(10px);
  }
}
@keyframes slidein {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0px);
  }
}
body {
  margin: 0;
  padding: 0;
  font-family: abhaya libre 600;
  text-decoration: none;
}

li {
  list-style: none;
}

.menu {
  width: 100%;
  min-height: 70px;
  box-sizing: border-box;
  padding: 0 200px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #1a1919;
  -webkit-animation: fadein 2s;
  -moz-animation: fadein 2s;
  -ms-animation: fadein 2s;
  -o-animation: fadein 2s;
  animation: fadein 2s;
  font-family: Arial;
}

.menu a img {
  float: left;
  position: relative;
  width: 220px;
  height: 50px;
  margin-top: 10px;
}

nav {
  width: 100%;
}

nav > ul {
  margin: 0;
  padding: 0;
}
nav > ul::after {
  content: "";
  display: table;
  clear: both;
}

nav li {
  list-style-type: none;
}

nav > ul > li {
  float: left;
  left: 50%;
  position: relative;
}

.submenu {
  display: none;
}

nav a {
  display: inline-block;
  text-decoration: none;
}

nav > ul > li > a {
  padding: 20px 31px;
  color: #FFF;
}

nav li:hover .submenu {
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 0%;
  padding: 3px 0px 0px 0px;
  z-index: 1000;
}

.submenu li a {
  padding: 15px 30px;
  font-size: 13px;
  color: #222538;
  width: 270px;
  font-weight: 600;
  transform: translate(-10px, 0%);
  -moz-transform: translate(-10px, 0%);
  -o-transform: translate(-10px, 0%);
  -webkit-transform: translate(-10px, 0%);
}

.submenu li:hover a {
  color: #041cf9;
  font-weight: bold;
  text-decoration: none;
}

.submenu li {
  border-bottom: 1px solid #cfcfcf;
  width: 157px;
  float: left;
  position: relative;
  background-color: #dddddd;
}
.submenu li:hover {
  background-color: #b1b1b1;
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
}

.menu-choix1, .menu-choix2, .menu-choix3, .menu-choix4 {
  top: 4px;
}
.menu-choix1:hover, .menu-choix2:hover, .menu-choix3:hover, .menu-choix4:hover {
  border-bottom: 3px solid #04a8f9;
}

#menu-style {
  text-decoration: none;
  padding-bottom: 20px;
  font-weight: bold;
  color: white;
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
}
#menu-style:hover {
  color: #04a8f9;
}

.menu-mobile {
  display: none;
}

@media only screen and (max-width: 768px) {
  .menu-mobile {
    display: flex;
    left: 0;
    height: 65px;
    margin-left: 100px;
    margin-top: 30px;
  }

  .menu-deroulant {
    width: 100%;
    margin-bottom: 30px;
    -webkit-animation: fadein 5s;
    -moz-animation: fadein 5s;
    -ms-animation: fadein 5s;
    -o-animation: fadein 5s;
    animation: fadein 5s;
  }

  div.menu-mobile img {
    height: 50px;
    position: relative;
    left: 100%;
  }

  .menu a img {
    height: 40px;
    width: 165px;
    margin-left: -180px;
    top: 23px;
  }

  #panel {
    display: none;
    width: 100px;
    margin-left: -30px;
    padding-right: 40px;
    -webkit-animation: slidein 0.8s;
    -moz-animation: slidein 0.8s;
    -ms-animation: slidein 0.8s;
    -o-animation: slidein 0.8s;
    animation: slidein 0.8s;
  }

  nav ul li, nav ul li a {
    width: 100%;
    text-align: center;
  }

  nav ul li a, nav ul li:hover a {
    padding: 10px 0px;
  }

  nav li:hover .submenu {
    display: block;
    position: static;
    transition: all 0.2s;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
  }

  .menu-choix1, .menu-choix2, .menu-choix3, .menu-choix4 {
    top: 4px;
    width: 90px;
    margin-left: -35px;
  }
  .menu-choix1:hover, .menu-choix2:hover, .menu-choix3:hover, .menu-choix4:hover {
    border-bottom: 0px solid white;
  }

  .submenu li a {
    padding: 10px 30px;
    font-size: 15px;
    color: #222538;
    width: 290px;
    margin-left: -60px;
  }

  .submenu li {
    border-bottom: 1px solid #cfcfcf;
    width: 150px;
    background-color: #dddddd;
    margin-left: -30px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1000px) {
  nav > ul > li {
    float: left;
    left: 100%;
    position: relative;
  }
}
@media only screen and (max-width: 1440px) and (min-width: 768px) {
  nav > ul > li {
    float: left;
    left: 20%;
    position: relative;
  }

  .menu {
    padding: 0 100px;
  }
}
.imageFond {
  background: url(/images/pexels-photo-3184306.jpeg) no-repeat center fixed;
  height: 90vh;
  width: 100%;
  background-size: cover;
}

.surfond-transparent {
  -webkit-animation: fadein 5s;
  -moz-animation: fadein 5s;
  -ms-animation: fadein 5s;
  -o-animation: fadein 5s;
  animation: fadein 5s;
}

.text-presentation {
  font-size: 20px;
  padding-left: 80px;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .text-presentation {
    text-align: center;
  }
}
.citation {
  color: grey;
  font-size: 25px;
  font-weight: 700;
}

div.surfond-transparent h1 {
  color: white;
  text-align: center;
  position: relative;
  top: 370px;
  font-size: 60px;
  background-color: rgba(0, 0, 0, 0.363);
  height: 175px;
}

.cd-words-wrapper {
  top: -12px;
  color: #04a8f9;
}

.cd-headline.clip .cd-words-wrapper::after {
  height: 65%;
  top: 7px;
}

section > div > h1.cd-headline.clip {
  display: block;
  position: relative;
  top: 35vh;
}

.sloganHeader {
  background-color: #1a1919;
  height: 100px;
  width: 100%;
}

section.sloganHeader h2 {
  text-align: center;
  color: white;
  padding-top: 30px;
  -webkit-animation: fadein 5s;
  -moz-animation: fadein 5s;
  -ms-animation: fadein 5s;
  -o-animation: fadein 5s;
  animation: fadein 5s;
}

blockquote {
  color: #919191;
  font-weight: 400;
  font-size: 15px;
  margin-left: 70%;
  font-style: italic;
}

@media only screen and (max-width: 768px) {
  div.surfond-transparent h1 {
    color: white;
    text-align: center;
    position: relative;
    top: 400px;
    font-size: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    height: 85px;
  }

  .cd-words-wrapper {
    top: -7px;
  }

  section.sloganHeader h2 {
    text-align: center;
    color: white;
    padding-top: 23px;
    font-size: 20px;
  }

  .text-presentation {
    padding-left: 10px;
  }

  blockquote {
    margin-left: 60%;
  }
}
.missions {
  background-color: #1a1919;
}

.missions > div > h1 {
  color: white;
}

section.info div h2 strong {
  color: #04a8f9;
}

.image-office {
  padding-left: 10%;
  top: 140px;
  height: 300px;
  width: auto;
}

div.image-office img {
  width: 80%;
  box-shadow: 5px 5px 10px grey;
  border-radius: 5px;
}

.fa-stack {
  margin-bottom: 10px;
}

.pointer {
  cursor: pointer;
}

.icon-anim {
  font-size: 50px;
  margin-left: -3px;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}
.icon-anim:hover {
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.35;
  -moz-transition: all 0.5s;
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
}

.padding-service {
  padding-right: 300px;
  padding-left: 300px;
}

.pc {
  display: flex;
}

.pc2 {
  display: block;
}

.mobile {
  display: none;
}

div.container-fluid h4 {
  color: white;
}

.missions-color {
  color: white;
}

@media only screen and (max-width: 768px) {
  div.image-office img {
    height: 220px;
    width: auto;
  }

  .image-office {
    padding-left: 62px;
    top: 20px;
  }

  .separation {
    margin-left: 7%;
  }

  .pc {
    display: none;
  }

  .pc2 {
    display: none;
  }

  .mobile {
    display: block;
  }
}
.modal-header {
  position: relative;
  display: block;
}

#testimonial {
  margin-bottom: 50px;
}

.d-size {
  padding-top: 5%;
}

.carousel-item {
  height: 430px;
}

#chevronColor1 {
  color: black;
  animation: chevronRightmove 1s alternate infinite;
  -o-animation: chevronRightmove 1s alternate infinite;
  -moz-animation: chevronRightmove 1s alternate infinite;
  -webkit-animation: chevronRightmove 1s alternate infinite;
}

#chevronColor2 {
  color: black;
  animation: chevronLeftmove 1s alternate infinite;
  -o-animation: chevronLeftmove 1s alternate infinite;
  -moz-animation: chevronLeftmove 1s alternate infinite;
  -webkit-animation: chevronLeftmove 1s alternate infinite;
}

.carousel-indicators {
  bottom: 0px;
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 1px solid #f9041a;
}

.carousel-indicators li.active {
  background-color: #f9041a;
}

#myCarousel .carousel-item {
  padding: 40px 150px;
}

#myCarousel .carousel-item p {
  color: #041cf9;
  font-style: italic;
  font-size: 25px;
}

@media only screen and (max-width: 768px) {
  #myCarousel .carousel-item {
    padding: 40px 70px;
  }

  #myCarousel .carousel-item p {
    font-size: 15px;
  }

  .carousel-item {
    height: 500px;
  }

  .d-size {
    padding-top: 40%;
  }

  .d-size2 {
    padding-top: 30%;
  }

  .d-size3 {
    padding-top: 0%;
  }
}
/* Nous contacter */
.contact {
  background-color: #272626;
  color: #e6e6e6;
  font-size: 17px;
  font-weight: bold;
  font-family: Arial;
  height: 350px;
  padding-top: 10px;
}
.contact, .contact a:hover {
  text-decoration: none;
  color: #cccccc;
}
.contact, .contact a {
  color: #e6e6e6;
}

.address {
  padding-left: 30px;
  padding-top: 20px;
  filter: saturate(0);
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
.address:hover {
  filter: saturate(1);
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

section.contact img {
  height: 40px;
  padding-right: 10px;
}

@media only screen and (max-width: 768px) {
  .contact {
    background-color: #272626;
    color: #e6e6e6;
    font-size: 15px;
    font-weight: bold;
    font-family: Arial;
    height: 500px;
    padding-top: 10px;
  }
  .contact, .contact a:hover {
    text-decoration: none;
    color: #cccccc;
  }
  .contact, .contact a {
    color: #e6e6e6;
  }

  .space {
    margin-top: 30px;
  }

  .contact-info {
    left: 0px;
  }

  .address {
    padding-left: 0px;
    padding-top: 20px;
    filter: saturate(1);
    transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
  }

  section.contact img {
    height: 40px;
    padding-right: 10px;
  }
}
/* Fin contact */
footer {
  background: #1a1919;
  padding-top: 15px;
  height: 50px;
  font-family: Arial;
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  section li span {
    padding-left: 50px;
  }
}
.footer-style {
  font-size: 15px;
  font-weight: bolder;
  color: white;
  letter-spacing: 1px;
}

footer a {
  border-bottom: 0px;
  color: white;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
footer a:hover {
  text-decoration: none;
  color: #7DAAFF;
  transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

@media only screen and (max-width: 768px) {
  footer {
    padding-top: 15px;
    height: 60px;
  }

  .footer-style {
    font-size: 14px;
  }
}

/*# sourceMappingURL=style.css.map */
