/* about section wrap */

#about_section {
  height: 100%;
  margin-top: 5rem;
}

.aboutCard {
  width: 100%;
  max-width: 30rem;
  border-radius: 4px;
  box-shadow: 0px 23px 55px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin: 2rem 1rem;
}

.aboutCardHeader {
  width: 100%;
  position: relative;
}
.aboutCardHeaderBlankTop {
  background-color: #303030;
  width: 100%;
  height: 12rem;
}
.aboutCardHeaderBlankBottom {
  background-color: white;
  width: 100%;
  height: 8rem;
}

.aboutImg {
  width: 90%;
  max-width: 22rem;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.3);
}

.aboutTitle {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

/* text wrapper containing paragraphs and titles */

.aboutTextWrap {
  width: 30rem;
  margin: 1rem;
}

/* about text paragraphs */

.aboutText {
  font-size: 1.1rem;
  line-height: 1.5rem;
  color: black;
  font-weight: 300;
}

.aboutCardBody {
  padding: 0 1.5rem;
}

/* ! MEDIA QUERIES */

@media only screen and (max-width: 991px) {
  /* about section wrap */
  #about_section {
    margin-top: 1rem;
  }
}
