.gallery{
  position: relative;
  cursor: grab;
  height: 650px;
  width: 100%;
  background-color: #5e7b5f;
  padding: 30px 0px;
  /* box-shadow: 0px 2px 5px #000000; */
  overflow: hidden;
}


#image-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 24px;
  height: 100%;
}

#image-track::-webkit-scrollbar {
  display: none;
}

.image {
  width: 350px;
  height: 100%;
  object-fit: cover;
  object-position: 100% center;
  border-radius: 10px;
}
#image-track > .text-r {
  text-align: right;
}
#image-track > .text-start {
  margin-left: 20px;
}
#image-track > .text-end {
  margin-right: 20px;
}

@media(max-width:600px){
  .gallery{
      height: 400px;
  }
  #image-track > .image {
      width: 300px;
  }
}

@media(max-width:450px){
  .gallery{
    height: 300px;
  }
  #image-track > .image {
      width: 200px;
  }
}