@charset "UTF-8";
.alq-gallery {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 50px 0;
  position: relative;
}
.alq-gallery .big-image {
  background-color: transparent;
  background-image: var(--image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: calc(55vw / (16 / 9));
  max-height: calc(90vh - 110px);
  position: relative;
  width: 55vw;
}
@media screen and (max-width: 1024px) {
  .alq-gallery .big-image {
    height: calc(96vw / (16 / 9));
    width: 96vw;
  }
}
.alq-gallery .big-image .video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
}
.alq-gallery .big-image .video-wrapper:has(video) {
  display: flex;
}
.alq-gallery .big-image .video-wrapper video {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.alq-gallery .big-image .nav-prev, .alq-gallery .big-image .nav-next {
  background: #b9a36e;
  color: #14133b;
  cursor: pointer;
  font-size: 20px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 40px;
  z-index: 20;
}
.alq-gallery .big-image .nav-prev::before, .alq-gallery .big-image .nav-next::before {
  font-family: "Font Awesome 7 Free";
  font-style: normal;
  font-weight: 900;
}
.alq-gallery .big-image .nav-prev {
  left: 0;
  transform: translate3d(calc(-100% - 30px), -50%, 0);
}
@media screen and (max-width: 1024px) {
  .alq-gallery .big-image .nav-prev {
    left: 80px;
  }
}
.alq-gallery .big-image .nav-prev::before {
  content: "";
}
.alq-gallery .big-image .nav-next {
  right: 0;
  transform: translate3d(calc(100% + 30px), -50%, 0);
}
@media screen and (max-width: 1024px) {
  .alq-gallery .big-image .nav-next {
    right: 80px;
  }
}
.alq-gallery .big-image .nav-next::before {
  content: "";
}
.alq-gallery .small-images {
  height: auto;
  margin: 20px auto 0;
  overflow: hidden;
  width: var(--width);
}
.alq-gallery .small-images > .small-images-inner-wrapper {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-start;
}
.alq-gallery .small-images > .small-images-inner-wrapper > a {
  background-color: transparent;
  background-image: var(--image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  position: relative;
}
.alq-gallery .small-images > .small-images-inner-wrapper > a.is-video {
  background-color: #000;
}
.alq-gallery .small-images > .small-images-inner-wrapper > a::before {
  background: #14133d88;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 10;
}
.alq-gallery .small-images > .small-images-inner-wrapper > a:hover::before, .alq-gallery .small-images > .small-images-inner-wrapper > a.active::before {
  background: transparent;
}
.alq-gallery .small-images > .small-images-inner-wrapper > a.is-video::after {
  color: #fff;
  content: "";
  font-family: "Font Awesome 7 Free";
  font-size: 20px;
  font-weight: 900;
  height: 40px;
  left: 50%;
  line-height: 40px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 40px;
}
/*# sourceMappingURL=https://alqhomes.com/wp-content/build/scss_library/8f6241eeb017cf20cb8314fbc2c6b5bd366e550a.css.map */