body {
    font-family: 'Anton', sans-serif;
    background-color: #000;
    color: #fff;
    height: 100%;display: flex;
    flex-direction: column;
  }
  main {
    flex: 1 0 auto;
  }
  .hero {
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent white color */
    color: #ffc107;
    text-align: center;
    padding: 6rem 1rem;
  }

  .hero2 {
    background-color: rgba(0, 0, 0, 0.6);
    /* Semi-transparent white color */
    color: #ffc107;
    text-align: center;
    padding: 6rem 1rem;
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
    /* Resize the background image to cover the entire container */
    background-image: url('img/dgmxschool_logo_img.png');
    background-blend-mode: multiply;
  }

  .hero3 {
    background-color: rgba(0, 0, 0, 0.6);
    /* Semi-transparent white color */
    color: #ffc107;
    text-align: center;
    padding: 6rem 1rem;
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
    /* Resize the background image to cover the entire container */
    background-image: url('img/dg_with_student.png');
    background-blend-mode: multiply;
  }

  .hero4 {
    background-color: rgba(0, 0, 0, 0.6);
    /* Semi-transparent white color */
    color: #ffc107;
    text-align: center;
    padding: 6rem 1rem;
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
    /* Resize the background image to cover the entire container */
    background-image: url('img/1.jpg');
    background-blend-mode: multiply;
  }

  .cta-btn {
    background-color: #ffc107;
    color: #002f6c;
    font-weight: bold;
  }

  .section-title {
    color: #ffc107;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
  }
  .carousel-item {
  height: 600px; /* adjust as needed */
  position: relative;
}
.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.6;
  border-radius: 0px;
}
@media (min-width: 768px) {
  .carousel-item {
    height: 600px;
  }
}
@media (min-width: 1200px) {
  .carousel-item {
    height: 900px;
  }
}

  /* .carousel-item {
    padding: 15px;

    & img {
      border-radius: 30px;
      height: 500px;

      box-shadow: 0px 5px 5px rgba(0, 0, 0, .21);
      transition: .25s linear;
    }
  } */

  .black-overlay {
    position: relative absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.404);
  }


  .carousel-indicators .active {
    background: #ffc107;
  }

  /*     .card {
    background-color: #1a1a1a;
    border: 1px solid #ff0000;
  } */
  .yellow-text {
    color: #ffc107;
  }

  .marquee-container {
    width: 100%;
    white-space: nowrap;
    background-color: #dcdcdc;
    padding: 6px 0;
    
  }

  .marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 50s linear infinite;
    min-width: max-content;
    will-change: transform;
  }

  .marquee-item {
    flex: 0 0 auto;
    padding: 0 20px;
    font-size: 1.2rem;
    color: #495057;
  }

 

  @keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); } /* or adjust if needed */
  }
  
  .marquee-item  img{
    max-height: 70px;
    width: auto;
  }
  .sponsor-marquee {
    max-width: 220px;
  }
.nav-mx-dirt{
    background: url('img/mud_blue.png');
    background-position: center;
    /* Center the image */
     background-repeat: no-repeat;
    /* Do not repeat the image */
     background-size: cover; 
    background-color: transparent !important;
}
  footer {
    background: linear-gradient(90deg, #002f6c, #c8102e);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    background: url('img/mud_red.png');
    background-position: center;
    /* Center the image */
     background-repeat: no-repeat;
    /* Do not repeat the image */
     background-size: cover; 
  }
  
  .programs-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }