/* === Mission Vision === */

.mission-vision {
  padding: 60px 0;
  background-color: #f9f9f9;
  scroll-margin-top: 100px;
  overflow: auto;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.mission-vision .title {
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

/* === Goals === */

.goals {
  padding: 60px 0 170px;
}

.goals-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 60px;
}

.goals-content .section-name {
  margin-bottom: 12px;
}

.goals-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.goals-item {
  display: flex;
  align-items: center;
  gap: 15px;
  width: calc((100% - 60px) / 3);
}

.goals-item-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  width: 83px;
  height: 83px;
  background-color: var(--secondary-color);
}

.goals-item-wrap img {
  width: 50px;
  object-fit: contain;
}

.goals-item-content {
  width: calc(100% - 103px);
}

@media screen and (max-width: 768px) {
  .goals-item {
    width: calc((100% - 30px) / 2);
  }
}

@media screen and (max-width: 500px) {
  .goals-item {
    width: 100%;
  }
}

/* === History === */

.history {
  padding: 100px 0;
}

.history-content,
.history-img {
  width: calc((100% - 45px) / 2);
}

.history-img {
  height: 500px;
  object-fit: cover;
}

.history-content {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.history-content .section-name {
  margin-bottom: 12px;
}

.history-content .title {
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .history .container-flex {
    flex-direction: column-reverse;
  }

  .history-content,
  .history-img {
    width: 100%;
  }
}
