#fw-section-announcement-bar-1721062961 {

a {
  color: #ffffff
}
}


#fw-section-custom-html-1721749790 {

/* Container for the partner logos */
.partner-logos {
  display: flex;
  justify-content: center; /* Centers the logos horizontally */
  align-items: center; /* Aligns the logos vertically */
  gap: 20px; /* Adds spacing between the logos */
  margin: 20px 0; /* Adds some vertical margin to the container */
}

/* Individual logo images */
.partner-logos img {
  height: 80px; /* Ensures all logos have the same height */
  width: auto; /* Maintains the aspect ratio */
  vertical-align: middle; /* Aligns logos vertically */
  transition: transform 0.3s ease; /* Adds a hover animation */
}

.partner-logos img:hover {
  transform: scale(1.1); /* Slightly enlarges the logo on hover */
}


}