.swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 30px !important;
}

.swiper-container{
  width: 100%;
}

.swiper-slide {
  padding-bottom: 30px !important;
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.swiper-pagination-bullet-active{
  background-color: #E4610F !important;
}

/* For home page slider */
.swiper-slide.home img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: auto;
}

/* For project page slider */
.swiper-slide.project .displayImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: auto;
  transition: 0.2s -webkit-filter linear;
  pointer-events: auto; 
}

.swiper-slide-active.project .displayImg:hover {
  /* filter: blur(8px); */
  /* -webkit-filter: blur(8px); */
  /* filter: contrast(20%) brightness(95%); */
  filter: contrast(50%) brightness(95%);
}

/* .swiper-slide .iconContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: .4s ease-in-out opacity;
  -moz-transition: .4s ease-in-out opacity;
  -o-transition: .4s ease-in-out opacity;
  transition: .4s ease-in-out opacity;
} */

/* .swiper-slide-active .iconContainer:hover {
  opacity: 1;
} */



.swiper-slide.project .icon-img {
  position: absolute;
  width: 15%;
  height: 15%;
  margin: auto;
  /* z-index: 4; */
  opacity: 0;
  -webkit-transition: .4s ease-in-out opacity;
  -moz-transition: .4s ease-in-out opacity;
  -o-transition: .4s ease-in-out opacity;
  transition: .4s ease-in-out opacity;
  pointer-events: none;
}

/* For 360 and video slides, show icon at slight opacity */
.swiper-slide.project .icon-img.always-show {
  opacity: 0.6;
}

.swiper-slide.project .corner-icon {
  position: absolute;
  /* bottom: 0; */
  /* right:0; */
  /* padding: 10px; */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #E4610F;
  /* transform: translate(50%, 50%); */
  transform: translate(0,0);
  width: 40px;
  height: 40px;
}

/* Setting a shadow on the icon */
.swiper-slide.project .corner-icon::before {
  text-shadow: 1px 1px #000000;
}

/* SVG Icons */
.swiper-slide.project .corner-icon.svg {
  filter: invert(59%) sepia(64%) saturate(6681%) hue-rotate(3deg) brightness(98%) contrast(88%) drop-shadow(1px 1px rgba(0, 0, 0, 1));
}

.swiper-slide-active.project:hover .icon-img {
  opacity: 1;
}

