/*Breakpoints*/
.tabs {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 5px;
  margin-top: 5rem;
  cursor: pointer;
}

.tab__description {
  display: none;
}
@media (min-width: 900px) {
  .tab__description {
    display: block;
  }
}
.tab__content {
  margin-top: 2rem;
  display: none;
}

.tab__item {
  cursor: pointer;
  padding: 10px 20px;
  border-bottom: 3px solid #fbd8d8;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tab__item:hover {
  border-bottom: 3px solid #ff0000;
}

.tab__item.active {
  background-color: #fff;
  border-bottom: 3px solid #ff0000;
}/*# sourceMappingURL=tabs.css.map */