@import url("https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i&display=swap");
/* MEDIA QUERIES */
html, body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Lato', sans-serif;
  width: 100%;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.container nav {
  display: block;
  background: url("assets/nav_bg.jpg") no-repeat;
  background-size: cover;
  height: 885px;
}

.container nav .contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
}

@media (min-width: 1200px) {
  .container nav .contacts {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.container nav .contacts a {
  font-size: 25px;
  font-weight: 300;
  color: white;
  text-decoration: none;
  margin-top: 5px;
  margin-right: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.container nav .contacts a img {
  vertical-align: middle;
  max-width: 25px;
}

.container nav .hero {
  color: white;
  display: block;
  font-size: 38px;
  max-width: 940px;
  margin: 0 auto;
  margin-top: 17%;
  padding: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.66);
}

@media (min-width: 1200px) {
  .container nav .hero {
    margin-left: 21%;
  }
}

.container .synthesis, .container .evolution, .container .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media (min-width: 1200px) {
  .container .synthesis, .container .evolution, .container .contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.container .synthesis article, .container .evolution article, .container .contact article {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 300px;
          flex: 0 1 300px;
  margin: 20px;
  padding: 65px;
  background: #FFFFFF;
  -webkit-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.5);
  text-align: center;
}

.container .synthesis article h3, .container .evolution article h3, .container .contact article h3 {
  font-size: 27px;
}

.container .synthesis article img, .container .evolution article img, .container .contact article img {
  height: 150px;
  margin-top: 60px;
}

.container .synthesis article h4, .container .evolution article h4, .container .contact article h4 {
  margin-bottom: -10px;
  font-size: 20px;
}

.container .synthesis article p, .container .evolution article p, .container .contact article p {
  font-size: 17px;
}

.container .synthesis article.red, .container .evolution article.red, .container .contact article.red {
  border-bottom: 17px solid #D0021B;
}

.container .synthesis article.blue, .container .evolution article.blue, .container .contact article.blue {
  border-bottom: 17px solid #4A90E2;
}

.container .synthesis article.yellow, .container .evolution article.yellow, .container .contact article.yellow {
  border-bottom: 17px solid #F8BC1C;
}

.container .contact article a {
  color: black;
  text-decoration: none;
}

.container header {
  text-transform: uppercase;
  color: #464C76;
  font-size: 2.3em;
  text-align: center;
  margin: 30px auto;
}

@media (min-width: 1200px) {
  .container header {
    font-size: 38px;
  }
}

.container section.path {
  display: block;
  background: url("assets/green_belt.jpg") no-repeat;
  background-size: contain;
  margin: 5px;
  text-align: center;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 576px) {
  .container section.path {
    background-size: cover;
  }
}

.container section.path h3 {
  font-size: 2em;
}

@media (min-width: 1200px) {
  .container section.path h3 {
    padding-top: 115px;
    font-size: 38px;
  }
}

.container section.path p {
  font-size: 1.5em;
  margin-bottom: 10px;
}

@media (min-width: 1200px) {
  .container section.path p {
    margin-top: -40px;
    font-size: 38px;
  }
}

.container section.path img {
  margin: 0 auto;
  margin-bottom: 20px;
  max-height: 440px;
  max-width: 100%;
}

.container section.solutions {
  margin: 5px;
  margin-bottom: 20px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FFFFFF;
  -webkit-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.5);
}

@media (min-width: 1200px) {
  .container section.solutions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.container section.solutions .description {
  max-width: 536px;
  text-align: center;
}

.container section.solutions .description img {
  max-height: 44px;
}

.container section.solutions .illustration img {
  max-height: 350px;
  width: 100%;
}
/*# sourceMappingURL=style.css.map */