.container{
	/*max-width: 1370px;*/
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}
.company-history {
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.history-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.history-card:hover {
  transform: translateY(-5px);
}

.history-year {
  font-size: 1.5rem;
  font-weight: bold;
  color: #004080;
  margin-bottom: 10px;
}

.history-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.4;
}

.history-grid .history-card {
  display: none;
}

.history-grid .history-card:nth-child(-n+4) {
  display: block;
}

.btn {
  background: #004080;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}
.btn:hover {
  background: #0066cc;
}


@media (min-width: 1400px){
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1370px;
}}

@media (min-width:991px) and (max-width:1199px){
.container, .container-lg, .container-md, .container-sm {
    max-width: 100%;
}}