body {
    background: linear-gradient(135deg, rgba(87,195,197,1) 0%, rgba(101,158,196,1) 50%, rgba(111,138,195,1) 100%)!important;
    color: white;
}

.objectives-landing-section {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-left: clamp(40px, 5vw, 75px);
  overflow: hidden;
}

.objectives-landing-text {
    margin-top: 150px;
  /*align-self: flex-end;*/
  color: white;
  /*margin-bottom: 200px;*/
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.objectives-landing-img {
  width: 50vw;
}

.objectives-list-section {
  padding: 200px clamp(40px, 5vw, 75px) 0px clamp(40px, 5vw, 75px);
}

.objectives-heading {
  margin-bottom: 80px;
  color: white;
}

.objectives {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 20px;
}

.objective {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: 25px;
  padding: 25px 35px;
}

.objective-header {
  color: var(--color-background-alternative);
  font-size: 20px;
}

.objective-details {
    color: white;
    font-size:16px;
    line-height: 20px;
}

.methodology-section {
    display: flex;
    flex-direction: column;
    padding: 100px clamp(40px, 5vw, 75px);
}

.methodology-heading {
    color: white;
}

.methodology-image-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.methodogoly-image {
    margin: 40px auto;
    width: calc(100vw - 2 * clamp(40px, 5vw, 75px));
    max-width: 1000px;
}


.phases {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.phase {
    width: 25%;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 25px 35px;
    border-radius: 25px;
}

.phase-index {
    color: rgba(255, 255, 255, 0.6);
    font-size: 22px;
}

.phase-title {
    font-size: 48px;
    color: white;
}

.phase-text {
    font-size: 16px;
    margin-top: 10px;
    color: white;
}

.region-footer {
    background-color: transparent!important;
}

main {
  padding: 0!important;
}

@media only screen and (max-width: 850px) {
  .objectives-landing-img {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .objectives {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 789px) {
  .objectives {
    grid-template-columns: repeat(1, 1fr);
  }
}
