html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/*  Colours   */
/*   Elements   */
html, body {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "Acumin-Pro", sans-serif; }

a {
  color: white; }

h1 {
  font-family: "Acumin-Pro-Condensed", sans-serif; }

h2, h3, h4, h5, h6 {
  font-family: "Acumin-Pro-Extra-Condensed", sans-serif;
  font-weight: 400;
  text-transform: uppercase; }

p {
  line-height: 1.25rem; }

/*    Grid     */
.gridContainer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: repeat(12, [col-start] 1fr);
  /* rows / columns */
  -ms-grid-rows: 1200px;
  grid-auto-rows: 10vh; }

.gridContainer > * {
  -ms-grid-column-span: 12;
  grid-column: col-start / span 12; }

/*   Header   */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  background-color: #26427f;
  z-index: 30; }

#logo {
  width: 24vw; }

/*    Main Section     */
.main {
  -ms-grid-column: 2;
  -ms-grid-column-span: 10;
  grid-column: 2 / 12;
  -ms-grid-row: 2;
  -ms-grid-row-span: 8;
  grid-row: 2 / 11;
  grid-template-areas: main;
  /*background-color: rgba(123, 34, 55, 0.5);*/
  background: url("../images/bg.png");
  background-repeat: repeat;
  /*height: 80vh;*/ }
  .main h1 {
    font-size: 5.5rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 4rem;
    padding: 0 1rem;
    padding-bottom: 5rem; }

/*  To shift the <H1> tag copy up slightly  */
.baseline {
  position: relative;
  top: -15px;
  z-index: -10;
  font-weight: 300; }

/*   All the Sections besides the Main Page   */
#about, #team, #design {
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  grid-column: 1 / 13;
  -ms-grid-row: 1;
  -ms-grid-row-span: 10;
  grid-row: 1 / 11;
  color: white;
  background-color: #26427f;
  height: 100vh;
  -webkit-transition: all ease-in 0.3s;
  -o-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s; }
  #about a, #team a, #design a {
    color: white;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 50; }

/*  Team  */
#team {
  -ms-grid-row: 2;
  -ms-grid-row-span: 13;
  grid-row: 2 / 15;
  padding: 0 15px; }

#ourTeam p {
  font-size: x-small;
  line-height: 0.75rem; }

.bio {
  width: 85vw; }

/*    Design    */
#design {
  background-color: white !important;
  color: black; }
  #design a {
    color: white; }

.desImg {
  height: 30vw;
  background-color: lightgray; }

.desCopy {
  height: 20vh; }

/*   Navigation   */
.navi {
  position: fixed;
  bottom: 5vh;
  left: 0;
  width: 100%;
  z-index: 20; }
  .navi a {
    color: white;
    background-color: #909090;
    padding: 1rem;
    margin: 0 0.125rem;
    cursor: default; }
  .navi a:hover {
    background-color: #afafaf;
    text-decoration: none; }

/*   Footer   */
.footer {
  background-color: #008bbc;
  color: white;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5vh; }

/*   Special Classes   */
/*   For <HR> tag to be white   */
.bbwhite {
  border-bottom: 1px solid white; }

/*   makes the height of About, Design 100vh   */
.ht100vh {
  height: 100vh; }

@media (min-width: 768px) {
  /*    Main Section     */
  .main h1 {
    font-size: 10.5rem;
    line-height: 8rem;
    padding-bottom: 0; }
  /*  To shift the <H1> tag copy up slightly  */
  .baseline {
    top: -50px;
    z-index: -10; }
  /*  Team  */
  #ourTeam p {
    font-size: 0.75rem;
    line-height: 1rem; }
  #ourTeam h6 {
    font-size: 1.25rem; }
  .bio {
    width: 30vw;
    padding: 0 15px; } }

@media (min-width: 992px) {
  /*   Elements   */
  h2 {
    font-size: 4rem; }
  /*   About   */
  #about p {
    font-size: 1.75rem;
    line-height: 2rem; }
  /*  Team  */
  #ourTeam p {
    font-size: 1.25rem;
    line-height: 1.5rem; }
  #ourTeam h6 {
    font-size: 2rem; }
  .bio {
    width: 48vw;
    padding: 0 15px; }
  /*    Design    */
  .desCopy h3 {
    font-size: 3.5rem; }
  .desCopy p {
    font-size: 1.75rem;
    line-height: 2rem; } }

@media (min-width: 1200px) {
  /*   Header   */
  #logo {
    width: 16vw; }
  /*  Team  */
  #ourTeam p {
    font-size: 1rem;
    line-height: 1.25rem; }
  #ourTeam h6 {
    font-size: 1.75rem; }
  .bio {
    width: 32vw;
    padding: 0 15px; }
  /*  Design  */
  .desCopy h3 {
    font-size: 2.5rem; }
  .desCopy p {
    font-size: 1.25rem;
    line-height: 1.5rem; }
  .desImg {
    height: 22vw; } }
