.hiw_opening_title {
    font-size: 100px;
    text-align: center;
    margin: 120px auto 50px;
    width: 850px;
}

.dark_opening_title {
    color: var(--black);
    width: 750px;
}

.how_it_works_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.hiw {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: calc((100% - 120px) / 4);
}

.hiw .square_icon {
    width: 46px;
    height: 46px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.hiw h3,
.hiw p {
    text-align: center;
    color: var(--white);
    margin: 0 auto;
}

.hiw h3 {
    text-transform: uppercase;
    margin: 20px auto 10px;
}

.page_separator {
    width: 100%;
    height: 2px;
    background-color: var(--trans-white);
    margin: 150px auto;
}

@media (max-width: 1150px) {
    .hiw {
        width: calc((100% - 40px) / 2);
    }

    .hiw:nth-of-type(3),
    .hiw:nth-of-type(4) {
        margin-top: 80px;
    }
}

@media (max-width: 910px) {
    .hiw_opening_title {
        font-size: 60px;
        width: 80%;
    }
}

@media (max-width: 600px) {
    .hiw_opening_title {
        font-size: 48px;
        width: 100%;
        margin: 80px auto 30px;
    }

    .hiw {
        width: 100%;
    }

    .hiw:nth-of-type(2),
    .hiw:nth-of-type(3),
    .hiw:nth-of-type(4) {
        margin-top: 60px;
    }

    .hiw h3 {
        font-size: 24px;
    }

    .hiw p {
        width: 80%;
    }

    .page_separator {
        margin: 100px auto;
    }
}

@media (max-width: 500px) {
    .hiw p {
        width: 100%;
    }
}