@keyframes updown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px); /* Adjust this value to control the height of the motion */
    }
  }
  
  .animate-updown {
    animation: updown 2s ease-in-out infinite alternate; /* Adjust the duration and easing as needed */
  }
  @keyframes leftright {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(-10px); /* Adjust this value to control the width of the motion */
    }
  }
  
  .animate-leftright {
    animation: leftright 2s ease-in-out infinite alternate; /* Adjust the duration and easing as needed */
  }
  .page3{
    min-height: 100vh;
    width: 100%;
 
    position: relative;
    z-index: 9;
}

/* .page3 h1{
    font-size: 6.8vw;
    font-weight: 300;
    color: #111;
    margin-left: 100px;
} */
.page3-part1{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

}
.page3-part1 img{
    height: 400px;
    margin-top: 42px;
}
.page3-part1 video{
    height: 400px;
    margin-top: 40px;
}
::selection {
  background-color: black;
}