.et-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
/*  height: 100vh;*/
  position: relative;
  text-align: center;
  padding: 0em;
}
.et-hero-tabs h1,
.et-slide h1 {
  font-size: 2rem;
  margin: 0;
  letter-spacing: 1rem;
}
.et-hero-tabs h3,
.et-slide h3 {
  font-size: 1rem;
  letter-spacing: 0.3rem;
  opacity: 0.6;
}

.et-hero-tabs-container {
    display: flex;
    flex-direction: row;
    bottom: 0;
    width: 100%;
    height: 100px;
    z-index: 10;
}
.et-hero-tabs-container--top {
  position: fixed;
  top: 0;
  background: rgba(255,255,255,0.9);
}

.et-hero-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    color: #000;
    letter-spacing: 0.1rem;
    transition: all 0.5s ease;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: -1px;
}
.et-hero-tab:hover {
  border-bottom: 6px solid rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.et-hero-tab-slider {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 6px;
  background: #ffbe3c;
  transition: left 0.3s ease;
}

@media (min-width: 800px) {
  .et-hero-tabs h1,
.et-slide h1 {
    font-size: 3rem;
  }
  .et-hero-tabs h3,
.et-slide h3 {
    font-size: 1rem;
  }

  .et-hero-tab {
    font-size: 1rem;
  }
}