/* OUR OBJECTIVE - AIM */
.our-aim-container {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
  padding: 50px 100px;
}

.our-aim-img-wrapper {
  width: 40%;
}

.our-aim-img-wrapper img {
  width: 100%;
  object-fit: contain;
}

.Objective-contents-wrapper {
  width: 50%;
  /* background-color: yellow; */
}

.Objective-header-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.Objective-header-wrapper h2 {
  font-family: var(--fire-font);
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.Objective-contents-wrapper p {
  font-family: var(--popins-font);
  color: var(--secondary-black);
}

.Objective-list-wrapper {
  /* background-color: springgreen; */
  font-family: var(--popins-font);
  color: #363636;
  margin-top: 20px;
}

/* Objective CTA Button Link */
.objective-cta-wrapper {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Our Objective List */
.Objective-list-wrapper li {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 867px) {
  .our-aim-container {
    flex-direction: column-reverse;
    padding: 50px 20px;
  }

  .our-aim-img-wrapper {
    width: 100%;
    display: none;
  }

  .Objective-contents-wrapper {
    width: 100%;
  }
}
