@media only screen and (min-width: 10px) and (max-width: 600px) {
    .te-con {
      padding-right: 3rem !important;
      padding-left: 3rem !important;
      padding-top: 0.2rem !important;
      padding-bottom: 0.2rem !important;
    }

    .details p {
      line-height: 22px;
    }
  }

  .image-container {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
  }

  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .details p {
    margin: 0;
    padding: 20px;
  }

  .image-container img {
    display: block;
    width: 100%;
  }

  .contact-breadcrumbs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.3;
    z-index: 1;
  }

  .media-statistic .number {
    font-size: 45px;
    margin-bottom: 10px;
  }

  .copyright-footer {
    background-color: #000;
    border-top: 1px solid #ffffff38;
    padding: 15px 0;
  }

  .list-social__item a {
    color: #fff !important;
    font-size: 15px !important;
  }

  .logo img {
    max-width: 150px;
  }

  .ft-logo {
    max-width: 150px;
  }

  @media only screen and (max-width: 600px) {
    body .media-about .number {
      font-size: 120px !important;
    }

    .contact-breadcrumbs {
      height: 30vh !important;
    }
  }

  ::-webkit-scrollbar {
    -webkit-appearance: none;
  }

  ::-webkit-scrollbar {
    width: 4px;
  }

  ::-webkit-scrollbar-track {
    background: #ffff;
  }

  ::-webkit-scrollbar-thumb {
    background: #222222;
    height: 100px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #222222;
  }

  .team-member {
    text-align: center;
    margin-bottom: 30px;
  }

  .team-member .image-container {
    position: relative;
    overflow: hidden;
  }

  .team-member img {
    width: 100%;
    transition: transform 0.3s ease;
  }

  .team-member .image-container:hover img {
    transform: scale(1.1);
  }

  .team-member .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .team-member .image-container:hover .overlay {
    opacity: 1;
  }

  .team-member .info {
    /* background-color: #f4f4f4a2; */
    padding: 15px 10px;
  }

  .team-member .info h5 {
    margin-bottom: 5px;
    font-weight: bold;
  }

  .team-member .info p {
    margin-bottom: 0;
    font-style: italic;
  }