.about-first3 {
    padding: 60px 0;
    overflow: hidden;
    background: var(--SECONDARY_MINOR_COLOR);
  }
  
  .about-first3__container {
    max-width: var(--CONTAINER_WIDTH) !important;
    margin: 0px auto;
    padding: 0 20px;
  }
  
  .about-first3 .row__item {
    padding-top: 20px;
  }
  
  .about-first3 .section-header {
    text-align: center;
    padding-bottom: 40px;
  }
  
  .about-first3 .section-header h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    color: var(--SECONDARY_MAJOR_COLOR);
  }
  
  .about-first3 .section-header p {
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 38px;
    line-height: 42px;
    font-weight: 700;
    color: var(--SECONDARY_MAJOR_COLOR);
  }
  
  @media (max-width: 768px) {
    .about-first3 .section-header p {
      font-size: 28px;
      line-height: 32px;
    }
  }
  
  .about-first3 .row {
    justify-content: center;
  }
  
  .about-first3 .member {
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 0px 49px -13px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    background: var(--SECONDARY_MINOR_COLOR);
  }
  
  .about-first3 .member .member-img {
    position: relative;
    overflow: hidden;
  }
  
  .about-first3 .member .member-info {
    padding: 10px 15px 20px 15px;
  }
  
  .about-first3 .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--SECONDARY_MAJOR_COLOR);
    font-family: var(--TITLE_FONT);
  }
  
  .about-first3 .member .member-info span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--TEXT_COLOR);
  }
  
  .about-first3 .member .member-info p {
    font-style: italic;
    font-size: 14px;
    padding-top: 15px;
    line-height: 26px;
    color: var(--TEXT_COLOR);
  }
  
  .about-first3 .member:hover {
    transform: scale(1.08);
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
  }
  
  .about-first3 .member:hover .social {
    right: 8px;
    opacity: 1;
  }
  