.who-are-we {
    padding: 4rem 5vw;
}

h2 {
    font-size: 48px;
    margin: 20px 0;
    text-transform: uppercase;
}

.who-are-we p {
    line-height: 32px;
    margin-bottom: 2rem;
}

.who-are-we button {
    font-weight: bold;
    border-radius: 24px;
    min-width: 30vw;
    font-size: 24px;
    padding: 8px;
    border: none;
    color: #ffffff;
    background: -webkit-gradient(linear, left top, left bottom, from(#cb82f8), to(#9593ff));
    background: linear-gradient( 180deg, #cb82f8, #9593ff);
    min-width: 200px;
}

@media screen and (max-width: 800px) {
    .who-are-we {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    h2 {
        font-size: 28px;
    }
    .who-are-we p {
        line-height: 24px;
    }
    .who-are-we button {
        font-size: 20px;
        letter-spacing: 3px;
    }
}

.goals {
    padding: 4rem 5vw;
}

.goals .goal-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.goals .goal-item {
    width: 25vw;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.goals .goal-item img {
    width: 100%;
    max-width: 250px;
}

.goals p {
    text-align: center;
    max-width: 200px;
    letter-spacing: 2px;
    line-height: 28px;
}

@media screen and (max-width: 800px) {
    .goals {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.why-join {
    padding: 2rem 5vw;
    display: flex;
    flex-direction: column;
}

.hex-grid {
    padding: 2rem 0;
    --size: 90vw;
    height: calc(var(--size) / 0.672);
    max-height: 1500px;
    width: calc(var(--size));
    max-width: 1000px;
    display: inline-grid;
    grid-template-rows: repeat(6, 1fr);
    grid-template-columns: repeat(2, 1fr 2fr) 1fr;
    grid-gap: 10vw 11vw;
    overflow: hidden;
    align-self: center;
}

.hex-grid div {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hex-1 {
    grid-column: 1 / span 3;
    grid-row: 1 / span 2;
}

.hex-2 {
    grid-column: 3 / span 3;
    grid-row: 2 / span 2;
}

.hex-3 {
    grid-column: 1 / span 3;
    grid-row: 3 / span 2;
}

.hex-4 {
    grid-column: 3 / span 3;
    grid-row: 4 / span 2;
}

.hex-container {
    width: 100%;
    position: absolute;
}

.hex-grid h3 {
    font-size: 48px;
    font-weight: bold;
    justify-self: flex-start;
    margin-bottom: 2rem;
}

.hex-grid p {
    max-width: 75%;
    letter-spacing: 3px;
    line-height: 28px;
    font-size: 24px;
    text-align: center;
    margin-bottom: 4rem;
}

@media screen and (max-width: 800px) {
    .hex-grid h3 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 1rem;
    }
    .hex-grid p {
        letter-spacing: 1px;
        line-height: 20px;
        font-size: 20px;
        margin-bottom: 2rem;
    }
}

.hex-dec-l {
    position: absolute;
    width: 50%;
    transform: translate(-50%, 90%);
}

.hex-dec-r {
    position: absolute;
    width: 50%;
    transform: translate(50%, 90%);
}

@media screen and (max-width: 600px) {
    .who-are-we p {
        text-align: center;
    }
    .hex-dec-l {
        width: 30%;
        transform: translate(-100%, 120%);
    }
    .hex-dec-r {
        width: 30%;
        transform: translate(100%, 120%);
    }
    .hex-dec-l.hex-dec-s {
        transform: translate(-100%, 150%);
    }
    .hex-dec-r.hex-dec-s {
        transform: translate(100%, 150%);
    }
    .hex-grid h3 {
        font-size: 13px;
        font-weight: bold;
        margin-top: 15px;
    }
    
    .hex-grid p {
        max-width: 75%;
        letter-spacing: 0.5px;
        font-size: 8px;
        line-height: 12px;
        text-align: center;
        
    }
   
  
}
@media screen and (max-width: 300px){
    .landing-page .text-container {
        margin-left: 5vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

@keyframes float{
    0%{
        transform: translateY(-2%);
    }
    50%{
        transform: translateY(2%);
    }
    100%{
        transform: translateY(-2%);
    }
}