/* GANTRY5 DEVELOPMENT MODE ENABLED.
 *
 * WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!
 *
 * For more information on modifying CSS, please read:
 *
 * http://docs.gantry.org/gantry5/configure/styles
 * http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

/* Container for the grid */
.image-grid {
  display: flex;
  flex-wrap: wrap;
}
/* Each image item */
.image-item {
  position: relative;
  width: 100%;
  flex: 1;
  overflow: hidden;
}
/* Image styling */
.image-item img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
/* Zoom effect on hover */
.image-item:hover img {
  transform: scale(1.1);
}
/* Overlay for text */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}
/* Overlay text styling */
.overlay-text {
  display: flex;
  flex: 3;
  align-items: center;
  color: white;
  font-size: 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}
.chevron {
  display: flex;
  flex: 1;
  align-items: center;
  color: white;
  font-size: 60px;
  font-family: Arial, sans-serif;
  text-align: center;
}
/* Mobile design */
@media (max-width: 768px) {
  .image-item {
    flex: 1 1 100%;
    margin-bottom: 15px;
    /* Optional: adds some spacing between stacked items */
  }
}
.contact-button {
  display: inline-block;
  background-color: #4a5580;
  padding: 5px 15px;
  border-radius: 30px;
  transition: transform 0.2s ease;
}
.contact-button a {
  color: white;
  display: inline-block;
}
.contact-button:hover {
  transform: scale(0.95);
}
/*# sourceMappingURL=custom_21.css.map */