/* CSS Document */
#getStarted {
	display:none;
}
.hero {
background-image: url('../img/hero-bg3.jpg');
-webkit-clip-path: polygon(100% 0, 100% calc(100% - 40px), calc(50% + 60px) calc(100% - 40px), 50% calc(100% - 0px), calc(50% - 60px) calc(100% - 40px), 0 calc(100% - 40px), 0 0);
clip-path: polygon(100% 0, 100% calc(100% - 40px), calc(50% + 60px) calc(100% - 40px), 50% calc(100% - 0px), calc(50% - 60px) calc(100% - 40px), 0 calc(100% - 40px), 0 0);
background-size: cover;
background-position: center;
}

@media (max-width: 639px) {
.hero {
  background-image: url('../img/hero-bg3.jpg'); /* Ensure the image is still set */
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(000, 000, 000, 0.1); /* Semi-transparent overlay */
  backdrop-filter: blur(8px); /* Adjust the blur intensity as needed */
  -webkit-backdrop-filter: blur(8px); /* For Safari */
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2; /* Ensure content is above the blur */
}
}
.hi-u2 {
    line-height: 1;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url(../../global/img/highlight.png);
}
.hi-red-u2 {
    line-height: 1;
    margin: 0 -0.1em;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url(../../global/img/hi-red.png);
}