/* Lets get them fonts in */
@font-face {
  font-family: "bold";
  src: url("fonts/gilroy-bold-webfont.woff2") format("woff2"),
    url("fonts/gilroy-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "regular";
  src: url("fonts/gilroy-regular-webfont.woff2") format("woff2"),
    url("fonts/gilroy-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "semibold";
  src: url("fonts/gilroy-semibold-webfont.woff2") format("woff2"),
    url("fonts/gilroy-semibold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "ultralight";
  src: url("fonts/gilroy-ultralight-webfont.woff2") format("woff2"),
    url("fonts/gilroy-ultralight-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 60px;
  font-family: "regular";
}

/* Header menus, definitley need those */
.menu-container {
  display: block;
  margin-top: 60px;
  margin-bottom: 80px;
}

.menu {
  list-style: none;
  margin: 0px;
  padding: 0px;
  font-size: 0px;
}

.menu li {
  display: inline-block;
  font-size: 18px;
  font-family: "bold";
  margin-right: 40px;
}

.menu li:last-child {
  margin-right: 0px;
}

.menu li a {
  color: #000;
  text-decoration: none;
  position: relative;
}

.menu li a::before,
.intro-header a::before {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #c4c4c4;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.intro-summary a::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 0;
  height: 1px;
  background-color: #c4c4c4;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (hover: hover) and (pointer: fine) {
  .menu li a:hover::before,
  .intro-header a:hover::before,
  .intro-summary a:hover::before {
    left: 0;
    right: auto;
    width: 100%;
  }
}

/* What's a portfolio website without an introduction? */
.intro-header {
  font-size: 70px;
  font-family: "ultralight";
  line-height: 74px;
  max-width: 960px;
  margin: 0px auto;
}

.intro-header span:nth-of-type(1) {
  font-family: "regular";
}

.intro-header span:nth-of-type(2),
.intro-header span:nth-of-type(3) {
  font-family: "semibold";
}

.intro-header span.donzo {
  font-family: "semibold";
  font-size: 70px;
  color: #c4c4c4;
}

.intro-header a {
  text-decoration: none;
  color: #000;
  position: relative;
}

.intro-summary {
  font-size: 24px;
  font-family: "regular";
  line-height: 30px;
  max-width: 960px;
  margin: 32px auto 80px auto;
  border-top: 1px solid #c4c4c4;
  padding-top: 32px;
}

.intro-summary a {
  color: #000;
  font-family: "semibold";
  text-decoration: none;
  position: relative;
}

.travel {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    linear-gradient(
      209.48deg,
      rgba(0, 0, 0, 0) 1.08%,
      rgba(0, 0, 0, 0.5769) 43.94%,
      #000000 99.81%
    ),
    url(../images/travel-map.jpg);
  mix-blend-mode: luminosity;
  color: #fff;
  border-radius: 4px;
  display: block;
  padding: 88px 35px;
  height: 628px;
  position: relative;
}

.travel-description {
  font-size: 40px;
  font-family: "ultralight";
  line-height: 50px;
  position: absolute;
  max-width: 348px;
  bottom: 88px;
  right: 0px;
  left: 0px;
  margin: 0px auto;
}

.travel-description span {
  font-family: "semibold";
  font-size: 46px;
}

.travel-description::selection {
  background: #fff;
  color: #000;
}

/* Styling the homepage featured projects */
.project {
  background-color: #000;
  color: #fff;
  border-radius: 4px;
  display: block;
  padding: 88px 35px;
  height: 628px;
  position: relative;
}

.project-description {
  font-size: 50px;
  font-family: "semibold";
  line-height: 50px;
  position: absolute;
  max-width: 348px;
  bottom: 88px;
  right: 0px;
  left: 0px;
  margin: 0px auto;
}

.project-description strong {
  font-size: 88px;
}

.project-description span {
  display: block;
  font-size: 24px;
  line-height: 46px;
  font-family: "ultralight";
}

.project-moretext {
  font-size: 24px;
  font-family: "regular";
  line-height: 30px;
  max-width: 960px;
  margin: 80px auto;
}

.project::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  transition: box-shadow 0.2s ease;
  border-radius: 4px;
}

.project:hover::after {
  box-shadow: inset 0 0 0 2px #fff;
  border-radius: 4px;
}

.project-image {
  background-color: #000;
  color: #fff;
  border-radius: 4px;
  display: block;
  padding: 88px 35px;
  height: 628px;
  position: relative;
}

.project-slide {
  background-color: #000;
  color: #fff;
  border-radius: 4px;
  display: block;
  max-height: 628px;
  position: relative;
  border: 6px solid #000;
  overflow: hidden;
}

.project-slide-cover {
  position: absolute;
  width: 100%;
  height: 628px;
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    linear-gradient(
      209.48deg,
      rgba(0, 0, 0, 0) 1.08%,
      rgba(0, 0, 0, 0.5769) 43.94%,
      #000000 99.81%
    );
  z-index: 2;
  visibility: visible;
  opacity: 1;
}

.project-slide:hover > .project-slide-cover {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 2s, opacity 2s linear;
}

.project-phase {
  position: absolute;
  bottom: 80px;
  right: 0px;
  z-index: 22;
  background-color: #000;
  font-family: "semibold";
  font-size: 16px;
  padding: 10px 20px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* Styling the homepage featured projects - FORD */
.ford {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    linear-gradient(
      209.48deg,
      rgba(0, 0, 0, 0) 1.08%,
      rgba(0, 0, 0, 0.5769) 43.94%,
      #000000 99.81%
    ),
    url(../images/ford.jpg);
  mix-blend-mode: luminosity;
}

.ford:hover {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    url(../images/ford.jpg);
  mix-blend-mode: normal;
}

.project.ford .project-logo {
  margin-top: 52px;
}

.ford-desktop-final {
  background: url(../images/ford-final-desktop.jpg);
  background-size: cover;
}

.sunrun-lp-one {
  background: url(../images/sunrun-lp-009.jpg);
  background-size: cover;
}

.staticdesign-one {
  background: url(../images/staticdesign-one.jpg);
  background-size: cover;
}

.about-me-travel {
  background: url(../images/about-me-travel.png);
  background-size: contain;
  background-repeat: no-repeat;
}

/* Styling the homepage featured projects - SUNRUN */
.sunrun {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    linear-gradient(
      209.48deg,
      rgba(0, 0, 0, 0) 1.08%,
      rgba(0, 0, 0, 0.5769) 43.94%,
      #000000 99.81%
    ),
    url(../images/sunrun.jpg);
  mix-blend-mode: luminosity;
}

.sunrun:hover {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    url(../images/sunrun.jpg);
  mix-blend-mode: normal;
}

.project.sunrun .project-logo {
  margin-top: 70px;
}

/* Styling the homepage featured projects - SUNRUN */
.sunrun-lp-two {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    linear-gradient(
      209.48deg,
      rgba(0, 0, 0, 0) 1.08%,
      rgba(0, 0, 0, 0.5769) 43.94%,
      #000000 99.81%
    ),
    url(../images/sunrun-lp-two.jpg);
  mix-blend-mode: luminosity;
  background-size: contain;
}
.sunrun-lp-two:hover {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    url(../images/sunrun-lp-two.jpg);
  mix-blend-mode: normal;
  background-size: contain;
}

.sunrun-lp-three {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    linear-gradient(
      209.48deg,
      rgba(0, 0, 0, 0) 1.08%,
      rgba(0, 0, 0, 0.5769) 43.94%,
      #000000 99.81%
    ),
    url(../images/sunrun-lp-four.jpg);
  mix-blend-mode: luminosity;
  background-size: contain;
}

.sunrun-lp-three:hover {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    url(../images/sunrun-lp-four.jpg);
  mix-blend-mode: normal;
  background-size: contain;
}

.sunrun-lp-four {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    linear-gradient(
      209.48deg,
      rgba(0, 0, 0, 0) 1.08%,
      rgba(0, 0, 0, 0.5769) 43.94%,
      #000000 99.81%
    ),
    url(../images/sunrun-lp-three.jpg);
  mix-blend-mode: luminosity;
  background-size: contain;
}

.sunrun-lp-four:hover {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    url(../images/sunrun-lp-three.jpg);
  mix-blend-mode: normal;
  background-size: contain;
}

.project-lp-view {
  height: 237px;
}

/* Styling the homepage featured projects - MYSELF */
.staticdesign {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    linear-gradient(
      209.48deg,
      rgba(0, 0, 0, 0) 1.08%,
      rgba(0, 0, 0, 0.5769) 43.94%,
      #000000 99.81%
    ),
    url(../images/staticdesign.jpg);
  mix-blend-mode: luminosity;
}

.staticdesign:hover {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    url(../images/staticdesign.jpg);
  mix-blend-mode: normal;
}

/* Styling the homepage featured projects - MYSELF */
.seansartipi {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    linear-gradient(
      209.48deg,
      rgba(0, 0, 0, 0) 1.08%,
      rgba(0, 0, 0, 0.5769) 43.94%,
      #000000 99.81%
    ),
    url(../images/seansartipi.jpg);
  mix-blend-mode: luminosity;
}

.seansartipi:hover {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    url(../images/seansartipi.jpg);
  mix-blend-mode: normal;
}

/* Let's get that footer now */
.footer-header {
  position: relative;
  font-size: 24px;
  font-family: "semibold";
  z-index: 1;
  overflow: hidden;
  text-align: center;
  margin-top: 80px;
  margin: 80px auto 32px auto;
  max-width: 960px;
}
.footer-header:before,
.footer-header:after {
  position: absolute;
  top: 46%;
  overflow: hidden;
  width: 50%;
  height: 1px;
  content: "\a0";
  background-color: #c4c4c4;
}
.footer-header:before {
  margin-left: -51%;
  text-align: right;
}

.footer-header:after {
  margin-left: 10px;
}

::selection {
  background: #000;
  color: #fff;
}

/* Logos */
.project-logos {
  background-color: #000;
  color: #fff;
  border-radius: 4px;
  display: block;
  padding: 80px 35px;
  position: relative;
}

.project-logos img {
  width: 100%;
  height: 130px;
  transition: all 0.2s ease-in-out;
}

/* Styling the homepage featured projects - MYSELF */
.staticdesign-logo {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    linear-gradient(
      209.48deg,
      rgba(0, 0, 0, 0) 1.08%,
      rgba(0, 0, 0, 0.5769) 43.94%,
      #000000 99.81%
    ),
    url(../images/staticdesign.jpg);
  mix-blend-mode: luminosity;
  background-position: bottom center;
}

.staticdesign-logo:hover {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    url(../images/staticdesign.jpg);
  mix-blend-mode: normal;
  background-position: bottom center;
}

.ahs-logo {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    linear-gradient(
      209.48deg,
      rgba(0, 0, 0, 0) 1.08%,
      rgba(0, 0, 0, 0.5769) 43.94%,
      #000000 99.81%
    ),
    url(../images/ahs.jpg);
  mix-blend-mode: luminosity;
  background-position: center center;
}

.ahs-logo:hover {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    url(../images/ahs.jpg);
  mix-blend-mode: normal;
  background-position: center center;
}

.wilson-logo {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    linear-gradient(
      209.48deg,
      rgba(0, 0, 0, 0) 1.08%,
      rgba(0, 0, 0, 0.5769) 43.94%,
      #000000 99.81%
    ),
    url(../images/wilson.jpg);
  mix-blend-mode: luminosity;
  background-position: top center;
}

.wilson-logo:hover {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    url(../images/wilson.jpg);
  mix-blend-mode: normal;
  background-position: top center;
}

.dpoint-logo {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    linear-gradient(
      209.48deg,
      rgba(0, 0, 0, 0) 1.08%,
      rgba(0, 0, 0, 0.5769) 43.94%,
      #000000 99.81%
    ),
    url(../images/dpoint.jpg);
  mix-blend-mode: luminosity;
  background-position: bottom center;
}

.dpoint-logo:hover {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    url(../images/dpoint.jpg);
  mix-blend-mode: normal;
  background-position: bottom center;
}

.rlw-logo {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    linear-gradient(
      209.48deg,
      rgba(0, 0, 0, 0) 1.08%,
      rgba(0, 0, 0, 0.5769) 43.94%,
      #000000 99.81%
    ),
    url(../images/rlw.jpg);
  mix-blend-mode: luminosity;
  background-position: center center;
}

.rlw-logo:hover {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    url(../images/rlw.jpg);
  mix-blend-mode: normal;
  background-position: center center;
}

.dss-logo {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    linear-gradient(
      209.48deg,
      rgba(0, 0, 0, 0) 1.08%,
      rgba(0, 0, 0, 0.5769) 43.94%,
      #000000 99.81%
    ),
    url(../images/dss.jpg);
  mix-blend-mode: luminosity;
  background-position: center center;
}

.dss-logo:hover {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    url(../images/dss.jpg);
  mix-blend-mode: normal;
  background-position: center center;
}

.radon-logo {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    linear-gradient(
      209.48deg,
      rgba(0, 0, 0, 0) 1.08%,
      rgba(0, 0, 0, 0.5769) 43.94%,
      #000000 99.81%
    ),
    url(../images/radon.jpg);
  mix-blend-mode: luminosity;
  background-position: top left;
}

.radon-logo:hover {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    url(../images/radon.jpg);
  mix-blend-mode: normal;
  background-position: top left;
}

.ssl-logo {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    linear-gradient(
      209.48deg,
      rgba(0, 0, 0, 0) 1.08%,
      rgba(0, 0, 0, 0.5769) 43.94%,
      #000000 99.81%
    ),
    url(../images/ssl.jpg);
  mix-blend-mode: luminosity;
  background-position: top left;
}

.ssl-logo:hover {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    url(../images/ssl.jpg);
  mix-blend-mode: normal;
  background-position: top left;
}

.ktb-logo {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    linear-gradient(
      209.48deg,
      rgba(0, 0, 0, 0) 1.08%,
      rgba(0, 0, 0, 0.5769) 43.94%,
      #000000 99.81%
    ),
    url(../images/ktb.jpg);
  mix-blend-mode: luminosity;
  background-position: center center;
  transition: 0.3s all;
}

.ktb-logo:hover {
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(0, 0, 0, 0) 0%,
      #000000 100%
    ),
    url(../images/ktb.jpg);
  mix-blend-mode: normal;
  background-position: center center;
  opacity: 1;
  transition: visibility 10s 2s, opacity 10s 2s linear;
}

.tech-stack {
  margin: 0px;
  padding: 0px;
  font-family: "regular";
  font-size: 0px;
  list-style: none;
}

.tech-stack img {
  max-height: 24px;
  max-width: 24px;
  opacity: 0.5;
}

.tech-stack:hover img {
  opacity: 1;
  transition: visibility 0s 0.5s, opacity 0.5s linear;
}
