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

/*HERO*/
.ozma-hero-text-wrapper{
    position: absolute;
    width: 92%;
    height: 80%;
    top: 20%;
    left: 4%;
    display: flex;
}

.ozma-hero-title{
    color: white;
    margin: 0;
    font-family: Comfortaa;
    font-size: max(2rem, 4vw);
    line-height: max(2.5rem, 6vw);
    font-weight: normal;
}

@media (max-width: 600px) {
    .ozma-hero-title{
        text-align: center;
        align-self: end;
        color: black;
    }
    .hero-image{
        object-position: right center;
    }
}

/*EXAMPLE-SECTION*/
#ozma-example-card{
    padding: 2rem;
    max-width: 900px;
}
#ozma-example-card h3{
    text-align: center;
    font-size: var(--fs-200);
    font-weight: normal;
    margin: 1rem auto 3rem;
}
#ozma-example-card-content-wrapper{
    display: flex;
    gap: 2rem;
    align-items: center;
}
#ozma-example-card-content-wrapper>*{
    flex: 1;
    max-width: 50%;
    box-sizing: border-box;
}
#ozma-example-card-content-wrapper video{
    border-radius: 20px;
}

@media (max-width: 800px) {
    #ozma-example-card-content-wrapper{
        flex-direction: column;
        align-items: stretch;
    }
    #ozma-example-card-content-wrapper>*{
        max-width: 100%;
    }
}

/*ADVANTAGE-SECTION*/
.ozma-advantage-card{
    max-width: 256px;
}
.ozma-advantage-card img{
    margin: 0 auto;
    display: block;
    width: 128px;
}
.ozma-advantage-card p{
    line-height: var(--fs-150);
    color: white;
    text-align: center;
}
#ozma-advantage-wrapper{
    background: linear-gradient(0.25turn, #0AF, #F4F);
    /*background-image: url("../assets/ozma/ozma_background.jpg");*/
    /*background-size: auto 120%;*/
    /*background-position: center top;*/
    /*background-repeat: no-repeat;*/
    min-height: 400px;
    display: flex;
    gap: 10%;
    align-items: center;
    justify-content: center;
}

@media (max-width: 800px) {
    #ozma-advantage-wrapper{
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
    }
    .ozma-advantage-card img{
        width: 64px;
    }
}
/*.ozma-advantage-card:nth-of-type(2){*/
/*    transform: translateY(-25%);*/
/*}*/

/*WORKFLOW-SECTION*/
.workflow-wrapper{
    background-image: url("../assets/ozma/worklfow_graph.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto;
    width: 80vw;
    max-width: 840px;
    aspect-ratio: 0.64;
}
@media (max-width: 800px) {
    .workflow-wrapper{
        width: 100vw;
        background-image: url("../assets/ozma/worklfow_graph_mobile.jpg");
        aspect-ratio: 0.55;
    }
}
.workflow-text-wrapper{
    height: 100%;
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    padding: 0 22%;
}
.workflow-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.workflow-card p{
    margin: 0;
}
.workflow-card p:first-of-type{
    font-weight: bolder;
}
.workflow-card:nth-of-type(2n) p{
    text-align: right;
}

.technology-demo-video{
    display: block;
    margin: 0 auto;
    width: 75%;
    min-width: 420px;
    max-width: 1920px;
}

@media (max-width: 500px) {
    .technology-demo-video{
        min-width: 100%;
    }
}

.goal-card-wrapper{
    display: flex;
    gap: 4rem;
    justify-content: center;
}
.goal-card{
    max-width: 500px;
}
.goal-card p{
    text-align: center;
}

.goal-card p:first-of-type{
    font-weight: bold;
}

.goal-card-icon{
    width: 50%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
}
