body *{
    box-sizing: border-box;
}

/*SERVICE-SECTION*/

#mapping-portfolio-wrapper{
    position: relative;
    z-index: 12;
    margin-top: 5rem;
}

.mapping-portfolio-frame{
    width: 80%;
    max-width: 1920px;
    aspect-ratio: 1.69;
    margin: 3rem auto;
    box-sizing: border-box;
    position: relative;
    z-index: 90;
}

@media (max-width: 800px) {
    .mapping-portfolio-frame{
        width: 95%;
    }
}

.mapping-portfolio-frame img{
    position: absolute;
    width: 100%;
}

.mapping-portfolio-mask{
    mask-image: url("../assets/mapping/frameMask_16-9_light.png");
    mask-size: 100%;
}

.mapping-portfolio-text-wrapper{
    position: absolute;
    width: 100%;
    bottom: 4%;
    z-index: 91;
}

.mapping-portfolio-text-wrapper p{
    color: white;
    text-align: center;
    width: 90%;
    max-width: 1200px;
    margin: 1rem auto;
    font-size: var(--fs-100);
    line-height: var(--fs-200);
    text-shadow: 0 0 10px black;
}

.mapping-portfolio-text-wrapper p:first-of-type{
    font-size: var(--fs-200);
    text-shadow: 0 0 20px black;
}

@media (min-width: 1500px){
    .mapping-portfolio-text-wrapper{
        padding-bottom: 2rem;
    }
    .mapping-portfolio-text-wrapper p{
        font-size: var(--fs-150);
        line-height: var(--fs-300);
    }
    .mapping-portfolio-text-wrapper p:first-of-type{
        font-size: var(--fs-300);
        margin-bottom: 2rem;
    }
}

/*WORKFLOW-SECTION*/
.workflow-wrapper{
    background-image: url("../assets/mapping/worklfow_graph_mapping.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto;
    width: 80vw;
    max-width: 840px;
    aspect-ratio: 0.79;
}
@media (max-width: 800px) {
    .workflow-wrapper{
        width: 100vw;
    }
}
.workflow-text-wrapper{
    height: 100%;
    display: grid;
    justify-content: space-between;
    padding: 2% 22% 5%;
}
.workflow-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.workflow-card p{
    margin: 0;
}
.workflow-card p:first-of-type{
    font-weight: bolder;
}
.workflow-card:nth-of-type(2n) p{
    text-align: right;
}