

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
    font-weight: 700;
    font-size: 24px;
  }
  
  .about .content ul {
    list-style: none;
    padding: 0;
  }
  
  .about .content ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }
  
  .about .content ul strong {
    margin-right: 10px;
  }
  
  .about .content ul i {
    font-size: 16px;
    margin-right: 5px;
    color: var(--accent-color);
    line-height: 0;
  }
  
  .img-container {
    overflow: hidden;
    display: inline-block;
    transition: box-shadow 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  
  }
  
  .img-container img {
    transition: transform 0.3s;
    transform: scale(1.1);
  
  }
  
  .img-container:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  
  .img-container:hover img {
    transform: scale(1.1);
  
  }
  