.page-item--landingpage {
    display: flex;
    flex-direction: column;
}

    .landingpage-offerte-aanvragen {
        margin: 0 -20px 50px;
    }

        .landingpage-offerte-uitleg {
            padding: 0 20px;
            margin-bottom: 50px;
        }

            .offerte-uitleg-usps {
                padding: 0;
                margin: 0 0 2em;
                list-style: none;
            }

                .offerte-uitleg-usps__item {
                    padding: .35em 0;
                }

                    .offerte-uitleg-usps__item .fa-check {
                        color: rgb(0, 192, 0);
                        margin-right: .3em;
                    }


            .offerte-uitleg-video-figure {
                display: flex;
                margin: 2em 0 0;
                background-color: rgb(19, 19, 19);
                cursor: pointer;
            }

                .offerte-uitleg-video-container {
                    position: relative;
                    width: 50%;
                    transition: .4s;
                }

                .offerte-uitleg-video-figure:hover .offerte-uitleg-video-container,
                .offerte-uitleg-video-figure.open .offerte-uitleg-video-container {
                    width: 100%;
                }

                    .offerte-uitleg-video-container::before {
                        content: '';
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        top: 0;
                        left: 0;
                        background-color: rgba(255, 255, 255, .3);
                        transition: .4s;
                    }

                    .offerte-uitleg-video-figure:hover .offerte-uitleg-video-container::before,
                    .offerte-uitleg-video-figure.open .offerte-uitleg-video-container::before {
                        opacity: 0;
                    }

                    .offerte-uitleg-video__icon {
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        color: rgb(255, 255, 255);
                        font-size: 40px;
                        transition: .4s;
                    }

                    .offerte-uitleg-video-figure:hover .offerte-uitleg-video__icon {
                        font-size: 60px;
                    }

                    .offerte-uitleg-video-figure.open .offerte-uitleg-video__icon {
                        opacity: 0;
                    }

                    .offerte-uitleg-video {
                        width: 100%;
                        height: 100%;
                    }

                    .offerte-uitleg-video-figure:not(.open) .offerte-uitleg-video {
                        pointer-events: none;
                    }


                .offerte-uitleg-figure__caption {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    width: 50%;
                    font-weight: bold;
                    color: rgb(255, 255, 255);
                    font-size: 14px;
                    padding: 20px;
                    overflow: hidden;
                    transition: .4s;
                }

                .offerte-uitleg-video-figure:hover .offerte-uitleg-figure__caption,
                .offerte-uitleg-video-figure.open .offerte-uitleg-figure__caption {
                    width: 0;
                    padding: 0;
                }

                    .offerte-uitleg-figure__caption p {
                        line-height: 1.5;
                    }


        .landingpage-offerte-form-container {
            padding: 0 10px;
        }

            .landingpage-offerte-form {
            }

                .offerte-form__button {
                    width: 100%;
                }


    .landingpage-seo {
        order: 1;
    }

        .landingpage-seo__content {
            text-align: justify;
        }


@media only screen and (min-width: 1025px) {

    .page-item--landingpage {
    }

        .landingpage-offerte-aanvragen {
            display: flex;
            margin-left: -40px;
            margin-right: -40px;
        }

            .landingpage-offerte-uitleg {
                flex-basis: 50%;
                flex-grow: 1;
                padding: 0 40px;
                box-sizing: border-box;
                margin-bottom: 0;
            }

            .landingpage-offerte-form-container {
                flex-basis: 50%;
                flex-grow: 1;
                padding: 0 30px;
                box-sizing: border-box;
                border-left: 1px solid rgb(242, 242, 242);
            }
}