.white-icon {
  /* brightness(0) makes it black; invert(1) flips black to white */
  filter: brightness(0) invert(1);
}

.partners-slider {
  overflow: hidden;
  /* position: relative; */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;

  width: max-content;

  animation: scrollPartners 25s linear infinite;
}

.partner-logo {
  height: 70px;
  width: auto;
  object-fit: contain;

  /* filter: grayscale(100%); */
  opacity: 0.7;
  border-radius: 10px;
  transition: 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scrollPartners {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero-image {
  mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

#service-section {
  min-height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#service-section h2 {
  color: #fff;
  font-size: 2rem;
  position: relative;
}

#service-section h2::after {
  position: absolute;
  content: " ";
  width: 0;
  height: 0;
  top: 8px;
  bottom: -10px;
  left: -30px;
  border-top: 20px solid transparent;
  border-left: 30px solid #fff;
}

#service-section h2::before {
  position: absolute;
  content: " ";
  width: 0;
  height: 0;
  top: 8px;
  bottom: -10px;
  right: -30px;
  border-top: 20px solid transparent;
  border-right: 30px solid #fff;
}

.service-hero {
  background: linear-gradient(160deg, #4957ca 50%, #fc2424);
  height: 40vh;
}

.service-font {
  font-size: 32px;
}

:root {
  --primary-color: #4957ca;
  --secondary-color: #fc2424;
}

.service-cards {
  display: flex;
  /* grid-template-columns: repeat(3, 1fr); */
  /* width: 100%; */
  /* gap: 20px; */
  /* margin-top: 20px; */
}

.service-cards .management-card {
  height: 200px;
  width: 200px;
  /* display: flex; */
  justify-content: flex-start;
  flex-direction: column;
  /* padding: 0 8%; */
  border-radius: 250%;
  background: #4957ca;
  position: relative;
  z-index: 99;
}

.service-cards .service-card {
  height: 280px;
  width: 380px;
  /* display: flex; */
  justify-content: flex-start;
  flex-direction: column;
  /* padding: 0 8%; */
  background: #fc2424;
  position: relative;
  z-index: 99;
}

.service-cards .service-card::before {
  position: absolute;
  content: " ";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background-color: #4957ca;
  transform: rotate(0deg);
  z-index: -1;
}

.service-cards .service-card:hover.service-card::before {
  transform: rotate(5deg);
}

a.menu-item.active {
  color: #fc2424; /* Replace with your desired color */
}

.navbar-bg {
  background-color: #4957ca;
}

.gradient-bg {
  background: linear-gradient(160deg, #4957ca 50%, #fc2424);
  height: 40vh;
}

.gradient-bg-footer {
  background: linear-gradient(160deg, #4957ca 50%, #fc2424);
  /*height: 40vh;*/
}

.gradient-bg-90 {
  background: linear-gradient(160deg, #4957ca 50%, #fc2424);
  height: 90vh;
}

.image-cover {
  object-fit: cover;
}

.map {
  height: 270px;
  width: 100%;
}

.image-home {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-height: 70vh;
  width: 100%;
  border-radius: 15px;
  object-fit: stretch;
}
