/* ___________PREVIEW SECTION____________________ */
/* 
.projectview{
  position: relative;
  display:flex;
  flex-direction: row;
} */

.projectview {
  position: absolute;
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  overflow-x: auto;
  /* scroll-snap-type: x proximity; */
  scrollbar-width: none;
  z-index: 1;
}



.image-container {
  /* position: absolute; */
  position: relative;
  height: 100vh;
  width: auto;
  display: flex;
  flex-direction: row;
  filter: grayscale(0) contrast(100%) saturate(100%);
  /* overflow-x: auto;
  overflow-y: hidden; */
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: row;
  z-index: 2;
}
/* 
.project-wrapper {
  position: absolute;
  width: auto;
  height: 100vh;
  display: flex;

} */

/* 
.project-image {
  height: 100vh;
  width: auto;

} */



/* ___________BACKDROPs____________________ */

.backdrop {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 2;
  background: #ffffff00;
}