.tablist {
  width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}

.tab-container {
  display: flex;
  transition: transform 0.3s ease;
  height: 100%;
}

.tab {
  min-width: 100%;
  height: 550px;
  padding: 20px;
  box-sizing: border-box;
  background-color: black;
  cursor: grab;
}

.tab .like-header {
  margin: 0;
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  letter-spacing: -1px;
  text-align: center;
  padding: 1.2rem;
}

.tab a {
  color: white;
}

.tab h3 {
  margin: 0;
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  letter-spacing: -1px;
  text-align: center;
  padding: 1.2rem;
}

.tab p {
  color: white;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  word-spacing: 2px;
  text-align: end;
  padding: 1.4rem;
  margin: 0;
  line-height: 1.6rem;
}

/* #tab1 {
  background-color: #f0f0f0;
}
#tab2 {
  background-color: #e0e0e0;
}
#tab3 {
  background-color: #d0d0d0;
}
#tab4 {
  background-color: #c0c0c0;
}
#tab5 {
  background-color: #b0b0b0;
} */

.indicators {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  min-height: 25px;
}

.indicator {
  width: 40px;
  height: 7px;
  border-radius: 20%;
  background-color: #ffffff;
  margin: 0 5px;
  cursor: pointer;
}

.indicator.active {
  background-color: yellow;
  /* border: 2px solid #333; */
}

@media (501px <= width <= 1000px) {
  .tablist {
    height: 450px;
  }
  .tab {
    height: 450px;
    padding: 40px;
  }
}

@media (1001px <= width <= 4000px) {
  .tablist {
    height: 350px;
    width: 70%;
    margin: 0 auto;
  }
  .tab {
    height: 350px;
    padding: 40px;
  }
}
