/* Container to clip the marquee */
.partners-marquee-container {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.partners-marquee-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.partners-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  z-index: 1;
}

/* Row container */
.partners-marquee-row {
  width: 100%;
  height: 4rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* The marquee element */
.partners-marquee {
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
  will-change: transform;
}

/* Logo wrapper styling */
.partners-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  min-height: 4rem !important;
  height: 4rem !important;
  padding: 10px;
  margin: 0 10px;
  /* background-color: blue; */
}

/* Styling for the logos */
.partners-logo-wrapper img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  /* //   background-color: red; */
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}

/* CSS Inspector (http://127.0.0.1:8000) */
.partnersCloudWrapper {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 8rem;
  margin-left: 20rem;
  padding-bottom: 2rem;
  /* background-color: red; */
  flex-direction: row !important;
}
.partnersCloudWrapper .contentContainer {
  /* background-color: red; */
}
.partnersCloudWrapper .contentContainer h1 {
  font-family: "Helvetica";
  font-size: 2rem;
  line-height: 2.5rem;
  max-width: 90%;
  color: #0A6AA1;
  text-transform: capitalize;
  margin: 0;
  padding: 0;
}
.partnersCloudWrapper .contentContainer .descriptionText {
  font-size: 0.9rem;
  color: #333;
  margin: 0;
  font-family: "GeneralSans-Medium";
  margin-top: 1rem;
}
.partnersCloudWrapper .mapContainer {
  /* background-color: red; */
  width: 80%;
  margin-top: 3rem;
}
.partnersCloudWrapper > div {
  width: 50%;
}/*# sourceMappingURL=sponsorsStyle.css.map */