* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1vw;
}

@font-face {
  font-family: handy;
  src: url(../assets/fonts/WhiteAngelica.ttf);
}

@font-face {
  font-family: text;
  src: url(../assets/fonts/futura-pt-light.otf);
}

body {
  max-width: 1920px;
  margin: auto;
  background-image: linear-gradient(200deg, #e4e4e4 0%, #d5dbde 30%, #a7a394ec 60%, #5b6352f5 100%);
  background-repeat: no-repeat;
}

header {
  height: 5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 1em 0;
  padding-right: 5vw;
}

header .logo-text {
  font-family: handy;
  font-size: 1.35em;
  color: #5a5a5a;
  text-shadow: 1px 1px 5px #7c7c7c;
  margin-left: 10vw;
}

header nav {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(to right, black, #e4e1e1) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(black), to(#e4e1e1)) 1;
     border-image: linear-gradient(to right, black, #e4e1e1) 1;
}

header nav a {
  font-family: text;
  font-size: 1em;
  color: darkgray;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

header nav a div {
  width: 1.5vw;
  height: 0.15vw;
  background-color: darkgray;
  margin: 0.2vw 0;
}

header nav a:hover {
  color: #051801;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

section {
  padding: 2vw;
  padding-left: 10vw;
  padding-right: 10vw;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2vw;
}

section figure {
  position: relative;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  opacity: 1;
  -webkit-transition: .7s ease-out;
  transition: .7s ease-out;
}

section figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 4 / 3;
}

section figure figcaption {
  background-color: #051801;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: #051801;
}

section figure figcaption span {
  font-family: handy;
  font-size: .7em;
}

section figure:hover {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 1;
  z-index: 1;
}

footer {
  height: 10vw;
  background-color: #051801;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2em;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer .footer-style {
  font-family: text;
  color: rgba(245, 245, 245, 0.5);
  -webkit-transition: .05s ease-out;
  transition: .05s ease-out;
}

footer span:hover {
  color: whitesmoke;
}

footer .footer-style {
  font-family: text;
  color: rgba(245, 245, 245, 0.5);
  -webkit-transition: .05s ease-out;
  transition: .05s ease-out;
}

footer span:hover {
  color: whitesmoke;
}
/*# sourceMappingURL=sub-pages.css.map */