/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-one {
  padding-top: 120px;
  padding-bottom: 120px;
}

.gallery-one .container-fluid {
  width: 100%;
  max-width: 1572px;
}

.gallery-one--page {
  padding-top: 120px;
}

.gallery-one .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.gallery-one__carousel .owl-nav {
  display: none !important;
}

.gallery-one__filter__list {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-one__filter__list li {
  cursor: pointer;
}

.gallery-one__filter__list li span {
  display: block;
  font-size: 14px;
  background-color: var(--laboix-border-color2, #F3F3F3);
  transition: all 500ms ease;
  font-weight: 600;
  padding: 15px 20px;
  line-height: normal;
}

.gallery-one__filter__list li.active span,
.gallery-one__filter__list li:hover span {
  background-color: var(--laboix-secondary, #0EBD66);
  color: var(--laboix-white, #fff);
}

.gallery-one__card {
  position: relative;
  overflow: hidden;
  background-color: var(--laboix-black, #000);
}

.gallery-one__card img {
  transform: scale(1);
  max-width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}

.gallery-one__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--laboix-base-rgb, 2, 25, 54), 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}

.gallery-one__card__hover .img-popup {
  position: relative;
}

.gallery-one__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  mix-blend-mode: screen;
}

.gallery-one__card:hover .gallery-one__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}

.gallery-one__card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--laboix-secondary, #187196);
  /* background: var(#0a344a, #187196); */
  transition: all 0.5s ease-in-out;
}

.gallery-one__card__icon__item {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
}

.gallery-one__card__icon__item::after,
.gallery-one__card__icon__item::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--laboix-white, #fff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery-one__card__icon__item::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gallery-one__card__icon:hover {
  background: var(--laboix-base, #021936);
}

.gallery-two {
  position: relative;
  overflow: hidden;
  padding: 0 0 20px;
}

.gallery-two .container-fluid {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 767px) {
  .gallery-two .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.gallery-two .row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.gallery-two__col-one {
  width: 65%;
}

@media (max-width: 1199px) {
  .gallery-two__col-one {
    width: 100%;
  }
}

.gallery-two__col-two {
  width: 35%;
}

@media (max-width: 1199px) {
  .gallery-two__col-two {
    width: 100%;
  }
}

.gallery-two__card {
  position: relative;
  overflow: hidden;
  background-color: var(--laboix-black, #000);
}

.gallery-two__card img {
  transform: scale(1);
  width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}

.gallery-two__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--laboix-black-rgb, 0, 0, 0), 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}

.gallery-two__card__hover .img-popup {
  position: relative;
}

.gallery-two__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  mix-blend-mode: screen;
}

.gallery-two__card:hover .gallery-two__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}

.gallery-two__card a {
  width: 75px;
  height: 75px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: var(--laboix-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-two__card a:hover .gallery-two__card__icon::after,
.gallery-two__card a:hover .gallery-two__card__icon::before {
  background-color: var(--laboix-base, #021936);
}

.gallery-two__card__icon {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
}

.gallery-two__card__icon::after,
.gallery-two__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--laboix-black, #000);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 400ms ease;
}

.gallery-two__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gallery-two__info {
  position: relative;
  background-color: var(--laboix-base, #021936);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 50px 0 100px;
  height: 100%;
}

@media (min-width: 1200px) {
  .gallery-two__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
  }
}

@media (max-width: 1500px) {
  .gallery-two__info {
    padding-left: 40px;
    padding-right: 30px;
  }
}

@media (max-width: 1199px) {
  .gallery-two__info {
    padding: 80px 50px;
  }
}

@media (max-width: 767px) {
  .gallery-two__info {
    padding: 50px 30px;
  }
}

.gallery-two__info__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.gallery-two__info__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-two__info__title {
  color: var(--laboix-white, #fff);
  font-size: 44px;
  line-height: 50px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}

@media (min-width: 1200px) and (max-width: 1300px) {
  .gallery-two__info__title {
    font-size: 35px;
    line-height: 42px;
  }
}

@media (max-width: 767px) {
  .gallery-two__info__title {
    font-size: 35px;
    line-height: 45px;
  }
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

/*# sourceMappingURL=laboix.css.map */
