.outer-container .container {
  display: grid;
  grid-template-areas:
    "image brand"
    "image details"
    "image links";
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  align-items: center;
  align-content: center;
  position: relative;
  grid-column-gap: 1.875em;
}

.outer-container .container .image {
  grid-area: image;
  overflow: hidden;
}

.outer-container .container .image img {
  max-width:100%;
  height: 500px;
}

.outer-container .container .brand {
  grid-area: brand;
}

.outer-container .container .brand .title {
  font-size: 4em;
  font-weight: 700;
  line-height: 100%;
  margin: 0;
  font-family: 'proxima-nova', sans-serif;
}
    
.outer-container .container .brand .tagline {
  font-size: 1.1em;
  font-weight: 300;
  font-family: 'proxima-nova', sans-serif;
}

.details {
  grid-area: details;
}

.details .subtitle {
  font-family: 'proxima-nova', sans-serif;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 0;
}

.details .list {
  list-style-type: none;
  padding: 0;
  margin: 16px 0px;
}

.details .list li {
  margin-bottom: 0;
  line-height: 150%;
}

.links {
  grid-area: links;
  display: grid;
  grid-auto-flow: row;
}

/* BUTTONS */
a {
	font-family: "proxima-nova";
	text-decoration: none;
	text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding-bottom: 0
}

.btn {
  margin-bottom: 1em;
  display: block;
  line-height: 1.6em;
  transition: .2s all ease-in-out;
  padding: 1.1em 2em;
  border-radius: 8px;
  text-transform: uppercase;
  background-color: #fff;
  font-weight: 700;
  color: #828282;
  border-bottom: none;
  box-shadow: inset 0 0 0 3px transparent;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 3px #fff;
}

/* Media Queries */
/*Mobile + Tablet*/
@media only screen and (max-width: 64em) { 
  .outer-container .container {
    grid-template-areas:
      "image"
      "brand"
      "details"
      "links";
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto auto auto;
    text-align: center;
    grid-row-gap: 20px;
    padding: 25% 0;
  }
  
  .outer-container .image {
    position: relative;
  }
  
  .outer-container img {
    height: auto;
    max-width: 60%;
  }
  
  .links {
    justify-items: center;
  }
  
  .links  .btn {
      width: 60%;
  }
}

/*Tablet*/
@media only screen and (min-width: 40.063em) and (max-width: 64em) { 
  .links .btn {
    width: 100%;
  }
}
