.gallery {
  width: 100%;
  height: auto;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 30px 150px 30px;
}

.gallery-content {
  max-width: 1170px;
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
}

.gallery-title {
  margin: 75px 0;
  display: flex;
  flex-direction: column;
  transform: translateY(80%);
  transition: all 1s ease 0.2s;
  opacity: 0;
  position: relative;
}
.gallery-title h6 {
  color: #797f8c;
  line-height: 2;
  font-weight: 400;
}
.gallery-title h2 {
  color: #0c1524;
  line-height: 1;
  font-weight: 400;
}
.gallery-title.active {
  transform: translateY(0);
  opacity: 1;
}

.gallery-separator {
  border-top: 4px solid rgba(21, 50, 67, 0.2);
  width: 6%;
  display: inline-block;
  margin: 20px 0;
}

.gallery-box-container {
  width: 100%;
  display: block;
}
.gallery-box-container__title {
  margin: 20px 0;
}
.gallery-box-container__title h4 {
  font-weight: 400;
}

.gallery-box-content {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
}
.gallery-box-content__items {
  margin: 5px;
  width: calc(33.3% - 10px);
  height: 220px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-box-content__items img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 1s;
  position: relative;
}
.gallery-box-content__items:hover img {
  transform: scale(1.2);
  transition: all 1s;
}
.gallery-box-content__items:hover::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.gallery-lastBox {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
}

.gallery-lastBox-link {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gallery-lastBox-link h6 {
  color: #0c1524;
  font-weight: 400;
  padding: 30px 0;
  text-align: center;
  line-height: 1.3;
}
.gallery-lastBox-link h6 b {
  color: #6da8c8;
}

@media screen and (max-width: 820px) {
  .gallery-box-content__items {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 584px) {
  .gallery-box-content__items {
    height: 160px;
  }
}
@media screen and (max-width: 464px) {
  .gallery-box-content__items {
    height: 100px;
  }
}
.content_slider {
  width: 100%;
  min-height: 100vh;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0;
  bottom: 0;
  background-color: rgba(12, 21, 36, 0.7882352941);
  z-index: 10;
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s;
  padding: 10% 20%;
  cursor: pointer;
}
.content_slider.active {
  transform: scale(1);
  opacity: 1;
}

.content_slider-box {
  max-width: 800px;
  width: 100%;
  height: 100%;
  z-index: 20;
  background-color: #fff;
  cursor: pointer;
}
.content_slider-box img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 828px) {
  .content_slider {
    padding: 10%;
  }
}
@media screen and (max-width: 578px) {
  .content_slider-box {
    height: 40%;
  }
}

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