.gallery + hr {
  border-top: 3px solid #2c75ba;
}

h2 {
  color: var(--accent-color);
  margin: 25px 10px;
}

h3 {
  color: var(--accent-color);
  margin: 25px 10px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

.imag_gallery_item_title {
  color: var(--accent-color);
  font-size: 0.9em;
  padding-top: 10px;
}

@media (max-width: 1000px) {
  .col-lg-3.col-md-4.col-xs-12.gallery-bootstrap-thumb {
    width: 33.3333333333% !important;
    height: auto !important;
  }
}
@media (max-width: 700px) {
  .col-lg-3.col-md-4.col-xs-12.gallery-bootstrap-thumb {
    width: 50% !important;
  }
}
@media (max-width: 500px) {
  .col-lg-3.col-md-4.col-xs-12.gallery-bootstrap-thumb {
    width: 100% !important;
  }
}
.site_width {
  max-width: 1460px !important;
}

/* -------------------------
    box gallery component
  -------------------------- */
.box-gallery {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  width: 100%;
  position: relative;
}
.box-gallery h2 {
  position: absolute;
  top: -55px;
}
.box-gallery .box-gallery-item {
  width: 300px;
  height: 250px;
  margin: 0.5%;
  overflow: hidden;
  flex: 1 1 18em;
  transition: all 0.2s ease-in-out;
  border: #000000 1px solid;
  border-radius: 5px;
}
.box-gallery .box-gallery-item:hover {
  filter: drop-shadow(4px 4px 6px gray);
  transform: scale(1.05);
}
.box-gallery .box-gallery-item figure {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background-size: cover;
}

@media screen and (max-width: 1200px) {
  .box-gallery-item {
    flex: 33%;
    max-width: 32%;
  }
}
@media screen and (max-width: 992px) {
  .box-gallery-item {
    flex: 50%;
    max-width: 49%;
  }
}
@media screen and (max-width: 600px) {
  .box-gallery-item {
    flex: 100%;
    max-width: 100%;
  }
}/*# sourceMappingURL=box-gallery.css.map */