@import url('https://fonts.googleapis.com/css?family=Roboto');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.4;
  background-color: #000;
}

a {
  text-decoration: none;
}

p {
  margin: 0.75rem 0;
}

/* Utility Classes */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 2rem;
  overflow: hidden;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: rgb(50, 135, 255);
}

.bg-light {
  background: #f4f4f4;
  color: #333;
}

.bg-dark {
  background: #333;
  color: #f4f4f4;
}

.bg-primary {
  background: rgb(50, 135, 255);
  color: #fff;
}

.l-heading {
  font-size: 4rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.m-heading {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.py-1 { padding: 1.5rem 0; }
.py-2 { padding: 2rem 0; }
.py-3 { padding: 3rem 0; }

.p-1 { padding: 1.5rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

.btn {
  display: inline-block;
  color: #fff;
  background: rgb(50, 135, 255);
  padding: 0.5rem 2rem;
  border: none;
  border-radius: 5px;
}

.btn:hover {
  background: rgb(77, 150, 255);
}

.btn-dark {
  background: #333;
  color: #fff;
}

.list {
  margin: 0.5rem 0;
  list-style: none;
}

.list li {
  padding: 0.5rem 0;
  border-bottom: #444 dotted 1px;
}

/* Navbar */
#navbar {
  display: flex;
  position: sticky;
  top: 0;
  background: #333;
  color: white;
  justify-content: space-between;
  z-index: 1;
  padding: 1rem;
}

#navbar ul {
  display: flex;
  align-items: center;
  list-style: none;
}

#navbar ul li a {
  color: #fff;
  padding: 0.75rem;
  margin: 0 0.25rem;
}

#navbar ul li a:hover {
  background: rgb(50, 135, 255);
  border-radius: 5px;
}

/* Showcase */
#showcase {
  background: #333 url('../images/screenshots/1.png') no-repeat
  center center/cover;
  height: 100vh;
  color: #fff;
}

#showcase #fader {
  opacity: 0;
  background-color: #000;
  position: absolute;
  height: 100vh;
  top: 66px;
  left: 0;
  right: 0;
  bottom: 0;
}

#showcase .showcase-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
  /* Overlay */
  position: absolute;
  top: 66px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Section: What We Do */
#what .item {
  display: flex;
  padding: 1rem;
}

#what .item div {
  flex: 1;
  padding: 1rem;
}

#what .item img {
  width: 200px;
  border-radius: 50%;
}

/* Section: Who We Are */
#game {
  display: flex;
}

#game div {
  flex: 1;
}

#game .squid {
  background: url('../images/squid.png') no-repeat
  center center/cover;
  height: 600px;
  flex: 2;
}

#game .plane {
  background: url('../images/plane.PNG') no-repeat
  center center/cover;
  height: 600px;
  flex: 2;
}

/* Section: Clients */
#clients {
  background-color: #fff;
}

#clients .items {
  display: flex;
  justify-content: space-evenly;
}

#clients .items img {
  display: flex;
  margin: auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

/* Section: Contact */
#contact {
  display: flex;
}

#contact .map, #contact .contact-form {
  flex: 1;
}

#contact .contact-form .form-group {
  margin: 0.75rem;
}

#contact .contact-form label {
  display: block;
}

#contact .contact-form input, 
#contact .contact-form textarea {
  width: 100%;
  padding: 0.5;
}

/* Footer */
#footer-link {
  color: rgb(50, 135, 255);
}