.new__div {

  width: 200px;
  margin-bottom: 10px;  /* Optional: Adds space between the new div and the content below */
  padding-top: 100px;
  margin-left: 55px; 
  display: flex;
  display: inline-block;
  max-width: 100%;
  white-space: nowrap; /* Prevents text from wrapping */
  overflow: hidden;
  color: #0e3273;
  line-height: 1.8;
  text-overflow: ellipsis; 
  font-weight: bold;
}

@media (max-width: 768px) {
  .new__div {
    margin-bottom: -37px;
  }
}

.ctaButton {
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  ctaButton {
  padding-top: 80px;
  }
}

@media (max-width: 1023px) {
    .heroPanel .innerPanel__right {
        font-size: -2.1rem;
        left: -5px;
        margin-bottom: -40px;
        max-width: 17.125rem;
        padding-bottom: 8.5rem;
        right: 0;
        width: 81%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1023px) {
.heroPanel .innerPanel__left {
    background: rgba(15, 50, 115, .54);
    -webkit-border-radius: 1.4rem 1.4rem 0 0;
    border-radius: 1.4rem 1.4rem 1.4rem 1.4rem;
    bottom: 0;
    left: 3.125rem;
    max-width: 22.125rem;
    padding: 3.289rem 1rem .6rem;
    position: relative;
}
  
@media (max-width: 1023px) {
    .heroPanel .innerPanel__left {
        max-width: 100%;
      left:0;
      padding: 40px;
      margin: 55px;
  }
  
.heroPanel {
  position: relative;
  background: rgba(255, 255, 255, 0.80) url() no-repeat center center;
  background-size: cover;
}

.heroPanel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.80); /* 80% opacity overlay */
  z-index: 0; /* Set overlay to be below the content */
}

.new__div {
  position: relative;
  z-index: 1; /* Ensure content stays above the overlay */
  margin-left: 55px;
}
