/**
* Gutenberg Blocks
*/
html :where(.wp-block) {
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
}

html  :where(.wp-block-columns.is-layout-flex) {
    gap: 30px;
}

/**
* Gutenberg Blocks > Theme Blocks
*/
.acseo-block {
	position: relative;
	display: block;
}

.acseo-block .inner {
	width:100%;
	z-index: 2;
}

article .inner {
	width:100%;
	z-index: 2;
	position: relative;
}

header .inner,
.breadcrumb .inner {
	width:100%;
	z-index: 2;
	position: relative;
}

.acseo-block.align-left {
	justify-content: flex-start;
}


.acseo-block.align-right {
	justify-content: flex-end;
}


.acseo-block.align-center {
	justify-content: center;
}

/**
* Gutenberg Blocks > Theme Blocks > Title
*/
.is-root-container .acseo-block > .section-title-wrapper {
	padding-bottom: 30px;
	margin-bottom: 0;
	text-align: center;
    width: 100%;
	z-index: 2;
}

.is-root-container .acseo-block > .section-title-wrapper.align-left {
	text-align: left;
}

.is-root-container .acseo-block > .section-title-wrapper.align-right {
	text-align: right;
}

.section-title-wrapper.align-left .section-title,
.section-title-wrapper.align-left .section-subtitle {
	text-align: left;
}

.section-title-wrapper.align-center .section-title,
.section-title-wrapper.align-center .section-subtitle {
	text-align: center;
}

.section-title-wrapper.align-right .section-title,
.section-title-wrapper.align-right .section-subtitle {
	text-align: right;
}


.is-root-container .acseo-block > .section-title-wrapper > .h2.section-title {
	margin-bottom: 0!important;
}

.is-root-container .acseo-block > .section-title-wrapper > .section-subtitle {
	font-family: var(--content-font);
	margin-bottom: 0;
	letter-spacing: .02em;
	font-weight: 300;
	padding-top: 5px;
    font-size: 18px;
    line-height: 22px;
}

body.home .section-title-wrapper .section-title {
	text-transform: uppercase;
}

/**
* Gutenberg Blocks > Theme Blocks > Background
*/
.acseo-block:before,
.acseo-block:after {
	content:'';
	display: block;
	position: absolute;
	top:0;
	left:0;
	height: 100%;
	width: 100%;
	z-index: 1;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	pointer-events: none;
}


/**
* Gutenberg Blocks > Theme Blocks > Footer
*/
.acseo-block:not(.page-navigation) .section-footer .ctas .acseo-button {
	margin-left: 10px;
	margin-right: 10px;
}

/**
* Gutenberg Blocks > WP Columns
*/
.wp-block-columns {
	margin-bottom: 0;
	position: relative;
}

/**
* Gutenberg Blocks > Embed Video block
*/
.wp-block-embed__wrapper {
	position: relative;
	padding-top:56.5%;
}
.wp-block-embed__wrapper iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left:0;
}

/**
* Gutenberg Blocks > hr separator
*/
body .wp-block-separator {
	background-color: var(--color_3-3)!important;
    color: var(--color_3-3)!important;
	border:unset;
	height: 1px;
	margin: 30px 0!important;
}