* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  outline: none;
}
/* cores
@marie: rgb(50,50,50);
@black: darken(@marie, 50%);
@white: lighten(@marie, 50%); */
body {
  font-size: 10px;
  border: none;
}
header {
  background: #3e517a;
  display: grid;
  grid-template-columns: 30% 69%;
  grid-column-gap: 1%;
  width: 100%;
  height: 5em;
}
header h1 {
  text-align: left;
  padding-left: 2em;
  font-family: 'Montserrat', serif;
  font-weight: 800;
  padding-top: .2em;
  font-size: 3em;
  color: #e8f7ee;
}
header nav {
  text-align: right;
  padding-right: 2.5em;
  padding-top: .65em;
  font-size: 1.9em;
}
header nav a {
  font-family: 'Encode Sans Condensed', sans-serif;
  font-weight: 300;
  letter-spacing: .05em;
  margin: 0 .5em;
  color: #e8f7ee;
}
header nav a:hover {
  text-decoration: underline;
}
header nav button {
  display: none;
}
header nav svg {
  stroke-width: 3;
  stroke: #e8f7ee;
  fill: #3e517a;
}
header nav svg path {
  stroke: none;
}
#hero {
  background: #4c6395;
  width: 100%;
  height: 39em;
  text-align: center;
}
#hero h2 {
  font-family: 'Encode Sans Condensed', sans-serif;
  padding-top: 1.5em;
  font-size: 6em;
  color: #ffffff;
}
#hero p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 3em;
  color: #ffffff;
}
#hero #action button {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 1.5em;
  border: 2px solid #e8f7ee;
  padding: 1em 3em;
  margin: 2em 1em;
  background: none;
  color: #e8f7ee;
}
#hero #action .caller {
  background: #e8f7ee;
  color: #19747c;
  border: 2px solid #e8f7ee;
}
#hero #action .caller:hover {
  background: #52d1dc;
  color: #19747c;
  border: 2px solid #52d1dc;
}
section {
  width: 100%;
  height: auto;
  padding: 1% 0;
  display: grid;
  grid-template-columns: 30% 30% 30%;
  grid-column-gap: 5%;
}
section article {
  text-align: center;
  margin: 2em 0;
  padding: 0 10%;
}
section article h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5em;
  text-transform: uppercase;
  color: #141414;
}
section article p {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5em;
  font-weight: 300;
  font-size: 2em;
  padding: 5%;
}
section svg {
  padding: 2em;
  width: 40%;
  height: 40%;
}
section svg path,
section svg line,
section svg polygon {
  stroke-width: 4;
}
footer {
  background: #141414;
  width: 100%;
  height: auto;
  padding: 1% 0;
}
footer section {
  display: grid;
  grid-template-columns: 45% 45%;
  grid-column-gap: 10%;
  text-align: justify;
  color: #e8f7ee;
}
footer section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 2.2em;
  text-transform: uppercase;
}
footer section p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4em;
  font-weight: 200;
  line-height: 2em;
}
footer cite {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5em;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  color: #e8f7ee;
}
@media screen and (max-width: 1066px) {
  header {
    display: grid;
    grid-template-columns: 25% 10%;
    grid-column-gap: 65%;
  }
  header nav a {
    display: none;
  }
  header nav button {
    border: none;
    background: none;
    display: block;
    width: 3em;
    height: 3em;
  }
  header nav button svg {
    margin-top: -0.9em;
    width: 80%;
    height: 80%;
  }
}
@media screen and (max-width: 666px) {
  header {
    display: grid;
    grid-template-columns: 49% 15%;
    grid-column-gap: 36%;
  }
  #hero h2 {
    font-size: 2.8em;
    padding-bottom: .5em;
  }
  #hero p {
    font-size: 1.8em;
    padding: 0 3em;
  }
  #hero #action button {
    margin: .5em 0;
  }
  section {
    grid-template-columns: 100%;
  }
  footer section {
    grid-template-columns: 100%;
  }
}
