body {
  background: #ffffff;
  text-align: center;
  text-rendering: auto;
  font-size: 17px;
  line-height: 1.6em;
  padding-top: 10vh;
}
* {
  box-sizing: border-box;
}
.button {
  display: inline-block;
  font-family: "Montserrat", "Trebuchet MS", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  position: relative;
  height: 10em;
  padding-right: 4.7em;
  background: #009ED8;
  border: none;
  color: white;
  transition: 0.2s;
}
.button:before,
.button:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding-top: inherit;
  padding-bottom: inherit;
  width: 2.8em;
  content: "\00a0";
  font-family: 'FontAwesome', sans-serif;
  font-size: 1.2em;
  text-align: center;
  transition: 0.2s;
  transform-origin: 50% 60%;
}
.button:before {
  background: rgba(0, 0, 0, 0.1);
}
.button:hover {
  background: #0079a5;
}
.button:active,
.button:focus {
  background: #002e3f;
  outline: none;
}
.button:hover:after {
  -webkit-animation: none;
  -webkit-transform: skew(-20deg);
  animation: none;
  transform: skew(-20deg);
  text-indent: 0.1em;
}
a {
  text-decoration: none;
  line-height: 10em;
}
a:hover {
  text-decoration: none;
  color: #ffffff;
}
.button {
  min-width: 15em;
}
.arrow {
  background: #FE5F55;
}
.arrow:hover {
  background: #fe2f22;
}
.arrow:active,
.arrow:focus {
  background: #b90c01;
}
.arrow:after {
  content: "\F054";
}
.arrow:hover:after {
  -webkit-animation: bounceright 0.3s alternate ease infinite;
  animation: bounceright 0.3s alternate ease infinite;
}
.financeiro {
  background: #dde002;
}
.financeiro:hover {
  background: #abad02;
}
.financeiro:active,
.financeiro:focus {
  background: #797b01;
}
.financeiro:after {
  content: "\f155";
}
.projetos {
  background: #009ED8;
}
.projetos:hover {
  background: #0079a5;
}
.projetos:active,
.projetos:focus {
  background: #005372;
}
.projetos:after {
  content: "\f15c";
}
.ambiental {
  background: #139675;
}
.ambiental:hover {
  background: #0d6952;
}
.ambiental:active,
.ambiental:focus {
  background: #083b2e;
}
.ambiental:after {
  content: "\f18c";
}
.avaliacao {
  background: #6e2938;
}
.avaliacao:hover {
  background: #491b25;
}
.avaliacao:active,
.avaliacao:focus {
  background: #240d12;
}
.avaliacao:after {
  content: "\f0cb";
}


.variaveis {
  background: #ff6666;
}
.variaveis:hover {
  background: #ff3333;
}
.variaveis:active,
.variaveis:focus {
    background: #ff0000;
}
.variaveis:after {
  content: "\f1ec";
}

@-webkit-keyframes bounceright {
  from {
    -webkit-transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(3px);
  }
}
@-webkit-keyframes wiggle {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(30deg);
  }
}
@keyframes bounceright {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(3px);
  }
}
@keyframes wiggle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(30deg);
  }
}
