
  
  .text-section {
    text-align: center;
    padding: 20px;
  }
  #gallery img {
    width: 100%;
    height: 100%;
    max-height: 850px;
    max-width: 450px;
    object-fit: cover;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }
  
  #gallery img:hover {
    transform: scale(1.1);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
  }
  
  #gallery img.enlarged {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2);
    z-index: 9999;
  }

  #gallery {
    height: 100%;
    width:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 220px;
    background-color: #f0f0f0;
    overflow: hidden;
    ;
  }

  .swiper-wrapper {
    display: flex;
    flex-direction: row;
  }

  
  
  @media screen and (max-width: 768px) {
    #gallery {
      height: 500px;
      width: 2000px;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      overflow: hidden;
      padding-left: 17%;
    }

    #mobile{
      overflow: hidden;
    }
    
    #gallery img {
      width: calc(33.33% - 20px);
      max-height: none;
      object-fit: initial;
    }
  }