/* main */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: 20px;
  box-sizing: border-box;
  background-image: url("../../images/law-family.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  padding: 30px 0px;
  font-family: 'Heebo', sans-serif;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 11, 17, 0.3);
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

    #logoHeader {
    width: clamp(80px, 3vw, 100px);
    margin: auto;
    }

    #heroTxt {
      padding: 30px;
      border-radius: 50px;
      background-color: rgba(255, 255, 255, 0.7);
    }

      .hero h1 {
        margin: 0;
        color: #07111c;
        font-size: clamp(2.2rem, 6vw, 3.5rem);
        line-height: 1.08;
        font-weight: 800;
        letter-spacing: -0.03em;
      }

      .hero p {
        margin: 18px auto 0;
        max-width: 760px;
        font-weight: 500;
        color: #07111c;
        font-size: clamp(17px, 3vw, 22px);
        line-height: 1.5;
      }

     @media (max-width: 560px) {
        .hero {
          padding: 44px 16px 92px;
        }
    }