.hero-banner {
    min-height: 420px;
    position: relative;
  
    .color-overlay {
        position: absolute;
        min-height: 420px;
        min-width: 150vw;
    }
    
    h1 {
        font-size: 6rem;
        font-weight: 900;
        margin-top: 0;
    }

    span {
        font-size: 1.8rem;
        font-weight: 600;
        text-transform: lowercase;
    }

    p {
        display: inline-block;
        font-size: 2.4rem;
        font-weight: 400;
        line-height: 3rem;
    }
  
  .summitPlum,
.summitBlueberry,
.summitBlueCorn,
.summitPlumOutline {
  display: inline-block;
  color: #FFF;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 600;
  text-decoration: none;
  background-color: #a539b2;
  padding: 1.5rem 2rem;
}

.summitBlueberry {
  background-color: #00244d;
}

.summitBlueCorn {
  background-color: #006894;
}

.summitPlumOutline {
  background-color: #a539b200;
  border: 2px solid #a539b2!important;
  color: #a539b2;
}

/* Flash slide */
.flash-slide {
	border: none;
	display: inline-block;
	border-radius: .5rem;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	text-align:center;
}

.flash-slide:before {
	content: "";
	position: absolute;
	top: -30px;
	left: -80px;
	height: 100px;
	width: 70px;
	background: rgba(255, 255, 255, .3);
	transform: rotate(20deg);
}

.flash-slide:hover:before {
	left: 245px;
	transition: all .5s;
}
.flash-slide--white {
	background: #FFF;
  border: 2px solid #a539b2;
  color: #a539b2;
}
  
  
}

.banner-content {
    position: relative;
    max-width: 1150px;
    padding-top: 80px;
    margin: 0 auto;
}

span.summit-eyebrow {
   font-size: 30px;
   font-weight: 400;
   text-transform: uppercase;
}

#background-video {
    width: 100%;
    z-index: 0;
    object-fit: fill;
    position: absolute;
    top: -30%;
}



@media(max-width: 1199px) {
  #background-video {
    top: unset;
  }
  
  .banner-content {
    max-width: 750px;
/*     margin: 0% 10%; */
  }
  .hero-banner {
    min-height: 400px;
    position: relative;
  }
  
  .color-overlay {
    min-height: 500px;
  }
}

@media (max-width: 480px) { 
  .banner-content h1 {
    font-size: 4rem;
  }
}

/* countdown timer */
.countdown {
  z-index: 2;
  position: relative;
  margin-bottom: 30px;
}

#timer-container {
  display: flex;
  justify-content: center;
  gap: 5px; /* Reduced spacing between all elements */
  margin-top: 50px; /* Adjust to position it on your page */
  
  .time-box {
    font-weight: bold; /* Make the numbers bold */
    text-align: center;
    padding: 10px; /* Reduced padding */
    border: 2px solid #ffffff;
    border-radius: 10px;
    background-color: #002d61; /* Navy blue background */
    color: #ffffff; /* White text */
    width: 95px; /* Reduced width of the boxes */
    height: 95px; /* Reduced height of the boxes */
    display: flex;
    flex-direction: column;
    justify-content: center;00
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Added shadow */
}
    #days, #hours, #minutes, #seconds {
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
  }

  .label {
    font-size: 1rem; /* Reduced label size */
    font-weight: bold;
    margin-top: 2px;
    color: white;
  }

  .colon {
    font-family: Arial, sans-serif;
    font-size: 2.5rem; /* Adjusted for a smaller colon */
    font-weight: bold;
    color: #FFF; /* Make colon black */
    align-self: center; /* Align with boxes */
  }

  .spacer {
    width: 5px; /* Reduced spacer width */
  }

  .spacer-days-hours {
    width: 9px; /* Space only between days and hours */
  }
  
}

