.side-by-side-container {
  display: flex;
  justify-content: space-between; /* This helps manage the space */
}

.content-block {
  flex: 1; /* This tells both blocks to share the space */
  border: 1px solid #eee;
  padding: 20px;
}

/* This adds space to the right of the first block */
.content-block:first-child {
  margin-right: 30px;
}

.full-width-container {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 40px 15px;
  box-sizing: border-box;
}


.partner-logo-grid img {
  max-width: 150px; /* Controls the size of the logos */
  filter: grayscale(100%); /* Makes logos black and white */
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}

.partner-logo-grid img:hover {
  filter: grayscale(0%); /* Brings logo to full colour on hover */
  opacity: 1;
}

.slick-partners--item img {
  height: 60px; /* Adjust this value to set a consistent height for all logos */
  width: auto; /* Allows the width to adjust automatically */
  object-fit: contain; /* Ensures the logo scales nicely without being stretched */
  filter: grayscale(100%); /* This makes the logos black and white */
  opacity: 0.7;
  transition: all 0.3s ease;
}

.slick-partners--item img:hover {
  filter: grayscale(0%); /* Brings back colour on hover */
  opacity: 1;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 12px;
}