@charset "UTF-8";
@import 'fonts.css';

/*** Vars ***/
:root {
  --col-noir: #191919;
  --col-gris: #1a303e;
  --col-bleu: #2B4555;
  --col-ciel: #00A7E7;
  --col-blanc: #FFFFFF;
  --rgb-noir: 25, 25, 25;
  --rgb-gris: 132, 132, 132;
  --rgb-bleu: 43,69,85;
  --rgb-ciel: 0,167,231;
  --rgb-blanc: 255, 255, 255;

  --navbar-height: 80px;
  --sticky-height: 80px;

  --break-point-1500: 1420px;

  --width-container: 1420px;

  --main-padding:  60px;
}
/*** Animations ***/
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(75px, 0, 0);
    transform: translate3d(75px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(75px, 0, 0);
    transform: translate3d(75px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes blurOut {
     0%       { filter:blur(10px); -webkit-filter:blur(10px);}
     100%     { filter:blur(0px); -webkit-filter:blur(0px);}
}
@-webkit-keyframes blurOut {
     0%       { filter:blur(10px); -webkit-filter:blur(10px);}
     100%     { filter:blur(0px); -webkit-filter:blur(0px);}
}
.blurOut {
  animation-name: blurOut;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: blurOut;
  -webkit-animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
}

/*** Règles ***/
html body {
	font-family:"CodecPro", Arial,sans-serif;
	font-size:18px;
  color: var(--col-bleu);
  background-color: var(--col-blanc);
}
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}
* {
  -webkit-tap-highlight-color: transparent;
  word-break: keep-all !important;
  -webkit-hyphens: manual !important;
  -moz-hyphens: manual !important;
  -ms-hyphens: manual !important;
  -o-hyphens: manual !important;
  hyphens: manual !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width:1500px) {
  .container {
    max-width:var(--break-point-1500);
  }
}
.hidden {
  visibility: hidden;
}
img,
svg {
  max-width:100%;
  height:auto;
}
img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

a, a:hover, a:active, a:focus, object, embed, input, textarea, select, img {
  outline: none !important;
  -moz-outline-style: none !important;
  outline-style: none !important;
}
a {
  transition: all 450ms ease;
}

a:active {
  background: none;
}
h1 {
  font-weight: 800;
  font-size: 54px;
  margin: 60px auto 60px 0;
  line-height: 1em;
}
h2, .h2 {
  font-weight: 800;
  font-size: 54px;
  margin: 0px auto 40px 0;
  line-height: 1em;
}
h3,.h3 {
  font-weight: 800;
  font-size: 25px;
  margin: 0px auto 40px 0;
  line-height: 1em;
}
body strong, body b, body mark {
  font-weight: 800;
}
body mark {
  color: var(--col-ciel);
  background: transparent;
}
body em, body i {
  font-style: italic;
}
body img {
  max-width: 100%;
  height: auto;
  width: auto;
}
.vertical-align-center {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;  
}
.vertical-align-top {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;  
}
.vertical-align-bottom {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;  
}
.cadre-photo {
  overflow: hidden;
  background: rgba(var(--rgb-bleu), 0.05);
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}
.cadre-photo figure {
  position: relative;
  margin: 0;
  height: 100%;
  width: 100%;
}
.cadre-photo img {
  mix-blend-mode: normal;
  object-fit: cover;
  object-position: center center;
  height: 100%;
  width: 100%;
}
.hidden {
  visibility: hidden;
}
.bg-bleu {
  background-color: var(--col-bleu);
}
body .btn,
body .btn:not(:hover):not(:active):not(.has-background),
body input[type=submit]:not(:hover):not(:active):not(.has-background),
body input[type=reset]:not(:hover):not(:active):not(.has-background) {
  display: inline-block;
  background: var(--col-ciel);
  color: white;
  border-radius: 10px;
  border: 0;
  transition: all 450ms ease;
  padding: 13px 30px 13px 30px;
  text-decoration: none;
  font-weight: 700;
  font-family: "CodecPro", Arial, sans-serif;
}
body .btn:hover,
body .btn:not(:hover):not(:active):not(.has-background):hover,
body input[type=submit]:not(:hover):not(:active):not(.has-background):hover,
body input[type=reset]:not(:hover):not(:active):not(.has-background):hover {
  background: var(--col-bleu);
  border: 0;
}
body .btn i,
body .btn:not(:hover):not(:active):not(.has-background) i,
body input[type=submit]:not(:hover):not(:active):not(.has-background) i,
body input[type=reset]:not(:hover):not(:active):not(.has-background) i {
  top: -2px;
  margin-left: 10px;
  position: relative;
}
body .btn i.fa-long-arrow-alt-right {
  top: 1px !important;
}
body .btn2 {
  color: var(--col-blanc);
  font-weight: 800;
  text-decoration: none;
  transition: all 450ms ease;
}
body .btn2 i {
  margin-left: 10px;
}
body .btn2:hover {
  color: var(--col-bleu);
}
body .separateur {
  width: 40px;
  display: inline-block;
}
header {
  margin-top: var(--main-padding);
  color: var(--col-blanc);
}
header .banner {
  position: relative;
}
header .banner-content-container {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
header .banner-content .logo {
  margin: 0 auto;
  max-width: 40%;
}
header .banner-content .logo svg {
  height: 200px;
}
header .banner-content .texte {
  max-width: 65%;
  margin: 0 auto;  
}
header .call-to-actions {
  margin-top: var(--main-padding);
}
.main {
	text-align:left;
  overflow: hidden;
}
.section-interne {
  padding: var(--main-padding) 0;
}
.section-qui-sommes-nous {
  padding-top: calc(var(--main-padding) * 2);
}
.content-text {
  text-align: left;
}
.section-qui-sommes-nous .cadre-photo {
  height: 600px;
  background: transparent;
}
.section-qui-sommes-nous .cadre-photo figure {
  text-align: center;
}
.section-qui-sommes-nous .cadre-photo figure img {
  margin: 0 auto;
  width: auto;
}
.section-qui-sommes-nous .texte-2 {
  margin-top: var(--main-padding);
}
.section-qui-sommes-nous ul {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  width: 100%;
  flex-wrap: wrap;  
}
.section-qui-sommes-nous ul.liste-services li {
  width: 50%;
}
.bloc-service {
  display: flex;
  margin-bottom: 40px;
}
.bloc-service figure {
  width: 57px;
  height: 57px;
  margin: 0 20px 0 0;
}
.bloc-service .intitule {
  width: calc(100% - 77px);
  display: flex;
  flex-direction: column;
  justify-content: center;  
  line-height: normal;
}
.section-nos-solutions {
  padding-bottom: 0;
}
.section-nos-solutions .cadre-photo {
  background: transparent;
}
.section-nos-solutions .cadre-photo img {
  width:125%;
  max-width: none;
  object-position: -90px center;
}
.section-nos-solutions .call-to-action {
  margin-top: 40px;
}
footer {
  color: var(--col-blanc);
}
footer .bg-bleu {
  background-image: url(../img/illustration-footer.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  padding: 60px 80px;
  border-radius: 20px;
  margin-bottom: var(--main-padding);
}
footer .liste-contacts {
  display: flex;
  margin: var(--main-padding) 0 0;
  padding: 0;
  list-style: none;
}
footer .liste-contacts li {
  padding: 0 30px;
}
footer .liste-contacts li:first-child {
  padding-left: 0;
}
footer .bloc-contact {
  display: flex;
  flex-direction: column;
}
footer .bloc-contact .data a {
  font-weight: 800;
  color: var(--col-blanc);
  text-decoration: none;
}
footer .bloc-contact .data a:hover {
  color: var(--col-ciel);
}
footer .call-to-actions {
  margin-top: var(--main-padding);
}
footer .call-to-actions .btn:hover {
  background-color: var(--col-blanc);
  color: var(--col-ciel);
}
footer .call-to-actions .btn2:hover {
  color: var(--col-ciel);
}
@media only screen and (max-width: 1499px) {
  header .banner-content .logo svg {
    height: 120px;
  }
  .section-qui-sommes-nous .cadre-photo {
    height: 580px;
  }
  .bloc-service figure {
    margin: 0 10px 0 0;
  }
  .section-nos-solutions .cadre-photo img {
    width: 120%;
    object-position: -70px center;
  }  
  footer .liste-contacts li {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 1199px) {
  header .banner-content .logo svg {
    height: 100px;
  }
  h1 {
    font-size: 44px;
    margin: 30px auto 40px 0;    
  }
  h2, .h2 {
    font-size: 44px;
    margin: 0px auto 30px 0;
  }
  header .banner-content .texte {
    max-width: 75%;
  }
  .bloc-service figure {
    width: 50px;
    height: 50px;
  }
  .section-qui-sommes-nous .cadre-photo figure img {
    height: 480px;
  }
  .section-nos-solutions .cadre-photo img {
    object-position: -55px center;
  }
  footer .bg-bleu {
    background-image: none;
  }
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 40px;
    margin: 20px auto 30px 0;    
  }
  h2, .h2 {
    font-size: 40px;
    margin: 0px auto 30px 0;
  }
  .banner .cadre-photo {
    height: 500px;
  }
  header .banner-content .texte {
    max-width: 70%;
  }
  .section-qui-sommes-nous .cadre-photo {
    height: 550px;
  }
  .section-nos-solutions {
    padding-top: 0;
    padding-bottom: var(--main-padding);
  }
  footer .liste-contacts {
    flex-wrap: wrap;
  }
  footer .bloc-contact {
    margin-bottom: 20px;
  }
  footer .liste-contacts li:nth-child(3) {
    padding-left: 0;
  }
  footer .liste-contacts li:nth-child(3) .bloc-contact {
    margin-bottom: 0;
  }
  footer .call-to-actions {
    flex-wrap: wrap;
    width: 50%;
  }
  body footer .separateur {
    width: 0;
  }
  footer .call-to-actions .btn2 {
    display: block;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .banner .cadre-photo {
    height: 600px;
  }
  body .separateur {
    width: 20px;
  }
  body .btn, 
  body .btn:not(:hover):not(:active):not(.has-background), 
  body input[type="submit"]:not(:hover):not(:active):not(.has-background), 
  body input[type="reset"]:not(:hover):not(:active):not(.has-background) {
    padding: 13px 20px;
  }
  footer .liste-contacts li {
    padding: 0 15px 0 0px;
  }
  footer .call-to-actions {
    width: 70%;
  }
}
@media only screen and (max-width: 575px) {
  .banner .cadre-photo {
    height: 650px;
  }
  h1 {
    font-size: 36px;
  }
  h2, .h2 {
    font-size: 36px;
  }
  header {
    margin-top: 15px;
  }
  header .banner-content .logo {
    max-width: 60%;
  }
  body .separateur {
    width: 0px;
  }
  header .call-to-actions {
    margin: var(--main-padding) auto 0;
    display: flex;
    width: 50%;
    flex-wrap: wrap;
    justify-content: center;
  }  
  header .call-to-actions .btn2 {
    margin-top: 40px;
  }
  footer .call-to-actions {
    width: 70%;
  }
  footer .bg-bleu {
    margin: 0 15px 15px;
    width: calc(100% - 30px);
  }
}
@media only screen and (max-width: 499px) {
  .banner .cadre-photo {
    height: 700px;
  }
  header .banner-content .logo {
    max-width: 80%;
  }
  header .call-to-actions {
    width: 80%;
  }  
  .section-qui-sommes-nous ul.liste-services li {
    width: 100%;
  }
  .section-qui-sommes-nous .cadre-photo {
    height: auto;
    width: 100%;
    margin-bottom: 40px;
  }
  .section-qui-sommes-nous .cadre-photo figure img {
    height: auto;
  }  
  footer .bg-bleu {
    padding: 40px;
  }
}
@media only screen and (max-width: 399px) {
  h1 {
    font-size: 32px;
  }
  h2, .h2 {
    font-size: 30px;
  }
  header .banner-content .logo svg {
    height: 80px;
  } 
  header .banner-content .texte {
    max-width: 80%;
  }  
  .banner .cadre-photo {
    height: 720px;
  } 
  .section-nos-solutions .cadre-photo img {
    object-position: center center;
  }   
  footer .bg-bleu {
    padding: 30px;
  }   
  footer .call-to-actions {
    width: 100%;
  }
}