* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #e6e6e6;
}

/* HERO */
.hero {
  overflow: hidden;
  color: #000;
  border-radius: 18px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;     /* 🔥 */
  object-position: center center; /* можно подвинуть животных */
  z-index: 0;
}
.hero__wrap {
  flex-basis: 90%;
    flex-grow: 1;
    flex-shrink: 0;
    overflow: hidden;
     position: relative;
    min-height: 75vh;
}
/* CONTENT */
.content {
  height: 100vh;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* gap: 10px;
  align-items: center; */
    max-width: 1200px;
  margin: 40px auto;
}
.text {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px 20px 0px;
    text-align: center;
    font-size: 18px;
    color: red;
}
.hero__content {
  display: flex;
  align-items: center;
  padding: 40px;
  min-height: 360px;
    position: relative;
  z-index: 1;
  min-height: 60vh;
}

/* BADGE */
.badge {
  background: #d90000;
  color: #fff;
  padding: 20px;
  margin-right: 30px;
  text-align: center;
  font-weight: 800;
  font-size: 22px;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

/* TEXT */
.hero__text {
  max-width: 600px;
}

.hero__top {
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.retail {
  color: #d90000;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 56px;
  color: #1c6fb8;
  text-shadow: 0 2px 0 #fff;
}

.subtitle {
  font-size: 22px;
  font-weight: 700;
  margin: 15px 0;
}

.highlight {
  display: inline-block;
  background: #d90000;
  color: #fff;
  padding: 10px 18px;
  font-weight: 700;
  margin-top: 10px;
}

/* FOOTER */
.hero__footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #f5b400;
  padding: 18px;
  font-size: 18px;
  font-weight: 700;
}

.footer-item span {
  margin-left: 6px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero {
        border-radius: 0;
    }
    .content {
        margin: 0 auto;
    }

}
@media (max-width: 900px) {
  .hero__content {
    flex-direction: column;
    /* text-align: center; */
  }
.hero__text {
    width: 100%;
}
  .badge {
    margin: 0 0 20px;
  }

  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  /* .hero {
    margin: 15px;
  } */

  .hero__content {
    padding: 25px 20px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .subtitle {
    font-size: 18px;
  }

  .hero__footer {
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
  }
}
