.app-feature {
    display: flex;
    gap    : 0em;
    padding: 3em 0;
}

.app-feature>.left,
.app-feature>.right {
    /*width  : 50%;*/
    padding: 2em;
}

.app-feature>.left {
    width: 66%;
}

.app-feature>.right {
    display        : flex;
    flex-direction : column;
    padding        : 0em 3em 0em 0em;
    justify-content: space-between;
    width          : 33%;
}

.app-feature>.right h2 {
    line-height: 140%;
}

.app-feature>.right h2 span {
    color      : green;
    font-family: "Roboto Slab", sans-serif;
    font-size  : 140%;
}

.app-feature>.right>.link-group>a {
    text-decoration: none;
}

.app-feature>.left * img {
    width  : 100%;
    display: block;
}

.image-stack {
    display              : grid;
    position             : relative;
    grid-template-columns: repeat(12, 1fr);
}

.image-stack__item--bottom {
    position   : relative;
    grid-column: 1 / -5;
    grid-row   : 1;
}

.image-stack__item--top {
    position   : relative;
    grid-row   : 1;
    grid-column: 7 / span 5;
    z-index    : 1;
    left       : 3em;
}

.app-feature>.right .link-group {
    text-align: center;
}

@media screen and (min-width: 1000px) {
    .app-feature>.right .link-group {
        text-align: left;
    }
}

@media screen and (max-width: 1100px) {
    .app-feature {
        flex-direction: column;
        gap           : 0;
    }

    .app-feature>.left,
    .app-feature>.right {
        width      : 100%;
        padding    : 0 8em;
        padding-top: 1em;
    }
}

@media screen and (max-width: 650px) {
    .app-feature {
        flex-direction: column;
        gap           : 0;
    }

    .app-feature>.left,
    .app-feature>.right {
        width      : 100%;
        padding    : 0 2em;
        padding-top: 1em;
    }
}


@media screen and (max-width: 800px) {
    .image-stack__item--bottom {}

    .image-stack__item--top {
        left      : 6vw;
        transition: left .25s ease-in-out;
    }
}

@media screen and (max-width: 1000px) {
    .app-feature>.left .image-stack__item--top img {
        max-width: 80px;
    }

    .app-feature .left.image-stack {
        margin-bottom: 3em;
    }

    .image-stack__item--bottom {
        grid-column: 1 / -1;
        max-width  : 365px;
        margin     : 0 auto;
    }

    .image-stack__item--top {
        position   : absolute;
        top        : 50%;
        grid-column: 6 / 1;
        left       : 6vw;
        margin     : 0 auto;
    }

    .app-feature>.right h2 {
        text-align: center;
    }
}

@media (min-width: 600px) and (max-width: 800px) {
    .image-stack__item--top {
        left : 14vw;
        width: 100px;
    }
}

@media (min-width: 801px) and (max-width: 899px) {
    .image-stack__item--top {
        left: 10vw;
    }
}

@media (min-width: 900px) and (max-width: 1000px) {
    .image-stack__item--top {
        left: 17vw;
    }
}

.app-feature {
    background: #fff;
    position  : relative;
}