.repeating-slash-line {
    width: 100%;
    height: 10px; 
    background-color: #007bff;
}

.white {
    color: white;
}

.black {
    color: black;
}
nav-item .black {
    color: black;
}
.pt {
    font-size: 3.5rem;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 0;
}


.banner {
  position: relative;
  height: 60vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.banner-black {
  background: black;
  position: relative;
  height: 60vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.banner-about {
  background: url('/static/img/content/about.jpeg') no-repeat center center;
  background-size: cover;
  position: relative;
  height: 60vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  z-index: 1; /* Ensure this layer is above the overlay */
}

.banner-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 0; /* Keep the overlay below the text */
  pointer-events: none; /* Prevent the overlay from interfering with interactions */
}

.banner-about * {
  position: relative;
  z-index: 2; /* Ensure all child elements are above the overlay */
}


.banner-partners {
  background: url('/static/img/content/partners.jpeg') no-repeat center center;
  background-size: cover;
  position: relative;
  height: 60vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  z-index: 1; /* Ensure this layer is above the overlay */
}

.banner-partners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 0; /* Keep the overlay below the text */
  pointer-events: none; /* Prevent the overlay from interfering with interactions */
}

.banner-partners * {
  position: relative;
  z-index: 2; /* Ensure all child elements are above the overlay */
}

.banner-contact * {
  position: relative;
  z-index: 2; /* Ensure all child elements are above the overlay */
}


.banner-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* Dark overlay */
  z-index: 0;
}


.banner-contact {
  position: relative;
  height: 40vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.text-content {
  z-index: 2;
}

.blue-gradient {
    background: linear-gradient(to right, #007bff, #007ffe);
}


@media (max-width: 767px) { /* Targets screens smaller than 640px */
    #hide-on-mobile {
      display: none;
    }
    #left_banner {
        width: 100% !important;
    }
  }

  .hide-on-large {
    display: block;
  }
  @media (min-width: 640px) {
    .hide-on-large {
      display: none;
    }
  }

  .grecaptcha-badge {
    visibility: hidden;
  }
  