/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.lab {
  width: 100%;
  padding: 40px 0;
}
.lab__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.lab__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  gap: 20px;
  border: 1px solid rgba(182, 182, 182, 0.4);
  color: hsl(0, 0%, 0%);
  text-decoration: none;
  transition: all 250ms ease;
}
.lab__item:hover {
  border-color: #f58220;
}
.lab__item:hover .lab__item__name {
  color: #f58220;
}
.lab__item__name {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 400;
  transition: color 250ms ease;
}
.lab__item__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.lab__item__icon svg {
  width: 22px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .lab {
    padding: 80px 0;
  }
  .lab__item {
    padding: 24px 30px;
  }
  .lab__item__name {
    font-size: 16px;
    font-size: 1rem;
    line-height: 24px;
    line-height: 1.5rem;
  }
  .lab__item__icon svg {
    width: 26px;
  }
}