/*STICKY SIDE BY SIDE BLOCK*/

	.sticky-side-by-side-block {
		position: relative;
		overflow: hidden;
	}

	/*FIX BLOCK PREVIEW*/

		.acf-block-preview .sticky-side-by-side-block {
			min-height: 200px;
		}

        

	/*STICKY*/

    .sticky {
        width: calc(50% - 100px);
        height: 100vh;
        padding: 100px;
		padding-top: 200px;
    }

    .scroll {
        width: 50%;
    }

    .scroll-image {
        position: relative;
        width: 100%;
        height: 100vh;
    }

    .scroll-text {
        position: absolute;
        left: -100px;
        bottom: -20vh;
        width: 700px;
        padding: 50px;
		max-width: 100%;
    }

    hr {
        margin-left: 0;
        width: 100px;
		margin-top: 50px;
        margin-bottom: 50px;
    }

    .scroll-item .theme-primary-button {
        margin-top: 50px;
    }

    .scroll-item {
        margin-bottom: calc(20vh + 200px);
    }

    .scroll-item:last-of-type {
        margin-bottom: calc(20vh + 400px);
    }

/*MEDIA QUERIES*/

    @media (max-width: 1400px) {



    }

    @media (max-width: 1200px) {

		.sticky {
			display: none;
		}

		.scroll {
			width: 100%;
		}

		.scroll-text {
			position: absolute;
			left: 0px;
			bottom: 0px;
			width: 100%;
		}

		.scroll-item {
			margin-bottom: 0px;
		}

		.sticky-side-by-side-block {
			padding-top: 50px;
			padding-bottom: 50px;
		}

    }

    @media (max-width: 800px) {



    }