.brnd-lightbox-gallery {
  width: 90%;
  height: 18vw;
  margin: auto;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.brnd-lightbox-gallery-paginator-wrap {
  position: absolute;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.brnd-lightbox-gallery-paginator-wrap.next {
  right: 0;
}
.brnd-lightbox-gallery-paginator-wrap.prev {
  left: 0;
}

.brnd-lightbox-gallery-paginator {
  display: block;
  font-size: 3em;
  color: #FFFFFF;
  margin: auto;
  cursor: pointer;
}

.brnd-lightbox-gallery-item-wrap {
  position: absolute;
  padding: 2px;
  background-color: transparent;
  top: 0;
  right: -100%;
  display: inline-block;
  vertical-align: middle;
  width: 17vw;
  height: 17vw;
  margin-bottom: 1vw;
  cursor: pointer;
  text-align: center;
  transition: right 300ms ease-in-out;
}

.brnd-lightbox-gallery-item-wrap.active {
  right: 10%;
}
.brnd-lightbox-gallery-item-wrap.active1 {
  right: 40%;
}
.brnd-lightbox-gallery-item-wrap.active2 {
  right: 70%;
}

.brnd-lightbox-gallery-item-hover {
  z-index: -9999;
  background: rgba(0, 0, 0, 0.5);
  font-size: 5em;
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  will-change: opacity;
}

.brnd-lightbox-gallery-item-wrap:hover .brnd-lightbox-gallery-item-hover {
  z-index: 9999;
  opacity: 1;
}

.brnd-lightbox-gallery-item-img {
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  left: 1px;
  background-color: transparent;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: calc(100% - 1px);
  height: calc(100% - 1px);
  margin: auto;
  transition: border .2s ease-in-out;
}

.brnd-lightbox-gallery-item-title {
  font-family: var( --e-global-typography-primary-font-family ), "Heebo", Sans-serif;
  position: absolute;
  color: white;
  border: 3px solid #78EB99;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
  display: flex;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  font-size: 2.5vw;
  background: #595959;
  transition: opacity 300ms ease-in-out;
  will-change: opacity;
}

.brnd-lightbox-gallery-item-wrap:hover .brnd-lightbox-gallery-item-title {
  opacity: 0
}

.brnd-lightbox-gallery-overlay {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10000;
  opacity: 0;
  background: rgba(0,0,0,0.25);
  transition: opacity 300ms ease-in-out, z-index 0ms linear 305ms;
  will-change: opacity, z-index;
}

.brnd-lightbox-gallery-overlay.active {
  opacity: 1;
  z-index: 10000;
  transition: opacity 300ms ease-in-out;
}

.brnd-lightbox-gallery-overlay-content {
  position: relative;
  width: 50vw;
  padding: 1vw;
  background: #F4F4F4;
  text-align: right;
  border-radius: 0.5vw;
}

.brnd-lightbox-gallery-overlay-close {
  position: absolute;
  top: -1.5vw;
  right: 0.25vw;
  font-weight: bold;
  cursor: pointer;
}

.brnd-lightbox-gallery-overlay-img {
  display: block;
  width: 100%;
}

.brnd-lightbox-gallery-overlay-title {
  width: 100%;
  text-align: center;
  font-size: 1.3vw;
  color: #4F4F4F;
}

@media screen and (max-width: 1279px) {
  .brnd-lightbox-gallery {
    height: 26vw;
  }

  .brnd-lightbox-gallery-item-wrap {
    width: 24vw;
    height: 24vw;
    margin-bottom: 5vw;
  }

  .brnd-lightbox-gallery-item-wrap.active {
    right: 5%
  }
  .brnd-lightbox-gallery-item-wrap.active1 {
    right: 36.25%
  }
  .brnd-lightbox-gallery-item-wrap.active2 {
    right: 67.5%
  }

  .brnd-lightbox-gallery-item-img {
  }

  .brnd-lightbox-gallery-item-title {
    font-size: 4.5vw;
  }

  .brnd-lightbox-gallery-overlay-content {
    width: 90vw;
    padding: 1.8vw;
    border-radius: 0.9vw;
  }

  .brnd-lightbox-gallery-overlay-close {
    top: -2.5vw;
  }

  .brnd-lightbox-gallery-overlay-title {
    font-size: 2.34vw;
  }
}


@media screen and (max-width: 767px) {
  .brnd-lightbox-gallery {
    height: 70vw;
  }

  .brnd-lightbox-gallery-item-wrap {
    width: 65vw;
    height: 65vw;
    margin-left: 0;
    margin-bottom: 15vw;
  }

  .brnd-lightbox-gallery-item-wrap.active {
    right: 11%;
  }
  .brnd-lightbox-gallery-item-wrap.active1 {
    right: 100%;
    opacity: 0;
  }
  .brnd-lightbox-gallery-item-wrap.active2 {
    right: 100%;
    opacity: 0;
  }

  .brnd-lightbox-gallery-item-img {
  }

  .brnd-lightbox-gallery-item-title {
    font-size: 13vw;
  }

  .brnd-lightbox-gallery-overlay-content {
    width: 95vw;
    padding: 5vw;
    border-radius: 4vw;
  }

  .brnd-lightbox-gallery-overlay-close {
    top: -4.5vw;
  }

  .brnd-lightbox-gallery-overlay-title {
    font-size: 7vw;
  }
}
@media screen and (max-width: 475px) {
  .brnd-lightbox-gallery-item-title {
    font-size: 9vw;
  }
}


@media screen and (min-width: 1921px) {
  .elementor-element-dceab71.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: none !important;
  }
}
