.hero-banner {
  display: flex;
  justify-content: space-evenly;
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 620px;
  margin-top: -67px;
  padding-top: 45px;
  background-color: #F8F3EF;
}


.hero-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  padding-inline: 60px;
}

.hero-text-header {
  font-size: 13px;
  color: #a16979;
  padding-left: 3px;
}

.hero-text-body {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin-bottom: 35px;
}

.hero-text-footer {
  display: flex;
  gap: 30px;
  align-items: center;
}

.banner-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #555;
  border: none;
  border-radius: 5px;
  background-color: white;
  padding: 12px 25px;
  font-weight: 500;
  box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  cursor: pointer;
  gap: 7px;
}

.banner-button:hover {
  background-color: rgb(251, 251, 251);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  color: #777;
}

.banner-button img {
  height: 13px;
  width: 13px;
  object-fit: contain;
}


.hero-image-container {
  padding: 20px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-image {
  height: 100%;
  width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hero-banner-price-container {
  position: absolute;
  z-index: 2;
  height: 85px;
  width: 85px;
  background-color: rgba(255, 255, 255, 0.888);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 400;
  border-radius: 50%;
  gap: 5px;
}

.hero-price-title {
  font-size: 13px;
  color: #777;
}

.hero-banner-price {
  font-size: 14px;
  color: #d08754;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}