html {
  height: 100vh;
}

body {
  padding: 0;
  margin: 0;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
}

.hide {
  display: none;
}

.show {
  display: block;
}

#intro,
#team,
footer {
  margin: 20px;
}

header {
  background-color: #0b203f;
  padding: 20px 0 0 20px;
}

#content {
  max-width: 1280px;
  margin: 0 auto;
}

#content .content-grid {
  margin: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 580px;
}

#content .content-grid .profile {
  width: 30%;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#content .content-grid .profile img {
  width: 297px;
  height: 373.3px;
}

#content .content-grid .profile-info {
  width: 80%;
}

#content .content-grid .profile-info h2 {
  font-size: 3.5rem;
}

#content .content-grid .profile-info button,
#content .content-grid .profile-info #transcript {
  font-style: italic;
  color: #0b203f;
}

#content .content-grid .profile-info button {
  left: 105px;
  position: relative;
  cursor: pointer;
}

#content .content-grid .profile-info p {
  font-size: 1.5rem;
}

#content .content-grid .profile-info .backBtn a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#content .content-grid .profile-info .backBtn a:hover {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}

#content .content-grid .profile-info .backBtn a:hover p {
  color: #929292;
}

#content .content-grid .profile-info .backBtn a img {
  margin: 0 20px;
  width: 125px;
  height: 62px;
}

#content .content-grid .profile-info .backBtn a p {
  line-height: 1rem;
  color: #0b203f;
}

#content #intro {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  height: 200px;
  padding: 0;
  background-image: url("img/grid-of-dots-img.png");
  background-size: 35%;
  background-repeat: no-repeat;
  background-position: 100% 0%;
}

#content #intro h1 {
  font-size: 6rem;
  line-height: 80px;
}

#content #intro p {
  color: #929292;
  font-size: 1.2rem;
  top: -40px;
}

#content #intro h1,
#content #intro p {
  position: relative;
}

#content #team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: auto;
  padding-top: 80px;
  padding-bottom: 200px;
}

#content #team .team-member {
  width: 33%;
  cursor: pointer;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

#content #team .team-member-image {
  height: 200px;
  width: 150px;
  position: relative;
  margin: 0 auto;
}

#content #team .team-member-image img {
  display: block;
  width: 150px;
  height: auto;
  position: absolute;
  bottom: 0;
}

#content #team .team-member h3 {
  text-align: center;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}

#content #team .team-member:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

footer {
  position: relative;
}

footer p {
  position: relative;
  text-align: right;
  bottom: 20px;
}

@media only screen and (max-width: 1124px) {
  #content #intro h1 {
    font-size: 3rem;
    line-height: 4rem;
  }
  #content #team {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media only screen and (max-width: 600px) {
  #content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #content #intro {
    height: auto;
  }
  #content #intro h1 {
    font-size: 3rem;
    line-height: 4rem;
  }
  #content #team,
  #content .content-grid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 40px;
    padding-top: 0;
  }
  #content #team .team-member,
  #content .content-grid .team-member {
    margin: 0 auto;
    width: 100%;
  }
  #content .content-grid .profile,
  #content .content-grid .profile-info {
    width: 100%;
    padding: 0;
  }
  footer p {
    position: relative;
    text-align: center;
  }
}
/*# sourceMappingURL=style.css.map */