* {
  box-sizing: border-box;
  font-family: 'Century Gothic', sans-serif;
}

::-moz-selection {
  background: #007AC4;
  text-shadow: none;
}

::selection {
  background: #007AC4;
  text-shadow: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  box-sizing: border-box;
  overflow-x: hidden;
  background-color: #FFFFFF;
}

#people-intro {
  height: 180px;
  margin: 0px;
}

/* LAA Logo Intro Page */
#people-intro .content img {
  position: absolute;
  top: 65px;
  left: 50%;
  width: 80px;
  transform: translate(-50%, -50%);

  transition: filter;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

#people-intro .content img:hover {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

/* Leonardi Aray Architects */
#people-intro .content h1 {
  position: absolute;
  top: 100px;
  left: 50%;
  font-weight: 400;
  font-size: 2em;
  letter-spacing: 4px;
  transform: translate(-50%, 0);
  overflow: hidden;
  white-space: nowrap;
}

.wrapper {
  display: grid;
  grid-gap: 0vw;
  grid-template-columns: 30vw 50vw;
  /* grid-auto-rows: minmax(25vh, auto); */
  margin-left: 10vw;
  margin-right: 10vw;
}

.square {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.a {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.b {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.c {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  margin-top: 50px;
  margin-bottom: 50px;
}


.d {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.e {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

.f {
  grid-column: 1 / 3;
  grid-row: 4 / 5;
  margin-top: 50px;
  margin-bottom: 100px;
}



.g {
  grid-column: 1 / 2;
  grid-row: 5 / 6;
}


.h {
  grid-column: 2 / 3;
  grid-row: 5 / 6;
}

.i {
  grid-column: 1 / 3;
  grid-row: 6 / 7;
  margin-top: 50px;
  margin-bottom: 50px;
}

.j {
  grid-column: 1 / 3;
  grid-row: 7 / 8;
  margin-top: 0px;
  margin-bottom: 50px;
}
.profile-pic {

}

.profile-pic img {
  max-width: 300px;
  max-height: 300px;
  float: left;
  position: relative;
}


.square p a.macp {
  text-decoration: underline;
  font-size: 22pt;
  color: #606060;
  letter-spacing: 1.2pt;
  font-weight: 300;
}

.square p a.macp:hover {
  /* text-decoration: underline; */
  color: #007AC4;

}

/* .profile-pic .img-top {
  display: none;
  position: absolute;
  z-index: 2;
}

.profile-pic:hover .img-top {
  display: inline-block;
}

.profile-pic:hover {
  float: left;
} */

.profile-info {
  float: left;
  position: absolute;
}

.profile-info h3 {
  font-size: 24pt;
  color: #424242;
  font-weight: 600;
  margin-top: 0px;
  margin-bottom: 10px;
}

.profile-info p {
  font-size: 20pt;
  color: #424242;
  letter-spacing: 1.5pt;
  font-weight: 500;
  margin-bottom: 10px;
}

.profile-info p a {
  font-size: 18pt;
  color: #424242;
  letter-spacing: 1pt;
  font-weight: 500;
  margin-bottom: 20px;
}

.bio {
  font-size: 22pt;
  color: #424242;
  letter-spacing: 1pt;
  font-weight: 250;
}

p.credits {
  font-size: 22pt;
  color: #424242;
  letter-spacing: 1pt;
  line-height: 1.8;
  font-weight: 250;
}

.credits a{
  text-decoration: underline;
  color: #424242;

}
.credits a:hover{

  color: #007AC4;

}

.header {
  font-size: 24pt;
  color: #424242;
  font-weight: 600;
}

.light {
  color: #606060;
  font-weight: 300;
  font-size: 22pt;

}

.links a {}

.links img {
  height: 30px;
  margin-right: 30px;
  margin-top: 30px;
  transition: filter;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.links img:hover {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

@media only screen and (max-width: 1000px) {
  .wrapper {
    grid-template-columns: 40vw 40vw;
    grid-auto-rows: minmax(25vh, auto);
    margin-left: 10vw;
    margin-right: 10vw;
  }
}




@media only screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
    /* width: 100%; */
  }

  #people-intro .content img {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 55px;
    transform: translate(-50%, -50%);
    -webkit-transition: width 2s, opacity 2s;
    -moz-transition: width 1s, opacity 2s;
    -o-transition: width 1s, opacity 2s;
    transition: width 1s, opacity 2s;
  }

  .square p a.macp {
    font-size: 12pt;
  }



  .bio {
    font-size: 12pt;
    letter-spacing: 1pt;
  }

  .profile-info h3 {
    font-size: 18pt;
  }

  .profile-info p {
    font-size: 16pt;
  }

  .profile-info p a {
    font-size: 12pt;
    letter-spacing: .8pt;
  }


  .links img {
    height: 30px;
    margin-right: 30px;
    margin-top: 30px;
  }

  .profile-pic img {
    max-width: 200px;
  }
  p.credits {
    font-size: 12pt;
    letter-spacing: 1pt;

  }
  span.light {
    font-size: 12pt;
    letter-spacing: 1pt;

  }
  span.header {
    font-size: 12pt;

  }
}

@media only screen and (max-width: 500px) {
  #people-intro {
    height: 100px;
  }
  .wrapper {
    display: inline-grid;
    grid-template-columns: 40vw 50vw;
    margin-left: 5vw;
    margin-right: 5vw;

    /* grid-template-rows: 30vh 30vh; */
    /* justify-content: center; */
  }

  .square {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .links img {
    height: 20px;
    margin-right: 20px;
    margin-top: 20px;
  }

  .profile-info h3 {
    font-size: 14pt;
  }

  .profile-info p {
    font-size: 12pt;
  }

  .profile-info p a {
    font-size: 10pt;
  }
  .profile-pic img {
    max-width: 130px;
  }
}

@media only screen and (max-height: 640px) {


  /* .profile-info h3 {
    margin-top: 0px;
    margin-bottom: 5px;
  } */

  /* .profile-info p {
    margin-top: 5px;
    margin-bottom: 5px;
  } */

  /* .profile-info p a {
    margin-top: 5px;
    margin-bottom: 5px;
  } */

  /* .links img {
    margin-right: 20px;
    margin-top: 5px;
  } */
}

@media only screen and (max-height: 690px) {
  .wrapper {
    grid-row-gap: 20px;
  }
  .square {
    margin-top: 10px;
    margin-bottom: 10px;

  }
  #people-intro {
    height: 100px;
  }
  p.credits {
    font-size: 12pt;
    letter-spacing: 1pt;
  }
  span.header {
    font-size: 12pt;
  }
  span.light {
    font-size: 12pt;
    letter-spacing: 1pt;

  }
}

@media only screen and (max-width: 400px) {
  .profile-info p a {
    font-size: 9pt;
    letter-spacing: .6pt;
  }
}

@media only screen and (max-width: 370px) {
  .profile-info p a {
    font-size: 8pt;
    letter-spacing: .4pt;
  }
}
