
/* Action */

.action
{
  width: 100%;
  height: auto;
  background-color: var(--primary-color);
  color: var(--color-secondary);
  position: relative;
}

.hero-slider-container
{
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: space-around;

}

.hero-slides
{
  width: 100%;
}

.hero-slides-pagination
{
  width: 100%;
  padding-top: 1em;
  padding-bottom: 1em;
  text-align: center;
}
                  
.hero-slide
{
  width:100%;
  height: 100%;
  display: none;
  gap: 1em;
}

.hero-slide.active
{
    display: flex;
}

.hero-slide-text-content
{
  width:clamp(10rem, 60dvw, 100rem);
  height: 100%;
  flex-direction: column;
  text-align: center;
  justify-items: center;
  padding: clamp(1rem, 3dvw, 10rem);
}
.hero-slide-video-content
{
  width:clamp(10rem, 40vw, 100rem);
  height: 100%;
}

.hero-texts
{
  width: 100%;
  gap: 1.5rem;
  padding: clamp(1rem, 7dvw, 10rem);
  flex-direction: column;
}

.hero-text-1
{
  font-size: var(--fs-hero);
  line-height: var(--lh-action-lg);
}

.hero-text-2
{
  color: var(--white-color);
  font-size: var(--fs-hero);
  line-height: var(--lh-action-lg);
}

.hero-text-3
{
  font-size: var(--fs-action-title);
  line-height: var(--lh-action-sm);
  height: 5em;
}

.hero-cta-container
{
  width: 100%;
  padding: 1em;
  gap: 2em;
}

.hero-cta-button
{
  width: clamp(8rem, 20vw, 15rem);
  aspect-ratio: 3/1;
  line-height: 40px;
  padding: 0.35em 0.25em;
  text-wrap: nowrap;
  border: 1px solid transparent;
  transition: all .36s;
  font-size: var(--fs-hero-button);
  border-radius: var(--cta-button-border-radius);
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
  color: var(--white-color);
  background-color: var(--accent-color);
}

.hero-cta-button:hover
{
  outline: none;
  background-color: var(--light-grey);
  color: var(--primary-color);
}

.hero-slide-video
{
  display: flex;
  width: 100%;
  border-radius: var(--border-radius);
}

.hero-dot
{
  cursor: pointer;
  width: 0.7rem;
  height: 0.7rem;
  margin: 0 2px;
  background-color: var(--white-color);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.hero-dot.active
{
  background-color: var(--accent-color);
}



@media only screen and (max-width: 1024px)
{
  .hero-slide
  {
    flex-direction: column;
  }

  .hero-slide-text-content,  .hero-slide-video-content
  {
    width: 100%;
  }
}

