
 /* section 2 */
 .section-3-zyoa {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 4rem 2rem;
    gap: 2rem;
    overflow: hidden;
    flex-wrap: nowrap;
  }
  .left-div {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    margin-left: 50px;
    align-items: left;
  }
  .left-div h4{
    font-size: 1rem;
  }
  .right-div {
    align-items: flex-end;
    align-self: flex-end;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 1rem;
  }
  
  .img-row {
    display: flex;
    gap: 1rem;
  }
  
  .img-row img {
    align-self: flex-end;
    align-items: flex-end;
    width: 200px;
    height: 400px;
    border-radius: 12px;
   
  }
  .carousel-img {
    transition: opacity 1s ease-in-out;
    opacity: 1;
    cursor: pointer;
  }

  .fade-out {
    opacity: 0;
  }

  .img-row img:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
  }


  /* for mobile devices */
  @media screen and (max-width: 768px) {
    .section-3-zyoa {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;

    }
    .left-div {
      flex: 1 1 100%;
    }
    .left-div h4{
      font-size: 0.9rem;
      width: 100%;
    }
    .right-div {
      display: flex;
      flex-direction: column;
      text-align: center;
      justify-content: center;
    }
    .img-row {
      display: flex;
      width: 100%;
      flex-direction: row;
      align-items: center;
      justify-content: center;
    }
    .img-row img {
      width: 100px;
      height: auto;
    }

    @media  screen and (orientation: landscape) {
      .img-row img {
        width: 150px;
        height: auto;
      }
      .left-div h4{
        font-size: 1rem;
        width: 100%;
      }
      
    }
    
  }