.projectCard .verticalScrollScreen {
  background: rgba(190, 99, 99, 0.001);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 9999;
  opacity: 1;
  display: block;
  will-change: opacity;
  pointer-events: none;
}
.projectCard .imgContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  overflow: hidden;
  margin: auto;
  padding-top: 0px;
  padding-bottom: 0px;
  width: 100%;
  z-index: 900 !important;
}
@media screen and (max-width: 600px) {
  .projectCard .imgContainer {
    padding: 0px;
    padding-top: 0px;
  }
}
@media screen and (min-aspect-ratio: 9999) {
  .projectCard .imgContainer {
    max-width: 80%;
    left: 0px;
    float: left;
    -webkit-transform: translateX(1px);
            transform: translateX(1px);
  }
}
.projectCard .imgContainer .swiper-wrapper {
  max-width: 100%;
  padding-bottom: 0px;
}
@media screen and (max-width: 600px) {
  .projectCard .imgContainer .swiper-wrapper {
    padding-bottom: 0px;
  }
}
.projectCard .imgContainer .swiper-slide {
  width: min(95vw, 675px);
  max-width: min(100vh, 800px);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 15px;
  padding-bottom: 15px;
  -webkit-box-shadow: 0px 0px 10px 10px rgba(212, 212, 212, 0.11);
          box-shadow: 0px 0px 10px 10px rgba(212, 212, 212, 0.11);
  border: 1px solid white;
  border-radius: 10px;
  color: rgb(255, 255, 255);
  margin-bottom: 5px;
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-filter: blur(5px) brightness(90%);
          filter: blur(5px) brightness(90%);
  overflow: display;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 600px) {
  .projectCard .imgContainer .swiper-slide {
    max-width: 90vw;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.projectCard .imgContainer .swiper-slide-active {
  -webkit-filter: blur(0px) brightness(100%);
          filter: blur(0px) brightness(100%);
}
.projectCard img,
.projectCard video {
  width: 100%;
  height: auto;
  max-height: min(60vh, 400px);
  width: auto;
  max-width: 95vw;
  margin: auto;
  border-radius: 5px;
  clip-path: inset(1% 1% 1% 1% round 5px);
}
@media screen and (min-aspect-ratio: 9999) {
  .projectCard img,
  .projectCard video {
    max-height: min(60vh, 600px);
  }
}
.projectCard video {
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  will-change: filter;
}

.playbutton {
  position: absolute;
  bottom: calc(50% - 0.5em);
  left: calc(50% - 0.4em);
  font-size: 5rem;
  opacity: 1;
  cursor: pointer;
  z-index: 2;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(133, 133, 133, 0.322));
          filter: drop-shadow(0px 0px 10px rgba(133, 133, 133, 0.322));
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  will-change: opacity;
  color: white !important;
}

.fa-play {
  opacity: 1;
}

.fa-pause {
  opacity: 0;
  will-change: opacity;
}

.playbutton:hover {
  opacity: 1;
}

@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fa-pause:hover {
  opacity: 1;
  -webkit-animation: fade 1.5s forwards;
          animation: fade 1.5s forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}/*# sourceMappingURL=swiperGallery.css.map */