/* ===== Production ===== */
#production {
  background: var(--color-gray-light);
}

.production__tab-titles {
  margin-bottom: 20px;
}

.production__tab-titles .swiper-slide {
  width: auto;
}

.production__tab-title {
  font-size: 22px;
  padding: 8px;
  color: var(--color-gray);
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;

  &:hover {
    color: var(--color-black);
  }

  @media (max-width: 767px) {
    font-size: 15px;
  }
}

.production__tab-title.is-active {
  border-color: var(--color-orange);
  color: var(--color-black);
}

.production__tab-content {
  display: none;
}

.production__tab-content.is-active {
  display: block;
}

.production__tab-content p {
  margin-bottom: 15px;
}

.production__tab-content p:last-child {
  margin-bottom: 0;
}
