.radar-main {
  .section-1 {
    opacity: 1;
    margin: 20px;

    h2 {
      font-size: 35px;
      text-align: center;
      margin-bottom: 20px;
    }
  }

  .section-2 {
    opacity: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #F3F3F3;
    color: #4A4A4A;
    padding: 40px 20px;
    gap: 1rem;

    .section-2-header {
      h2 {
        font-size: 35px;
        margin-bottom: 20px;
      }
    }

    .content-wrapper {
      line-height: 2rem;
      div {
        margin-top: 20px;

        p:first-of-type {
          font-weight: 700;
        }
      }
    }
  }

  .section-3 {
    margin: 20px;

    h2 {
      font-size: 28px;
      font-weight: 700;
      line-height: 120%;
      text-align: center;
      margin-bottom: 2rem;
    }
  }
}

.header-container__small.radar {
  background-image: url('/assets/radar-bg.webp');
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .radar-main {
    margin-top: 7.04vh;

    section {
      padding: 0 12.5vw;
      margin-top: 13.52vh;
    }

    .section-1 {
      opacity: 1;

      h2 {
        font-size: 5.09vh;
        text-align: center;
        margin-bottom: 7.04vh;
      }
    }

    .section-2 {
      display: flex;
      width: 100%;
      background-color: #F3F3F3;
      color: #4A4A4A;
      padding: 12.04vh;
      gap: 1rem;
      flex-direction: row;

      .section-2-header {
        width: 50%;

        h2 {
          font-size: 40px;
          margin-bottom: 5.37vh;
        }
      }

      .content-wrapper {
        display: flex;
        flex-wrap: wrap;
        width: 50%;

        div {
          width: 45%;
          margin-bottom: 1rem;
          margin-right: 1rem;

          p:first-of-type {
            font-weight: 700;
          }
        }
      }
    }

    .section-3 {
      margin-left: 13.02vw;
      margin-right: 13.02vw;

      h2 {
        font-size: 55px;
        font-weight: 700;
        line-height: 120%;
        margin-top: 7.04vh;
      }
    }
  }
}