.hero-big {
  position: relative;
  width: 100%;
  min-height: 65dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-white);
  font-family: sans-serif;
}

.hero-big::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.60) 0.09%, rgba(102, 102, 102, 0.00) 118.03%);
  z-index: 1;
}

.hero-big__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-big__image * {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.hero-big__image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.hero-big__container {
  position: relative;
  z-index: 1;
}

.hero-big__text-content {
  max-width: 40rem;
}

.hero-big__title {
  font-size: 3.30625rem;
  line-height: 1;
}

.hero-big__subtitle {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.hero-big__button.btn {
  display: inline-block;
  font-size: 1.25rem;
  text-transform: capitalize;
  color: var(--color-white);
  background-color: var(--color-light-green);
}

.hero-big__button:hover {
  background-color: var(--color-white);
  color: var(--color-dark-blue);
}
