/* Global */

img {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
}

/* Typography */

h1 {
  font-family: 'Noto Serif', serif;
  font-size: 3.125em;
  font-weight: 600;
  line-height: 1.33em;
}

h2 {
  font-family: 'Karla', sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.33em;
  letter-spacing: -0.02em;
}

h3 {
  font-family: 'Noto Serif', serif;
  font-size: 2.0em;
  font-weight: 600;
  line-height: 1.33em; 
}

h4 {
  color: #A2A7AB;
  font-family: 'Karla', sans-serif;
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.33em;
}

a {
  color: #000000;
  text-decoration: none;
}

a:hover, a:focus {
    color: #A2A7AB;
}

p {
  color: #5D5D5D;
  font-family: 'Karla', sans-serif;
  font-size: 1.125em;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: -0.02em;
}

.p-lead {
  font-family: 'Karla', sans-serif;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 1.5em;
}

.quote {
  border-left: 6px solid #000000;
  font-family: 'Noto Serif', serif;
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.5em;
  padding-left: 24px;
}

.caption {
  color: #A2A7AB;
  font-style: italic;
  margin-top: 0;
  text-align: center;
}

/* Components */

.button {
  background-color: #000000;
  border-radius: 4px;
  color: #ffffff;
  font-family: 'Karla', sans-serif;
  font-weight: 600;
  font-size: 1.125em;
}

.button:hover {
  background-color: #000000;
  /* offset-x | offset-y | blur-radius | spread-radius | color */
  box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.2);
}

ul {
  list-style: none;
  margin-left: 0;
}

nav > i {
  color: black;
}

/* Custom */

.img-preview { 
  border-radius: 8px;
  margin-bottom: 16px;
  transition: all .2s ease-in-out;
}

.img-preview:hover {
  -webkit-transform: scale(1.025);
  -ms-transform: scale(1.025);
  transform: scale(1.025);
  -webkit-box-shadow: 0px 10px 40px -15px rgba(0,0,0,0.6);
  -moz-box-shadow: 0px 10px 40px -15px rgba(0,0,0,0.6);
  box-shadow: 0px 10px 40px -15px rgba(0,0,0,0.6);
}

.object-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.social-icons-1 {
  display: inline;
  float: right;
  padding: 24px 0 0 0;
}

.social-icons-1 li {
  display: inline;
  font-size: 1.25rem;
  padding-right: 24px;
}

.social-icons-1 a {
  color: #000000;
}

.social-icons-1 a:hover {
  opacity: 0.7;
}

.project > img {
  margin-top: 56px;
  margin-bottom: 16px;
}

.project > ul {
  list-style: initial;
  margin-left: 48px;
}

.filogo {
  height: 64px; 
  margin-top: -10px; 
}

.shadow {
  /* offset-x | offset-y | blur-radius | spread-radius | color */
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1);
}

.clients li {
  display: inline-block;
  padding: 0 16px;
  opacity: 0.9;
}

.footer {
  border-top: 1px solid #DADADA;
  padding: 16px 0 0 0;
}

.footer > p {
  color:#A2A7AB; 
}

.copyright {
  float: right; 
}

/* Heroes */

.hero {
  height: 600px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  width: 100% !important;
  z-index: 0;
}

#draft-hero {
  background-image: url("../img/img_draft-hero@2x.png");
}

#bf-hero {
  background-image: url("../img/img_bf-hero@2x.png");
}

#cc-hero {
  background-image: url("../img/img_cc-hero@2x.png");
}

#sandbox-hero {
  background-image: url("../img/img_sandbox-hero@2x.png"); 
}

/* Media Queries */

@media only screen and (max-width: 880px) {
  h1 {
    font-size: 2.66em;
  }
  .hero {
    height: 450px; 
  }
  .client-showcase {
    display: none;
  }
  .copyright {
    display: none; 
  }
}

@media only screen and (max-width: 420px) {
  h1 {
    font-size: 1.85em;
  }
  .p-lead {
    font-size: 1.125em; 
  }
  .nav {
    margin: 16px 0 0 0;
  }
  .logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 24px;
  }
  .social-icons-1 {
    display: block;
    float: none;
    font-size: 1.25rem;
    text-align: center;
  }
  .hero {
    height: 300px;
  }
  .footer > p {
    font-size: 0.8em;
    text-align: center;
  }
  .flex-video {
    display: none; 
  }
}