.wwo-contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    margin: 8em 0;
    padding: 0 4rem;

    h2 {
        font-size: 25px;
        color: var(--blue);
        font-weight: lighter;
        margin: 0;

    }

    strong {
        color: var(--blue);
        font-weight: bold;
        font-size: 25px;
    }
}

.source-strat {
    display: flex;
    flex-direction: row;
    margin: 4rem 0;
    width: 100%;
    justify-content: center;
    gap: 4rem;

}

.strategy, .source {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 650px;
    line-height: 1.2;

    h1 {
        font-size: 55px;
        font-weight: bold;
        font-family: 'roboto slab';
        color: var(--orange);
        width: 24.5rem;
        height: 4.8rem;
        outline: 5px solid white;
        border-radius: 3rem;
        backdrop-filter: blur(2px);
        background: rgba(255, 255, 255, 0.1);
        margin-bottom: 2.5rem;
    }

    p{
        font-size: 40px;
        font-weight: light;
        color: var(--blue);
    }
    

}

@media (max-width: 1491px) {

    .source-strat {
        gap: 0;
    }

    .strategy, .source {
        padding: 0 2rem;
        p {
            font-size: 35px;
        }
    }
}
@media (max-width: 924px) {

    .source-strat {
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
}

@media (max-width: 776px) {

    .wwo-contents {
        /* gap: 8rem; */
        /* margin: 10rem 0 8rem; */
        padding: 0 2rem;
    }

    .strategy, .source {
        padding: 0;
        
        /* p {
            font-size: 35px;
        } */
    }
}

@media (max-width: 458px) {
    .strategy, .source {
        padding: 0 0.5rem;
      h1 {
        width: auto;
        padding: 0 2rem;
        font-size: 40px;
        height: auto;
        margin-bottom: 1rem;

      }

      p {
        font-size: 25px;
      }
    }

    .how-we-work {
        padding: 0 1rem;

    }

  }
