/* --------------Mission Section------------------- */


/* .mission-section .container{
  max-width: 1280px;
  margin: auto;
} */

.mission-section {
  padding: 50px 0px;
  background: #f1f5f9;
}

@media (min-width: 768px) {
  .mission-section {
    padding: 80px 0px 56px;
  }
}

.mission-section a {
  text-decoration: none;
}

.mission-header {
  margin-bottom: 60px;
  display: none;
}

.mission-title {
  /* font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px; */
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.mission-divider {
  width: 70px;
  height: 5px;
  background: #1392ec;
  margin: 0 auto;
  border-radius: 10px;
}

.mission-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  /* border: 1px solid #f1f1f1; */
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-card:hover {
  transform: translateY(-8px);
}

.mission-card-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.mission-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.mission-card:hover img {
  filter: grayscale(0);
}

.mission-card-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 10px;
  background: #1392ec;
  color: #fff;
  /* border-radius: 8px; */
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  /*background: #1392ec1a;
  color: #1392ec; */
}

.mission-card-content {
  padding: 30px;
}

.mission-card-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0px;
}

.mission-card-content p {
  color: #6b7280;
  font-size: 18px;
  line-height: 1.6;
}

.mission-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}