#company {
  background: #F1F1F1;
}

.company-container {
  padding: 94px 40px 180px;
}
@media only screen and (max-width: 768px) {
  .company-container {
    padding: 64px 20px 60px;
  }
}

.company-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
  color: #111;
}
@media only screen and (max-width: 768px) {
  .company-title {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1px;
    text-align: left;
    color: #444464;
  }
}

.company-section-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #111;
}
.company-section-title::before {
  display: block;
  width: 5px;
  height: 20px;
  border-radius: 9999px;
  background-color: #F67C4D;
  content: "";
}

.company-overview {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 60px;
  margin-inline: auto;
  max-width: 780px;
}
@media only screen and (max-width: 768px) {
  .company-overview {
    margin-top: 32px;
  }
}

.company-overview-list {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
}
@media only screen and (max-width: 768px) {
  .company-overview-list {
    grid-template-columns: 1fr;
  }
}

.company-overview-list-item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
}
@media only screen and (max-width: 768px) {
  .company-overview-list-item {
    grid-column: span 1;
  }
}

.company-overview-list-item-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1.2px;
  color: #555;
}
@media only screen and (max-width: 768px) {
  .company-overview-list-item-title {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 3%;
  }
}

.company-overview-list-item-description {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 1.2px;
  color: #000;
}
@media only screen and (max-width: 768px) {
  .company-overview-list-item-description {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 3%;
  }
}

.company-overview-list-item-description-link {
  color: #000;
  text-decoration: underline;
  transition: all 0.2s ease;
}
@media (any-hover: hover) {
  .company-overview-list-item-description-link {
    cursor: pointer;
  }
  .company-overview-list-item-description-link:hover {
    color: #F67C4D;
  }
}

.company-history {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
  margin-inline: auto;
  max-width: 780px;
}
@media only screen and (max-width: 768px) {
  .company-history {
    margin-top: 32px;
  }
}

.company-history-list {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px 8px;
}
@media only screen and (max-width: 768px) {
  .company-history-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.company-history-list::before {
  position: absolute;
  top: 12px;
  bottom: -40px;
  left: 113px;
  width: 2px;
  background: linear-gradient(180deg, #F67C4D 0%, #F67C4D 95%, rgba(246, 124, 77, 0) 100%);
  content: "";
}
@media only screen and (max-width: 768px) {
  .company-history-list::before {
    display: none;
  }
}

.company-history-list-item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .company-history-list-item {
    grid-column: span 1;
  }
}

.company-history-list-item-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1.2px;
  color: #555;
}
@media only screen and (max-width: 768px) {
  .company-history-list-item-title {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 3%;
  }
}

.company-history-list-item-description {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1.2px;
  color: #000;
}
@media only screen and (max-width: 768px) {
  .company-history-list-item-description {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 3%;
  }
}
.company-history-list-item-description::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  margin-block: auto;
  display: block;
  width: 12px;
  height: 12px;
  border: solid 2px #F67C4D;
  border-radius: 50%;
  background-color: #FFF;
  content: "";
}
@media only screen and (max-width: 768px) {
  .company-history-list-item-description::before {
    display: none;
  }
}/*# sourceMappingURL=company.css.map */