
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    background: url("../../img/banner3.jpeg") center center;
    background-size: cover;
    position: relative;
    padding: 80px 0;
  }
  .about:before {
    content: "";
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  .about .about-img {
    position: relative;
    transition: 0.5s;
  }
  .about .about-img img {
    max-width: 100%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    position: relative;
  }
  .about .about-img::before {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 60px;
    height: 60px;
    z-index: 1;
    content: "";
    border-left: 5px solid #ffbf00;
    border-top: 5px solid #ffbf00;
    transition: 0.5s;
  }
  .about .about-img::after {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    z-index: 2;
    content: "";
    border-right: 5px solid #ffbf00;
    border-bottom: 5px solid #ffbf00;
    transition: 0.5s;
  }
  .about .about-img:hover {
    transform: scale(1.03);
  }
  .about .about-img:hover::before {
    left: 10px;
    top: 10px;
  }
  .about .about-img:hover::after {
    right: 10px;
    bottom: 10px;
  }
  .about .content h3 {
    font-weight: 600;
    font-size: 26px;
  }
  .about .content ul {
    list-style: none;
    padding: 0;
  }
  .about .content ul li {
    padding-bottom: 10px;
  }
  .about .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #ffbf00;
  }
  .about .content p:last-child {
    margin-bottom: 0;
  }
  @media (min-width: 1024px) {
    .about {
      background-attachment: fixed;
    }
  }
  