#about {
  margin: 0;
  background-color: #f3f3f3;
  padding-top: 20px;
}
.heading {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #00ad82;
  font-size: 2.2rem;
  margin: 0;
  padding: 40px 0 12px 0;
  letter-spacing: 1px;
}
.sub-heading {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  color: #7b7b7b;
  font-size: 0.8rem;
  margin: 0 0 20px 0;
}
#about-grid {
  margin-top: 40px;
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(1, 1.5fr 2fr 1fr);
  padding-bottom: 150px;
}
#about-text {
  margin: 0px auto 0 auto;
}
#about-text p {
  padding-top: 20px;
  margin: 2px;
  font-size: 1rem;
  font-weight: 400;
  color: #5e5e5e;
  line-height: 1.2rem;
  width: 85%;
}
#about-img {
  margin: auto;
}
#about-img2 {
  height: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.overlay {
  height: 250px;
  width: 250px;
  background-color: #00ad82;
  border-radius: 4px;
  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }
}
#about-img h2 {
  width: 250px;
  text-align: left;
  color: #222222;
  margin: 0;
  margin-bottom: 20px;
  padding-left: 12px;
  font-weight: 500;
}
#about-img p {
  font-family: "inconsolata", sans-serif;
  width: 250px;
  text-align: left;
  color: #222222;
  margin: 0;
  margin-bottom: 4px;
  padding-left: 12px;
  font-size: 1.2rem;
}
.about-line {
  position: relative;
  width: 80%;
  height: 100%;
  background-color: #00ad82;
  border-radius: 4px;
  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }
}
.about-line > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000009a;
  opacity: 0;
  border-radius: 4px;
  transition: all 0.5s ease;
  cursor: copy;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  & i {
    color: #eeeeee;
    font-size: 1.5rem;
  }
  & p {
    color: #eeeeee;
    font-family: "inconsolata", sans-serif;
  }
}
.about-line:hover {
  & > div {
    opacity: 1;
  }
}