@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;
  }
}
.imageFond1 {
  background: url(/images/office-1209640_1920.jpg) no-repeat center fixed;
  height: 90vh;
  background-size: cover;
}

.imageFond2 {
  background: url(/images/gavel-2492011_1920.jpg) no-repeat center fixed;
  height: 90vh;
  background-size: cover;
}

.imageFond3 {
  background: url(/images/socialadvisor-background.jpg) no-repeat center fixed;
  height: 90vh;
  background-size: cover;
}

.imageFond4 {
  background: url(/images/Auditor-background.jpg) no-repeat center fixed;
  height: 90vh;
  background-size: cover;
}

.imageFond5 {
  background: url(/images/justitia-2597016_1920.jpg) no-repeat center fixed;
  height: 90vh;
  background-size: cover;
}

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

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

.titre-position {
  padding-top: 30px;
}

.text-presentation {
  font-size: 20px;
  font-weight: 400;
  text-align: justify;
}

.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;
}

.card {
  box-sizing: border-box;
  box-shadow: 0px 0px 10px black;
  font-weight: 400;
}

.titre-h3 {
  color: #04a8f9;
  font-weight: bold;
}

@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;
  }

  section.sloganHeader h2 {
    text-align: center;
    color: white;
    padding-top: 23px;
    font-size: 20px;
  }
}
.icon-anim {
  font-size: 50px;
  margin-left: -2.5px;
  transition: all 0.5s;
}
.icon-anim:hover {
  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);
}

/* 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=missions.css.map */
