/* your styles go here */
/* Example site test */

.box-image-text .image {
    min-height: 190px;
    max-height: 190px;
}

.box-image-text .image img {
    max-height: 190px;
    margin: auto;
}

.box-simple {
    min-height: 230px;
}

.three-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.three-cols .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.three-cols img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.three-cols h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.three-cols p {
  font-size: 0.95rem;
  color: #555;
  max-width: 250px;
}

@media (max-width: 768px) {
  .three-cols {
    grid-template-columns: 1fr;
  }
}

.float-left {
  float: left;
  margin: 0 1.5rem 1rem 0;
  max-width: 50%;
}

.float-right {
  float: right;
  margin: 0 0 1rem 1.5rem;
  max-width: 50%;
}

.parent-container {
  display: flex;
  /* 1. Makes it a flex container */

  align-items: center;
  /* 2. Vertically centers the children */

  justify-content: center;
  /* 3. (Optional) Horizontally centers the children */

  height: 100vh; /* Or any fixed height for the container */
}
/* Two-row customer carousel */
.owl-carousel.customers-two-rows .clients-slide {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px 0;
}

.owl-carousel.customers-two-rows .clients-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}

.owl-carousel.customers-two-rows .client-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.owl-carousel.customers-two-rows .client-item img {
  max-height: 70px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.owl-carousel.customers-two-rows .client-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Event timeline body text font size */
.timeline .content .body {
  font-size: 1.25em;
}