.ig-container .ig-inner-container {
  & h2 {
    color: #4a5d44;
    text-align: center;
    font-family: Outfit;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px; /* 87.5% */
    max-width: none;

    @media (max-width: 768px) {
      font-size: 28px;
      line-height: 35px;
      margin: 0;
    }
  }

  & .ig-image-container {
    display: flex;
    max-width: unset;
    gap: 0;
    mask-image: none;

    & .ig-image-item-container {
      & .ig-image-item {
        border-radius: 50%;
        padding: 24px;
        border: 1px solid #4b5e4580;
        width: 160px;
        height: 160px;

        @media (max-width: 768px) {
          width: 200px;
          height: 200px;
        }

        & > img {
          width: 100%;
          height: 100%;
          border-radius: 50%;
          object-fit: contain;
        }
      }
    }
  }
}
.ig-container
  .ig-inner-container
  .ig-image-container
  .ig-image-item-container
  .ig-icon-title
  h3 {
  color: #ff6720;
  text-align: center;
  font-family: "Filson Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 187.5% */
  margin: 15px 0 0;
}
.ig-container
  .ig-inner-container
  .ig-image-container
  .ig-image-item-container
  .ig-icon-title
  p {
  color: #3d3935;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 134%; /* 18.76px */
  max-width: none;
}
.swiper-container {
  overflow: hidden;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal.ig-pagination {
  display: flex;
  justify-content: center;
  padding: 10px 0; /* Adjust as needed */
  gap: 8px;
  position: relative;
  margin: 50px 0 0;
  z-index: 1;

  @media (max-width: 768px) {
    margin-top: 10px;
  }

  & .swiper-pagination-bullet {
    background-color: #000; /* Gray color */
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.2;
    cursor: pointer;
    margin: 0;
  }

  & .swiper-pagination-bullet-active {
    background-color: #ff6720; /* Blue color */
    opacity: 1;
    transform: scale(1.2);
  }
}
