section.process {
    padding: 0 20px 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach {
    padding-top: 20px;
}

.process-heading-wrapper{
    display: flex;
    flex-direction: column;
}

.image-container {
    position: relative;
}

.process-heading-wrapper img{
    width: 100%;
    display: block;
    filter: brightness(0.5);
}

.text-overlay {
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    display: block;
    z-index: 10;
    color: var(--gold);
    font-size: 250px;
    /* font-style: italic; */
    font-weight: 100;
    text-shadow: 
    0 0 5px black,  /* First shadow layer */
    0 0 10px black, /* Second shadow layer (creates a more intense glow) */
    0 0 15px black; /* Third shadow layer */
}

.process-heading-wrapper p:last-child {
    margin-bottom: 50px
}

.process-thumb {
    align-items: center;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.material-icons.icon-overlay {
    color: var(--gold);
    font-size: 54px;

}

.process-thumb h2 {
    font-size: 32px;
    padding: 15px;
    margin-bottom: 0;
}

a.gold.button.page-ender{
    margin: -20px auto 50px auto;
    display: block;
    text-align: center;
    max-width: 300px;
    
}

@media (min-width: 1024px) {

    .approach {
        padding-top: 50px;
    }
    .approach p {
        margin-bottom: 0;
    }

    .process-heading-wrapper{
        display: flex;
        align-items: flex-start;
        flex-direction: row;
        padding: 50px 0 50px 0;
    }

    .process-heading-wrapper:not(:last-child) {
        border-bottom: 2px solid var(--medium-dark);
    }

    .text-overlay {
        position: absolute;
        top: 50%; 
        left: 50%; 
        transform: translate(-50%, -50%);
        display: block;
        z-index: 10;
        color: var(--gold);
        font-size: 250px;
        /* font-style: italic; */
        font-weight: 100;
        text-shadow: 
        0 0 5px black,  /* First shadow layer */
        0 0 10px black, /* Second shadow layer (creates a more intense glow) */
        0 0 15px black; /* Third shadow layer */
    }

    .process-heading-wrapper img {
        max-width: 300px;
        filter: brightness(0.5);
        width: initial;
    }

    .process-heading-wrapper p {
        margin-bottom: 0 !important;
    }

    .desktop-view-wrapper {
        flex-direction: column;
        padding: 30px;
    }

    a.gold.button.page-ender {
        margin: -20px auto 50px auto;
        display: block;
        max-width: 300px;
        text-align: center;
    }

    /* styles for the why risk ready page here */
    .why-risk-ready:nth-child(even){
        flex-direction: row-reverse;
    }

}