@font-face {
  font-family: "Atlantic Medium";
  src: url("../../fonts/HWAtlantic-Medium.otf");
}
@font-face {
  font-family: "Atlantic Semibold";
  src: url("../../fonts/HWAtlantic-Semibold.otf");
}
@font-face {
  font-family: "satgrey";
  src: url("../../fonts/Satgrey_Trial_1-Regular.otf");
}
:root {
  scroll-behavior: smooth;
}

body {
  background-color: #E6E6E6;
  overflow-x: hidden;
  font-family: "Atlantic Medium";
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-transition: background-color 500ms linear;
  transition: background-color 500ms linear;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  vertical-align: bottom;
  display: grid;
  text-decoration: none;
}

.header {
  display: -webkit-box;
  display: flex;
  padding: 1em;
  position: fixed;
  z-index: 99;
  margin-left: 3em;
  margin-top: 2em;
}
.header__work {
  margin-right: 1em;
}
.header__work-button p {
  font-family: "Atlantic Semibold";
  font-size: 1.1rem;
  color: #E6E6E6;
}
.header__project-name p {
  font-family: "Atlantic Medium";
  font-size: 1.2em;
  color: #E6E6E6;
}
.header__grid-toggle {
  display: none;
}

.hero-image {
  height: 100vh;
  width: 100vw;
}
.hero-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}

.corners {
  position: absolute;
  display: -webkit-box;
  display: flex;
  width: 100%;
  height: 2.5em;
  padding: 0.3em;
}
.corners--right {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  justify-self: flex-end;
  margin-left: auto;
}
.corners img {
  width: auto;
  height: 100%;
}

.description {
  padding: 3em;
  color: #00F474;
}
.description__name {
  margin-bottom: 1em;
}
.description__name h2 {
  font-family: "satgrey";
  font-size: 2.5rem;
}
.description__content {
  margin-bottom: 1em;
}
.description__content p {
  font-size: 1.1rem;
}
.description__info-collab {
  margin-bottom: 1em;
}
.description__info-collab p {
  font-size: 0.9rem;
  margin-bottom: 0.5em;
}
.description__info-type {
  margin-bottom: 1em;
}
.description__info-type p {
  font-size: 0.9rem;
  margin-bottom: 0.5em;
}

.work-images {
  padding: 1em;
  padding-bottom: 3em;
}
.work-images img {
  margin-bottom: 0.4em;
}

.footer {
  padding: 1em;
  padding-top: 5em;
  color: #6E6E6E;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 244, 116)), to(rgba(0, 244, 116, 0)));
  background-image: linear-gradient(to top, rgb(0, 244, 116), rgba(0, 244, 116, 0));
}
.footer__logo {
  margin-bottom: 3em;
  width: 95vw;
  margin-left: auto;
  margin-right: auto;
}
.footer__logo img {
  width: 100%;
  height: auto;
}
.footer__blurb {
  font-family: "satgrey";
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 3em;
}
.footer__contact {
  text-align: center;
  background-color: #E6E6E6;
  border-radius: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 1em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}
.footer__contact span {
  font-family: "Atlantic Semibold";
}
.footer__copyright {
  text-align: center;
  margin-bottom: 3em;
}

.hover-info__description-collaborators {
  margin-bottom: 0.3em;
}
.hover-info__description-services {
  margin-bottom: 0.3em;
}

@media screen and (min-width: 800px) {
  .description {
    width: 80vw;
    max-width: 80em;
    margin-left: auto;
    margin-right: auto;
    padding: 3em 2em;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .work-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
    grid-gap: 1em;
  }
  .work-images .grid-span {
    grid-column: 1/span 2;
  }
  .work-images img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .corners {
    height: 3.5em;
  }
}