/*SLIDER BLOCK*/

	.sticky-block {
		position: relative;
	}

	/*FIX BLOCK PREVIEW*/

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

	/*ARTICLE*/

		.sticky-block article {
			width: 60%;
			min-height: 50vh;
		}

		/*ALIGNMENT*/

			.sticky-block article.left-align {
				display: flex;
				flex-direction: column;
				align-items: flex-start;
				justify-content: flex-start;
				text-align: left;
			}

			.sticky-block article.right-align {
				display: flex;
				flex-direction: column;
				align-items: flex-end;
				justify-content: flex-start;
				text-align: right;
			}

			.sticky-block article.center-align {
				display: flex;
				flex-direction: column;
				align-items: center;
				justify-content: center;
				text-align: center;
			}

		/*IMAGES*/

			.sticky-block article img {
				max-width: 100%;
			}

	/*ASIDE*/
	
		.sticky-block aside {
			position: sticky;
			top: 158px; /*HEIGHT OF HEADER PLUS 25PX*/
			left: 0px;
			min-height: 50vh;
			width: calc(40% - 50px);
		}

		/*SET HEIGHT OF SLIDES*/

			.sticky-block aside .slider .slide {
				height: 25vh;
				min-height: 300px;
			}

		/*ADJUST RIGHT VALUE OF OWL STAGE TO COMPENSATE FOR STAGEPADDING*/

			.sticky-block .owl-stage {
				right: 75px;
			}

		/*ADJUST POSITIONING OF ARROWS*/

			.sticky-block .owl-nav {
				display: flex;
				justify-content: flex-start;
			}

		/*HOVER STATE ON ARROWS*/

			.sticky-block .owl-nav button {
				color: #2f2f2f;
				transition: .25s ease-out;
			}

			.sticky-block .owl-nav button:hover {
				color: #b04c26;
				background: inherit !important;
				transition: .25s ease-in;
			}

/*MEDIA QUERIES*/

    @media (max-width: 1400px) {



    }

    @media (max-width: 1200px) {

		.sticky-block aside {
			position: relative;
			order: 1;
			height: auto;
			min-height: auto;
			top: 0px;
			width: 100%;
			padding-bottom: 50px;
		}

		.sticky-block article {
			order: 2;
			width: 100%;
			min-height: auto;
			top: 0px;
			height: auto;
		}

    }

    @media (max-width: 800px) {

		.sticky-block article {
			position: relative;
		}

    }