.hero-section-container {
  background-position: 50%;
  background-size: cover;
  min-height: 820px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

video.hero-bg-video {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.angle-divider-container {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxNjZweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiMwNTBBMjciPjxwYXRoIGQ9Ik0wIDB2MTQwaDEyODBMMCAweiIgZmlsbC1vcGFjaXR5PSIuNSIvPjxwYXRoIGQ9Ik0wIDQydjk4aDEyODBMMCA0MnoiLz48L2c+PC9zdmc+);
  background-size: 100% 166px;
  bottom: 0px;
  height: 166px;
  width: 100%;
  z-index: 2;
  transform: scale(1, 1);
  position: absolute;
}

.hero-content-container {
  width: 80%;
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 50%; 
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-content-container h1 {
  color: #fff;
  font-family: "Brother 1816", sans-serif;
  font-size: 80px !important;
  font-weight: 800;
  text-transform: uppercase; 
  line-height: 1em;
  word-wrap: normal;
  margin-bottom: 8px;
}
.hero-content-container h3 {
  color: #fff;
  font-family: "Brother 1816", sans-serif;
  font-size: clamp(20px, 6vw, 35px) !important;
  font-weight: 200;
  text-transform: uppercase;
  line-height: 1em;
  margin-bottom: 20px;
}

.hero-cta-btn {
  color: #ffffff !important;
  border-color: #789904;
  border-radius: 100px;
  font-family: "soleil", sans-serif;
  font-size: 20px;
  background-color: #789904 !important; 
  padding-top: .75em;
  padding-bottom: .75em;
  padding-left: 1.5em;
  padding-right: 0em;
  line-height: 1.7em !important; 
  text-decoration: none;
  transition: all ease-in-out 0.17s;
  margin-top: 20px;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.hero-cta-btn svg {
  height: 18px;
  width: 18px;
  fill: #fff;
  margin-left: 0.7em; 
  transition: all ease-in-out 0.17s;
  opacity: 0;
}

.hero-cta-btn:hover {
    padding-left: 1.95em; 
    padding-right: 1em; 
}

.hero-cta-btn:hover svg{
    margin-left: 1.7em; 
    opacity: 1;
  
}


.scroll-down-icon {
  height: 40px;
  width: 40px;
  color: #fff;
  position: absolute;
  bottom: 50px;
  left: 0px;
  right: 0px;
  margin: 0 auto;
  border: solid 3px #fff;
  border-radius: 32px;
  padding: 0px;
}

.scroll-down-icon:hover {
  cursor: pointer;
}

.scroll-down-icon svg {
  fill: #fff; 
  max-width: 24px;
  transform: translateX(5px) translateY(5px);
}

/* Responsive CSS */

@media only screen and (max-width: 768px) {
  .hero-section-container {
    min-height: 400px;
  }
  
  .hero-content-container h1 {
    font-size: 36px !important;
    margin-bottom: 8px;
  }
  
  .hero-content-container h3 {
    font-size: 20px !important;
  }
  
  .hero-content {
    max-width: 100% !important;
  }
  
  .scroll-down-icon {
    display: none;
  }