* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


/*------------------------------------*\
  #BASE
\*------------------------------------*/
html, body {
  font-family: "brandon-grotesque", Arial, Helvetica, sans-serif;
}

body {
  line-height: 1.5;
  background: #fff;
  color: #ff3716;
}

.pure-img-responsive {
  max-width: 100%;
  height: auto;
}


/*------------------------------------*\
  #TYPE
\*------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "brandon-grotesque";
  line-height: 1;
}

h1 {
  font-size: 2em;
  font-weight: 400;
  line-height: 1.5;
}

h2 {
  text-align: center;
  font-size: 1.25em;
  font-weight: 400;
  margin-top: 20px;
}

p {
  font-family: "brandon-grotesque";
  color: #ff3716;
}

a {
  color: #ff3716;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,55,22,0.2);
  transition: all 0.5s ease;
}

a:hover {
  border-bottom: 1px solid #ff3716;
}

.intro {
  font-size: 2em;
}

.contact, .top, .category {
  font-size: 0.75em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
  color: #ff9b8b;
}

.top, .category {
  text-align: center;
}

.category {
  margin-top: 0;
}


/*------------------------------------*\
  #LAYOUT
\*------------------------------------*/
.splash-container {
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed !important;
}

.splash {
  width: 80%;
  height: 50%;
  margin: auto;
  position: absolute;
  top: 100px; left: 0; bottom: 0; right: 0;
}

.content-wrapper {
  background: #ffefed;
  position: absolute;
  top: 99%;
  width: 100%;
  min-height: 12%;
  z-index: 2;
}

.content {
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;
}

.divider {
  padding: 0 10px;
}

.project {
  margin-bottom: 20px;
  padding: 100px 0;
}

.pointer {
  position: absolute;
  margin: auto;
  bottom: 0;
  right: 0;
  width: 17px;
  height: 34px;
  font-size: 60px;
  -webkit-animation: bounce 2s infinite ease-in-out;
}

@-webkit-keyframes bounce {
  0%, 20%, 60%, 100%  { -webkit-transform: translateY(0); }
  40%  { -webkit-transform: translateY(-20px); }
  80% { -webkit-transform: translateY(-10px); }
}


/*------------------------------------*\
  #RESPONSIVE
\*------------------------------------*/
@media (max-width: 48em) {
  .project {
    padding: 50px 0;
  }
}