#about {
  padding: 70px var(--pCon);
}
#about .con {
  display: flex;
  height: calc(100vh - 80px);
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
}
#about .text {
  text-align: justify;
  width: 70%;
  margin-bottom: 10px;
  z-index: 99;
  font-size: 1.2em;
  line-height: 1.5em;
}
h2 {
  position: relative;
}
h2::after {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  content: "";
  margin-left: 20px;
  width: 45%;
  height: 2px;
  background: var(--textColor2);
}
#about .img {
  width: 25%;
  z-index: 99;
  height: 25vw;
  border: 2px solid var(--textColor2);
  box-shadow: 20px 20px var(--textColor2);
}

#about .img:hover {
  border: 2px solid var(--textColor3);
  box-shadow: 20px 20px 5px var(--textColor3);
}

#about .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 750px) {
  #about {
    padding-top: 70px;
  }
  #about .con {
    width: 100%;
    display: block;
    margin-top: 15%;
  }
  #about .text {
    width: 100%;
    font-size: 1em;
    line-height: 1em;
  }
  #about .img {
    float: right;
    width: 25%;
    height: 25vw;
    margin: 10px 20px;
    box-shadow: 10px 10px var(--textColor1);
  }
}

@media (max-width: 425px) {
  h2 {
    margin-bottom: 10px;
  }
  #about .text {
    width: 100%;
    font-size: 1.1em;
    line-height: 1.2em;
  }
  #about .img {
    box-shadow: 7px 7px var(--textColor1);
  }
}
@media (max-width: 365px) {
  h2 {
    margin-bottom: 5px;
    font-size: 0.9em;
  }
  p {
    font-size: 0.9em;
  }
}
