.introvideo-container {
    position: relative;
    width: 100%;
    height: 95vh;
    overflow: hidden;
    margin-bottom: var(--space-small);
}


.introvideo-overlay {

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* padding-bottom: 15rem; */
    margin: 0;
    pointer-events: none;
    height: 100%;
    width: 100%;
    max-width: 800px;


    display: flex;
    flex-direction: column;
    /* Vertically center children */
    justify-content: flex-end;
    align-items: flex-start;
    align-self: flex-end;

    z-index: 2;
    box-sizing: border-box;
}

.introvideo-overlay h1 {

    color: #fff;
    font-size: var(--font-size-huge);
    text-align: left;

    transition: transform 0.3s var(--ease-OutQuint);
    will-change: transform;
    transition: all 0.3s var(--ease-OutQuint);
    padding: 0 2rem 2rem 1rem;
}

@media (min-width: 768px) {

    .introvideo-overlay {
        display: flex;
        max-width: 80%;
        margin-bottom: 1.5rem;
    }

    .introvideo-overlay h1 {

        padding: 0 2rem 5rem 5rem;

    }
}


@media (min-width: 1200px) {

    .introvideo-overlay {
        display: flex;
        min-height: 250px;
        max-width: 45vw;
    }

    .introvideo-overlay h1 {

        padding: 0 2rem 5rem 5rem;

    }
}

.statement p {
    font-size: var(--font-size-large);
    font-family: var(--font-family-alt);
    color: var(--color-blue);
    font-weight: 600;
    max-width: 100%;
    box-sizing: border-box;

    margin: 0 0 var(--space-small) 0;
    padding: 0 1rem 0 1rem;
    align-items: flex-start;
    align-self: flex-start;
    line-height: 1.2;
}

@media (min-width: 768px) {

    .statement {
        display: flex;
        flex-direction: column;
        align-self: flex-end;
        align-items: flex-end;
        justify-content: flex-end;
    }

    .statement p {
        font-size: var(--font-size-large);
        width: fit-content;
        max-width: 50vw;
    }
}

@media (min-width:1200px) {
    .statement p {
        font-size: var(--font-size-large);
        width: fit-content;
        margin-bottom: var(--space-medium);

    }
}


.services {

    background-color: bisque;
    width: var(--site-max-width);
}

.section-intro {

    max-width: 1000px;
    margin-bottom: var(--space-small);
    align-self: flex-start;

}


.services-list {
    margin-top: var(--space-small);
    margin-bottom: var(--space-medium);
    display: flex;
    flex-direction: row;
    align-items: flex-start;

    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
}

.services-list h2 {
    font-weight: 700;
}

.service-teaser {
    display: flex;
    flex-direction: column;
    width: 25vw;


    padding-bottom: 1rem;
    box-sizing: border-box;
    text-justify: auto;
}



@media (max-width: 1200px) {

    .services-list {
        justify-content: center;
        align-items: center;

    }

    .service-teaser {
        width: 100%;
        max-width: 600px;
    }
}