
 

    .module_img_123 {
      position: relative;
      overflow: hidden;
      width: 100%;
      margin-bottom: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease-in-out;
    }

    .module_img_123:hover {
      transform: scale(1.1);
    }

    .module_img_123 img {
      width: 100%;
      height: auto;
      display: block;
    }

    .module_img_123 .description {
      text-align: center;
      padding: 10px;
      background-color: #f0f0f0;
    }

    @media (min-width: 768px) {
      .container-123 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
      }

      .module_img_123 {
        width: calc(33.333% - 20px);
      }
    }

    @media (max-width: 767px) {
      .module_img_123 {
        width: 100%;
      }
    }
  