.wrap-aboutus {
  max-width: 1200px;
  margin: 0 auto;
  line-height: 2rem;
}
.wrap-aboutus ul, .wrap-aboutus ol {
  padding-left: 20px;
}
.wrap-aboutus a:hover {
  color: #04caf7;
}

.about-box-1 {
  margin-bottom: 100px;
}
.about-box-1 .about-pic-1 {
  filter: grayscale(70%);
  transition: all 0.3s;
}
.about-box-1:hover .about-pic-1 {
  filter: grayscale(0%);
}
.about-box-1:hover .about-text-1 .subheading:before {
  width: 200px;
}
.about-box-1 .about-text-1 {
  margin-top: 200px;
}
.about-box-1 .about-text-1 .subheading {
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
}
.about-box-1 .about-text-1 .subheading:before {
  position: absolute;
  content: "";
  top: -60px;
  left: -90px;
  width: 150px;
  height: 1px;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}
.about-box-1 .about-text-1 .heading {
  font-size: 3.5rem;
  margin-bottom: 21px;
}
.about-box-1 .about-text-1 p {
  font-size: 0.9rem;
  line-height: 2rem;
}

.about-box-2 {
  margin-bottom: 100px;
}
.about-box-2 > div:nth-child(1) {
  position: relative;
  z-index: 1;
}
.about-box-2 .about-pic-2 {
  filter: grayscale(70%);
  transition: all 0.3s;
}
.about-box-2:hover .about-pic-2 {
  filter: grayscale(0%);
}
.about-box-2:hover .about-text-2 .subheading:before {
  width: 200px;
}
.about-box-2 .about-text-2 {
  margin-top: 200px;
  text-align: right;
}
.about-box-2 .about-text-2 .subheading {
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
}
.about-box-2 .about-text-2 .subheading:before {
  position: absolute;
  content: "";
  top: -60px;
  right: -70px;
  width: 150px;
  height: 1px;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}
.about-box-2 .about-text-2 .heading {
  font-size: 3.5rem;
  margin-bottom: 21px;
}
.about-box-2 .about-text-2 p {
  font-size: 0.9rem;
  line-height: 2rem;
}

.about-view {
  color: #8BC34A !important;
  border: 1px solid #8BC34A;
  max-width: 150px;
  text-align: center;
  padding: 5px 20px;
  border-radius: 3px;
  font-size: 0.9rem;
  letter-spacing: 0.7px;
  transition: all 0.5s;
}
.about-view:hover {
  color: #fff !important;
}

.about-hover {
  position: relative;
}

.about-hover:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(#aee46e, #93ca54);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: all 0.3s;
}

.about-hover:hover:before {
  transform: scaleX(1);
}

/* Responsive =================================================================== */
@media only screen and (max-width: 768px) {
  .about-box-1 {
    text-align: center;
  }

  .about-box-2 > div:nth-child(1) {
    order: 2;
  }
  .about-box-2 .about-text-2 {
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  .about-box-1 .about-text-1 {
    margin-top: 30px;
  }
  .about-box-1 .about-text-1 .heading {
    font-size: 2rem;
  }
  .about-box-1 .about-text-1 .subheading:before {
    display: none;
  }

  .about-box-2 .about-text-2 {
    margin-top: 30px;
  }
  .about-box-2 .about-text-2 .heading {
    font-size: 2rem;
  }
  .about-box-2 .about-text-2 .subheading:before {
    display: none;
  }
}