/*-------------
 1. @imports
 2. Variables
 3. Tags
 4. IDs
 5. Classes
 6. Keyframes
 7. media quaries (unless linked as separate css files)
 ------------------*/
/*---------1. @imports--------------*/
/*reset*/
@import url("reset/reset.css");
* {
  box-sizing: border-box; }

img {
  width: 100%; }

/*---------2. Variables--------*/
/*---------3. Tags--------*/
body {
  background-color: #f7f7f7; }

footer {
  text-align: right;
  padding: 2em 2em;
  font-family: magneta, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: .2em;
  animation: appear 2s;
  float: none;
  position: relative;
  bottom: 0; }

a {
  cursor: pointer; }

h2 {
  color: #262626;
  padding: 2em 0;
  text-align: center;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2.5em;
  letter-spacing: .2em;
  animation: appearleft .5s; }

h3 {
  color: #262626;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  padding-bottom: 2em; }
  h3 a {
    transition: .5s;
    color: #014023;
    text-decoration: none;
    font-size: 1.2em; }
    h3 a:hover {
      color: #BF9649; }

h4 {
  color: #262626;
  text-align: center;
  padding: 0 1em 2em 1em;
  font-size: 2em; }

article a {
  transition: .5s;
  color: #014023; }
  article a:hover {
    color: #BF9649; }

p {
  color: #262626;
  font-family: magneta, serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5em;
  letter-spacing: .1em;
  padding: 1em;
  line-height: 1.4em; }

span a {
  transition: .5s;
  color: #014023; }
  span a:hover {
    color: #BF9649; }

/*---------4. IDs--------*/
#logo {
  width: 40%;
  padding-top: 4em;
  animation: appearleft 1.5s; }

/*---------5. Classes--------*/
.wrapper {
  padding: 4em 0;
  width: 80%;
  margin: auto; }

.initialcards {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  animation: appear 1.5s; }

.initialcards article {
  -webkit-flex: 1;
  /* Safari 6.1+ */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1; }

.item2 {
  padding: 0 4em; }

.sidenav {
  height: 100%;
  width: 25%;
  position: fixed;
  margin-left: -24%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #04D98B;
  background-image: linear-gradient(#04D98B, #BF9649);
  border-right: 1px solid #BF9649;
  transition: 0.5s; }
  .sidenav ul {
    padding: 2em 0 1em 2em; }
  .sidenav li {
    color: #f7f7f7;
    padding-bottom: 2vh;
    font-family: futura-pt, sans-serif;
    font-weight: 500;
    font-style: normal; }
  .sidenav a {
    text-decoration: none;
    color: #f7f7f7;
    font-size: 2vw;
    transition: .5s; }
    .sidenav a:hover {
      color: #BF9649; }

.menuArrow {
  width: 2.5%;
  position: fixed;
  bottom: 50%; }

.wrapper2 {
  padding: 4em 0;
  width: 80%;
  margin: auto; }

.projects {
  display: -webkit-flex;
  /* Safari */
  display: flex; }

.project-row article {
  padding: 3.5em;
  flex: row; }

.project-banner {
  width: 100%;
  height: 12em;
  background-color: #02733E;
  background-image: linear-gradient(90deg, #04D98B, #BF9649);
  border-bottom: 6px solid #014023; }

.backbtn {
  width: 4vw;
  height: 4vw;
  position: absolute;
  top: 1em;
  left: 2em; }

.project-title-1, .project-title-2, .project-title-3 {
  width: 35%;
  margin: auto;
  text-align: center; }

.project-title-1, .project-title-2 {
  position: absolute;
  top: 5%;
  left: 33%;
  color: #f7f7f7;
  font-size: 3em; }

.project-title-1 {
  font-family: magneta, serif;
  font-weight: 500;
  font-style: normal; }

.project-title-2 {
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  opacity: .3;
  font-size: 4em; }

.project-title-3 {
  color: #014023;
  padding-top: 5em;
  font-family: magneta, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: .2em;
  font-size: 1.5em; }

.iconflex {
  display: inline-flex; }
  .iconflex img {
    padding: 4em; }

.icongrid {
  display: grid;
  grid-template-columns: 16% 16% 16% 16% 16% 16%;
  grid-column-gap: 1em;
  grid-row-gap: 1em; }
  .icongrid img {
    padding: 4em;
    min-height: 73px; }
  .icongrid h5 {
    color: #262626;
    text-align: center;
    font-family: futura-pt, sans-serif;
    font-weight: 500;
    font-style: normal; }

.contactflex {
  display: flex; }

.contactinfo {
  width: 50%;
  border-right: 1px solid #014023; }

.contactinfo-l {
  height: 100%;
  width: 50%; }

.art-elements {
  padding-top: 2em;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-column-gap: 4em;
  grid-row-gap: 4em; }
  .art-elements article {
    width: 70%;
    margin: auto; }

/*---------6. keyframes --------*/
@keyframes appear {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes appearleft {
  0% {
    opacity: 0;
    transform: translateX(-200px); }
  100% {
    opacity: 1;
    transform: translate(0); } }
/*---------7. media quaries --------*/
/*-screen*/
/*-table*/
/*-mobile*/

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