/* 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
 */

/* General Slider Container */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.slider {
  display: flex;
  transition: transform 0.5s ease;
}
.slide {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.slide-text {
  flex: 1;
  margin-right: 20px;
  font-size: 18px;
}
.slide-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.slide-image {
  flex-shrink: 0;
  max-width: 50%;
}
.slide-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
/* Navigation Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}
/* Optional: For mobile responsiveness */
@media screen and (max-width: 768px) {
  .slider {
    flex-direction: column;
  }
  .slide-text {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .slide-image {
    max-width: 100%;
  }
}
/*# sourceMappingURL=custom_12.css.map */