html {
    font-size: clamp(0px,0.0520833vw,1px);
}
body {
    margin: 0;
    padding: 0;
}
.talent {
    font-size: 35rem;
    font-weight: bold;
    margin-bottom: 0;
    text-align: center;
}
.talent-line {
    width: 100rem;
    background-color: #2D7700;
    height: 10rem;
    border: 0;
}
.talent-description {
    text-align: center;
    font-size: 20rem;
    margin: auto;
    margin-bottom: 0;
    width: 65%;
}
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20rem;
    margin: 128rem auto 0;
    width: 450rem;
    height: 250rem;
  }
.content-1 .values-grid:first-child {
    margin-right: 2%;
}
.content-1 .values-grid:last-child {
    margin-left: 5%;
}
.content-2 .values-grid:first-child {
    margin-left: 8%;
}
.content-2 .values-grid:last-child {
    margin-right: 10%;
}
  .value-card {
    flex: 1 1 calc(50% - 10rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 60rem;
    border: 8rem solid #2D7700;
  }
  .value-card-img {
      position: absolute;
      width: 200rem;
      height: 200rem;
      z-index: 11;
      transform: translateX(-50%) translateY(-25%);
      opacity: 10%
  }
  .value-content-1 {
    background-color: #fff;
    z-index: 10;
    margin-top: -12rem;
    width: 150rem;
  }
  .value-content-2 {
      background-color: #fff;
      z-index: 10;
      margin-bottom: -40rem;
      padding-bottom: 40rem;
      width: 220rem;
      height: 180rem;
  }
  .value-title {
    color: #000;
    font-size: 25rem;
    font-weight: 700;
    margin-top: 30rem; 
    margin-bottom: 30rem;
  }
  .value-description {
    color: #555353;
    font-size: 21rem;
    font-weight: 500;
    margin-top: 0;
  }

  .content-1 {
      display: flex;
      margin-top: 0;
  }

  .content-2 {
      display: flex;
      justify-content: space-between;
      margin: 0 0 10% 0;
  }


@media screen and (max-width: 780px) {
    .talent {
        font-size: 120rem;
        margin-top: 3%;
    }
    .talent-description {
        font-size: 42rem;
    }

    .content-1 {
        display: block;
    }
    .content-1 .values-grid:first-child {
        margin-top: 150rem;
        margin-left: 10%;
    }
    .content-1 .values-grid:last-child {
        margin: 128rem auto 0;
    }
    .values-grid {
        width: 800rem;
        height: 800rem;
    }
    .value-card-img {
        width: 400rem;
        height: 400rem;
    }
    .value-content-1 {
        width: 460rem;
    }
    .value-title {
        font-size: 75rem;
        margin-top: 120rem;
    }
    .value-content-2 {
        width: 600rem;
    }
    .value-description {
        font-size: 55rem;
    }

    .content-2 {
        display: block;
    }
    .content-2 .values-grid:first-child {
        margin: 128rem auto 0;
        margin-right: 10%;
    }
    .content-2 .values-grid:last-child {
        margin: 128rem auto 0;
        margin-left: 10%;
    }
}