/* about page css */
#about-page-gallery, #about-page-gallery .row, #about-page-gallery .col-12, #project-gallery-1, #project-gallery-2, #project-gallery-3, #project-gallery-4 {
  height: fit-content;
}
#about-page-gallery, #project-gallery-1, #project-gallery-2, #project-gallery-3, #project-gallery-4 {
  position: relative;
  margin-top: 60px;
}
.lazysliderImageContainer {
  min-width: 250px;
  margin: 0px 7.5px;
  position: relative;
  height: 450px;
  left: 0px;
  display: inline-grid;
  box-sizing: border-box;
  overflow: hidden;
  background-color: transparent;
  transition: opacity 0.5s ease;
}
.lazyslider-img {
  opacity: 0;
  width: 100%;
  position: absolute;
  min-height: 100%;
  transition: filter 0.5s ease, opacity 0.5s ease;
  object-fit: cover;
  max-height: 100%;
  filter: saturate(0%);
}
.lazyslider-error {
  text-align: center;
  color: red;
  padding: 20px;
  font-size: 12px;
  font-style: italic;
}
.lazyslider-img.lazyloaded {
  filter: saturate(0%);
  opacity: .8;
}
.lazysliderImageContainer.center .lazyslider-img.lazyloaded {
  filter: saturate(100%);
  opacity: 1;
  cursor: pointer;
  z-index: 100;
}
.lazyslider-container {
  padding: 32px 0px 0px 0px;
  position: relative;
  display: grid;
  flex-flow: nowrap;
  justify-content: center;
  overflow: hidden;
  grid-auto-flow: column;
}
.lazyslider-arrow-container {
  display: flex;
  flex-flow: nowrap;
  justify-content: center;
  margin: 32px 0 0 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lazysliderarrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 100%;
  opacity: 0;
}
.lazysliderarrow.prev {
  left: 0;
}
.lazysliderarrow.next {
  right: 0;
}
#page_num {
  color: #fff;
  text-shadow: 0px 0px 2px #000;
  position: absolute;
  top: 20px;
  left: 20px;
}
.lazyslider-enlarged {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 99999;
  left: 50%;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.5s ease, height 0.5s ease, width 1s ease;
  object-fit: contain;
  transform: translate(-50%, -50%);
  top: 50%;
}
.lazyslider-enlarged.loam {
  width: 80%;
}
.lazyslider-enlarge-progress {
  height: 50px;
  width: 50%;
  text-align: center;
  position: absolute;
  z-index: 999999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: black;
}
.lazyslider-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  left: 0%;
  top: 0%;
  cursor: pointer;
}
.lazyslider-overlay.loam {
  background-color: #39362f;
}
.lazyslider-overlayed {
  overflow: hidden;
}
.lazyslider-img-details {
  position: fixed;
  width: calc(100% - 20px);
  height: 10%;
  left: 50%;
  top: 10px;
  text-align: center;
  z-index: 9999999;
  transform: translate(-50%, 0%);
  padding: 5px;
  cursor: pointer;
  background-image: url(/images/close-dark.svg);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: top right;
  opacity: .3 !important;
  transition: opacity .3s;
}
.lazyslider-img-details:hover {
  opacity: .6 !important;
}
.lazyslider-img-details.bottom {
  top: 90%;
  background-color: #39362f;
  background-image: url(/images/close.svg);
}
.lazyslider-enlarge-container {
  height: 100vh;
  overflow: hidden;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}
.lazyslider-enlarge-arrows {
  position: fixed;
  width: 100%;
  left: 50%;
  bottom: 0%;
  text-align: center;
  z-index: 999999;
  transform: translate(-50%, 0%);
  padding: 5px;
  opacity: 1;
  cursor: pointer;
  height: 100%;
}
.lazyslider-enlarge-arrows .lazysliderarrow {
  position: relative;
  transform: translate(0%, -50%);
  top: 50%;
  filter: brightness(0.9);
  opacity: 1;
  width: 50%;
  transition: filter .3s;
}
.lazyslider-close-enlarge {
  height: 20px;
}
.lazyslider-enlarge-arrows .lazysliderarrow.next {
  left: 10%;
  right: auto;
  object-position: right;
  height: 50px;
}
.lazyslider-enlarge-arrows .lazysliderarrow.prev {
  right: 10%;
  left: auto;
  object-position: left;
  height: 50px;
}
.lazyslider-enlarge-arrows .lazysliderarrow:hover {
  filter: brightness(.6);
}
@media screen and (max-width:850px), screen and (max-height: 850px) {
  .lazysliderImageContainer {
    width: 125px;
    min-width: 125px;
    height: 185px;
    margin: 0px 3px;
  }
  .lazyslider-img {
    height: 100%;
    width: auto;
    position: relative;
    object-fit: cover;
  }
}