body {
  font-family: "Century Gothic", 'Lato', sans-serif;
}
a {
  text-decoration: none;
}
main {
  display: grid;
}
.container {
  height: max-content; /* Pour simuler un contenu long */
}
.et-main{

  padding: 10px 60px;
  display: flex;
  flex-wrap: wrap;
}
.et-slide{
  padding: 8rem 9rem;
  flex: 100%;

}
.et-hero-tabs{
  display: block;
  flex-wrap: wrap;
  margin: 5rem 0;
  flex: 100%;
  align-content: center;
  text-align: center;
  flex-direction: column;
}
.et-hero-tabs h1{
  margin: 0;
  padding: 1.2rem;
  letter-spacing: 1rem;
  transform-origin: 50% 100%;
  text-align: center;
  font-size: 3.5rem;
  color: #fff;
  flex:100%
}
.et-hero-tabs h3{
  text-transform: capitalize;
  margin: 0;
  padding: 2rem;
  letter-spacing: 1rem;
  transform-origin: 50% 100%;
  text-align: center;
  flex: 100%
}

.et-hero-tabs, .et-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /*height: 70vh;*/
  position: relative;
  background: transparent;
  text-align: center;
  box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}
h1 {
  font-size: 2.1rem;
  margin: 0;
  letter-spacing: .2rem;
  text-align: center;
  color: #cdcdcd;
  text-shadow: 0 2px 2px #000;
}
.et-slide h1 {
  font-size: 1.7rem;
  margin: 0;
  letter-spacing: .5rem;
}

.et-hero-tabs h3, .et-slide h3 {
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
  opacity: 0.6;
  color: #01010b;
}
.text-slider-items {
  text-shadow:
  0 0 20px #69F0AE,
  0 0 40px rgba(0, 230, 118, .75),
  0 0 50px rgba(0, 230, 118, .75),
  0 0 100px rgba(0, 230, 118, .75);

  font-family: 'Quicksand', sans-serif;
  font-weight: 900;
  transition: .5s;
}
.text-slider-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

.et-slide p {
  font-size: 1.2rem;
  margin: 40px;
  letter-spacing: .2rem;
  color : mediumblue;
  text-align: justify;
  line-height: 2;
  /*max-width: 900px;*/

}
.et-hero-tabs-container {
  display: flex;
  flex-direction: row;
  position: sticky;
  top: calc(2px);
  width: 100%;
  height: 68px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background: #fff;
  z-index: 20;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 2px;
}
#slide_bar{
  border-radius: 5px;
  padding: 2px;
}
.et-hero-tab-slider {
  position: absolute;
  top: 0;
  width: 0;
  height: 6px;
  background: #b2b7f1;
  transition: left 0.3s ease;
}

.et-hero-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  color:#c2185b;
  letter-spacing: 0.1rem;
  transition: all 0.5s ease;
  font-size: 0.8rem;
}
.et-hero-tab:hover {
  color: white;
  background: #cfdbff;
  transition: all 0.5s ease;
}
