
.guide-introduction-row {
    padding: 0;
}

    .guide-introduction-row .guide-breadcrumbs {
        padding: 0 0 15px;
        font-size: 0.875em;
    }

        .guide-introduction-row .guide-breadcrumbs .guide-breadcrumb {
            font-weight: 700;
            margin: 0 1.5em 0 0;
        }

        .guide-introduction-row .guide-breadcrumbs .guide-breadcrumb-final {
            color: #001441;
            font-weight: 400;
        }

    .guide-introduction-row .guide-introduction {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 30px 0 0;
    }

        .guide-introduction-row .guide-introduction .guide-card-wrap {
            flex: 0 0 280px;
            margin: 0 0 30px;
            order: 2;
        }

            .guide-introduction-row .guide-introduction .guide-card-wrap .guide-card {
                background-color: #DBE6D7;
                box-shadow: 0 2px 20px 0 rgba(168, 153, 153, 0.16);
                width: 100%;
            }

                .guide-introduction-row .guide-introduction .guide-card-wrap .guide-card .guide-card-image {
                    display: block;
                    height: 150px;
                    overflow: hidden;
                    position: relative;
                    width: 100%;
                    cursor: pointer;
                }

                    .guide-introduction-row .guide-introduction .guide-card-wrap .guide-card .guide-card-image .guide-card-image-bkg {
                        height: 100%;
                        left: 0;
                        position: absolute;
                        top: 0;
                        width: 100%;
                    }

                        .guide-introduction-row .guide-introduction .guide-card-wrap .guide-card .guide-card-image .guide-card-image-bkg img {
                            width: 100%;
                            height: 100%;
                            object-position: 0;
                            object-fit: cover;
                        }

                    .guide-introduction-row .guide-introduction .guide-card-wrap .guide-card .guide-card-image .guide-card-play-button {
                        background-color: #01505B;
                        position: absolute;
                        left: 20px;
                        bottom: -15px;
                        width: 52px;
                        height: 60px;
                        transition: background-color 0.2s linear, bottom 0.2s linear;
                    }

                        .guide-introduction-row .guide-introduction .guide-card-wrap .guide-card .guide-card-image .guide-card-play-button .guide-card-play-icon {
                            padding: 5px 0 0;
                            text-align: center;
                        }

                            .guide-introduction-row .guide-introduction .guide-card-wrap .guide-card .guide-card-image .guide-card-play-button .guide-card-play-icon em {
                                color: #FFF;
                                line-height: 40px;
                                transition: font-size 0.2s linear;
                            }

                    .guide-introduction-row .guide-introduction .guide-card-wrap .guide-card .guide-card-image:hover .guide-card-play-button {
                        background-color: #14332d;
                        bottom: 0;
                    }

                        .guide-introduction-row .guide-introduction .guide-card-wrap .guide-card .guide-card-image:hover .guide-card-play-button em {
                            font-size: 1.5em;
                        }

                    .guide-introduction-row .guide-introduction .guide-card-wrap .guide-card .guide-card-image.has-video-popup {
                        cursor: pointer;
                    }

                .guide-introduction-row .guide-introduction .guide-card-wrap .guide-card .guide-card-content {
                    height: calc(100% - 150px);
                    display: block;
                    padding: 20px 25px 3px;
                    flex: 1;
                }

                    .guide-introduction-row .guide-introduction .guide-card-wrap .guide-card .guide-card-content h3 {
                        color: #14332D;
                        font-family: "Roboto", Arial, Helvetica, sans-serif;
                        font-size: 1.125em;
                        font-weight: 700;
                        margin: 0 0 18px;
                    }

                    .guide-introduction-row .guide-introduction .guide-card-wrap .guide-card .guide-card-content .guide-meta {
                        font-size: 0.875em;
                        line-height: 20px;
                        margin: 0 0 18px;
                    }

                        .guide-introduction-row .guide-introduction .guide-card-wrap .guide-card .guide-card-content .guide-meta .guide-length {
                            line-height: 20px;
                            margin: 0 0 10px;
                        }

                .guide-introduction-row .guide-introduction .guide-card-wrap .guide-card .guide-card-popup-content {
                    display: none;
                }

        .guide-introduction-row .guide-introduction .guide-introduction-content {
            flex: 1 1 auto;
            margin: 0 0 30px;
            order: 1;
        }

            .guide-introduction-row .guide-introduction .guide-introduction-content h1 {
                font-size: 2.5em;
                font-weight: 700;
                margin: 0;
                line-height: 1em;
            }

            .guide-introduction-row .guide-introduction .guide-introduction-content p {
                font-size: 1.5em;
                font-weight: 400;
            }

.guide-steps {
    background-color: #DBE6D7;
}

    .guide-steps .guide-step {
        display: flex;
        flex-wrap: wrap;
    }

        .guide-steps .guide-step .guide-step-column {
            width: 100%;
        }

            .guide-steps .guide-step .guide-step-column.content {
                padding: 30px;
            }

            .guide-steps .guide-step .guide-step-column h3 {
                font-weight: bold;
                font-size: 2.5em;
            }

            .guide-steps .guide-step .guide-step-column img {
                width: 100%;
                height: 100%;
                object-position: 0;
                object-fit: cover
            }

@media (min-width: 850px) {
    .guide-steps .guide-step {
        margin: 0 0 60px;
        flex-wrap: nowrap;
    }

        .guide-steps .guide-step .guide-step-column {
            width: 50%;
            flex: 0 1 auto;
        }

        /* odd steps, image first content second aligned left so set the properties we need to change */
        .guide-steps .guide-step:nth-child(odd) .guide-step-column.content {
            order: 2;
        }

        .guide-steps .guide-step:nth-child(odd) .guide-step-column.image {
            order: 1;
        }

        /* even steps, content first image second aligned right so again set the properties that need to change */
        .guide-steps .guide-step:nth-child(even) {
            justify-content: flex-end;
        }
}

@media (min-width: 992px) {
    .guide-introduction-row .guide-introduction {
        justify-content: left;
        align-items: center;
    }

        .guide-introduction-row .guide-introduction .guide-card-wrap {
            flex: 0 0 280px;
            flex-wrap: nowrap;
            order: 1;
        }

        .guide-introduction-row .guide-introduction .guide-introduction-content {
            flex: 0 0 calc(100% - 450px);
            order: 2;
            padding: 0 60px;
        }

            .guide-introduction-row .guide-introduction .guide-introduction-content h1 {
                font-size: 3em;
            }

    .guide-steps .guide-step {
        align-items: center;
    }
}

@media (min-width: 1150px) {
    .guide-introduction-row .guide-introduction .guide-introduction-content h1 {
        font-size: 5em;
    }

    .guide-steps .guide-step .guide-step-column.content {
        padding: 40px 60px;
    }

    .guide-steps .guide-step .guide-step-column.image {
        min-height: 420px;
    }
}

@media (min-width: 1300px) {
    .guide-steps .guide-step .guide-step-column.content {
        width: 40%;
        flex: 0 0 auto;
    }
}
