@charset "UTF-8";
@import 'sections/footer/section.css';
body {
  background-color: #221D28;
  margin: 0;
  padding: 0;
}

main {
  margin: 0 auto;
  padding: 1rem;
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header {
  margin: 0 auto;
  width: 100%;
}
header .header--name-job .name {
  background-color: #20426C;
  display: flex;
  color: #FFF;
  flex-direction: column;
  align-items: center;
}
header .header--name-job .name .logo {
  width: 75px;
}
header .header--name-job .name span {
  text-align: center;
  font-size: 3.5em;
  margin: 0.25em 0;
}
header .header--name-job .job {
  display: flex;
  justify-content: center;
}
header .header--name-job .job span {
  color: #FFF;
  font-size: 2em;
  margin: 0.5em;
}

@media screen and (min-width: 576px) {
  header .header--name-job .job {
    display: flex;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1200px) {
  header {
    background-color: #20426C;
  }
  header .header--name-job {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 1em;
  }
  header .header--name-job .name {
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: none;
  }
  header .header--name-job .job {
    align-items: center;
  }
}
@media screen and (min-width: 1400px) {
  header .header--name-job {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.first-block--question {
  color: #FFF;
  font-size: 1.25em;
  text-align: center;
}

.quote {
  font-size: 1.5em;
}

.first-block--words-going-in-line {
  /* le bloc défilant */
}
.first-block--words-going-in-line .marquee-rtl {
  max-width: 60em;
  /* largeur de la fenêtre */
  font-size: 3em;
  margin: 2em auto 3em;
  overflow: hidden;
  /* masque tout ce qui dépasse */
  color: #FFF;
}
.first-block--words-going-in-line .marquee-rtl > :first-child {
  display: inline-block;
  /* modèle de boîte en ligne */
  padding-right: 2em;
  /* un peu d'espace pour la transition */
  padding-left: 100%;
  /* placement à droite du conteneur */
  white-space: nowrap;
  /* pas de passage à la ligne */
  animation: defilement-rtl 20s infinite linear;
}
@keyframes defilement-rtl {
  0% {
    transform: translate3d(0, 0, 0);
    /* position initiale à droite */
  }
  100% {
    transform: translate3d(-100%, 0, 0);
    /* position finale à gauche */
  }
}

@media (min-width: 576px) {
  .first-block--question {
    font-size: 2em;
  }
}
@media (min-width: 768px) {
  .first-block--question {
    font-size: 2.5em;
  }
}
@media (min-width: 992px) {
  .first-block--question {
    font-size: 3em;
  }
}
@media (min-width: 1200px) {
  .first-block--question {
    font-size: 4em;
  }
}
@media (min-width: 1400px) {
  .first-block--question {
    font-size: 4.5em;
  }
}
.second-block--title, .second-block--subtitle {
  color: #FFF;
  font-size: 1.35em;
  text-align: center;
}

.second-block--title h2:last-of-type {
  font-size: 1.25em;
}

.second-block--heros img {
  display: block;
  margin: 0 auto;
  max-height: 50em;
}

.solutions {
  margin: 50px 0;
  border-radius: 16px;
}
.solutions .solutions--block-1, .solutions .solutions--block-2, .solutions .solutions--block-3, .solutions .solutions--block-4 {
  content: "";
  display: flex;
  margin: 1rem 0;
  flex-direction: column;
  border-radius: 1em;
  padding: 1em;
  color: #FFF;
  background: rgba(94, 94, 133, 0.35);
  backdrop-filter: blur(12px);
  border: 1px solid #5e5e85;
}
.solutions .solutions--block-1 img, .solutions .solutions--block-2 img, .solutions .solutions--block-3 img, .solutions .solutions--block-4 img {
  display: block;
  margin: 1em auto;
  width: 100px;
  filter: invert(1);
}
.solutions .solutions--block-1 h3, .solutions .solutions--block-2 h3, .solutions .solutions--block-3 h3, .solutions .solutions--block-4 h3 {
  text-align: center;
  margin: 1em 0;
}
.solutions .solutions--block-1 p, .solutions .solutions--block-2 p, .solutions .solutions--block-3 p, .solutions .solutions--block-4 p {
  margin: 1rem 1rem;
  text-align: justify;
}

@media screen and (min-width: 768px) {
  .solutions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .solutions .solutions--block-1, .solutions .solutions--block-2, .solutions .solutions--block-3, .solutions .solutions--block-4 {
    width: 45%;
    border-radius: 0;
  }
  .solutions .solutions--block-1, .solutions .solutions--block-3 {
    border-radius: 20px 0 0 20px;
  }
  .solutions .solutions--block-2, .solutions .solutions--block-4 {
    border-radius: 0 20px 20px 0;
  }
}
@media screen and (min-width: 992px) {
  .solutions {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .solutions .solutions--block-1, .solutions .solutions--block-2, .solutions .solutions--block-3, .solutions .solutions--block-4 {
    width: 25%;
    border-radius: 0;
    margin: 0;
    background: rgba(94, 94, 133, 0.35);
    backdrop-filter: blur(12px);
    border: 1px solid #5e5e85;
  }
  .solutions .solutions--block-1 {
    border-radius: 20px 0 0 20px;
  }
  .solutions .solutions--block-4 {
    border-radius: 0 20px 20px 0;
  }
}
.contact-price .contact .contact--who, .contact-price .contact .contact--when, .contact-price .contact .contact--where {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  content: "";
  margin: 40px 0;
  padding: 1em;
  color: #FFF;
  background: rgba(94, 94, 133, 0.35);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #5e5e85;
}
.contact-price .contact .contact--who h3, .contact-price .contact .contact--who p, .contact-price .contact .contact--when h3, .contact-price .contact .contact--when p, .contact-price .contact .contact--where h3, .contact-price .contact .contact--where p {
  color: #FFF;
  text-align: center;
}
.contact-price .contact .contact--who--title {
  display: flex;
}
.contact-price .contact .contact--who--title img {
  width: 4rem;
  filter: invert(1);
}
.contact-price .contact .contact--where .contact--where--address, .contact-price .contact .contact--where .contact--where--github, .contact-price .contact .contact--where .contact--where--linkedin, .contact-price .contact .contact--where .contact--where--mail, .contact-price .contact .contact--where .contact--where--phone {
  display: flex;
  width: 100%;
}
.contact-price .contact .contact--where .contact--where--address img, .contact-price .contact .contact--where .contact--where--github img, .contact-price .contact .contact--where .contact--where--linkedin img, .contact-price .contact .contact--where .contact--where--mail img, .contact-price .contact .contact--where .contact--where--phone img {
  width: 1.5rem;
  filter: invert(1);
}
.contact-price .contact .contact--where .contact--where--address p, .contact-price .contact .contact--where .contact--where--github p, .contact-price .contact .contact--where .contact--where--linkedin p, .contact-price .contact .contact--where .contact--where--mail p, .contact-price .contact .contact--where .contact--where--phone p {
  margin: 1rem 1rem;
}
.contact-price .contact .contact--where .contact--where--address p a, .contact-price .contact .contact--where .contact--where--github p a, .contact-price .contact .contact--where .contact--where--linkedin p a, .contact-price .contact .contact--where .contact--where--mail p a, .contact-price .contact .contact--where .contact--where--phone p a {
  text-decoration: none;
  color: #FFF;
}
.contact-price .contact .contact--when .contact--when--title {
  display: flex;
}
.contact-price .contact .contact--when .contact--when--title img {
  width: 1.5em;
  filter: invert(1);
}
.contact-price .contact .contact--when .contact--when--title h3 {
  margin: 1rem 1rem;
}
.contact-price .contact .contact--when p {
  text-align: justify;
}
.contact-price .price {
  content: "";
  display: flex;
  align-items: center;
  margin: 40px 0;
  flex-direction: column;
  padding: 1em 1em;
  background: rgba(94, 94, 133, 0.35);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #5e5e85;
}
.contact-price .price .price--text p {
  text-align: center;
}
.contact-price .price h3 {
  text-align: center;
  color: #FFF;
}
.contact-price .price p {
  color: #FFF;
}
.contact-price .price button {
  padding: 1.5em;
  border-radius: 15px;
  color: #FFF;
  font-size: 1.25rem;
  background-color: #a2000d;
  border: none;
}

@media screen and (min-width: 768px) {
  .contact-price .contact {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .contact-price .contact .contact--where .contact--where--address p a, .contact-price .contact .contact--where .contact--where--github p a, .contact-price .contact .contact--where .contact--where--linkedin p a, .contact-price .contact .contact--where .contact--where--mail p a, .contact-price .contact .contact--where .contact--where--phone p a {
    transition: 0.5s;
  }
  .contact-price .contact .contact--where .contact--where--address p a:hover, .contact-price .contact .contact--where .contact--where--github p a:hover, .contact-price .contact .contact--where .contact--where--linkedin p a:hover, .contact-price .contact .contact--where .contact--where--mail p a:hover, .contact-price .contact .contact--where .contact--where--phone p a:hover {
    font-size: 1.15rem;
    transition: 0.5s;
  }
  .contact-price .price {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    padding: 1em 2em;
  }
  .contact-price .price .price--estimate {
    display: flex;
  }
  .contact-price .price .price--estimate button {
    margin: auto;
  }

  .contact--who, .contact--when, .contact--where {
    width: 28%;
  }
}
@media (min-width: 1200px) {
  main {
    max-width: 1200px;
  }
}
@media (min-width: 1400px) {
  main {
    max-width: 1400px;
  }
}

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