html {
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
  -webkit-font-smoothing: antialiased;
  color: #0C1C49;
  font-size: 12pt;
}

body {
  height: 100%;
  margin: 0;
  background-color: #F7F8F8;
}

.bold {
  font-weight: bold;
}

button {
  border: none;
  background-color: white;
}

button:active {
  color: grey;
}

.hidden {
  opacity: 0;
}

header {
  width: 100vw;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  color: white;
  background-color: #0C1C49;
}

header .backButton {
  color: white;
  background-color: #0C1C49;
}

header h1,
header h2 {
  margin: 0;
  text-align: center;
}

h1 {
  font-weight: 600;
  font-size: 2rem;
  font-family: 'Arial Narrow', sans-serif;
}

h2 {
  font-weight: 100;
  font-size: 1.4rem;
}

main {
  width: 90vw;
  margin-left: auto;
  margin-right: auto;
  max-width: 50rem;
}

footer {
  font-size: 0.7rem;
  color: grey;
  font-weight: 100;
  margin-left: auto;
  margin-right: auto;
  width: 90vw;
  text-align: center;
  padding-bottom: 0.5rem;
}

footer a:-webkit-any-link {
  text-decoration: none;
  color: darkgray;
}

footer a:-moz-any-link {
  text-decoration: none;
  color: darkgray;
}

footer a:any-link {
  text-decoration: none;
  color: darkgray;
}

.backButton {
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1rem;
}

.backButton.hidden {
  display: none;
}

.backButton > * {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.button-bar {
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button-bar.hidden {
  display: none;
}

.button-bar > * {
  font-size: 1.2rem;
}

section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 2rem;
}

section.figure {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 600px) {
  section.figure {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

section.columns {
  max-width: 42rem;
  min-height: 3rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  text-align: center;
}

section.columns .column {
  max-width: 9rem;
}

@media (max-width: 600px) {
  section.columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 28rem;
    text-align: left;
    max-width: 10rem;
  }
  section.columns .description {
    max-width: auto;
  }
}

.picture img {
  max-height: 360px;
}

.description {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.briInterfaceInDevice {
  width: auto;
  height: 16rem;
  background: url("../assets/macbook.svg") no-repeat center top;
  background-size: contain;
  margin-left: auto;
  margin-right: auto;
}

.title {
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
}

/*
============= Diagram boxes ============
*/
.figure-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}

@media (max-width: 600px) {
  .figure-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.box {
  border: 0.3rem solid #0C1C49;
  min-width: 6rem;
  min-height: 6rem;
  width: 6rem;
  height: 6rem;
  border-radius: 6rem;
}

#box1 {
  background: no-repeat center url(../assets/run-to-target.svg);
  background-size: cover;
}

#box2 {
  background: no-repeat center url(../assets/binoculars.svg);
  background-size: cover;
}

#box3 {
  background: no-repeat center url(../assets/growth-building.svg);
  background-size: cover;
}

.caption {
  text-align: center;
  margin-top: 1rem;
  margin-left: -2rem;
  margin-right: -2rem;
  max-width: 10rem;
}

@media (max-width: 600px) {
  .caption {
    text-align: left;
    margin-top: 0;
    margin-left: 1rem;
    margin-right: 0;
    max-width: 10rem;
  }
}

.line {
  width: 8rem;
  height: 0.3rem;
  position: relative;
  background-color: #0C1C49;
  top: 3rem;
  left: 0px;
}

@media (max-width: 600px) {
  .line {
    width: 0.3rem;
    height: 2rem;
    top: 0px;
    left: 3.15rem;
  }
}

/*
============= Workflow ============
*/
#workflow {
  background: no-repeat top center url(../assets/workflow-h.svg);
  background-size: 42rem;
  padding-top: 17rem;
  padding-left: 0;
}

@media (max-width: 600px) {
  #workflow {
    background: no-repeat top left url(../assets/workflow-v.svg);
    background-size: 10rem;
    padding-top: 0;
    padding-left: 12rem;
  }
}

#workflow-text {
  background: no-repeat top center url(../assets/workflow-h-texte.svg);
  padding-top: 17rem;
  padding-left: 0;
}

@media (max-width: 600px) {
  #workflow-text {
    background: no-repeat top left url(../assets/workflow-v-texte.svg);
    background-size: 10rem;
    padding-top: 0;
    padding-left: 12rem;
  }
}
/*# sourceMappingURL=styles.css.map */