  .leadership-team-section h2 {
      padding-bottom: 0;
      text-align: center;
      color: #000;
      margin-bottom: 66px;
  }

  .team-members-cards {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
  }

  .team-members-cards .team-member {
      width: 100%;
      max-width: 17%;
  }

  .team-members-cards .team-member .member-image {
      width: 136px;
      margin: 0 auto;
  }

  .team-member .member-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: 0.5s ease-in-out;
  }

  .team-members-cards .team-member a {
      text-decoration: none;
  }

  .team-members-cards .team-member .team-disc-heading {
      display: flex;
      justify-content: center;
      gap: 8px;
      align-items: center;
      color: #253858;
      font-size: 20px;
      font-weight: 600;
      line-height: 24px;
      letter-spacing: 0.30px;
      text-align: center;
  }

  .team-members-cards .team-member .team-disc {
      margin-top: 21px;
  }

  .team-members-cards .team-member .team-disc .team-disc-heading img {
      border-radius: 6px;
      width: 30px;
      height: 30px;
      object-fit: cover;
  }

  .team-members-cards .team-member .team-disc .designation {
      color: #091E42;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      text-align: center;
      max-width: 200px;
      margin: 8px auto 0;
  }

  .team-members-cards .team-member:hover .member-image img {
      transform: scale(1.1);
  }

  .leadership-team-section .team-group:nth-child(2) {
      padding: 50px 0 0;
  }

  @media screen and (max-width: 1400px) {
      .team-members-cards {
          gap: 60px;
      }

      .team-members-cards .team-member {
          width: 100%;
          max-width: 20%;
      }
  }

  @media screen and (max-width: 1024px) {

      .team-members-cards {
          gap: 20px;
      }

      .team-members-cards .team-member {
          width: 100%;
          max-width: 30%;
      }

      .team-members-cards .team-member .team-disc-heading {
          font-size: 20px;
      }

      .leadership-team-section .team-group:nth-child(2) {
          padding: 100px 0 0;
      }

  }

  @media screen and (max-width: 767px) {
      .team-members-cards .team-member {
          width: 100%;
          max-width: 45%;
      }

      .team-members-cards .team-member .team-disc-heading {
          font-size: 18px;
      }

      .leadership h2 {
          font-size: 32px;
          line-height: 42px;
          margin-bottom: 30px;
      }

      .leadership-team-section h2 {
          margin-bottom: 40px;
      }
  }

  @media screen and (max-width: 376px) {
      .team-members-cards .team-member {
          width: 100%;
          max-width: 100%;
      }
  }