.company-info {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 60px 0;
  color: #fff;
  position: relative;
  z-index: 1;
}

.company-info .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.company-info h2 {
  font-size: 3.6rem;
  letter-spacing: 8px;
  margin-bottom: 40px;
  text-align: center;
}

.company-info .tab-container .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}

.company-info .tab-container .tabs .tab-btn {
  background-color: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.8rem;
  margin: 0 10px;
  padding: 10px 20px;
  position: relative;
  letter-spacing: 2px;
}

.company-info .tab-container .tabs .tab-btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #949c26;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.company-info .tab-container .tabs .tab-btn.active:after, .company-info .tab-container .tabs .tab-btn:hover:after {
  width: 100%;
}

.company-info .tab-container .tab-content {
  max-width: 800px;
  margin: auto;
}

.company-info .tab-container .tab-content .tab-pane {
  display: none;
}

.company-info .tab-container .tab-content .tab-pane.active {
  display: block;
}

.company-info .tab-container .tab-content .tab-pane h3 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 2px;
}

.company-info .tab-container .tab-content .tab-pane p {
  width: auto;
  padding-top: 20px;
  line-height: 2;
  letter-spacing: 4px;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.company-info .tab-container .tab-content .tab-pane table {
  width: 100%;
  border-collapse: collapse;
}

.company-info .tab-container .tab-content .tab-pane table th, .company-info .tab-container .tab-content .tab-pane table td {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1.4;
  letter-spacing: 2px;
  font-size: 1.4rem;
}

.company-info .tab-container .tab-content .tab-pane table th {
  text-align: left;
  font-weight: bold;
  border-bottom: 2px solid #949c26;
}

.company-info .tab-container .tab-content .tab-pane#history .history-table {
  width: 100%;
  border-collapse: collapse;
}

.company-info .tab-container .tab-content .tab-pane#history .history-table th, .company-info .tab-container .tab-content .tab-pane#history .history-table td {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1.4;
  letter-spacing: 2px;
  font-size: 1.4rem;
  vertical-align: top;
}

.company-info .tab-container .tab-content .tab-pane#history .history-table th {
  width: 30%;
  text-align: left;
  font-weight: bold;
  border-bottom: 2px solid #949c26;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .company-info .tab-container .tab-content .tab-pane#history .history-table th, .company-info .tab-container .tab-content .tab-pane#history .history-table td {
    display: table-cell;
    width: auto;
  }
  .company-info .tab-container .tab-content .tab-pane#history .history-table th {
    width: 30%;
  }
}

.company-info .tab-container .tab-content #philosophy h1 {
  font-size: 3.6rem;
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: 8px;
  font-weight: 200;
}

.company-info .tab-container .tab-content #philosophy .section {
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 3rem;
}

.company-info .tab-container .tab-content #philosophy .section:last-child {
  border-bottom: none;
}

.company-info .tab-container .tab-content #philosophy .section h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  text-align: left;
  color: #949c26;
}

.company-info .tab-container .tab-content #philosophy .section h3 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: left;
}

.company-info .tab-container .tab-content #philosophy .section p {
  margin-bottom: 1.5rem;
}

.company-info .tab-container .tab-content #philosophy .section ul, .company-info .tab-container .tab-content #philosophy .section ol {
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.company-info .tab-container .tab-content #philosophy .section ul li, .company-info .tab-container .tab-content #philosophy .section ol li {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 2px;
}

.company-info .tab-container .tab-content #philosophy .section strong {
  font-weight: bold;
  color: #949c26;
}

.company-info .tab-container .tab-content #philosophy .section em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 768px) {
  .company-info {
    padding: 40px 0;
  }
  .company-info h2 {
    font-size: 2.4rem;
  }
  .company-info .tab-container .tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .company-info .tab-container .tabs .tab-btn {
    font-size: 1.4rem;
    margin: 0;
    width: 25%;
    padding: 10px 0;
  }
  .company-info .tab-container .tab-content .tab-pane h3 {
    font-size: 2rem;
  }
  .company-info .tab-container .tab-content .tab-pane p {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }
  .company-info .tab-container .tab-content .tab-pane table th, .company-info .tab-container .tab-content .tab-pane table td {
    display: block;
    width: 100%;
  }
  .company-info .tab-container .tab-content .tab-pane table th {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .company-info .tab-container .tab-content .tab-pane#history .history-table th, .company-info .tab-container .tab-content .tab-pane#history .history-table td {
    display: block;
    width: 100%;
  }
  .company-info .tab-container .tab-content .tab-pane#history .history-table th:first-child {
    width: 100%;
  }
  .company-info .tab-container .tab-content #philosophy h1 {
    font-size: 2.8rem;
  }
  .company-info .tab-container .tab-content #philosophy .section h2 {
    font-size: 2.4rem;
  }
  .company-info .tab-container .tab-content #philosophy .section h3 {
    font-size: 2rem;
  }
  .company-info .tab-container .tab-content #philosophy .section p, .company-info .tab-container .tab-content #philosophy .section ul, .company-info .tab-container .tab-content #philosophy .section ol {
    font-size: 1.4rem;
  }
}
/*# sourceMappingURL=about.css.map */