#hero {
  background-color: #CAD5EC;
  overflow: hidden;
  height: 240px;
}

#hero .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  height: 100%;
  gap: 16px;
  background-image: url('../images/bg-hero.svg');
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right -420px center;
  mix-blend-mode: multiply;
}

#hero .box h1 {
  font-size: 44px;
  margin: 0;
  color: #333;
  font-weight: bold;
}

#hero .box p {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.75;
}


@media screen and (max-width: 1099px) {

  #hero .box {
    padding-left: 24px;
    padding-right: 24px;
    background-position: right -640px center;
  }

  #hero .box h1 {
    font-size: 26px;
  }

  
}