/**
 * Hero 1 Section - Dioqa UI Kit
 *
 * @package Dioqa_UI_Kit
 */

/* Section Container */
.hero-1-section {
  min-height: var(--section-height, 95vh);
}

.hero-title {
  text-align: left;
}

.hero-title h1,
.hero-title h2,
.hero-title h3,
.hero-title h4,
.hero-title h5,
.hero-title h6 {
  color: var(--bs-gray-dark);
  font-family: var(--font-heading);
  font-size: var(--display-2sm);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.hero-text {
  text-align: left;
}

.hero-text p {
  color: var(--bs-gray-medium);
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.hero-buttons {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  gap: 1rem;
  justify-content: start;
  flex-wrap: nowrap;
  padding: 0 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-buttons {
    flex-wrap: wrap;
  }

  .hero-image img {
    height: 425px;
  }
}
